From 4c271e8dd2a4aeb4579fe876c1f9cdcd664d5996 Mon Sep 17 00:00:00 2001 From: divsan93 <41547679+divsan93@users.noreply.github.com> Date: Wed, 8 Jun 2022 11:33:21 -0400 Subject: [PATCH 01/30] Create images --- db/images | 1 + 1 file changed, 1 insertion(+) create mode 100644 db/images diff --git a/db/images b/db/images new file mode 100644 index 0000000..d5bcee4 --- /dev/null +++ b/db/images @@ -0,0 +1 @@ +Contains the database images for readme From 9ddda165e6de5da84d7f66c4c9d8d7f4a22f04fb Mon Sep 17 00:00:00 2001 From: divsan93 <41547679+divsan93@users.noreply.github.com> Date: Wed, 8 Jun 2022 11:34:09 -0400 Subject: [PATCH 02/30] Delete images --- db/images | 1 - 1 file changed, 1 deletion(-) delete mode 100644 db/images diff --git a/db/images b/db/images deleted file mode 100644 index d5bcee4..0000000 --- a/db/images +++ /dev/null @@ -1 +0,0 @@ -Contains the database images for readme From 0e0021cc63a3ba18f4f9427b22d7649728b50f5b Mon Sep 17 00:00:00 2001 From: divsan93 Date: Wed, 6 Jul 2022 12:48:52 -0400 Subject: [PATCH 03/30] Adding the script for KG augmentation --- kg_utils/README.md | 36 ++ kg_utils/input.csv | 7 + kg_utils/kg_aug.py | 894 +++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 937 insertions(+) create mode 100644 kg_utils/input.csv create mode 100644 kg_utils/kg_aug.py diff --git a/kg_utils/README.md b/kg_utils/README.md index 7a59cc4..8b4067e 100644 --- a/kg_utils/README.md +++ b/kg_utils/README.md @@ -37,3 +37,39 @@ Python scripts to generate JSON from Database - Run ``sphinx-apidoc -o . ..`` - Run ``make html`` - Documentation is located in ``/docs/_build/html/index.html`` + +### KG Augmentation + +##### TCA KG Augmentation script allows a semi-automatic way of ingesting data into the TCA Knowledge Base + +##### The command line script (kg_aug.py) can be executed in 2 modes: + +1. Interactive - This mode can be used for processing single entry. It allows the user to choose a table by listing all the tables in the TCA database. Based on the chosen table, the user can interactively enter values for the vaious fields. All the fields are listed along with the field type (e.g.- integer, text etc.) For fields that accept only certain values, the acceptable values are also displayed along with the field name. Some automatic checks are perfomed as the user enters a value for a particular field and if the value does not match the specified type or acceptable list of values mentioned, there is a prompt to re-enter the value for that particular field. + +2. Batch - Batch mode is used for processing multiple entries. The input is a csv file with multiple values that need to be entered into the database. The format to enter values in the csv is as follows: Table_name, value1, value2,..., value n + +The id field for all the tables is auto generated so the user does not have to specify it. As every entry is processed there is a automatic check for dulpicate entries. If a duplicate entry is found it is skipped and not inserted into the database. For every new entity thats inserted into KG, the mentions are automatically generated from wikidata. + +##### A sample csv file (input.csv) has been uploaded for reference - input.csv + +### Running the script +##### To run the script you can use one of the following commands based: + +1. Interactive mode: python kg_aug.py -m interactive -d aca_kg_ce_1.0.4.db +2. Batch mode: python kg_aug.py -m batch -b input.csv -d aca_kg_ce_1.0.4.db + +##### The -m indicated the mode (interactive or batch), -b points to the csv file for batch processing and -d specifies the database file. + +#### Usage +``` +usage: kg_aug.py [-h] -m MODE -d DB_FILE [-b BATCH_FILE] [-r DEL_FILE] + +modify KB by adding or deleting entities + +optional arguments: + -h, --help show this help message and exit + -m MODE mode: interactive or batch + -d DB_FILE database file (.db) path + -b BATCH_FILE batch file (.txt) path + -r DEL_FILE entities to delete/replace list file (.csv) path +``` \ No newline at end of file diff --git a/kg_utils/input.csv b/kg_utils/input.csv new file mode 100644 index 0000000..214fcbd --- /dev/null +++ b/kg_utils/input.csv @@ -0,0 +1,7 @@ +entities, comtran11, 9,{''qid'': ''Q5013384'',''url'': ''https://www.wikidata.org/wiki/Q5013384''}, N, Y, Y, N +entities, AppleScript11, 9, {''qid'': ''Q129137'',''url'': ''https://www.wikidata.org/wiki/Q129137''}, N, Y, N, N +entity_types, test123 +entity_mentions, test12,6, 169, others +entity_versions, 497, 20.1,NULL,NULL +entity_relations,6,581,10,501 +operator_images,YAKS1 Operator,426,0,0,0,0,0,0,0,https://github.com/k8s-operatorhub/community-operators/operators,,https://github.com/k8s-operatorhub/community-operators/operators diff --git a/kg_utils/kg_aug.py b/kg_utils/kg_aug.py new file mode 100644 index 0000000..0779988 --- /dev/null +++ b/kg_utils/kg_aug.py @@ -0,0 +1,894 @@ +import sqlite3 +import csv +import re +import sys, getopt +from os.path import exists +import pandas as pd +import json +import argparse +from qwikidata.linked_data_interface import get_entity_dict_from_api + +value_constraints = { + "entities": {"COTS": {"Y", "N"}, "Legacy": {"Y", "N"}, "ContainerImage": {"Y", "N"}, "OpenSource": {"Y", "N"}}, + "entity_mentions": {"source": {"others", "also_known_as", "rediects_transclusions"}}, + "entity_versions": {"opensource": {"True", "False"}} +} + +default_value = { + "entities": {"COTS": "N", "Legacy": "N", "ContainerImage": "N", "OpenSource": "N", "external_link": "{}"} +} + +accept_null = { + "operator_images": {"OS", "lang", "lib", "app", "app_server", "plugin", "runlib", "runtime"}, + "openshift_images": {"OS", "lang", "lib", "app", "app_server", "plugin", "runlib", "runtime"}, + "docker_images": {"OS", "lang", "lib", "app", "app_server", "plugin", "runlib", "runtime"}, + "docker_environment_variables": {"Required", "Default_Values"}, + "docker_baseos_images": {"OpenShift_Correspondent_Image_URL", "OpenShiftStatus", "Notes"}, + "openshift_baseos_images": {"Notes", "OpenShiftStatus", "DockerImageType"}, + "entity_versions": {"release_date", "end_date"} +} + +def get_input_batch(filename): + """ + get the batch input from a csv file + args: + filename: CSV file with all the input data + + returns: dictionary of the data to be inserted into KB + """ + data = [] + if exists(filename): + with open(filename, newline='') as f: + reader = csv.reader(f) + data = list(reader) + for d, input in enumerate(data): + combineStIdx = -1 + combineEndIdx = -1 + for i, entry in enumerate(input): + if "{" in entry and "}" not in entry: + combineStIdx = i + elif "}" in entry and "{" not in entry: + if combineStIdx >= 0: + combineEndIdx = i + break + if combineStIdx >= 0 and combineEndIdx >= 0: + combinedStr = "" + for j in range(combineStIdx, combineEndIdx + 1): + combinedStr += input[j] + if j != combineEndIdx: + combinedStr += "," + data[d][combineStIdx] = combinedStr + data[d] = data[d][:combineStIdx + 1] + data[d][combineEndIdx + 1:] + # print(data) + return (data) + + +def check_input_batch(input_entry, cur): + """ + set of validation checks (format, type, length etc.) before inserting into KB + args: + input_entry: CSV file with all the input data + cur: cursor pointer to the KB database + returns: dictionary of the data to be inserted into KB + """ + tables = cur.execute("SELECT name FROM sqlite_master WHERE type='table';") + table_names = [] + for table_name in tables: + if table_name[0] != "sqlite_sequence": + table_names.append(table_name[0]) + # print(table_names) + table_name = "" + userColVals = [] + process_entry = True + if len(input_entry) <= 1: + process_entry = False + else: + table_name = input_entry[0] + if table_name not in table_names: + process_entry = False + if process_entry: + getColCmd = "PRAGMA table_info('" + table_name + "') " + columns = cur.execute(getColCmd).fetchall() + # print(table_name, len(columns), len(input_entry)) + if len(columns) != len(input_entry): # id is not present in input.. + process_entry = False + i = 1 + if process_entry: + for col in columns: + # print("Column name:",col[1],"Type:",col[2]) + if col[1] == "id": + continue + userval = input_entry[i].strip() + if col[2] == "integer": + if userval == "": + userval = "NULL" + if not userval.isdigit(): + can_accept_null = False + if table_name in accept_null.keys(): + if col[1] in accept_null[table_name]: + can_accept_null = True + if can_accept_null: + if userval != "NULL": + process_entry = False + elif col[2].find('TEXT(') >= 0: + start = col[2].find('TEXT(') + 5 + end = col[2].find(')', start) + text_len_limit = int(col[2][start:end]) + if len(userval) > text_len_limit: + process_entry = False + if process_entry: + if table_name in value_constraints.keys(): + if col[1] in value_constraints[table_name].keys(): + if userval not in value_constraints[table_name][col[1]]: + process_entry = False + userColVals.append(userval) + # print(process_entry) + i = i + 1 + return (table_name, userColVals, process_entry) + + +def get_input_cmdline(cur): + """ + To receive an input from the command line for interactive mode + args: + cur: cursor pointer to the KB database + returns: the tablename and the list of values for the various fields + """ + tables = cur.execute("SELECT name FROM sqlite_master WHERE type='table';") + table_names = [] + for table_name in tables: + if table_name[0] != "sqlite_sequence": + table_names.append(table_name[0]) + print("Tables in the database:", table_names) + table_accept = False + table_name = "" + while not table_accept: + table_name = input("Enter the table name of your choice:") + if table_name in table_names: + table_accept = True + else: + print("Unknown table -- please re-enter") + getColCmd = "PRAGMA table_info('" + table_name + "') " + columns = cur.execute(getColCmd).fetchall() + userColVals = [] + for col in columns: + # print("Column name:",col[1],"Type:",col[2]) + if col[1] == "id": + continue + userval_accept = False + while not userval_accept: + collValCmd = "Enter the value for column: " + col[1] + " (type: " + col[2] + valConstrSet = {} + valConstr = "" + if table_name in value_constraints.keys(): + if col[1] in value_constraints[table_name].keys(): + valConstrSet = value_constraints[table_name][col[1]] + valConstr = " accepted values: [ " + for entry in valConstrSet: + valConstr = valConstr + entry + " " + valConstr = valConstr + "]" + + defaultConstr = "" + if table_name in default_value.keys(): + if col[1] in default_value[table_name].keys(): + defaultConstr = " to skip enter " + default_value[table_name][col[1]] + + nullConstr = "" + can_accept_null = False + if table_name in accept_null.keys(): + if col[1] in accept_null[table_name]: + can_accept_null = True + nullConstr = " to skip enter NULL" + collValCmd = collValCmd + valConstr + defaultConstr + nullConstr + ")" + userval = input(collValCmd) + if col[2] == "integer": + if userval.isdigit(): + userval_accept = True + else: + if can_accept_null: + if userval == "NULL": + userval_accept = True + else: + print("Type not integer/NULL -- please re-enter") + else: + print("Type not integer -- please re-enter") + elif col[2].find('TEXT(') >= 0: + start = col[2].find('TEXT(') + 5 + end = col[2].find(')', start) + text_len_limit = int(col[2][start:end]) + if len(userval) <= text_len_limit: + userval_accept = True + else: + print("Text exceeds length -- please re-enter") + else: + userval_accept = True + if userval_accept: + if len(valConstrSet) > 0: + if userval not in valConstrSet: + userval_accept = False + print("Not a valid entry for column -- please re-enter") + if userval_accept: + userColVals.append(userval) + return (table_name, userColVals) + + +def check_for_entry_in_table(cur, table_name, column_name, value): + # print(table_name,column_name) + sqlquery = "SELECT " + column_name + " FROM " + table_name + " WHERE " + column_name + " = \"" + value + "\"" + answer = cur.execute(sqlquery) + return (answer.fetchall()) + + +def check_if_duplicate(table_name, userColVals, cur): + getColCmd = "PRAGMA table_info('" + table_name + "') " + columns = cur.execute(getColCmd).fetchall() + ## check for duplicates -- which is table based: + add_to_table = True + if table_name != "entity_relations" and table_name != "entity_versions": + if len(check_for_entry_in_table(cur, table_name, columns[1][1], userColVals[0])) > 0: + add_to_table = False + if table_name == "entities": + if len(check_for_entry_in_table(cur, "entity_mentions", "entity_mention_name", userColVals[0])) > 0: + add_to_table = False + if table_name == "entities" or table_name == "entity_mentions" or table_name == "entity_relations": + getIdQuery = "SELECT max(id) FROM entity_types" + answer = cur.execute(getIdQuery) + maxEntityTypeId = answer.fetchall()[0][0] + if table_name == "entities" or table_name == "entity_mentions": + if int(userColVals[1]) > maxEntityTypeId or int(userColVals[1]) <= 0: + add_to_table = False + else: + if int(userColVals[0]) > maxEntityTypeId or int(userColVals[0]) <= 0 or int( + userColVals[2]) > maxEntityTypeId or int(userColVals[2]) <= 0: + add_to_table = False + return add_to_table + + +def alter_case_format(table_name, userColVals): + if table_name == "entities": + userColVals[0] = userColVals[0].lower() + + +def insert_into_table(table_name, userColVals, cur): + """ + set of validation checks (format, type, length etc.) before inserting into KB + args: + table_name: table name + userColVals: + cur: cursor pointer to the KB database + returns: dictionary of the data to be inserted into KB + """ + count = 1 + list_len = len(userColVals) + getIdQuery = "SELECT max(id) FROM " + table_name + answer = cur.execute(getIdQuery) + myId = answer.fetchall()[0][0] + 1 + sqlquery = "INSERT INTO " + table_name + " values (" + str(myId) + "," + for colVal in userColVals: + if colVal.isdigit(): + sqlquery += (colVal + ",") + elif count < list_len: + sqlquery += ("'" + colVal + "',") + else: + sqlquery += ("'" + colVal + "'") + count += 1 + sqlquery += ")" + print(sqlquery) + cur.execute(sqlquery) + + +def generate_mentions_wiki(cur, my_entity_name): + """ + generate mentions from wikidata when a new entity is added to the entity table + args: + cur: cursor pointer to the KB database + my_entity_name: new entity thats added to the KB + + returns: newly generated mentions from wikiata + """ + gen_mentions = [] + my_qid = "" + sqlquery = "SELECT external_link FROM entities WHERE entity_name" + " = \"" + my_entity_name + "\"" + # print(sqlquery) + answer = cur.execute(sqlquery) + result = str(answer.fetchall()[0][0]) + result = result.replace("'", '"') + # print(result) + try: + result_dict = json.loads(result) + # print(result_dict) + if "qid" in result_dict.keys(): + my_qid = result_dict["qid"] + java_dict = get_entity_dict_from_api(my_qid) + if "aliases" in java_dict.keys(): + if "en" in java_dict["aliases"].keys(): + for x in java_dict["aliases"]["en"]: + if "value" in x.keys(): + gen_mentions.append((x["value"], "also_known_as")) + except json.decoder.JSONDecodeError: + pass + return gen_mentions + + +def enter_mentions_to_table(cur, gen_mentions, entity_id, entity_type_id): + """ + add the newly generated mentions generated from + args: + cur: cursor pointer to the KB database + my_entity_name: new entity thats added to the KB + + returns: newly generated mentions from wikiata + """ + for val in gen_mentions: + userColVals = [val[0], entity_type_id, entity_id, val[1]] + add_to_table = check_if_duplicate("entity_mentions", userColVals, cur) + if add_to_table: + insert_into_table("entity_mentions", userColVals, cur) + print("Mention " + val[0] + " inserted to table..") + + +# main insert new entry function +def insert_to_kg(mode, batch_filename, cur): + """ + set of validation checks (format, type, length etc.) before inserting into KB + args: + table_name: table name + userColVals: + cur: cursor pointer to the KB database + returns: dictionary of the data to be inserted into KB + """ + assert (mode == "batch" or mode == "interactive"), 'Mode is either batch or interactive' + num_entries = 1 + batch_data = [] + if mode == "batch": + batch_data = get_input_batch(batch_filename) + num_entries = len(batch_data) + if num_entries == 0: + print("No entries to process") + else: + for i in range(0, num_entries): + table_name = "" + userColVals = [] + process_entry = True + if mode == "interactive": + table_name, userColVals = get_input_cmdline(cur) + else: + table_name, userColVals, process_entry = check_input_batch(batch_data[i], cur) + # print(table_name, userColVals) + if process_entry: + alter_case_format(table_name, userColVals) + add_to_table = check_if_duplicate(table_name, userColVals, cur) + if add_to_table: + insert_into_table(table_name, userColVals, cur) + print("Entry " + str(i) + " inserted to table..") + if table_name == "entities": + my_entity_name = userColVals[0] + # autogenerate mentions.. + gen_mentions = generate_mentions_wiki(cur, my_entity_name) + # generate a entity mention with just upper case if not found in wiki. + if len(gen_mentions) == 0: + gen_mentions.append((my_entity_name.upper(), "others")) + if len(gen_mentions) > 0: + sqlquery = "SELECT id,entity_type_id FROM entities WHERE entity_name" + " = \"" + my_entity_name + "\"" + # print(sqlquery) + answer = cur.execute(sqlquery) + result = answer.fetchall()[0] + entity_id = str(result[0]) + entity_type_id = str(result[1]) + # print(entity_id,entity_type_id) + enter_mentions_to_table(cur, gen_mentions, entity_id, entity_type_id) + else: + print("Entry " + str(i) + " is a duplicate and skipped..") + else: + print("Entry " + str(i) + " cannot be processed..") + + +# edit entities table +def remove_from_entities(table_name, cur, entities_to_remove): + """ + remove or replace entities from the entities table + args: + table_name: str, name of table to edit ('entities') + cur: cursor pointer to the KB database + entities_to_remove: list of entity IDs to remove/replace + + returns: nothing, all operations are done on the db connection + """ + + # loop over entities to remove/replace + for d in entities_to_remove.keys(): + # only delete + if entities_to_remove[d] == 'NA': + sqlquery = f"DELETE FROM {table_name} WHERE Id='{d}'" + cur.execute(sqlquery) + else: + # replace as needed + + # entity to be used as replacement + sqlquery = f"SELECT entity_type_id,external_link,COTS,Legacy,ContainerImage,OpenSource FROM {table_name} WHERE Id='{entities_to_remove[d]}'" + answer = cur.execute(sqlquery) + try: + result = answer.fetchall()[0] + entity_type_id_ref = str(result[0]) + external_link_ref = str(result[1]) + COTS_ref = str(result[2]) + Legacy_ref = str(result[3]) + ContainerImage_ref = str(result[4]) + OpenSource_ref = str(result[5]) + elr_items = external_link_ref.split(' ') + except: + print(f'Invalid Id {entities_to_remove[d]}') + break + + # entity to be replaced + sqlquery = f"SELECT entity_type_id,external_link,COTS,Legacy,ContainerImage,OpenSource FROM {table_name} WHERE Id='{d}'" + answer = cur.execute(sqlquery) + try: + result = answer.fetchall()[0] + entity_type_id = str(result[0]) + external_link = str(result[1]) + COTS = str(result[2]) + Legacy = str(result[3]) + ContainerImage = str(result[4]) + OpenSource = str(result[5]) + el_items = external_link.split(' ') + except: + print(f'Invalid Id {d}') + break + + # check if the entities pair has the same type_id, COTS, Legacy, ContainerImage and Opensource values + # since they are supposed to represent the same entity, they should be consistent + if entity_type_id != entity_type_id_ref or COTS != COTS_ref or Legacy != Legacy_ref or \ + ContainerImage != ContainerImage_ref or OpenSource != OpenSource_ref: + print(f'Values for {d} and {entities_to_remove[d]} in ENTITIES table are different') + # continue + + # check if the external links correspond. If not, use the longest one (which is supposed to contain more information) + matching_external_links = True + for link in el_items[:-1]: + if link not in elr_items: + matching_external_links = False + break + + if not matching_external_links: + if len(external_link) > len(external_link_ref): + sqlquery = f''' UPDATE {table_name} + SET external_link="{external_link}" + WHERE Id="{entities_to_remove[d]}"''' + + cur.execute(sqlquery) + + # remove row + sqlquery = f"DELETE FROM {table_name} WHERE Id='{d}'" + cur.execute(sqlquery) + + +# remove entities from baseos images tables +def remove_from_baseos_images(table_name, cur, entities_to_remove): + """ + remove or replace entities (assuming they are OS) from baseos_images tables (dockerhub, openshift) + args: + table_name: str, name of table to edit + cur: cursor pointer to the KB database + entities_to_remove: list of entity IDs to remove/replace + + returns: nothing, all operations are done on the db connection + """ + + # NOTE: potentially add check for entity type before invoking this function? must be OS + + sqlquery = f"SELECT OS FROM '{table_name}'" + answer = cur.execute(sqlquery) + all_os = [str(x[0]) for x in answer.fetchall()] + + for os in entities_to_remove.keys(): + if os in all_os: + if entities_to_remove[os] == 'NA': + # entity to delete, remove row + sqlquery = f"DELETE FROM {table_name} WHERE OS='{os}'" + else: + # entity to replace + sqlquery = f''' UPDATE {table_name} + SET OS="{entities_to_remove[os]}" + WHERE OS="{os}"''' + + cur.execute(sqlquery) + + +# remove entities from images tables +def remove_from_images(table_name, cur, entities_to_remove): + """ + remove or replace entities from images tables (dockerhub, openshift, operator) + args: + table_name: str, name of table to edit + cur: cursor pointer to the KB database + entities_to_remove: list of entity IDs to remove/replace + + returns: nothing, all operations are done on the db connection + """ + # get table columns names + cols = cur.execute(f"SELECT name FROM PRAGMA_TABLE_INFO('{table_name}');") + columns = [str(x[0]) for x in cols] + + avoid_columns = ['id', 'container_name', 'Docker_URL', 'Notes', 'CertOfImageAndPublisher', \ + 'OpenShift_Correspondent_Image_URL', 'DockerImageType', 'Operator_Correspondent_Image_URL'] + + # loop over columns to edit entries + for c in columns: + if c not in avoid_columns: + for en in entities_to_remove.keys(): + if entities_to_remove[en] == 'NA': + # entity to delete, replace with NULL values + sqlquery = f''' UPDATE {table_name} + SET {c}=NULL + WHERE {c}="{en}"''' + else: + # entity to replace + sqlquery = f''' UPDATE {table_name} + SET {c}="{entities_to_remove[en]}" + WHERE {c}="{en}"''' + + cur.execute(sqlquery) + + +# remove from entity mentions table +def remove_from_entity_mentions(table_name, cur, entities_to_remove, entity_types): + """ + remove or replace entities from entity_mentions tables + args: + table_name: str, name of table to edit + cur: cursor pointer to the KB database + entities_to_remove: list of entity IDs to remove/replace + + returns: nothing, all operations are done on the db connection + """ + + # loop over entities to remove/replace + for en in entities_to_remove.keys(): + if entities_to_remove[en] == 'NA': + # entity to delete, remove row + sqlquery = f"DELETE FROM {table_name} WHERE entity_id='{en}'" + cur.execute(sqlquery) + else: + # replace as needed + # entity to be used as replacement + sqlquery = f"SELECT entity_type_id FROM {table_name} WHERE entity_id='{entities_to_remove[en]}'" + answer = cur.execute(sqlquery) + try: + result = answer.fetchall()[0] + entity_type_id_ref = str(result[0]) + except: + print(f'Invalid Id {entities_to_remove[en]}') + break + # entity to replace + sqlquery = f"SELECT entity_type_id FROM {table_name} WHERE entity_id='{en}'" + answer = cur.execute(sqlquery) + try: + result = answer.fetchall()[0] + entity_type_id = str(result[0]) + except: + print(f'Invalid Id {en}') + break + + # check if the entities pair has the same type_id + # since they are supposed to represent the same entity, they should be consistent + if entity_type_id != entity_type_id_ref: + print(f'entity_type_id for {en} and {entities_to_remove[en]} in entity_mentions table are different') + sqlquery = f''' UPDATE {table_name} + SET entity_type_id="{entity_type_id_ref}" + WHERE entity_id="{en}"''' + cur.execute(sqlquery) + # update row + sqlquery = f''' UPDATE {table_name} + SET entity_id="{entities_to_remove[en]}" + WHERE entity_id="{en}"''' + cur.execute(sqlquery) + +# remove from entity relations table +def remove_from_entity_relations(table_name, cur, entities_to_remove, entity_types): + """ + remove or replace entities from entity_relations table + args: + table_name: str, name of table to edit + cur: cursor pointer to the KB database + entities_to_remove: list of entity IDs to remove/replace + + returns: nothing, all operations are done on the db connection + """ + for en in entities_to_remove.keys(): + if entities_to_remove[en] == 'NA': + # entity to delete, remove row + sqlquery = f"DELETE FROM {table_name} WHERE entity_parent_id='{en}' OR entity_child_id='{en}'" + cur.execute(sqlquery) + else: + # replace as needed + + # entity to be used as replacement + sqlquery = f"SELECT entity_parent_type_id FROM {table_name} WHERE entity_parent_id='{entities_to_remove[en]}'" + answer = cur.execute(sqlquery) + try: + result = answer.fetchall()[0] + entity_parent_type_id_ref = str(result[0]) + except: + print(f'Invalid parent Id {entities_to_remove[en]}') + break + + sqlquery = f"SELECT entity_child_type_id FROM {table_name} WHERE entity_child_id='{entities_to_remove[en]}'" + answer = cur.execute(sqlquery) + try: + result = answer.fetchall()[0] + entity_child_type_id_ref = str(result[0]) + except: + print(f'Invalid child Id {entities_to_remove[en]}') + break + + # entity to be replaced + sqlquery = f"SELECT entity_parent_type_id FROM {table_name} WHERE entity_parent_id='{en}'" + answer = cur.execute(sqlquery) + try: + result = answer.fetchall()[0] + entity_parent_type_id = str(result[0]) + except: + print(f'Invalid parent Id {en}') + break + + sqlquery = f"SELECT entity_child_type_id FROM {table_name} WHERE entity_child_id='{en}'" + answer = cur.execute(sqlquery) + try: + result = answer.fetchall()[0] + entity_child_type_id = str(result[0]) + except: + print(f'Invalid child Id {en}') + break + + # check if the entities pair has the same type_id + # since they are supposed to represent the same entity, they should be consistent + if entity_parent_type_id != entity_parent_type_id_ref: + print(f'entity_parent_type_id for {en} and {entities_to_remove[en]} in entity_relations table are different') + sqlquery = f''' UPDATE {table_name} + SET entity_parent_type_id="{entity_parent_type_id_ref}" + WHERE entity_parent_id="{en}"''' + cur.execute(sqlquery) + + if entity_child_type_id != entity_child_type_id_ref: + print(f'entity_child_type_id for {en} and {entities_to_remove[en]} in entity_relations table are different') + sqlquery = f''' UPDATE {table_name} + SET entity_child_type_id="{entity_child_type_id_ref}" + WHERE entity_child_id="{en}"''' + cur.execute(sqlquery) + + # update row + sqlquery = f''' UPDATE {table_name} + SET entity_parent_id="{entities_to_remove[en]}" + WHERE entity_parent_id="{en}"''' + cur.execute(sqlquery) + sqlquery = f''' UPDATE {table_name} + SET entity_child_id="{entities_to_remove[en]}" + WHERE entity_child_id="{en}"''' + cur.execute(sqlquery) + + # remove duplicates if they were created as a result of replacement + sqlquery = f"DELETE FROM {table_name} WHERE entity_parent_id==entity_child_id" + cur.execute(sqlquery) + + + +# remove from entity versions table +def remove_from_entity_versions(table_name, cur, entities_to_remove): + """ + remove or replace entities from entity_versions table + args: + table_name: str, name of table to edit + cur: cursor pointer to the KB database + entities_to_remove: list of entity IDs to remove/replace + + returns: nothing, all operations are done on the db connection + """ + for en in entities_to_remove.keys(): + if entities_to_remove[en] == 'NA': + # entity to delete, remove row + sqlquery = f"DELETE FROM {table_name} WHERE entity_id='{en}'" + cur.execute(sqlquery) + else: + # entity to replace + sqlquery = f"SELECT 1 FROM {table_name} WHERE entity_id='{entities_to_remove[en]}'" + answer = cur.execute(sqlquery) + try: + result = answer.fetchall()[0] + sqlquery = f"DELETE FROM {table_name} WHERE entity_id='{en}'" + cur.execute(sqlquery) + except: + sqlquery = f''' UPDATE {table_name} + SET entity_id="{entities_to_remove[en]}" + WHERE entity_id="{en}"''' + cur.execute(sqlquery) + +# convert entity names to entity ids +def fetch_ids(data, cur): + """ + Convert entity names to entity IDs + args: + data: list of entity names (or entity names pairs) + cur: cursor pointer to the KB database + + returns: entities_to_remove - dict with entity IDs to remove as keys() and replacement IDs or 'NA' as values() + """ + + entities_to_remove = {} + + # fetch entity names and IDs from the entities table + sqlquery = f"SELECT id,entity_name FROM 'entities'" + answer = cur.execute(sqlquery) + entity_names = [] + entity_ids = [] + for x in answer.fetchall(): + entity_names.append(str(x[1])) + entity_ids.append(str(x[0])) + + # loop over list of entities to delete/replace and look for them in the existing entities table + for d in data: + # entity to delete + if len(d) == 1: + if d[0] in entity_names: + ind = entity_names.index(d[0]) + entities_to_remove[entity_ids[ind]] = 'NA' + else: + if d[0].isnumeric() and d[0] in entity_ids: + entities_to_remove[d[0]] = 'NA' + else: + print(f'Entity {d[0]} not found in KB. Will be skipped') + continue + else: + # entity to replace + if d[0] in entity_names and d[1] in entity_names: + ind0 = entity_names.index(d[0]) + ind1 = entity_names.index(d[1]) + entities_to_remove[entity_ids[ind0]] = entity_ids[ind1] + else: + if d[0].isnumeric() and d[0] in entity_ids and d[1].isnumeric() and d[1] in entity_ids: + entities_to_remove[d[0]] = d[1] + else: + print(f'Entity {d[0]} or {d[1]} not found in KB. Will be skipped') + continue + + return entities_to_remove + + +# get a dict of enitity_type for each entity +def get_entity_types(cur): + """ + List entity type for each entity + args: + cur: cursor pointer to the KB database + + returns: entity_types - dict with entity IDs as keys() and entity types as values() + """ + entity_types = {} + + sqlquery = f"SELECT id,entity_type_id FROM 'entities'" + answer = cur.execute(sqlquery) + + for x in answer.fetchall(): + entity_types[str(x[0])] = str(x[1]) + + return entity_types + + +# main delete/replace entities function +def delete_from_kg(del_file, cur, table_names): + """ + Remove/Replace entities from the KB + args: + del_file: string with the path of the file containing the list of entities to delete/replace + cur: cursor pointer to the KB database + table_names: list of table names in the KB + + returns: nothing, all operations are done on the db connection + """ + # read entries to delete/replace from the del_file + with open(del_file, newline='') as f: + reader = csv.reader(f) + data = list(reader) + + # separate data to remove by table + data_tables = {} + for t in table_names: + data_tables[t] = [] + + for d in data: + if d[0] not in data_tables: + print(f'Error unrecognized table name: {d[0]}. Entry {d} will be skipped') + continue + + data_tables[d[0]].append(d[1:]) + + # remove mentions + if len(data_tables['entity_mentions']) > 0: + remove_lines_from_entity_mentions('entity_mentions', cur, data_tables['entity_mentions']) + + # remove entities + if len(data_tables['entities']) > 0: + # convert entity names to a list of entity ids + entities_to_remove = fetch_ids(data_tables['entities'], cur) + + # loop over tables and remove/replace entities + for table_name in table_names: + if table_name == 'entities': + remove_from_entities('entities', cur, entities_to_remove) + + if table_name == 'docker_baseos_images' or table_name == 'openshift_baseos_images': + remove_from_baseos_images(table_name, cur, entities_to_remove) + + if table_name == 'docker_images' or table_name == 'openshift_images' or table_name == 'operator_images': + remove_from_images(table_name, cur, entities_to_remove) + + entity_types = get_entity_types(cur) + if table_name == 'entity_mentions': + remove_from_entity_mentions(table_name, cur, entities_to_remove, entity_types) + + if table_name == 'entity_relations': + remove_from_entity_relations(table_name, cur, entities_to_remove, entity_types) + + if table_name == 'entity_versions': + remove_from_entity_versions(table_name, cur, entities_to_remove) + + +# input argument parser +def parser(): + parser = argparse.ArgumentParser(description="modify KB by adding or deleting entities") + parser.add_argument("-m", dest="mode", type=str, help="mode: interactive or batch", required=True) + parser.add_argument("-d", dest="db_file", type=str, help="database file (.db) path", required=True) + parser.add_argument("-b", dest="batch_file", type=str, default="", help="batch file (.txt) path") + parser.add_argument("-r", dest="del_file", type=str, default="", + help="entities to delete/replace list file (.csv) path") + return parser.parse_args() + + +def main(): + # parse inputs + args = parser() + + mode = args.mode + batch_filename = args.batch_file + db_file = args.db_file + del_file = args.del_file + + # check inputs + if mode != "batch" and mode != "interactive": + print("mode -mode should be batch or interactive") + sys.exit() + if mode == "batch": + if not exists(batch_filename): + print("batch_file -", batch_filename, "- does not exist") + sys.exit() + if not exists(db_file): + print("db_file -", db_file, "- does not exist") + sys.exit() + if del_file != "" and not exists(del_file): + print("del_file -", db_file, "- does not exist") + sys.exit() + + # initiate connection to db file + conn = sqlite3.connect(db_file) + cur = conn.cursor() + + # get table names + tables = cur.execute("SELECT name FROM sqlite_master WHERE type='table';") + table_names = [] + for table_name in tables: + if table_name[0] != "sqlite_sequence": + table_names.append(table_name[0]) + + # execute changes to KB + if del_file != "": + delete_from_kg(del_file, cur, table_names) + else: + insert_to_kg(mode, batch_filename, cur) + + # commit changes and close connection + conn.commit() + conn.close() + + +if __name__ == "__main__": + main() From 6700789ff21617f9fc873eabd8b36485fae89038 Mon Sep 17 00:00:00 2001 From: divsan93 Date: Wed, 6 Jul 2022 13:34:57 -0400 Subject: [PATCH 04/30] latest database file --- db/1.0.4.sql | 1291 ++++++++++++++++++++++++++++++-------------------- 1 file changed, 772 insertions(+), 519 deletions(-) diff --git a/db/1.0.4.sql b/db/1.0.4.sql index 9ab796d..f8b9b9e 100644 --- a/db/1.0.4.sql +++ b/db/1.0.4.sql @@ -221,6 +221,49 @@ INSERT INTO docker_images VALUES(168,'PowerShell',450,660,NULL,NULL,NULL,NULL,NU INSERT INTO docker_images VALUES(169,'cassandra',426,NULL,NULL,634,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/cassandra','Databases','Official Image'); INSERT INTO docker_images VALUES(170,'Gitlab Community Edition',426,NULL,NULL,678,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/gitlab-community-edition','DevOps Tool','Verified Publisher'); INSERT INTO docker_images VALUES(171,'maven',426,331,388,697,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/maven','',NULL); +INSERT INTO docker_images VALUES (172, 'adobecoldfusion/coldfusion', 426, 'NULL', 'NULL', 37, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/adobecoldfusion/coldfusion', '', 'False'); +INSERT INTO docker_images VALUES (173, 'ibmcom/db2', 426, 'NULL', 'NULL', 43, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/ibmcom/db2', '', 'False'); +INSERT INTO docker_images VALUES (174, 'bitnami/mongodb', 426, 'NULL', 'NULL', 116, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/bitnami/mongodb', '', 'False'); +INSERT INTO docker_images VALUES (175, 'bitnami/openldap', 426, 'NULL', 'NULL', 126, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/bitnami/openldap', '', 'False'); +INSERT INTO docker_images VALUES (176, 'bitnami/postgresql', 426, 'NULL', 'NULL', 157, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/bitnami/postgresql', '', 'False'); +INSERT INTO docker_images VALUES (177, 'redis', 426, 'NULL', 'NULL', 168, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/redis', '', 'True'); +INSERT INTO docker_images VALUES (178, 'sentry', 426, 'NULL', 'NULL', 180, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/sentry', '', 'True'); +INSERT INTO docker_images VALUES (179, 'ibmcom/zeromq', 426, 'NULL', 'NULL', 248, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/ibmcom/zeromq', '', 'False'); +INSERT INTO docker_images VALUES (180, 'bitnami/spark', 426, 'NULL', 'NULL', 'NULL', 280, 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/bitnami/spark', '', 'False'); +INSERT INTO docker_images VALUES (181, 'ibmcom/bootstrap', 426, 'NULL', 377, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/ibmcom/bootstrap', '', 'False'); +INSERT INTO docker_images VALUES (182, 'ibmcom/react', 426, 'NULL', 413, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/ibmcom/react', '', 'False'); +INSERT INTO docker_images VALUES (183, 'circleci/android', 418, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/circleci/android', '', 'False'); +INSERT INTO docker_images VALUES (184, 'dart', 421, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/dart', '', 'True'); +INSERT INTO docker_images VALUES (185, 'centos', 427, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/centos', '', 'True'); +INSERT INTO docker_images VALUES (186, 'debian', 429, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/debian', '', 'True'); +INSERT INTO docker_images VALUES (187, 'opensuse', 431, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/opensuse', '', 'True'); +INSERT INTO docker_images VALUES (188, 'ubuntu', 436, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/ubuntu', '', 'True'); +INSERT INTO docker_images VALUES (189, 'fedora', 453, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/fedora', '', 'True'); +INSERT INTO docker_images VALUES (190, 'bitnami/wildfly', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 493, 'NULL', 'https://hub.docker.com/r/bitnami/wildfly', '', 'False'); +INSERT INTO docker_images VALUES (191, 'docker', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 503, 'https://hub.docker.com/_/docker', '', 'True'); +INSERT INTO docker_images VALUES (192, 'ibmcom/json', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/ibmcom/json', '', 'False'); +INSERT INTO docker_images VALUES (193, 'java', 426, 584, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/java', '', 'True'); +INSERT INTO docker_images VALUES (194, 'python', 426, 587, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/python', '', 'True'); +INSERT INTO docker_images VALUES (195, 'snyk/snyk', 426, 'NULL', 'NULL', 613, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/snyk/snyk', '', 'False'); +INSERT INTO docker_images VALUES (196, 'varnish', 426, 'NULL', 'NULL', 'NULL', 615, 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/varnish', '', 'True'); +INSERT INTO docker_images VALUES (197, 'kasmweb/api', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/kasmweb/api', '', 'False'); +INSERT INTO docker_images VALUES (198, 'nuxeo', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 620, 'https://hub.docker.com/_/nuxeo', '', 'True'); +INSERT INTO docker_images VALUES (199, 'arangodb', 426, 'NULL', 'NULL', 621, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/arangodb', '', 'True'); +INSERT INTO docker_images VALUES (200, 'bitnami/minio', 426, 'NULL', 'NULL', 625, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/bitnami/minio', '', 'False'); +INSERT INTO docker_images VALUES (201, 'elasticsearch', 426, 'NULL', 'NULL', 626, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/elasticsearch', '', 'True'); +INSERT INTO docker_images VALUES (202, 'bitnami/keycloak', 426, 'NULL', 'NULL', 628, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/bitnami/keycloak', '', 'False'); +INSERT INTO docker_images VALUES (203, 'grafana/grafana', 426, 'NULL', 'NULL', 629, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/grafana/grafana', '', 'False'); +INSERT INTO docker_images VALUES (204, 'mariadb', 426, 'NULL', 'NULL', 642, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/mariadb', '', 'True'); +INSERT INTO docker_images VALUES (205, 'vault', 426, 'NULL', 'NULL', 645, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/vault', '', 'True'); +INSERT INTO docker_images VALUES (206, 'bitnami/etcd', 426, 'NULL', 'NULL', 647, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/bitnami/etcd', '', 'False'); +INSERT INTO docker_images VALUES (207, 'traefik', 426, 'NULL', 'NULL', 'NULL', 648, 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/traefik', '', 'True'); +INSERT INTO docker_images VALUES (208, 'bitnami/git', 426, 'NULL', 'NULL', 677, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/bitnami/git', '', 'False'); +INSERT INTO docker_images VALUES (209, 'ibmcom/isam', 426, 'NULL', 'NULL', 693, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/ibmcom/isam', '', 'False'); + + + + + CREATE TABLE entities ( id integer PRIMARY KEY AUTOINCREMENT, entity_name text NOT NULL, @@ -228,198 +271,198 @@ CREATE TABLE entities ( external_link text, COTS TEXT(10) DEFAULT N NOT NULL, Legacy TEXT(10) DEFAULT N NOT NULL, ContainerImage TEXT(10) DEFAULT N NOT NULL, OpenSource TEXT(10) DEFAULT N NOT NULL, FOREIGN KEY (entity_type_id) REFERENCES entity_types (id) ); -INSERT INTO entities VALUES(1,'(E)JES',2,'{''name'': '''', ''qid'': ''Q355203'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q355203'', ''score'': 1}','Y','N','N','N'); +INSERT INTO entities VALUES(1,'(E)JES',2,'{''qid'': ''Q355203'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q355203''}','Y','N','N','N'); INSERT INTO entities VALUES(2,'A-Auto Job Scheduling Software',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(3,'Activiti',2,'{''name'': ''Activiti (software)'', ''qid'': ''Q344370'', ''types'': [''Q341'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Activiti_(software)'', ''score'': 80.36906}','N','Y','Y','Y'); -INSERT INTO entities VALUES(4,'Adobe Acrobat Reader',2,'{''name'': ''Adobe Acrobat'', ''qid'': ''Q207902'', ''types'': [''Q29364197'', ''Q166142''], ''url'': ''http://dbpedia.org/resource/Adobe_Acrobat'', ''score'': 85.21697}','N','N','Y','N'); -INSERT INTO entities VALUES(5,'Ansible',2,'{''name'': ''Ansible (software)'', ''qid'': ''Q2852503'', ''types'': [''Q29032804''], ''url'': ''http://dbpedia.org/resource/Ansible_(software)'', ''score'': 85.49159}','N','N','Y','Y'); -INSERT INTO entities VALUES(6,'Apache ActiveMQ',2,'{''name'': ''Apache ActiveMQ'', ''qid'': ''Q773135'', ''types'': [''Q6821765'', ''Q1092177'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_ActiveMQ'', ''score'': 83.98421}','N','N','Y','Y'); -INSERT INTO entities VALUES(7,'Apache Hbase',2,'{''name'': ''Apache HBase'', ''qid'': ''Q2538066'', ''types'': [''Q341'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Apache_HBase'', ''score'': 87.39264}','N','Y','Y','N'); -INSERT INTO entities VALUES(8,'Apache Hive',2,'{''name'': ''Apache Hive'', ''qid'': ''Q4778914'', ''types'': [''Q341'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Apache_Hive'', ''score'': 83.50612}','N','N','Y','Y'); -INSERT INTO entities VALUES(9,'Apache Kafka',2,'{''name'': ''Apache Kafka'', ''qid'': ''Q16235208'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/Apache_Kafka'', ''score'': 84.29118}','N','N','Y','Y'); -INSERT INTO entities VALUES(10,'Apache ServiceMix',2,'{''name'': ''Apache ServiceMix'', ''qid'': ''Q773212'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_ServiceMix'', ''score'': 82.62029}','N','N','Y','Y'); -INSERT INTO entities VALUES(11,'Apache Solr',2,'{''name'': ''Apache Solr'', ''qid'': ''Q2858103'', ''types'': [''Q19541'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_Solr'', ''score'': 88.71611}','N','N','Y','Y'); -INSERT INTO entities VALUES(12,'Apache Subversion',2,'{''name'': ''Apache Subversion'', ''qid'': ''Q46794'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Apache_Subversion'', ''score'': 83.12955}','N','N','Y','Y'); -INSERT INTO entities VALUES(13,'Application Development Facility (ADF)',2,'{''name'': ''Django Software Foundation'', ''qid'': ''Q5285237'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Django_Software_Foundation'', ''score'': 76.50606}','N','Y','Y','N'); -INSERT INTO entities VALUES(14,'Asterisk',2,'{''name'': ''Asterisk (PBX)'', ''qid'': ''Q622754'', ''types'': [''Q1978634''], ''url'': ''http://dbpedia.org/resource/Asterisk_(PBX)'', ''score'': 78.05993}','N','N','Y','Y'); +INSERT INTO entities VALUES(3,'Activiti',2,'{''qid'': ''Q344370'', ''types'': [''Q341'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Activiti_(software)''}','N','Y','Y','Y'); +INSERT INTO entities VALUES(4,'Adobe Acrobat Reader',2,'{''qid'': ''Q207902'', ''types'': [''Q29364197'', ''Q166142''], ''url'': ''http://dbpedia.org/resource/Adobe_Acrobat''}','N','N','Y','N'); +INSERT INTO entities VALUES(5,'Ansible',2,'{''qid'': ''Q2852503'', ''types'': [''Q29032804''], ''url'': ''http://dbpedia.org/resource/Ansible_(software)''}','N','N','Y','Y'); +INSERT INTO entities VALUES(6,'Apache ActiveMQ',2,'{''qid'': ''Q773135'', ''types'': [''Q6821765'', ''Q1092177'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_ActiveMQ''}','N','N','Y','Y'); +INSERT INTO entities VALUES(7,'Apache Hbase',2,'{''qid'': ''Q2538066'', ''types'': [''Q341'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Apache_HBase''}','N','Y','Y','N'); +INSERT INTO entities VALUES(8,'Apache Hive',2,'{''qid'': ''Q4778914'', ''types'': [''Q341'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Apache_Hive''}','N','N','Y','Y'); +INSERT INTO entities VALUES(9,'Apache Kafka',2,'{''qid'': ''Q16235208'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/Apache_Kafka''}','N','N','Y','Y'); +INSERT INTO entities VALUES(10,'Apache ServiceMix',2,'{''qid'': ''Q773212'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_ServiceMix''}','N','N','Y','Y'); +INSERT INTO entities VALUES(11,'Apache Solr',2,'{''qid'': ''Q2858103'', ''types'': [''Q19541'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_Solr''}','N','N','Y','Y'); +INSERT INTO entities VALUES(12,'Apache Subversion',2,'{''qid'': ''Q46794'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Apache_Subversion''}','N','N','Y','Y'); +INSERT INTO entities VALUES(13,'Application Development Facility (ADF)',2,'{''qid'': ''Q5285237'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Django_Software_Foundation''}','N','Y','Y','N'); +INSERT INTO entities VALUES(14,'Asterisk',2,'{''qid'': ''Q622754'', ''types'': [''Q1978634''], ''url'': ''http://dbpedia.org/resource/Asterisk_(PBX)''}','N','N','Y','Y'); INSERT INTO entities VALUES(15,'Automic Job Scheduler',2,'{}','N','N','Y','N'); INSERT INTO entities VALUES(16,'Autosys',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(17,'Bluebeam|Bluebeam Q',2,'{''name'': ''Bluebeam Software, Inc.'', ''qid'': ''Q4930191'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Bluebeam_Software,_Inc.'', ''score'': 82.72041}','Y','N','N','N'); -INSERT INTO entities VALUES(18,'BMC Control-M',2,'{''name'': '''', ''qid'': ''Q4835944'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q4835944'', ''score'': 1}','Y','N','N','N'); +INSERT INTO entities VALUES(17,'Bluebeam|Bluebeam Q',2,'{''qid'': ''Q4930191'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Bluebeam_Software,_Inc.''}','Y','N','N','N'); +INSERT INTO entities VALUES(18,'BMC Control-M',2,'{''qid'': ''Q4835944'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q4835944''}','Y','N','N','N'); INSERT INTO entities VALUES(19,'BMC Identity Management',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(20,'Borland Database Engine (BDE)',2,'{''name'': ''Borland Database Engine'', ''qid'': ''Q893888'', ''types'': [''Q537993''], ''url'': ''http://dbpedia.org/resource/Borland_Database_Engine'', ''score'': 89.34659}','N','N','Y','N'); -INSERT INTO entities VALUES(21,'Business Intelligence and Reporting Tools (BIRT)',2,'{''name'': ''BIRT Project'', ''qid'': ''Q796007'', ''types'': [''Q341'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/BIRT_Project'', ''score'': 83.51869}','N','N','Y','Y'); -INSERT INTO entities VALUES(22,'CA Gen',2,'{''name'': ''CA Gen'', ''qid'': ''Q2125673'', ''types'': [''Q28059995''], ''url'': ''http://dbpedia.org/resource/CA_Gen'', ''score'': 82.90759}','N','N','Y','N'); +INSERT INTO entities VALUES(20,'Borland Database Engine (BDE)',2,'{''qid'': ''Q893888'', ''types'': [''Q537993''], ''url'': ''http://dbpedia.org/resource/Borland_Database_Engine''}','N','N','Y','N'); +INSERT INTO entities VALUES(21,'Business Intelligence and Reporting Tools (BIRT)',2,'{''qid'': ''Q796007'', ''types'': [''Q341'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/BIRT_Project''}','N','N','Y','Y'); +INSERT INTO entities VALUES(22,'CA Gen',2,'{''qid'': ''Q2125673'', ''types'': [''Q28059995''], ''url'': ''http://dbpedia.org/resource/CA_Gen''}','N','N','Y','N'); INSERT INTO entities VALUES(23,'CA Introscope',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(24,'CA-Panvalet',2,'{''name'': ''Panvalet'', ''qid'': ''Q17073931'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Panvalet'', ''score'': 84.148056}','Y','Y','N','N'); -INSERT INTO entities VALUES(25,'CA-TELON',2,'{''name'': ''CA-Telon'', ''qid'': ''Q2383975'', ''types'': [''Q238137''], ''url'': ''http://dbpedia.org/resource/CA-Telon'', ''score'': 83.307594}','Y','Y','N','N'); +INSERT INTO entities VALUES(24,'CA-Panvalet',2,'{''qid'': ''Q17073931'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Panvalet''}','Y','Y','N','N'); +INSERT INTO entities VALUES(25,'CA-TELON',2,'{''qid'': ''Q2383975'', ''types'': [''Q238137''], ''url'': ''http://dbpedia.org/resource/CA-Telon''}','Y','Y','N','N'); INSERT INTO entities VALUES(26,'Casegen',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(27,'Chef Automate',2,'{''name'': ''Chef (software)'', ''qid'': ''Q24479'', ''types'': [''Q29032804''], ''url'': ''http://dbpedia.org/resource/Chef_(software)'', ''score'': 81.046}','N','N','Y','Y'); +INSERT INTO entities VALUES(27,'Chef Automate',2,'{''qid'': ''Q24479'', ''types'': [''Q29032804''], ''url'': ''http://dbpedia.org/resource/Chef_(software)''}','N','N','Y','Y'); INSERT INTO entities VALUES(28,'Cisco AMP for Endpoints',2,'{}','N','N','Y','N'); INSERT INTO entities VALUES(29,'CiscoWorks LAN Management Solution (LMS)',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(30,'Citrix Virtual Apps and Desktops',2,'{''name'': ''Citrix Virtual Apps'', ''qid'': ''Q1093482'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/XenApp'', ''score'': 80.51713}','Y','N','N','N'); +INSERT INTO entities VALUES(30,'Citrix Virtual Apps and Desktops',2,'{''qid'': ''Q1093482'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/XenApp''}','Y','N','N','N'); INSERT INTO entities VALUES(31,'Citrix ADC CPX',2,'{}','N','N','Y','N'); INSERT INTO entities VALUES(32,'Citrix Provisioning',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(33,'Clarify',2,'{''name'': ''Clarify Op3nvoice'', ''qid'': ''Q17105097'', ''types'': [''Q1058914''], ''url'': ''http://dbpedia.org/resource/Clarify_Op3nvoice'', ''score'': 78.0036}','Y','Y','N','N'); +INSERT INTO entities VALUES(33,'Clarify',2,'{''qid'': ''Q17105097'', ''types'': [''Q1058914''], ''url'': ''http://dbpedia.org/resource/Clarify_Op3nvoice''}','Y','Y','N','N'); INSERT INTO entities VALUES(34,'Clarity LIMS',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(35,'LabWare LIMS',2,'{''name'': ''Laboratory information management system'', ''qid'': ''Q1798149'', ''types'': [''Q121182''], ''url'': ''http://dbpedia.org/resource/Laboratory_information_management_system'', ''score'': 80.53012}','Y','N','N','N'); -INSERT INTO entities VALUES(36,'Cognos',2,'{''name'': ''Cognos'', ''qid'': ''Q1107048'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Cognos'', ''score'': 84.58173}','N','N','Y','N'); -INSERT INTO entities VALUES(37,'Coldfusion',2,'{''name'': ''Adobe ColdFusion'', ''qid'': ''Q468446'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Adobe_ColdFusion'', ''score'': 81.08464}','Y','N','N','N'); +INSERT INTO entities VALUES(35,'LabWare LIMS',2,'{''qid'': ''Q1798149'', ''types'': [''Q121182''], ''url'': ''http://dbpedia.org/resource/Laboratory_information_management_system''}','Y','N','N','N'); +INSERT INTO entities VALUES(36,'Cognos',2,'{''qid'': ''Q1107048'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Cognos''}','N','N','Y','N'); +INSERT INTO entities VALUES(37,'Coldfusion',2,'{''qid'': ''Q468446'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Adobe_ColdFusion''}','Y','N','N','N'); INSERT INTO entities VALUES(38,'ConceptWave',2,'{}','Y','Y','N','N'); INSERT INTO entities VALUES(39,'CONNAPI',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(40,'Connect Direct',2,'{''name'': ''Connect:Direct'', ''qid'': ''Q369085'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Connect:Direct'', ''score'': 80.47929}','Y','N','N','N'); -INSERT INTO entities VALUES(41,'Cornerstone software',2,'{''name'': ''Cornerstone (software)'', ''qid'': ''Q5171657'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Cornerstone_(software)'', ''score'': 84.07675}','Y','N','N','N'); -INSERT INTO entities VALUES(42,'Crystal Reports',2,'{''name'': ''Crystal Reports'', ''qid'': ''Q1142403'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/Crystal_Reports'', ''score'': 81.48552}','Y','N','N','N'); -INSERT INTO entities VALUES(43,'DB2',2,'{''name'': ''IBM Db2 Family'', ''qid'': ''Q431195'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/IBM_DB2'', ''score'': 80.67953}','N','N','Y','N'); -INSERT INTO entities VALUES(44,'Documentum Content Server',2,'{''name'': ''Documentum'', ''qid'': ''Q5287684'', ''types'': [''Q247423'', ''Q1344636''], ''url'': ''http://dbpedia.org/resource/Documentum'', ''score'': 83.04982}','Y','N','N','N'); -INSERT INTO entities VALUES(45,'Drupal',2,'{''name'': ''Drupal'', ''qid'': ''Q170855'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/Drupal'', ''score'': 85.396324}','N','N','Y','Y'); -INSERT INTO entities VALUES(46,'Eclipse',2,'{''name'': ''Eclipse (software)'', ''qid'': ''Q82268'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/Eclipse_(software)'', ''score'': 82.28669}','N','N','Y','Y'); +INSERT INTO entities VALUES(40,'Connect Direct',2,'{''qid'': ''Q369085'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Connect:Direct''}','Y','N','N','N'); +INSERT INTO entities VALUES(41,'Cornerstone software',2,'{''qid'': ''Q5171657'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Cornerstone_(software)''}','Y','N','N','N'); +INSERT INTO entities VALUES(42,'Crystal Reports',2,'{''qid'': ''Q1142403'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/Crystal_Reports''}','Y','N','N','N'); +INSERT INTO entities VALUES(43,'DB2',2,'{''qid'': ''Q431195'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/IBM_DB2''}','N','N','Y','N'); +INSERT INTO entities VALUES(44,'Documentum Content Server',2,'{''qid'': ''Q5287684'', ''types'': [''Q247423'', ''Q1344636''], ''url'': ''http://dbpedia.org/resource/Documentum''}','Y','N','N','N'); +INSERT INTO entities VALUES(45,'Drupal',2,'{''qid'': ''Q170855'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/Drupal''}','N','N','Y','Y'); +INSERT INTO entities VALUES(46,'Eclipse',2,'{''qid'': ''Q82268'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/Eclipse_(software)''}','N','N','Y','Y'); INSERT INTO entities VALUES(47,'Elastic (ELK) Stack',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(48,'ETAP License Manager (LM)',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(49,'ExamDiff',2,'{''name'': ''ExamDiff Pro'', ''qid'': ''Q5419269'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ExamDiff_Pro'', ''score'': 78.14493}','Y','N','N','N'); +INSERT INTO entities VALUES(49,'ExamDiff',2,'{''qid'': ''Q5419269'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ExamDiff_Pro''}','Y','N','N','N'); INSERT INTO entities VALUES(50,'F5 Secure Web Gateway Services',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(51,'FileMaker Pro',2,'{''name'': ''FileMaker Pro'', ''qid'': ''Q1982831'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/FileMaker'', ''score'': 86.22298}','Y','N','N','N'); +INSERT INTO entities VALUES(51,'FileMaker Pro',2,'{''qid'': ''Q1982831'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/FileMaker''}','Y','N','N','N'); INSERT INTO entities VALUES(52,'FlexNet Manager Suite',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(53,'FTP Voyager',2,'{''name'': ''FTP Voyager'', ''qid'': ''Q1389773'', ''types'': [''Q3503189'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/FTP_Voyager'', ''score'': 84.09473}','Y','N','N','N'); -INSERT INTO entities VALUES(54,'Genymotion',2,'{''name'': '''', ''qid'': ''Q105239167'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105239167'', ''score'': 1}','Y','N','N','N'); -INSERT INTO entities VALUES(55,'Google Chrome',2,'{''name'': ''Google Chrome'', ''qid'': ''Q777'', ''types'': [''Q6368''], ''url'': ''http://dbpedia.org/resource/Google_Chrome'', ''score'': 81.24252}','N','N','Y','N'); -INSERT INTO entities VALUES(56,'Greenplum DB',2,'{''name'': ''Greenplum'', ''qid'': ''Q4039706'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Greenplum'', ''score'': 80.05651}','N','N','Y','N'); -INSERT INTO entities VALUES(57,'Hadoop',2,'{''name'': ''Apache Hadoop'', ''qid'': ''Q29120'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Apache_Hadoop'', ''score'': 82.60982}','N','N','Y','Y'); -INSERT INTO entities VALUES(58,'HP aC++ compiler',2,'{''name'': ''HP aC++'', ''qid'': ''Q5635754'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/HP_aC++'', ''score'': 82.36599}','Y','N','N','N'); -INSERT INTO entities VALUES(59,'HP C/ANSI C compiler',2,'{''name'': ''Norcroft C compiler'', ''qid'': ''Q4045464'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Norcroft_C_compiler'', ''score'': 77.871056}','Y','N','N','N'); +INSERT INTO entities VALUES(53,'FTP Voyager',2,'{''qid'': ''Q1389773'', ''types'': [''Q3503189'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/FTP_Voyager''}','Y','N','N','N'); +INSERT INTO entities VALUES(54,'Genymotion',2,'{''qid'': ''Q105239167'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105239167''}','Y','N','N','N'); +INSERT INTO entities VALUES(55,'Google Chrome',2,'{''qid'': ''Q777'', ''types'': [''Q6368''], ''url'': ''http://dbpedia.org/resource/Google_Chrome''}','N','N','Y','N'); +INSERT INTO entities VALUES(56,'Greenplum DB',2,'{''qid'': ''Q4039706'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Greenplum''}','N','N','Y','N'); +INSERT INTO entities VALUES(57,'Hadoop',2,'{''qid'': ''Q29120'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Apache_Hadoop''}','N','N','Y','Y'); +INSERT INTO entities VALUES(58,'HP aC++ compiler',2,'{''qid'': ''Q5635754'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/HP_aC++''}','Y','N','N','N'); +INSERT INTO entities VALUES(59,'HP C/ANSI C compiler',2,'{''qid'': ''Q4045464'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Norcroft_C_compiler''}','Y','N','N','N'); INSERT INTO entities VALUES(60,'HP Operations Orchestration (HPOO)',2,'{}','N','N','Y','N'); INSERT INTO entities VALUES(61,'HP Server Automation (HPSA)',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(62,'IBM BigFix Platform',2,'{''name'': ''IBM BigFix'', ''qid'': ''Q7810432'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_BigFix'', ''score'': 81.82132}','Y','N','N','N'); +INSERT INTO entities VALUES(62,'IBM BigFix Platform',2,'{''qid'': ''Q7810432'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_BigFix''}','Y','N','N','N'); INSERT INTO entities VALUES(63,'IBM Business Monitor',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(64,'IBM Business Process Manager',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(65,'IBM Content Manager OnDemand (CMOD)',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(66,'IBM FileNet P8 Platform',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(67,'IBM InfoSphere DataStage',2,'{''name'': ''IBM InfoSphere DataStage'', ''qid'': ''Q5968866'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_InfoSphere_DataStage'', ''score'': 82.949585}','Y','N','N','N'); -INSERT INTO entities VALUES(68,'IBM Integration Bus',2,'{''name'': ''IBM Integration Bus'', ''qid'': ''Q5969139'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Integration_Bus'', ''score'': 83.94898}','N','N','Y','N'); +INSERT INTO entities VALUES(67,'IBM InfoSphere DataStage',2,'{''qid'': ''Q5968866'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_InfoSphere_DataStage''}','Y','N','N','N'); +INSERT INTO entities VALUES(68,'IBM Integration Bus',2,'{''qid'': ''Q5969139'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Integration_Bus''}','N','N','Y','N'); INSERT INTO entities VALUES(69,'IBM License Metric Tool',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(70,'IBM Maximo',2,'{''name'': ''Maximo (software)'', ''qid'': ''Q55622518'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Maximo_(MRO)'', ''score'': 83.01772}','N','N','Y','N'); +INSERT INTO entities VALUES(70,'IBM Maximo',2,'{''qid'': ''Q55622518'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Maximo_(MRO)''}','N','N','Y','N'); INSERT INTO entities VALUES(71,'IBM Migration Utility',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(72,'IBM Mobile Foundation',2,'{''name'': ''IBM Mobile'', ''qid'': ''Q25324136'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_MobileFirst'', ''score'': 81.66191}','Y','N','N','N'); -INSERT INTO entities VALUES(73,'IBM Operational Decision Manager (ODM)',2,'{''name'': ''IBM Operational Decision Management'', ''qid'': ''Q16928000'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Operational_Decision_Management'', ''score'': 87.653046}','N','N','Y','N'); -INSERT INTO entities VALUES(74,'IBM Spectrum Scale',2,'{''name'': ''IBM Spectrum Scale'', ''qid'': ''Q2389927'', ''types'': [''Q174989'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_General_Parallel_File_System'', ''score'': 83.73408}','N','N','Y','N'); +INSERT INTO entities VALUES(72,'IBM Mobile Foundation',2,'{''qid'': ''Q25324136'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_MobileFirst''}','Y','N','N','N'); +INSERT INTO entities VALUES(73,'IBM Operational Decision Manager (ODM)',2,'{''qid'': ''Q16928000'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Operational_Decision_Management''}','N','N','Y','N'); +INSERT INTO entities VALUES(74,'IBM Spectrum Scale',2,'{''qid'': ''Q2389927'', ''types'': [''Q174989'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_General_Parallel_File_System''}','N','N','Y','N'); INSERT INTO entities VALUES(75,'IBM Tivoli Asset Management',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(76,'IBM Tivoli Composite Application Manager',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(77,'IBM Tivoli Monitoring',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(78,'IBM Tivoli Storage Manager',2,'{''name'': ''IBM Tivoli Storage Manager'', ''qid'': ''Q2001900'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Storage_Manager'', ''score'': 84.422775}','Y','N','N','N'); -INSERT INTO entities VALUES(79,'IBM Tivoli Workload Scheduler (TWS)',2,'{''name'': ''IBM Tivoli Workload Scheduler'', ''qid'': ''None'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Workload_Scheduler'', ''score'': 86.182724}','N','N','Y','N'); -INSERT INTO entities VALUES(80,'IBM WebSphere Business Integration Adaptor',2,'{''name'': ''IBM WebSphere Adapters'', ''qid'': ''Q5969131'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Adapters'', ''score'': 84.43717}','Y','N','N','N'); -INSERT INTO entities VALUES(81,'IBM Websphere MQ',2,'{''name'': ''IBM MQ'', ''qid'': ''Q528294'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_MQ'', ''score'': 83.18358}','N','Y','Y','N'); +INSERT INTO entities VALUES(78,'IBM Tivoli Storage Manager',2,'{''qid'': ''Q2001900'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Storage_Manager''}','Y','N','N','N'); +INSERT INTO entities VALUES(79,'IBM Tivoli Workload Scheduler (TWS)',2,'{''qid'': ''None'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Workload_Scheduler''}','N','N','Y','N'); +INSERT INTO entities VALUES(80,'IBM WebSphere Business Integration Adaptor',2,'{''qid'': ''Q5969131'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Adapters''}','Y','N','N','N'); +INSERT INTO entities VALUES(81,'IBM Websphere MQ',2,'{''qid'': ''Q528294'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_MQ''}','N','Y','Y','N'); INSERT INTO entities VALUES(82,'IBM WebSphere MQ Telemetry',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(83,'IBM WebSphere Transformation Extender (WTX)',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(84,'IMS DB',2,'{''name'': ''IBM Information Management System'', ''qid'': ''Q1571984'', ''types'': [''Q871236'', ''Q4388320'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/IBM_Information_Management_System'', ''score'': 80.54885}','N','N','Y','N'); -INSERT INTO entities VALUES(85,'Info-ZIP',2,'{''name'': ''Info-ZIP'', ''qid'': ''Q1662431'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Info-ZIP'', ''score'': 84.11743}','Y','N','N','N'); -INSERT INTO entities VALUES(86,'Infobright Community Edition (ICE)',2,'{''name'': ''Infobright'', ''qid'': ''Q3150805'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Infobright'', ''score'': 83.12947}','N','N','Y','N'); +INSERT INTO entities VALUES(84,'IMS DB',2,'{''qid'': ''Q1571984'', ''types'': [''Q871236'', ''Q4388320'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/IBM_Information_Management_System''}','N','N','Y','N'); +INSERT INTO entities VALUES(85,'Info-ZIP',2,'{''qid'': ''Q1662431'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Info-ZIP''}','Y','N','N','N'); +INSERT INTO entities VALUES(86,'Infobright Community Edition (ICE)',2,'{''qid'': ''Q3150805'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Infobright''}','N','N','Y','N'); INSERT INTO entities VALUES(87,'Informatica PowerCenter',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(88,'Ingres',2,'{''name'': ''Ingres (database)'', ''qid'': ''Q60463'', ''types'': [''Q1130645'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Ingres_(database)'', ''score'': 77.11245}','N','N','Y','N'); +INSERT INTO entities VALUES(88,'Ingres',2,'{''qid'': ''Q60463'', ''types'': [''Q1130645'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Ingres_(database)''}','N','N','Y','N'); INSERT INTO entities VALUES(89,'JBoss|JBoss Enterprise Service Bus',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(90,'Jenkins',2,'{''name'': ''Jenkins (software)'', ''qid'': ''Q7491312'', ''types'': [''Q16947796''], ''url'': ''http://dbpedia.org/resource/Jenkins_(software)'', ''score'': 80.26929}','N','N','Y','N'); +INSERT INTO entities VALUES(90,'Jenkins',2,'{''qid'': ''Q7491312'', ''types'': [''Q16947796''], ''url'': ''http://dbpedia.org/resource/Jenkins_(software)''}','N','N','Y','N'); INSERT INTO entities VALUES(91,'joinIT',2,'{}','N','N','Y*','N'); INSERT INTO entities VALUES(92,'LifeFlow',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(93,'Lotus Notes',2,'{''name'': ''IBM Notes'', ''qid'': ''Q60198'', ''types'': [''Q474157'', ''Q28601953'', ''Q131093''], ''url'': ''http://dbpedia.org/resource/IBM_Notes'', ''score'': 80.44693}','Y','N','N','N'); -INSERT INTO entities VALUES(94,'MaaS360',2,'{''name'': ''MaaS 360'', ''qid'': ''Q39089630'', ''types'': [''None''], ''url'': ''None'', ''score'': 84.12713}','Y','N','N','N'); -INSERT INTO entities VALUES(95,'Malwarebytes Anti-Malware',2,'{''name'': ''Malwarebytes (software)'', ''qid'': ''Q1783235'', ''types'': [''Q13429867''], ''url'': ''http://dbpedia.org/resource/Malwarebytes_Anti-Malware'', ''score'': 79.83268}','Y','N','N','N'); +INSERT INTO entities VALUES(93,'Lotus Notes',2,'{''qid'': ''Q60198'', ''types'': [''Q474157'', ''Q28601953'', ''Q131093''], ''url'': ''http://dbpedia.org/resource/IBM_Notes''}','Y','N','N','N'); +INSERT INTO entities VALUES(94,'MaaS360',2,'{''qid'': ''Q39089630'', ''types'': [''None''], ''url'': ''None''}','Y','N','N','N'); +INSERT INTO entities VALUES(95,'Malwarebytes Anti-Malware',2,'{''qid'': ''Q1783235'', ''types'': [''Q13429867''], ''url'': ''http://dbpedia.org/resource/Malwarebytes_Anti-Malware''}','Y','N','N','N'); INSERT INTO entities VALUES(96,'ManageEngine ADSelfService Plus',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(97,'MarkLogic DB',2,'{''name'': ''MarkLogic'', ''qid'': ''Q6766381'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/MarkLogic'', ''score'': 81.93615}','N','N','Y','N'); -INSERT INTO entities VALUES(98,'Memcached',2,'{''name'': ''Memcached'', ''qid'': ''Q306661'', ''types'': [''Q165596'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Memcached'', ''score'': 84.792114}','N','N','Y','Y'); -INSERT INTO entities VALUES(99,'Microsoft Access',2,'{''name'': ''Microsoft Access'', ''qid'': ''Q80689'', ''types'': [''Q218616'', ''Q176165'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_Access'', ''score'': 84.89004}','Y','N','N','N'); -INSERT INTO entities VALUES(100,'Microsoft BizTalk Adapters for Host Systems',2,'{''name'': ''Microsoft BizTalk Server'', ''qid'': ''Q904150'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_BizTalk_Server'', ''score'': 82.64847}','Y','N','N','N'); -INSERT INTO entities VALUES(101,'Microsoft Dynamics AX',2,'{''name'': ''Microsoft Dynamics AX'', ''qid'': ''Q675860'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_Dynamics_AX'', ''score'': 87.31546}','N','N','Y','N'); -INSERT INTO entities VALUES(102,'Microsoft Endpoint Configuration Manager (SCCM)',2,'{''name'': ''Microsoft System Center Configuration Manager'', ''qid'': ''Q2061082'', ''types'': [''Q312466'', ''Q1371279''], ''url'': ''http://dbpedia.org/resource/System_Center_Configuration_Manager'', ''score'': 81.977745}','Y','N','N','N'); -INSERT INTO entities VALUES(103,'Microsoft Excel',2,'{''name'': ''Microsoft Excel'', ''qid'': ''Q11272'', ''types'': [''Q218616'', ''Q183197''], ''url'': ''http://dbpedia.org/resource/Microsoft_Excel'', ''score'': 83.67659}','Y','N','N','N'); -INSERT INTO entities VALUES(104,'Microsoft Exchange Server',2,'{''name'': ''Microsoft Exchange Server'', ''qid'': ''Q223653'', ''types'': [''Q474157'', ''Q859477'', ''Q2933820''], ''url'': ''http://dbpedia.org/resource/Microsoft_Exchange_Server'', ''score'': 78.520966}','Y','N','N','N'); -INSERT INTO entities VALUES(105,'Microsoft Forefront Identity Manager (FIM)',2,'{''name'': ''Forefront Identity Manager'', ''qid'': ''Q5468182'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Forefront_Identity_Manager'', ''score'': 84.831024}','Y','N','N','N'); -INSERT INTO entities VALUES(106,'Microsoft InfoPath',2,'{''name'': ''Microsoft InfoPath'', ''qid'': ''Q706294'', ''types'': [''Q474157'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_InfoPath'', ''score'': 82.67707}','Y','N','N','N'); -INSERT INTO entities VALUES(107,'Microsoft Internet Explorer',2,'{''name'': ''Internet Explorer'', ''qid'': ''Q1575'', ''types'': [''Q218616'', ''Q498267'', ''Q6368''], ''url'': ''http://dbpedia.org/resource/Internet_Explorer'', ''score'': 80.26854}','Y','N','N','N'); -INSERT INTO entities VALUES(108,'Microsoft ISA Server',2,'{''name'': ''Microsoft Forefront Threat Management Gateway'', ''qid'': ''Q632851'', ''types'': [''Q40056''], ''url'': ''http://dbpedia.org/resource/Microsoft_Forefront_Threat_Management_Gateway'', ''score'': 78.00163}','Y','N','N','N'); -INSERT INTO entities VALUES(109,'Microsoft MQ',2,'{''name'': ''Microsoft Message Queuing'', ''qid'': ''Q1931595'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Microsoft_Message_Queuing'', ''score'': 78.82515}','Y','N','N','N'); +INSERT INTO entities VALUES(97,'MarkLogic DB',2,'{''qid'': ''Q6766381'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/MarkLogic''}','N','N','Y','N'); +INSERT INTO entities VALUES(98,'Memcached',2,'{''qid'': ''Q306661'', ''types'': [''Q165596'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Memcached''}','N','N','Y','Y'); +INSERT INTO entities VALUES(99,'Microsoft Access',2,'{''qid'': ''Q80689'', ''types'': [''Q218616'', ''Q176165'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_Access''}','Y','N','N','N'); +INSERT INTO entities VALUES(100,'Microsoft BizTalk Adapters for Host Systems',2,'{''qid'': ''Q904150'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_BizTalk_Server''}','Y','N','N','N'); +INSERT INTO entities VALUES(101,'Microsoft Dynamics AX',2,'{''qid'': ''Q675860'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_Dynamics_AX''}','N','N','Y','N'); +INSERT INTO entities VALUES(102,'Microsoft Endpoint Configuration Manager (SCCM)',2,'{''qid'': ''Q2061082'', ''types'': [''Q312466'', ''Q1371279''], ''url'': ''http://dbpedia.org/resource/System_Center_Configuration_Manager''}','Y','N','N','N'); +INSERT INTO entities VALUES(103,'Microsoft Excel',2,'{''qid'': ''Q11272'', ''types'': [''Q218616'', ''Q183197''], ''url'': ''http://dbpedia.org/resource/Microsoft_Excel''}','Y','N','N','N'); +INSERT INTO entities VALUES(104,'Microsoft Exchange Server',2,'{''qid'': ''Q223653'', ''types'': [''Q474157'', ''Q859477'', ''Q2933820''], ''url'': ''http://dbpedia.org/resource/Microsoft_Exchange_Server''}','Y','N','N','N'); +INSERT INTO entities VALUES(105,'Microsoft Forefront Identity Manager (FIM)',2,'{''qid'': ''Q5468182'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Forefront_Identity_Manager''}','Y','N','N','N'); +INSERT INTO entities VALUES(106,'Microsoft InfoPath',2,'{''qid'': ''Q706294'', ''types'': [''Q474157'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_InfoPath''}','Y','N','N','N'); +INSERT INTO entities VALUES(107,'Microsoft Internet Explorer',2,'{''qid'': ''Q1575'', ''types'': [''Q218616'', ''Q498267'', ''Q6368''], ''url'': ''http://dbpedia.org/resource/Internet_Explorer''}','Y','N','N','N'); +INSERT INTO entities VALUES(108,'Microsoft ISA Server',2,'{''qid'': ''Q632851'', ''types'': [''Q40056''], ''url'': ''http://dbpedia.org/resource/Microsoft_Forefront_Threat_Management_Gateway''}','Y','N','N','N'); +INSERT INTO entities VALUES(109,'Microsoft MQ',2,'{''qid'': ''Q1931595'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Microsoft_Message_Queuing''}','Y','N','N','N'); INSERT INTO entities VALUES(110,'Microsoft System Center Endpoint Protection',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(111,'Microsoft Visual Studio',2,'{''name'': ''Microsoft Visual Studio'', ''qid'': ''Q134067'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/Microsoft_Visual_Studio'', ''score'': 88.79513}','Y','N','N','N'); +INSERT INTO entities VALUES(111,'Microsoft Visual Studio',2,'{''qid'': ''Q134067'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/Microsoft_Visual_Studio''}','Y','N','N','N'); INSERT INTO entities VALUES(112,'Microsoft Web Deploy',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(113,'Microsoft Web Farm Framework (WFF)',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(114,'Microsoft Web Platform Installer',2,'{''name'': ''Web Platform Installer'', ''qid'': ''Q976637'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Web_Platform_Installer'', ''score'': 90.12828}','Y','N','N','N'); +INSERT INTO entities VALUES(114,'Microsoft Web Platform Installer',2,'{''qid'': ''Q976637'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Web_Platform_Installer''}','Y','N','N','N'); INSERT INTO entities VALUES(115,'Model Driven Workflow (MDW)',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(116,'MongoDB',2,'{''name'': ''MongoDB'', ''qid'': ''Q1165204'', ''types'': [''Q1235236'', ''Q176165'', ''Q82231''], ''url'': ''http://dbpedia.org/resource/MongoDB'', ''score'': 81.76932}','N','N','Y','N'); -INSERT INTO entities VALUES(117,'Mozilla Firefox',2,'{''name'': ''Firefox'', ''qid'': ''Q698'', ''types'': [''Q6368''], ''url'': ''http://dbpedia.org/resource/Firefox'', ''score'': 81.972015}','N','N','Y','Y'); +INSERT INTO entities VALUES(116,'MongoDB',2,'{''qid'': ''Q1165204'', ''types'': [''Q1235236'', ''Q176165'', ''Q82231''], ''url'': ''http://dbpedia.org/resource/MongoDB''}','N','N','Y','N'); +INSERT INTO entities VALUES(117,'Mozilla Firefox',2,'{''qid'': ''Q698'', ''types'': [''Q6368''], ''url'': ''http://dbpedia.org/resource/Firefox''}','N','N','Y','Y'); INSERT INTO entities VALUES(118,'MQ Client',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(119,'MS Office 365',2,'{''name'': ''Office 365'', ''qid'': ''Q775811'', ''types'': [''Q1254596'', ''Q26674207''], ''url'': ''http://dbpedia.org/resource/Office_365'', ''score'': 79.38903}','Y','N','N','N'); -INSERT INTO entities VALUES(120,'MS SQL Server',2,'{''name'': ''Microsoft SQL Server'', ''qid'': ''Q215819'', ''types'': [''Q218616'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_SQL_Server'', ''score'': 80.14248}','N','N','Y','N'); -INSERT INTO entities VALUES(121,'MS SQL Server Compact',2,'{''name'': ''SQL Server Compact'', ''qid'': ''Q1814028'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Compact'', ''score'': 83.482895}','N','N','Y','N'); -INSERT INTO entities VALUES(122,'MySQL',2,'{''name'': ''MySQL'', ''qid'': ''Q850'', ''types'': [''Q1371279'', ''Q1130645'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/MySQL'', ''score'': 85.28488}','N','N','Y','Y'); -INSERT INTO entities VALUES(123,'Neo4j',2,'{''name'': ''Neo4j'', ''qid'': ''Q1628290'', ''types'': [''Q99510066'', ''Q218616'', ''Q595971'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Neo4j'', ''score'': 80.24579}','N','N','Y','Y'); +INSERT INTO entities VALUES(119,'MS Office 365',2,'{''qid'': ''Q775811'', ''types'': [''Q1254596'', ''Q26674207''], ''url'': ''http://dbpedia.org/resource/Office_365''}','Y','N','N','N'); +INSERT INTO entities VALUES(120,'MS SQL Server',2,'{''qid'': ''Q215819'', ''types'': [''Q218616'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_SQL_Server''}','N','N','Y','N'); +INSERT INTO entities VALUES(121,'MS SQL Server Compact',2,'{''qid'': ''Q1814028'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Compact''}','N','N','Y','N'); +INSERT INTO entities VALUES(122,'MySQL',2,'{''qid'': ''Q850'', ''types'': [''Q1371279'', ''Q1130645'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/MySQL''}','N','N','Y','Y'); +INSERT INTO entities VALUES(123,'Neo4j',2,'{''qid'': ''Q1628290'', ''types'': [''Q99510066'', ''Q218616'', ''Q595971'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Neo4j''}','N','N','Y','Y'); INSERT INTO entities VALUES(124,'Nexus Repository OSS',2,'{}','N','Y','Y','N'); -INSERT INTO entities VALUES(125,'Nix package manager',2,'{''name'': ''Nix package manager'', ''qid'': ''Q7041957'', ''types'': [''Q891055'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Nix_package_manager'', ''score'': 85.74235}','N','N','Y','Y'); -INSERT INTO entities VALUES(126,'OpenLDAP',2,'{''name'': ''OpenLDAP'', ''qid'': ''Q682918'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/OpenLDAP'', ''score'': 82.866486}','N','N','Y','Y'); -INSERT INTO entities VALUES(127,'OpenText Exstream',2,'{''name'': ''Exstream Software'', ''qid'': ''Q5421776'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Exstream_Software'', ''score'': 79.39322}','N','Y','Y','N'); -INSERT INTO entities VALUES(128,'OpenVPN',2,'{''name'': ''OpenVPN'', ''qid'': ''Q509075'', ''types'': [''Q166142'', ''Q341''], ''url'': ''http://dbpedia.org/resource/OpenVPN'', ''score'': 82.78783}','N','N','Y','Y'); -INSERT INTO entities VALUES(129,'Oracle Access Management',2,'{''name'': ''Oracle Identity Management'', ''qid'': ''Q7099276'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Identity_Management'', ''score'': 79.300156}','Y','Y','N','N'); -INSERT INTO entities VALUES(130,'Oracle ADF',2,'{''name'': ''Oracle Application Development Framework'', ''qid'': ''Q1853309'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Development_Framework'', ''score'': 84.65608}','Y','N','N','N'); -INSERT INTO entities VALUES(131,'Oracle APEX',2,'{''name'': ''Oracle Application Express'', ''qid'': ''Q1908291'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Express'', ''score'': 81.37128}','N','N','Y','N'); -INSERT INTO entities VALUES(132,'Oracle BI Publisher',2,'{''name'': ''Oracle BI Publisher'', ''qid'': ''Q7099244'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_BI_Publisher'', ''score'': 81.38631}','Y','N','N','N'); -INSERT INTO entities VALUES(133,'Oracle Business Intelligence',2,'{''name'': ''Oracle Business Intelligence Suite Enterprise Edition'', ''qid'': ''Q7099251'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Business_Intelligence_Suite_Enterprise_Edition'', ''score'': 80.64079}','Y','N','N','N'); -INSERT INTO entities VALUES(134,'Oracle Database',2,'{''name'': ''Oracle Database'', ''qid'': ''Q185524'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/Oracle_Database'', ''score'': 81.66278}','N','N','Y','N'); -INSERT INTO entities VALUES(135,'Oracle Designer',2,'{''name'': ''Oracle Designer'', ''qid'': ''Q7099261'', ''types'': [''Q28059995''], ''url'': ''http://dbpedia.org/resource/Oracle_Designer'', ''score'': 81.97008}','N','Y','Y','N'); -INSERT INTO entities VALUES(136,'Oracle Enterprise Manager',2,'{''name'': ''Oracle Enterprise Manager'', ''qid'': ''Q7099266'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Enterprise_Manager'', ''score'': 84.87094}','Y','N','N','N'); -INSERT INTO entities VALUES(137,'Oracle Forms',2,'{''name'': ''Oracle Forms'', ''qid'': ''Q744707'', ''types'': [''Q756637''], ''url'': ''http://dbpedia.org/resource/Oracle_Forms'', ''score'': 82.227844}','N','N','Y','N'); +INSERT INTO entities VALUES(125,'Nix package manager',2,'{''qid'': ''Q7041957'', ''types'': [''Q891055'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Nix_package_manager''}','N','N','Y','Y'); +INSERT INTO entities VALUES(126,'OpenLDAP',2,'{''qid'': ''Q682918'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/OpenLDAP''}','N','N','Y','Y'); +INSERT INTO entities VALUES(127,'OpenText Exstream',2,'{''qid'': ''Q5421776'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Exstream_Software''}','N','Y','Y','N'); +INSERT INTO entities VALUES(128,'OpenVPN',2,'{''qid'': ''Q509075'', ''types'': [''Q166142'', ''Q341''], ''url'': ''http://dbpedia.org/resource/OpenVPN''}','N','N','Y','Y'); +INSERT INTO entities VALUES(129,'Oracle Access Management',2,'{''qid'': ''Q7099276'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Identity_Management''}','Y','Y','N','N'); +INSERT INTO entities VALUES(130,'Oracle ADF',2,'{''qid'': ''Q1853309'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Development_Framework''}','Y','N','N','N'); +INSERT INTO entities VALUES(131,'Oracle APEX',2,'{''qid'': ''Q1908291'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Express''}','N','N','Y','N'); +INSERT INTO entities VALUES(132,'Oracle BI Publisher',2,'{''qid'': ''Q7099244'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_BI_Publisher''}','Y','N','N','N'); +INSERT INTO entities VALUES(133,'Oracle Business Intelligence',2,'{''qid'': ''Q7099251'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Business_Intelligence_Suite_Enterprise_Edition''}','Y','N','N','N'); +INSERT INTO entities VALUES(134,'Oracle Database',2,'{''qid'': ''Q185524'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/Oracle_Database''}','N','N','Y','N'); +INSERT INTO entities VALUES(135,'Oracle Designer',2,'{''qid'': ''Q7099261'', ''types'': [''Q28059995''], ''url'': ''http://dbpedia.org/resource/Oracle_Designer''}','N','Y','Y','N'); +INSERT INTO entities VALUES(136,'Oracle Enterprise Manager',2,'{''qid'': ''Q7099266'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Enterprise_Manager''}','Y','N','N','N'); +INSERT INTO entities VALUES(137,'Oracle Forms',2,'{''qid'': ''Q744707'', ''types'': [''Q756637''], ''url'': ''http://dbpedia.org/resource/Oracle_Forms''}','N','N','Y','N'); INSERT INTO entities VALUES(138,'Oracle Hyperion|Hyperion Interactive Reporting',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(139,'Oracle Hyperion|Hyperion Planning',2,'{''name'': '''', ''qid'': ''Q5958168'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q5958168'', ''score'': 1}','Y','N','N','N'); -INSERT INTO entities VALUES(140,'Oracle Net Services',2,'{''name'': ''Oracle Net Services'', ''qid'': ''Q7099283'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Net_Services'', ''score'': 86.10224}','Y','Y','N','N'); -INSERT INTO entities VALUES(141,'Oracle Real Application Clusters (RAC)',2,'{''name'': ''Oracle RAC'', ''qid'': ''Q1418481'', ''types'': [''Q28057052''], ''url'': ''http://dbpedia.org/resource/Oracle_RAC'', ''score'': 85.86587}','N','Y','Y','N'); +INSERT INTO entities VALUES(139,'Oracle Hyperion|Hyperion Planning',2,'{''qid'': ''Q5958168'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q5958168''}','Y','N','N','N'); +INSERT INTO entities VALUES(140,'Oracle Net Services',2,'{''qid'': ''Q7099283'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Net_Services''}','Y','Y','N','N'); +INSERT INTO entities VALUES(141,'Oracle Real Application Clusters (RAC)',2,'{''qid'': ''Q1418481'', ''types'': [''Q28057052''], ''url'': ''http://dbpedia.org/resource/Oracle_RAC''}','N','Y','Y','N'); INSERT INTO entities VALUES(142,'Oracle Retail Point-of-Service',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(143,'Oracle Service Bus',2,'{''name'': ''Oracle Service Bus'', ''qid'': ''Q7099295'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Service_Bus'', ''score'': 84.74037}','Y','N','N','N'); +INSERT INTO entities VALUES(143,'Oracle Service Bus',2,'{''qid'': ''Q7099295'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Service_Bus''}','Y','N','N','N'); INSERT INTO entities VALUES(144,'Oracle Smart View',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(145,'Oracle SOA Suite',2,'{''name'': ''Oracle SOA Suite'', ''qid'': ''Q7099294'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_SOA_Suite'', ''score'': 84.40543}','N','N','Y','N'); -INSERT INTO entities VALUES(146,'Oracle SQL Developer',2,'{''name'': ''Oracle SQL Developer'', ''qid'': ''Q931351'', ''types'': [''Q13741'', ''Q47607''], ''url'': ''http://dbpedia.org/resource/Oracle_SQL_Developer'', ''score'': 82.70416}','N','N','Y','N'); -INSERT INTO entities VALUES(147,'Oracle TimesTen In-Memory Database',2,'{''name'': ''TimesTen'', ''qid'': ''Q3991449'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/TimesTen'', ''score'': 82.71962}','Y','N','N','N'); -INSERT INTO entities VALUES(148,'Oracle Warehouse Builder (OWB)',2,'{''name'': ''Oracle Warehouse Builder'', ''qid'': ''Q3354986'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Warehouse_Builder'', ''score'': 90.439285}','Y','N','N','N'); -INSERT INTO entities VALUES(149,'Orbix',2,'{''name'': ''Orbix (software)'', ''qid'': ''Q4045955'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Orbix_(software)'', ''score'': 82.024864}','Y','N','N','N'); -INSERT INTO entities VALUES(150,'Pentaho',2,'{''name'': ''Pentaho'', ''qid'': ''Q644841'', ''types'': [''Q341'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Pentaho'', ''score'': 83.39953}','N','N','Y','Y'); -INSERT INTO entities VALUES(151,'PeopleSoft',2,'{''name'': ''PeopleSoft'', ''qid'': ''Q1928814'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/PeopleSoft'', ''score'': 83.32145}','N','Y','Y','N'); +INSERT INTO entities VALUES(145,'Oracle SOA Suite',2,'{''qid'': ''Q7099294'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_SOA_Suite''}','N','N','Y','N'); +INSERT INTO entities VALUES(146,'Oracle SQL Developer',2,'{''qid'': ''Q931351'', ''types'': [''Q13741'', ''Q47607''], ''url'': ''http://dbpedia.org/resource/Oracle_SQL_Developer''}','N','N','Y','N'); +INSERT INTO entities VALUES(147,'Oracle TimesTen In-Memory Database',2,'{''qid'': ''Q3991449'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/TimesTen''}','Y','N','N','N'); +INSERT INTO entities VALUES(148,'Oracle Warehouse Builder (OWB)',2,'{''qid'': ''Q3354986'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Warehouse_Builder''}','Y','N','N','N'); +INSERT INTO entities VALUES(149,'Orbix',2,'{''qid'': ''Q4045955'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Orbix_(software)''}','Y','N','N','N'); +INSERT INTO entities VALUES(150,'Pentaho',2,'{''qid'': ''Q644841'', ''types'': [''Q341'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Pentaho''}','N','N','Y','Y'); +INSERT INTO entities VALUES(151,'PeopleSoft',2,'{''qid'': ''Q1928814'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/PeopleSoft''}','N','Y','Y','N'); INSERT INTO entities VALUES(152,'Perkin Elmer Informatics (PKI)',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(153,'Pervasive PSQL',2,'{''name'': ''Pervasive PSQL'', ''qid'': ''Q7171236'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Pervasive_PSQL'', ''score'': 81.08702}','Y','N','N','N'); +INSERT INTO entities VALUES(153,'Pervasive PSQL',2,'{''qid'': ''Q7171236'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Pervasive_PSQL''}','Y','N','N','N'); INSERT INTO entities VALUES(154,'PIPE-FLO',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(155,'PKZIP',2,'{''name'': ''PKZIP'', ''qid'': ''Q1602149'', ''types'': [''Q25303924''], ''url'': ''http://dbpedia.org/resource/PKZIP'', ''score'': 82.94594}','Y','N','N','N'); -INSERT INTO entities VALUES(156,'Planview',2,'{''name'': ''Planview'', ''qid'': ''Q19903554'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Planview'', ''score'': 81.30266}','Y','N','N','N'); -INSERT INTO entities VALUES(157,'PostgreSQL',2,'{''name'': ''PostgreSQL'', ''qid'': ''Q192490'', ''types'': [''Q341'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/PostgreSQL'', ''score'': 86.56457}','N','N','Y','Y'); -INSERT INTO entities VALUES(158,'Powerbuilder',2,'{''name'': ''PowerBuilder'', ''qid'': ''Q580882'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/PowerBuilder'', ''score'': 83.56584}','Y','N','N','N'); -INSERT INTO entities VALUES(159,'Primavera P6',2,'{''name'': ''Primavera (software)'', ''qid'': ''Q2111327'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Primavera_(software)'', ''score'': 77.780846}','Y','N','N','N'); +INSERT INTO entities VALUES(155,'PKZIP',2,'{''qid'': ''Q1602149'', ''types'': [''Q25303924''], ''url'': ''http://dbpedia.org/resource/PKZIP''}','Y','N','N','N'); +INSERT INTO entities VALUES(156,'Planview',2,'{''qid'': ''Q19903554'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Planview''}','Y','N','N','N'); +INSERT INTO entities VALUES(157,'PostgreSQL',2,'{''qid'': ''Q192490'', ''types'': [''Q341'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/PostgreSQL''}','N','N','Y','Y'); +INSERT INTO entities VALUES(158,'Powerbuilder',2,'{''qid'': ''Q580882'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/PowerBuilder''}','Y','N','N','N'); +INSERT INTO entities VALUES(159,'Primavera P6',2,'{''qid'': ''Q2111327'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Primavera_(software)''}','Y','N','N','N'); INSERT INTO entities VALUES(160,'Pro*COBOL',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(161,'ProjectWise',2,'{''name'': ''ProjectWise'', ''qid'': ''Q7248950'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/ProjectWise'', ''score'': 81.065186}','Y','N','N','N'); -INSERT INTO entities VALUES(162,'ProjectWise Web Server',2,'{''name'': ''ProjectWise'', ''qid'': ''Q7248950'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/ProjectWise'', ''score'': 77.27026}','Y','N','N','N'); -INSERT INTO entities VALUES(163,'PVCS Version Manager',2,'{''name'': ''PVCS'', ''qid'': ''Q3359906'', ''types'': [''Q3257930'', ''Q55680343''], ''url'': ''http://dbpedia.org/resource/PVCS'', ''score'': 83.451996}','Y','N','N','N'); -INSERT INTO entities VALUES(164,'QlikView',2,'{''name'': '''', ''qid'': ''Q105859488'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105859488'', ''score'': 1}','Y','N','N','N'); -INSERT INTO entities VALUES(165,'RabbitMQ',2,'{''name'': ''RabbitMQ'', ''qid'': ''Q2081413'', ''types'': [''Q6821765'', ''Q341''], ''url'': ''http://dbpedia.org/resource/RabbitMQ'', ''score'': 81.204346}','N','N','Y','Y'); -INSERT INTO entities VALUES(166,'Rational ClearCase',2,'{''name'': ''Rational ClearCase'', ''qid'': ''Q593863'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Rational_ClearCase'', ''score'': 85.85228}','Y','N','N','N'); -INSERT INTO entities VALUES(167,'Rational ClearQuest',2,'{''name'': ''Rational ClearQuest'', ''qid'': ''Q1493633'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Rational_ClearQuest'', ''score'': 83.282}','Y','N','N','N'); -INSERT INTO entities VALUES(168,'Redis',2,'{''name'': ''Redis'', ''qid'': ''Q2136322'', ''types'': [''Q82231''], ''url'': ''http://dbpedia.org/resource/Redis'', ''score'': 83.20407}','N','N','Y','Y'); -INSERT INTO entities VALUES(169,'Remedy',2,'{''name'': ''Remedy Debugger'', ''qid'': ''Q7311616'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Remedy_Debugger'', ''score'': 77.23343}','N','N','Y','N'); -INSERT INTO entities VALUES(170,'Riak',2,'{''name'': ''Riak'', ''qid'': ''Q2328712'', ''types'': [''Q506883'', ''Q20706915'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Riak'', ''score'': 84.8866}','N','N','Y','N'); +INSERT INTO entities VALUES(161,'ProjectWise',2,'{''qid'': ''Q7248950'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/ProjectWise''}','Y','N','N','N'); +INSERT INTO entities VALUES(162,'ProjectWise Web Server',2,'{''qid'': ''Q7248950'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/ProjectWise''}','Y','N','N','N'); +INSERT INTO entities VALUES(163,'PVCS Version Manager',2,'{''qid'': ''Q3359906'', ''types'': [''Q3257930'', ''Q55680343''], ''url'': ''http://dbpedia.org/resource/PVCS''}','Y','N','N','N'); +INSERT INTO entities VALUES(164,'QlikView',2,'{''qid'': ''Q105859488'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105859488''}','Y','N','N','N'); +INSERT INTO entities VALUES(165,'RabbitMQ',2,'{''qid'': ''Q2081413'', ''types'': [''Q6821765'', ''Q341''], ''url'': ''http://dbpedia.org/resource/RabbitMQ''}','N','N','Y','Y'); +INSERT INTO entities VALUES(166,'Rational ClearCase',2,'{''qid'': ''Q593863'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Rational_ClearCase''}','Y','N','N','N'); +INSERT INTO entities VALUES(167,'Rational ClearQuest',2,'{''qid'': ''Q1493633'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Rational_ClearQuest''}','Y','N','N','N'); +INSERT INTO entities VALUES(168,'Redis',2,'{''qid'': ''Q2136322'', ''types'': [''Q82231''], ''url'': ''http://dbpedia.org/resource/Redis''}','N','N','Y','Y'); +INSERT INTO entities VALUES(169,'Remedy',2,'{''qid'': ''Q7311616'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Remedy_Debugger''}','N','N','Y','N'); +INSERT INTO entities VALUES(170,'Riak',2,'{''qid'': ''Q2328712'', ''types'': [''Q506883'', ''Q20706915'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Riak''}','N','N','Y','N'); INSERT INTO entities VALUES(171,'RightFax',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(172,'Rumba',2,'{''name'': ''Rumba'', ''qid'': ''Q21684437'', ''types'': [''Q1544863'', ''Q3328778''], ''url'': ''http://dbpedia.org/resource/Rumba'', ''score'': 81.496155}','N','N','Y','N'); +INSERT INTO entities VALUES(172,'Rumba',2,'{''qid'': ''Q21684437'', ''types'': [''Q1544863'', ''Q3328778''], ''url'': ''http://dbpedia.org/resource/Rumba''}','N','N','Y','N'); INSERT INTO entities VALUES(173,'SAP BusinessObjects BI server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(174,'SAP ERP',2,'{''name'': ''SAP ERP'', ''qid'': ''Q167533'', ''types'': [''Q28057030''], ''url'': ''http://dbpedia.org/resource/SAP_ERP'', ''score'': 87.94869}','Y','N','N','N'); -INSERT INTO entities VALUES(175,'SAP HANA DB',2,'{''name'': ''SAP HANA'', ''qid'': ''Q951374'', ''types'': [''Q1572823'', ''Q166142'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/SAP_HANA'', ''score'': 82.55031}','N','N','Y','N'); -INSERT INTO entities VALUES(176,'SAP MaxDB',2,'{''name'': ''MaxDB'', ''qid'': ''Q2143312'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/MaxDB'', ''score'': 79.94737}','N','N','Y','N'); -INSERT INTO entities VALUES(177,'SAP NetWeaver Business Warehouse',2,'{''name'': ''SAP NetWeaver Business Warehouse'', ''qid'': ''Q1269377'', ''types'': [''Q193351''], ''url'': ''http://dbpedia.org/resource/SAP_NetWeaver_Business_Warehouse'', ''score'': 87.194046}','Y','N','N','N'); -INSERT INTO entities VALUES(178,'SAP SQL Anywhere',2,'{''name'': ''SQL Anywhere'', ''qid'': ''Q2247564'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQL_Anywhere'', ''score'': 84.41525}','N','N','Y','N'); -INSERT INTO entities VALUES(179,'SAP Web Dynpro',2,'{''name'': ''Web Dynpro'', ''qid'': ''Q1804792'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Web_Dynpro'', ''score'': 84.51073}','Y','Y','N','N'); -INSERT INTO entities VALUES(180,'Sentry',2,'{''name'': ''Sentry (monitoring system)'', ''qid'': ''Q3478803'', ''types'': [''Q58778''], ''url'': ''http://dbpedia.org/resource/Sentry_(monitoring_system)'', ''score'': 80.615875}','N','Y','Y','N'); -INSERT INTO entities VALUES(181,'SharePoint',2,'{''name'': ''SharePoint'', ''qid'': ''Q18833'', ''types'': [''Q1371279'', ''Q1344636'', ''Q131093'', ''Q831677'', ''Q615985''], ''url'': ''http://dbpedia.org/resource/SharePoint'', ''score'': 81.01585}','N','N','Y','N'); +INSERT INTO entities VALUES(174,'SAP ERP',2,'{''qid'': ''Q167533'', ''types'': [''Q28057030''], ''url'': ''http://dbpedia.org/resource/SAP_ERP''}','Y','N','N','N'); +INSERT INTO entities VALUES(175,'SAP HANA DB',2,'{''qid'': ''Q951374'', ''types'': [''Q1572823'', ''Q166142'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/SAP_HANA''}','N','N','Y','N'); +INSERT INTO entities VALUES(176,'SAP MaxDB',2,'{''qid'': ''Q2143312'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/MaxDB''}','N','N','Y','N'); +INSERT INTO entities VALUES(177,'SAP NetWeaver Business Warehouse',2,'{''qid'': ''Q1269377'', ''types'': [''Q193351''], ''url'': ''http://dbpedia.org/resource/SAP_NetWeaver_Business_Warehouse''}','Y','N','N','N'); +INSERT INTO entities VALUES(178,'SAP SQL Anywhere',2,'{''qid'': ''Q2247564'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQL_Anywhere''}','N','N','Y','N'); +INSERT INTO entities VALUES(179,'SAP Web Dynpro',2,'{''qid'': ''Q1804792'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Web_Dynpro''}','Y','Y','N','N'); +INSERT INTO entities VALUES(180,'Sentry',2,'{''qid'': ''Q3478803'', ''types'': [''Q58778''], ''url'': ''http://dbpedia.org/resource/Sentry_(monitoring_system)''}','N','Y','Y','N'); +INSERT INTO entities VALUES(181,'SharePoint',2,'{''qid'': ''Q18833'', ''types'': [''Q1371279'', ''Q1344636'', ''Q131093'', ''Q831677'', ''Q615985''], ''url'': ''http://dbpedia.org/resource/SharePoint''}','N','N','Y','N'); INSERT INTO entities VALUES(182,'Siebel',2,'{}','N','N','Y','N'); INSERT INTO entities VALUES(183,'SNA Manager',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(184,'SnagIt',2,'{''name'': ''Snagit'', ''qid'': ''Q1776235'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Snagit'', ''score'': 83.26201}','Y','N','N','N'); -INSERT INTO entities VALUES(185,'solidDB',2,'{''name'': ''SolidDB'', ''qid'': ''Q7557804'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SolidDB'', ''score'': 80.896996}','Y','N','N','N'); -INSERT INTO entities VALUES(186,'SonarQube',2,'{''name'': ''SonarQube'', ''qid'': ''Q541691'', ''types'': [''Q28061130'', ''Q341''], ''url'': ''http://dbpedia.org/resource/SonarQube'', ''score'': 84.04383}','N','Y','Y','Y'); +INSERT INTO entities VALUES(184,'SnagIt',2,'{''qid'': ''Q1776235'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Snagit''}','Y','N','N','N'); +INSERT INTO entities VALUES(185,'solidDB',2,'{''qid'': ''Q7557804'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SolidDB''}','Y','N','N','N'); +INSERT INTO entities VALUES(186,'SonarQube',2,'{''qid'': ''Q541691'', ''types'': [''Q28061130'', ''Q341''], ''url'': ''http://dbpedia.org/resource/SonarQube''}','N','Y','Y','Y'); INSERT INTO entities VALUES(187,'SpaceMonger',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(188,'Splunk',2,'{''name'': ''Splunk'', ''qid'': ''Q1835753'', ''types'': [''Q1058914'', ''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Splunk'', ''score'': 82.405914}','N','N','Y','N'); +INSERT INTO entities VALUES(188,'Splunk',2,'{''qid'': ''Q1835753'', ''types'': [''Q1058914'', ''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Splunk''}','N','N','Y','N'); INSERT INTO entities VALUES(189,'SQLIO',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(190,'Sybase SQL Server',2,'{''name'': ''Adaptive Server Enterprise'', ''qid'': ''Q2576415'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/Adaptive_Server_Enterprise'', ''score'': 74.81995}','N','Y','Y','N'); -INSERT INTO entities VALUES(191,'Syncsort',2,'{''name'': ''Syncsort'', ''qid'': ''Q7662279'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Syncsort'', ''score'': 82.91823}','Y','N','N','N'); -INSERT INTO entities VALUES(192,'Sysinternal Tools',2,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(190,'Sybase SQL Server',2,'{''qid'': ''Q2576415'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/Adaptive_Server_Enterprise''}','N','Y','Y','N'); +INSERT INTO entities VALUES(191,'Syncsort',2,'{''qid'': ''Q7662279'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Syncsort''}','Y','N','N','N'); +INSERT INTO entities VALUES(192,'Sysinternal Tools',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(193,'Sysinternal Tools|*',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(194,'Sysinternal Tools|AccessEnum',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(195,'Sysinternal Tools|ClockRes',2,'{}','Y','N','N','N'); @@ -442,471 +485,471 @@ INSERT INTO entities VALUES(211,'Sysinternal Tools|VMMap',2,'{}','Y','N','N','N' INSERT INTO entities VALUES(212,'Sysinternal Tools|Whois',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(213,'Tableau',2,'{}','N','N','Y','N'); INSERT INTO entities VALUES(214,'TCPLink Enterprise Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(215,'Teradata',2,'{''name'': ''Teradata'', ''qid'': ''Q430745'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Teradata'', ''score'': 85.67893}','N','N','Y','N'); +INSERT INTO entities VALUES(215,'Teradata',2,'{''qid'': ''Q430745'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Teradata''}','N','N','Y','N'); INSERT INTO entities VALUES(216,'Teradata QS Server',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(217,'TIBCO Business Works (BW)',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(218,'TIBCO InConcert',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(219,'TIBCO Rendezvous',2,'{''name'': ''TIBCO Rendezvous'', ''qid'': ''Q11198794'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/TIBCO_Rendezvous'', ''score'': 82.07744}','N','N','Y','N'); -INSERT INTO entities VALUES(220,'Tivoli Access Manager (TAM)',2,'{''name'': ''IBM Tivoli Access Manager'', ''qid'': ''None'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Access_Manager'', ''score'': 83.2601}','N','N','Y','N'); -INSERT INTO entities VALUES(221,'TortoiseCVS',2,'{''name'': ''TortoiseCVS'', ''qid'': ''Q2883113'', ''types'': [''Q166142'', ''Q341''], ''url'': ''http://dbpedia.org/resource/TortoiseCVS'', ''score'': 83.92944}','Y','N','N','Y'); -INSERT INTO entities VALUES(222,'TortoiseSVN',2,'{''name'': ''TortoiseSVN'', ''qid'': ''Q1062467'', ''types'': [''Q166142'', ''Q1130645''], ''url'': ''http://dbpedia.org/resource/TortoiseSVN'', ''score'': 85.096085}','Y','N','N','N'); +INSERT INTO entities VALUES(219,'TIBCO Rendezvous',2,'{''qid'': ''Q11198794'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/TIBCO_Rendezvous''}','N','N','Y','N'); +INSERT INTO entities VALUES(220,'Tivoli Access Manager (TAM)',2,'{''qid'': ''None'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Access_Manager''}','N','N','Y','N'); +INSERT INTO entities VALUES(221,'TortoiseCVS',2,'{''qid'': ''Q2883113'', ''types'': [''Q166142'', ''Q341''], ''url'': ''http://dbpedia.org/resource/TortoiseCVS''}','Y','N','N','Y'); +INSERT INTO entities VALUES(222,'TortoiseSVN',2,'{''qid'': ''Q1062467'', ''types'': [''Q166142'', ''Q1130645''], ''url'': ''http://dbpedia.org/resource/TortoiseSVN''}','Y','N','N','N'); INSERT INTO entities VALUES(223,'TSO/ISPF',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(224,'TWS zCentric',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(225,'Uniface',2,'{''name'': ''Uniface (programming language)'', ''qid'': ''Q2143563'', ''types'': [''Q9143'', ''Q13741'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/Uniface_(programming_language)'', ''score'': 83.3467}','N','N','Y','N'); +INSERT INTO entities VALUES(225,'Uniface',2,'{''qid'': ''Q2143563'', ''types'': [''Q9143'', ''Q13741'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/Uniface_(programming_language)''}','N','N','Y','N'); INSERT INTO entities VALUES(226,'ViewNow X Server',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(227,'Virtual I/O Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(228,'Visibroker',2,'{''name'': ''Visibroker'', ''qid'': ''Q7936097'', ''types'': [''Q146768''], ''url'': ''http://dbpedia.org/resource/Visibroker'', ''score'': 82.04547}','Y','N','N','N'); +INSERT INTO entities VALUES(228,'Visibroker',2,'{''qid'': ''Q7936097'', ''types'': [''Q146768''], ''url'': ''http://dbpedia.org/resource/Visibroker''}','Y','N','N','N'); INSERT INTO entities VALUES(229,'VMware Solution Exchange Marketplace (VSX)',2,'{}','Y','Y','N','N'); INSERT INTO entities VALUES(230,'VMware Tools',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(231,'VMware vCenter',2,'{''name'': ''VCenter'', ''qid'': ''Q55636858'', ''types'': [''Q218616'', ''Q1371279''], ''url'': ''None'', ''score'': 82.155174}','N','N','Y','N'); +INSERT INTO entities VALUES(231,'VMware vCenter',2,'{''qid'': ''Q55636858'', ''types'': [''Q218616'', ''Q1371279''], ''url'': ''None''}','N','N','Y','N'); INSERT INTO entities VALUES(232,'WebFOCUS',2,'{}','N','N','Y','N'); INSERT INTO entities VALUES(233,'WebLogic Integration',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(234,'WebSphere Commerce Suite (WCS)',2,'{''name'': ''WebSphere Commerce'', ''qid'': ''Q5969126'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebSphere_Commerce'', ''score'': 83.76582}','Y','N','N','N'); +INSERT INTO entities VALUES(234,'WebSphere Commerce Suite (WCS)',2,'{''qid'': ''Q5969126'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebSphere_Commerce''}','Y','N','N','N'); INSERT INTO entities VALUES(235,'WebSphere Message Broker',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(236,'Wherescape Red',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(237,'Windchill',2,'{''name'': ''Windchill (software)'', ''qid'': ''Q8024086'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Windchill_(software)'', ''score'': 84.16238}','Y','N','N','N'); -INSERT INTO entities VALUES(238,'Windows Indexing Service',2,'{''name'': ''Indexing Service'', ''qid'': ''Q575974'', ''types'': [''Q1138815''], ''url'': ''http://dbpedia.org/resource/Indexing_Service'', ''score'': 76.47789}','Y','N','N','N'); +INSERT INTO entities VALUES(237,'Windchill',2,'{''qid'': ''Q8024086'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Windchill_(software)''}','Y','N','N','N'); +INSERT INTO entities VALUES(238,'Windows Indexing Service',2,'{''qid'': ''Q575974'', ''types'': [''Q1138815''], ''url'': ''http://dbpedia.org/resource/Indexing_Service''}','Y','N','N','N'); INSERT INTO entities VALUES(239,'Windows Terminal Server (WTS)',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(240,'WingArc SVF',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(241,'WinMerge',2,'{''name'': ''WinMerge'', ''qid'': ''Q250602'', ''types'': [''Q341'', ''Q2990323''], ''url'': ''http://dbpedia.org/resource/WinMerge'', ''score'': 81.5311}','N','N','Y','Y'); -INSERT INTO entities VALUES(242,'WinRAR',2,'{''name'': ''WinRAR'', ''qid'': ''Q242747'', ''types'': [''Q25303924'', ''Q185534''], ''url'': ''http://dbpedia.org/resource/WinRAR'', ''score'': 83.47733}','Y','N','N','N'); -INSERT INTO entities VALUES(243,'WinSCP',2,'{''name'': ''WinSCP'', ''qid'': ''Q1160381'', ''types'': [''Q3503189'', ''Q2158576'', ''Q341''], ''url'': ''http://dbpedia.org/resource/WinSCP'', ''score'': 81.64955}','Y','N','N','N'); +INSERT INTO entities VALUES(241,'WinMerge',2,'{''qid'': ''Q250602'', ''types'': [''Q341'', ''Q2990323''], ''url'': ''http://dbpedia.org/resource/WinMerge''}','N','N','Y','Y'); +INSERT INTO entities VALUES(242,'WinRAR',2,'{''qid'': ''Q242747'', ''types'': [''Q25303924'', ''Q185534''], ''url'': ''http://dbpedia.org/resource/WinRAR''}','Y','N','N','N'); +INSERT INTO entities VALUES(243,'WinSCP',2,'{''qid'': ''Q1160381'', ''types'': [''Q3503189'', ''Q2158576'', ''Q341''], ''url'': ''http://dbpedia.org/resource/WinSCP''}','Y','N','N','N'); INSERT INTO entities VALUES(244,'Wise Package Studio',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(245,'Wordpress',2,'{''name'': ''WordPress'', ''qid'': ''Q13166'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/WordPress'', ''score'': 82.4432}','N','N','Y','Y'); -INSERT INTO entities VALUES(246,'XAMPP',2,'{''name'': ''XAMPP'', ''qid'': ''Q324073'', ''types'': [''Q100528793'', ''Q341''], ''url'': ''http://dbpedia.org/resource/XAMPP'', ''score'': 82.46329}','N','N','Y','Y'); +INSERT INTO entities VALUES(245,'Wordpress',2,'{''qid'': ''Q13166'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/WordPress''}','N','N','Y','Y'); +INSERT INTO entities VALUES(246,'XAMPP',2,'{''qid'': ''Q324073'', ''types'': [''Q100528793'', ''Q341''], ''url'': ''http://dbpedia.org/resource/XAMPP''}','N','N','Y','Y'); INSERT INTO entities VALUES(247,'ZAP BI',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(248,'ZeroMQ',2,'{''name'': ''ZeroMQ'', ''qid'': ''Q8079189'', ''types'': [''Q188860'', ''Q341''], ''url'': ''http://dbpedia.org/resource/ZeroMQ'', ''score'': 80.776505}','N','N','Y','Y'); -INSERT INTO entities VALUES(249,'Zerto Virtual Replication',2,'{''name'': ''Zerto'', ''qid'': ''Q8069662'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Zerto'', ''score'': 85.0005}','N','N','Y','N'); -INSERT INTO entities VALUES(250,'IBM PowerHA',2,'{''name'': ''IBM High Availability Cluster Multiprocessing'', ''qid'': ''Q10850880'', ''types'': [''Q28057052'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_High_Availability_Cluster_Multiprocessing'', ''score'': 79.73212}','Y','N','N','N'); +INSERT INTO entities VALUES(248,'ZeroMQ',2,'{''qid'': ''Q8079189'', ''types'': [''Q188860'', ''Q341''], ''url'': ''http://dbpedia.org/resource/ZeroMQ''}','N','N','Y','Y'); +INSERT INTO entities VALUES(249,'Zerto Virtual Replication',2,'{''qid'': ''Q8069662'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Zerto''}','N','N','Y','N'); +INSERT INTO entities VALUES(250,'IBM PowerHA',2,'{''qid'': ''Q10850880'', ''types'': [''Q28057052'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_High_Availability_Cluster_Multiprocessing''}','Y','N','N','N'); INSERT INTO entities VALUES(251,'Tivoli Netcool/OMNIbus',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(252,'IBM ILOG Views',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(253,'IBM ILOG CPLEX',2,'{''name'': ''CPLEX'', ''qid'': ''Q2372381'', ''types'': [''Q74086777''], ''url'': ''http://dbpedia.org/resource/CPLEX'', ''score'': 82.07292}','Y','N','N','N'); +INSERT INTO entities VALUES(253,'IBM ILOG CPLEX',2,'{''qid'': ''Q2372381'', ''types'': [''Q74086777''], ''url'': ''http://dbpedia.org/resource/CPLEX''}','Y','N','N','N'); INSERT INTO entities VALUES(254,'IBM ILOG Jviews',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(255,'IBM ILOG Elixir',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(256,'IBM ILOG Supply Chain Apps',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(257,'ILOG Solver',2,'{''name'': ''ILOG'', ''qid'': ''Q2011386'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/ILOG'', ''score'': 82.08319}','Y','N','N','N'); -INSERT INTO entities VALUES(258,'SQLite',2,'{''name'': ''SQLite'', ''qid'': ''Q319417'', ''types'': [''Q35687379'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQLite'', ''score'': 82.83417}','N','N','Y','Y'); -INSERT INTO entities VALUES(259,'Apache HTTP Server',8,'{''name'': ''Apache HTTP Server'', ''qid'': ''Q11354'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/Apache_HTTP_Server'', ''score'': 84.40736}','N','N','Y','Y'); -INSERT INTO entities VALUES(260,'Apache Tomcat',8,'{''name'': ''Apache Tomcat'', ''qid'': ''Q507430'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Apache_Tomcat'', ''score'': 86.58554}','N','N','Y','Y'); -INSERT INTO entities VALUES(261,'ArcGIS Server',8,'{''name'': ''ArcGIS Server'', ''qid'': ''Q4784987'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ArcGIS_Server'', ''score'': 83.61688}','N','N','Y','N'); -INSERT INTO entities VALUES(262,'Oracle WebLogic Server',8,'{''name'': ''Oracle WebLogic Server'', ''qid'': ''Q83589'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_WebLogic_Server'', ''score'': 83.6411}','N','N','Y','N'); -INSERT INTO entities VALUES(263,'GlassFish',8,'{''name'': ''GlassFish'', ''qid'': ''Q68847'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/GlassFish'', ''score'': 80.42923}','N','N','Y','N'); -INSERT INTO entities VALUES(264,'HAProxy',8,'{''name'': ''HAProxy'', ''qid'': ''Q5628948'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/HAProxy'', ''score'': 81.07976}','N','N','Y','Y'); -INSERT INTO entities VALUES(265,'IBM HTTP Server',8,'{''name'': ''IBM HTTP Server'', ''qid'': ''Q821668'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/IBM_HTTP_Server'', ''score'': 83.97016}','N','N','Y','N'); -INSERT INTO entities VALUES(266,'IIS',8,'{''name'': ''Internet Information Services'', ''qid'': ''Q11341'', ''types'': [''Q218616'', ''Q18287040''], ''url'': ''http://dbpedia.org/resource/Internet_Information_Services'', ''score'': 83.39154}','N','N','Y','N'); -INSERT INTO entities VALUES(267,'JBoss',8,'{''name'': ''JBoss (company)'', ''qid'': ''Q485593'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/JBoss_(company)'', ''score'': 82.23151}','N','N','Y','N'); -INSERT INTO entities VALUES(268,'JBoss|*',8,'{''name'': ''JBoss (company)'', ''qid'': ''Q485593'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/JBoss_(company)'', ''score'': 82.22614}','N','N','Y','N'); -INSERT INTO entities VALUES(269,'Kitura',8,'{''name'': ''Kitura'', ''qid'': ''Q28130427'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Kitura'', ''score'': 79.70193}','N','N','Y','N'); -INSERT INTO entities VALUES(270,'Lotus Domino',8,'{''name'': '''', ''qid'': ''Q1069529'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q1069529'', ''score'': 1}','Y','N','N','N'); -INSERT INTO entities VALUES(271,'Lucee',8,'{''name'': ''Lucee'', ''qid'': ''Q105180640'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Lucee'', ''score'': 84.31911}','N','N','Y','Y'); -INSERT INTO entities VALUES(272,'Netscape Application Server (NAS)',8,'{''name'': ''Netscape Application Server'', ''qid'': ''Q7000305'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Netscape_Application_Server'', ''score'': 78.747025}','Y','N','N','N'); -INSERT INTO entities VALUES(273,'Netscape Enterprise Server (NES)',8,'{''name'': '''', ''qid'': ''Q478430'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q478430'', ''score'': 1}','Y','N','N','N'); -INSERT INTO entities VALUES(274,'Nginx',8,'{''name'': ''Nginx'', ''qid'': ''Q306144'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/Nginx'', ''score'': 82.1052}','N','N','Y','Y'); -INSERT INTO entities VALUES(275,'Oracle Application Server',8,'{''name'': ''Oracle Application Server'', ''qid'': ''Q2027912'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Server'', ''score'': 82.892685}','Y','N','N','N'); -INSERT INTO entities VALUES(276,'Oracle WebCenter Content Server',8,'{''name'': ''Oracle WebCenter'', ''qid'': ''Q2309159'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/Oracle_WebCenter'', ''score'': 84.68355}','Y','N','N','N'); +INSERT INTO entities VALUES(257,'ILOG Solver',2,'{''qid'': ''Q2011386'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/ILOG''}','Y','N','N','N'); +INSERT INTO entities VALUES(258,'SQLite',2,'{''qid'': ''Q319417'', ''types'': [''Q35687379'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQLite''}','N','N','Y','Y'); +INSERT INTO entities VALUES(259,'Apache HTTP Server',8,'{''qid'': ''Q11354'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/Apache_HTTP_Server''}','N','N','Y','Y'); +INSERT INTO entities VALUES(260,'Apache Tomcat',8,'{''qid'': ''Q507430'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Apache_Tomcat''}','N','N','Y','Y'); +INSERT INTO entities VALUES(261,'ArcGIS Server',8,'{''qid'': ''Q4784987'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ArcGIS_Server''}','N','N','Y','N'); +INSERT INTO entities VALUES(262,'Oracle WebLogic Server',8,'{''qid'': ''Q83589'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_WebLogic_Server''}','N','N','Y','N'); +INSERT INTO entities VALUES(263,'GlassFish',8,'{''qid'': ''Q68847'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/GlassFish''}','N','N','Y','N'); +INSERT INTO entities VALUES(264,'HAProxy',8,'{''qid'': ''Q5628948'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/HAProxy''}','N','N','Y','Y'); +INSERT INTO entities VALUES(265,'IBM HTTP Server',8,'{''qid'': ''Q821668'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/IBM_HTTP_Server''}','N','N','Y','N'); +INSERT INTO entities VALUES(266,'IIS',8,'{''qid'': ''Q11341'', ''types'': [''Q218616'', ''Q18287040''], ''url'': ''http://dbpedia.org/resource/Internet_Information_Services''}','N','N','Y','N'); +INSERT INTO entities VALUES(267,'JBoss',8,'{''qid'': ''Q485593'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/JBoss_(company)''}','N','N','Y','N'); +INSERT INTO entities VALUES(268,'JBoss|*',8,'{''qid'': ''Q485593'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/JBoss_(company)''}','N','N','Y','N'); +INSERT INTO entities VALUES(269,'Kitura',8,'{''qid'': ''Q28130427'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Kitura''}','N','N','Y','N'); +INSERT INTO entities VALUES(270,'Lotus Domino',8,'{''qid'': ''Q1069529'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q1069529''}','Y','N','N','N'); +INSERT INTO entities VALUES(271,'Lucee',8,'{''qid'': ''Q105180640'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Lucee''}','N','N','Y','Y'); +INSERT INTO entities VALUES(272,'Netscape Application Server (NAS)',8,'{''qid'': ''Q7000305'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Netscape_Application_Server''}','Y','N','N','N'); +INSERT INTO entities VALUES(273,'Netscape Enterprise Server (NES)',8,'{''qid'': ''Q478430'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q478430''}','Y','N','N','N'); +INSERT INTO entities VALUES(274,'Nginx',8,'{''qid'': ''Q306144'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/Nginx''}','N','N','Y','Y'); +INSERT INTO entities VALUES(275,'Oracle Application Server',8,'{''qid'': ''Q2027912'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Server''}','Y','N','N','N'); +INSERT INTO entities VALUES(276,'Oracle WebCenter Content Server',8,'{''qid'': ''Q2309159'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/Oracle_WebCenter''}','Y','N','N','N'); INSERT INTO entities VALUES(277,'Pivotal tc Server',8,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(278,'Resin Web Server',8,'{''name'': ''Resin (software)'', ''qid'': ''Q2145742'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Resin_(software)'', ''score'': 82.6158}','N','N','Y','Y'); -INSERT INTO entities VALUES(279,'SAP NetWeaver App Server',8,'{''name'': ''SAP NetWeaver'', ''qid'': ''Q2204924'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/SAP_NetWeaver'', ''score'': 82.42236}','Y','N','N','N'); -INSERT INTO entities VALUES(280,'Spark',8,'{''name'': ''Spark (software)'', ''qid'': ''Q20712258'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Spark_(software)'', ''score'': 81.12587}','N','N','Y','N'); -INSERT INTO entities VALUES(281,'Oracle iPlanet Web Server',8,'{''name'': ''Oracle iPlanet Web Server'', ''qid'': ''Q1225115'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_iPlanet_Web_Server'', ''score'': 83.72687}','Y','N','N','N'); +INSERT INTO entities VALUES(278,'Resin Web Server',8,'{''qid'': ''Q2145742'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Resin_(software)''}','N','N','Y','Y'); +INSERT INTO entities VALUES(279,'SAP NetWeaver App Server',8,'{''qid'': ''Q2204924'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/SAP_NetWeaver''}','Y','N','N','N'); +INSERT INTO entities VALUES(280,'Spark',8,'{''qid'': ''Q20712258'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Spark_(software)''}','N','N','Y','N'); +INSERT INTO entities VALUES(281,'Oracle iPlanet Web Server',8,'{''qid'': ''Q1225115'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_iPlanet_Web_Server''}','Y','N','N','N'); INSERT INTO entities VALUES(282,'UltiDev Web Server Pro (UWS)',8,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(283,'webMethods Integration Server',8,'{''name'': ''WebMethods Integration Server'', ''qid'': ''Q7978461'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebMethods_Integration_Server'', ''score'': 83.18122}','Y','N','N','N'); -INSERT INTO entities VALUES(284,'Websphere Application Server (WAS)',8,'{''name'': ''IBM WebSphere Application Server'', ''qid'': ''Q81612'', ''types'': [''Q1330336'', ''Q71550''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Application_Server'', ''score'': 82.109505}','N','N','Y','N'); -INSERT INTO entities VALUES(285,'WebSphere Liberty',8,'{''name'': '''', ''qid'': ''Q2536917'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q2536917'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(286,'WebSphere Portal Server',8,'{''name'': ''WebSphere Portal'', ''qid'': ''Q4053022'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebSphere_Portal'', ''score'': 81.51565}','N','N','Y','N'); -INSERT INTO entities VALUES(287,'Websphere Process Server',8,'{''name'': ''IBM WebSphere Process Server'', ''qid'': ''Q5969143'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Process_Server'', ''score'': 81.27237}','Y','N','N','N'); +INSERT INTO entities VALUES(283,'webMethods Integration Server',8,'{''qid'': ''Q7978461'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebMethods_Integration_Server''}','Y','N','N','N'); +INSERT INTO entities VALUES(284,'Websphere Application Server (WAS)',8,'{''qid'': ''Q81612'', ''types'': [''Q1330336'', ''Q71550''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Application_Server''}','N','N','Y','N'); +INSERT INTO entities VALUES(285,'WebSphere Liberty',8,'{''qid'': ''Q2536917'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q2536917''}','N','N','Y','N'); +INSERT INTO entities VALUES(286,'WebSphere Portal Server',8,'{''qid'': ''Q4053022'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebSphere_Portal''}','N','N','Y','N'); +INSERT INTO entities VALUES(287,'Websphere Process Server',8,'{''qid'': ''Q5969143'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Process_Server''}','Y','N','N','N'); INSERT INTO entities VALUES(288,'WebSphere Process Server',8,'{}','Y','N','N','N'); INSERT INTO entities VALUES(289,'Oracle Real-Time Decisions (RTD)',8,'{}','Y','N','N','N'); INSERT INTO entities VALUES(290,'CA API Gateway',4,'{}','Y','N','N','N'); INSERT INTO entities VALUES(291,'Citrix ADC SDX',4,'{}','Y','N','N','N'); INSERT INTO entities VALUES(292,'Citrix ADC MPX',4,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(293,'HP Nonstop',4,'{''name'': ''NonStop (server computers)'', ''qid'': ''Q826798'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/NonStop_(server_computers)'', ''score'': 82.588806}','Y','N','N','N'); +INSERT INTO entities VALUES(293,'HP Nonstop',4,'{''qid'': ''Q826798'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/NonStop_(server_computers)''}','Y','N','N','N'); INSERT INTO entities VALUES(294,'IBM DataPower Gateway',4,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(295,'IBM Power Systems',4,'{''name'': ''IBM Power Systems'', ''qid'': ''Q2040857'', ''types'': [''Q10929058''], ''url'': ''http://dbpedia.org/resource/IBM_Power_Systems'', ''score'': 86.235016}','Y','N','N','N'); -INSERT INTO entities VALUES(296,'Intel Xeon Processor',4,'{''name'': ''Xeon'', ''qid'': ''Q656154'', ''types'': [''Q431289'', ''Q12047070''], ''url'': ''http://dbpedia.org/resource/Xeon'', ''score'': 84.048645}','Y','N','N','N'); -INSERT INTO entities VALUES(297,'Net Optics Taps',4,'{''name'': ''Net Optics'', ''qid'': ''Q17114213'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Net_Optics'', ''score'': 81.03233}','Y','N','N','N'); -INSERT INTO entities VALUES(298,'Oracle Exadata',4,'{''name'': ''Oracle Exadata'', ''qid'': ''Q4038419'', ''types'': [''Q68''], ''url'': ''http://dbpedia.org/resource/Oracle_Exadata'', ''score'': 85.65969}','Y','N','N','N'); -INSERT INTO entities VALUES(299,'AutoIt',9,'{''name'': ''AutoIt'', ''qid'': ''Q784845'', ''types'': [''Q187432'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/AutoIt'', ''score'': 81.2198}','N','N','Y','N/A'); -INSERT INTO entities VALUES(300,'AWK',9,'{''name'': ''AWK'', ''qid'': ''Q213970'', ''types'': [''Q1418502'', ''Q187432'', ''Q28919945'', ''Q18343316'', ''Q287472''], ''url'': ''http://dbpedia.org/resource/AWK'', ''score'': 84.119415}','N','N','Y','N/A'); -INSERT INTO entities VALUES(301,'BASIC',9,'{''name'': ''BASIC'', ''qid'': ''Q42979'', ''types'': [''Q79872'', ''Q1418502'', ''Q28922854'', ''Q9143'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/BASIC'', ''score'': 82.874535}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(295,'IBM Power Systems',4,'{''qid'': ''Q2040857'', ''types'': [''Q10929058''], ''url'': ''http://dbpedia.org/resource/IBM_Power_Systems''}','Y','N','N','N'); +INSERT INTO entities VALUES(296,'Intel Xeon Processor',4,'{''qid'': ''Q656154'', ''types'': [''Q431289'', ''Q12047070''], ''url'': ''http://dbpedia.org/resource/Xeon''}','Y','N','N','N'); +INSERT INTO entities VALUES(297,'Net Optics Taps',4,'{''qid'': ''Q17114213'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Net_Optics''}','Y','N','N','N'); +INSERT INTO entities VALUES(298,'Oracle Exadata',4,'{''qid'': ''Q4038419'', ''types'': [''Q68''], ''url'': ''http://dbpedia.org/resource/Oracle_Exadata''}','Y','N','N','N'); +INSERT INTO entities VALUES(299,'AutoIt',9,'{''qid'': ''Q784845'', ''types'': [''Q187432'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/AutoIt''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(300,'AWK',9,'{''qid'': ''Q213970'', ''types'': [''Q1418502'', ''Q187432'', ''Q28919945'', ''Q18343316'', ''Q287472''], ''url'': ''http://dbpedia.org/resource/AWK''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(301,'BASIC',9,'{''qid'': ''Q42979'', ''types'': [''Q79872'', ''Q1418502'', ''Q28922854'', ''Q9143'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/BASIC''}','N','Y','Y','N/A'); INSERT INTO entities VALUES(302,'Brainscript',9,'{}','Y','N','N','N/A'); -INSERT INTO entities VALUES(303,'C',9,'{''name'': ''C (programming language)'', ''qid'': ''Q15777'', ''types'': [''Q28922885'', ''Q28920117'', ''Q9143'', ''Q21562092'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C_(programming_language)'', ''score'': 83.0133}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(304,'C#',9,'{''name'': ''C Sharp (programming language)'', ''qid'': ''Q2370'', ''types'': [''Q9143'', ''Q12772052''], ''url'': ''http://dbpedia.org/resource/C_Sharp_(programming_language)'', ''score'': 85.237335}','N','N','Y','N/A'); -INSERT INTO entities VALUES(305,'C++',9,'{''name'': ''C++'', ''qid'': ''Q2407'', ''types'': [''Q28923026'', ''Q12772052'', ''Q28922885'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q5499621'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C++'', ''score'': 83.96228}','N','N','Y','N/A'); -INSERT INTO entities VALUES(306,'C++|Visual C++',9,'{''name'': ''Microsoft Visual C++'', ''qid'': ''Q847296'', ''types'': [''Q13741'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_C++'', ''score'': 81.50828}','Y','N','N','N/A'); -INSERT INTO entities VALUES(307,'Cascading Style Sheets (CSS)',9,'{''name'': ''Cascading Style Sheets'', ''qid'': ''Q46441'', ''types'': [''Q1029123''], ''url'': ''http://dbpedia.org/resource/Cascading_Style_Sheets'', ''score'': 82.67035}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(308,'Clipper',9,'{''name'': ''Clipper (programming language)'', ''qid'': ''Q834358'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Clipper_(programming_language)'', ''score'': 81.22247}','N','N','Y','N/A'); -INSERT INTO entities VALUES(309,'CLIST',9,'{''name'': ''CLIST'', ''qid'': ''Q579880'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/CLIST'', ''score'': 82.2546}','N','N','Y','N/A'); -INSERT INTO entities VALUES(310,'COBOL',9,'{''name'': ''COBOL'', ''qid'': ''Q131140'', ''types'': [''Q9143'', ''Q28922885'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/COBOL'', ''score'': 86.299416}','Y','N','N','N/A'); -INSERT INTO entities VALUES(311,'ColdFusion Markup Language (CFML)',9,'{''name'': ''ColdFusion Markup Language'', ''qid'': ''Q2524362'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ColdFusion_Markup_Language'', ''score'': 84.45539}','N','N','Y','N/A'); -INSERT INTO entities VALUES(312,'Data Language Interface (DL/I)',9,'{''name'': ''Data Language Interface'', ''qid'': ''Q2299300'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Data_Language_Interface'', ''score'': 79.50934}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(313,'Delphi',9,'{''name'': ''Delphi (IDE)'', ''qid'': ''Q487378'', ''types'': [''Q9143'', ''Q218616'', ''Q13741''], ''url'': ''http://dbpedia.org/resource/Delphi_(programming_language)'', ''score'': 80.86489}','Y','N','N','N/A'); -INSERT INTO entities VALUES(314,'Easytrieve',9,'{''name'': ''Easytrieve'', ''qid'': ''Q1278381'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Easytrieve'', ''score'': 83.96745}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(315,'Expect',9,'{''name'': ''Expect'', ''qid'': ''Q2642029'', ''types'': [''Q9143'', ''Q28937412'', ''Q4826135'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Expect'', ''score'': 81.221375}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(316,'eXtensible HyperText Markup Language (XHTML)',9,'{''name'': ''XHTML'', ''qid'': ''Q166074'', ''types'': [''Q20155966'', ''Q317623'', ''Q37045''], ''url'': ''http://dbpedia.org/resource/XHTML'', ''score'': 83.945404}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(317,'Extensible Markup Language (XML)',9,'{''name'': ''XML'', ''qid'': ''Q2115'', ''types'': [''Q82753'', ''Q37045'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/XML'', ''score'': 81.03446}','N','N','Y','N/A'); -INSERT INTO entities VALUES(318,'Extensible Markup Language (XML)|MSXML',9,'{''name'': ''MSXML'', ''qid'': ''Q1133470'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/MSXML'', ''score'': 78.451324}','N','N','Y','N/A'); -INSERT INTO entities VALUES(319,'Extensible Stylesheet Language (XSL)',9,'{''name'': ''XSL'', ''qid'': ''Q32061'', ''types'': [''Q1029123'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/XSL'', ''score'': 84.01022}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(320,'Extensible Stylesheet Language Transformations (XLST)',9,'{''name'': ''XSLT'', ''qid'': ''Q32110'', ''types'': [''Q2661442'', ''Q9143'', ''Q1144882'', ''Q3217190''], ''url'': ''http://dbpedia.org/resource/XSLT'', ''score'': 81.93498}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(321,'FOCUS',9,'{''name'': ''FOCUS'', ''qid'': ''Q5426833'', ''types'': [''Q238137''], ''url'': ''http://dbpedia.org/resource/FOCUS'', ''score'': 82.91896}','N','N','Y','N/A'); -INSERT INTO entities VALUES(322,'Fortran',9,'{''name'': ''Fortran'', ''qid'': ''Q83303'', ''types'': [''Q28923026'', ''Q28922885'', ''Q899523'', ''Q28920117'', ''Q9143'', ''Q28920142'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Fortran'', ''score'': 85.88472}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(323,'Go',9,'{''name'': ''Go (programming language)'', ''qid'': ''Q37227'', ''types'': [''Q12772052'', ''Q28922885'', ''Q899523'', ''Q28920117'', ''Q9143'', ''Q28919943'', ''Q21562092'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/Go_(programming_language)'', ''score'': 80.39588}','N','N','Y','N/A'); -INSERT INTO entities VALUES(324,'GraphQL',9,'{''name'': ''GraphQL'', ''qid'': ''Q25104949'', ''types'': [''Q557770'', ''Q9143'', ''Q60551191''], ''url'': ''http://dbpedia.org/resource/GraphQL'', ''score'': 84.96563}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(325,'Groovy',9,'{''name'': ''Skeevy'', ''qid'': ''Q16886826'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Skeevy'', ''score'': 74.09853}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(303,'C',9,'{''qid'': ''Q15777'', ''types'': [''Q28922885'', ''Q28920117'', ''Q9143'', ''Q21562092'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C_(programming_language)''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(304,'C#',9,'{''qid'': ''Q2370'', ''types'': [''Q9143'', ''Q12772052''], ''url'': ''http://dbpedia.org/resource/C_Sharp_(programming_language)''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(305,'C++',9,'{''qid'': ''Q2407'', ''types'': [''Q28923026'', ''Q12772052'', ''Q28922885'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q5499621'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C++''}','Y','Y','N','N'); +INSERT INTO entities VALUES(306,'C++|Visual C++',9,'{''qid'': ''Q847296'', ''types'': [''Q13741'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_C++''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(307,'Cascading Style Sheets (CSS)',9,'{''qid'': ''Q46441'', ''types'': [''Q1029123''], ''url'': ''http://dbpedia.org/resource/Cascading_Style_Sheets''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(308,'Clipper',9,'{''qid'': ''Q834358'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Clipper_(programming_language)''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(309,'CLIST',9,'{''qid'': ''Q579880'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/CLIST''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(310,'COBOL',9,'{''qid'': ''Q131140'', ''types'': [''Q9143'', ''Q28922885'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/COBOL''}','Y','N','N','N'); +INSERT INTO entities VALUES(311,'ColdFusion Markup Language (CFML)',9,'{''qid'': ''Q2524362'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ColdFusion_Markup_Language''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(312,'Data Language Interface (DL/I)',9,'{''qid'': ''Q2299300'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Data_Language_Interface''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(313,'Delphi',9,'{''qid'': ''Q487378'', ''types'': [''Q9143'', ''Q218616'', ''Q13741''], ''url'': ''http://dbpedia.org/resource/Delphi_(programming_language)''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(314,'Easytrieve',9,'{''qid'': ''Q1278381'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Easytrieve''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(315,'Expect',9,'{''qid'': ''Q2642029'', ''types'': [''Q9143'', ''Q28937412'', ''Q4826135'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Expect''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(316,'eXtensible HyperText Markup Language (XHTML)',9,'{''qid'': ''Q166074'', ''types'': [''Q20155966'', ''Q317623'', ''Q37045''], ''url'': ''http://dbpedia.org/resource/XHTML''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(317,'Extensible Markup Language (XML)',9,'{''qid'': ''Q2115'', ''types'': [''Q82753'', ''Q37045'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/XML''}','Y','Y','N','N'); +INSERT INTO entities VALUES(318,'Extensible Markup Language (XML)|MSXML',9,'{''qid'': ''Q1133470'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/MSXML''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(319,'Extensible Stylesheet Language (XSL)',9,'{''qid'': ''Q32061'', ''types'': [''Q1029123'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/XSL''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(320,'Extensible Stylesheet Language Transformations (XLST)',9,'{''qid'': ''Q32110'', ''types'': [''Q2661442'', ''Q9143'', ''Q1144882'', ''Q3217190''], ''url'': ''http://dbpedia.org/resource/XSLT''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(321,'FOCUS',9,'{''qid'': ''Q5426833'', ''types'': [''Q238137''], ''url'': ''http://dbpedia.org/resource/FOCUS''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(322,'Fortran',9,'{''qid'': ''Q83303'', ''types'': [''Q28923026'', ''Q28922885'', ''Q899523'', ''Q28920117'', ''Q9143'', ''Q28920142'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Fortran''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(323,'Go',9,'{''qid'': ''Q37227'', ''types'': [''Q12772052'', ''Q28922885'', ''Q899523'', ''Q28920117'', ''Q9143'', ''Q28919943'', ''Q21562092'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/Go_(programming_language)''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(324,'GraphQL',9,'{''qid'': ''Q25104949'', ''types'': [''Q557770'', ''Q9143'', ''Q60551191''], ''url'': ''http://dbpedia.org/resource/GraphQL''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(325,'Groovy',9,'{''qid'': ''Q16886826'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Skeevy''}','Y','Y','N','N/A'); INSERT INTO entities VALUES(326,'HiveQL',9,'{}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(327,'Hypertext Markup Language (HTML)',9,'{''name'': ''HTML'', ''qid'': ''Q8811'', ''types'': [''Q2661442'', ''Q17537576'', ''Q37045'', ''Q235557'', ''Q20202982''], ''url'': ''http://dbpedia.org/resource/HTML'', ''score'': 79.86511}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(328,'IBM High Level Assembler (HLASM)',9,'{''name'': ''IBM High Level Assembler'', ''qid'': ''Q4039976'', ''types'': [''Q6470767''], ''url'': ''http://dbpedia.org/resource/IBM_High_Level_Assembler'', ''score'': 86.73256}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(329,'IBM i Control Language (CL)',9,'{''name'': ''IBM i Control Language'', ''qid'': ''Q263490'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/IBM_i_Control_Language'', ''score'': 84.13912}','N','N','Y','N/A'); -INSERT INTO entities VALUES(330,'IBM Informix-4GL',9,'{''name'': ''IBM Informix-4GL'', ''qid'': ''Q2816938'', ''types'': [''Q9143'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/IBM_Informix-4GL'', ''score'': 86.663055}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(331,'Java',9,'{''name'': ''Java (programming language)'', ''qid'': ''Q251'', ''types'': [''Q12772052'', ''Q56062429'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Java_(programming_language)'', ''score'': 80.41948}','N','N','Y','N/A'); -INSERT INTO entities VALUES(332,'Java|Extensible Stylesheet Language (XSL)',9,'{''name'': ''XSL'', ''qid'': ''Q32061'', ''types'': [''Q1029123'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/XSL'', ''score'': 84.74439}','N','N','Y','N/A'); -INSERT INTO entities VALUES(333,'Java|Java Enterprise Edition (Java EE)',9,'{''name'': ''Java Platform, Enterprise Edition'', ''qid'': ''Q193247'', ''types'': [''Q1330336'', ''Q27493'', ''Q241317''], ''url'': ''http://dbpedia.org/resource/Java_Platform,_Enterprise_Edition'', ''score'': 83.33119}','N','N','Y','N/A'); -INSERT INTO entities VALUES(334,'Java|Java Standard Edition (Java SE)',9,'{''name'': ''Java Platform, Standard Edition'', ''qid'': ''Q747478'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Java_Platform,_Standard_Edition'', ''score'': 85.89982}','N','N','Y','N/A'); -INSERT INTO entities VALUES(335,'Java|JavaServer Pages (JSP)',9,'{''name'': ''JavaServer Pages'', ''qid'': ''Q183169'', ''types'': [''Q351507'', ''Q20819677'', ''Q1650567'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/JavaServer_Pages'', ''score'': 85.09859}','Y','N','N','N/A'); -INSERT INTO entities VALUES(336,'Java|JavaServer Pages (JSP)|Scriptlets',9,'{''name'': ''Scriptlet'', ''qid'': ''Q3476475'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Scriptlet'', ''score'': 82.499466}','Y','N','N','N/A'); -INSERT INTO entities VALUES(337,'JavaScript',9,'{''name'': ''JavaScript'', ''qid'': ''Q2005'', ''types'': [''Q241317'', ''Q12772052'', ''Q3839507'', ''Q187432'', ''Q9143'', ''Q28920810'', ''Q21562092'', ''Q28920813'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/JavaScript'', ''score'': 81.10689}','Y','N','N','N/A'); -INSERT INTO entities VALUES(338,'JCL',9,'{''name'': ''Job Control Language'', ''qid'': ''Q1505372'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Job_Control_Language'', ''score'': 79.797485}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(327,'Hypertext Markup Language (HTML)',9,'{''qid'': ''Q8811'', ''types'': [''Q2661442'', ''Q17537576'', ''Q37045'', ''Q235557'', ''Q20202982''], ''url'': ''http://dbpedia.org/resource/HTML''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(328,'IBM High Level Assembler (HLASM)',9,'{''qid'': ''Q4039976'', ''types'': [''Q6470767''], ''url'': ''http://dbpedia.org/resource/IBM_High_Level_Assembler''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(329,'IBM i Control Language (CL)',9,'{''qid'': ''Q263490'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/IBM_i_Control_Language''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(330,'IBM Informix-4GL',9,'{''qid'': ''Q2816938'', ''types'': [''Q9143'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/IBM_Informix-4GL''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(331,'Java',9,'{''qid'': ''Q251'', ''types'': [''Q12772052'', ''Q56062429'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Java_(programming_language)''}','N','N','Y','N'); +INSERT INTO entities VALUES(332,'Java|Extensible Stylesheet Language (XSL)',9,'{''qid'': ''Q32061'', ''types'': [''Q1029123'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/XSL''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(333,'Java|Java Enterprise Edition (Java EE)',9,'{''qid'': ''Q193247'', ''types'': [''Q1330336'', ''Q27493'', ''Q241317''], ''url'': ''http://dbpedia.org/resource/Java_Platform,_Enterprise_Edition''}','N','N','Y','N'); +INSERT INTO entities VALUES(334,'Java|Java Standard Edition (Java SE)',9,'{''qid'': ''Q747478'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Java_Platform,_Standard_Edition''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(335,'Java|JavaServer Pages (JSP)',9,'{''qid'': ''Q183169'', ''types'': [''Q351507'', ''Q20819677'', ''Q1650567'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/JavaServer_Pages''}','Y','N','N','N'); +INSERT INTO entities VALUES(336,'Java|JavaServer Pages (JSP)|Scriptlets',9,'{''qid'': ''Q3476475'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Scriptlet''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(337,'JavaScript',9,'{''qid'': ''Q2005'', ''types'': [''Q241317'', ''Q12772052'', ''Q3839507'', ''Q187432'', ''Q9143'', ''Q28920810'', ''Q21562092'', ''Q28920813'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/JavaScript''}','Y','N','N','N'); +INSERT INTO entities VALUES(338,'JCL',9,'{''qid'': ''Q1505372'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Job_Control_Language''}','Y','Y','N','N/A'); INSERT INTO entities VALUES(339,'Job Information Language (JIL)',9,'{}','Y','N','N','N/A'); -INSERT INTO entities VALUES(340,'JScript',9,'{''name'': ''JScript'', ''qid'': ''Q553514'', ''types'': [''Q4117406''], ''url'': ''http://dbpedia.org/resource/JScript'', ''score'': 83.55073}','Y','N','N','N/A'); -INSERT INTO entities VALUES(341,'Lisp',9,'{''name'': ''Lisp (programming language)'', ''qid'': ''Q132874'', ''types'': [''Q12772052'', ''Q28922885'', ''Q3839507'', ''Q28922887'', ''Q28922893'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Lisp_(programming_language)'', ''score'': 85.16762}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(342,'Niakwa Programming Language (NPL)',9,'{''name'': ''NPL (programming language)'', ''qid'': ''Q6955040'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/NPL_(programming_language)'', ''score'': 76.99778}','Y','N','N','N/A'); -INSERT INTO entities VALUES(343,'Objective C',9,'{''name'': ''Objective-C'', ''qid'': ''Q188531'', ''types'': [''Q12772052'', ''Q28922858'', ''Q899523'', ''Q9143'', ''Q28922893''], ''url'': ''http://dbpedia.org/resource/Objective-C'', ''score'': 82.52398}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(344,'OpenEdge ABL',9,'{''name'': ''OpenEdge Advanced Business Language'', ''qid'': ''Q1963461'', ''types'': [''Q899523'', ''Q9143'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/OpenEdge_Advanced_Business_Language'', ''score'': 82.325424}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(345,'Pascal',9,'{''name'': ''Pascal (programming language)'', ''qid'': ''Q81571'', ''types'': [''Q9143'', ''Q21562092'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Pascal_(programming_language)'', ''score'': 80.44305}','Y','N','N','N/A'); -INSERT INTO entities VALUES(346,'Pascal|Object Pascal',9,'{''name'': ''Object Pascal'', ''qid'': ''Q633894'', ''types'': [''Q12772052'', ''Q9143'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/Object_Pascal'', ''score'': 80.73593}','Y','N','N','N/A'); -INSERT INTO entities VALUES(347,'Perl',9,'{''name'': ''Perl'', ''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl'', ''score'': 85.61053}','N','N','Y','N/A'); -INSERT INTO entities VALUES(348,'Perl|ActivePerl',9,'{''name'': ''ActivePerl'', ''qid'': ''Q4033363'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ActivePerl'', ''score'': 84.292564}','Y','N','N','N/A'); -INSERT INTO entities VALUES(349,'Perl|Rex',9,'{''name'': ''Perl'', ''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl'', ''score'': 79.43059}','Y','N','N','N/A'); -INSERT INTO entities VALUES(350,'PHP',9,'{''name'': ''PHP'', ''qid'': ''Q59'', ''types'': [''Q1993334''], ''url'': ''http://dbpedia.org/resource/PHP'', ''score'': 80.896286}','N','N','Y','N/A'); -INSERT INTO entities VALUES(351,'PL/I',9,'{''name'': ''PL/I'', ''qid'': ''Q223433'', ''types'': [''Q9143'', ''Q28922885''], ''url'': ''http://dbpedia.org/resource/PL/I'', ''score'': 85.97887}','Y','N','N','N/A'); -INSERT INTO entities VALUES(352,'PL/SQL',9,'{''name'': ''PL/SQL'', ''qid'': ''Q41574'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/PL/SQL'', ''score'': 80.872826}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(353,'PRO*C',9,'{''name'': ''Pro*C'', ''qid'': ''Q2111340'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Pro*C'', ''score'': 82.18649}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(354,'Python',9,'{''name'': ''Python (programming language)'', ''qid'': ''Q28865'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Python_(programming_language)'', ''score'': 83.15874}','N','N','Y','N/A'); -INSERT INTO entities VALUES(355,'R',9,'{''name'': ''R (programming language)'', ''qid'': ''Q206904'', ''types'': [''Q9143'', ''Q1004415''], ''url'': ''http://dbpedia.org/resource/R_(programming_language)'', ''score'': 85.61728}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(356,'Rexx',9,'{''name'': ''Rexx'', ''qid'': ''Q685820'', ''types'': [''Q9143'', ''Q28937412'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Rexx'', ''score'': 82.05354}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(357,'RPG',9,'{''name'': ''IBM RPG'', ''qid'': ''Q840543'', ''types'': [''Q9143'', ''Q28922885''], ''url'': ''http://dbpedia.org/resource/IBM_RPG'', ''score'': 79.20816}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(358,'Ruby',9,'{''name'': ''Ruby (programming language)'', ''qid'': ''Q161053'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Ruby_(programming_language)'', ''score'': 81.75676}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(340,'JScript',9,'{''qid'': ''Q553514'', ''types'': [''Q4117406''], ''url'': ''http://dbpedia.org/resource/JScript''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(341,'Lisp',9,'{''qid'': ''Q132874'', ''types'': [''Q12772052'', ''Q28922885'', ''Q3839507'', ''Q28922887'', ''Q28922893'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Lisp_(programming_language)''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(342,'Niakwa Programming Language (NPL)',9,'{''qid'': ''Q6955040'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/NPL_(programming_language)''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(343,'Objective C',9,'{''qid'': ''Q188531'', ''types'': [''Q12772052'', ''Q28922858'', ''Q899523'', ''Q9143'', ''Q28922893''], ''url'': ''http://dbpedia.org/resource/Objective-C''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(344,'OpenEdge ABL',9,'{''qid'': ''Q1963461'', ''types'': [''Q899523'', ''Q9143'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/OpenEdge_Advanced_Business_Language''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(345,'Pascal',9,'{''qid'': ''Q81571'', ''types'': [''Q9143'', ''Q21562092'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Pascal_(programming_language)''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(346,'Pascal|Object Pascal',9,'{''qid'': ''Q633894'', ''types'': [''Q12772052'', ''Q9143'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/Object_Pascal''}','Y','Y','N','N'); +INSERT INTO entities VALUES(347,'Perl',9,'{''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(348,'Perl|ActivePerl',9,'{''qid'': ''Q4033363'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ActivePerl''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(349,'Perl|Rex',9,'{''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(350,'PHP',9,'{''qid'': ''Q59'', ''types'': [''Q1993334''], ''url'': ''http://dbpedia.org/resource/PHP''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(351,'PL/I',9,'{''qid'': ''Q223433'', ''types'': [''Q9143'', ''Q28922885''], ''url'': ''http://dbpedia.org/resource/PL/I''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(352,'PL/SQL',9,'{''qid'': ''Q41574'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/PL/SQL''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(353,'PRO*C',9,'{''qid'': ''Q2111340'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Pro*C''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(354,'Python',9,'{''qid'': ''Q28865'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Python_(programming_language)''}','N','N','Y','Y'); +INSERT INTO entities VALUES(355,'R',9,'{''qid'': ''Q206904'', ''types'': [''Q9143'', ''Q1004415''], ''url'': ''http://dbpedia.org/resource/R_(programming_language)''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(356,'Rexx',9,'{''qid'': ''Q685820'', ''types'': [''Q9143'', ''Q28937412'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Rexx''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(357,'RPG',9,'{''qid'': ''Q840543'', ''types'': [''Q9143'', ''Q28922885''], ''url'': ''http://dbpedia.org/resource/IBM_RPG''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(358,'Ruby',9,'{''qid'': ''Q161053'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Ruby_(programming_language)''}','N','Y','Y','Y'); INSERT INTO entities VALUES(359,'Salesforce Object Query Language (SOQL)',9,'{}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(360,'SAS',9,'{''name'': ''SAS (software)'', ''qid'': ''Q2003932'', ''types'': [''Q9143'', ''Q13199995'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/SAS_(software)'', ''score'': 83.83615}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(361,'Sass',9,'{''name'': ''Sass (stylesheet language)'', ''qid'': ''Q1572865'', ''types'': [''Q9143'', ''Q1029123'', ''Q50843083'', ''Q918333''], ''url'': ''http://dbpedia.org/resource/Sass_(stylesheet_language)'', ''score'': 82.29729}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(362,'Scala',9,'{''name'': ''Scala (programming language)'', ''qid'': ''Q460584'', ''types'': [''Q12772052'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q56062429''], ''url'': ''http://dbpedia.org/resource/Scala_(programming_language)'', ''score'': 83.398834}','N','N','Y','N/A'); -INSERT INTO entities VALUES(363,'Smalltalk',9,'{''name'': ''Smalltalk'', ''qid'': ''Q235086'', ''types'': [''Q9143'', ''Q28922858'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/Smalltalk'', ''score'': 82.966805}','Y','N','N','N/A'); -INSERT INTO entities VALUES(364,'Swift',9,'{''name'': ''Swift (programming language)'', ''qid'': ''Q17118377'', ''types'': [''Q12772052'', ''Q28923023'', ''Q3839507'', ''Q899523'', ''Q341'', ''Q9143'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Swift_(programming_language)'', ''score'': 81.567856}','N','N','Y','N/A'); -INSERT INTO entities VALUES(365,'TCL',9,'{''name'': ''Tcl'', ''qid'': ''Q5288'', ''types'': [''Q12772052'', ''Q28922885'', ''Q899523'', ''Q187432'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Tcl'', ''score'': 84.43082}','N','N','Y','N/A'); -INSERT INTO entities VALUES(366,'Transact-SQL',9,'{''name'': ''Transact-SQL'', ''qid'': ''Q1411245'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Transact-SQL'', ''score'': 81.82436}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(367,'TypeScript',9,'{''name'': ''Microsoft TypeScript'', ''qid'': ''Q978185'', ''types'': [''Q9143'', ''Q341''], ''url'': ''http://dbpedia.org/resource/TypeScript'', ''score'': 77.3271}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(368,'VB.NET',9,'{''name'': ''Visual Basic .NET'', ''qid'': ''Q50077'', ''types'': [''Q2378'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_Basic_.NET'', ''score'': 82.558685}','N','N','Y','N/A'); -INSERT INTO entities VALUES(369,'VBScript',9,'{''name'': ''VBScript'', ''qid'': ''Q13743'', ''types'': [''Q187432'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/VBScript'', ''score'': 82.49495}','Y','N','N','N/A'); -INSERT INTO entities VALUES(370,'Visual Basic',9,'{''name'': ''Visual Basic'', ''qid'': ''Q2378'', ''types'': [''Q28922885'', ''Q899523'', ''Q9143'', ''Q42979'', ''Q28920813''], ''url'': ''http://dbpedia.org/resource/Visual_Basic'', ''score'': 85.438095}','Y','N','N','N/A'); -INSERT INTO entities VALUES(371,'Visual Basic for Applications (VBA)',9,'{''name'': ''Visual Basic for Applications'', ''qid'': ''Q667566'', ''types'': [''Q2378'', ''Q9143'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_Basic_for_Applications'', ''score'': 87.19266}','Y','N','N','N/A'); -INSERT INTO entities VALUES(372,'Visual FoxPro',9,'{''name'': ''Visual FoxPro'', ''qid'': ''Q753868'', ''types'': [''Q9143'', ''Q28922885'', ''Q899523'', ''Q13741''], ''url'': ''http://dbpedia.org/resource/Visual_FoxPro'', ''score'': 87.15552}','Y','N','N','N/A'); -INSERT INTO entities VALUES(373,'VoiceXML',9,'{''name'': ''VoiceXML'', ''qid'': ''Q776038'', ''types'': [''Q20155966''], ''url'': ''http://dbpedia.org/resource/VoiceXML'', ''score'': 83.54428}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(374,'Xbase++',9,'{''name'': ''XBase++'', ''qid'': ''Q1753410'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/XBase++'', ''score'': 86.91183}','Y','N','N','N/A'); -INSERT INTO entities VALUES(375,'Apache Lucene',12,'{''name'': ''Apache Lucene'', ''qid'': ''Q773196'', ''types'': [''Q188860'', ''Q19541'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Lucene'', ''score'': 84.79617}','Y','N','N','N'); -INSERT INTO entities VALUES(376,'Apache Xerces',12,'{''name'': ''Apache Xerces'', ''qid'': ''Q629740'', ''types'': [''Q188860'', ''Q1130645''], ''url'': ''http://dbpedia.org/resource/Xerces'', ''score'': 86.096436}','Y','N','N','N'); -INSERT INTO entities VALUES(377,'Cascading Style Sheets (CSS)|Bootstrap',12,'{''name'': ''Bootstrapping'', ''qid'': ''Q1195936'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Bootstrapping'', ''score'': 77.15558}','Y','N','N','N'); -INSERT INTO entities VALUES(378,'Java|Apache Camel',12,'{''name'': ''Apache Camel'', ''qid'': ''Q616626'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_Camel'', ''score'': 83.96323}','N','N','Y','Y'); -INSERT INTO entities VALUES(379,'Java|Apache Commons BeanUtils',12,'{''name'': '''', ''qid'': ''Q28916245'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q28916245'', ''score'': 1}','Y','N','N','Y'); -INSERT INTO entities VALUES(380,'Java|Apache PDFBox',12,'{''name'': ''Apache PDFBox'', ''qid'': ''Q17512395'', ''types'': [''Q21127166'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_PDFBox'', ''score'': 85.64881}','Y','N','N','Y'); -INSERT INTO entities VALUES(381,'Java|Apache Velocity',12,'{''name'': ''Apache Velocity'', ''qid'': ''Q617156'', ''types'': [''Q351507'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Apache_Velocity'', ''score'': 84.354546}','Y','N','N','N'); -INSERT INTO entities VALUES(382,'Java|EclipseLink',12,'{''name'': ''EclipseLink'', ''qid'': ''Q897058'', ''types'': [''Q506883''], ''url'': ''http://dbpedia.org/resource/EclipseLink'', ''score'': 82.75745}','Y','N','N','N'); -INSERT INTO entities VALUES(383,'Java|Enterprise JavaBeans (EJB)',12,'{''name'': ''Enterprise JavaBeans'', ''qid'': ''Q742961'', ''types'': [''Q20819677'', ''Q609588''], ''url'': ''http://dbpedia.org/resource/Enterprise_JavaBeans'', ''score'': 83.87164}','Y','N','N','N'); +INSERT INTO entities VALUES(360,'SAS',9,'{''qid'': ''Q2003932'', ''types'': [''Q9143'', ''Q13199995'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/SAS_(software)''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(361,'Sass',9,'{''qid'': ''Q1572865'', ''types'': [''Q9143'', ''Q1029123'', ''Q50843083'', ''Q918333''], ''url'': ''http://dbpedia.org/resource/Sass_(stylesheet_language)''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(362,'Scala',9,'{''qid'': ''Q460584'', ''types'': [''Q12772052'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q56062429''], ''url'': ''http://dbpedia.org/resource/Scala_(programming_language)''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(363,'Smalltalk',9,'{''qid'': ''Q235086'', ''types'': [''Q9143'', ''Q28922858'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/Smalltalk''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(364,'Swift',9,'{''qid'': ''Q17118377'', ''types'': [''Q12772052'', ''Q28923023'', ''Q3839507'', ''Q899523'', ''Q341'', ''Q9143'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Swift_(programming_language)''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(365,'TCL',9,'{''qid'': ''Q5288'', ''types'': [''Q12772052'', ''Q28922885'', ''Q899523'', ''Q187432'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Tcl''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(366,'Transact-SQL',9,'{''qid'': ''Q1411245'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Transact-SQL''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(367,'TypeScript',9,'{''qid'': ''Q978185'', ''types'': [''Q9143'', ''Q341''], ''url'': ''http://dbpedia.org/resource/TypeScript''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(368,'VB.NET',9,'{''qid'': ''Q50077'', ''types'': [''Q2378'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_Basic_.NET''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(369,'VBScript',9,'{''qid'': ''Q13743'', ''types'': [''Q187432'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/VBScript''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(370,'Visual Basic',9,'{''qid'': ''Q2378'', ''types'': [''Q28922885'', ''Q899523'', ''Q9143'', ''Q42979'', ''Q28920813''], ''url'': ''http://dbpedia.org/resource/Visual_Basic''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(371,'Visual Basic for Applications (VBA)',9,'{''qid'': ''Q667566'', ''types'': [''Q2378'', ''Q9143'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_Basic_for_Applications''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(372,'Visual FoxPro',9,'{''qid'': ''Q753868'', ''types'': [''Q9143'', ''Q28922885'', ''Q899523'', ''Q13741''], ''url'': ''http://dbpedia.org/resource/Visual_FoxPro''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(373,'VoiceXML',9,'{''qid'': ''Q776038'', ''types'': [''Q20155966''], ''url'': ''http://dbpedia.org/resource/VoiceXML''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(374,'Xbase++',9,'{''qid'': ''Q1753410'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/XBase++''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(375,'Apache Lucene',12,'{''qid'': ''Q773196'', ''types'': [''Q188860'', ''Q19541'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Lucene''}','Y','N','N','N'); +INSERT INTO entities VALUES(376,'Apache Xerces',12,'{''qid'': ''Q629740'', ''types'': [''Q188860'', ''Q1130645''], ''url'': ''http://dbpedia.org/resource/Xerces''}','Y','N','N','N'); +INSERT INTO entities VALUES(377,'Cascading Style Sheets (CSS)|Bootstrap',12,'{''qid'': ''Q1195936'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Bootstrapping''}','Y','N','N','N'); +INSERT INTO entities VALUES(378,'Java|Apache Camel',12,'{''qid'': ''Q616626'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_Camel''}','N','N','Y','Y'); +INSERT INTO entities VALUES(379,'Java|Apache Commons BeanUtils',12,'{''qid'': ''Q28916245'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q28916245''}','Y','N','N','Y'); +INSERT INTO entities VALUES(380,'Java|Apache PDFBox',12,'{''qid'': ''Q17512395'', ''types'': [''Q21127166'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_PDFBox''}','Y','N','N','Y'); +INSERT INTO entities VALUES(381,'Java|Apache Velocity',12,'{''qid'': ''Q617156'', ''types'': [''Q351507'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Apache_Velocity''}','Y','N','N','N'); +INSERT INTO entities VALUES(382,'Java|EclipseLink',12,'{''qid'': ''Q897058'', ''types'': [''Q506883''], ''url'': ''http://dbpedia.org/resource/EclipseLink''}','Y','N','N','N'); +INSERT INTO entities VALUES(383,'Java|Enterprise JavaBeans (EJB)',12,'{''qid'': ''Q742961'', ''types'': [''Q20819677'', ''Q609588''], ''url'': ''http://dbpedia.org/resource/Enterprise_JavaBeans''}','Y','N','N','N'); INSERT INTO entities VALUES(384,'Java|EZMorph',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(385,'Java|Google Web Toolkit (GWT)',12,'{''name'': ''Google Web Toolkit'', ''qid'': ''Q79578'', ''types'': [''Q2533324'', ''Q1193246'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Google_Web_Toolkit'', ''score'': 83.53073}','Y','N','N','Y'); -INSERT INTO entities VALUES(386,'Java|Hibernate',12,'{''name'': ''Hibernate (framework)'', ''qid'': ''Q747866'', ''types'': [''Q1172354'', ''Q7170392'', ''Q58748'', ''Q5227234'', ''Q341'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Hibernate_(framework)'', ''score'': 80.88881}','Y','N','N','Y'); +INSERT INTO entities VALUES(385,'Java|Google Web Toolkit (GWT)',12,'{''qid'': ''Q79578'', ''types'': [''Q2533324'', ''Q1193246'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Google_Web_Toolkit''}','Y','N','N','Y'); +INSERT INTO entities VALUES(386,'Java|Hibernate',12,'{''qid'': ''Q747866'', ''types'': [''Q1172354'', ''Q7170392'', ''Q58748'', ''Q5227234'', ''Q341'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Hibernate_(framework)''}','Y','N','N','Y'); INSERT INTO entities VALUES(387,'Java|IBM SDK',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(388,'Java|Java Development Kit (JDK)',12,'{''name'': ''Java Development Kit'', ''qid'': ''Q741303'', ''types'': [''Q467707''], ''url'': ''http://dbpedia.org/resource/Java_Development_Kit'', ''score'': 85.850845}','Y','N','N','N'); -INSERT INTO entities VALUES(389,'Java|Java Message Service (JMS)',12,'{''name'': ''Java Message Service'', ''qid'': ''Q755515'', ''types'': [''Q20819677'', ''Q1092177''], ''url'': ''http://dbpedia.org/resource/Java_Message_Service'', ''score'': 86.23158}','Y','N','N','N'); -INSERT INTO entities VALUES(390,'Java|Java Web Start',12,'{''name'': ''Java Web Start'', ''qid'': ''Q33079'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Java_Web_Start'', ''score'': 83.40202}','Y','N','N','N'); -INSERT INTO entities VALUES(391,'Java|JavaServer Faces (JSF)',12,'{''name'': ''JavaServer Faces'', ''qid'': ''Q729427'', ''types'': [''Q1330336'', ''Q20819677''], ''url'': ''http://dbpedia.org/resource/JavaServer_Faces'', ''score'': 86.40026}','Y','N','N','N'); -INSERT INTO entities VALUES(392,'Java|JDBC',12,'{''name'': ''Java Database Connectivity'', ''qid'': ''Q722772'', ''types'': [''Q1172354'', ''Q165194'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/Java_Database_Connectivity'', ''score'': 79.15021}','Y','N','N','N'); -INSERT INTO entities VALUES(393,'Java|JRuby Core',12,'{''name'': ''JRuby'', ''qid'': ''Q605718'', ''types'': [], ''url'': ''http://dbpedia.org/resource/JRuby'', ''score'': 76.30373}','Y','N','N','Y'); -INSERT INTO entities VALUES(394,'Java|Log4j',12,'{''name'': ''Log4j'', ''qid'': ''Q286923'', ''types'': [''Q22003134''], ''url'': ''http://dbpedia.org/resource/Log4j'', ''score'': 80.95651}','Y','N','N','Y'); -INSERT INTO entities VALUES(395,'Java|Quartz',12,'{''name'': ''Quartz (scheduler)'', ''qid'': ''Q2122405'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Quartz_(scheduler)'', ''score'': 78.53386}','Y','N','N','Y'); -INSERT INTO entities VALUES(396,'Java|Remote Method Invocation (RMI)',12,'{''name'': ''Java remote method invocation'', ''qid'': ''Q61902'', ''types'': [''Q1799072''], ''url'': ''http://dbpedia.org/resource/Java_remote_method_invocation'', ''score'': 86.28111}','Y','N','N','N'); -INSERT INTO entities VALUES(397,'Java|Servlet',12,'{''name'': ''Free software'', ''qid'': ''Q341'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Free_software'', ''score'': 71.97795}','Y','N','N','Y'); -INSERT INTO entities VALUES(398,'Java|Spring',12,'{''name'': '''', ''qid'': ''Q720314'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q720314'', ''score'': 1}','N','N','Y','Y'); -INSERT INTO entities VALUES(399,'Java|Spring|Spring Boot',12,'{''name'': '''', ''qid'': ''Q98731994'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q98731994'', ''score'': 1}','N','N','Y','Y'); +INSERT INTO entities VALUES(388,'Java|Java Development Kit (JDK)',12,'{''qid'': ''Q741303'', ''types'': [''Q467707''], ''url'': ''http://dbpedia.org/resource/Java_Development_Kit''}','Y','N','N','N'); +INSERT INTO entities VALUES(389,'Java|Java Message Service (JMS)',12,'{''qid'': ''Q755515'', ''types'': [''Q20819677'', ''Q1092177''], ''url'': ''http://dbpedia.org/resource/Java_Message_Service''}','Y','N','N','N'); +INSERT INTO entities VALUES(390,'Java|Java Web Start',12,'{''qid'': ''Q33079'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Java_Web_Start''}','Y','N','N','N'); +INSERT INTO entities VALUES(391,'Java|JavaServer Faces (JSF)',12,'{''qid'': ''Q729427'', ''types'': [''Q1330336'', ''Q20819677''], ''url'': ''http://dbpedia.org/resource/JavaServer_Faces''}','Y','N','N','N'); +INSERT INTO entities VALUES(392,'Java|JDBC',12,'{''qid'': ''Q722772'', ''types'': [''Q1172354'', ''Q165194'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/Java_Database_Connectivity''}','Y','N','N','N'); +INSERT INTO entities VALUES(393,'Java|JRuby Core',12,'{''qid'': ''Q605718'', ''types'': [], ''url'': ''http://dbpedia.org/resource/JRuby''}','Y','N','N','Y'); +INSERT INTO entities VALUES(394,'Java|Log4j',12,'{''qid'': ''Q286923'', ''types'': [''Q22003134''], ''url'': ''http://dbpedia.org/resource/Log4j''}','Y','N','N','Y'); +INSERT INTO entities VALUES(395,'Java|Quartz',12,'{''qid'': ''Q2122405'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Quartz_(scheduler)''}','Y','N','N','Y'); +INSERT INTO entities VALUES(396,'Java|Remote Method Invocation (RMI)',12,'{''qid'': ''Q61902'', ''types'': [''Q1799072''], ''url'': ''http://dbpedia.org/resource/Java_remote_method_invocation''}','Y','N','N','N'); +INSERT INTO entities VALUES(397,'Java|Servlet',12,'{''qid'': ''Q341'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Free_software''}','Y','N','N','Y'); +INSERT INTO entities VALUES(398,'Java|Spring',12,'{''qid'': ''Q720314'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q720314''}','N','N','Y','Y'); +INSERT INTO entities VALUES(399,'Java|Spring|Spring Boot',12,'{''qid'': ''Q98731994'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q98731994''}','N','N','Y','Y'); INSERT INTO entities VALUES(400,'Java|Spring|Spring Cloud Data Flow',12,'{}','Y','N','N','N'); INSERT INTO entities VALUES(401,'Java|Spring|Spring MVC',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(402,'Java|Struts',12,'{''name'': ''Apache Struts 1'', ''qid'': ''Q900957'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Apache_Struts_1'', ''score'': 80.96841}','Y','N','N','N'); -INSERT INTO entities VALUES(403,'Java|Swing',12,'{''name'': ''Swing (Java)'', ''qid'': ''Q859221'', ''types'': [''Q21127166''], ''url'': ''http://dbpedia.org/resource/Swing_(Java)'', ''score'': 82.30127}','N','N','Y','N'); -INSERT INTO entities VALUES(404,'Java|Vaadin',12,'{''name'': ''Vaadin'', ''qid'': ''Q1400683'', ''types'': [''Q1330336'', ''Q386275'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Vaadin'', ''score'': 81.29747}','Y','N','N','N'); -INSERT INTO entities VALUES(405,'JavaScript|AJAX',12,'{''name'': ''Ajax (programming)'', ''qid'': ''Q134471'', ''types'': [''Q9143'', ''Q918270'', ''Q101244''], ''url'': ''http://dbpedia.org/resource/Ajax_(programming)'', ''score'': 80.67144}','Y','N','N','N'); -INSERT INTO entities VALUES(406,'JavaScript|AngularJS',12,'{''name'': ''AngularJS'', ''qid'': ''Q2849803'', ''types'': [''Q188860'', ''Q783866'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/AngularJS'', ''score'': 80.93741}','Y','N','N','N'); +INSERT INTO entities VALUES(402,'Java|Struts',12,'{''qid'': ''Q900957'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Apache_Struts_1''}','Y','N','N','N'); +INSERT INTO entities VALUES(403,'Java|Swing',12,'{''qid'': ''Q859221'', ''types'': [''Q21127166''], ''url'': ''http://dbpedia.org/resource/Swing_(Java)''}','N','N','Y','N'); +INSERT INTO entities VALUES(404,'Java|Vaadin',12,'{''qid'': ''Q1400683'', ''types'': [''Q1330336'', ''Q386275'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Vaadin''}','Y','N','N','N'); +INSERT INTO entities VALUES(405,'JavaScript|AJAX',12,'{''qid'': ''Q134471'', ''types'': [''Q9143'', ''Q918270'', ''Q101244''], ''url'': ''http://dbpedia.org/resource/Ajax_(programming)''}','Y','N','N','N'); +INSERT INTO entities VALUES(406,'JavaScript|AngularJS',12,'{''qid'': ''Q2849803'', ''types'': [''Q188860'', ''Q783866'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/AngularJS''}','Y','N','N','N'); INSERT INTO entities VALUES(407,'JavaScript|Draw2D',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(408,'JavaScript|Express.js',12,'{''name'': ''Express.js'', ''qid'': ''Q16878131'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Express.js'', ''score'': 79.77725}','Y','N','N','N'); -INSERT INTO entities VALUES(409,'JavaScript|Ext JS',12,'{''name'': ''Ext JS'', ''qid'': ''Q515393'', ''types'': [''Q1193246'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/Ext_JS'', ''score'': 80.8339}','N','N','Y','N'); +INSERT INTO entities VALUES(408,'JavaScript|Express.js',12,'{''qid'': ''Q16878131'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Express.js''}','Y','N','N','N'); +INSERT INTO entities VALUES(409,'JavaScript|Ext JS',12,'{''qid'': ''Q515393'', ''types'': [''Q1193246'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/Ext_JS''}','N','N','Y','N'); INSERT INTO entities VALUES(410,'JavaScript|jqGrid',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(411,'JavaScript|JQuery',12,'{''name'': ''JQuery'', ''qid'': ''Q230036'', ''types'': [''Q170584'', ''Q188860'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/JQuery'', ''score'': 81.962555}','Y','N','N','N'); -INSERT INTO entities VALUES(412,'JavaScript|Jquery|jQuery UI',12,'{''name'': ''JQuery UI'', ''qid'': ''Q285960'', ''types'': [], ''url'': ''http://dbpedia.org/resource/JQuery_UI'', ''score'': 85.694756}','N','N','Y','N'); -INSERT INTO entities VALUES(413,'JavaScript|React',12,'{''name'': ''React (JavaScript library)'', ''qid'': ''Q19399674'', ''types'': [''Q1330336'', ''Q783866'', ''Q341''], ''url'': ''http://dbpedia.org/resource/React_(JavaScript_library)'', ''score'': 79.86882}','Y','N','N','Y'); -INSERT INTO entities VALUES(414,'JavaScript|script.aculo.us',12,'{''name'': ''Script.aculo.us'', ''qid'': ''Q309509'', ''types'': [''Q188860'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/Script.aculo.us'', ''score'': 77.9003}','Y','N','N','N'); +INSERT INTO entities VALUES(411,'JavaScript|JQuery',12,'{''qid'': ''Q230036'', ''types'': [''Q170584'', ''Q188860'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/JQuery''}','Y','N','N','N'); +INSERT INTO entities VALUES(412,'JavaScript|Jquery|jQuery UI',12,'{''qid'': ''Q285960'', ''types'': [], ''url'': ''http://dbpedia.org/resource/JQuery_UI''}','N','N','Y','N'); +INSERT INTO entities VALUES(413,'JavaScript|React',12,'{''qid'': ''Q19399674'', ''types'': [''Q1330336'', ''Q783866'', ''Q341''], ''url'': ''http://dbpedia.org/resource/React_(JavaScript_library)''}','Y','N','N','Y'); +INSERT INTO entities VALUES(414,'JavaScript|script.aculo.us',12,'{''qid'': ''Q309509'', ''types'': [''Q188860'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/Script.aculo.us''}','Y','N','N','N'); INSERT INTO entities VALUES(415,'JavaScript|Valums AJAX File Uploader',12,'{}','Y','N','N','N'); INSERT INTO entities VALUES(416,'OWASP Enterprise Security API (ESAPI)',12,'{}','Y','N','N','N'); INSERT INTO entities VALUES(417,'Perl|Oraperl',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(418,'Android',6,'{''name'': ''Android (operating system)'', ''qid'': ''Q94'', ''types'': [''Q920890''], ''url'': ''http://dbpedia.org/resource/Android_(operating_system)'', ''score'': 83.87839}','N','N','Y','N'); -INSERT INTO entities VALUES(419,'BeOS',6,'{''name'': ''BeOS'', ''qid'': ''Q62563'', ''types'': [''Q218616'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/BeOS'', ''score'': 85.48076}','N','N','Y','N'); -INSERT INTO entities VALUES(420,'Cisco IOS',6,'{''name'': ''Cisco IOS'', ''qid'': ''Q753576'', ''types'': [''Q282080''], ''url'': ''http://dbpedia.org/resource/Cisco_IOS'', ''score'': 86.4875}','Y','N','N','N'); -INSERT INTO entities VALUES(421,'DART',6,'{''name'': ''Dart (programming language)'', ''qid'': ''Q406009'', ''types'': [''Q1330336'', ''Q12772052'', ''Q899523'', ''Q3839507'', ''Q187432'', ''Q28922893'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Dart_(programming_language)'', ''score'': 80.289444}','N','N','Y','N'); -INSERT INTO entities VALUES(422,'Fabric OS',6,'{''name'': ''Fabric OS'', ''qid'': ''Q5428124'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Fabric_OS'', ''score'': 84.62489}','N','N','Y','N'); -INSERT INTO entities VALUES(423,'GNU',6,'{''name'': ''GNU'', ''qid'': ''Q44571'', ''types'': [''Q9135'', ''Q11368''], ''url'': ''http://dbpedia.org/resource/GNU'', ''score'': 83.24394}','N','N','Y','N'); -INSERT INTO entities VALUES(424,'IBM i',6,'{''name'': ''IBM i'', ''qid'': ''Q15637561'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/IBM_i'', ''score'': 85.36659}','N','N','Y','N'); -INSERT INTO entities VALUES(425,'iOS',6,'{''name'': ''IOS'', ''qid'': ''Q48493'', ''types'': [''Q920890'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/IOS'', ''score'': 90.449646}','Y','N','N','N'); -INSERT INTO entities VALUES(426,'Linux',6,'{''name'': ''Linux'', ''qid'': ''Q388'', ''types'': [''Q14656'', ''Q16889133'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Linux'', ''score'': 84.55426}','N','N','Y','Y'); -INSERT INTO entities VALUES(427,'Linux|CentOS',6,'{''name'': ''CentOS'', ''qid'': ''Q207542'', ''types'': [''Q131669'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/CentOS'', ''score'': 82.1611}','Y','N','N','Y'); -INSERT INTO entities VALUES(428,'Linux|Check Point',6,'{''name'': '''', ''qid'': ''Q751519'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q751519'', ''score'': 1}','Y','N','N','N'); -INSERT INTO entities VALUES(429,'Linux|Debian',6,'{''name'': ''Debian'', ''qid'': ''Q7715973'', ''types'': [''Q20983788'', ''Q3251801''], ''url'': ''http://dbpedia.org/resource/Debian'', ''score'': 82.96945}','N','N','Y','Y'); -INSERT INTO entities VALUES(430,'Linux|Junos OS',6,'{''name'': ''Junos OS'', ''qid'': ''Q4041744'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Junos_OS'', ''score'': 85.8636}','Y','N','N','N'); -INSERT INTO entities VALUES(431,'Linux|openSUSE',6,'{''name'': ''OpenSUSE'', ''qid'': ''Q16691'', ''types'': [''Q131669'', ''Q388'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/OpenSUSE'', ''score'': 80.27557}','Y','N','N','Y'); -INSERT INTO entities VALUES(432,'Linux|Oracle Linux',6,'{''name'': ''Oracle Linux'', ''qid'': ''Q46094'', ''types'': [''Q131669'', ''Q977076''], ''url'': ''http://dbpedia.org/resource/Oracle_Linux'', ''score'': 80.87002}','N','N','Y','Y'); -INSERT INTO entities VALUES(433,'Linux|Photon OS',6,'{''name'': ''Photon OS'', ''qid'': ''Q105703682'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105703682'', ''score'': 1}','N','N','Y','Y'); -INSERT INTO entities VALUES(434,'Linux|Red Hat Enterprise Linux',6,'{''name'': ''Red Hat Enterprise Linux'', ''qid'': ''Q215273'', ''types'': [''Q9135'', ''Q131669''], ''url'': ''http://dbpedia.org/resource/Red_Hat_Enterprise_Linux'', ''score'': 79.21842}','N','N','Y','Y'); -INSERT INTO entities VALUES(435,'Linux|SUSE Linux Enterprise Server',6,'{''name'': ''SUSE Linux Enterprise'', ''qid'': ''Q1759786'', ''types'': [''Q131669''], ''url'': ''http://dbpedia.org/resource/SUSE_Linux_Enterprise_Server'', ''score'': 77.77102}','N','N','Y','Y'); -INSERT INTO entities VALUES(436,'Linux|Ubuntu',6,'{''name'': ''Ubuntu'', ''qid'': ''Q381'', ''types'': [''Q131669'', ''Q5276054'', ''Q20983788'', ''Q3251801''], ''url'': ''http://dbpedia.org/resource/Ubuntu_(operating_system)'', ''score'': 82.29184}','Y','N','N','Y'); -INSERT INTO entities VALUES(437,'Linux|zLinux',6,'{''name'': ''Linux on z Systems'', ''qid'': ''Q136277'', ''types'': [''Q388''], ''url'': ''http://dbpedia.org/resource/Linux_on_z_Systems'', ''score'': 79.859215}','N','N','Y','N'); -INSERT INTO entities VALUES(438,'macOS',6,'{''name'': ''MacOS'', ''qid'': ''Q14116'', ''types'': [''Q43627'', ''Q218616'', ''Q811701'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/MacOS'', ''score'': 88.54785}','N','N','Y','N'); -INSERT INTO entities VALUES(439,'MVS',6,'{''name'': ''MVS'', ''qid'': ''Q781443'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/MVS'', ''score'': 84.595184}','Y','N','N','N'); -INSERT INTO entities VALUES(440,'MVS|OS/390',6,'{''name'': ''OS/390'', ''qid'': ''Q1726891'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/OS/390'', ''score'': 80.93678}','Y','N','N','N'); -INSERT INTO entities VALUES(441,'MVS|z/OS',6,'{''name'': ''Z/OS'', ''qid'': ''Q283705'', ''types'': [''Q14656''], ''url'': ''http://dbpedia.org/resource/Z/OS'', ''score'': 80.21161}','Y','N','N','N'); -INSERT INTO entities VALUES(442,'OpenVMS',6,'{''name'': ''OpenVMS'', ''qid'': ''Q479882'', ''types'': [''Q9135'', ''Q218616'', ''Q3496042''], ''url'': ''http://dbpedia.org/resource/OpenVMS'', ''score'': 83.93039}','Y','N','N','N'); -INSERT INTO entities VALUES(443,'OS/2',6,'{''name'': ''OS/2'', ''qid'': ''Q189794'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/OS/2'', ''score'': 84.35482}','Y','N','N','N'); -INSERT INTO entities VALUES(444,'Unix',6,'{''name'': ''Unix'', ''qid'': ''Q11368'', ''types'': [''Q170584'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/Unix'', ''score'': 84.05627}','N','N','Y','N'); -INSERT INTO entities VALUES(445,'Unix|AIX',6,'{''name'': ''IBM AIX'', ''qid'': ''Q269856'', ''types'': [''Q218616'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/IBM_AIX'', ''score'': 84.20795}','Y','N','N','N'); -INSERT INTO entities VALUES(446,'Unix|BSD',6,'{''name'': ''Berkeley Software Distribution'', ''qid'': ''Q34264'', ''types'': [''Q11368''], ''url'': ''http://dbpedia.org/resource/Berkeley_Software_Distribution'', ''score'': 79.586716}','Y','N','N','N'); -INSERT INTO entities VALUES(447,'Unix|BSD|FreeBSD',6,'{''name'': ''FreeBSD'', ''qid'': ''Q34236'', ''types'': [], ''url'': ''http://dbpedia.org/resource/FreeBSD'', ''score'': 88.0664}','Y','N','N','N'); -INSERT INTO entities VALUES(448,'Unix|BSD|SunOS',6,'{''name'': ''SunOS'', ''qid'': ''Q1208460'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/SunOS'', ''score'': 79.619675}','Y','N','N','N'); -INSERT INTO entities VALUES(449,'Unix|HP-UX',6,'{''name'': ''HP-UX'', ''qid'': ''Q847593'', ''types'': [''Q14656''], ''url'': ''http://dbpedia.org/resource/HP-UX'', ''score'': 83.26311}','Y','N','N','N'); -INSERT INTO entities VALUES(450,'Windows',6,'{''name'': ''Microsoft Windows'', ''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows'', ''score'': 81.05139}','N','N','Y','N'); -INSERT INTO entities VALUES(451,'Windows|Windows Desktop',6,'{''name'': ''Microsoft Windows'', ''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows'', ''score'': 82.07892}','Y','N','N','N'); -INSERT INTO entities VALUES(452,'Windows|Windows Server',6,'{''name'': ''Windows Server'', ''qid'': ''Q11219'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Windows_Server'', ''score'': 83.71737}','Y','N','N','N'); -INSERT INTO entities VALUES(453,'Linux|Fedora',6,'{''name'': ''Fedora (operating system)'', ''qid'': ''Q48267'', ''types'': [''Q131669'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/Fedora_(operating_system)'', ''score'': 82.95011}','Y','N','N','Y'); -INSERT INTO entities VALUES(454,'Linux|Amazon Linux',6,'{''name'': '''', ''qid'': ''Q68223191'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q68223191'', ''score'': 1}','Y','N','N','N'); +INSERT INTO entities VALUES(418,'Android',6,'{''qid'': ''Q94'', ''types'': [''Q920890''], ''url'': ''http://dbpedia.org/resource/Android_(operating_system)''}','N','N','Y','N'); +INSERT INTO entities VALUES(419,'BeOS',6,'{''qid'': ''Q62563'', ''types'': [''Q218616'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/BeOS''}','N','N','Y','N'); +INSERT INTO entities VALUES(420,'Cisco IOS',6,'{''qid'': ''Q753576'', ''types'': [''Q282080''], ''url'': ''http://dbpedia.org/resource/Cisco_IOS''}','Y','N','N','N'); +INSERT INTO entities VALUES(421,'DART',6,'{''qid'': ''Q406009'', ''types'': [''Q1330336'', ''Q12772052'', ''Q899523'', ''Q3839507'', ''Q187432'', ''Q28922893'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Dart_(programming_language)''}','N','N','Y','N'); +INSERT INTO entities VALUES(422,'Fabric OS',6,'{''qid'': ''Q5428124'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Fabric_OS''}','N','N','Y','N'); +INSERT INTO entities VALUES(423,'GNU',6,'{''qid'': ''Q44571'', ''types'': [''Q9135'', ''Q11368''], ''url'': ''http://dbpedia.org/resource/GNU''}','N','N','Y','N'); +INSERT INTO entities VALUES(424,'IBM i',6,'{''qid'': ''Q15637561'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/IBM_i''}','N','N','Y','N'); +INSERT INTO entities VALUES(425,'iOS',6,'{''qid'': ''Q48493'', ''types'': [''Q920890'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/IOS''}','Y','N','N','N'); +INSERT INTO entities VALUES(426,'Linux',6,'{''qid'': ''Q388'', ''types'': [''Q14656'', ''Q16889133'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Linux''}','N','N','Y','Y'); +INSERT INTO entities VALUES(427,'Linux|CentOS',6,'{''qid'': ''Q207542'', ''types'': [''Q131669'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/CentOS''}','Y','N','N','Y'); +INSERT INTO entities VALUES(428,'Linux|Check Point',6,'{''qid'': ''Q751519'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q751519''}','Y','N','N','N'); +INSERT INTO entities VALUES(429,'Linux|Debian',6,'{''qid'': ''Q7715973'', ''types'': [''Q20983788'', ''Q3251801''], ''url'': ''http://dbpedia.org/resource/Debian''}','N','N','Y','Y'); +INSERT INTO entities VALUES(430,'Linux|Junos OS',6,'{''qid'': ''Q4041744'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Junos_OS''}','Y','N','N','N'); +INSERT INTO entities VALUES(431,'Linux|openSUSE',6,'{''qid'': ''Q16691'', ''types'': [''Q131669'', ''Q388'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/OpenSUSE''}','Y','N','N','Y'); +INSERT INTO entities VALUES(432,'Linux|Oracle Linux',6,'{''qid'': ''Q46094'', ''types'': [''Q131669'', ''Q977076''], ''url'': ''http://dbpedia.org/resource/Oracle_Linux''}','N','N','Y','Y'); +INSERT INTO entities VALUES(433,'Linux|Photon OS',6,'{''qid'': ''Q105703682'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105703682''}','N','N','Y','Y'); +INSERT INTO entities VALUES(434,'Linux|Red Hat Enterprise Linux',6,'{''qid'': ''Q215273'', ''types'': [''Q9135'', ''Q131669''], ''url'': ''http://dbpedia.org/resource/Red_Hat_Enterprise_Linux''}','N','N','Y','Y'); +INSERT INTO entities VALUES(435,'Linux|SUSE Linux Enterprise Server',6,'{''qid'': ''Q1759786'', ''types'': [''Q131669''], ''url'': ''http://dbpedia.org/resource/SUSE_Linux_Enterprise_Server''}','N','N','Y','Y'); +INSERT INTO entities VALUES(436,'Linux|Ubuntu',6,'{''qid'': ''Q381'', ''types'': [''Q131669'', ''Q5276054'', ''Q20983788'', ''Q3251801''], ''url'': ''http://dbpedia.org/resource/Ubuntu_(operating_system)''}','Y','N','N','Y'); +INSERT INTO entities VALUES(437,'Linux|zLinux',6,'{''qid'': ''Q136277'', ''types'': [''Q388''], ''url'': ''http://dbpedia.org/resource/Linux_on_z_Systems''}','N','N','Y','N'); +INSERT INTO entities VALUES(438,'macOS',6,'{''qid'': ''Q14116'', ''types'': [''Q43627'', ''Q218616'', ''Q811701'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/MacOS''}','N','N','Y','N'); +INSERT INTO entities VALUES(439,'MVS',6,'{''qid'': ''Q781443'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/MVS''}','Y','N','N','N'); +INSERT INTO entities VALUES(440,'MVS|OS/390',6,'{''qid'': ''Q1726891'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/OS/390''}','Y','N','N','N'); +INSERT INTO entities VALUES(441,'MVS|z/OS',6,'{''qid'': ''Q283705'', ''types'': [''Q14656''], ''url'': ''http://dbpedia.org/resource/Z/OS''}','Y','N','N','N'); +INSERT INTO entities VALUES(442,'OpenVMS',6,'{''qid'': ''Q479882'', ''types'': [''Q9135'', ''Q218616'', ''Q3496042''], ''url'': ''http://dbpedia.org/resource/OpenVMS''}','Y','N','N','N'); +INSERT INTO entities VALUES(443,'OS/2',6,'{''qid'': ''Q189794'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/OS/2''}','Y','N','N','N'); +INSERT INTO entities VALUES(444,'Unix',6,'{''qid'': ''Q11368'', ''types'': [''Q170584'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/Unix''}','Y','N','N','N'); +INSERT INTO entities VALUES(445,'Unix|AIX',6,'{''qid'': ''Q269856'', ''types'': [''Q218616'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/IBM_AIX''}','Y','N','N','N'); +INSERT INTO entities VALUES(446,'Unix|BSD',6,'{''qid'': ''Q34264'', ''types'': [''Q11368''], ''url'': ''http://dbpedia.org/resource/Berkeley_Software_Distribution''}','Y','N','N','N'); +INSERT INTO entities VALUES(447,'Unix|BSD|FreeBSD',6,'{''qid'': ''Q34236'', ''types'': [], ''url'': ''http://dbpedia.org/resource/FreeBSD''}','Y','N','N','N'); +INSERT INTO entities VALUES(448,'Unix|BSD|SunOS',6,'{''qid'': ''Q1208460'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/SunOS''}','Y','N','N','N'); +INSERT INTO entities VALUES(449,'Unix|HP-UX',6,'{''qid'': ''Q847593'', ''types'': [''Q14656''], ''url'': ''http://dbpedia.org/resource/HP-UX''}','Y','N','N','N'); +INSERT INTO entities VALUES(450,'Windows',6,'{''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows''}','N','N','Y','N'); +INSERT INTO entities VALUES(451,'Windows|Windows Desktop',6,'{''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows''}','Y','N','N','N'); +INSERT INTO entities VALUES(452,'Windows|Windows Server',6,'{''qid'': ''Q11219'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Windows_Server''}','Y','N','N','N'); +INSERT INTO entities VALUES(453,'Linux|Fedora',6,'{''qid'': ''Q48267'', ''types'': [''Q131669'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/Fedora_(operating_system)''}','Y','N','N','Y'); +INSERT INTO entities VALUES(454,'Linux|Amazon Linux',6,'{''qid'': ''Q68223191'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q68223191''}','Y','N','N','N'); INSERT INTO entities VALUES(455,'Clarify|Clear Basic',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(456,'Eclipse|ATLAS Transformation Language (ATL)',5,'{''name'': ''ATLAS Transformation Language'', ''qid'': ''Q667812'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ATLAS_Transformation_Language'', ''score'': 85.663376}','Y','N','N','N'); -INSERT INTO entities VALUES(457,'IBM BigFix Platform|Client Deploy Tool',5,'{''name'': ''Microsoft Deployment Toolkit'', ''qid'': ''Q1420900'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Microsoft_Deployment_Toolkit'', ''score'': 76.58784}','Y','N','N','N'); +INSERT INTO entities VALUES(456,'Eclipse|ATLAS Transformation Language (ATL)',5,'{''qid'': ''Q667812'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ATLAS_Transformation_Language''}','Y','N','N','N'); +INSERT INTO entities VALUES(457,'IBM BigFix Platform|Client Deploy Tool',5,'{''qid'': ''Q1420900'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Microsoft_Deployment_Toolkit''}','Y','N','N','N'); INSERT INTO entities VALUES(458,'IBM Integration Bus|Extended Structured Query Language (ESQL)',5,'{}','Y','N','N','N'); INSERT INTO entities VALUES(459,'IBM Tivoli Asset Management|Asset Discovery for Distributed',5,'{}','Y','N','N','N'); INSERT INTO entities VALUES(460,'IBM Tivoli Storage Manager|TSM API',5,'{}','Y','N','N','N'); INSERT INTO entities VALUES(461,'IBM Tivoli Storage Manager|TSM Client',5,'{}','Y','N','N','N'); INSERT INTO entities VALUES(462,'IBM Tivoli Storage Manager|TSM Storage Agent',5,'{}','Y','N','N','N'); INSERT INTO entities VALUES(463,'IBM Tivoli Storage Manager|VSS Requestor',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(464,'Microsoft Exchange Server|Veeam Explorer',5,'{''name'': '''', ''qid'': ''Q22096414'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q22096414'', ''score'': 1}','Y','N','N','N'); +INSERT INTO entities VALUES(464,'Microsoft Exchange Server|Veeam Explorer',5,'{''qid'': ''Q22096414'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q22096414''}','Y','N','N','N'); INSERT INTO entities VALUES(465,'MS SQL Server|MS SQL Server Browser',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(466,'MS SQL Server|Data Transformation Services',5,'{''name'': ''Data Transformation Services'', ''qid'': ''Q644775'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Data_Transformation_Services'', ''score'': 79.415146}','Y','N','N','N'); +INSERT INTO entities VALUES(466,'MS SQL Server|Data Transformation Services',5,'{''qid'': ''Q644775'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Data_Transformation_Services''}','Y','N','N','N'); INSERT INTO entities VALUES(467,'MS SQL Server|Log Reader Agent',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(468,'MS SQL Server|SQL Server Analysis Services (SSAS)',5,'{''name'': ''Microsoft Analysis Services'', ''qid'': ''Q2067216'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_Analysis_Services'', ''score'': 85.192924}','Y','N','N','N'); +INSERT INTO entities VALUES(468,'MS SQL Server|SQL Server Analysis Services (SSAS)',5,'{''qid'': ''Q2067216'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_Analysis_Services''}','Y','N','N','N'); INSERT INTO entities VALUES(469,'MS SQL Server|SQL Server Database Engine',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(470,'MS SQL Server|SQL Server Integration Services (SSIS)',5,'{''name'': ''SQL Server Integration Services'', ''qid'': ''Q1231051'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Integration_Services'', ''score'': 86.423325}','Y','N','N','N'); -INSERT INTO entities VALUES(471,'MS SQL Server|SQL Server Management Studio',5,'{''name'': ''SQL Server Management Studio'', ''qid'': ''Q4048883'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Management_Studio'', ''score'': 80.77844}','Y','N','N','N'); -INSERT INTO entities VALUES(472,'MS SQL Server|SQL Server Report Builder',5,'{''name'': ''SQL Server Reporting Services'', ''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services'', ''score'': 82.53023}','Y','N','N','N'); -INSERT INTO entities VALUES(473,'MS SQL Server|SQL Server Reporting Services (SSRS)',5,'{''name'': ''SQL Server Reporting Services'', ''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services'', ''score'': 85.500114}','Y','N','N','N'); +INSERT INTO entities VALUES(470,'MS SQL Server|SQL Server Integration Services (SSIS)',5,'{''qid'': ''Q1231051'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Integration_Services''}','Y','N','N','N'); +INSERT INTO entities VALUES(471,'MS SQL Server|SQL Server Management Studio',5,'{''qid'': ''Q4048883'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Management_Studio''}','Y','N','N','N'); +INSERT INTO entities VALUES(472,'MS SQL Server|SQL Server Report Builder',5,'{''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services''}','Y','N','N','N'); +INSERT INTO entities VALUES(473,'MS SQL Server|SQL Server Reporting Services (SSRS)',5,'{''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services''}','Y','N','N','N'); INSERT INTO entities VALUES(474,'Oracle Database|Jserver',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(475,'Oracle Database|Oracle Spatial and Graph',5,'{''name'': ''Oracle Spatial and Graph'', ''qid'': ''Q3508244'', ''types'': [''Q7397'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Oracle_Spatial_and_Graph'', ''score'': 82.69134}','Y','N','N','N'); +INSERT INTO entities VALUES(475,'Oracle Database|Oracle Spatial and Graph',5,'{''qid'': ''Q3508244'', ''types'': [''Q7397'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Oracle_Spatial_and_Graph''}','Y','N','N','N'); INSERT INTO entities VALUES(476,'SAP ERP|SAP EHP',5,'{}','Y','N','N','N'); INSERT INTO entities VALUES(477,'SAP ERP|SAP Kernel',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(478,'Oracle Database|SQL*Plus',5,'{''name'': ''SQL Plus'', ''qid'': ''Q2575010'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL*Plus'', ''score'': 83.07958}','Y','N','N','N'); +INSERT INTO entities VALUES(478,'Oracle Database|SQL*Plus',5,'{''qid'': ''Q2575010'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL*Plus''}','Y','N','N','N'); INSERT INTO entities VALUES(479,'Sybase SQL Server|Sybase Central',5,'{}','Y','N','N','N'); INSERT INTO entities VALUES(480,'Sybase SQL Server|Sybase Dsedit',5,'{}','Y','N','N','N'); INSERT INTO entities VALUES(481,'TIBCO Business Works (BW)|Integration Manager',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(482,'.NET Framework|Common Runtime Library',7,'{''name'': ''Runtime library'', ''qid'': ''Q1444922'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Runtime_library'', ''score'': 87.11929}','Y','N','N','N'); -INSERT INTO entities VALUES(483,'.NET Framework|log4net',7,'{''name'': '''', ''qid'': ''Q7884429'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q7884429'', ''score'': 1}','Y','N','N','Y'); +INSERT INTO entities VALUES(482,'.NET Framework|Common Runtime Library',7,'{''qid'': ''Q1444922'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Runtime_library''}','Y','N','N','N'); +INSERT INTO entities VALUES(483,'.NET Framework|log4net',7,'{''qid'': ''Q7884429'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q7884429''}','Y','N','N','Y'); INSERT INTO entities VALUES(484,'.NET Framework|Magick.NET',7,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(485,'.NET Framework|Windows Communication Foundation (WCF)',7,'{''name'': ''Windows Communication Foundation'', ''qid'': ''Q261595'', ''types'': [''Q40056'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Communication_Foundation'', ''score'': 81.624405}','Y','N','N','N'); -INSERT INTO entities VALUES(486,'.NET Framework|Windows Workflow Foundation (WF)',7,'{''name'': ''Windows Workflow Foundation'', ''qid'': ''Q1154450'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Workflow_Foundation'', ''score'': 86.433716}','Y','N','N','N'); -INSERT INTO entities VALUES(487,'.NET Framework|WinForms',7,'{''name'': ''Windows Forms'', ''qid'': ''Q613361'', ''types'': [''Q1193246'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Forms'', ''score'': 80.25563}','Y','N','N','N'); -INSERT INTO entities VALUES(488,'ActiveX|ADO',7,'{''name'': ''ActiveX Data Objects'', ''qid'': ''Q344005'', ''types'': [''Q165194''], ''url'': ''http://dbpedia.org/resource/ActiveX_Data_Objects'', ''score'': 84.042175}','Y','N','N','N'); +INSERT INTO entities VALUES(485,'.NET Framework|Windows Communication Foundation (WCF)',7,'{''qid'': ''Q261595'', ''types'': [''Q40056'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Communication_Foundation''}','Y','N','N','N'); +INSERT INTO entities VALUES(486,'.NET Framework|Windows Workflow Foundation (WF)',7,'{''qid'': ''Q1154450'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Workflow_Foundation''}','Y','N','N','N'); +INSERT INTO entities VALUES(487,'.NET Framework|WinForms',7,'{''qid'': ''Q613361'', ''types'': [''Q1193246'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Forms''}','Y','N','N','N'); +INSERT INTO entities VALUES(488,'ActiveX|ADO',7,'{''qid'': ''Q344005'', ''types'': [''Q165194''], ''url'': ''http://dbpedia.org/resource/ActiveX_Data_Objects''}','Y','N','N','N'); INSERT INTO entities VALUES(489,'IIS|Easy Migration Tool (IEMT)',7,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(490,'IIS|Application Request Routing (ARR)',7,'{''name'': ''Application Request Routing'', ''qid'': ''Q16987674'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Application_Request_Routing'', ''score'': 86.14473}','Y','N','N','N'); +INSERT INTO entities VALUES(490,'IIS|Application Request Routing (ARR)',7,'{''qid'': ''Q16987674'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Application_Request_Routing''}','Y','N','N','N'); INSERT INTO entities VALUES(491,'IIS|IIS Manager',7,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(492,'JBoss|JBoss Seam',7,'{''name'': ''JBoss Seam'', ''qid'': ''Q923560'', ''types'': [''Q1330336'', ''Q341''], ''url'': ''http://dbpedia.org/resource/JBoss_Seam'', ''score'': 83.83766}','Y','N','N','Y'); -INSERT INTO entities VALUES(493,'JBoss|Wildfly',7,'{''name'': ''WildFly'', ''qid'': ''Q68850'', ''types'': [''Q71550'', ''Q341''], ''url'': ''http://dbpedia.org/resource/WildFly'', ''score'': 84.19382}','N','N','Y','Y'); +INSERT INTO entities VALUES(492,'JBoss|JBoss Seam',7,'{''qid'': ''Q923560'', ''types'': [''Q1330336'', ''Q341''], ''url'': ''http://dbpedia.org/resource/JBoss_Seam''}','Y','N','N','Y'); +INSERT INTO entities VALUES(493,'JBoss|Wildfly',7,'{''qid'': ''Q68850'', ''types'': [''Q71550'', ''Q341''], ''url'': ''http://dbpedia.org/resource/WildFly''}','N','N','Y','Y'); INSERT INTO entities VALUES(494,'Oracle Application Server|Oracle Transparent Gateway',7,'{}','Y','N','N','N'); INSERT INTO entities VALUES(495,'Oracle WebCenter Content Server|Idoc Script',7,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(496,'SAP NetWeaver App Server|ABAP',7,'{''name'': ''ABAP'', ''qid'': ''Q380523'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ABAP'', ''score'': 83.78291}','Y','N','N','N'); -INSERT INTO entities VALUES(497,'.NET Framework',10,'{''name'': ''.NET Framework'', ''qid'': ''Q5289'', ''types'': [''Q241317'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/.NET_Framework'', ''score'': 86.401306}','Y','N','N','N'); -INSERT INTO entities VALUES(498,'Active Directory (AD)',10,'{''name'': ''Active Directory'', ''qid'': ''Q55692'', ''types'': [''Q756230''], ''url'': ''http://dbpedia.org/resource/Active_Directory'', ''score'': 83.68111}','Y','N','N','N'); -INSERT INTO entities VALUES(499,'Active Server Pages (ASP)',10,'{''name'': ''Active Server Pages'', ''qid'': ''Q344266'', ''types'': [''Q1330336'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Active_Server_Pages'', ''score'': 84.49156}','Y','N','N','N'); -INSERT INTO entities VALUES(500,'ActiveX',10,'{''name'': ''ActiveX'', ''qid'': ''Q302022'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/ActiveX'', ''score'': 83.060486}','N','N','Y','N'); -INSERT INTO entities VALUES(501,'Apache Cordova',10,'{''name'': ''Apache Cordova'', ''qid'': ''Q16626338'', ''types'': [''Q6934955''], ''url'': ''http://dbpedia.org/resource/Apache_Cordova'', ''score'': 83.40139}','Y','N','N','Y'); -INSERT INTO entities VALUES(502,'CICS',10,'{''name'': ''CICS'', ''qid'': ''Q1146247'', ''types'': [''Q9143'', ''Q4388320''], ''url'': ''http://dbpedia.org/resource/CICS'', ''score'': 82.06495}','Y','Y','N','N'); -INSERT INTO entities VALUES(503,'Docker',10,'{''name'': ''Docker (software)'', ''qid'': ''Q15206305'', ''types'': [''Q167772'', ''Q7935198'', ''Q506883''], ''url'': ''http://dbpedia.org/resource/Docker_(software)'', ''score'': 83.910866}','N','N','Y','N'); -INSERT INTO entities VALUES(504,'Flash',10,'{''name'': ''Adobe Flash'', ''qid'': ''Q165658'', ''types'': [''Q1155404'', ''Q241317'', ''Q2622299'', ''Q166142''], ''url'': ''http://dbpedia.org/resource/Adobe_Flash'', ''score'': 81.45454}','Y','N','N','N'); -INSERT INTO entities VALUES(505,'HTTP File Server',10,'{''name'': ''HTTP File Server'', ''qid'': ''Q1566096'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/HTTP_File_Server'', ''score'': 83.006775}','Y','N','N','N'); -INSERT INTO entities VALUES(506,'Java Runtime Environment (JRE)',10,'{''name'': '''', ''qid'': ''Q1504505'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q1504505'', ''score'': 1}','Y','Y','N','N'); -INSERT INTO entities VALUES(507,'Node.js',10,'{''name'': ''Node.js'', ''qid'': ''Q756100'', ''types'': [''Q28920813''], ''url'': ''http://dbpedia.org/resource/Node.js'', ''score'': 83.85895}','N','N','Y','Y'); -INSERT INTO entities VALUES(508,'Ruby on Rails',10,'{''name'': ''Ruby on Rails'', ''qid'': ''Q190478'', ''types'': [''Q1330336'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Ruby_on_Rails'', ''score'': 80.084694}','N','N','Y','Y'); +INSERT INTO entities VALUES(496,'SAP NetWeaver App Server|ABAP',7,'{''qid'': ''Q380523'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ABAP''}','Y','N','N','N'); +INSERT INTO entities VALUES(497,'.NET Framework',10,'{''qid'': ''Q5289'', ''types'': [''Q241317'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/.NET_Framework''}','Y','N','N','N'); +INSERT INTO entities VALUES(498,'Active Directory (AD)',10,'{''qid'': ''Q55692'', ''types'': [''Q756230''], ''url'': ''http://dbpedia.org/resource/Active_Directory''}','Y','N','N','N'); +INSERT INTO entities VALUES(499,'Active Server Pages (ASP)',10,'{''qid'': ''Q344266'', ''types'': [''Q1330336'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Active_Server_Pages''}','Y','N','N','N'); +INSERT INTO entities VALUES(500,'ActiveX',10,'{''qid'': ''Q302022'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/ActiveX''}','N','N','Y','N'); +INSERT INTO entities VALUES(501,'Apache Cordova',10,'{''qid'': ''Q16626338'', ''types'': [''Q6934955''], ''url'': ''http://dbpedia.org/resource/Apache_Cordova''}','Y','N','N','Y'); +INSERT INTO entities VALUES(502,'CICS',10,'{''qid'': ''Q1146247'', ''types'': [''Q9143'', ''Q4388320''], ''url'': ''http://dbpedia.org/resource/CICS''}','Y','Y','N','N'); +INSERT INTO entities VALUES(503,'Docker',10,'{''qid'': ''Q15206305'', ''types'': [''Q167772'', ''Q7935198'', ''Q506883''], ''url'': ''http://dbpedia.org/resource/Docker_(software)''}','N','N','Y','N'); +INSERT INTO entities VALUES(504,'Flash',10,'{''qid'': ''Q165658'', ''types'': [''Q1155404'', ''Q241317'', ''Q2622299'', ''Q166142''], ''url'': ''http://dbpedia.org/resource/Adobe_Flash''}','Y','N','N','N'); +INSERT INTO entities VALUES(505,'HTTP File Server',10,'{''qid'': ''Q1566096'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/HTTP_File_Server''}','Y','N','N','N'); +INSERT INTO entities VALUES(506,'Java Runtime Environment (JRE)',10,'{''qid'': ''Q1504505'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q1504505''}','Y','Y','N','N'); +INSERT INTO entities VALUES(507,'Node.js',10,'{''qid'': ''Q756100'', ''types'': [''Q28920813''], ''url'': ''http://dbpedia.org/resource/Node.js''}','N','N','Y','Y'); +INSERT INTO entities VALUES(508,'Ruby on Rails',10,'{''qid'': ''Q190478'', ''types'': [''Q1330336'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Ruby_on_Rails''}','N','N','Y','Y'); INSERT INTO entities VALUES(509,'VisualForce',10,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(510,'EMC Celerra',11,'{''name'': ''Celerra'', ''qid'': ''Q5057823'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Celerra'', ''score'': 80.63475}','Y','N','N','N'); -INSERT INTO entities VALUES(511,'Application Lifecycle Management (ALM)',1,'{''name'': ''Application lifecycle management'', ''qid'': ''Q621590'', ''types'': [''Q1780667''], ''url'': ''http://dbpedia.org/resource/Application_lifecycle_management'', ''score'': 89.056854}','N','N','Y','N'); -INSERT INTO entities VALUES(512,'Assembler Language',1,'{''name'': ''Assembly language'', ''qid'': ''Q165436'', ''types'': [''Q28922854'', ''Q9143'', ''Q558937''], ''url'': ''http://dbpedia.org/resource/Assembly_language'', ''score'': 86.15701}','N','N','Y','N'); +INSERT INTO entities VALUES(510,'EMC Celerra',11,'{''qid'': ''Q5057823'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Celerra''}','Y','N','N','N'); +INSERT INTO entities VALUES(511,'Application Lifecycle Management (ALM)',1,'{''qid'': ''Q621590'', ''types'': [''Q1780667''], ''url'': ''http://dbpedia.org/resource/Application_lifecycle_management''}','N','N','Y','N'); +INSERT INTO entities VALUES(512,'Assembler Language',1,'{''qid'': ''Q165436'', ''types'': [''Q28922854'', ''Q9143'', ''Q558937''], ''url'': ''http://dbpedia.org/resource/Assembly_language''}','N','N','Y','N'); INSERT INTO entities VALUES(513,'Batch Management Software (BMS)',1,'{}','N','N','Y','N'); INSERT INTO entities VALUES(514,'Business Object Reports',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(515,'Common Gateway Interface (CGI)',1,'{''name'': ''Common Gateway Interface'', ''qid'': ''Q264364'', ''types'': [''Q11016'', ''Q132364''], ''url'': ''http://dbpedia.org/resource/Common_Gateway_Interface'', ''score'': 85.51324}','N','N','Y','N'); -INSERT INTO entities VALUES(516,'Compopent Object Model (COM)',1,'{''name'': ''Component Object Model'', ''qid'': ''Q662200'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Component_Object_Model'', ''score'': 82.8892}','N','N','Y','N'); -INSERT INTO entities VALUES(517,'Common Object Request Broker Architecture (CORBA)',1,'{''name'': ''Common Object Request Broker Architecture'', ''qid'': ''Q691593'', ''types'': [''Q317623''], ''url'': ''http://dbpedia.org/resource/Common_Object_Request_Broker_Architecture'', ''score'': 89.014984}','Y','N','N','N'); +INSERT INTO entities VALUES(515,'Common Gateway Interface (CGI)',1,'{''qid'': ''Q264364'', ''types'': [''Q11016'', ''Q132364''], ''url'': ''http://dbpedia.org/resource/Common_Gateway_Interface''}','N','N','Y','N'); +INSERT INTO entities VALUES(516,'Compopent Object Model (COM)',1,'{''qid'': ''Q662200'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Component_Object_Model''}','N','N','Y','N'); +INSERT INTO entities VALUES(517,'Common Object Request Broker Architecture (CORBA)',1,'{''qid'': ''Q691593'', ''types'': [''Q317623''], ''url'': ''http://dbpedia.org/resource/Common_Object_Request_Broker_Architecture''}','Y','N','N','N'); INSERT INTO entities VALUES(518,'CORBA Interface Definition Language (CORBA IDL)',1,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(519,'Data Control Language (DCL)',1,'{''name'': ''Data control language'', ''qid'': ''Q604737'', ''types'': [''Q41591651''], ''url'': ''http://dbpedia.org/resource/Data_control_language'', ''score'': 81.320244}','Y','N','N','N'); -INSERT INTO entities VALUES(520,'Database (DB)',1,'{''name'': ''Database'', ''qid'': ''Q8513'', ''types'': [''Q15401930'', ''Q386724'', ''Q28813620''], ''url'': ''http://dbpedia.org/resource/Database'', ''score'': 82.34052}','N','N','Y','N'); -INSERT INTO entities VALUES(521,'Electronic Data Interchange (EDI)',1,'{''name'': ''Electronic data interchange'', ''qid'': ''Q690189'', ''types'': [''Q2989673''], ''url'': ''http://dbpedia.org/resource/Electronic_data_interchange'', ''score'': 87.44513}','Y','N','N','N'); -INSERT INTO entities VALUES(522,'Application Web Server',1,'{''name'': ''Web server'', ''qid'': ''Q11288'', ''types'': [''Q1371279'', ''Q4485156'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Web_server'', ''score'': 77.0719}','N','N','Y','N'); -INSERT INTO entities VALUES(523,'Java-based Document Object Model for XML (JDOM)',1,'{''name'': ''JDOM'', ''qid'': ''Q359595'', ''types'': [''Q341'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/JDOM'', ''score'': 81.70957}','N','N','Y','Y'); -INSERT INTO entities VALUES(524,'Lightweight Directory Access Protocol (LDAP)',1,'{''name'': ''Lightweight Directory Access Protocol'', ''qid'': ''Q188816'', ''types'': [''Q756230'', ''Q15836568''], ''url'': ''http://dbpedia.org/resource/Lightweight_Directory_Access_Protocol'', ''score'': 89.43541}','N','N','Y','N'); -INSERT INTO entities VALUES(525,'Open Database Connectivity (ODBC)',1,'{''name'': ''Open Database Connectivity'', ''qid'': ''Q212606'', ''types'': [''Q165194'', ''Q1172367''], ''url'': ''http://dbpedia.org/resource/Open_Database_Connectivity'', ''score'': 84.37927}','Y','N','N','N'); -INSERT INTO entities VALUES(526,'Order Management System (OMS)',1,'{''name'': ''Order management system'', ''qid'': ''Q7100437'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Order_management_system'', ''score'': 87.72636}','Y','N','N','N'); +INSERT INTO entities VALUES(519,'Data Control Language (DCL)',1,'{''qid'': ''Q604737'', ''types'': [''Q41591651''], ''url'': ''http://dbpedia.org/resource/Data_control_language''}','Y','N','N','N'); +INSERT INTO entities VALUES(520,'Database (DB)',1,'{''qid'': ''Q8513'', ''types'': [''Q15401930'', ''Q386724'', ''Q28813620''], ''url'': ''http://dbpedia.org/resource/Database''}','N','N','Y','N'); +INSERT INTO entities VALUES(521,'Electronic Data Interchange (EDI)',1,'{''qid'': ''Q690189'', ''types'': [''Q2989673''], ''url'': ''http://dbpedia.org/resource/Electronic_data_interchange''}','Y','N','N','N'); +INSERT INTO entities VALUES(522,'Application Web Server',1,'{''qid'': ''Q11288'', ''types'': [''Q1371279'', ''Q4485156'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Web_server''}','N','N','Y','N'); +INSERT INTO entities VALUES(523,'Java-based Document Object Model for XML (JDOM)',1,'{''qid'': ''Q359595'', ''types'': [''Q341'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/JDOM''}','N','N','Y','Y'); +INSERT INTO entities VALUES(524,'Lightweight Directory Access Protocol (LDAP)',1,'{''qid'': ''Q188816'', ''types'': [''Q756230'', ''Q15836568''], ''url'': ''http://dbpedia.org/resource/Lightweight_Directory_Access_Protocol''}','N','N','Y','N'); +INSERT INTO entities VALUES(525,'Open Database Connectivity (ODBC)',1,'{''qid'': ''Q212606'', ''types'': [''Q165194'', ''Q1172367''], ''url'': ''http://dbpedia.org/resource/Open_Database_Connectivity''}','Y','N','N','N'); +INSERT INTO entities VALUES(526,'Order Management System (OMS)',1,'{''qid'': ''Q7100437'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Order_management_system''}','Y','N','N','N'); INSERT INTO entities VALUES(527,'Oracle Web Services',1,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(528,'Reporting Services',1,'{''name'': ''SQL Server Reporting Services'', ''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services'', ''score'': 76.517334}','Y','N','N','N'); -INSERT INTO entities VALUES(529,'Representational State Transfer (REST)',1,'{''name'': ''Representational state transfer'', ''qid'': ''Q749568'', ''types'': [''Q220644''], ''url'': ''http://dbpedia.org/resource/Representational_state_transfer'', ''score'': 84.51243}','Y','N','N','N'); -INSERT INTO entities VALUES(530,'Service-Oriented Architecture (SOA)',1,'{''name'': ''Service-oriented architecture'', ''qid'': ''Q220644'', ''types'': [''Q846636''], ''url'': ''http://dbpedia.org/resource/Service-oriented_architecture'', ''score'': 89.56844}','Y','N','N','N'); -INSERT INTO entities VALUES(531,'Simple Object Access Protocol (SOAP)',1,'{''name'': ''SOAP'', ''qid'': ''Q189620'', ''types'': [''Q15836568''], ''url'': ''http://dbpedia.org/resource/SOAP'', ''score'': 82.96513}','Y','N','N','N'); -INSERT INTO entities VALUES(532,'SQL',9,'{''name'': ''SQL'', ''qid'': ''Q47607'', ''types'': [''Q9143'', ''Q1144882'', ''Q845739'', ''Q691358''], ''url'': ''http://dbpedia.org/resource/SQL'', ''score'': 82.56613}','N','N','Y','N'); -INSERT INTO entities VALUES(533,'YAML',1,'{''name'': ''YAML'', ''qid'': ''Q281876'', ''types'': [''Q37045'', ''Q50843083'', ''Q235557'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/YAML'', ''score'': 83.277405}','Y','N','N','N'); -INSERT INTO entities VALUES(534,'Model-view-controller (MVC)',1,'{''name'': ''Modelûviewûcontroller'', ''qid'': ''Q44860'', ''types'': [''Q635346'', ''Q181156''], ''url'': ''http://dbpedia.org/resource/Modelûviewûcontroller'', ''score'': 84.10152}','Y','N','N','N'); -INSERT INTO entities VALUES(535,'Application Server',1,'{''name'': ''Application server'', ''qid'': ''Q71550'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/Application_server'', ''score'': 80.99098}','N','N','Y','N'); -INSERT INTO entities VALUES(536,'Cloud',1,'{''name'': ''Cloud computing'', ''qid'': ''Q483639'', ''types'': [''Q771906'', ''Q241317''], ''url'': ''http://dbpedia.org/resource/Cloud_computing'', ''score'': 82.330734}','N','N','Y','N'); +INSERT INTO entities VALUES(528,'Reporting Services',1,'{''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services''}','Y','N','N','N'); +INSERT INTO entities VALUES(529,'Representational State Transfer (REST)',1,'{''qid'': ''Q749568'', ''types'': [''Q220644''], ''url'': ''http://dbpedia.org/resource/Representational_state_transfer''}','Y','N','N','N'); +INSERT INTO entities VALUES(530,'Service-Oriented Architecture (SOA)',1,'{''qid'': ''Q220644'', ''types'': [''Q846636''], ''url'': ''http://dbpedia.org/resource/Service-oriented_architecture''}','Y','N','N','N'); +INSERT INTO entities VALUES(531,'Simple Object Access Protocol (SOAP)',1,'{''qid'': ''Q189620'', ''types'': [''Q15836568''], ''url'': ''http://dbpedia.org/resource/SOAP''}','Y','N','N','N'); +INSERT INTO entities VALUES(532,'SQL',9,'{''qid'': ''Q47607'', ''types'': [''Q9143'', ''Q1144882'', ''Q845739'', ''Q691358''], ''url'': ''http://dbpedia.org/resource/SQL''}','N','N','Y','N'); +INSERT INTO entities VALUES(533,'YAML',1,'{''qid'': ''Q281876'', ''types'': [''Q37045'', ''Q50843083'', ''Q235557'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/YAML''}','Y','N','N','N'); +INSERT INTO entities VALUES(534,'Model-view-controller (MVC)',1,'{''qid'': ''Q44860'', ''types'': [''Q635346'', ''Q181156''], ''url'': ''http://dbpedia.org/resource/Modelûviewûcontroller''}','Y','N','N','N'); +INSERT INTO entities VALUES(535,'Application Server',1,'{''qid'': ''Q71550'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/Application_server''}','N','N','Y','N'); +INSERT INTO entities VALUES(536,'Cloud',1,'{''qid'': ''Q483639'', ''types'': [''Q771906'', ''Q241317''], ''url'': ''http://dbpedia.org/resource/Cloud_computing''}','N','N','Y','N'); INSERT INTO entities VALUES(537,'Competency and Quality Assurance Server',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(538,'Device Provisioning Engines (DPE)',1,'{''name'': ''Dynamic provisioning environment'', ''qid'': ''Q5318925'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Dynamic_provisioning_environment'', ''score'': 84.18288}','N','N','Y','N'); +INSERT INTO entities VALUES(538,'Device Provisioning Engines (DPE)',1,'{''qid'': ''Q5318925'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Dynamic_provisioning_environment''}','N','N','Y','N'); INSERT INTO entities VALUES(539,'E-business solution',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(540,'Enterprise Service Bus(ESB)',1,'{''name'': ''Enterprise service bus'', ''qid'': ''Q1061460'', ''types'': [''Q146923''], ''url'': ''http://dbpedia.org/resource/Enterprise_service_bus'', ''score'': 86.68463}','N','N','Y','N'); -INSERT INTO entities VALUES(541,'File Server',1,'{''name'': ''File server'', ''qid'': ''Q513349'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/File_server'', ''score'': 81.77269}','N','N','Y','N'); -INSERT INTO entities VALUES(542,'General Ledger',1,'{''name'': ''General ledger'', ''qid'': ''Q1977520'', ''types'': [''Q3831821'', ''Q4116214''], ''url'': ''http://dbpedia.org/resource/General_ledger'', ''score'': 81.900246}','N','N','Y','N'); -INSERT INTO entities VALUES(543,'HTTP client',1,'{''name'': '''', ''qid'': ''Q2979024'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q2979024'', ''score'': 1}','Y','N','N','N'); -INSERT INTO entities VALUES(544,'HTTP Server',1,'{''name'': ''Web server'', ''qid'': ''Q11288'', ''types'': [''Q1371279'', ''Q4485156'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Web_server'', ''score'': 79.81578}','N','N','Y','N'); -INSERT INTO entities VALUES(545,'Integrated Safe System of Work (ISSOW)',1,'{''name'': ''ISSOW'', ''qid'': ''Q5974495'', ''types'': [''Q317623''], ''url'': ''http://dbpedia.org/resource/ISSOW'', ''score'': 85.54559}','N','N','Y','N'); -INSERT INTO entities VALUES(546,'Internet Exchange Point - Full Stack (ixp-ft)',1,'{''name'': ''Internet exchange point'', ''qid'': ''Q1433061'', ''types'': [''Q173106'', ''Q1293220''], ''url'': ''http://dbpedia.org/resource/Internet_exchange_point'', ''score'': 82.28551}','N','N','Y','N'); -INSERT INTO entities VALUES(547,'Internet Message Access Protocol (IMAP)',1,'{''name'': ''Internet Message Access Protocol'', ''qid'': ''Q166936'', ''types'': [''Q16935517'', ''Q15836568''], ''url'': ''http://dbpedia.org/resource/Internet_Message_Access_Protocol'', ''score'': 86.653854}','Y','N','N','N'); -INSERT INTO entities VALUES(548,'JSON',1,'{''name'': ''JSON'', ''qid'': ''Q2063'', ''types'': [''Q681263'', ''Q235557'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/JSON'', ''score'': 83.52559}','N','N','Y','N'); +INSERT INTO entities VALUES(540,'Enterprise Service Bus(ESB)',1,'{''qid'': ''Q1061460'', ''types'': [''Q146923''], ''url'': ''http://dbpedia.org/resource/Enterprise_service_bus''}','N','N','Y','N'); +INSERT INTO entities VALUES(541,'File Server',1,'{''qid'': ''Q513349'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/File_server''}','N','N','Y','N'); +INSERT INTO entities VALUES(542,'General Ledger',1,'{''qid'': ''Q1977520'', ''types'': [''Q3831821'', ''Q4116214''], ''url'': ''http://dbpedia.org/resource/General_ledger''}','N','N','Y','N'); +INSERT INTO entities VALUES(543,'HTTP client',1,'{''qid'': ''Q2979024'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q2979024''}','Y','N','N','N'); +INSERT INTO entities VALUES(544,'HTTP Server',1,'{''qid'': ''Q11288'', ''types'': [''Q1371279'', ''Q4485156'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Web_server''}','N','N','Y','N'); +INSERT INTO entities VALUES(545,'Integrated Safe System of Work (ISSOW)',1,'{''qid'': ''Q5974495'', ''types'': [''Q317623''], ''url'': ''http://dbpedia.org/resource/ISSOW''}','N','N','Y','N'); +INSERT INTO entities VALUES(546,'Internet Exchange Point - Full Stack (ixp-ft)',1,'{''qid'': ''Q1433061'', ''types'': [''Q173106'', ''Q1293220''], ''url'': ''http://dbpedia.org/resource/Internet_exchange_point''}','N','N','Y','N'); +INSERT INTO entities VALUES(547,'Internet Message Access Protocol (IMAP)',1,'{''qid'': ''Q166936'', ''types'': [''Q16935517'', ''Q15836568''], ''url'': ''http://dbpedia.org/resource/Internet_Message_Access_Protocol''}','Y','N','N','N'); +INSERT INTO entities VALUES(548,'JSON',1,'{''qid'': ''Q2063'', ''types'': [''Q681263'', ''Q235557'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/JSON''}','N','N','Y','N'); INSERT INTO entities VALUES(549,'KVS Application Server',1,'{}','N','N','Y','N'); INSERT INTO entities VALUES(550,'KVS File Server',1,'{}','N','N','Y','N'); INSERT INTO entities VALUES(551,'KVS Proxy Server',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(552,'mainframe',1,'{''name'': ''Mainframe computer'', ''qid'': ''Q177234'', ''types'': [''Q64729893''], ''url'': ''http://dbpedia.org/resource/Mainframe_computer'', ''score'': 83.99571}','Y','N','N','N'); -INSERT INTO entities VALUES(553,'Manufacturing Execution System (MES)',1,'{''name'': ''Manufacturing execution system'', ''qid'': ''Q1404943'', ''types'': [''Q489371''], ''url'': ''http://dbpedia.org/resource/Manufacturing_execution_system'', ''score'': 90.291725}','N','N','Y','N'); -INSERT INTO entities VALUES(554,'Mobile',1,'{''name'': ''Mobile computing'', ''qid'': ''Q2738570'', ''types'': [''Q179310''], ''url'': ''http://dbpedia.org/resource/Mobile_computing'', ''score'': 83.222244}','N','N','Y','N'); -INSERT INTO entities VALUES(555,'NonSQL',1,'{''name'': '''', ''qid'': ''Q5999165'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q5999165'', ''score'': 1}','Y','N','N','N'); -INSERT INTO entities VALUES(556,'SaaS',1,'{''name'': ''Software as a service'', ''qid'': ''Q1254596'', ''types'': [''Q8187769'', ''Q25036597'', ''Q17155032'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/Software_as_a_service'', ''score'': 87.45804}','Y','N','N','N'); -INSERT INTO entities VALUES(557,'Storage Area Network (SAN)',1,'{''name'': ''Storage area network'', ''qid'': ''Q237576'', ''types'': [''Q15141646'', ''Q994895'', ''Q1301371''], ''url'': ''http://dbpedia.org/resource/Storage_area_network'', ''score'': 87.11571}','N','N','Y','N'); +INSERT INTO entities VALUES(552,'mainframe',1,'{''qid'': ''Q177234'', ''types'': [''Q64729893''], ''url'': ''http://dbpedia.org/resource/Mainframe_computer''}','Y','N','N','N'); +INSERT INTO entities VALUES(553,'Manufacturing Execution System (MES)',1,'{''qid'': ''Q1404943'', ''types'': [''Q489371''], ''url'': ''http://dbpedia.org/resource/Manufacturing_execution_system''}','N','N','Y','N'); +INSERT INTO entities VALUES(554,'Mobile',1,'{''qid'': ''Q2738570'', ''types'': [''Q179310''], ''url'': ''http://dbpedia.org/resource/Mobile_computing''}','N','N','Y','N'); +INSERT INTO entities VALUES(555,'NonSQL',1,'{''qid'': ''Q5999165'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q5999165''}','Y','N','N','N'); +INSERT INTO entities VALUES(556,'SaaS',1,'{''qid'': ''Q1254596'', ''types'': [''Q8187769'', ''Q25036597'', ''Q17155032'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/Software_as_a_service''}','Y','N','N','N'); +INSERT INTO entities VALUES(557,'Storage Area Network (SAN)',1,'{''qid'': ''Q237576'', ''types'': [''Q15141646'', ''Q994895'', ''Q1301371''], ''url'': ''http://dbpedia.org/resource/Storage_area_network''}','N','N','Y','N'); INSERT INTO entities VALUES(558,'Supplier Registration System Application Server',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(559,'Virtual Appliance',1,'{''name'': ''Virtual appliance'', ''qid'': ''Q752708'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Virtual_appliance'', ''score'': 81.08778}','N','N','Y','N'); -INSERT INTO entities VALUES(560,'Webtop',1,'{''name'': ''Web desktop'', ''qid'': ''Q1780763'', ''types'': [''Q1668024''], ''url'': ''http://dbpedia.org/resource/Web_desktop'', ''score'': 82.62133}','Y','N','N','N'); -INSERT INTO entities VALUES(561,'Proxy Server',1,'{''name'': ''Proxy server'', ''qid'': ''Q11189'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/Proxy_server'', ''score'': 82.35827}','N','N','Y','N'); -INSERT INTO entities VALUES(562,'Utility',1,'{''name'': ''Utility software'', ''qid'': ''Q312466'', ''types'': [''Q40056'', ''Q676202'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Utility_software'', ''score'': 85.419785}','N','N','Y','N'); -INSERT INTO entities VALUES(563,'Citrix ADC',3,'{''name'': '''', ''qid'': ''Q12040775'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q12040775'', ''score'': 1}','N','N','Y','N'); +INSERT INTO entities VALUES(559,'Virtual Appliance',1,'{''qid'': ''Q752708'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Virtual_appliance''}','N','N','Y','N'); +INSERT INTO entities VALUES(560,'Webtop',1,'{''qid'': ''Q1780763'', ''types'': [''Q1668024''], ''url'': ''http://dbpedia.org/resource/Web_desktop''}','Y','N','N','N'); +INSERT INTO entities VALUES(561,'Proxy Server',1,'{''qid'': ''Q11189'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/Proxy_server''}','N','N','Y','N'); +INSERT INTO entities VALUES(562,'Utility',1,'{''qid'': ''Q312466'', ''types'': [''Q40056'', ''Q676202'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Utility_software''}','N','N','Y','N'); +INSERT INTO entities VALUES(563,'Citrix ADC',3,'{''qid'': ''Q12040775'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q12040775''}','N','N','Y','N'); INSERT INTO entities VALUES(564,'Citrix ADC VPX',3,'{}','Y','N','N','N'); INSERT INTO entities VALUES(565,'Citrix ADC BLX',3,'{}','Y','N','N','N'); INSERT INTO entities VALUES(566,'InterScan Messaging Security Virtual Appliance (IMSVA)',3,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(567,'Oracle VM',3,'{''name'': ''Oracle VM Server for x86'', ''qid'': ''Q10852040'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Oracle_VM_Server_for_x86'', ''score'': 83.05786}','Y','N','N','N'); -INSERT INTO entities VALUES(568,'VMware ESXi',3,'{''name'': ''VMware ESXi'', ''qid'': ''Q179116'', ''types'': [''Q1077480'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/VMware_ESXi'', ''score'': 81.73852}','Y','N','N','N'); -INSERT INTO entities VALUES(569,'VMware Server',3,'{''name'': ''VMware Server'', ''qid'': ''Q4007037'', ''types'': [''Q1077480''], ''url'': ''http://dbpedia.org/resource/VMware_Server'', ''score'': 81.26419}','Y','N','N','N'); +INSERT INTO entities VALUES(567,'Oracle VM',3,'{''qid'': ''Q10852040'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Oracle_VM_Server_for_x86''}','Y','N','N','N'); +INSERT INTO entities VALUES(568,'VMware ESXi',3,'{''qid'': ''Q179116'', ''types'': [''Q1077480'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/VMware_ESXi''}','Y','N','N','N'); +INSERT INTO entities VALUES(569,'VMware Server',3,'{''qid'': ''Q4007037'', ''types'': [''Q1077480''], ''url'': ''http://dbpedia.org/resource/VMware_Server''}','Y','N','N','N'); INSERT INTO entities VALUES(570,'IBM WebSphere Transformation Extender (WTX)',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(571,'Oracle Retail Point-of-Service',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(572,'Structured Query Language (SQL)',1,'{''name'': ''SQL'', ''qid'': ''Q47607'', ''types'': [''Q9143'', ''Q1144882'', ''Q845739'', ''Q691358''], ''url'': ''http://dbpedia.org/resource/SQL'', ''score'': 78.981926}','Y','N','N','N'); -INSERT INTO entities VALUES(573,'TSO/ISPF',2,'{''name'': ''ISPF'', ''qid'': ''Q679906'', ''types'': [''Q131212''], ''url'': ''http://dbpedia.org/resource/ISPF'', ''score'': 81.637115}','Y','N','N','N'); -INSERT INTO entities VALUES(574,'Model view controller (MVC)',1,'{''name'': ''Modelûviewûcontroller'', ''qid'': ''Q44860'', ''types'': [''Q635346'', ''Q181156''], ''url'': ''http://dbpedia.org/resource/Modelûviewûcontroller'', ''score'': 84.181244}','Y','N','N','N'); +INSERT INTO entities VALUES(572,'Structured Query Language (SQL)',1,'{''qid'': ''Q47607'', ''types'': [''Q9143'', ''Q1144882'', ''Q845739'', ''Q691358''], ''url'': ''http://dbpedia.org/resource/SQL''}','Y','N','N','N'); +INSERT INTO entities VALUES(573,'TSO/ISPF',2,'{''qid'': ''Q679906'', ''types'': [''Q131212''], ''url'': ''http://dbpedia.org/resource/ISPF''}','Y','N','N','N'); +INSERT INTO entities VALUES(574,'Model view controller (MVC)',1,'{''qid'': ''Q44860'', ''types'': [''Q635346'', ''Q181156''], ''url'': ''http://dbpedia.org/resource/Modelûviewûcontroller''}','Y','N','N','N'); INSERT INTO entities VALUES(575,'|*',6,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(576,'Linux|*',6,'{''name'': ''Linux'', ''qid'': ''Q388'', ''types'': [''Q14656'', ''Q16889133'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Linux'', ''score'': 82.96069}','N','N','Y','Y'); -INSERT INTO entities VALUES(577,'MVS|*',6,'{''name'': ''MVS'', ''qid'': ''Q781443'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/MVS'', ''score'': 83.5689}','Y','N','N','N'); -INSERT INTO entities VALUES(578,'Unix|*',6,'{''name'': ''Unix'', ''qid'': ''Q11368'', ''types'': [''Q170584'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/Unix'', ''score'': 83.38479}','Y','N','N','N'); -INSERT INTO entities VALUES(579,'Unix|BSD|*',6,'{''name'': ''Berkeley Software Distribution'', ''qid'': ''Q34264'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34264'', ''score'': 1}','Y','N','N','N'); -INSERT INTO entities VALUES(580,'Windows|*',6,'{''name'': ''Microsoft Windows'', ''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows'', ''score'': 79.933815}','N','N','Y','N'); -INSERT INTO entities VALUES(581,'MS SQL Server|*',2,'{''name'': ''Microsoft SQL Server'', ''qid'': ''Q215819'', ''types'': [''Q218616'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_SQL_Server'', ''score'': 79.948875}','N','N','Y','N'); -INSERT INTO entities VALUES(582,'C#|*',9,'{''name'': ''C Sharp (programming language)'', ''qid'': ''Q2370'', ''types'': [''Q9143'', ''Q12772052''], ''url'': ''http://dbpedia.org/resource/C_Sharp_(programming_language)'', ''score'': 85.300766}','N','N','Y','N/A'); -INSERT INTO entities VALUES(583,'C++|*',9,'{''name'': ''C++'', ''qid'': ''Q2407'', ''types'': [''Q28923026'', ''Q12772052'', ''Q28922885'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q5499621'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C++'', ''score'': 84.19003}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(584,'Java|*',9,'{''name'': ''Java (programming language)'', ''qid'': ''Q251'', ''types'': [''Q12772052'', ''Q56062429'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Java_(programming_language)'', ''score'': 81.437775}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(585,'Perl|*',9,'{''name'': ''Perl'', ''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl'', ''score'': 84.73837}','N','N','Y','N/A'); +INSERT INTO entities VALUES(576,'Linux|*',6,'{''qid'': ''Q388'', ''types'': [''Q14656'', ''Q16889133'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Linux''}','N','N','Y','Y'); +INSERT INTO entities VALUES(577,'MVS|*',6,'{''qid'': ''Q781443'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/MVS''}','Y','N','N','N'); +INSERT INTO entities VALUES(578,'Unix|*',6,'{''qid'': ''Q11368'', ''types'': [''Q170584'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/Unix''}','Y','N','N','N'); +INSERT INTO entities VALUES(579,'Unix|BSD|*',6,'{''qid'': ''Q34264'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34264''}','Y','N','N','N'); +INSERT INTO entities VALUES(580,'Windows|*',6,'{''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows''}','N','N','Y','N'); +INSERT INTO entities VALUES(581,'MS SQL Server|*',2,'{''qid'': ''Q215819'', ''types'': [''Q218616'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_SQL_Server''}','N','N','Y','N'); +INSERT INTO entities VALUES(582,'C#|*',9,'{''qid'': ''Q2370'', ''types'': [''Q9143'', ''Q12772052''], ''url'': ''http://dbpedia.org/resource/C_Sharp_(programming_language)''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(583,'C++|*',9,'{''qid'': ''Q2407'', ''types'': [''Q28923026'', ''Q12772052'', ''Q28922885'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q5499621'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C++''}','Y','Y','N','N'); +INSERT INTO entities VALUES(584,'Java|*',9,'{''qid'': ''Q251'', ''types'': [''Q12772052'', ''Q56062429'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Java_(programming_language)''}','N','N','Y','N'); +INSERT INTO entities VALUES(585,'Perl|*',9,'{''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl''}','N','N','Y','N/A'); INSERT INTO entities VALUES(586,'PHP|*',9,'{}','N','N','Y','N/A'); -INSERT INTO entities VALUES(587,'Python|*',9,'{''name'': ''Python (programming language)'', ''qid'': ''Q28865'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Python_(programming_language)'', ''score'': 84.46006}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(588,'Ruby|*',9,'{}','N','N','Y','N/A'); -INSERT INTO entities VALUES(589,'JavaScript|*',9,'{}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(590,'Unix|BSD|OpenBSD',6,'{''name'': ''OpenBSD'', ''qid'': ''Q34215'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34215'', ''score'': 1}','Y','N','N','N'); -INSERT INTO entities VALUES(591,'z/VSE',6,'{''name'': ''VSE (operating system)'', ''qid'': ''Q289345'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/VSE_(operating_system)'', ''score'': 82.09021}','Y','N','N','N'); -INSERT INTO entities VALUES(592,'Active Server Pages (ASP)|*',9,'{''name'': ''Active Server Pages'', ''qid'': ''Q344266'', ''types'': [''Q1330336'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Active_Server_Pages'', ''score'': 80.09588}','N','N','Y','N/A'); -INSERT INTO entities VALUES(593,'MS-DOS',6,'{''name'': ''MS-DOS'', ''qid'': ''Q47604'', ''types'': [''Q9135'', ''Q241317'', ''Q170434''], ''url'': ''http://dbpedia.org/resource/MS-DOS'', ''score'': 83.10925}','Y','N','N','N'); -INSERT INTO entities VALUES(594,'COBOL|*',9,'{''name'': ''COBOL'', ''qid'': ''Q131140'', ''types'': [''Q9143'', ''Q28922885'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/COBOL'', ''score'': 85.1051}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(587,'Python|*',9,'{''qid'': ''Q28865'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Python_(programming_language)''}','N','N','Y','Y'); +INSERT INTO entities VALUES(588,'Ruby|*',9,'{}','N','Y','Y','Y'); +INSERT INTO entities VALUES(589,'JavaScript|*',9,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(590,'Unix|BSD|OpenBSD',6,'{''qid'': ''Q34215'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34215''}','Y','N','N','N'); +INSERT INTO entities VALUES(591,'z/VSE',6,'{''qid'': ''Q289345'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/VSE_(operating_system)''}','Y','N','N','N'); +INSERT INTO entities VALUES(592,'Active Server Pages (ASP)|*',9,'{''qid'': ''Q344266'', ''types'': [''Q1330336'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Active_Server_Pages''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(593,'MS-DOS',6,'{''qid'': ''Q47604'', ''types'': [''Q9135'', ''Q241317'', ''Q170434''], ''url'': ''http://dbpedia.org/resource/MS-DOS''}','Y','N','N','N'); +INSERT INTO entities VALUES(594,'COBOL|*',9,'{''qid'': ''Q131140'', ''types'': [''Q9143'', ''Q28922885'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/COBOL''}','Y','N','N','N'); INSERT INTO entities VALUES(595,'VME',6,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(596,'Extensible Markup Language (XML)|*',9,'{''name'': ''XML'', ''qid'': ''Q2115'', ''types'': [''Q82753'', ''Q37045'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/XML'', ''score'': 78.398}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(597,'DOS/360',6,'{''name'': ''DOS/360 and successors'', ''qid'': ''Q3487917'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/DOS/360_and_successors'', ''score'': 84.71286}','Y','N','N','N'); -INSERT INTO entities VALUES(598,'z/TPF',6,'{''name'': ''Transaction Processing Facility'', ''qid'': ''Q1426122'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Transaction_Processing_Facility'', ''score'': 80.57762}','Y','N','N','N'); -INSERT INTO entities VALUES(599,'Pascal|*',9,'{''name'': ''Pascal (programming language)'', ''qid'': ''Q81571'', ''types'': [''Q9143'', ''Q21562092'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Pascal_(programming_language)'', ''score'': 82.614334}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(600,'Oracle WebLogic Server|*',8,'{''name'': ''Oracle WebLogic Server'', ''qid'': ''Q83589'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_WebLogic_Server'', ''score'': 80.1022}','N','N','Y','N'); +INSERT INTO entities VALUES(596,'Extensible Markup Language (XML)|*',9,'{''qid'': ''Q2115'', ''types'': [''Q82753'', ''Q37045'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/XML''}','Y','Y','N','N'); +INSERT INTO entities VALUES(597,'DOS/360',6,'{''qid'': ''Q3487917'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/DOS/360_and_successors''}','Y','N','N','N'); +INSERT INTO entities VALUES(598,'z/TPF',6,'{''qid'': ''Q1426122'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Transaction_Processing_Facility''}','Y','N','N','N'); +INSERT INTO entities VALUES(599,'Pascal|*',9,'{''qid'': ''Q81571'', ''types'': [''Q9143'', ''Q21562092'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Pascal_(programming_language)''}','Y','Y','N','N'); +INSERT INTO entities VALUES(600,'Oracle WebLogic Server|*',8,'{''qid'': ''Q83589'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_WebLogic_Server''}','N','N','Y','N'); INSERT INTO entities VALUES(601,'Websphere ILOG JRules BRMS',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(602,'Unix|BSD|NetBSD',6,'{''name'': ''NetBSD'', ''qid'': ''Q34225'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34225'', ''score'': 1}','Y','N','N','N'); -INSERT INTO entities VALUES(603,'SharePoint|*',2,'{''name'': ''SharePoint'', ''qid'': ''Q18833'', ''types'': [''Q1371279'', ''Q1344636'', ''Q131093'', ''Q831677'', ''Q615985''], ''url'': ''http://dbpedia.org/resource/SharePoint'', ''score'': 82.14191}','Y','N','N','N'); -INSERT INTO entities VALUES(604,'IBM Tivoli Storage Manager|*',2,'{''name'': ''IBM Tivoli Storage Manager'', ''qid'': ''Q2001900'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Storage_Manager'', ''score'': 81.727715}','Y','N','N','N'); -INSERT INTO entities VALUES(605,'IBM Spectrum Scale|*',2,'{''name'': ''IBM Spectrum Scale'', ''qid'': ''Q2389927'', ''types'': [''Q174989'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_General_Parallel_File_System'', ''score'': 83.11014}','Y','N','N','N'); +INSERT INTO entities VALUES(602,'Unix|BSD|NetBSD',6,'{''qid'': ''Q34225'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34225''}','Y','N','N','N'); +INSERT INTO entities VALUES(603,'SharePoint|*',2,'{''qid'': ''Q18833'', ''types'': [''Q1371279'', ''Q1344636'', ''Q131093'', ''Q831677'', ''Q615985''], ''url'': ''http://dbpedia.org/resource/SharePoint''}','Y','N','N','N'); +INSERT INTO entities VALUES(604,'IBM Tivoli Storage Manager|*',2,'{''qid'': ''Q2001900'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Storage_Manager''}','Y','N','N','N'); +INSERT INTO entities VALUES(605,'IBM Spectrum Scale|*',2,'{''qid'': ''Q2389927'', ''types'': [''Q174989'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_General_Parallel_File_System''}','Y','N','N','N'); INSERT INTO entities VALUES(606,'IBM Tivoli Asset Management|*',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(607,'Oracle Hyperion|*',2,'{''name'': ''Oracle Hyperion'', ''qid'': ''Q1431991'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Oracle_Hyperion'', ''score'': 83.51888}','Y','N','N','N'); -INSERT INTO entities VALUES(608,'z/VM',6,'{''name'': ''Z/VM'', ''qid'': ''Q1399696'', ''types'': [''Q9135'', ''Q1077480''], ''url'': ''http://dbpedia.org/resource/Z/VM'', ''score'': 81.89035}','Y','N','N','N'); -INSERT INTO entities VALUES(609,'IIS|*',8,'{''name'': ''Internet Information Services'', ''qid'': ''Q11341'', ''types'': [''Q218616'', ''Q18287040''], ''url'': ''http://dbpedia.org/resource/Internet_Information_Services'', ''score'': 82.97048}','Y','N','N','N'); -INSERT INTO entities VALUES(610,'Oracle Application Server|*',8,'{''name'': ''Oracle Application Server'', ''qid'': ''Q2027912'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Server'', ''score'': 80.88289}','Y','N','N','N'); -INSERT INTO entities VALUES(611,'instana',10,'{''name'': ''instana'', ''qid'': ''Q107383927'', ''url'': ''https://www.wikidata.org/wiki/Q107383927'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(612,'credstash',2,'{''name'': ''credstash'', ''qid'': ''Q107384165'', ''url'': ''https://www.wikidata.org/wiki/Q107384165'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(613,'Snyk',2,'{''name'': ''Snyk'', ''qid'': ''Q108282404'', ''url'': ''https://www.wikidata.org/wiki/Q108282404'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(614,'Akka',2,'{''name'': ''Akka (toolkit)'', ''qid'': ''Q16002307'', ''url'': ''https://www.wikidata.org/wiki/Q16002307'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(615,'Varnish',8,'{''name'': ''Varnish (software)'', ''qid'': ''Q1602447'', ''url'': ''https://www.wikidata.org/wiki/Q1602447'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(616,'Datadog',10,'{''name'': ''Datadog'', ''qid'': ''Q16248637'', ''url'': ''https://www.wikidata.org/wiki/Q16248637'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(617,'API',1,'{''name'': ''API'', ''qid'': ''Q165194'', ''url'': ''https://www.wikidata.org/wiki/Q165194'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(618,'Hazelcast',10,'{''name'': ''Hazelcast'', ''qid'': ''Q17021540'', ''url'': ''https://www.wikidata.org/wiki/Q17021540'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(619,'Infinispan',2,'{''name'': ''Infinispan'', ''qid'': ''Q18152516'', ''url'': ''https://www.wikidata.org/wiki/Q18152516'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(620,'Nuxeo',10,'{''name'': ''Nuxeo'', ''qid'': ''Q2004521'', ''url'': ''https://www.wikidata.org/wiki/Q2004521'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(621,'ArangoDB',2,'{''name'': ''ArangoDB'', ''qid'': ''Q20072115'', ''url'': ''https://www.wikidata.org/wiki/Q20072115'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(622,'Eclipse Che',2,'{''name'': ''Eclipse Che'', ''qid'': ''Q25000883'', ''url'': ''https://www.wikidata.org/wiki/Q25000883'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(623,'Amazon S3',2,'{''name'': ''Amazon S3'', ''qid'': ''Q2593067'', ''url'': ''https://www.wikidata.org/wiki/Q2593067'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(624,'ClickHouse',2,'{''name'': ''ClickHouse'', ''qid'': ''Q27825826'', ''url'': ''https://www.wikidata.org/wiki/Q27825826'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(625,'MinIO',2,'{''name'': ''MinIO'', ''qid'': ''Q28956397'', ''url'': ''https://www.wikidata.org/wiki/Q28956397'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(626,'Elasticsearch',2,'{''name'': ''Elasticsearch'', ''qid'': ''Q3050461'', ''url'': ''https://www.wikidata.org/wiki/Q3050461'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(627,'XtraDB',2,'{''name'': ''XtraDB'', ''qid'': ''Q4021858'', ''url'': ''https://www.wikidata.org/wiki/Q4021858'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(628,'Keycloak',2,'{''name'': ''Keycloak'', ''qid'': ''Q42916195'', ''url'': ''https://www.wikidata.org/wiki/Q42916195'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(629,'Grafana',2,'{''name'': ''Grafana'', ''qid'': ''Q43399271'', ''url'': ''https://www.wikidata.org/wiki/Q43399271'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(630,'Mattermost',10,'{''name'': ''Mattermost'', ''qid'': ''Q55478510'', ''url'': ''https://www.wikidata.org/wiki/Q55478510'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(631,'Synapse',2,'{''name'': ''Synapse.org'', ''qid'': ''Q56328412'', ''url'': ''https://www.wikidata.org/wiki/Q56328412'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(632,'Cloud IAM',2,'{''name'': ''Cloud IAM'', ''qid'': ''Q59852253'', ''url'': ''https://www.wikidata.org/wiki/Q59852253'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(633,'Knative',10,'{''name'': ''Knative'', ''qid'': ''Q59905591'', ''url'': ''https://www.wikidata.org/wiki/Q59905591'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(634,'Apache Cassandra',2,'{''name'': ''Apache Cassandra'', ''qid'': ''Q616639'', ''url'': ''https://www.wikidata.org/wiki/Q616639'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(635,'Kubeflow',10,'{''name'': ''Kubeflow'', ''qid'': ''Q65048974'', ''url'': ''https://www.wikidata.org/wiki/Q65048974'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(636,'Qiskit',2,'{''name'': ''Qiskit'', ''qid'': ''Q70490607'', ''url'': ''https://www.wikidata.org/wiki/Q70490607'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(637,'Microsoft Azure',2,'{''name'': ''Microsoft Azure'', ''qid'': ''Q725967'', ''url'': ''https://www.wikidata.org/wiki/Q725967'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(638,'Strimzi',10,'{''name'': ''Strimzi'', ''qid'': ''Q72711423'', ''url'': ''https://www.wikidata.org/wiki/Q72711423'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(639,'Sematext',10,'{''name'': ''Sematext'', ''qid'': ''Q7449130'', ''url'': ''https://www.wikidata.org/wiki/Q7449130'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(640,'Eclipse hawkBit',2,'{''name'': ''Eclipse hawkBit'', ''qid'': ''Q76178253'', ''url'': ''https://www.wikidata.org/wiki/Q76178253'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(641,'Eclipse Ditto',2,'{''name'': ''Eclipse Ditto'', ''qid'': ''Q76178650'', ''url'': ''https://www.wikidata.org/wiki/Q76178650'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(642,'MariaDB',2,'{''name'': ''MariaDB'', ''qid'': ''Q787177'', ''url'': ''https://www.wikidata.org/wiki/Q787177'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(643,'Zadara',2,'{''name'': ''Zadara'', ''qid'': ''Q8064144'', ''url'': ''https://www.wikidata.org/wiki/Q8064144'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(644,'Istio',2,'{''name'': ''Istio'', ''qid'': ''Q88464464'', ''url'': ''https://www.wikidata.org/wiki/Q88464464'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(645,'Vault',2,'{''name'': ''Vault'', ''qid'': ''Q88664426'', ''url'': ''https://www.wikidata.org/wiki/Q88664426'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(646,'Apache Druid',2,'{''name'': ''Apache Druid'', ''qid'': ''Q89693799'', ''url'': ''https://www.wikidata.org/wiki/Q89693799'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(647,'etcd',2,'{''name'': ''etcd'', ''qid'': ''Q96324273'', ''url'': ''https://www.wikidata.org/wiki/Q96324273'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(648,'Traefik',8,'{''name'': ''Traefik'', ''qid'': ''Q96332968'', ''url'': ''https://www.wikidata.org/wiki/Q96332968'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(649,'IBM Cloud',2,'{''name'': ''IBM Cloud'', ''qid'': ''Q96381605'', ''url'': ''https://www.wikidata.org/wiki/Q96381605'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(650,'YugabyteDB',2,'{''name'': ''YugabyteDB'', ''qid'': ''Q97187861'', ''url'': ''https://www.wikidata.org/wiki/Q97187861'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(651,'CockroachDB',2,'{''name'': ''CockroachDB'', ''qid'': ''Q98731903'', ''url'': ''https://www.wikidata.org/wiki/Q98731903'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(652,'Jaeger',10,'{''name'': ''Jaeger'', ''qid'': ''Q98799449'', ''url'': ''https://www.wikidata.org/wiki/Q98799449'', ''score'': 1}','N','N','Y','N'); +INSERT INTO entities VALUES(607,'Oracle Hyperion|*',2,'{''qid'': ''Q1431991'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Oracle_Hyperion''}','Y','N','N','N'); +INSERT INTO entities VALUES(608,'z/VM',6,'{''qid'': ''Q1399696'', ''types'': [''Q9135'', ''Q1077480''], ''url'': ''http://dbpedia.org/resource/Z/VM''}','Y','N','N','N'); +INSERT INTO entities VALUES(609,'IIS|*',8,'{''qid'': ''Q11341'', ''types'': [''Q218616'', ''Q18287040''], ''url'': ''http://dbpedia.org/resource/Internet_Information_Services''}','Y','N','N','N'); +INSERT INTO entities VALUES(610,'Oracle Application Server|*',8,'{''qid'': ''Q2027912'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Server''}','Y','N','N','N'); +INSERT INTO entities VALUES(611,'instana',10,'{''qid'': ''Q107383927'', ''url'': ''https://www.wikidata.org/wiki/Q107383927''}','N','N','Y','N'); +INSERT INTO entities VALUES(612,'credstash',2,'{''qid'': ''Q107384165'', ''url'': ''https://www.wikidata.org/wiki/Q107384165''}','N','N','Y','N'); +INSERT INTO entities VALUES(613,'Snyk',2,'{''qid'': ''Q108282404'', ''url'': ''https://www.wikidata.org/wiki/Q108282404''}','N','N','Y','N'); +INSERT INTO entities VALUES(614,'Akka',2,'{''qid'': ''Q16002307'', ''url'': ''https://www.wikidata.org/wiki/Q16002307''}','N','N','Y','N'); +INSERT INTO entities VALUES(615,'Varnish',8,'{''qid'': ''Q1602447'', ''url'': ''https://www.wikidata.org/wiki/Q1602447''}','N','N','Y','N'); +INSERT INTO entities VALUES(616,'Datadog',10,'{''qid'': ''Q16248637'', ''url'': ''https://www.wikidata.org/wiki/Q16248637''}','N','N','Y','N'); +INSERT INTO entities VALUES(617,'API',1,'{''qid'': ''Q165194'', ''url'': ''https://www.wikidata.org/wiki/Q165194''}','N','N','Y','N'); +INSERT INTO entities VALUES(618,'Hazelcast',10,'{''qid'': ''Q17021540'', ''url'': ''https://www.wikidata.org/wiki/Q17021540''}','N','N','Y','N'); +INSERT INTO entities VALUES(619,'Infinispan',2,'{''qid'': ''Q18152516'', ''url'': ''https://www.wikidata.org/wiki/Q18152516''}','N','N','Y','N'); +INSERT INTO entities VALUES(620,'Nuxeo',10,'{''qid'': ''Q2004521'', ''url'': ''https://www.wikidata.org/wiki/Q2004521''}','N','N','Y','N'); +INSERT INTO entities VALUES(621,'ArangoDB',2,'{''qid'': ''Q20072115'', ''url'': ''https://www.wikidata.org/wiki/Q20072115''}','N','N','Y','N'); +INSERT INTO entities VALUES(622,'Eclipse Che',2,'{''qid'': ''Q25000883'', ''url'': ''https://www.wikidata.org/wiki/Q25000883''}','N','N','Y','N'); +INSERT INTO entities VALUES(623,'Amazon S3',2,'{''qid'': ''Q2593067'', ''url'': ''https://www.wikidata.org/wiki/Q2593067''}','N','N','Y','N'); +INSERT INTO entities VALUES(624,'ClickHouse',2,'{''qid'': ''Q27825826'', ''url'': ''https://www.wikidata.org/wiki/Q27825826''}','N','N','Y','N'); +INSERT INTO entities VALUES(625,'MinIO',2,'{''qid'': ''Q28956397'', ''url'': ''https://www.wikidata.org/wiki/Q28956397''}','N','N','Y','N'); +INSERT INTO entities VALUES(626,'Elasticsearch',2,'{''qid'': ''Q3050461'', ''url'': ''https://www.wikidata.org/wiki/Q3050461''}','N','N','Y','N'); +INSERT INTO entities VALUES(627,'XtraDB',2,'{''qid'': ''Q4021858'', ''url'': ''https://www.wikidata.org/wiki/Q4021858''}','N','N','Y','N'); +INSERT INTO entities VALUES(628,'Keycloak',2,'{''qid'': ''Q42916195'', ''url'': ''https://www.wikidata.org/wiki/Q42916195''}','N','N','Y','N'); +INSERT INTO entities VALUES(629,'Grafana',2,'{''qid'': ''Q43399271'', ''url'': ''https://www.wikidata.org/wiki/Q43399271''}','N','N','Y','N'); +INSERT INTO entities VALUES(630,'Mattermost',10,'{''qid'': ''Q55478510'', ''url'': ''https://www.wikidata.org/wiki/Q55478510''}','N','N','Y','N'); +INSERT INTO entities VALUES(631,'Synapse',2,'{''qid'': ''Q56328412'', ''url'': ''https://www.wikidata.org/wiki/Q56328412''}','N','N','Y','N'); +INSERT INTO entities VALUES(632,'Cloud IAM',2,'{''qid'': ''Q59852253'', ''url'': ''https://www.wikidata.org/wiki/Q59852253''}','N','N','Y','N'); +INSERT INTO entities VALUES(633,'Knative',10,'{''qid'': ''Q59905591'', ''url'': ''https://www.wikidata.org/wiki/Q59905591''}','N','N','Y','N'); +INSERT INTO entities VALUES(634,'Apache Cassandra',2,'{''qid'': ''Q616639'', ''url'': ''https://www.wikidata.org/wiki/Q616639''}','N','N','Y','N'); +INSERT INTO entities VALUES(635,'Kubeflow',10,'{''qid'': ''Q65048974'', ''url'': ''https://www.wikidata.org/wiki/Q65048974''}','N','N','Y','N'); +INSERT INTO entities VALUES(636,'Qiskit',2,'{''qid'': ''Q70490607'', ''url'': ''https://www.wikidata.org/wiki/Q70490607''}','N','N','Y','N'); +INSERT INTO entities VALUES(637,'Microsoft Azure',2,'{''qid'': ''Q725967'', ''url'': ''https://www.wikidata.org/wiki/Q725967''}','N','N','Y','N'); +INSERT INTO entities VALUES(638,'Strimzi',10,'{''qid'': ''Q72711423'', ''url'': ''https://www.wikidata.org/wiki/Q72711423''}','N','N','Y','N'); +INSERT INTO entities VALUES(639,'Sematext',10,'{''qid'': ''Q7449130'', ''url'': ''https://www.wikidata.org/wiki/Q7449130''}','N','N','Y','N'); +INSERT INTO entities VALUES(640,'Eclipse hawkBit',2,'{''qid'': ''Q76178253'', ''url'': ''https://www.wikidata.org/wiki/Q76178253''}','N','N','Y','N'); +INSERT INTO entities VALUES(641,'Eclipse Ditto',2,'{''qid'': ''Q76178650'', ''url'': ''https://www.wikidata.org/wiki/Q76178650''}','N','N','Y','N'); +INSERT INTO entities VALUES(642,'MariaDB',2,'{''qid'': ''Q787177'', ''url'': ''https://www.wikidata.org/wiki/Q787177''}','N','N','Y','N'); +INSERT INTO entities VALUES(643,'Zadara',2,'{''qid'': ''Q8064144'', ''url'': ''https://www.wikidata.org/wiki/Q8064144''}','N','N','Y','N'); +INSERT INTO entities VALUES(644,'Istio',2,'{''qid'': ''Q88464464'', ''url'': ''https://www.wikidata.org/wiki/Q88464464''}','N','N','Y','N'); +INSERT INTO entities VALUES(645,'Vault',2,'{''qid'': ''Q88664426'', ''url'': ''https://www.wikidata.org/wiki/Q88664426''}','N','N','Y','N'); +INSERT INTO entities VALUES(646,'Apache Druid',2,'{''qid'': ''Q89693799'', ''url'': ''https://www.wikidata.org/wiki/Q89693799''}','N','N','Y','N'); +INSERT INTO entities VALUES(647,'etcd',2,'{''qid'': ''Q96324273'', ''url'': ''https://www.wikidata.org/wiki/Q96324273''}','N','N','Y','N'); +INSERT INTO entities VALUES(648,'Traefik',8,'{''qid'': ''Q96332968'', ''url'': ''https://www.wikidata.org/wiki/Q96332968''}','N','N','Y','N'); +INSERT INTO entities VALUES(649,'IBM Cloud',2,'{''qid'': ''Q96381605'', ''url'': ''https://www.wikidata.org/wiki/Q96381605''}','N','N','Y','N'); +INSERT INTO entities VALUES(650,'YugabyteDB',2,'{''qid'': ''Q97187861'', ''url'': ''https://www.wikidata.org/wiki/Q97187861''}','N','N','Y','N'); +INSERT INTO entities VALUES(651,'CockroachDB',2,'{''qid'': ''Q98731903'', ''url'': ''https://www.wikidata.org/wiki/Q98731903''}','N','N','Y','N'); +INSERT INTO entities VALUES(652,'Jaeger',10,'{''qid'': ''Q98799449'', ''url'': ''https://www.wikidata.org/wiki/Q98799449''}','N','N','Y','N'); INSERT INTO entities VALUES(653,'Natural Programming Language',9,'{}','N','N','Y','N/A'); -INSERT INTO entities VALUES(654,'AcuCOBOL',9,'{''name'': ''ACUCOBOL'', ''qid'': ''Q288844'', ''url'': ''https://www.wikidata.org/wiki/Q288844'', ''score'': 1}','Y','N','N','N/A'); -INSERT INTO entities VALUES(655,'Ada',9,'{''name'': ''Ada'', ''qid'': ''Q154755'', ''url'': ''https://www.wikidata.org/wiki/Q154755'', ''score'': 1}','N','N','Y','N/A'); -INSERT INTO entities VALUES(656,'ADABAS',2,'{''name'': ''ADABAS'', ''qid'': ''Q346434'', ''url'': ''https://www.wikidata.org/wiki/Q346434'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(657,'ADSO',9,'{''name'': ''Adso'', ''qid'': ''Q4685839'', ''url'': ''https://www.wikidata.org/wiki/Q4685839'', ''score'': 1}','N','N','Y','N/A'); -INSERT INTO entities VALUES(658,'Ansible',2,'{''name'': ''Ansible'', ''qid'': ''Q2852503'', ''url'': ''https://www.wikidata.org/wiki/Q2852503'', ''score'': 1}','N','N','Y','Y'); -INSERT INTO entities VALUES(659,'Batch',9,'{''name'': ''batch file'', ''qid'': ''Q479833'', ''url'': ''https://www.wikidata.org/wiki/Q479833'', ''score'': 1}','N','N','Y','N/A'); -INSERT INTO entities VALUES(660,'Powershell',9,'{''name'': ''PowerShell'', ''qid'': ''Q840410'', ''url'': ''https://www.wikidata.org/wiki/Q840410'', ''score'': 1}','Y','N','N','N/A'); -INSERT INTO entities VALUES(661,'COM+',10,'{''name'': ''Microsoft Component Services'', ''qid'': ''Q9670606'', ''url'': ''https://www.wikidata.org/wiki/Q9670606'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(662,'Dataflex',9,'{''name'': ''DataFlex'', ''qid'': ''Q2391203'', ''url'': ''https://www.wikidata.org/wiki/Q2391203'', ''score'': 1}','Y','N','N','N/A'); -INSERT INTO entities VALUES(663,'DDS',9,'{''name'': ''Data distribution service'', ''qid'': ''Q1149607'', ''url'': ''https://www.wikidata.org/wiki/Q1149607'', ''score'': 1}','Y','N','N','N/A'); -INSERT INTO entities VALUES(664,'Forte',9,'{''name'': ''Forte 4GL'', ''qid'': ''Q3748867'', ''url'': ''https://www.wikidata.org/wiki/Q3748867'', ''score'': 1}','N','N','Y','N/A'); -INSERT INTO entities VALUES(665,'Foxpro',9,'{''name'': ''FoxPro'', ''qid'': ''Q2507721'', ''url'': ''https://www.wikidata.org/wiki/Q2507721'', ''score'': 1}','Y','N','N','N/A'); +INSERT INTO entities VALUES(654,'AcuCOBOL',9,'{''qid'': ''Q288844'', ''url'': ''https://www.wikidata.org/wiki/Q288844''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(655,'Ada',9,'{''qid'': ''Q154755'', ''url'': ''https://www.wikidata.org/wiki/Q154755''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(656,'ADABAS',2,'{''qid'': ''Q346434'', ''url'': ''https://www.wikidata.org/wiki/Q346434''}','N','N','Y','N'); +INSERT INTO entities VALUES(657,'ADSO',9,'{''qid'': ''Q4685839'', ''url'': ''https://www.wikidata.org/wiki/Q4685839''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(658,'Ansible',2,'{''qid'': ''Q2852503'', ''url'': ''https://www.wikidata.org/wiki/Q2852503''}','N','N','Y','Y'); +INSERT INTO entities VALUES(659,'Batch',9,'{''qid'': ''Q479833'', ''url'': ''https://www.wikidata.org/wiki/Q479833''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(660,'Powershell',9,'{''qid'': ''Q840410'', ''url'': ''https://www.wikidata.org/wiki/Q840410''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(661,'COM+',10,'{''qid'': ''Q9670606'', ''url'': ''https://www.wikidata.org/wiki/Q9670606''}','N','N','Y','N'); +INSERT INTO entities VALUES(662,'Dataflex',9,'{''qid'': ''Q2391203'', ''url'': ''https://www.wikidata.org/wiki/Q2391203''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(663,'DDS',9,'{''qid'': ''Q1149607'', ''url'': ''https://www.wikidata.org/wiki/Q1149607''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(664,'Forte',9,'{''qid'': ''Q3748867'', ''url'': ''https://www.wikidata.org/wiki/Q3748867''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(665,'Foxpro',9,'{''qid'': ''Q2507721'', ''url'': ''https://www.wikidata.org/wiki/Q2507721''}','Y','N','N','N/A'); INSERT INTO entities VALUES(666,'IBM DB2 Purescale',2,'{}','N','N','Y','N'); INSERT INTO entities VALUES(667,'IDMS DB',2,'{}','N','N','Y','N'); INSERT INTO entities VALUES(668,'IDMS DML',9,'{}','Y','N','N','N/A'); INSERT INTO entities VALUES(669,'Jaguar',8,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(670,'EAServer',8,'{''name'': ''Enterprise Application Server'', ''qid'': ''Q5816084'', ''url'': ''https://www.wikidata.org/wiki/Q5816084'', ''score'': 1}','Y','N','N','N'); -INSERT INTO entities VALUES(671,'Apache Cassandra',2,'{''name'': ''Apache Cassandra'', ''qid'': ''Q616639'', ''url'': ''https://www.wikidata.org/wiki/Q616639'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(672,'IBM Netezza',4,'{''name'': ''Netezza'', ''qid'': ''Q3874960'', ''url'': ''https://www.wikidata.org/wiki/Q3874960'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(673,'OpenEdge',9,'{''name'': ''OpenEdge Advanced Business Language'', ''qid'': ''Q1963461'', ''url'': ''https://www.wikidata.org/wiki/Q1963461'', ''score'': 1}','Y','N','N','N/A'); -INSERT INTO entities VALUES(674,'OpenROAD',9,'{''name'': ''OpenROAD'', ''qid'': ''Q2025504'', ''url'': ''https://www.wikidata.org/wiki/Q2025504'', ''score'': 1}','Y','N','N','N/A'); -INSERT INTO entities VALUES(675,'Oracle Reports',2,'{''name'': ''Oracle Reports'', ''qid'': ''Q4045946'', ''url'': ''https://www.wikidata.org/wiki/Q4045946'', ''score'': 1}','Y','N','N','N'); +INSERT INTO entities VALUES(670,'EAServer',8,'{''qid'': ''Q5816084'', ''url'': ''https://www.wikidata.org/wiki/Q5816084''}','Y','N','N','N'); +INSERT INTO entities VALUES(671,'Apache Cassandra',2,'{''qid'': ''Q616639'', ''url'': ''https://www.wikidata.org/wiki/Q616639''}','N','N','Y','N'); +INSERT INTO entities VALUES(672,'IBM Netezza',4,'{''qid'': ''Q3874960'', ''url'': ''https://www.wikidata.org/wiki/Q3874960''}','N','N','Y','N'); +INSERT INTO entities VALUES(673,'OpenEdge',9,'{''qid'': ''Q1963461'', ''url'': ''https://www.wikidata.org/wiki/Q1963461''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(674,'OpenROAD',9,'{''qid'': ''Q2025504'', ''url'': ''https://www.wikidata.org/wiki/Q2025504''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(675,'Oracle Reports',2,'{''qid'': ''Q4045946'', ''url'': ''https://www.wikidata.org/wiki/Q4045946''}','Y','N','N','N'); INSERT INTO entities VALUES(676,'SAP Replication Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(677,'Git',2,'{''name'': ''Git'', ''qid'': ''Q186055'', ''url'': ''https://www.wikidata.org/wiki/Q186055'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(678,'GitLab',2,'{''name'': ''GitLab'', ''qid'': ''Q16639197'', ''url'': ''https://www.wikidata.org/wiki/Q16639197'', ''score'': 1}','N','N','Y','N'); -INSERT INTO entities VALUES(679,'VSAM',2,'{''name'': ''Virtual Storage Access Method'', ''qid'': ''Q1514276'', ''url'': ''https://www.wikidata.org/wiki/Q1514276'', ''score'': 1}','Y','N','N','N'); +INSERT INTO entities VALUES(677,'Git',2,'{''qid'': ''Q186055'', ''url'': ''https://www.wikidata.org/wiki/Q186055''}','N','N','Y','N'); +INSERT INTO entities VALUES(678,'GitLab',2,'{''qid'': ''Q16639197'', ''url'': ''https://www.wikidata.org/wiki/Q16639197''}','N','N','Y','N'); +INSERT INTO entities VALUES(679,'VSAM',2,'{''qid'': ''Q1514276'', ''url'': ''https://www.wikidata.org/wiki/Q1514276''}','Y','N','N','N'); INSERT INTO entities VALUES(680,'Cloud<>Apache HTTP Server',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(681,'Cloud<>Windows|Windows Server',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(682,'Cloud<>MS SQL Server',2,'{}','Y','N','N','N'); @@ -918,14 +961,14 @@ INSERT INTO entities VALUES(687,'Cloud<>AWS RDS',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(688,'Cloud<>SAP HANA DB',2,'{}','Y','N','N','N'); INSERT INTO entities VALUES(689,'BMS Map',9,'{}','Y','N','N','N/A'); INSERT INTO entities VALUES(690,'DB400',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(691,'ILE',9,'{''name'': ''Integrated Language Environment'', ''qid'': ''Q16889435'', ''url'': ''https://www.wikidata.org/wiki/Q16889435'', ''score'': 1}','N','N','Y','N/A'); -INSERT INTO entities VALUES(692,'Integrated Data Store (IDS)',2,'{''name'': ''Integrated Data Store'', ''qid'': ''Q3799287'', ''url'': ''https://www.wikidata.org/wiki/Q3799287'', ''score'': 1}','Y','N','N','N'); -INSERT INTO entities VALUES(693,'ISAM',2,'{''name'': ''ISAM'', ''qid'': ''Q1154755'', ''url'': ''https://www.wikidata.org/wiki/Q1154755'', ''score'': 1}','N','N','Y','N'); +INSERT INTO entities VALUES(691,'ILE',9,'{''qid'': ''Q16889435'', ''url'': ''https://www.wikidata.org/wiki/Q16889435''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(692,'Integrated Data Store (IDS)',2,'{''qid'': ''Q3799287'', ''url'': ''https://www.wikidata.org/wiki/Q3799287''}','Y','N','N','N'); +INSERT INTO entities VALUES(693,'ISAM',2,'{''qid'': ''Q1154755'', ''url'': ''https://www.wikidata.org/wiki/Q1154755''}','N','N','Y','N'); INSERT INTO entities VALUES(694,'Oracle RDS',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(695,'SAP IQ',2,'{''name'': ''SAP IQ'', ''qid'': ''Q948492'', ''url'': ''https://www.wikidata.org/wiki/Q948492'', ''score'': 1}','Y','N','N','N'); +INSERT INTO entities VALUES(695,'SAP IQ',2,'{''qid'': ''Q948492'', ''url'': ''https://www.wikidata.org/wiki/Q948492''}','Y','N','N','N'); INSERT INTO entities VALUES(696,'Cloud<>Linux',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(697,'Apache Maven',2,'{''name'': ''Apache Maven'', ''qid'': ''Q139941'', ''url'': ''https://www.wikidata.org/wiki/Q139941'', ''score'': 1}','N','N','Y','Y'); -INSERT INTO entities VALUES(698,'IBM Basic Assembly Language (BAL)',9,'{''name'': ''IBM Basic assembly language'', ''qid'': ''Q5968762'', ''url'': ''https://www.wikidata.org/wiki/Q5968762'', ''score'': 1}','Y','N','N','N'); +INSERT INTO entities VALUES(697,'Apache Maven',2,'{''qid'': ''Q139941'', ''url'': ''https://www.wikidata.org/wiki/Q139941''}','N','N','Y','Y'); +INSERT INTO entities VALUES(698,'IBM Basic Assembly Language (BAL)',9,'{''qid'': ''Q5968762'', ''url'': ''https://www.wikidata.org/wiki/Q5968762''}','Y','N','N','N'); CREATE TABLE entity_mentions ( id integer PRIMARY KEY AUTOINCREMENT, entity_mention_name text NOT NULL, @@ -10146,6 +10189,91 @@ INSERT INTO openshift_images VALUES(50,'solr',426,NULL,NULL,11,NULL,NULL,NULL,NU INSERT INTO openshift_images VALUES(51,'odm',426,NULL,NULL,73,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/odm-dbserver/5d80f766702c566f4cbf46e6','App'); INSERT INTO openshift_images VALUES(52,'Apache Cassandra',434,NULL,NULL,634,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/datastax/cassandra/5ee857c969aea31642b67910','App'); INSERT INTO openshift_images VALUES(53,'Ansible Tower',434,NULL,NULL,5,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ansible-tower-38/ansible-tower-rhel7/5fa1c5d968d8b9a71232b1f7','App'); +INSERT INTO openshift_images VALUES (54, 'asterisk', 426, 'NULL', 'NULL', 14, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/citybaseinc/asterisk', 'App'); +INSERT INTO openshift_images VALUES (55, 'drupal', 426, 'NULL', 'NULL', 45, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/swsmirror/drupal', 'App'); +INSERT INTO openshift_images VALUES (56, 'elastic', 426, 'NULL', 'NULL', 47, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/kmamgain/elastic', 'App'); +INSERT INTO openshift_images VALUES (57, 'genymotion', 426, 'NULL', 'NULL', 54, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/alaska/genymotion', 'App'); +INSERT INTO openshift_images VALUES (58, 'hadoop', 426, 'NULL', 'NULL', 57, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/iguazio/hadoop', 'App'); +INSERT INTO openshift_images VALUES (59, 'neo4j', 426, 'NULL', 'NULL', 123, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/neo4j', 'App'); +INSERT INTO openshift_images VALUES (60, 'openldap', 426, 'NULL', 'NULL', 126, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/openldap', 'App'); +INSERT INTO openshift_images VALUES (61, 'openvpn', 426, 'NULL', 'NULL', 128, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/kubermatic/openvpn', 'App'); +INSERT INTO openshift_images VALUES (62, 'pentaho', 426, 'NULL', 'NULL', 150, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/hasni/pentaho', 'App'); +INSERT INTO openshift_images VALUES (63, 'redis', 426, 'NULL', 'NULL', 168, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/sameersbn/redis', 'App'); +INSERT INTO openshift_images VALUES (64, 'remedy', 426, 'NULL', 'NULL', 169, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/amosnl/remedy', 'App'); +INSERT INTO openshift_images VALUES (65, 'riak', 426, 'NULL', 'NULL', 170, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/dotabuff/riak', 'App'); +INSERT INTO openshift_images VALUES (66, 'sentry', 426, 'NULL', 'NULL', 180, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/app-sre/sentry', 'App'); +INSERT INTO openshift_images VALUES (67, 'sonarqube', 426, 'NULL', 'NULL', 186, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/gpte-devops-automation/sonarqube', 'App'); +INSERT INTO openshift_images VALUES (68, 'whois', 426, 'NULL', 'NULL', 212, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/westonsteimel/whois', 'App'); +INSERT INTO openshift_images VALUES (69, 'tableau', 426, 'NULL', 'NULL', 213, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/growthstack/tableau', 'App'); +INSERT INTO openshift_images VALUES (70, 'wordpress', 426, 'NULL', 'NULL', 245, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/redhattraining/wordpress', 'App'); +INSERT INTO openshift_images VALUES (71, 'sqlite', 426, 'NULL', 'NULL', 258, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/fale/sqlite', 'App'); +INSERT INTO openshift_images VALUES (72, 'glassfish', 426, 'NULL', 'NULL', 'NULL', 263, 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/mohamedf0/glassfish', 'App_Server'); +INSERT INTO openshift_images VALUES (73, 'lucee', 426, 'NULL', 'NULL', 'NULL', 271, 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/daemonite/lucee', 'App_Server'); +INSERT INTO openshift_images VALUES (74, 'awk', 426, 300, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/shenglai/awk', 'Lang'); +INSERT INTO openshift_images VALUES (75, 'basic', 426, 301, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/biocontainers/basic', 'Lang'); +INSERT INTO openshift_images VALUES (76, 'expect', 426, 315, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/baseimage/expect', 'Lang'); +INSERT INTO openshift_images VALUES (77, 'focus', 426, 321, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/biocontainers/focus', 'Lang'); +INSERT INTO openshift_images VALUES (78, 'fortran', 426, 322, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/eriktrent/fortran', 'Lang'); +INSERT INTO openshift_images VALUES (79, 'graphql', 426, 324, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/wasmoffload/graphql', 'Lang'); +INSERT INTO openshift_images VALUES (80, 'groovy', 426, 325, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/official-images/groovy', 'Lang'); +INSERT INTO openshift_images VALUES (81, 'jcl', 426, 338, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/jclaret/jcl', 'Lang'); +INSERT INTO openshift_images VALUES (82, 'scala', 426, 362, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/azavea/scala', 'Lang'); +INSERT INTO openshift_images VALUES (83, 'typescript', 426, 367, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/omnijarstudio/typescript', 'Lang'); +INSERT INTO openshift_images VALUES (84, 'bootstrap', 426, 'NULL', 377, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/kubevirtci/bootstrap', 'Lib'); +INSERT INTO openshift_images VALUES (85, 'log4j', 426, 'NULL', 394, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/crozzy/log4j', 'Lib'); +INSERT INTO openshift_images VALUES (86, 'struts', 426, 'NULL', 402, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/arifulhuq/struts', 'Lib'); +INSERT INTO openshift_images VALUES (87, 'angularjs', 426, 'NULL', 406, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/amaljose/angularjs', 'Lib'); +INSERT INTO openshift_images VALUES (88, 'react', 426, 'NULL', 413, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/profects/react', 'Lib'); +INSERT INTO openshift_images VALUES (89, 'android', 418, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/bitriseio/android', 'Os'); +INSERT INTO openshift_images VALUES (90, 'dart', 421, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/biocontainers/dart', 'Os'); +INSERT INTO openshift_images VALUES (91, 'centos', 427, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/centos/centos', 'Os'); +INSERT INTO openshift_images VALUES (92, 'debian', 429, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/official-images/debian', 'Os'); +INSERT INTO openshift_images VALUES (93, 'opensuse', 431, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/wstein/opensuse', 'Os'); +INSERT INTO openshift_images VALUES (94, 'ubuntu', 436, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/tamr/ubuntu', 'Os'); +INSERT INTO openshift_images VALUES (95, 'fedora', 453, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/fedora/fedora', 'Os'); +INSERT INTO openshift_images VALUES (96, 'ado', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 488, 'NULL', 'https://quay.io/repository/scottlezberg/ado', 'Runlib'); +INSERT INTO openshift_images VALUES (97, 'flash', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 504, 'https://quay.io/repository/biocontainers/flash', 'Runtime'); +INSERT INTO openshift_images VALUES (98, 'database', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/deisci/database', 'Technology'); +INSERT INTO openshift_images VALUES (99, 'webtop', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/linuxserver.io/webtop', 'Technology'); +INSERT INTO openshift_images VALUES (100, 'utility', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/theiagen/utility', 'Technology'); +INSERT INTO openshift_images VALUES (101, 'windows', 580, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/mhallin/windows', 'Os'); +INSERT INTO openshift_images VALUES (102, 'java', 426, 584, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/tamr/java', 'Lang'); +INSERT INTO openshift_images VALUES (103, 'python', 426, 587, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/python', 'Lang'); +INSERT INTO openshift_images VALUES (104, 'instana', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 611, 'https://quay.io/repository/yaoyao/instana', 'Runtime'); +INSERT INTO openshift_images VALUES (105, 'credstash', 426, 'NULL', 'NULL', 612, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/safesoftware/credstash', 'App'); +INSERT INTO openshift_images VALUES (106, 'snyk', 426, 'NULL', 'NULL', 613, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/exd_infra_plts_cip/snyk', 'App'); +INSERT INTO openshift_images VALUES (107, 'akka', 426, 'NULL', 'NULL', 614, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/j0zi/akka', 'App'); +INSERT INTO openshift_images VALUES (108, 'varnish', 426, 'NULL', 'NULL', 'NULL', 615, 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/api-platform/varnish', 'App_Server'); +INSERT INTO openshift_images VALUES (109, 'datadog', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 616, 'https://quay.io/repository/blondie/datadog', 'Runtime'); +INSERT INTO openshift_images VALUES (110, 'api', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/infrabox/api', 'Technology'); +INSERT INTO openshift_images VALUES (111, 'hazelcast', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 618, 'https://quay.io/repository/hazelcast_cloud/hazelcast', 'Runtime'); +INSERT INTO openshift_images VALUES (112, 'infinispan', 426, 'NULL', 'NULL', 619, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/operatorhubio/infinispan', 'App'); +INSERT INTO openshift_images VALUES (113, 'nuxeo', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 620, 'https://quay.io/repository/swsmirror/nuxeo', 'Runtime'); +INSERT INTO openshift_images VALUES (114, 'arangodb', 426, 'NULL', 'NULL', 621, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/swsmirror/arangodb', 'App'); +INSERT INTO openshift_images VALUES (115, 'clickhouse', 426, 'NULL', 'NULL', 624, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/operatorhubio/clickhouse', 'App'); +INSERT INTO openshift_images VALUES (116, 'minio', 426, 'NULL', 'NULL', 625, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/minio/minio', 'App'); +INSERT INTO openshift_images VALUES (117, 'elasticsearch', 426, 'NULL', 'NULL', 626, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/fluentd_elasticsearch/elasticsearch', 'App'); +INSERT INTO openshift_images VALUES (118, 'keycloak', 426, 'NULL', 'NULL', 628, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/keycloak/keycloak', 'App'); +INSERT INTO openshift_images VALUES (119, 'grafana', 426, 'NULL', 'NULL', 629, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/tamr/grafana', 'App'); +INSERT INTO openshift_images VALUES (120, 'mattermost', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 630, 'https://quay.io/repository/jostone/mattermost', 'Runtime'); +INSERT INTO openshift_images VALUES (121, 'synapse', 426, 'NULL', 'NULL', 631, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/dockernohub/synapse', 'App'); +INSERT INTO openshift_images VALUES (122, 'kubeflow', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 635, 'https://quay.io/repository/operatorhubio/kubeflow', 'Runtime'); +INSERT INTO openshift_images VALUES (123, 'sematext', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 639, 'https://quay.io/repository/operatorhubio/sematext', 'Runtime'); +INSERT INTO openshift_images VALUES (124, 'mariadb', 426, 'NULL', 'NULL', 642, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/metal3-io/mariadb', 'App'); +INSERT INTO openshift_images VALUES (125, 'istio', 426, 'NULL', 'NULL', 644, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/aspenmesh/istio', 'App'); +INSERT INTO openshift_images VALUES (126, 'vault', 426, 'NULL', 'NULL', 645, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/cybozu/vault', 'App'); +INSERT INTO openshift_images VALUES (127, 'etcd', 426, 'NULL', 'NULL', 647, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/coreos/etcd', 'App'); +INSERT INTO openshift_images VALUES (128, 'traefik', 426, 'NULL', 'NULL', 'NULL', 648, 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/widen/traefik', 'App_Server'); +INSERT INTO openshift_images VALUES (129, 'yugabytedb', 426, 'NULL', 'NULL', 650, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/marco_antonioni/yugabytedb', 'App'); +INSERT INTO openshift_images VALUES (130, 'cockroachdb', 426, 'NULL', 'NULL', 651, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/helmoperators/cockroachdb', 'App'); +INSERT INTO openshift_images VALUES (131, 'jaeger', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 652, 'https://quay.io/repository/operatorhubio/jaeger', 'Runtime'); +INSERT INTO openshift_images VALUES (132, 'powershell', 426, 660, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/powerdock/powershell', 'Lang'); +INSERT INTO openshift_images VALUES (133, 'dds', 426, 663, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/havoc/dds', 'Lang'); +INSERT INTO openshift_images VALUES (134, 'git', 426, 'NULL', 'NULL', 677, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/sisense/git', 'App'); +INSERT INTO openshift_images VALUES (135, 'gitlab', 426, 'NULL', 'NULL', 678, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/sameersbn/gitlab', 'App'); +INSERT INTO openshift_images VALUES (136, 'freebsd', 447, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/uchida/freebsd', 'Os'); +INSERT INTO openshift_images VALUES (137, 'openedge', 426, 673, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/g_querret/openedge', 'Lang'); + CREATE TABLE operator_images ( id integer PRIMARY KEY AUTOINCREMENT, container_name text NOT NULL, @@ -10232,6 +10360,131 @@ INSERT INTO operator_images VALUES(60,'IBM Cloud Operator',426,NULL,NULL,649,NUL INSERT INTO operator_images VALUES(61,'Yugabyte Operator',426,NULL,NULL,650,NULL,NULL,NULL,NULL,'quay.io/yugabyte/yugabytedb-operator','https://github.com/yugabyte/yugabyte-operator',''); INSERT INTO operator_images VALUES(62,'CockroachDB',426,NULL,NULL,651,NULL,NULL,NULL,NULL,'quay.io/helmoperators/cockroachdb:v3.0.7','https://github.com/dmesser/cockroachdb-operator',''); INSERT INTO operator_images VALUES(63,'Community Jaeger Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,652,'docker.io/jaegertracing/jaeger-operator:1.11.1','https://github.com/jaegertracing/jaeger-operator',''); +INSERT INTO operator_images VALUES (64, 'IoT simulator', 426, 'NULL', 'NULL', 46, 'NULL', 'NULL', 'NULL', 'NULL', '[''ctron/iot-simulator-operator:0.1'']', 'https://github.com/ctron/iot-simulator-operator', ''); +INSERT INTO operator_images VALUES (65, 'Elasticsearch (ECK) Operator', 426, 'NULL', 'NULL', 47, 'NULL', 'NULL', 'NULL', 'NULL', '[''docker.elastic.co/eck/eck-operator:2.2.0'']', 'https://github.com/elastic/cloud-on-k8s', ''); +INSERT INTO operator_images VALUES (66, 'Elasticsearch Phenix Operator', 426, 'NULL', 'NULL', 47, 'NULL', 'NULL', 'NULL', 'NULL', '[''carrefourphx/elastic-phenix-operator:0.1.0'']', 'https://github.com/Carrefour-Group/elastic-phenix-operator', ''); +INSERT INTO operator_images VALUES (67, 'Logging Operator', 426, 'NULL', 'NULL', 47, 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/opstree/logging-operator:v0.2.0'']', 'https://github.com/OT-CONTAINER-KIT/logging-operator', ''); +INSERT INTO operator_images VALUES (68, 'AWS Controllers for Kubernetes - Amazon ElastiCache', 426, 'NULL', 'NULL', 47, 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/elasticache-controller:v0.0.20'']', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images VALUES (69, 'Elasticsearch Index Operator', 426, 'NULL', 'NULL', 47, 'NULL', 'NULL', 'NULL', 'NULL', '[''cloudoperators/esindex-operator:0.1.0'']', 'https://github.com/IBM/esindex-operator', ''); +INSERT INTO operator_images VALUES (70, 'Prometheus Exporter Operator', 426, 'NULL', 'NULL', 47, 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/3scale/prometheus-exporter-operator:v0.2.4'']', 'https://github.com/3scale/prometheus-exporter-operator', ''); +INSERT INTO operator_images VALUES (71, 'Kong Operator', 426, 'NULL', 'NULL', 88, 'NULL', 'NULL', 'NULL', 'NULL', '[''kong/kong-operator:v0.9.0'']', 'https://github.com/kong/kong-operator', ''); +INSERT INTO operator_images VALUES (72, 'MongoDB Operator', 426, 'NULL', 'NULL', 116, 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/opstree/mongodb-operator:v0.3.0'']', 'https://github.com/ot-container-kit/mongodb-operator', ''); +INSERT INTO operator_images VALUES (73, 'MongoDB Atlas Operator', 426, 'NULL', 'NULL', 116, 'NULL', 'NULL', 'NULL', 'NULL', '[''mongodb/mongodb-atlas-kubernetes-operator:1.0.0'']', '', ''); +INSERT INTO operator_images VALUES (74, 'Percona Distribution for MongoDB Operator', 426, 'NULL', 'NULL', 116, 'NULL', 'NULL', 'NULL', 'NULL', '[''percona/percona-server-mongodb-operator:1.11.0'']', 'https://github.com/percona/percona-server-mongodb-operator', ''); +INSERT INTO operator_images VALUES (75, 'Percona Distribution for MySQL Operator', 426, 'NULL', 'NULL', 122, 'NULL', 'NULL', 'NULL', 'NULL', '[''percona/percona-xtradb-cluster-operator:1.10.0'']', 'https://github.com/percona/percona-xtradb-cluster-operator', ''); +INSERT INTO operator_images VALUES (76, 'PlanetScale Operator for Vitess', 426, 'NULL', 'NULL', 122, 'NULL', 'NULL', 'NULL', 'NULL', '[''registry.connect.redhat.com/planetscale/operator:0.1.8'']', '', ''); +INSERT INTO operator_images VALUES (77, 'Percona Operator for PostgreSQL', 426, 'NULL', 'NULL', 157, 'NULL', 'NULL', 'NULL', 'NULL', '[''percona/percona-postgresql-operator:1.2.0-postgres-operator'']', 'https://github.com/percona/percona-postgresql-operator', ''); +INSERT INTO operator_images VALUES (78, 'PostgreSQL Operator by Dev4Ddevs.com', 426, 'NULL', 'NULL', 157, 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/dev4devs-com/postgresql-operator:0.1.1'']', 'https://github.com/dev4devs-com/postgresql-operator', ''); +INSERT INTO operator_images VALUES (79, 'Crunchy Postgres for Kubernetes', 426, 'NULL', 'NULL', 157, 'NULL', 'NULL', 'NULL', 'NULL', '[''registry.developers.crunchydata.com/crunchydata/postgres-operator:ubi8-5.1.1-0'']', 'https://github.com/CrunchyData/postgres-operator', ''); +INSERT INTO operator_images VALUES (80, 'EDB Postgres for Kubernetes', 426, 'NULL', 'NULL', 157, 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/enterprisedb/cloud-native-postgresql@sha256:01bfdf40764c47db948c68dab2364b22c586f16a0300dac315c0e0e9af86fea4'']', '', ''); +INSERT INTO operator_images VALUES (81, 'Postgres-Operator', 426, 'NULL', 'NULL', 157, 'NULL', 'NULL', 'NULL', 'NULL', '[''registry.opensource.zalan.do/acid/postgres-operator:v1.4.0'']', 'https://github.com/zalando/postgres-operator', ''); +INSERT INTO operator_images VALUES (82, 'Ext Postgres Operator', 426, 'NULL', 'NULL', 157, 'NULL', 'NULL', 'NULL', 'NULL', '[''movetokube/postgres-operator:0.4.1'']', 'https://github.com/movetokube/postgres-operator', ''); +INSERT INTO operator_images VALUES (83, 'Robin Cloud Native Storage', 426, 'NULL', 'NULL', 157, 'NULL', 'NULL', 'NULL', 'NULL', '[''robinsys/robin-operator:5.3.2-59'']', '', ''); +INSERT INTO operator_images VALUES (84, 'Redis Enterprise', 426, 'NULL', 'NULL', 168, 'NULL', 'NULL', 'NULL', 'NULL', '[''redislabs/operator-internal:562_ee119ea'']', '', ''); +INSERT INTO operator_images VALUES (85, 'Splunk Operator', 426, 'NULL', 'NULL', 188, 'NULL', 'NULL', 'NULL', 'NULL', '[]', '', ''); +INSERT INTO operator_images VALUES (86, 'Encrypted Images Key Syncer Helm Operator', 426, 'NULL', 'NULL', 209, 'NULL', 'NULL', 'NULL', 'NULL', '[''docker.io/lumjjb/enc-key-sync-operator:v0.0.1'']', 'https://github.com/IBM/k8s-enc-image-operator', ''); +INSERT INTO operator_images VALUES (87, 'Joget DX on Apache Tomcat', 426, 'NULL', 'NULL', 'NULL', 260, 'NULL', 'NULL', 'NULL', '[''jogetworkflow/joget-tomcat-operator:latest'']', 'https://github.com/jogetworkflow/', ''); +INSERT INTO operator_images VALUES (88, 'APIcast', 426, 'NULL', 'NULL', 'NULL', 274, 'NULL', 'NULL', 'NULL', '[''quay.io/3scale/apicast-operator:v0.4.0'']', 'https://github.com/3scale/apicast-operator', ''); +INSERT INTO operator_images VALUES (89, 'Spark Operator', 426, 'NULL', 'NULL', 'NULL', 280, 'NULL', 'NULL', 'NULL', '[''gcr.io/spark-operator/spark-operator:v2.4.0-v1beta1-latest'']', 'https://github.com/GoogleCloudPlatform/spark-on-k8s-operator', ''); +INSERT INTO operator_images VALUES (90, 'Kubestone', 426, 'NULL', 'NULL', 'NULL', 280, 'NULL', 'NULL', 'NULL', '[''xridge/kubestone:v0.4.0'']', 'https://github.com/xridge/kubestone', ''); +INSERT INTO operator_images VALUES (91, 'Alvearie Imaging Ingestion Operator', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''alvearie/imaging-ingestion-operator:0.0.3'']', 'https://github.com/Alvearie/imaging-ingestion', ''); +INSERT INTO operator_images VALUES (92, 'DataStax Kubernetes Operator for Apache Cassandra', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''k8ssandra/cass-operator:v1.10.4'']', 'https://github.com/k8ssandra/cass-operator', ''); +INSERT INTO operator_images VALUES (93, 'Qserv operator', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''qserv/qserv-operator:2022.1.1-rc1'']', 'https://github.com/lsst/qserv-operator', ''); +INSERT INTO operator_images VALUES (94, 'Prometheus Operator', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/prometheus-operator/prometheus-operator:v0.47.0'']', 'https://github.com/prometheus-operator/prometheus-operator', ''); +INSERT INTO operator_images VALUES (95, 'Rook-Ceph', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''rook/ceph:v1.1.1'']', 'https://github.com/rook/rook', ''); +INSERT INTO operator_images VALUES (96, 'Argo CD', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/argoprojlabs/argocd-operator@sha256:f6fc8c310ff6c86d9e0b5acbc16de7dc14d0f5dd813094e380d636482bccb090'']', 'https://github.com/argoproj-labs/argocd-operator', ''); +INSERT INTO operator_images VALUES (97, 'Starboard Operator', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''docker.io/aquasec/starboard-operator:0.15.6'']', 'https://github.com/aquasecurity/starboard', ''); +INSERT INTO operator_images VALUES (98, 'TiDB Operator', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''pingcap/tidb-operator:v1.3.1'']', 'https://github.com/pingcap/tidb-operator', ''); +INSERT INTO operator_images VALUES (99, 'Altinity Operator for ClickHouse', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''altinity/clickhouse-operator:0.18.3'']', 'https://github.com/altinity/clickhouse-operator', ''); +INSERT INTO operator_images VALUES (100, 'Flux', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''ghcr.io/fluxcd/source-controller:v0.24.4'']', '', ''); +INSERT INTO operator_images VALUES (101, 'RocketMQ Operator', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''apacherocketmq/rocketmq-operator:0.2.1'']', 'https://github.com/apache/rocketmq-operator', ''); +INSERT INTO operator_images VALUES (102, 'Falco Operator', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''docker.io/falcosecurity/falco-operator-helm:0.7.6'']', 'https://github.com/falcosecurity/falco-operator/tree/helm-based-operator', ''); +INSERT INTO operator_images VALUES (103, 'Lightbend Console Operator', 426, 306, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''lightbend-docker-registry.bintray.io/lightbend/console-operator:1.2.3'']', 'https://github.com/lightbend/console-charts/tree/master/operator', ''); +INSERT INTO operator_images VALUES (104, 'External Secrets Operator', 426, 323, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''ghcr.io/external-secrets/external-secrets-helm-operator:v0.5.7'']', 'https://github.com/external-secrets/external-secrets-helm-operator', ''); +INSERT INTO operator_images VALUES (105, 'Intel Device Plugins Operator', 426, 323, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''intel/intel-deviceplugin-operator:0.24.0'']', 'https://github.com/intel/intel-device-plugins-for-kubernetes', ''); +INSERT INTO operator_images VALUES (106, 'silicom-sts-operator', 426, 323, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/silicom/sts-operator:v0.0.1'']', 'github.com/silicomdk/sts-operator', ''); +INSERT INTO operator_images VALUES (107, 'API Operator for Kubernetes', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''wso2/k8s-api-operator:2.0.0'']', 'https://github.com/wso2/k8s-api-operator', ''); +INSERT INTO operator_images VALUES (108, 'KEDA', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''ghcr.io/kedacore/keda-olm-operator:2.7.1'']', 'https://github.com/kedacore/keda-olm-operator', ''); +INSERT INTO operator_images VALUES (109, 'WSO2 API Manager Operator for Kubernetes', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''wso2/k8s-wso2am-operator:1.1.0'']', 'https://github.com/wso2/k8s-wso2am-operator', ''); +INSERT INTO operator_images VALUES (110, 'AWS Controllers for Kubernetes - Amazon API Gateway v2', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/apigatewayv2-controller:v0.1.2'']', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images VALUES (111, 'AWS Controllers for Kubernetes - Amazon Application Auto Scaling', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/applicationautoscaling-controller:v0.2.10'']', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images VALUES (112, 'AWS Controllers for Kubernetes - Amazon DynamoDB', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/dynamodb-controller:v0.1.1'']', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images VALUES (113, 'AWS Controllers for Kubernetes - Amazon EC2', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/ec2-controller:v0.0.15'']', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images VALUES (114, 'AWS Controllers for Kubernetes - Amazon ECR', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/ecr-controller:v0.1.4'']', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images VALUES (115, 'AWS Controllers for Kubernetes - Amazon EKS', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/eks-controller:v0.1.3'']', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images VALUES (116, 'AWS Controllers for Kubernetes - Amazon EMR on EKS', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/emrcontainers-controller:v0.0.4'']', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images VALUES (117, 'AWS Controllers for Kubernetes - Amazon IAM', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/iam-controller:v0.0.18'']', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images VALUES (118, 'AWS Controllers for Kubernetes - Amazon KMS', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/kms-controller:v0.0.18'']', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images VALUES (119, 'AWS Controllers for Kubernetes - Amazon Lambda', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/lambda-controller:v0.0.16'']', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images VALUES (120, 'AWS Controllers for Kubernetes - Amazon MQ', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/mq-controller:v0.0.19'']', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images VALUES (121, 'AWS Controllers for Kubernetes - Amazon OpenSearch Service', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/opensearchservice-controller:v0.0.13'']', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images VALUES (122, 'AWS Controllers for Kubernetes - Amazon RDS', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/rds-controller:v0.0.27'']', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images VALUES (123, 'AWS Controllers for Kubernetes - Amazon S3', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/s3-controller:v0.1.3'']', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images VALUES (124, 'AWS Controllers for Kubernetes - Amazon SageMaker', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/sagemaker-controller:v0.3.3'']', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images VALUES (125, 'Kubemq Enterprise Operator', 426, 355, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''docker.io/kubemq/kubemq-operator:latest'']', 'https://github.com/kubemq-io/kubemq-operator', ''); +INSERT INTO operator_images VALUES (126, 'Apicurio Registry Operator', 426, 355, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/apicurio/apicurio-registry-operator:1.0.0'']', 'https://github.com/Apicurio/apicurio-registry-operator', ''); +INSERT INTO operator_images VALUES (127, 'GitLab', 426, 360, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''registry.gitlab.com/gitlab-org/cloud-native/gitlab-operator:0.6.3'']', 'https://gitlab.com/gitlab-org/cloud-native/gitlab-operator', ''); +INSERT INTO operator_images VALUES (128, 'GitLab Runner', 426, 360, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''registry.gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator/gitlab-runner-operator:v1.9.0'']', 'https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator', ''); +INSERT INTO operator_images VALUES (129, 'nfd-operator', 426, 362, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''k8s.gcr.io/nfd/node-feature-discovery-operator:v0.5.0-minimal'']', 'https://github.com/kubernetes-sigs/node-feature-discovery-operator', ''); +INSERT INTO operator_images VALUES (130, 'Appsody Operator', 426, 364, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''appsody/application-operator:0.6.0'']', 'https://github.com/appsody/appsody-operator', ''); +INSERT INTO operator_images VALUES (131, 'Runtime Component Operator', 426, 364, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''applicationstacks/operator:0.7.0'']', 'https://github.com/application-stacks/runtime-component-operator', ''); +INSERT INTO operator_images VALUES (132, 'Open Liberty Operator', 426, 'NULL', 398, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''openliberty/operator:0.7.0'']', 'https://github.com/OpenLiberty/open-liberty-operator', ''); +INSERT INTO operator_images VALUES (133, 'Kogito', 426, 'NULL', 398, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/kiegroup/kogito-operator:1.23.0'']', 'https://github.com/kiegroup/kogito-operator', ''); +INSERT INTO operator_images VALUES (134, 'Operator for Apache CouchDB', 424, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''icr.io/cpopen/couchdb-operator@sha256:a99142f091fd9067d77a2690ab8363921fb721ea784449c73e302c559e0cbb18'', ''quay.io/opencloudio/couchdb3@sha256:f660ef65e9f42c19106931aefa194df7c4aebad4b1dd56cef8ce89acb2b7b2f4'', ''quay.io/opencloudio/couchdb-operator-mgmt@sha256:5dd8bd685e93ae657e3ca15052dc86aa0dc92a346e14c7804af394528a62ace6'']', '', ''); +INSERT INTO operator_images VALUES (135, 'Composable', 424, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''cloudoperators/composable-controller:0.1.3'']', 'https://github.com/IBM/composable', ''); +INSERT INTO operator_images VALUES (136, 'IBM COS Bucket Operator', 424, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''cloudoperators/cosbucket-operator:0.1.0'']', 'https://github.com/IBM/cos-bucket-operator', ''); +INSERT INTO operator_images VALUES (137, 'Event Streams Topic', 424, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''cloudoperators/event-streams-topic:0.1.1'']', 'https://github.com/IBM/event-streams-topic', ''); +INSERT INTO operator_images VALUES (138, 'Hybrid Application Model Operator', 424, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/hybridappio/ham-deploy:0.1.0'']', 'https://github.com/hybridapp-io/ham-deploy', ''); +INSERT INTO operator_images VALUES (139, 'IBM Application Gateway Operator', 424, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''ibmcom/ibm-application-gateway-operator:22.3.0'']', 'https://github.com/IBM-Security/ibm-application-gateway-operator', ''); +INSERT INTO operator_images VALUES (140, 'IBM block storage CSI driver operator', 424, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''ibmcom/ibm-block-csi-operator:1.9.0'']', 'https://github.com/IBM/ibm-block-csi-operator', ''); +INSERT INTO operator_images VALUES (141, 'Ibm Quantum Operator', 424, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/application/husky_parul/ibm-quantum-operator'']', 'https://github.com/redhat-et/ibm-quantum-operator', ''); +INSERT INTO operator_images VALUES (142, 'IBM Security Verify Access Operator', 424, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''ibmcom/verify-access-operator:21.10.0'']', 'https://github.com/IBM-Security/verify-access-operator', ''); +INSERT INTO operator_images VALUES (143, 'QiskitPlayground', 424, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''docker.io/qiskit/operator:0.1'']', 'https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/kubernetes-qiskit-operator', ''); +INSERT INTO operator_images VALUES (144, 'Nexus Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 481, 'NULL', 'NULL', '[''quay.io/m88i/nexus-operator:0.6.0'']', 'https://github.com/m88i/nexus-operator', ''); +INSERT INTO operator_images VALUES (145, 'Cluster Manager', 426, 'NULL', 'NULL', 'NULL', 'NULL', 481, 'NULL', 'NULL', '[''quay.io/open-cluster-management/registration-operator:v0.7.0'']', 'https://github.com/open-cluster-management-io/registration-operator', ''); +INSERT INTO operator_images VALUES (146, 'Submariner', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''quay.io/submariner/submariner-operator:0.11.0'']', 'https://github.com/submariner-io/submariner-operator', ''); +INSERT INTO operator_images VALUES (147, 'Upbound Universal Crossplane (UXP)', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''upbound/uxp-bootstrapper'']', 'https://github.com/upbound/universal-crossplane', ''); +INSERT INTO operator_images VALUES (148, 'BeeGFS CSI Driver', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''netapp/beegfs-csi-driver-operator:v1.2.2'']', 'https://github.com/netapp/beegfs-csi-driver', ''); +INSERT INTO operator_images VALUES (149, 'cluster-impairment-operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''quay.io/redhat-performance/cluster-impairment-operator:1.0.4'']', 'https://github.com/redhat-performance/cluster-impairment-operator', ''); +INSERT INTO operator_images VALUES (150, 'Kogito Knative Eventing Source', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''gcr.io/knative-releases/knative.dev/eventing-kogito/cmd/controller:v1.2.0'']', 'https://github.com/knative-sandbox/eventing-kogito', ''); +INSERT INTO operator_images VALUES (151, 'k8gb', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''absaoss/k8gb:v0.9.0'']', 'https://github.com/k8gb-io/k8gb', ''); +INSERT INTO operator_images VALUES (152, 'Kubernetes NMState Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''quay.io/nmstate/kubernetes-nmstate-operator:v0.47.0'']', 'https://github.com/nmstate/kubernetes-nmstate', ''); +INSERT INTO operator_images VALUES (153, 'MARIN3R', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''quay.io/3scale/marin3r'']', 'https://github.com/3scale-ops/marin3r', ''); +INSERT INTO operator_images VALUES (154, 'MetalLB Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''quay.io/metallb/metallb-operator'']', 'https://github.com/metallb/metallb-operator', ''); +INSERT INTO operator_images VALUES (155, 'NetObserv Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''quay.io/netobserv/network-observability-operator:0.1.2'']', 'https://github.com/netobserv/network-observability-operator', ''); +INSERT INTO operator_images VALUES (156, 'NeuVector Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''registry.neuvector.com/public/operator:0.1.2'']', 'https://github.com/neuvector/neuvector-operator', ''); +INSERT INTO operator_images VALUES (157, 'Network Service Mesh Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''quay.io/acmenezes/nsm-operator:v0.0.1'']', 'https://github.com/acmenezes/nsm-operator', ''); +INSERT INTO operator_images VALUES (158, 'Prisma Cloud Compute Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''quay.io/prismacloud/pcc-operator@sha256:b8fcfbd6c51286c874e00db1bd35523386cec406fa4050ef44c0a887730cf9b8'']', 'https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator', ''); +INSERT INTO operator_images VALUES (159, 'Routernetes', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''quay.io/routernetes/routernetes-operator:0.0.4'']', 'https://github.com/routernetes/routernetes-operator', ''); +INSERT INTO operator_images VALUES (160, 'skydive-operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''docker.io/skydive/skydive-operator:0.0.50'']', 'https://github.com/skydive-project/skydive-golang-operator', ''); +INSERT INTO operator_images VALUES (161, 'Tf Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''docker.io/tungstenfabric/tf-operator:latest'']', 'https://github.com/tungstenfabric/tf-operator', ''); +INSERT INTO operator_images VALUES (162, 'Anchore Engine Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 503, '[''docker.io/anchore/engine-operator:v0.1.3'']', 'https://github.com/anchore/engine-operator', ''); +INSERT INTO operator_images VALUES (163, 'Carbonetes Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 503, '[''docker.io/carbonetes/operator:1.0.4'']', 'https://github.com/carbonetes/carbonetes-analyzer', ''); +INSERT INTO operator_images VALUES (164, 'Multi-Cluster Application Dispatcher', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[]', '', ''); +INSERT INTO operator_images VALUES (165, 'VerticaDB Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''docker.io/vertica/verticadb-operator:1.5.0'']', 'https://github.com/vertica/vertica-kubernetes', ''); +INSERT INTO operator_images VALUES (166, 'Couchbase Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''registry.hub.docker.com/couchbase/operator:2.3.0'']', '', ''); +INSERT INTO operator_images VALUES (167, 'Hazelcast Platform Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''docker.io/hazelcast/hazelcast-platform-operator:5.3'']', '', ''); +INSERT INTO operator_images VALUES (168, 'Sosivio Autonomuous Cloud Native', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/sosivio/sosivio-operator:v1.3.1-76'', ''quay.io/sosivio/sosivio-operator@sha256:54833c7fc78070e3215dafc4a90b44fb0191278f22f416fdda4ebb0b30baf3ca'', ''quay.io/sosivio/kube-rbac-proxy@sha256:34e8724e0f47e31eb2ec3279ac398b657db5f60f167426ee73138e2e84af6486'', ''release.sosiv.io/nsqd@sha256:1a87ae9876adea742b2b69a16e246c362992c47fd041185b7b00a9e27f95fedc'', ''release.sosiv.io/nsqadmin@sha256:62e82b3ed550bc9f417dd259b38add12e037b1c5b0d09e75e1d41eb30b00c16d'', ''release.sosiv.io/nsqlookupd@sha256:171556aa3c48acedf0ae7c0907943129ef9074d07c4dd8dec830c41770edad2a'', ''release.sosiv.io/crud-manager@sha256:a1252e44223fa5f5900c664a697e97d572965a8c5bafa65f4f0c48f74c371d54'', ''release.sosiv.io/sosivio-node-collector@sha256:b9da902efee437c7c96cfcb7c392b3777855d0fbab5a88249d16989bc146f194'', ''release.sosiv.io/sosivio-node-pinger@sha256:64a83d81d4e3e7adc730eea7ffdb626e3adaaed7780df8608dcd72101e8cec94'', ''release.sosiv.io/classifier@sha256:64492c8b0500194f8e76786723c676783b04aa2b8ebc30af7a79b8ad455edfc5'', ''release.sosiv.io/communicator@sha256:d7e2b6509a1d8117f1a2de6675ccf56672402c081a3095981e1ecd40225c461a'', ''release.sosiv.io/analyzer@sha256:62b44a2cbc7587b01603407f262527a67011816d42e89c6bebf7d9a3a28d46b5'', ''release.sosiv.io/sosivio-dashboard@sha256:a0bec736207be74ccaf118d75618fe0b33c7a0ac8543ce1aaf7ea0db875569cb'', ''release.sosiv.io/authentication@sha256:8334cca2058b91c69091d7fdcce46dfa9c09befdad40909d4ab16f6bd5d2f810'', ''release.sosiv.io/actuator@sha256:5cd94db305edfc5f79fd32b127993ae5a9be16ba917345a823417055f767ca98'', ''release.sosiv.io/sequence-recognition@sha256:05a4702937efa67bf71eb149ae2ecf59855b7503567902897410aff61401b9ee'', ''release.sosiv.io/correlation-entities@sha256:6064c9a80f504c87fb356278580523a31f61851ac353827fcb33dda360358b6e'', ''release.sosiv.io/contract-testing@sha256:a4baa361c1f63c67fabd9b394449ca24c27226bac920abcf64b00f251513126c'', ''release.sosiv.io/sosiviodb@sha256:ddde5ce59df6d68f9a7adf71d1e61132783c3cc4af2c7ccfc0941af35a4d0ad1'', ''release.sosiv.io/draingo@sha256:bdbd95c9ffd7cd7ee482992589944b6b078b838614b921a5b309664653ab1584'', ''release.sosiv.io/discovery-engine@sha256:2dad130ba5ad2e91d1b50b9668cceebde6bca4fd4d15b3933428b1c4f0d0f25d'', ''release.sosiv.io/notifier@sha256:a809f8fb046847c3fa91d984cc8162f0dd92245e3c0c0b6a847404a10f450214'']', 'https://github.com/Sosivio/operator', ''); +INSERT INTO operator_images VALUES (169, 'Chaosblade Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''chaosbladeio/chaosblade-operator:0.5.1'']', 'https://github.com/chaosblade-io/chaosblade-operator', ''); +INSERT INTO operator_images VALUES (170, 'clever-operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''clevercloud/clever-operator:e7ad0b4cfee00dd526f0e1b9aec90d79ee2ed123'']', 'https://github.com/CleverCloud/clever-operator', ''); +INSERT INTO operator_images VALUES (171, 'Kubefed Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/openshift/kubefed-operator:v0.1.0-rc3'']', 'https://github.com/openshift/kubefed-operator', ''); +INSERT INTO operator_images VALUES (172, 'AtlasMap Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/atlasmap/atlasmap-operator:0.4.1'']', 'https://github.com/atlasmap/atlasmap-operator', ''); +INSERT INTO operator_images VALUES (173, 'Cryostat Operator', 426, 584, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/cryostat/cryostat-operator:2.1.1'']', 'github.com/cryostatio/cryostat-operator', ''); +INSERT INTO operator_images VALUES (174, 'APIMatic Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''docker.io/apimaticio/apimatic-kubernetes-operator:v0.0.1'']', 'https://github.com/apimatic/apimatic-kubernetes-operator', ''); +INSERT INTO operator_images VALUES (175, 'Microcks Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/microcks/microcks-ansible-operator:1.5.2'']', 'https://github.com/microcks/microcks-ansible-operator', ''); +INSERT INTO operator_images VALUES (176, 'Minio Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/minio/operator@sha256:22daae696181273ff3a024367db3bed159f4977325ed16e46225418328521a07'']', 'https://github.com/minio/operator', ''); +INSERT INTO operator_images VALUES (177, 'DataTrucker.IO', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''docker.io/datatruckerio/datatrucker-operator:2.0.0'']', 'hhttps://gitlab.com/datatruckerio/datatrucker-server.git', ''); +INSERT INTO operator_images VALUES (178, 'SAP BTP Service Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''ghcr.io/sap/sap-btp-service-operator/controller:v0.1.6'']', 'https://github.com/SAP/sap-btp-service-operator', ''); +INSERT INTO operator_images VALUES (179, 'Infinispan Operator', 426, 'NULL', 'NULL', 619, 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/infinispan/operator:2.2.4.Final'']', 'https://github.com/infinispan/infinispan-operator', ''); +INSERT INTO operator_images VALUES (180, 'YAKS Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 633, '[''docker.io/citrusframework/yaks:0.10.0'']', 'https://github.com/citrusframework/yaks', ''); +INSERT INTO operator_images VALUES (181, 'Istio Workspace', 426, 'NULL', 'NULL', 644, 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/maistra/istio-workspace:v0.4.0'']', 'https://github.com/maistra/istio-workspace', ''); +INSERT INTO operator_images VALUES (182, 'Kiali Operator', 426, 'NULL', 'NULL', 644, 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/kiali/kiali-operator:v1.52.0'']', 'https://github.com/kiali/kiali', ''); +INSERT INTO operator_images VALUES (183, 'Vault Operator', 426, 'NULL', 'NULL', 645, 'NULL', 'NULL', 'NULL', 'NULL', '[''banzaicloud/vault-operator:0.4.10'']', 'https://github.com/banzaicloud/bank-vaults/tree/master/operator', ''); +INSERT INTO operator_images VALUES (184, 'ks-releaser', 426, 'NULL', 'NULL', 677, 'NULL', 'NULL', 'NULL', 'NULL', '[''ghcr.io/kubesphere-sigs/ks-releaser-operator:v0.0.1'']', 'https://github.com/kubesphere-sigs/ks-releaser-operator', ''); +INSERT INTO operator_images VALUES (185, 'Argo CD Operator (Helm)', 426, 'NULL', 'NULL', 677, 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/disposab1e/argocd-operator-helm@sha256:c74e73d7cdc6e571ba2a69d59b4ec68549b2ea4563763771be80f2d55f0b4524'']', 'https://github.com/disposab1e/argocd-operator-helm.git', ''); +INSERT INTO operator_images VALUES (186, 'Multicluster Subscription Operator', 426, 'NULL', 'NULL', 677, 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/open-cluster-management/multicluster-operators-subscription:2.3.0'']', 'https://github.com/open-cluster-management/multicloud-operators-subscription', ''); +INSERT INTO operator_images VALUES (187, 'Weave GitOps Terraform Controller', 426, 'NULL', 'NULL', 677, 'NULL', 'NULL', 'NULL', 'NULL', '[''ghcr.io/weaveworks/tf-controller:v0.9.0-rc.8'']', '', ''); + CREATE TABLE docker_environment_variables( id integer NOT NULL PRIMARY KEY AUTOINCREMENT, Environment_Variables text, From ef18b2ceb5a336d1f2af96c7716b81c03d84584f Mon Sep 17 00:00:00 2001 From: divsan93 Date: Wed, 6 Jul 2022 15:10:40 -0400 Subject: [PATCH 05/30] Adding new images URL's --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c9a1e14..95cc50b 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ For OpenShift, TCA generates the following images. ## TCA Pipeline -Screen Shot 2021-07-29 at 4 10 10 PM +TCA Pipeline The pipeline ingests raw inputs from clients data and standardizes the data to generate named entities and versions. For standardizing or normalizing raw inputs we use a tf-idf similarity based approach. To find container images we represent images in terms of named entities as well. The normalized representation helps to match legacy applications with container images to suggest the best possible recommendations. From aa84f298762acdb2d912383ca9ec8c49d8476704 Mon Sep 17 00:00:00 2001 From: divsan93 Date: Wed, 6 Jul 2022 15:58:49 -0400 Subject: [PATCH 06/30] Adding code for image search and updating the readme --- db/README.md | 24 +- kg_utils/README.md | 83 ++- kg_utils/src/__init__.py | 0 kg_utils/src/config.ini | 25 + kg_utils/src/dockerhub_api.py | 917 ++++++++++++++++++++++++++++ kg_utils/src/load_entities.py | 147 +++++ kg_utils/src/save_to_csv.py | 283 +++++++++ kg_utils/src/search_images.py | 755 +++++++++++++++++++++++ kg_utils/src/utils.py | 163 +++++ kg_utils/test/test_dockerhub_api.py | 4 + kg_utils/test/test_search_images.py | 64 ++ service/requirements.txt | 31 + 12 files changed, 2474 insertions(+), 22 deletions(-) create mode 100644 kg_utils/src/__init__.py create mode 100644 kg_utils/src/config.ini create mode 100644 kg_utils/src/dockerhub_api.py create mode 100644 kg_utils/src/load_entities.py create mode 100644 kg_utils/src/save_to_csv.py create mode 100644 kg_utils/src/search_images.py create mode 100644 kg_utils/src/utils.py create mode 100644 kg_utils/test/test_dockerhub_api.py create mode 100644 kg_utils/test/test_search_images.py diff --git a/db/README.md b/db/README.md index fa2c392..2f36d40 100644 --- a/db/README.md +++ b/db/README.md @@ -11,7 +11,7 @@ We represent the knowledge base in terms of a database. Below we provide an entity-relationship diagram. -ER_DIAGRAM +ER_DIAGRAM ### Setting up TCA's Knowledge Base @@ -35,7 +35,7 @@ We represent the knowledge base in terms of a database. Below we provide an enti ##### This contains all the entity types present in our taxonomy. Under each entity type we define entities. For example, the OS entity type contains the Linux|RedHat Linux as an entity. -Screen Shot 2021-06-08 at 1 48 30 PM +Entity Types ##### A new entry can be added as @@ -46,7 +46,7 @@ We represent the knowledge base in terms of a database. Below we provide an enti ##### This contains all the named entities along with their types and mappings to Wikidata or DBPedia. The scores are obtained based on an entity linking algorithm. -Screen Shot 2021-06-08 at 1 50 10 PM +Entities ##### A new entry can be added as @@ -65,7 +65,7 @@ We represent the knowledge base in terms of a database. Below we provide an enti ##### This contains mappings of raw mentions with their entities. Each entity could have multiple mentions. For example, Apache Tomcat can be called as Tomcat or Apache Tomcat. -Screen Shot 2021-06-08 at 1 50 25 PM +Entity Mentions ##### A new entry can be added as @@ -75,7 +75,7 @@ We represent the knowledge base in terms of a database. Below we provide an enti ##### This contains mappings of entities based on their compatibilities. For example, a relation might exists between Linux|* and Apache Tomcat which suggest Apache Tomcat is compatible with different variants of Linux such as RedHat Linux, Ubuntu, CentOS and so on. -Screen Shot 2021-07-09 at 2 21 12 PM +Entity Relations ##### A new entry can be added as @@ -85,7 +85,7 @@ We represent the knowledge base in terms of a database. Below we provide an enti ##### This contains Docker specific base OS images. For example, RedHat Linux along with its mapping a DockerHub image. -Screen Shot 2021-07-09 at 2 21 35 PM +Docker Base OS Images ##### A new entry can be added as @@ -96,7 +96,7 @@ We represent the knowledge base in terms of a database. Below we provide an enti ##### This contains Openshift specific base OS images. For example, RedHat Linux along with its mapping a OpenShift image. -Screen Shot 2021-07-09 at 2 21 52 PM +Openshift Base OS Images ##### A new entry can be added as @@ -107,7 +107,7 @@ We represent the knowledge base in terms of a database. Below we provide an enti ##### This contains Docker specific images. For example, Apache Tomcat long with its mapping a DockerHub image. -Screen Shot 2021-07-09 at 2 22 07 PM +Docker Images ##### A new entry can be added as @@ -118,7 +118,7 @@ We represent the knowledge base in terms of a database. Below we provide an enti ##### This contains OpenShift specific images. For example, Apache Tomcat long with its mapping a OpenShift image. -Screen Shot 2021-07-09 at 2 22 26 PM +Openshift Images ##### A new entry can be added as @@ -127,7 +127,7 @@ We represent the knowledge base in terms of a database. Below we provide an enti **9. entity versions** ##### This contains versions and licensing costs for all entities. -entity_versions +entity_versions ##### A new entry can be added as INSERT INTO entity_versions (id, entity_id, version, release_date, end_date, cost) VALUES (?,?,?,?,?,?) @@ -135,7 +135,7 @@ We represent the knowledge base in terms of a database. Below we provide an enti **10. docker environment variable** ##### This contains environment variables for all docker images. -Docker_env_var +Docker_env_var ##### A new entry can be added as @@ -145,7 +145,7 @@ We represent the knowledge base in terms of a database. Below we provide an enti **11. operator images** ##### This contains operator specific images. For example, Postgresql along with its mapping a operator image -operators +operators ##### A new entry can be added as INSERT INTO operator_images(container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES(?,?,?,?,?,?,?,?,?,?,?,?) diff --git a/kg_utils/README.md b/kg_utils/README.md index 8b4067e..acfdb4a 100644 --- a/kg_utils/README.md +++ b/kg_utils/README.md @@ -2,23 +2,23 @@ Python scripts to generate JSON from Database -### Install Anaconda3 -- Follow instructions to download and install Anaconda3 +### Install Anaconda3 +- Follow instructions to download and install Anaconda3 ### Create conda virtual environment # Requires python 3.8 conda create --name python=3.8 conda activate -### Clone TCA +### Clone TCA git clone git@github.com:konveyor/tackle-container-advisor.git ### How to use - ``cd tackle-container-advisor`` - ``pip3 install -r requirements.txt`` -- ``cd kg_utils`` +- ``cd kg_utils`` - ``db`` provides the input data - From top level folder run ``python kg_utils/kg_utils.py`` and ``python kg_utils/generator.py`` -- Outputs json are saved in: ``kg/`` +- Outputs json are saved in: ``kg/`` ### Generate documentation: @@ -28,9 +28,9 @@ Python scripts to generate JSON from Database - Setting up conf.py: * Uncomment ``import os`` and ``import sys`` * Uncomment and Change path: ``sys.path.insert(0, os.path.abspath('..'))`` - + * In the ``# -- General configuration ---`` field, add ``extensions = ['sphinx.ext.autodoc']`` - + * In the ``# -- Options for HTML output ---`` field, add ``html_theme = 'sphinx_rtd_theme'`` - Setting up index.rst: Add ``modules`` after line 11 @@ -38,6 +38,69 @@ Python scripts to generate JSON from Database - Run ``make html`` - Documentation is located in ``/docs/_build/html/index.html`` +## TCA_image_search + +Allows users to search relevant or exact container images from DockerHub ,Quai.io , and Artifacthub.io(Community Operators OLM) registries. + +## Search urls: + + - Dockerhub + Dockerhub repository: [Dockerhub images](https://hub.docker.com/). + + - RedHat OpenShift: [RedHat Quay](https://quay.io/search), + + - Redhat OperatorHub: [Artifact.io](https://artifacthub.io/) + +## Getting started + +#### Prerequisite + + - Use [TCA_KG_Aumentation](https://github.ibm.com/tca-team/TCA_KG_Augmentation) repos to augmment new entities to the database by following the instructions from the README file. You can add a single entity or a batch of entities from a csv file to the entities table. + - Make sure you have [docker](https://docs.docker.com/engine/install/) installed locally. + + - git clone ```git@github.ibm.com:tca-team/tackle_image_search_apis.git``` + + - Move the newly augmented db the this path ```kb\{db_version}.db``` + + - The path "kb\{db_version}.db", where "db_version" is the latest TCA database version and contains all entities to search(see "entity_name" table) for images. + + - In VSCODE, Open the folder in a container, which will install all dependencies needed to run the script. + +#### Input data to the search engine. + + Data are loaded from the entities table from the database. you can load a single entity or all entities from the database. + + Sample entities table + + ![This is an image](https://github.ibm.com/tca-team/tackle_image_search_apis/blob/master/resources/entity_names.png) + +#### Running the script + + ```python src/search_images.py -e -db kb\{db_version}.db``` This loads entity(ies) from the entity_name table and searches images across all catalogues. + +``` +python src/search_images.py -h + +usage: Search container images from dockerhub , Quay.io , and Artifacthub.io + +optional arguments: + + -h, --help show this help message and exit + + -e ENTITY, --entity ENTITY Enter entity name(s) from the database. i.e :-e nginx,tomcat,ubuntu or -e all ( to search all entities). Also enclose entities with + + double words in a quote. For example: -e 'ibm i',db2,'Apache Kafka' + + -db DATABASE_PATH, --database_path DATABASE_PATH Path containing the latest tackle containerization advisor database. + +Try $python -e -db or type $python src/search_images.py --help + +``` + +Results are saved into the following files: ```kb\images.json``` , ```kb\operator_images.csv``` ,```kb\openshift_images.csv``` ,and ```kb\docker_images.csv``` + + + ### KG Augmentation ##### TCA KG Augmentation script allows a semi-automatic way of ingesting data into the TCA Knowledge Base @@ -55,8 +118,8 @@ The id field for all the tables is auto generated so the user does not have to s ### Running the script ##### To run the script you can use one of the following commands based: -1. Interactive mode: python kg_aug.py -m interactive -d aca_kg_ce_1.0.4.db -2. Batch mode: python kg_aug.py -m batch -b input.csv -d aca_kg_ce_1.0.4.db +1. Interactive mode: python kg_aug.py -m interactive -d 1.0.4.db +2. Batch mode: python kg_aug.py -m batch -b input.csv -d 1.0.4.db ##### The -m indicated the mode (interactive or batch), -b points to the csv file for batch processing and -d specifies the database file. @@ -72,4 +135,4 @@ optional arguments: -d DB_FILE database file (.db) path -b BATCH_FILE batch file (.txt) path -r DEL_FILE entities to delete/replace list file (.csv) path -``` \ No newline at end of file +``` diff --git a/kg_utils/src/__init__.py b/kg_utils/src/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/kg_utils/src/config.ini b/kg_utils/src/config.ini new file mode 100644 index 0000000..64289d5 --- /dev/null +++ b/kg_utils/src/config.ini @@ -0,0 +1,25 @@ +[database] +database_path = kb/1.0.4.db + +[quay] +max_pages = 2 +page_increments = 1 +find_path = find/repositories +quay_api = https://quay.io/api/v1/ +top_popular_images = 5 + +[dockerhub] + +top_relevant = 40 + +[operators] + + + + + + + + + + diff --git a/kg_utils/src/dockerhub_api.py b/kg_utils/src/dockerhub_api.py new file mode 100644 index 0000000..98095ff --- /dev/null +++ b/kg_utils/src/dockerhub_api.py @@ -0,0 +1,917 @@ +# MIT License +# +# Copyright (c) 2017 Daniel Sullivan (mumblepins) +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + + +from __future__ import print_function + +import json + +import requests +from furl import furl +from requests.auth import AuthBase + + +class TimeoutError(Exception): + pass + + +class ConnectionError(Exception): + pass + + +class AuthenticationError(Exception): + pass + + +class DockerHubAuth(AuthBase): + def __init__(self, requests_post, api_url, username=None, password=None, token=None, delete_creds=True): + """ + + Args: + requests_post (:py:meth:`DockerHub._do_requests_post`): + api_url (str): + username (str, optional): + password (str, optional): + token (str, optional): + delete_creds (bool, optional): + """ + + self._api_url = api_url + self._requests_post = requests_post + if token is not None: + self._token = token + return + if username is not None and password is not None: + self._username = username + self._password = password + self._get_authorization_token() + if delete_creds: + self._username = None + self._password = None + return + raise ValueError("Need either username and password or token for authentication") + + @property + def token(self): + return self._token + + def __eq__(self, other): + return self._token == getattr(other, '_token', None) + + def __ne__(self, other): + return not self == other + + def __call__(self, r): + r.headers['Authorization'] = "JWT {}".format(self._token) + return r + + def _get_authorization_token(self): + """Actually gets the authentication token + + Raises: + AuthenticationError: didn't login right + + """ + r = self._requests_post( + self._api_url, + { + "username": self._username, + "password": self._password + }) + if not r.ok: + raise AuthenticationError("Error Status {}:\n{}".format(r.status_code, json.dumps(r.json(), indent=2))) + self._token = r.json()['token'] + + +def parse_url(url): + """Parses a url into the base url and the query params + + Args: + url (str): url with query string, or not + + Returns: + (str, `dict` of `lists`): url, query (dict of values) + """ + f = furl(url) + query = f.args + query = {a[0]: a[1] for a in query.listitems()} + f.remove(query=True).path.normalize() + url = f.url + + return url, query + + +def user_cleaner(user): + """Converts none or _ to library, makes username lowercase + + Args: + user (str): + + Returns: + str: cleaned username + + """ + if user == "_" or user == "": + return "library" + try: + return user.lower() + except AttributeError: + return user + + +class DockerHub(object): + """Actual class for making API calls + + Args: + username (str, optional): + password(str, optional): + token(str, optional): + url(str, optional): Url of api (https://hub.docker.com) + version(str, optional): Api version (v2) + delete_creds (bool, optional): Whether to delete password after logging in (default True) + return_lists (bool, optional): Whether to return a `generator` from calls that return multiple values + (False, default), or to return a simple `list` (True) + """ + + # + def __init__(self, username=None, password=None, token=None, url=None, version='v2', delete_creds=True, + return_lists=False): + + #https://registry.hub.docker.com/ + # 'https://hub.docker.com' + + self._version = version + self._url = '{0}/{1}'.format(url or'https://registry.hub.docker.com' , self.version) + self._session = requests.Session() + self._auth = None + self._token = None + self._username = None + self._password = None + self._return_lists = return_lists + self.login(username, password, token, delete_creds) + + def __enter__(self): + return self + + def __exit__(self, exc_type, exc_val, exc_tb): + self.close() + + def close(self): + self._session.close() + + # + + # + @property + def return_lists(self): + """Whether functions should return generators (False) or lists (True) + + Returns: + bool + + """ + return self._return_lists + + @return_lists.setter + def return_lists(self, value): + self._return_lists = value + + @property + def username(self): + if self._username is None and self.logged_in: + self._get_username() + return self._username + + @property + def logged_in(self): + return self.token is not None + + @property + def version(self): + return self._version + + @property + def url(self): + return self._url + + @property + def token(self): + return self._token + + @token.setter + def token(self, value): + self._token = value + self._get_username() + + # + + # + + def _do_request(self, method, address, **kwargs): + try: + if 'timeout' not in kwargs: + kwargs['timeout'] = (5, 15) + + if 'auth' not in kwargs: + kwargs['auth'] = self._auth + + if 'headers' not in kwargs: + kwargs['headers'] = {"Content-Type": "application/json"} + elif 'Content-Type' not in kwargs['headers']: + kwargs['headers']['Content-Type'] = "application/json" + + url, query = parse_url(address) + if query: + address = url + if 'params' in kwargs: + query.update(kwargs['params']) + kwargs['params'] = query + resp = self._session.request(method, address, **kwargs) + + except requests.exceptions.Timeout as e: + raise TimeoutError('Connection Timeout. Download failed: {0}'.format(e)) + except requests.exceptions.RequestException as e: + raise ConnectionError('Connection Error. Download failed: {0}'.format(e)) + else: + try: + resp.raise_for_status() + except: + print(resp.json()) + print(resp.headers) + raise + return resp + + def _do_requests_get(self, address, **kwargs): + if 'params' not in kwargs: + kwargs['params'] = {} + # if 'perPage' not in kwargs['params']: + # #kwargs['params']['perPage'] = 100 + # pass + return self._do_request('GET', address, **kwargs) + + def _do_requests_post(self, address, json_data=None, **kwargs): + return self._do_request('POST', address, json=json_data, **kwargs) + + def _do_requests_put(self, address, json_data=None, **kwargs): + return self._do_request('PUT', address, json=json_data, **kwargs) + + def _do_requests_patch(self, address, json_data, **kwargs): + return self._do_request('PATCH', address, json=json_data, **kwargs) + + def _do_requests_delete(self, address, **kwargs): + return self._do_request('DELETE', address, **kwargs) + + def _iter_requests_get(self, address, **kwargs): + if self.return_lists: + return list(self._iter_requests_get_generator(address, **kwargs)) + return self._iter_requests_get_generator(address, **kwargs) + + def _iter_requests_get_generator(self, address, **kwargs): + _next = None + resp = self._do_requests_get(address, **kwargs) + + while True: + if _next: + resp = self._do_requests_get(_next) + # print _next + + resp = resp.json() + + for i in resp['results']: + yield i + + if resp['next']: + _next = resp['next'] + continue + return + + def _api_url(self, path): + return '{0}/{1}/'.format(self.url, path) + + def _get_username(self): + if self.logged_in: + self._username = user_cleaner(self.logged_in_user()['username']) + else: + self._username = None + + # + + def login(self, username=None, password=None, token=None, delete_creds=True): + """Logs into Docker hub and gets a token + + Either username and password or token should be specified + + Args: + username (str, optional): + password (str, optional): + token (str, optional): + delete_creds (bool, optional): + + Returns: + + """ + + self._username = user_cleaner(username) + self._password = password + self._token = token + if token is not None: + # login with token + self._auth = DockerHubAuth(self._do_requests_post, self._api_url('users/login'), token=token) + elif username is not None and password is not None: + # login with user/pass + self._auth = DockerHubAuth(self._do_requests_post, self._api_url('users/login'), username=username, + password=password) + else: + # don't login + return + + if delete_creds: + self._password = None + + self._token = self._auth.token + + def comments(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{0}/{1}/comments'.format(user, repository)) + return self._iter_requests_get(url, **kwargs) + + def repository(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{0}/{1}'.format(user, repository)) + return self._do_requests_get(url, **kwargs).json() + + def repositories(self, user, **kwargs): + """ + + Args: + user: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{0}'.format(user)) + return self._iter_requests_get(url, **kwargs) + + def repositories_starred(self, user, **kwargs): + """ + + Args: + user: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('users/{0}/repositories/starred'.format(user)) + return self._iter_requests_get(url, **kwargs) + + def tags(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{0}/{1}/tags'.format(user, repository)) + return self._iter_requests_get(url, **kwargs) + + def user(self, user, **kwargs): + """ + + Args: + user: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('users/{0}'.format(user)) + return self._do_requests_get(url, **kwargs).json() + + # ------ Logged In Section + + def logged_in_user(self): + """ + + Returns: + + """ + return self._do_requests_get(self._api_url('user')).json() + + def add_collaborator(self, user, repository, collaborator): + """ + + Args: + user: + repository: + collaborator: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/collaborators'.format(user, repository)) + return self._do_requests_post(url, { + "user": collaborator.lower() + }).json() + + def build_details(self, user, repository, code): + """ + + Args: + user: + repository: + code: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/buildhistory/{}'.format(user, repository, code)) + return self._do_requests_get(url).json() + + def build_history(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/buildhistory'.format(user, repository)) + return self._iter_requests_get(url, **kwargs) + + def build_links(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/links'.format(user, repository)) + return self._iter_requests_get(url, **kwargs) + + def build_settings(self, user, repository): + """ + + Args: + user: + repository: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/autobuild'.format(user, repository)) + return self._do_requests_get(url).json() + + def build_trigger(self, user, repository): + """ + + Args: + user: + repository: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/buildtrigger'.format(user, repository)) + return self._do_requests_get(url).json() + + def build_trigger_history(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/buildtrigger/history'.format(user, repository)) + return self._iter_requests_get(url, **kwargs) + + def collaborators(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/collaborators'.format(user, repository)) + return self._iter_requests_get(url, **kwargs) + + def create_build_link(self, user, repository, to_repo): + """ + + Args: + user: + repository: + to_repo: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/links'.format(user, repository)) + return self._do_requests_post(url, { + "to_repo": to_repo + }).json() + + def create_build_tag(self, user, repository, details): + """ + + Args: + user: + repository: + details: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/autobuild/tags'.format(user, repository)) + return self._do_requests_post(url, { + 'isNew': True, + 'namespace': user, + 'repoName': repository, + 'name': details['name'] if 'name' in details else 'latest', + 'dockerfile_location': details['dockerfile_location'] if 'dockerfile_location' in details else '/', + 'source_type': details['source_type'] if 'source_type' in details else 'Branch', + 'source_name': details['source_name'] if 'source_name' in details else 'master' + }).json() + + def create_repository(self, user, repository, details): + """ + + Args: + user: + repository: + details: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories') + data = { + 'name': repository, + 'namespace': user, + } + details.update(data) + return self._do_requests_post(url, details).json() + + def create_automated_build(self, user, repository, details): + """ + + Args: + user: + repository: + details: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/autobuild'.format(user, repository)) + data = { + 'name': repository, + 'namespace': user, + 'active': True, + 'dockerhub_repo_name': "{}/{}".format(user, repository) + } + + details.update(data) + return self._do_requests_post(url, details).json() + + def create_webhook(self, user, repository, webhook_name): + """ + + Args: + user: + repository: + webhook_name: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/webhooks'.format(user, repository)) + data = { + 'name': webhook_name + } + return self._do_requests_post(url, data).json() + + def create_webhook_hook(self, user, repository, webhook_id, webhook_url): + """ + + Args: + user: + repository: + webhook_id: + webhook_url: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/webhooks/{}/hooks'.format(user, repository, webhook_id)) + data = { + 'hook_url': webhook_url + } + return self._do_requests_post(url, data).json() + + def delete_build_link(self, user, repository, build_id): + """ + + Args: + user: + repository: + build_id: + + Returns: + boolean: returns true if successful delete call + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/links/{}'.format(user, repository, build_id)) + resp = self._do_requests_delete(url) + # print_response(resp) + return resp.status_code == 204 + + def delete_build_tag(self, user, repository, tag_id): + """ + + Args: + user: + repository: + tag_id: + + Returns: + boolean: returns true if successful delete call + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/autobuild/tags/{}'.format(user, repository, tag_id)) + resp = self._do_requests_delete(url) + return resp.status_code == 204 + + def delete_tag(self, user, repository, tag): + """ + + Args: + user: + repository: + tag: + + Returns: + boolean: returns true if successful delete call + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/tags/{}'.format(user, repository, tag)) + resp = self._do_requests_delete(url) + return resp.status_code == 204 + + def delete_collaborator(self, user, repository, collaborator): + """ + + Args: + user: + repository: + collaborator: + + Returns: + boolean: returns true if successful delete call + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/collaborators/{}'.format(user, repository, collaborator.lower())) + resp = self._do_requests_delete(url) + return resp.status_code in [200, 201, 202, 203, 204] + + def delete_repository(self, user, repository): + """ + + Args: + user: + repository: + + Returns: + boolean: returns true if successful delete call + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}'.format(user, repository)) + resp = self._do_requests_delete(url) + # print_response(resp) + return resp.status_code in [200, 201, 202, 203, 204] + + def delete_webhook(self, user, repository, webhook_id): + """ + + Args: + user: + repository: + webhook_id: + + Returns: + boolean: returns true if successful delete call + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/webhooks/{}'.format(user, repository, webhook_id)) + resp = self._do_requests_delete(url) + # print_response(resp) + return resp.status_code in [200, 201, 202, 203, 204] + + def registry_settings(self): + """ + + Returns: + + """ + url = self._api_url('users/{}/registry-settings'.format(self.username)) + return self._do_requests_get(url).json() + + def set_build_tag(self, user, repository, build_id, details): + """ + + Args: + user: + repository: + build_id: + details: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/autobuild/tags/{}'.format(user, repository, build_id)) + data = { + 'id': build_id, + 'name': 'latest', + 'dockerfile_location': '/', + 'source_type': 'Branch', + 'source_name': 'master' + } + data.update(details) + return self._do_requests_put(url, details).json() + + def set_repository_description(self, user, repository, descriptions): + """ + + Args: + user: + repository: + descriptions: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}'.format(user, repository)) + data = {} + if 'full' in descriptions: + data['full_description'] = descriptions['full'] + if 'short' in descriptions: + data['description'] = descriptions['short'] + if not data: + raise ValueError("Need either 'short' or 'full' description specified") + + return self._do_requests_patch(url, data).json() + + def star_repository(self, user, repository): + """ + + Args: + user: + repository: + + Returns: + boolean: returns true if successful + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/stars'.format(user, repository)) + resp = self._do_requests_post(url, {}) + # print_response(resp) + return resp.status_code in [200, 201, 202, 203, 204] + + def unstar_repository(self, user, repository): + """ + + Args: + user: + repository: + + Returns: + boolean: returns true if successful + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/stars'.format(user, repository)) + resp = self._do_requests_delete(url) + # print_response(resp) + return resp.status_code in [200, 201, 202, 203, 204] + + def trigger_build(self, user, repository, details): + """ + + Args: + user: + repository: + details: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/autobuild/trigger-build'.format(user, repository)) + data = { + 'dockerfile_location': '/', + 'source_type': 'Branch', + 'source_name': 'master' + } + data.update(details) + return self._do_requests_post(url, data).json() + + def webhooks(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/webhooks'.format(user, repository)) + return self._iter_requests_get(url, **kwargs) \ No newline at end of file diff --git a/kg_utils/src/load_entities.py b/kg_utils/src/load_entities.py new file mode 100644 index 0000000..e177efb --- /dev/null +++ b/kg_utils/src/load_entities.py @@ -0,0 +1,147 @@ +################################################################################ +# Copyright IBM Corporation 2021, 2022 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +################################################################################ + + +from curses import resetty +from hashlib import new +from openpyxl import load_workbook +from sqlite3 import Error +import sqlite3 + +import configparser +import os +import re + + +#config file +config = configparser.ConfigParser() +config_data = os.path.join("src/config.ini") +config.read([config_data]) + + +def create_db_connection(database_path): + """ + Create connection to database + + Args: + + database_path (str): path to the database + + Returns: + + _type_: sqlite3 connection + + """ + + connection = None + + try: + connection = sqlite3.connect(database_path) + except Error as e: + logger.error(f'{e}: Issue connecting to db. Please check whether the .db file exists.') + return connection + + +def filter_entity(entity:str)-> str: + """ + Remove pipes(|) or pipe stars (|*) or entity_prefix pipe (i.e Linux|ubuntu) from entity names + + Args: + entity (str): entity to filter + + Returns: + str: filtered etity + """ + match_pipe_star = re.findall(r'\|\*', entity) + match_less_greater_sign = re.findall(r'\<\>' , entity) + match_abbreviation = re.findall(r'[\)]' , entity) + match_pipe_only = re.findall(r'\|', entity) + + if match_pipe_star : + return entity.split('|*')[0] + + elif match_less_greater_sign: + + if "|" in entity.split("<>")[1]: + return entity.split("<>")[1].split("|")[-1] + return(entity.split("<>")[1]) + + elif match_abbreviation: + if entity.startswith("("): + return entity + elif ('|') in entity.split("(")[0]: + + n_ent = entity.split("(")[0].split('|')[-1] + return n_ent + else: + return entity.split("(")[0] + elif match_pipe_only and '|*' not in entity: + + num = entity.count("|") + ent = '' + if num > 1: + ent = entity.split("|")[-1] + else: + ent = entity.split('|')[1] + return ent + else: + return entity + +def from_database( entity_names = None, table_name="entities"): + + """ + Load entity names from the main database. + + Returns: + list: A list containing tuple( entity_name , entity_type_id , entity_name_id) + """ + if entity_names == None : + print("No entities selected") + exit() + + db_path = config["database"]["database_path"] + connection = create_db_connection(db_path) + + entities = [] + suggest_entities = [] + cursor = connection.cursor() + + cursor.execute("SELECT * FROM {} ".format(table_name)) + for entity in cursor.fetchall(): + + + if entity_names == "all": + + + entity_name = filter_entity(entity[1]) + + entities.append( (entity_name.strip(),entity[2] , entity[0]) ) + + else: + + for name in entity_names: + + if entity[1].lower() == name.lower(): + + entity_name = filter_entity(entity[1]) + entities.append( (entity_name.strip(),entity[2] , entity[0]) ) + + elif name.lower() in entity[1].lower(): + suggest_entities.append(entity[1]) + + else: continue + + return entities , suggest_entities \ No newline at end of file diff --git a/kg_utils/src/save_to_csv.py b/kg_utils/src/save_to_csv.py new file mode 100644 index 0000000..1cd10b5 --- /dev/null +++ b/kg_utils/src/save_to_csv.py @@ -0,0 +1,283 @@ + +################################################################################ +# Copyright IBM Corporation 2021, 2022 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +################################################################################ + + +import json +import csv + +def search_results(): + """ + load results + + Returns: + None: Json file containing search results + """ + + with open("kb/images.json", "r" , encoding="utf-8") as images: + images_ = json.load(images) + + return images_ + + +def entity_type_mapper( entity_type: int , entity_id : str)-> dict: + """ + Maps entity_types to an interger ranging from 1 to 12 + + Args: + entity_type (int): entity_type id + entity_id (int): entity index from the entity_name table from the database + + Returns: + dict: a mapping of entity_type_name to a unique id + + """ + type_mapper = {"technology": 1, "app": 2 , "vm": 3 , "hw" : 4 , "plugin": 5 , "OS" : 6 , "runlib": 7, \ + "app_server" : 8 , "lang": 9 , "runtime": 10 , "storage": 11 , "lib": 12 + + } + + for ky , val in type_mapper.items(): + if val == entity_type: + return {ky:entity_id} + + +def write_to_csv(data:list, file_name:str): + """ + Write results to csv file + + Args: + data (list): A list containing data to save. + file_name (str): Name of the file to to save the data as csv. + + """ + + with open("kb/{}.csv".format(file_name) , "w" , encoding="utf-8") as op_csv: + + if data == []: + print("No {} found".format(file_name)) + return + + columns = list(data[0].keys()) + writer = csv.DictWriter(op_csv, fieldnames=columns) + writer.writeheader() + + if file_name == "operator_images": + + for row in data: + + row_keys = list(row.keys()) + + + + writer.writerow({"operator_images":row["operator_images"],'container_name': row["container_name"], 'OS': row["OS"] \ + , "lang":row["lang"], "lib": row["lib"] , "app": row["app"] \ + ,"app_server": row["app_server"] , "plugin":row["plugin"] , \ + "runlib": row["runlib"] , "runtime": row["runtime"] , \ + "Operator_Correspondant_Image_Url": row["Operator_Correspondant_Image_Url"] ,\ + "Operator_Repository" : row["Operator_Repository"], "Other_Operators": row["Other_Operators"] + + }) + + + if file_name == "docker_images": + for row in data: + writer.writerow({"docker_images":row["docker_images"],'container_name': row["container_name"], 'OS': row["OS"] \ + , "lang":row["lang"], "lib": row["lib"] , "app": row["app"] \ + ,"app_server": row["app_server"] , "plugin":row["plugin"] , \ + "runlib": row["runlib"] , "runtime": row["runtime"] , \ + "Docker_Url": row["Docker_Url"] ,\ + "Notes": row["Notes"], \ + "CertOfImageAndPublisher": row["CertOfImageAndPublisher"] + + }) + + if file_name =="openshift_images": + + for row in data: + writer.writerow({"openshift_images":row["openshift_images"],'container_name': row["container_name"], 'OS': row["OS"] \ + , "lang":row["lang"], "lib": row["lib"] , "app": row["app"] \ + ,"app_server": row["app_server"] , "plugin":row["plugin"] , \ + "runlib": row["runlib"] , "runtime": row["runtime"] , \ + "Opeshift_Correspondent_Image_Url": row["Opeshift_Correspondent_Image_Url"] ,\ + "DockerImageType": row["DockerImageType"] + + }) + + +def get_exact_images(all_images:dict , catalogue ="operators", index = 2): + """ + Gather exact image names found during the search proceedure. + + Args: + all_images (dict): A large dictionary containg all serach results + catalogue (str, optional): Catalog's name("operator" , "dockerhub_exact_images" ,or "quay_exact_images" ) . Defaults to "operators". + index (int, optional): _description_. Defaults to 2. + + Returns: + list: A list containing exact image names. + """ + + if catalogue == "dockerhub_exact_images": index = 0 + if catalogue == "quay_exact_images" : index = 1 + + images = [] + + for image in all_images: + + image_name = list(image.keys())[0] + + if image[image_name][index][catalogue] != []: + + + + op_data = {image_name: [], "type": image["entity_type"] , "entity_id" : image["entity_id"]} + + op_data[image_name] = image[image_name][index][catalogue] + images.append(op_data) + + return images + + +def csv_columns( table_name = "operator_images"): + """ + Build the columns headers for the csv files. + + Args: + table_name (str, optional):The name of the table from the database. Defaults to "operator_images". + + Returns: + dict: A fomated headers for the csv. + """ + + columns = { table_name: "", "container_name":"", "OS": 426, "lang" : None, "lib": None, "app": None, "app_server": None,"plugin": None,"runlib": None,"runtime": None } + + docker_col_extension = {"Docker_Url":"", "Notes": "", "CertOfImageAndPublisher": "" } + openshift_col_extension = {"Opeshift_Correspondent_Image_Url":"", "DockerImageType": ""} + operator_col_extension ={"Operator_Correspondant_Image_Url":"","Operator_Repository": "", "Other_Operators": ""} + + if table_name == "openshift_images": + columns.update(openshift_col_extension) + elif table_name == "docker_images": + columns.update(docker_col_extension) + else: + columns.update(operator_col_extension) + + return columns + + +def operator_images(): + """ + Saves operator images to a operator_images.csv + + """ + row_data = [] + cols = csv_columns(table_name="operator_images") + images_ = search_results() + op_images = get_exact_images(images_ , catalogue="operators") + + if op_images == None: + return + + for op in op_images: + + op_name = list(op.keys())[0] + + for operator in op[op_name]: + + op_data = cols.copy() + op_data["operator_images"] = "operator_images" + op_data["container_name"] = operator["display_name"] + op_data["Operator_Correspondant_Image_Url"] = operator["container_images"] + op_data["Operator_Repository"] = operator["git_repos"] + + img_data_type = entity_type_mapper(op["type"] , str(op["entity_id"])) + op_data.update(img_data_type) + + row_data.append(op_data) + + write_to_csv(row_data ,file_name="operator_images") + + +def docker_images() -> None: + """ + Saves docker images to docker_images.csv + """ + + row_data = [] + cols = csv_columns(table_name="docker_images") + images_ = search_results() + docker_images = get_exact_images(images_, catalogue="dockerhub_exact_images") + + if docker_images == None: + return + + + for exact_images in docker_images: + + if len(exact_images) != 0: + + for ky, val in exact_images.items(): + + if ky not in ["type","entity_id"]: + + img_data = cols.copy() + img_data["docker_images"] = "docker_images" + img_data["container_name"] = val[0]["name"] + img_data["Docker_Url"] = val[0]["Docker_Url"] + img_data["Notes"] = "" + img_data["CertOfImageAndPublisher"] = val[0]["Official image"] + img_data_type = entity_type_mapper(exact_images["type"] , str(exact_images["entity_id"])) + img_data.update(img_data_type) + row_data.append(img_data) + + + + write_to_csv(row_data , "docker_images") + + +def openshift_images(): + """ + Saves Openshift images to openshift_images.csv. + + """ + + row_data = [] + cols = csv_columns(table_name="openshift_images") + images_ = search_results() + quay_images = get_exact_images(images_, catalogue="quay_exact_images") + + if quay_images == None: + return + + for exact_images in quay_images: + + if len(exact_images) != 0: + for ky, val in exact_images.items(): + if ky not in ["type","entity_id"]: + img_data = cols.copy() + img_data["openshift_images"] = "openshift_images" + img_data["container_name"] = val[0]["name"] + img_data["Opeshift_Correspondent_Image_Url"] = val[0]["url"] + + img_data_type = entity_type_mapper(exact_images["type"] , str(exact_images["entity_id"])) + img_data["DockerImageType"] = list(img_data_type.keys())[0].title() + + img_data.update(img_data_type) + row_data.append(img_data) + + write_to_csv(row_data , "openshift_images") + diff --git a/kg_utils/src/search_images.py b/kg_utils/src/search_images.py new file mode 100644 index 0000000..e1b47d6 --- /dev/null +++ b/kg_utils/src/search_images.py @@ -0,0 +1,755 @@ +################################################################################ +# Copyright IBM Corporation 2021, 2022 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +################################################################################ + + +import sys +sys.path.append("/app") + +import argparse +from audioop import tomono +from encodings import search_function +import load_entities +import json +import requests +import json +import itertools +import operator +import logging +import re +import utils +import dockerhub_api +import os +import docker +import save_to_csv +import configparser +import time + +#config file +config = configparser.ConfigParser() +config_data = os.path.join("src/config.ini") +config.read([config_data]) + +#loggger +logger = logging.getLogger('search') +logger.setLevel(logging.INFO) + + +#search sessions +operator_session = requests.Session() +quay_session = requests.Session() + + +#load list of verified and official publishers +with open("kb/verified_publisher_names.json", "r", encoding="utf-8") as verified_file: + verified_publishers = json.load(verified_file) + +class Operators(): + + def __init__(self): + + self.api = "https://artifacthub.io/api/v1/" + self.package_query = "packages/search?org=operator-framework&repo=community-operators&ts_query_web=&limit=60&offset=" + + + def community_op_images_repos(self, operator_name: str) -> list: + """ + + Searches for community operators from https://artifacthub.io/ + + Args: + operator_name (str): entity name + + Returns: + (lst): A list containing all matching operators + """ + + + + container_images = [] + + request_session = requests.session() + search_query = self.api + "packages/olm/community-operators/" + operator_name + response_ = request_session.get(url= search_query) + + try: + + image_urls = json.loads(response_.text)["containers_images"] + for imgs in image_urls: + container_images.append(imgs['image']) + + except KeyError: + print("No container images registry found") + + return container_images + + + def community_op_git_repos(self, operator_name: str): + + """ + + Args: + operator_name (str): entity name + + Returns: + (lst): A list containing all repos for a given operator_name + """ + + operator_repository = None + + request_session = requests.session() + search_query = self.api + "packages/olm/community-operators/" + operator_name + response_ = request_session.get(url= search_query) + + try: + + links = json.loads(response_.text)["links"] # source , GitHub , etc ... + + for link_data in links: + for _ , val in link_data.items(): + if val == "source" or val == "GitHub": + operator_repository = link_data["url"] + except KeyError: + print("No source urls found") + + return operator_repository + + def community_operators(self, entity: str): + + """ + sumary_line: Search community operators from https://artifacthub.io/packages/olm/community-operators/ + + Keyword arguments: + entity (str) -- An entity name from from the database + Return: list of all matching opertors + """ + + + api = "https://artifacthub.io/api/v1/" + package_query = "packages/search?org=operator-framework&repo=community-operators&ts_query_web=" + + operators = [] + sess = requests.session() + endpoint = api + package_query+"{}".format(entity) + res = sess.get(url=endpoint) + operator = json.loads(res.text)['packages'] + if len(operator) > 0 : + + for op in operator: + + update_dict = {"git_repos": None , "container_images": None} + git_repos = self.community_op_git_repos(op["name"]) + container_images = self.community_op_images_repos(op["name"]) + update_dict["git_repos"] = git_repos + update_dict["container_images"] = container_images + + op.update(update_dict) + + operators.append(op) + + return operators + + +class Quay: + + def __init__(self) -> None: + + self.quay_api = "https://quay.io/api/v1/" + self.session = requests.Session() + + + def popular_images(self, quay_images:dict, top:int): + """ + Get popular Quay images + + Args: + quay_images (dict): List of Quay imaes + top (int): Threshold = 5 + + Returns: + (list): Popular images + """ + + popular_quay_images = [] + + if len(list(quay_images.keys())) > 0: + sorted_results = dict( + sorted(quay_images.items(), key=operator.itemgetter(1), reverse=True) + ) + + popular_images = dict(itertools.islice(sorted_results.items(), top )) + popular_quay_images.append(popular_images) + + return popular_quay_images + + + def exact_image(self, results:list , entity_name:str)->list: + """ + retrieve exact image + + Args: + results (list): list of all images obtained by searching the search term (entity_name) from Quay.io + entity_name (str):Search term + + Returns: + (list):list of exact matches from Quay.io + """ + + + exact = [] + image_template = {"name": "" , "url": "" , "popularity": 0} + + for img in results: + if ( + utils.is_exact_match(img['name'], entity_name) + ): + + image = image_template.copy() + image["name"] = img["name"] + image["url"] = "https://quay.io"+img['href'] + image["popularity"] = img["popularity"] + + + exact.append(image) + + return exact + + + def top_images(self,popular_quay_images, results ): + + """ + Select top images based on popularity + + Returns: + (list): list of top images + """ + + + top_image = [] + + image_template = {"name": "" , "url": "" , "popularity": 0} + + if len(popular_quay_images) != 0: + + for img in results: + + if img['href'] in list(popular_quay_images[0].keys()): + image = image_template.copy() + image["name"] = img["name"] + image["url"] = "https://quay.io"+img['href'] + image["popularity"] = img["popularity"] + + top_image.append(image) + + return top_image + + + def recommend_images(self, results:list, quay_images: dict, entity_name:str) -> tuple: + """ + Recommended container images + Args: + results (list): list of all relavent container images from Quay.io + quay_images (dict): Quay image hrefs as keys and popularity as values + entity_name (str): entity name from the database + + Returns: + (tuple): Exact Quay image(s) and top image(s) found + """ + + top = int(config["quay"]["top_popular_images"]) + exact_quay_image = [] + popular_quay_images = [] + top_images = [] + + popular_quay_images = self.popular_images(quay_images, top) + exact_quay_image = self.exact_image( results, entity_name) + top_images = self.top_images(popular_quay_images, results) + + + return (exact_quay_image , top_images) + + + + def search_images(self, entity: str) -> tuple: + """ + + Search container images from Quay.io + + Args: + entity (str): Entity name from the database + + Returns: + tuple: Exact matches and top matches + """ + + if not isinstance(entity, str): + exit() + + max_pages = 2 + images = {} + page_increment = 1 + results = [] + search_endpoint = self.quay_api + "find/repositories" + + for page in range(max_pages): + + url = search_endpoint + "?includeUsage=true&query={}&page={}".format( + entity, page + page_increment + ) + r = self.session.get(url) + data = json.loads(r.text) + result = data["results"] + results += result + + + for repo in results: + + images[repo["href"]] = repo["popularity"] + + + exact = self.recommend_images(results, images, entity)[0] + top = self.recommend_images(results, images, entity)[1] + return (exact , top) + + +class DockerHubSearch(): + + def __init__(self): + + logging.basicConfig( filename="report.log", filemode="w", level=logging.DEBUG) + self.client = docker.from_env() + self.low_level_api = docker.APIClient(base_url='unix://var/run/docker.sock') + + def docker_href(self, image_name: str) -> str: + """_summary_ + + Args: + image_name (str): image's name + + Returns: + str: href for image_name + """ + href = "" + + if "/" in image_name: + href = "https://hub.docker.com/r/" + image_name + + else: + href = "https://hub.docker.com/_/" + image_name + + return href + + def verified_official_images(self, images:list): + """ + Retrieve all verified a official images + + Args: + images (list): Search results from dockerhub + + Returns: + (list): list of verified and official images + """ + + verified_official_images = [] + for image in images: + + # search official_images + if image["is_official"]: + verified_official_images.append(image) + # search verified publishers + elif "/" in image["name"]: + if ( + image["name"].split("/")[0] + in verified_publishers["verified_publishers"] + ): + verified_official_images.append(image) + else: + continue + return verified_official_images + + def exact_image( + self, entity_name: str, verified_and_official_images: list + ): + """ + find exact image match + + Args: + entity_name (str): search term + verified_and_official_images (list): list of verified and official images + + Returns: + (list): A list containing exact DockerHub match + """ + + exact_image = [] + image_names = [] + images = [image["name"] for image in verified_and_official_images] + + for img in images: + if "/" in img: + image_names.append(img.split("/")[1]) + else: + image_names.append(img) + + for index, img in enumerate(verified_and_official_images): + + if utils.is_exact_match(image_names[index], entity_name): + exact_image.append(img) + + else: + continue + + return exact_image + + def top_images(self, entity_name: str, verified_official_images: list): + """ + Get top relevant DockerHub images. select top 40%() + + Args: + entity_name (str): search term + verified_official_images (list): list of verified and official images + + Returns: + (list):A list containing top relevant DockerHub images + """ + + + top = int(config["dockerhub"]["top_relevant"])/100.0 + + top_images = [] + image_names = [] + query = entity_name + + if len(verified_official_images) == 0: + return top_images + + images = [image["name"] for image in verified_official_images] + + for img in images: + if "/" in img: + image_names.append(img.split("/")[1]) + else: + image_names.append(img) + + topscore_lines, line_score =utils.line_similarity(image_names, query) + + for index in list(topscore_lines): + if line_score[index] > top: + top_images.append(verified_official_images[index]) + + return top_images + + def get_os_architectures(self, images: list ) -> list: + + """" + sumary_line: Using docker_api_utils, retrieve os arch for each image + + Keyword arguments: + images(list) -- list of images from Dockerhub + Return: + + """ + image_lst = [] + + if len(images) == 0: + return image_lst + + for image in images: + + arch_list = [] + if image['Official image']: + user = 'library' + repository = image["name"] + else: + user = image["name"].split("/")[0] + repository = image["name"].split("/")[1] + + image_info = docker_api.tags(user = user, repository= repository) + + try: + os_info = next(image_info)["images"] + except: + + arch_list.append({ + "Class": "null" , + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + }) + + image['OS'] = arch_list + image_lst.append(image) + return image_lst + + + for arch in os_info: + arch_dict = { + "Class": "OS" , + "Architecture": arch["architecture"], + "Variants": arch["variant"], + "Versions": arch['os_version'], + "Type": arch['os'], + "Subtype": "" + } + arch_list.append(arch_dict) + + image['OS'] = arch_list + + image_lst.append(image) + + return image_lst + + + def recommend_exact_image(self,entity_name:str , verified_and_official_images:list): + """ + sumary_line: Searches for exact dockerhub images + + Args: + entity_name (str): _description_ + verified_and_official_images (list): list containing all verified and official images from search result + + Returns: + list: list of exact images if found + """ + + + exact_image = self.exact_image(entity_name, verified_and_official_images) + exact_image = utils.format_images(exact_image) + exact_image = self.get_os_architectures(exact_image) + return exact_image + + + def recommend_top_images ( self,entity_name:str , verified_and_official_images:list)->list: + + """ + _summary_: Recommend top relevant images from dockerhub + + Returns: + list: top images + """ + + top_images = self.top_images(entity_name, verified_and_official_images) + top_images = utils.format_images(top_images) + top_images = self.get_os_architectures(top_images) + return top_images + + def recommended_images(self, image_inst:list, entity_name:str): + """ + sumary_line: Given an entity_name and a list of relevant images from DockerHub, determine the exact match and the top relevant matches. + + Args: + image_inst (list): list of all images found from dockerhub including unofficial as well as unverified images + entity_name (str): query ( entity) + + Returns: + (list) ,(list): exact dockerhub image , top docker images + """ + verified_official_images = self.verified_official_images(image_inst) + exact_image = self.recommend_exact_image(entity_name,verified_official_images) + top_images = self.recommend_top_images(entity_name , verified_official_images) + return exact_image , top_images + + + def search_dockerhub_images(self, entity: str) -> tuple: + """ + sumary_line: Search container iages from dockerhub + + Args: + entity (str): An entity(query) to search + + Returns: + + _type_: None + + """ + + images , exact_image , top_images = [] , [] , [] + + try: + images = self.client.images.search(term=entity, limit=50) + except: + print("ImageNotFound error occured, check your entry and try again") + if images == []: + print("No Dockerhub images found for {} ".format(entity)) + + else: + exact_image , top_images = self.recommended_images(images, entity) + + return (exact_image , top_images) + + + +def save_to_kb(results: list) -> None: + """ + Save search results as a JSON file to \kb directory + + Args: + results (dict): dictionary containing search results from Dockerhub , Quay , and Operatorhub.io + """ + + with open("kb/images.json", "w" , encoding="utf-8") as images_file: + images_file.write(json.dumps(results, indent=2)) + + + +def search(entities: list) ->list: + """ + list of all entities + + Args: + entities (list): All entities + """ + + search_result = [] + for _, entity in enumerate(entities): + + + + entity_name = entity[0] + entity_type = entity[1] + entity_id = entity[2] + + if entity_name=='': + continue + + entity_dict = {entity_name: [] , "entity_type": entity_type, "entity_id": entity_id} + + print({"entity_name": entity_name , "entity_type": entity_type, "entity_id": entity_id}) + + + dockerhub_images = { 'dockerhub_exact_images':[] , 'dockerhub_top_images': []} + quay_images = { 'quay_exact_images':[] , 'quay_top_images': []} + operator_images = {"operators": []} + + + + exact_docker_image = docker_.search_dockerhub_images(entity_name)[0] + top_docker_images = docker_.search_dockerhub_images(entity_name)[1] + exact_quay_image = quay.search_images(entity_name)[0] + top_quay_images = quay.search_images(entity_name)[1] + operatorhub_images = operator_.community_operators(entity_name) + + + for operator_image in operatorhub_images: + operator_images["operators"].append(operator_image) + + for exact in exact_docker_image: + dockerhub_images['dockerhub_exact_images'].append(exact) + + for top_im in top_docker_images: + dockerhub_images['dockerhub_top_images'].append(top_im) + + for q_exact in exact_quay_image: + quay_images['quay_exact_images'].append(q_exact) + + for q_top_im in top_quay_images: + quay_images['quay_top_images'].append(q_top_im) + + entity_dict[entity_name] =[dockerhub_images, quay_images , operator_images] + + search_result.append(entity_dict) + + return search_result + + + +def cmdline_args(): + + """ + input arguments + + Keyword arguments: None + argument -- None + Return: A parser containing input arguments + + """ + + + p = argparse.ArgumentParser(prog="search_images" , usage="Search container images from dockerhub , Quay.io , and Artifacthub.io") + + p.add_argument("-e", "--entity", type = str , help="Enter entity name(s) from the database . i.e : -e nginx,tomcat,ubuntu or -e all ( to search all entities). \ + Also enclose entities with double words in a quote. For example: -e 'ibm i',db2,'Apache Kafka' ") + + p.add_argument("-db", "--database_path" , type = str, help="path containing the latest tackle containerization advisor database") + + return(p.parse_args()) + + +def get_entities(): + + """ + load entities from database + Keyword arguments: None + argument -- None + Return: list of valid entities from db + + """ + + print("Enter entity(ies) from the entity_name table to search for matching container images\n") + + try: + args = cmdline_args() + except: + print('Try $python -e -db or type $python src/search_images.py --help') + exit() + + if args.entity == 'all': + + entities , suggest_entities =load_entities.from_database(entity_names='all') + + elif args.entity != 'all': + + entity_names= args.entity.split(",") + + entities , suggest_entities = load_entities.from_database( entity_names = entity_names) + + else: + print('Try $python -e -db or type $python src/search_images.py --help') + exit() + + if entities == [] and args.entity !='all' : + print("No entity names found for {}. Enter a valid entity from the database.\n".format(args.entity)) + + + if len(suggest_entities) != 0: + + print("Did you mean the following entity(ies) \n") + for ent in suggest_entities: + print("{} \n".format(ent)) + + print("Enter a valid entity from the entities table") + exit() + + return entities + + + +if __name__ == "__main__": + + entities = get_entities() + docker_api =dockerhub_api.DockerHub(username=os.environ.get("DOCKERHUB_USERNAME", None) , password=os.environ.get("DOCKERHUB_PASSWORD", None)) + docker_ = DockerHubSearch() + quay = Quay() + operator_ = Operators() + + results = search(entities) + + save_to_kb(results) + + save_to_csv.docker_images() + save_to_csv.operator_images() + save_to_csv.openshift_images() \ No newline at end of file diff --git a/kg_utils/src/utils.py b/kg_utils/src/utils.py new file mode 100644 index 0000000..8fe14d3 --- /dev/null +++ b/kg_utils/src/utils.py @@ -0,0 +1,163 @@ +import logging +import re +import json +import requests +from sqlite3 import Error +import sqlite3 +import docker +import os + +# NLP +import pandas as pd +from requests import session +from sklearn.feature_extraction.text import TfidfVectorizer +from sklearn.metrics.pairwise import cosine_similarity + + + +def clean_string_value(value): + + """ + arguments: + value : str + Return: + str : formated str + """ + if value: + value = str(value).strip() + value = value.replace(u'\u00a0', ' ') + value = re.sub(r'[^\x00-\x7F]+', ' ', ' ' + str(value) + ' ').strip() + else: + value = '' + + return value + + +################################################################################ + ############ DOCKERHUB UTILS ############## +################################################################################# + +def is_exact_match(image_name: str, entity_name: str) -> bool: + """_summary_ + + Args: + image_name (str): _description_ + entity_name (str): _description_ + + Returns: + bool: _description_ + """ + + + name = image_name + + if not isinstance(image_name, str) or not isinstance(entity_name, str): + logging.error("you can only compare two string") + exit() + + if entity_name.lower() == name.lower(): + return True + else: + return False + + +def line_similarity(linelist: list, query: str): + """ + Take a list of lines, vectorize it and compare the similarity between the query and lines + + + Args: + linelist (list): List of all lines + query (str): Search query + + Raises: + ValueError: _description_ + + Returns: + (list): _description_ + (int): + """ + lines = {} + + for id, line in enumerate(linelist): + parse_line = re.sub("[^A-Za-z0-9]+", " ", str(line)).strip() + if len(parse_line) > 0: + lines[str(id)] = parse_line + + line_vectorizer = TfidfVectorizer() + vectorized_line = line_vectorizer.fit_transform(linelist) + + formatted_query = re.sub("[^A-Za-z0-9]+", " ", str(query)) + + query = formatted_query.lower().strip() + if not query: + raise ValueError("Formatted query string cannot be empty") + + vectorized_query = line_vectorizer.transform([query]) + line_score = cosine_similarity(vectorized_query, vectorized_line) + + line_score = line_score[0] + topscore_lines = line_score.argsort()[-5:][::-1] + + return topscore_lines, line_score + + +def format_images(images:list)-> list: + """ + Create the return structure for all images + + Args: + images (list): All images + + Returns: + (list): Structure + """ + + + images_list = [] + if images == None : return images_list + + for im in images: + + img_dict = {} + img_dict ={"name": " " , 'Official image': False , 'Verified Publisher': False, "Description": '' ,'star_count':'',"Docker_Url": '', 'OS':[] } + + img_dict["name"] = im["name"] + + if "/" in im['name']: img_dict['Verified Publisher'] = True + else: img_dict['Official image'] = im["is_official"] + img_dict['star_count'] = im['star_count'] + img_dict["Docker_Url"] = docker_href(im['name']) + img_dict['OS']= [] + images_list.append(img_dict) + + return images_list + + +def docker_href( image_name: str) -> str: + """_summary_ + + Args: + image_name (str): Image entity name + + Returns: + str: href of a DockerHub image. + """ + + href = "" + + if "/" in image_name: + href = "https://hub.docker.com/r/" + image_name + + else: + href = "https://hub.docker.com/_/" + image_name + + return href + + +################################################################################ + ############ QUAY UTILS ################ +################################################################################# + + + \ No newline at end of file diff --git a/kg_utils/test/test_dockerhub_api.py b/kg_utils/test/test_dockerhub_api.py new file mode 100644 index 0000000..286583b --- /dev/null +++ b/kg_utils/test/test_dockerhub_api.py @@ -0,0 +1,4 @@ +import unittest + +class test_api(unittest.TestCase): + pass diff --git a/kg_utils/test/test_search_images.py b/kg_utils/test/test_search_images.py new file mode 100644 index 0000000..59adeab --- /dev/null +++ b/kg_utils/test/test_search_images.py @@ -0,0 +1,64 @@ +import unittest + +from src.search_images import DockerHubSearch ,Operators , Quay + + +class test_search_operators(unittest.TestCase): + + def setUp(self) -> None: + + self.operator = Operators() + self.quay = Quay() + self.docker = DockerHubSearch() + + + def tearDown(self) -> None: + + self.operator = None + self.quay = None + self.docker = None + + + def test_search_operator(self): + + entity = "DB2" + + self.assertIsInstance(entity , str) + + + + def test_search_dockerhub_images(self): + + entity = "DB2" + self.assertIsInstance(entity , str) + + + def test_search_images(self): + entity = "DB2" + self.assertIsInstance(entity , str) + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/service/requirements.txt b/service/requirements.txt index d2ac10b..949d81d 100644 --- a/service/requirements.txt +++ b/service/requirements.txt @@ -14,8 +14,39 @@ Jinja2==2.11.3 MarkupSafe==2.0.1 deepdiff==5.7.0 #pycryptodome==3.10.1 + +# Runtime dependencies +podman==3.2.1 +docker==5.0.3 +Flask==1.1.1 +Flask-Bootstrap==3.3.7.1 +Flask-Nav==0.6 +Flask-WTF==0.15.1 +python-dotenv==0.10.3 +xlrd==1.2.0 +pandas==1.3.0 +scikit-learn==0.24.2 +openpyxl==3.0.9 +xlutils==2.0.0 +bs4==0.0.1 +requests==2.26.0 +requests-html==0.10.0 +PyGithub==1.55 +networkx==2.6. +requests +furl +csv + + # Runtime gunicorn==20.0.0 waitress==2.1.1 matplotlib==3.5.2 word2number==1.1 +honcho==1.0.1 + +# Testing +nose==1.3.7 +pinocchio==0.4.2 +coverage==4.5.4 +pylint>=2.9.4 From f1eaaa5a03f5a658eedf65d3d22aa431ac9bbb1d Mon Sep 17 00:00:00 2001 From: divsan93 Date: Tue, 12 Jul 2022 09:19:15 -0400 Subject: [PATCH 07/30] fixed NULL value for db --- kg_utils/kg_aug.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kg_utils/kg_aug.py b/kg_utils/kg_aug.py index 0779988..b4e2158 100644 --- a/kg_utils/kg_aug.py +++ b/kg_utils/kg_aug.py @@ -265,12 +265,12 @@ def insert_into_table(table_name, userColVals, cur): myId = answer.fetchall()[0][0] + 1 sqlquery = "INSERT INTO " + table_name + " values (" + str(myId) + "," for colVal in userColVals: - if colVal.isdigit(): - sqlquery += (colVal + ",") - elif count < list_len: - sqlquery += ("'" + colVal + "',") + if colVal.isdigit() or colVal == "NULL": + sqlquery += colVal else: sqlquery += ("'" + colVal + "'") + if count < list_len: + sqlquery += "," count += 1 sqlquery += ")" print(sqlquery) From b4a3e8924ae6290d6e76adc3a48b03f467b4e112 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Tue, 12 Jul 2022 20:20:16 -0400 Subject: [PATCH 08/30] integration code --- .devcontainer/Dockerfile | 5 + .devcontainer/devcontainer.json | 5 + config/kg.ini | 16 + db/1.0.4.sql | 27756 +++++++++++++++--------------- service/requirements.txt | 17 +- 5 files changed, 13905 insertions(+), 13894 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 2a901e6..db47439 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -23,6 +23,11 @@ RUN groupadd --gid $USER_GID $USERNAME \ WORKDIR /app RUN python -m pip install --upgrade pip setuptools wheel +COPY service/requirements.txt . + +RUN pip --no-cache-dir install -U pip wheel && \ + pip --no-cache-dir install -r requirements.txt + # Enable color terminal for docker exec bash ENV TERM=xterm-256color diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 3625800..caaa4cd 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -9,6 +9,11 @@ "remoteEnv": { "FLASK_ENV": "development" }, + + "features": { + "docker-from-docker": "latest", + "podman-from-podman": "latest" + } , "extensions": [ "VisualStudioExptTeam.vscodeintellicode", "alexkrechik.cucumberautocomplete", diff --git a/config/kg.ini b/config/kg.ini index 9772ee6..b0e65a1 100644 --- a/config/kg.ini +++ b/config/kg.ini @@ -24,3 +24,19 @@ inverted_operatorimageKG = inverted_operatorimageKG.json inverted_compatibilityKG = inverted_compatibilityKG.json compatibilityKG = compatibilityKG.json compatibilityOSKG = compatibilityOSKG.json + +[database] +database_path = /app/db/1.0.4.db + +[quay] +max_pages = 2 +page_increments = 1 +find_path = find/repositories +quay_api = https://quay.io/api/v1/ +top_popular_images = 5 + +[dockerhub] + +top_relevant = 40 + +[operators] \ No newline at end of file diff --git a/db/1.0.4.sql b/db/1.0.4.sql index f8b9b9e..1011eee 100644 --- a/db/1.0.4.sql +++ b/db/1.0.4.sql @@ -1,5 +1,7 @@ -PRAGMA foreign_keys=OFF; +PRAGMA foreign_keys = off; BEGIN TRANSACTION; + +-- Table: docker_baseos_images CREATE TABLE docker_baseos_images ( id integer PRIMARY KEY AUTOINCREMENT, container_name text NOT NULL, @@ -14,19 +16,59 @@ CREATE TABLE docker_baseos_images ( OpenShiftStatus text, FOREIGN KEY (OS) REFERENCES entity_types (id) ); -INSERT INTO docker_baseos_images VALUES(1,'Windows Server Core',452,'https://hub.docker.com/_/microsoft-windows-servercore','Base Images','not_certified','Verified Publisher','no','Yes (Microsoft)','',''); -INSERT INTO docker_baseos_images VALUES(2,'Red Hat Enterprise Linux',434,'https://hub.docker.com/r/roboxes/rhel7','','certified','','NotApplicable','NotApplicable','https://catalog.redhat.com/software/containers/rhel7/57ea8cee9c624c035f96f3af',''); -INSERT INTO docker_baseos_images VALUES(3,'Ubuntu',436,'https://hub.docker.com/_/ubuntu','Base Images','not_certified','Official Image','yes','Yes (Docker)','',''); -INSERT INTO docker_baseos_images VALUES(4,'Debian',429,'https://hub.docker.com/_/debian','Base Images','not_certified','Official Image','yes','Yes (Docker)','',''); -INSERT INTO docker_baseos_images VALUES(5,'CentOS',427,'https://hub.docker.com/_/centos','','not_certified','Official Image','yes','Yes (Docker)','',''); -INSERT INTO docker_baseos_images VALUES(6,'Fedora',453,'https://hub.docker.com/_/fedora','','not_certified','Official Image','yes','Yes (Docker)','',''); -INSERT INTO docker_baseos_images VALUES(7,'Oracle Linux',432,'https://hub.docker.com/_/oraclelinux','','not_certified','Official Image','yes','Yes (Docker)','',''); -INSERT INTO docker_baseos_images VALUES(8,'Amazon Linux',454,'https://hub.docker.com/_/amazonlinux','','not_certified','Official Image','yes','Yes (Docker)','',''); -INSERT INTO docker_baseos_images VALUES(9,'openSUSE',431,'https://hub.docker.com/r/opensuse/leap','','not_certified','','no','NotApplicable','',''); -INSERT INTO docker_baseos_images VALUES(10,'SUSE Linux Enterprise Server',435,'https://www.suse.com/c/first-sles-container/','https://github.com/SUSE/sle2docker','unknown','','NotApplicable','NotApplicable','',''); -INSERT INTO docker_baseos_images VALUES(11,'Junos OS',430,'https://www.juniper.net/us/en/products-services/nos/junos/','','unknown','','NotApplicable','NotApplicable','',''); -INSERT INTO docker_baseos_images VALUES(12,'Photon OS',433,'https://hub.docker.com/_/photon','','not_certified','','NotApplicable','NotApplicable','',''); -INSERT INTO docker_baseos_images VALUES(13,'Windows',450,'https://hub.docker.com/_/microsoft-windows','Base Images','not_certified','Verified Publisher','no','Yes (Microsoft)','',''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (1, 'Windows Server Core', 452, 'https://hub.docker.com/_/microsoft-windows-servercore', 'Base Images', 'not_certified', 'Verified Publisher', 'no', 'Yes (Microsoft)', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (2, 'Red Hat Enterprise Linux', 434, 'https://hub.docker.com/r/roboxes/rhel7', '', 'certified', '', 'NotApplicable', 'NotApplicable', 'https://catalog.redhat.com/software/containers/rhel7/57ea8cee9c624c035f96f3af', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (3, 'Ubuntu', 436, 'https://hub.docker.com/_/ubuntu', 'Base Images', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (4, 'Debian', 429, 'https://hub.docker.com/_/debian', 'Base Images', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (5, 'CentOS', 427, 'https://hub.docker.com/_/centos', '', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (6, 'Fedora', 453, 'https://hub.docker.com/_/fedora', '', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (7, 'Oracle Linux', 432, 'https://hub.docker.com/_/oraclelinux', '', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (8, 'Amazon Linux', 454, 'https://hub.docker.com/_/amazonlinux', '', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (9, 'openSUSE', 431, 'https://hub.docker.com/r/opensuse/leap', '', 'not_certified', '', 'no', 'NotApplicable', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (10, 'SUSE Linux Enterprise Server', 435, 'https://www.suse.com/c/first-sles-container/', 'https://github.com/SUSE/sle2docker', 'unknown', '', 'NotApplicable', 'NotApplicable', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (11, 'Junos OS', 430, 'https://www.juniper.net/us/en/products-services/nos/junos/', '', 'unknown', '', 'NotApplicable', 'NotApplicable', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (12, 'Photon OS', 433, 'https://hub.docker.com/_/photon', '', 'not_certified', '', 'NotApplicable', 'NotApplicable', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (13, 'Windows', 450, 'https://hub.docker.com/_/microsoft-windows', 'Base Images', 'not_certified', 'Verified Publisher', 'no', 'Yes (Microsoft)', '', ''); + +-- Table: docker_environment_variables +CREATE TABLE docker_environment_variables( + id integer NOT NULL PRIMARY KEY AUTOINCREMENT, + Environment_Variables text, + Container_Name text, + Required text, + Default_Values text, + FOREIGN KEY (Container_Name) REFERENCES docker_images (id) + ); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (1, 'DB2INSTANCE', 'db2', 'Y', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (2, 'DB2INST1_PASSWORD', 'db2', 'Y', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (3, 'DBNAME', 'db2', 'Y', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (4, 'BLU', 'db2', 'N', 'True'); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (5, 'ENABLE_ORACLE_COMPATIBILITY', 'db2', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (6, 'SAMPLEDB', 'db2', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (7, 'PERSISTENT_HOME', 'db2', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (8, 'HADR_ENABLED', 'db2', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (9, 'ETCD_ENDPOINT', 'db2', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (10, 'ETCD_USERNAME', 'db2', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (11, 'ETCD_PASSWORD', 'db2', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (12, 'TEXT_SEARCH', 'db2', 'N', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (13, 'ARCHIVE_LOGS', 'db2', 'N', 'True'); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (14, 'AUTOCONFIG', 'db2', 'N', 'True'); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (15, 'MYSQL_HOST', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (16, 'MYSQL_ROOT_PASSWORD', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (17, 'MYSQL_DATABASE', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (18, 'MYSQL_USER', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (19, 'MYSQL_PASSWORD', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (20, 'MYSQL_ALLOW_EMPTY_PASSWORD', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (21, 'MYSQL_RANDOM_ROOT_PASSWORD', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (22, 'MYSQL_ONETIME_PASSWORD', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (23, 'MYSQL_INITDB_SKIP_TZINFO', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (24, 'CATALINA_BASE', 'tomcat', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (25, 'CATALINA_HOME', 'tomcat', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (26, 'CATALINA_TMPDIR', 'tomcat', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (27, 'JRE_HOME', 'tomcat', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (28, 'CLASSPATH', 'tomcat', '', ''); + +-- Table: docker_images CREATE TABLE docker_images ( id integer PRIMARY KEY AUTOINCREMENT, container_name text NOT NULL, @@ -50,220 +92,208 @@ CREATE TABLE docker_images ( FOREIGN KEY (runlib) REFERENCES entity_types (id), FOREIGN KEY (runtime) REFERENCES entity_types (id) ); -INSERT INTO docker_images VALUES(1,'Oracle Middleware (including Oracle Forms & Reports and Oracle Traffic Director)',426,NULL,NULL,137,NULL,NULL,NULL,NULL,'https://github.com/DirkNachbar/Docker','',''); -INSERT INTO docker_images VALUES(2,'eclipse',436,NULL,NULL,46,NULL,NULL,NULL,NULL,'https://github.com/fgrehm/docker-eclipse','',''); -INSERT INTO docker_images VALUES(3,'SAP MaxDB',436,NULL,NULL,176,NULL,NULL,NULL,NULL,'https://github.com/kr428/maxdb-docker','',''); -INSERT INTO docker_images VALUES(4,'IBM Maximo Asset Management',436,NULL,NULL,70,NULL,NULL,NULL,NULL,'https://github.com/nishi2go/maximo-docker','',''); -INSERT INTO docker_images VALUES(5,'Oracle Designer',426,NULL,NULL,135,NULL,NULL,NULL,NULL,'https://github.com/oracle/docker-images','',''); -INSERT INTO docker_images VALUES(6,'Oracle Real Application Clusters (RAC) Database',432,NULL,NULL,141,NULL,NULL,NULL,NULL,'https://github.com/oracle/docker-images/blob/master/OracleDatabase/RAC/OracleRealApplicationClusters/README.md','',''); -INSERT INTO docker_images VALUES(7,'Oracle Database Windows',450,NULL,NULL,134,NULL,NULL,NULL,NULL,'https://github.com/oracle/docker-images/issues/1054','',''); -INSERT INTO docker_images VALUES(8,'Oracle Siebel',432,NULL,NULL,182,NULL,NULL,NULL,NULL,'https://github.com/OracleSiebel/ConfiguringSiebel/tree/master/Containerization/Docker','',''); -INSERT INTO docker_images VALUES(9,'OpenLDAP',426,NULL,NULL,126,NULL,NULL,NULL,NULL,'https://github.com/osixia/docker-openldap','',''); -INSERT INTO docker_images VALUES(10,'Tivoli Monitoring Server (HUB TEMS)',426,NULL,NULL,77,NULL,NULL,NULL,NULL,'https://github.com/sambr7/itm6hub','',''); -INSERT INTO docker_images VALUES(11,'CA Wily Introscope',426,NULL,NULL,23,NULL,NULL,NULL,NULL,'https://github.com/stefansiegl/docker-introscope','',''); -INSERT INTO docker_images VALUES(12,'drupal',426,NULL,NULL,45,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/drupal/','Application Frameworks','Official Image'); -INSERT INTO docker_images VALUES(13,'gcc',426,305,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/gcc','DevOps Tools|Application Frameworks','Official Image'); -INSERT INTO docker_images VALUES(14,'glassfish',426,333,NULL,NULL,263,NULL,NULL,NULL,'https://hub.docker.com/_/glassfish','','Official Image'); -INSERT INTO docker_images VALUES(15,'golang_Windows',450,323,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/golang','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(16,'golang_Linux',426,323,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/golang','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(17,'groovy',426,325,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/groovy/','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(18,'haproxy',426,NULL,NULL,NULL,264,NULL,NULL,NULL,'https://hub.docker.com/_/haproxy','Application Infrastructure','Official Image'); -INSERT INTO docker_images VALUES(19,'httpd',426,NULL,NULL,NULL,259,NULL,NULL,NULL,'https://hub.docker.com/_/httpd','Application Infrastructure','Official Image'); -INSERT INTO docker_images VALUES(20,'IBM Security Access Manager',426,NULL,NULL,220,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/isam','Security|Application Infrastructure',''); -INSERT INTO docker_images VALUES(21,'jenkins',426,NULL,NULL,90,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/jenkins/','DevOps Tools','Official Image'); -INSERT INTO docker_images VALUES(22,'MarkLogic',426,NULL,NULL,97,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/marklogic','Analytics|Databases|Application Infrastructure','Verified Publisher'); -INSERT INTO docker_images VALUES(23,'memcached',426,NULL,NULL,98,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/memcached','Storage','Official Image'); -INSERT INTO docker_images VALUES(24,'.NET Framework',450,NULL,NULL,NULL,NULL,NULL,NULL,497,'https://hub.docker.com/_/microsoft-dotnet-framework','Base Images ::: runtime library : uClibc, musl','Verified Publisher, Docker Certified'); -INSERT INTO docker_images VALUES(25,'ASP.NET',450,NULL,NULL,NULL,NULL,NULL,NULL,499,'https://hub.docker.com/_/microsoft-dotnet-framework-aspnet','','Verified Publisher, Docker Certified'); -INSERT INTO docker_images VALUES(26,'Java SE JRE_Windows',450,NULL,NULL,NULL,NULL,NULL,NULL,506,'https://hub.docker.com/_/microsoft-java-jre','Base Images','Verified Publisher, Docker Certified'); -INSERT INTO docker_images VALUES(27,'Java SE JRE_Linux',426,NULL,NULL,NULL,NULL,NULL,NULL,506,'https://hub.docker.com/_/microsoft-java-jre','Base Images ::: splitted from original Row #35: "Java SE JRE"','Verified Publisher, Docker Certified'); -INSERT INTO docker_images VALUES(28,'Microsoft SQL Server',426,NULL,NULL,120,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-mssql-server','Base Images','Verified Publisher'); -INSERT INTO docker_images VALUES(29,'Windows IIS',450,NULL,NULL,NULL,266,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-windows-servercore-iis','Base Images','Verified Publisher'); -INSERT INTO docker_images VALUES(30,'Mongo_Windows',452,NULL,NULL,116,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/mongo','Databases','Official Image'); -INSERT INTO docker_images VALUES(31,'Mongo_Linux',426,NULL,NULL,116,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/mongo','Databases','Official Image'); -INSERT INTO docker_images VALUES(32,'mysql',426,NULL,NULL,122,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/mysql','Databases','Official Image'); -INSERT INTO docker_images VALUES(33,'neo4j',426,NULL,NULL,123,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/neo4j','Databases','Official Image'); -INSERT INTO docker_images VALUES(34,'nginx',426,NULL,NULL,NULL,274,NULL,NULL,NULL,'https://hub.docker.com/_/nginx','Application Infrastructure','Official Image'); -INSERT INTO docker_images VALUES(35,'node',426,NULL,NULL,NULL,NULL,NULL,NULL,507,'https://hub.docker.com/_/node/','Application Infrastructure','Official Image'); -INSERT INTO docker_images VALUES(36,'Oracle Database Enterprise Edition',426,NULL,NULL,134,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/oracle-database-enterprise-edition','Databases','Verified Publisher, Docker Certified'); -INSERT INTO docker_images VALUES(37,'Oracle WebLogic Server',426,333,NULL,NULL,262,NULL,NULL,NULL,'https://hub.docker.com/_/oracle-weblogic-server-12c','Application Frameworks|Application Infrastructure','Verified Publisher, Docker Certified'); -INSERT INTO docker_images VALUES(38,'Progress Application Server (PAS) for OpenEdge',426,344,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/pasoe','Application Infrastructure|Base Images','Verified Publisher, Docker Certified'); -INSERT INTO docker_images VALUES(39,'php',426,350,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/php','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(40,'Python_Windows',450,354,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/python','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(41,'Python_Linux',426,354,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/python','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(42,'r-base',426,355,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/r-base','Application Services','Official Image'); -INSERT INTO docker_images VALUES(43,'rabbitmq',426,NULL,NULL,165,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/rabbitmq','Messaging Services','Official Image'); -INSERT INTO docker_images VALUES(44,'rails',426,358,NULL,NULL,NULL,NULL,NULL,508,'https://hub.docker.com/_/rails/','','Official Image'); -INSERT INTO docker_images VALUES(45,'redis_Windows',450,NULL,NULL,168,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/redis/','Databases','Official Image'); -INSERT INTO docker_images VALUES(46,'redis_Linux',426,NULL,NULL,168,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/redis/','Databases','Official Image'); -INSERT INTO docker_images VALUES(47,'ruby',426,358,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/ruby','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(48,'SAP HANA, express edition (database and application services)',426,NULL,NULL,175,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/sap-hana-express-edition-incl-application-services','Analytics|Application Infrastructure|Databases','Verified Publisher'); -INSERT INTO docker_images VALUES(49,'Sentry',426,NULL,NULL,180,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/sentry/','Application Infrastructure|DevOps Tools|Monitoring','Verified Publisher'); -INSERT INTO docker_images VALUES(50,'sonarqube',426,331,NULL,186,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/sonarqube/','DevOps Tools','Official Image'); -INSERT INTO docker_images VALUES(51,'swift',426,364,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/swift','Base Images|Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(52,'tomcat',426,331,NULL,NULL,260,NULL,NULL,NULL,'https://hub.docker.com/_/tomcat','Application Infrastructure','Official Image'); -INSERT INTO docker_images VALUES(53,'websphere-liberty',426,331,NULL,NULL,285,NULL,NULL,NULL,'https://hub.docker.com/_/websphere-liberty','','Official Image'); -INSERT INTO docker_images VALUES(54,'wordpress',426,350,NULL,245,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/wordpress/','Application Services','Official Image'); -INSERT INTO docker_images VALUES(55,'xml-to-bootstrap',426,NULL,NULL,317,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/acch/xml-to-bootstrap/','',''); -INSERT INTO docker_images VALUES(56,'asterisk',429,NULL,NULL,14,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/andrius/asterisk','',''); -INSERT INTO docker_images VALUES(57,'ansible',436,NULL,NULL,5,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ansible/ansible','',''); -INSERT INTO docker_images VALUES(58,'ahfcmd',426,NULL,NULL,319,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/antennahouse/ahfcmd','',''); -INSERT INTO docker_images VALUES(59,'oracle-apex-ords',436,NULL,NULL,131,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/araczkowski/oracle-apex-ords/','',''); -INSERT INTO docker_images VALUES(60,'siebelapp',434,NULL,NULL,182,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/azeemdin/siebelapp/','',''); -INSERT INTO docker_images VALUES(61,'bmc',436,NULL,NULL,19,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/baremetalcontainer/bmc','',''); -INSERT INTO docker_images VALUES(62,'riak-kv_Ubuntu',436,331,NULL,170,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/basho/riak-kv/','',''); -INSERT INTO docker_images VALUES(63,'riak-kv_CentOS',427,331,NULL,170,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/basho/riak-kv/','',''); -INSERT INTO docker_images VALUES(64,'hive',426,NULL,NULL,8,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/bde2020/hive','',''); -INSERT INTO docker_images VALUES(65,'cordova',426,NULL,NULL,NULL,NULL,NULL,NULL,501,'https://hub.docker.com/r/beevelop/cordova','',''); -INSERT INTO docker_images VALUES(66,'kafka',429,NULL,NULL,9,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/kafka/','',''); -INSERT INTO docker_images VALUES(67,'postgresql',429,NULL,NULL,157,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/postgresql/','',''); -INSERT INTO docker_images VALUES(68,'reportserver',429,NULL,NULL,21,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/reportserver/','',''); -INSERT INTO docker_images VALUES(69,'spark',429,NULL,NULL,NULL,280,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/spark/','',''); -INSERT INTO docker_images VALUES(70,'chrome',426,NULL,NULL,55,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/browserless/chrome/','',''); -INSERT INTO docker_images VALUES(71,'docker-pentaho',426,NULL,NULL,150,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ca0abinary/docker-pentaho/','',''); -INSERT INTO docker_images VALUES(72,'chef',436,NULL,NULL,27,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/chef/chef/','',''); -INSERT INTO docker_images VALUES(73,'zerto-exporter',426,NULL,NULL,249,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/claranet/zerto-exporter/','',''); -INSERT INTO docker_images VALUES(74,'management_frontend',426,NULL,NULL,308,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/clipper/management_frontend/','',''); -INSERT INTO docker_images VALUES(75,'vmware-tools',436,NULL,NULL,230,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/corfr/vmware-tools/','',''); -INSERT INTO docker_images VALUES(76,'xampp',436,NULL,NULL,246,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/cswl/xampp','',''); -INSERT INTO docker_images VALUES(77,'activiti',426,NULL,NULL,3,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/cwoodcock/activiti/','',''); -INSERT INTO docker_images VALUES(78,'sqlanywhere',436,NULL,NULL,178,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/danpmelo/sqlanywhere/','',''); -INSERT INTO docker_images VALUES(79,'lisp',429,341,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/dexec/lisp','',''); -INSERT INTO docker_images VALUES(80,'webfocus',426,NULL,NULL,232,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/dimitrislp/webfocus','',''); -INSERT INTO docker_images VALUES(81,'apache-servicemix',427,NULL,NULL,10,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/dskow/apache-servicemix/','',''); -INSERT INTO docker_images VALUES(82,'tcl',436,NULL,NULL,365,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/efrecon/tcl/','',''); -INSERT INTO docker_images VALUES(83,'alpine-sass',426,NULL,NULL,361,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ellerbrock/alpine-sass','',''); -INSERT INTO docker_images VALUES(84,'oracle-soa-suite-12c',426,NULL,NULL,145,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/enomoto/oracle-soa-suite-12c/','',''); -INSERT INTO docker_images VALUES(85,'resin',427,NULL,NULL,NULL,278,NULL,NULL,NULL,'https://hub.docker.com/r/expertsystems/resin/','',''); -INSERT INTO docker_images VALUES(86,'docker-cobol',426,310,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/gregcoleman/docker-cobol/','',''); -INSERT INTO docker_images VALUES(87,'svn-apache',426,NULL,NULL,12,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/h0h4/svn-apache/','',''); -INSERT INTO docker_images VALUES(88,'static-file-server',426,NULL,NULL,NULL,NULL,NULL,NULL,505,'https://hub.docker.com/r/halverneus/static-file-server/','',''); -INSERT INTO docker_images VALUES(89,'hbase',426,NULL,NULL,7,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/harisekhon/hbase/','',''); -INSERT INTO docker_images VALUES(90,'ooce',450,NULL,NULL,60,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/hpoo/ooce','',''); -INSERT INTO docker_images VALUES(91,'scala-sbt',426,362,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/hseeberger/scala-sbt/','',''); -INSERT INTO docker_images VALUES(92,'delphi-prod',429,313,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/hunsche/delphi-prod','',''); -INSERT INTO docker_images VALUES(93,'fabric-ca',426,NULL,NULL,422,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/hyperledger/fabric-ca','',''); -INSERT INTO docker_images VALUES(94,'db2',426,NULL,NULL,43,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/db2','',''); -INSERT INTO docker_images VALUES(95,'ibm-http-server',426,NULL,NULL,NULL,265,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/ibm-http-server/','',''); -INSERT INTO docker_images VALUES(96,'iib',426,NULL,NULL,68,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/iib/','',''); -INSERT INTO docker_images VALUES(97,'informix-developer-database',426,NULL,NULL,330,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/informix-developer-database/','',''); -INSERT INTO docker_images VALUES(98,'kitura-ubuntu',436,NULL,NULL,NULL,269,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/kitura-ubuntu/','',''); -INSERT INTO docker_images VALUES(99,'mq',426,NULL,NULL,81,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/mq/','IBM MQ Advanced for Developers',''); -INSERT INTO docker_images VALUES(100,'websphere-portal',426,331,NULL,NULL,286,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/websphere-portal/','',''); -INSERT INTO docker_images VALUES(101,'websphere-traditional',426,331,NULL,NULL,284,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/websphere-traditional/','',''); -INSERT INTO docker_images VALUES(102,'opentext',426,NULL,NULL,127,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ikelso/opentext','',''); -INSERT INTO docker_images VALUES(103,'cognos',426,NULL,NULL,36,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ingvarch/cognos/','',''); -INSERT INTO docker_images VALUES(104,'base',426,NULL,NULL,NULL,267,NULL,NULL,NULL,'https://hub.docker.com/r/jboss/base/','',''); -INSERT INTO docker_images VALUES(105,'wildfly',426,NULL,NULL,NULL,493,NULL,NULL,NULL,'https://hub.docker.com/r/jboss/wildfly/','',''); -INSERT INTO docker_images VALUES(106,'docker-teradata-client',426,NULL,NULL,215,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/jeremymarshall/docker-teradata-client','',''); -INSERT INTO docker_images VALUES(107,'firefox',426,NULL,NULL,117,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/jlesage/firefox','',''); -INSERT INTO docker_images VALUES(108,'nginx-proxy',426,NULL,NULL,NULL,274,NULL,NULL,NULL,'https://hub.docker.com/r/jwilder/nginx-proxy/','',''); -INSERT INTO docker_images VALUES(109,'remedy-admin',426,NULL,NULL,169,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/kliremedy/remedy-admin/','',''); -INSERT INTO docker_images VALUES(110,'uniface',426,NULL,NULL,225,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/lammersma/uniface','',''); -INSERT INTO docker_images VALUES(111,'rv-tibco',426,NULL,NULL,219,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/lingya/rv-tibco','',''); -INSERT INTO docker_images VALUES(112,'openvpn-as',426,NULL,NULL,128,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/linuxserver/openvpn-as/','',''); -INSERT INTO docker_images VALUES(113,'lucee52',426,NULL,NULL,NULL,271,NULL,NULL,NULL,'https://hub.docker.com/r/lucee/lucee52','',''); -INSERT INTO docker_images VALUES(114,'sqldeveloper',426,NULL,NULL,146,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/marcelhuberfoo/sqldeveloper/','',''); -INSERT INTO docker_images VALUES(115,'term_ssh_wine_winmerge',426,NULL,NULL,241,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/marchandd/term_ssh_wine_winmerge/','',''); -INSERT INTO docker_images VALUES(116,'openbd',426,311,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/marcusf/openbd/','',''); -INSERT INTO docker_images VALUES(117,'mdw',426,NULL,NULL,115,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/mdwcore/mdw','',''); -INSERT INTO docker_images VALUES(118,'infobright',426,NULL,NULL,86,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/meatcar/infobright/','',''); -INSERT INTO docker_images VALUES(119,'alpine-expect',426,315,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/mesosphere/alpine-expect/','',''); -INSERT INTO docker_images VALUES(120,'acroread',426,NULL,NULL,4,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/mgor/acroread/','',''); -INSERT INTO docker_images VALUES(121,'dynamics-nav',450,NULL,NULL,101,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/microsoft/dynamics-nav','',''); -INSERT INTO docker_images VALUES(122,'fortran-gfortran',426,322,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nacyot/fortran-gfortran/','',''); -INSERT INTO docker_images VALUES(123,'javascript-node.js',426,337,NULL,NULL,NULL,NULL,NULL,507,'https://hub.docker.com/r/nacyot/javascript-node.js/','',''); -INSERT INTO docker_images VALUES(124,'objectivec-gcc',426,343,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nacyot/objectivec-gcc/','',''); -INSERT INTO docker_images VALUES(125,'pascal-fp_compiler',426,345,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nacyot/pascal-fp_compiler/','',''); -INSERT INTO docker_images VALUES(126,'smalltalk-gnu',426,363,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nacyot/smalltalk-gnu/','',''); -INSERT INTO docker_images VALUES(127,'asp-docker',450,NULL,NULL,NULL,NULL,NULL,NULL,499,'https://hub.docker.com/r/nagaozen/asp-docker','',''); -INSERT INTO docker_images VALUES(128,'nginx-ingress',426,NULL,NULL,88,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nginx/nginx-ingress/','',''); -INSERT INTO docker_images VALUES(129,'nix',426,NULL,NULL,125,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nixos/nix/','',''); -INSERT INTO docker_images VALUES(130,'node-red-docker',426,NULL,NULL,236,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nodered/node-red-docker/','',''); -INSERT INTO docker_images VALUES(131,'graphql-demo',426,324,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/npalm/graphql-demo','',''); -INSERT INTO docker_images VALUES(132,'sas',426,360,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/paulohms/sas/','',''); -INSERT INTO docker_images VALUES(133,'flash',426,NULL,NULL,NULL,NULL,NULL,NULL,504,'https://hub.docker.com/r/pegi3s/flash/','',''); -INSERT INTO docker_images VALUES(134,'vcenter',426,NULL,NULL,231,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/peterneln/vcenter','',''); -INSERT INTO docker_images VALUES(135,'gpdb-devel',426,NULL,NULL,56,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/pivotaldata/gpdb-devel/','',''); -INSERT INTO docker_images VALUES(136,'pivotal-tc-server',426,NULL,NULL,NULL,277,NULL,NULL,NULL,'https://hub.docker.com/r/rbosse/pivotal-tc-server/','',''); -INSERT INTO docker_images VALUES(137,'activemq',426,NULL,NULL,6,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/rmohr/activemq/','',''); -INSERT INTO docker_images VALUES(138,'svf',426,NULL,NULL,240,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/rockysui/svf','',''); -INSERT INTO docker_images VALUES(139,'typescript',426,367,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/sandrokeil/typescript/','',''); -INSERT INTO docker_images VALUES(140,'hadoop-docker',426,NULL,NULL,57,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/sequenceiq/hadoop-docker/','',''); -INSERT INTO docker_images VALUES(141,'nexus3',426,NULL,NULL,124,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/sonatype/nexus3/','',''); -INSERT INTO docker_images VALUES(142,'splunk',426,NULL,NULL,188,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/splunk/splunk/','',''); -INSERT INTO docker_images VALUES(143,'docker-eas-peoplesoft-base',426,NULL,NULL,151,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/uaecs/docker-eas-peoplesoft-base/','',''); -INSERT INTO docker_images VALUES(144,'imsdb',426,NULL,NULL,84,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/vineela/imsdb','',''); -INSERT INTO docker_images VALUES(145,'spfx',426,NULL,NULL,181,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/waldekm/spfx/','',''); -INSERT INTO docker_images VALUES(146,'sysinternals',450,NULL,NULL,192,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/weshigbee/sysinternals/','',''); -INSERT INTO docker_images VALUES(147,'arcgisserver',426,NULL,NULL,NULL,261,NULL,NULL,NULL,'https://hub.docker.com/r/xzdbd/arcgisserver/','',''); -INSERT INTO docker_images VALUES(148,'zeromq',426,NULL,NULL,248,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/zeromq/zeromq/','',''); -INSERT INTO docker_images VALUES(149,'IBM Workload Scheduler 9.5',426,NULL,NULL,79,NULL,NULL,NULL,NULL,'https://www.ibm.com/support/pages/ibm-workload-scheduler-95-docker-container-images','',''); -INSERT INTO docker_images VALUES(150,'IBM Transformation Extender',426,NULL,NULL,83,NULL,NULL,NULL,NULL,'https://www.ibm.com/support/pages/release-notes-ibm-transformation-extender-v1000','',''); -INSERT INTO docker_images VALUES(151,'openjdk_Windows',450,331,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/openjdk','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(152,'openjdk_Linux',426,331,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/openjdk','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(153,'perl',426,347,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/perl/','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(154,'postgres',426,NULL,NULL,157,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/postgres','Databases','Official Image'); -INSERT INTO docker_images VALUES(155,'solr',426,NULL,NULL,11,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/solr/','Analytics|Application Services','Official Image'); -INSERT INTO docker_images VALUES(156,'odm',426,NULL,NULL,73,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/odm/','',''); -INSERT INTO docker_images VALUES(157,'maxdb-provider',426,NULL,NULL,176,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/integra/maxdb-provider/','',''); -INSERT INTO docker_images VALUES(158,'mssql-server-windows-developer',450,NULL,NULL,120,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/microsoft/mssql-server-windows-developer/','',''); -INSERT INTO docker_images VALUES(159,'mssql-server-windows-express',450,NULL,NULL,121,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/microsoft/mssql-server-windows-express/','',''); -INSERT INTO docker_images VALUES(160,'docker-sybase',426,NULL,NULL,190,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nguoianphu/docker-sybase','',''); -INSERT INTO docker_images VALUES(161,'netscaler-cpx',426,NULL,NULL,31,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/netscaler-cpx','','Verified Publisher'); -INSERT INTO docker_images VALUES(162,'sqlite',426,NULL,NULL,258,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-azureiotedge-sqlite','','Verified Publisher'); -INSERT INTO docker_images VALUES(163,'vb',426,368,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-dotnet-framework','Programming Languages','Verified Publisher'); -INSERT INTO docker_images VALUES(164,'Software AG Adabas CE',426,NULL,NULL,656,NULL,NULL,NULL,NULL,'https://github.com/DirkNachbar/Docker','Databases','Verified Publisher'); -INSERT INTO docker_images VALUES(165,'Software AG Natural CE',426,653,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/softwareag-natural-ce','Programming Languages','Verified Publisher'); -INSERT INTO docker_images VALUES(166,'ansible/ansible',426,NULL,NULL,5,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ansible/ansible','',''); -INSERT INTO docker_images VALUES(167,'PowerShell',426,660,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-powershell','','Verified Publisher'); -INSERT INTO docker_images VALUES(168,'PowerShell',450,660,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-powershell','','Verified Publisher'); -INSERT INTO docker_images VALUES(169,'cassandra',426,NULL,NULL,634,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/cassandra','Databases','Official Image'); -INSERT INTO docker_images VALUES(170,'Gitlab Community Edition',426,NULL,NULL,678,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/gitlab-community-edition','DevOps Tool','Verified Publisher'); -INSERT INTO docker_images VALUES(171,'maven',426,331,388,697,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/maven','',NULL); -INSERT INTO docker_images VALUES (172, 'adobecoldfusion/coldfusion', 426, 'NULL', 'NULL', 37, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/adobecoldfusion/coldfusion', '', 'False'); -INSERT INTO docker_images VALUES (173, 'ibmcom/db2', 426, 'NULL', 'NULL', 43, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/ibmcom/db2', '', 'False'); -INSERT INTO docker_images VALUES (174, 'bitnami/mongodb', 426, 'NULL', 'NULL', 116, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/bitnami/mongodb', '', 'False'); -INSERT INTO docker_images VALUES (175, 'bitnami/openldap', 426, 'NULL', 'NULL', 126, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/bitnami/openldap', '', 'False'); -INSERT INTO docker_images VALUES (176, 'bitnami/postgresql', 426, 'NULL', 'NULL', 157, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/bitnami/postgresql', '', 'False'); -INSERT INTO docker_images VALUES (177, 'redis', 426, 'NULL', 'NULL', 168, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/redis', '', 'True'); -INSERT INTO docker_images VALUES (178, 'sentry', 426, 'NULL', 'NULL', 180, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/sentry', '', 'True'); -INSERT INTO docker_images VALUES (179, 'ibmcom/zeromq', 426, 'NULL', 'NULL', 248, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/ibmcom/zeromq', '', 'False'); -INSERT INTO docker_images VALUES (180, 'bitnami/spark', 426, 'NULL', 'NULL', 'NULL', 280, 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/bitnami/spark', '', 'False'); -INSERT INTO docker_images VALUES (181, 'ibmcom/bootstrap', 426, 'NULL', 377, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/ibmcom/bootstrap', '', 'False'); -INSERT INTO docker_images VALUES (182, 'ibmcom/react', 426, 'NULL', 413, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/ibmcom/react', '', 'False'); -INSERT INTO docker_images VALUES (183, 'circleci/android', 418, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/circleci/android', '', 'False'); -INSERT INTO docker_images VALUES (184, 'dart', 421, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/dart', '', 'True'); -INSERT INTO docker_images VALUES (185, 'centos', 427, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/centos', '', 'True'); -INSERT INTO docker_images VALUES (186, 'debian', 429, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/debian', '', 'True'); -INSERT INTO docker_images VALUES (187, 'opensuse', 431, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/opensuse', '', 'True'); -INSERT INTO docker_images VALUES (188, 'ubuntu', 436, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/ubuntu', '', 'True'); -INSERT INTO docker_images VALUES (189, 'fedora', 453, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/fedora', '', 'True'); -INSERT INTO docker_images VALUES (190, 'bitnami/wildfly', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 493, 'NULL', 'https://hub.docker.com/r/bitnami/wildfly', '', 'False'); -INSERT INTO docker_images VALUES (191, 'docker', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 503, 'https://hub.docker.com/_/docker', '', 'True'); -INSERT INTO docker_images VALUES (192, 'ibmcom/json', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/ibmcom/json', '', 'False'); -INSERT INTO docker_images VALUES (193, 'java', 426, 584, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/java', '', 'True'); -INSERT INTO docker_images VALUES (194, 'python', 426, 587, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/python', '', 'True'); -INSERT INTO docker_images VALUES (195, 'snyk/snyk', 426, 'NULL', 'NULL', 613, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/snyk/snyk', '', 'False'); -INSERT INTO docker_images VALUES (196, 'varnish', 426, 'NULL', 'NULL', 'NULL', 615, 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/varnish', '', 'True'); -INSERT INTO docker_images VALUES (197, 'kasmweb/api', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/kasmweb/api', '', 'False'); -INSERT INTO docker_images VALUES (198, 'nuxeo', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 620, 'https://hub.docker.com/_/nuxeo', '', 'True'); -INSERT INTO docker_images VALUES (199, 'arangodb', 426, 'NULL', 'NULL', 621, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/arangodb', '', 'True'); -INSERT INTO docker_images VALUES (200, 'bitnami/minio', 426, 'NULL', 'NULL', 625, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/bitnami/minio', '', 'False'); -INSERT INTO docker_images VALUES (201, 'elasticsearch', 426, 'NULL', 'NULL', 626, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/elasticsearch', '', 'True'); -INSERT INTO docker_images VALUES (202, 'bitnami/keycloak', 426, 'NULL', 'NULL', 628, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/bitnami/keycloak', '', 'False'); -INSERT INTO docker_images VALUES (203, 'grafana/grafana', 426, 'NULL', 'NULL', 629, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/grafana/grafana', '', 'False'); -INSERT INTO docker_images VALUES (204, 'mariadb', 426, 'NULL', 'NULL', 642, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/mariadb', '', 'True'); -INSERT INTO docker_images VALUES (205, 'vault', 426, 'NULL', 'NULL', 645, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/vault', '', 'True'); -INSERT INTO docker_images VALUES (206, 'bitnami/etcd', 426, 'NULL', 'NULL', 647, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/bitnami/etcd', '', 'False'); -INSERT INTO docker_images VALUES (207, 'traefik', 426, 'NULL', 'NULL', 'NULL', 648, 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/_/traefik', '', 'True'); -INSERT INTO docker_images VALUES (208, 'bitnami/git', 426, 'NULL', 'NULL', 677, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/bitnami/git', '', 'False'); -INSERT INTO docker_images VALUES (209, 'ibmcom/isam', 426, 'NULL', 'NULL', 693, 'NULL', 'NULL', 'NULL', 'NULL', 'https://hub.docker.com/r/ibmcom/isam', '', 'False'); - - - - +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (1, 'Oracle Middleware (including Oracle Forms & Reports and Oracle Traffic Director)', 426, NULL, NULL, 137, NULL, NULL, NULL, NULL, 'https://github.com/DirkNachbar/Docker', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (2, 'eclipse', 436, NULL, NULL, 46, NULL, NULL, NULL, NULL, 'https://github.com/fgrehm/docker-eclipse', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (3, 'SAP MaxDB', 436, NULL, NULL, 176, NULL, NULL, NULL, NULL, 'https://github.com/kr428/maxdb-docker', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (4, 'IBM Maximo Asset Management', 436, NULL, NULL, 70, NULL, NULL, NULL, NULL, 'https://github.com/nishi2go/maximo-docker', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (5, 'Oracle Designer', 426, NULL, NULL, 135, NULL, NULL, NULL, NULL, 'https://github.com/oracle/docker-images', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (6, 'Oracle Real Application Clusters (RAC) Database', 432, NULL, NULL, 141, NULL, NULL, NULL, NULL, 'https://github.com/oracle/docker-images/blob/master/OracleDatabase/RAC/OracleRealApplicationClusters/README.md', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (7, 'Oracle Database Windows', 450, NULL, NULL, 134, NULL, NULL, NULL, NULL, 'https://github.com/oracle/docker-images/issues/1054', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (8, 'Oracle Siebel', 432, NULL, NULL, 182, NULL, NULL, NULL, NULL, 'https://github.com/OracleSiebel/ConfiguringSiebel/tree/master/Containerization/Docker', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (9, 'OpenLDAP', 426, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://github.com/osixia/docker-openldap', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (10, 'Tivoli Monitoring Server (HUB TEMS)', 426, NULL, NULL, 77, NULL, NULL, NULL, NULL, 'https://github.com/sambr7/itm6hub', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (11, 'CA Wily Introscope', 426, NULL, NULL, 23, NULL, NULL, NULL, NULL, 'https://github.com/stefansiegl/docker-introscope', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (12, 'drupal', 426, NULL, NULL, 45, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/drupal/', 'Application Frameworks', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (13, 'gcc', 426, 305, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/gcc', 'DevOps Tools|Application Frameworks', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (14, 'glassfish', 426, 333, NULL, NULL, 263, NULL, NULL, NULL, 'https://hub.docker.com/_/glassfish', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (15, 'golang_Windows', 450, 323, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/golang', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (16, 'golang_Linux', 426, 323, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/golang', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (17, 'groovy', 426, 325, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/groovy/', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (18, 'haproxy', 426, NULL, NULL, NULL, 264, NULL, NULL, NULL, 'https://hub.docker.com/_/haproxy', 'Application Infrastructure', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (19, 'httpd', 426, NULL, NULL, NULL, 259, NULL, NULL, NULL, 'https://hub.docker.com/_/httpd', 'Application Infrastructure', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (20, 'IBM Security Access Manager', 426, NULL, NULL, 220, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/isam', 'Security|Application Infrastructure', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (21, 'jenkins', 426, NULL, NULL, 90, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/jenkins/', 'DevOps Tools', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (22, 'MarkLogic', 426, NULL, NULL, 97, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/marklogic', 'Analytics|Databases|Application Infrastructure', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (23, 'memcached', 426, NULL, NULL, 98, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/memcached', 'Storage', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (24, '.NET Framework', 450, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'https://hub.docker.com/_/microsoft-dotnet-framework', 'Base Images ::: runtime library : uClibc, musl', 'Verified Publisher, Docker Certified'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (25, 'ASP.NET', 450, NULL, NULL, NULL, NULL, NULL, NULL, 499, 'https://hub.docker.com/_/microsoft-dotnet-framework-aspnet', '', 'Verified Publisher, Docker Certified'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (26, 'Java SE JRE_Windows', 450, NULL, NULL, NULL, NULL, NULL, NULL, 506, 'https://hub.docker.com/_/microsoft-java-jre', 'Base Images', 'Verified Publisher, Docker Certified'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (27, 'Java SE JRE_Linux', 426, NULL, NULL, NULL, NULL, NULL, NULL, 506, 'https://hub.docker.com/_/microsoft-java-jre', 'Base Images ::: splitted from original Row #35: "Java SE JRE"', 'Verified Publisher, Docker Certified'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (28, 'Microsoft SQL Server', 426, NULL, NULL, 120, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/microsoft-mssql-server', 'Base Images', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (29, 'Windows IIS', 450, NULL, NULL, NULL, 266, NULL, NULL, NULL, 'https://hub.docker.com/_/microsoft-windows-servercore-iis', 'Base Images', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (30, 'Mongo_Windows', 452, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/mongo', 'Databases', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (31, 'Mongo_Linux', 426, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/mongo', 'Databases', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (32, 'mysql', 426, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/mysql', 'Databases', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (33, 'neo4j', 426, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/neo4j', 'Databases', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (34, 'nginx', 426, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://hub.docker.com/_/nginx', 'Application Infrastructure', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (35, 'node', 426, NULL, NULL, NULL, NULL, NULL, NULL, 507, 'https://hub.docker.com/_/node/', 'Application Infrastructure', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (36, 'Oracle Database Enterprise Edition', 426, NULL, NULL, 134, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/oracle-database-enterprise-edition', 'Databases', 'Verified Publisher, Docker Certified'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (37, 'Oracle WebLogic Server', 426, 333, NULL, NULL, 262, NULL, NULL, NULL, 'https://hub.docker.com/_/oracle-weblogic-server-12c', 'Application Frameworks|Application Infrastructure', 'Verified Publisher, Docker Certified'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (38, 'Progress Application Server (PAS) for OpenEdge', 426, 344, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/pasoe', 'Application Infrastructure|Base Images', 'Verified Publisher, Docker Certified'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (39, 'php', 426, 350, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/php', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (40, 'Python_Windows', 450, 354, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/python', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (41, 'Python_Linux', 426, 354, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/python', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (42, 'r-base', 426, 355, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/r-base', 'Application Services', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (43, 'rabbitmq', 426, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/rabbitmq', 'Messaging Services', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (44, 'rails', 426, 358, NULL, NULL, NULL, NULL, NULL, 508, 'https://hub.docker.com/_/rails/', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (45, 'redis_Windows', 450, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/redis/', 'Databases', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (46, 'redis_Linux', 426, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/redis/', 'Databases', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (47, 'ruby', 426, 358, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/ruby', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (48, 'SAP HANA, express edition (database and application services)', 426, NULL, NULL, 175, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/sap-hana-express-edition-incl-application-services', 'Analytics|Application Infrastructure|Databases', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (49, 'Sentry', 426, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/sentry/', 'Application Infrastructure|DevOps Tools|Monitoring', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (50, 'sonarqube', 426, 331, NULL, 186, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/sonarqube/', 'DevOps Tools', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (51, 'swift', 426, 364, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/swift', 'Base Images|Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (52, 'tomcat', 426, 331, NULL, NULL, 260, NULL, NULL, NULL, 'https://hub.docker.com/_/tomcat', 'Application Infrastructure', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (53, 'websphere-liberty', 426, 331, NULL, NULL, 285, NULL, NULL, NULL, 'https://hub.docker.com/_/websphere-liberty', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (54, 'wordpress', 426, 350, NULL, 245, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/wordpress/', 'Application Services', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (55, 'xml-to-bootstrap', 426, NULL, NULL, 317, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/acch/xml-to-bootstrap/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (56, 'asterisk', 429, NULL, NULL, 14, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/andrius/asterisk', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (57, 'ansible', 436, NULL, NULL, 5, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ansible/ansible', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (58, 'ahfcmd', 426, NULL, NULL, 319, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/antennahouse/ahfcmd', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (59, 'oracle-apex-ords', 436, NULL, NULL, 131, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/araczkowski/oracle-apex-ords/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (60, 'siebelapp', 434, NULL, NULL, 182, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/azeemdin/siebelapp/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (61, 'bmc', 436, NULL, NULL, 19, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/baremetalcontainer/bmc', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (62, 'riak-kv_Ubuntu', 436, 331, NULL, 170, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/basho/riak-kv/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (63, 'riak-kv_CentOS', 427, 331, NULL, 170, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/basho/riak-kv/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (64, 'hive', 426, NULL, NULL, 8, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bde2020/hive', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (65, 'cordova', 426, NULL, NULL, NULL, NULL, NULL, NULL, 501, 'https://hub.docker.com/r/beevelop/cordova', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (66, 'kafka', 429, NULL, NULL, 9, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/kafka/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (67, 'postgresql', 429, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/postgresql/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (68, 'reportserver', 429, NULL, NULL, 21, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/reportserver/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (69, 'spark', 429, NULL, NULL, NULL, 280, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/spark/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (70, 'chrome', 426, NULL, NULL, 55, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/browserless/chrome/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (71, 'docker-pentaho', 426, NULL, NULL, 150, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ca0abinary/docker-pentaho/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (72, 'chef', 436, NULL, NULL, 27, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/chef/chef/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (73, 'zerto-exporter', 426, NULL, NULL, 249, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/claranet/zerto-exporter/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (74, 'management_frontend', 426, NULL, NULL, 308, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/clipper/management_frontend/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (75, 'vmware-tools', 436, NULL, NULL, 230, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/corfr/vmware-tools/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (76, 'xampp', 436, NULL, NULL, 246, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/cswl/xampp', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (77, 'activiti', 426, NULL, NULL, 3, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/cwoodcock/activiti/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (78, 'sqlanywhere', 436, NULL, NULL, 178, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/danpmelo/sqlanywhere/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (79, 'lisp', 429, 341, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/dexec/lisp', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (80, 'webfocus', 426, NULL, NULL, 232, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/dimitrislp/webfocus', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (81, 'apache-servicemix', 427, NULL, NULL, 10, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/dskow/apache-servicemix/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (82, 'tcl', 436, NULL, NULL, 365, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/efrecon/tcl/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (83, 'alpine-sass', 426, NULL, NULL, 361, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ellerbrock/alpine-sass', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (84, 'oracle-soa-suite-12c', 426, NULL, NULL, 145, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/enomoto/oracle-soa-suite-12c/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (85, 'resin', 427, NULL, NULL, NULL, 278, NULL, NULL, NULL, 'https://hub.docker.com/r/expertsystems/resin/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (86, 'docker-cobol', 426, 310, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/gregcoleman/docker-cobol/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (87, 'svn-apache', 426, NULL, NULL, 12, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/h0h4/svn-apache/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (88, 'static-file-server', 426, NULL, NULL, NULL, NULL, NULL, NULL, 505, 'https://hub.docker.com/r/halverneus/static-file-server/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (89, 'hbase', 426, NULL, NULL, 7, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/harisekhon/hbase/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (90, 'ooce', 450, NULL, NULL, 60, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/hpoo/ooce', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (91, 'scala-sbt', 426, 362, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/hseeberger/scala-sbt/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (92, 'delphi-prod', 429, 313, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/hunsche/delphi-prod', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (93, 'fabric-ca', 426, NULL, NULL, 422, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/hyperledger/fabric-ca', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (94, 'db2', 426, NULL, NULL, 43, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/db2', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (95, 'ibm-http-server', 426, NULL, NULL, NULL, 265, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/ibm-http-server/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (96, 'iib', 426, NULL, NULL, 68, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/iib/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (97, 'informix-developer-database', 426, NULL, NULL, 330, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/informix-developer-database/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (98, 'kitura-ubuntu', 436, NULL, NULL, NULL, 269, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/kitura-ubuntu/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (99, 'mq', 426, NULL, NULL, 81, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/mq/', 'IBM MQ Advanced for Developers', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (100, 'websphere-portal', 426, 331, NULL, NULL, 286, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/websphere-portal/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (101, 'websphere-traditional', 426, 331, NULL, NULL, 284, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/websphere-traditional/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (102, 'opentext', 426, NULL, NULL, 127, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ikelso/opentext', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (103, 'cognos', 426, NULL, NULL, 36, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ingvarch/cognos/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (104, 'base', 426, NULL, NULL, NULL, 267, NULL, NULL, NULL, 'https://hub.docker.com/r/jboss/base/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (105, 'wildfly', 426, NULL, NULL, NULL, 493, NULL, NULL, NULL, 'https://hub.docker.com/r/jboss/wildfly/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (106, 'docker-teradata-client', 426, NULL, NULL, 215, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/jeremymarshall/docker-teradata-client', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (107, 'firefox', 426, NULL, NULL, 117, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/jlesage/firefox', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (108, 'nginx-proxy', 426, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://hub.docker.com/r/jwilder/nginx-proxy/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (109, 'remedy-admin', 426, NULL, NULL, 169, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/kliremedy/remedy-admin/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (110, 'uniface', 426, NULL, NULL, 225, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/lammersma/uniface', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (111, 'rv-tibco', 426, NULL, NULL, 219, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/lingya/rv-tibco', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (112, 'openvpn-as', 426, NULL, NULL, 128, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/linuxserver/openvpn-as/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (113, 'lucee52', 426, NULL, NULL, NULL, 271, NULL, NULL, NULL, 'https://hub.docker.com/r/lucee/lucee52', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (114, 'sqldeveloper', 426, NULL, NULL, 146, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/marcelhuberfoo/sqldeveloper/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (115, 'term_ssh_wine_winmerge', 426, NULL, NULL, 241, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/marchandd/term_ssh_wine_winmerge/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (116, 'openbd', 426, 311, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/marcusf/openbd/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (117, 'mdw', 426, NULL, NULL, 115, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/mdwcore/mdw', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (118, 'infobright', 426, NULL, NULL, 86, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/meatcar/infobright/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (119, 'alpine-expect', 426, 315, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/mesosphere/alpine-expect/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (120, 'acroread', 426, NULL, NULL, 4, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/mgor/acroread/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (121, 'dynamics-nav', 450, NULL, NULL, 101, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/microsoft/dynamics-nav', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (122, 'fortran-gfortran', 426, 322, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nacyot/fortran-gfortran/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (123, 'javascript-node.js', 426, 337, NULL, NULL, NULL, NULL, NULL, 507, 'https://hub.docker.com/r/nacyot/javascript-node.js/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (124, 'objectivec-gcc', 426, 343, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nacyot/objectivec-gcc/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (125, 'pascal-fp_compiler', 426, 345, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nacyot/pascal-fp_compiler/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (126, 'smalltalk-gnu', 426, 363, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nacyot/smalltalk-gnu/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (127, 'asp-docker', 450, NULL, NULL, NULL, NULL, NULL, NULL, 499, 'https://hub.docker.com/r/nagaozen/asp-docker', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (128, 'nginx-ingress', 426, NULL, NULL, 88, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nginx/nginx-ingress/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (129, 'nix', 426, NULL, NULL, 125, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nixos/nix/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (130, 'node-red-docker', 426, NULL, NULL, 236, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nodered/node-red-docker/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (131, 'graphql-demo', 426, 324, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/npalm/graphql-demo', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (132, 'sas', 426, 360, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/paulohms/sas/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (133, 'flash', 426, NULL, NULL, NULL, NULL, NULL, NULL, 504, 'https://hub.docker.com/r/pegi3s/flash/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (134, 'vcenter', 426, NULL, NULL, 231, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/peterneln/vcenter', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (135, 'gpdb-devel', 426, NULL, NULL, 56, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/pivotaldata/gpdb-devel/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (136, 'pivotal-tc-server', 426, NULL, NULL, NULL, 277, NULL, NULL, NULL, 'https://hub.docker.com/r/rbosse/pivotal-tc-server/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (137, 'activemq', 426, NULL, NULL, 6, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/rmohr/activemq/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (138, 'svf', 426, NULL, NULL, 240, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/rockysui/svf', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (139, 'typescript', 426, 367, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/sandrokeil/typescript/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (140, 'hadoop-docker', 426, NULL, NULL, 57, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/sequenceiq/hadoop-docker/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (141, 'nexus3', 426, NULL, NULL, 124, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/sonatype/nexus3/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (142, 'splunk', 426, NULL, NULL, 188, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/splunk/splunk/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (143, 'docker-eas-peoplesoft-base', 426, NULL, NULL, 151, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/uaecs/docker-eas-peoplesoft-base/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (144, 'imsdb', 426, NULL, NULL, 84, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/vineela/imsdb', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (145, 'spfx', 426, NULL, NULL, 181, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/waldekm/spfx/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (146, 'sysinternals', 450, NULL, NULL, 192, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/weshigbee/sysinternals/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (147, 'arcgisserver', 426, NULL, NULL, NULL, 261, NULL, NULL, NULL, 'https://hub.docker.com/r/xzdbd/arcgisserver/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (148, 'zeromq', 426, NULL, NULL, 248, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/zeromq/zeromq/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (149, 'IBM Workload Scheduler 9.5', 426, NULL, NULL, 79, NULL, NULL, NULL, NULL, 'https://www.ibm.com/support/pages/ibm-workload-scheduler-95-docker-container-images', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (150, 'IBM Transformation Extender', 426, NULL, NULL, 83, NULL, NULL, NULL, NULL, 'https://www.ibm.com/support/pages/release-notes-ibm-transformation-extender-v1000', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (151, 'openjdk_Windows', 450, 331, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/openjdk', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (152, 'openjdk_Linux', 426, 331, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/openjdk', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (153, 'perl', 426, 347, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/perl/', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (154, 'postgres', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/postgres', 'Databases', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (155, 'solr', 426, NULL, NULL, 11, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/solr/', 'Analytics|Application Services', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (156, 'odm', 426, NULL, NULL, 73, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/odm/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (157, 'maxdb-provider', 426, NULL, NULL, 176, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/integra/maxdb-provider/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (158, 'mssql-server-windows-developer', 450, NULL, NULL, 120, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/microsoft/mssql-server-windows-developer/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (159, 'mssql-server-windows-express', 450, NULL, NULL, 121, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/microsoft/mssql-server-windows-express/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (160, 'docker-sybase', 426, NULL, NULL, 190, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nguoianphu/docker-sybase', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (161, 'netscaler-cpx', 426, NULL, NULL, 31, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/netscaler-cpx', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (162, 'sqlite', 426, NULL, NULL, 258, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/microsoft-azureiotedge-sqlite', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (163, 'vb', 426, 368, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/microsoft-dotnet-framework', 'Programming Languages', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (164, 'adobecoldfusion/coldfusion', 426, NULL, NULL, 37, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/adobecoldfusion/coldfusion', '', 'False'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (165, 'ibmcom/db2', 426, NULL, NULL, 43, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/db2', '', 'False'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (166, 'bitnami/mongodb', 426, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/mongodb', '', 'False'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (167, 'bitnami/openldap', 426, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/openldap', '', 'False'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (168, 'bitnami/postgresql', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/postgresql', '', 'False'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (169, 'redis', 426, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/redis', '', 'True'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (170, 'sentry', 426, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/sentry', '', 'True'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (171, 'ibmcom/zeromq', 426, NULL, NULL, 248, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/zeromq', '', 'False'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (172, 'bitnami/spark', 426, NULL, NULL, NULL, 280, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/spark', '', 'False'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (173, 'java', 426, 331, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/java', '', 'True'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (174, 'python', 426, 354, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/python', '', 'True'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (175, 'ibmcom/react', 426, NULL, 413, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/react', '', 'False'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (176, 'circleci/android', 418, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/circleci/android', '', 'False'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (177, 'dart', 421, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/dart', '', 'True'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (178, 'centos', 427, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/centos', '', 'True'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (179, 'debian', 429, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/debian', '', 'True'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (180, 'opensuse', 431, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/opensuse', '', 'True'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (181, 'ubuntu', 436, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/ubuntu', '', 'True'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (182, 'fedora', 453, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/fedora', '', 'True'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (183, 'bitnami/wildfly', 426, NULL, NULL, NULL, NULL, NULL, 493, NULL, 'https://hub.docker.com/r/bitnami/wildfly', '', 'False'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (184, 'docker', 426, NULL, NULL, NULL, NULL, NULL, NULL, 503, 'https://hub.docker.com/_/docker', '', 'True'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (185, 'ibmcom/json', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/json', '', 'False'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (186, 'snyk/snyk', 426, NULL, NULL, 613, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/snyk/snyk', '', 'False'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (187, 'varnish', 426, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'https://hub.docker.com/_/varnish', '', 'True'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (188, 'kasmweb/api', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/kasmweb/api', '', 'False'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (189, 'nuxeo', 426, NULL, NULL, NULL, NULL, NULL, NULL, 620, 'https://hub.docker.com/_/nuxeo', '', 'True'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (190, 'arangodb', 426, NULL, NULL, 621, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/arangodb', '', 'True'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (191, 'bitnami/minio', 426, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/minio', '', 'False'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (192, 'elasticsearch', 426, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/elasticsearch', '', 'True'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (193, 'bitnami/keycloak', 426, NULL, NULL, 628, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/keycloak', '', 'False'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (194, 'grafana/grafana', 426, NULL, NULL, 629, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/grafana/grafana', '', 'False'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (195, 'mariadb', 426, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/mariadb', '', 'True'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (196, 'vault', 426, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/vault', '', 'True'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (197, 'bitnami/etcd', 426, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/etcd', '', 'False'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (198, 'traefik', 426, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://hub.docker.com/_/traefik', '', 'True'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (199, 'bitnami/git', 426, NULL, NULL, 677, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/git', '', 'False'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (200, 'ibmcom/isam', 426, NULL, NULL, 693, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/isam', '', 'False'); +-- Table: entities CREATE TABLE entities ( id integer PRIMARY KEY AUTOINCREMENT, entity_name text NOT NULL, @@ -271,704 +301,706 @@ CREATE TABLE entities ( external_link text, COTS TEXT(10) DEFAULT N NOT NULL, Legacy TEXT(10) DEFAULT N NOT NULL, ContainerImage TEXT(10) DEFAULT N NOT NULL, OpenSource TEXT(10) DEFAULT N NOT NULL, FOREIGN KEY (entity_type_id) REFERENCES entity_types (id) ); -INSERT INTO entities VALUES(1,'(E)JES',2,'{''qid'': ''Q355203'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q355203''}','Y','N','N','N'); -INSERT INTO entities VALUES(2,'A-Auto Job Scheduling Software',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(3,'Activiti',2,'{''qid'': ''Q344370'', ''types'': [''Q341'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Activiti_(software)''}','N','Y','Y','Y'); -INSERT INTO entities VALUES(4,'Adobe Acrobat Reader',2,'{''qid'': ''Q207902'', ''types'': [''Q29364197'', ''Q166142''], ''url'': ''http://dbpedia.org/resource/Adobe_Acrobat''}','N','N','Y','N'); -INSERT INTO entities VALUES(5,'Ansible',2,'{''qid'': ''Q2852503'', ''types'': [''Q29032804''], ''url'': ''http://dbpedia.org/resource/Ansible_(software)''}','N','N','Y','Y'); -INSERT INTO entities VALUES(6,'Apache ActiveMQ',2,'{''qid'': ''Q773135'', ''types'': [''Q6821765'', ''Q1092177'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_ActiveMQ''}','N','N','Y','Y'); -INSERT INTO entities VALUES(7,'Apache Hbase',2,'{''qid'': ''Q2538066'', ''types'': [''Q341'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Apache_HBase''}','N','Y','Y','N'); -INSERT INTO entities VALUES(8,'Apache Hive',2,'{''qid'': ''Q4778914'', ''types'': [''Q341'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Apache_Hive''}','N','N','Y','Y'); -INSERT INTO entities VALUES(9,'Apache Kafka',2,'{''qid'': ''Q16235208'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/Apache_Kafka''}','N','N','Y','Y'); -INSERT INTO entities VALUES(10,'Apache ServiceMix',2,'{''qid'': ''Q773212'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_ServiceMix''}','N','N','Y','Y'); -INSERT INTO entities VALUES(11,'Apache Solr',2,'{''qid'': ''Q2858103'', ''types'': [''Q19541'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_Solr''}','N','N','Y','Y'); -INSERT INTO entities VALUES(12,'Apache Subversion',2,'{''qid'': ''Q46794'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Apache_Subversion''}','N','N','Y','Y'); -INSERT INTO entities VALUES(13,'Application Development Facility (ADF)',2,'{''qid'': ''Q5285237'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Django_Software_Foundation''}','N','Y','Y','N'); -INSERT INTO entities VALUES(14,'Asterisk',2,'{''qid'': ''Q622754'', ''types'': [''Q1978634''], ''url'': ''http://dbpedia.org/resource/Asterisk_(PBX)''}','N','N','Y','Y'); -INSERT INTO entities VALUES(15,'Automic Job Scheduler',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(16,'Autosys',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(17,'Bluebeam|Bluebeam Q',2,'{''qid'': ''Q4930191'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Bluebeam_Software,_Inc.''}','Y','N','N','N'); -INSERT INTO entities VALUES(18,'BMC Control-M',2,'{''qid'': ''Q4835944'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q4835944''}','Y','N','N','N'); -INSERT INTO entities VALUES(19,'BMC Identity Management',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(20,'Borland Database Engine (BDE)',2,'{''qid'': ''Q893888'', ''types'': [''Q537993''], ''url'': ''http://dbpedia.org/resource/Borland_Database_Engine''}','N','N','Y','N'); -INSERT INTO entities VALUES(21,'Business Intelligence and Reporting Tools (BIRT)',2,'{''qid'': ''Q796007'', ''types'': [''Q341'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/BIRT_Project''}','N','N','Y','Y'); -INSERT INTO entities VALUES(22,'CA Gen',2,'{''qid'': ''Q2125673'', ''types'': [''Q28059995''], ''url'': ''http://dbpedia.org/resource/CA_Gen''}','N','N','Y','N'); -INSERT INTO entities VALUES(23,'CA Introscope',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(24,'CA-Panvalet',2,'{''qid'': ''Q17073931'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Panvalet''}','Y','Y','N','N'); -INSERT INTO entities VALUES(25,'CA-TELON',2,'{''qid'': ''Q2383975'', ''types'': [''Q238137''], ''url'': ''http://dbpedia.org/resource/CA-Telon''}','Y','Y','N','N'); -INSERT INTO entities VALUES(26,'Casegen',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(27,'Chef Automate',2,'{''qid'': ''Q24479'', ''types'': [''Q29032804''], ''url'': ''http://dbpedia.org/resource/Chef_(software)''}','N','N','Y','Y'); -INSERT INTO entities VALUES(28,'Cisco AMP for Endpoints',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(29,'CiscoWorks LAN Management Solution (LMS)',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(30,'Citrix Virtual Apps and Desktops',2,'{''qid'': ''Q1093482'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/XenApp''}','Y','N','N','N'); -INSERT INTO entities VALUES(31,'Citrix ADC CPX',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(32,'Citrix Provisioning',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(33,'Clarify',2,'{''qid'': ''Q17105097'', ''types'': [''Q1058914''], ''url'': ''http://dbpedia.org/resource/Clarify_Op3nvoice''}','Y','Y','N','N'); -INSERT INTO entities VALUES(34,'Clarity LIMS',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(35,'LabWare LIMS',2,'{''qid'': ''Q1798149'', ''types'': [''Q121182''], ''url'': ''http://dbpedia.org/resource/Laboratory_information_management_system''}','Y','N','N','N'); -INSERT INTO entities VALUES(36,'Cognos',2,'{''qid'': ''Q1107048'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Cognos''}','N','N','Y','N'); -INSERT INTO entities VALUES(37,'Coldfusion',2,'{''qid'': ''Q468446'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Adobe_ColdFusion''}','Y','N','N','N'); -INSERT INTO entities VALUES(38,'ConceptWave',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(39,'CONNAPI',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(40,'Connect Direct',2,'{''qid'': ''Q369085'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Connect:Direct''}','Y','N','N','N'); -INSERT INTO entities VALUES(41,'Cornerstone software',2,'{''qid'': ''Q5171657'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Cornerstone_(software)''}','Y','N','N','N'); -INSERT INTO entities VALUES(42,'Crystal Reports',2,'{''qid'': ''Q1142403'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/Crystal_Reports''}','Y','N','N','N'); -INSERT INTO entities VALUES(43,'DB2',2,'{''qid'': ''Q431195'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/IBM_DB2''}','N','N','Y','N'); -INSERT INTO entities VALUES(44,'Documentum Content Server',2,'{''qid'': ''Q5287684'', ''types'': [''Q247423'', ''Q1344636''], ''url'': ''http://dbpedia.org/resource/Documentum''}','Y','N','N','N'); -INSERT INTO entities VALUES(45,'Drupal',2,'{''qid'': ''Q170855'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/Drupal''}','N','N','Y','Y'); -INSERT INTO entities VALUES(46,'Eclipse',2,'{''qid'': ''Q82268'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/Eclipse_(software)''}','N','N','Y','Y'); -INSERT INTO entities VALUES(47,'Elastic (ELK) Stack',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(48,'ETAP License Manager (LM)',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(49,'ExamDiff',2,'{''qid'': ''Q5419269'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ExamDiff_Pro''}','Y','N','N','N'); -INSERT INTO entities VALUES(50,'F5 Secure Web Gateway Services',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(51,'FileMaker Pro',2,'{''qid'': ''Q1982831'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/FileMaker''}','Y','N','N','N'); -INSERT INTO entities VALUES(52,'FlexNet Manager Suite',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(53,'FTP Voyager',2,'{''qid'': ''Q1389773'', ''types'': [''Q3503189'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/FTP_Voyager''}','Y','N','N','N'); -INSERT INTO entities VALUES(54,'Genymotion',2,'{''qid'': ''Q105239167'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105239167''}','Y','N','N','N'); -INSERT INTO entities VALUES(55,'Google Chrome',2,'{''qid'': ''Q777'', ''types'': [''Q6368''], ''url'': ''http://dbpedia.org/resource/Google_Chrome''}','N','N','Y','N'); -INSERT INTO entities VALUES(56,'Greenplum DB',2,'{''qid'': ''Q4039706'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Greenplum''}','N','N','Y','N'); -INSERT INTO entities VALUES(57,'Hadoop',2,'{''qid'': ''Q29120'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Apache_Hadoop''}','N','N','Y','Y'); -INSERT INTO entities VALUES(58,'HP aC++ compiler',2,'{''qid'': ''Q5635754'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/HP_aC++''}','Y','N','N','N'); -INSERT INTO entities VALUES(59,'HP C/ANSI C compiler',2,'{''qid'': ''Q4045464'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Norcroft_C_compiler''}','Y','N','N','N'); -INSERT INTO entities VALUES(60,'HP Operations Orchestration (HPOO)',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(61,'HP Server Automation (HPSA)',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(62,'IBM BigFix Platform',2,'{''qid'': ''Q7810432'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_BigFix''}','Y','N','N','N'); -INSERT INTO entities VALUES(63,'IBM Business Monitor',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(64,'IBM Business Process Manager',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(65,'IBM Content Manager OnDemand (CMOD)',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(66,'IBM FileNet P8 Platform',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(67,'IBM InfoSphere DataStage',2,'{''qid'': ''Q5968866'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_InfoSphere_DataStage''}','Y','N','N','N'); -INSERT INTO entities VALUES(68,'IBM Integration Bus',2,'{''qid'': ''Q5969139'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Integration_Bus''}','N','N','Y','N'); -INSERT INTO entities VALUES(69,'IBM License Metric Tool',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(70,'IBM Maximo',2,'{''qid'': ''Q55622518'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Maximo_(MRO)''}','N','N','Y','N'); -INSERT INTO entities VALUES(71,'IBM Migration Utility',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(72,'IBM Mobile Foundation',2,'{''qid'': ''Q25324136'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_MobileFirst''}','Y','N','N','N'); -INSERT INTO entities VALUES(73,'IBM Operational Decision Manager (ODM)',2,'{''qid'': ''Q16928000'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Operational_Decision_Management''}','N','N','Y','N'); -INSERT INTO entities VALUES(74,'IBM Spectrum Scale',2,'{''qid'': ''Q2389927'', ''types'': [''Q174989'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_General_Parallel_File_System''}','N','N','Y','N'); -INSERT INTO entities VALUES(75,'IBM Tivoli Asset Management',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(76,'IBM Tivoli Composite Application Manager',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(77,'IBM Tivoli Monitoring',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(78,'IBM Tivoli Storage Manager',2,'{''qid'': ''Q2001900'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Storage_Manager''}','Y','N','N','N'); -INSERT INTO entities VALUES(79,'IBM Tivoli Workload Scheduler (TWS)',2,'{''qid'': ''None'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Workload_Scheduler''}','N','N','Y','N'); -INSERT INTO entities VALUES(80,'IBM WebSphere Business Integration Adaptor',2,'{''qid'': ''Q5969131'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Adapters''}','Y','N','N','N'); -INSERT INTO entities VALUES(81,'IBM Websphere MQ',2,'{''qid'': ''Q528294'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_MQ''}','N','Y','Y','N'); -INSERT INTO entities VALUES(82,'IBM WebSphere MQ Telemetry',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(83,'IBM WebSphere Transformation Extender (WTX)',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(84,'IMS DB',2,'{''qid'': ''Q1571984'', ''types'': [''Q871236'', ''Q4388320'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/IBM_Information_Management_System''}','N','N','Y','N'); -INSERT INTO entities VALUES(85,'Info-ZIP',2,'{''qid'': ''Q1662431'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Info-ZIP''}','Y','N','N','N'); -INSERT INTO entities VALUES(86,'Infobright Community Edition (ICE)',2,'{''qid'': ''Q3150805'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Infobright''}','N','N','Y','N'); -INSERT INTO entities VALUES(87,'Informatica PowerCenter',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(88,'Ingres',2,'{''qid'': ''Q60463'', ''types'': [''Q1130645'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Ingres_(database)''}','N','N','Y','N'); -INSERT INTO entities VALUES(89,'JBoss|JBoss Enterprise Service Bus',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(90,'Jenkins',2,'{''qid'': ''Q7491312'', ''types'': [''Q16947796''], ''url'': ''http://dbpedia.org/resource/Jenkins_(software)''}','N','N','Y','N'); -INSERT INTO entities VALUES(91,'joinIT',2,'{}','N','N','Y*','N'); -INSERT INTO entities VALUES(92,'LifeFlow',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(93,'Lotus Notes',2,'{''qid'': ''Q60198'', ''types'': [''Q474157'', ''Q28601953'', ''Q131093''], ''url'': ''http://dbpedia.org/resource/IBM_Notes''}','Y','N','N','N'); -INSERT INTO entities VALUES(94,'MaaS360',2,'{''qid'': ''Q39089630'', ''types'': [''None''], ''url'': ''None''}','Y','N','N','N'); -INSERT INTO entities VALUES(95,'Malwarebytes Anti-Malware',2,'{''qid'': ''Q1783235'', ''types'': [''Q13429867''], ''url'': ''http://dbpedia.org/resource/Malwarebytes_Anti-Malware''}','Y','N','N','N'); -INSERT INTO entities VALUES(96,'ManageEngine ADSelfService Plus',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(97,'MarkLogic DB',2,'{''qid'': ''Q6766381'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/MarkLogic''}','N','N','Y','N'); -INSERT INTO entities VALUES(98,'Memcached',2,'{''qid'': ''Q306661'', ''types'': [''Q165596'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Memcached''}','N','N','Y','Y'); -INSERT INTO entities VALUES(99,'Microsoft Access',2,'{''qid'': ''Q80689'', ''types'': [''Q218616'', ''Q176165'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_Access''}','Y','N','N','N'); -INSERT INTO entities VALUES(100,'Microsoft BizTalk Adapters for Host Systems',2,'{''qid'': ''Q904150'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_BizTalk_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(101,'Microsoft Dynamics AX',2,'{''qid'': ''Q675860'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_Dynamics_AX''}','N','N','Y','N'); -INSERT INTO entities VALUES(102,'Microsoft Endpoint Configuration Manager (SCCM)',2,'{''qid'': ''Q2061082'', ''types'': [''Q312466'', ''Q1371279''], ''url'': ''http://dbpedia.org/resource/System_Center_Configuration_Manager''}','Y','N','N','N'); -INSERT INTO entities VALUES(103,'Microsoft Excel',2,'{''qid'': ''Q11272'', ''types'': [''Q218616'', ''Q183197''], ''url'': ''http://dbpedia.org/resource/Microsoft_Excel''}','Y','N','N','N'); -INSERT INTO entities VALUES(104,'Microsoft Exchange Server',2,'{''qid'': ''Q223653'', ''types'': [''Q474157'', ''Q859477'', ''Q2933820''], ''url'': ''http://dbpedia.org/resource/Microsoft_Exchange_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(105,'Microsoft Forefront Identity Manager (FIM)',2,'{''qid'': ''Q5468182'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Forefront_Identity_Manager''}','Y','N','N','N'); -INSERT INTO entities VALUES(106,'Microsoft InfoPath',2,'{''qid'': ''Q706294'', ''types'': [''Q474157'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_InfoPath''}','Y','N','N','N'); -INSERT INTO entities VALUES(107,'Microsoft Internet Explorer',2,'{''qid'': ''Q1575'', ''types'': [''Q218616'', ''Q498267'', ''Q6368''], ''url'': ''http://dbpedia.org/resource/Internet_Explorer''}','Y','N','N','N'); -INSERT INTO entities VALUES(108,'Microsoft ISA Server',2,'{''qid'': ''Q632851'', ''types'': [''Q40056''], ''url'': ''http://dbpedia.org/resource/Microsoft_Forefront_Threat_Management_Gateway''}','Y','N','N','N'); -INSERT INTO entities VALUES(109,'Microsoft MQ',2,'{''qid'': ''Q1931595'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Microsoft_Message_Queuing''}','Y','N','N','N'); -INSERT INTO entities VALUES(110,'Microsoft System Center Endpoint Protection',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(111,'Microsoft Visual Studio',2,'{''qid'': ''Q134067'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/Microsoft_Visual_Studio''}','Y','N','N','N'); -INSERT INTO entities VALUES(112,'Microsoft Web Deploy',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(113,'Microsoft Web Farm Framework (WFF)',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(114,'Microsoft Web Platform Installer',2,'{''qid'': ''Q976637'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Web_Platform_Installer''}','Y','N','N','N'); -INSERT INTO entities VALUES(115,'Model Driven Workflow (MDW)',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(116,'MongoDB',2,'{''qid'': ''Q1165204'', ''types'': [''Q1235236'', ''Q176165'', ''Q82231''], ''url'': ''http://dbpedia.org/resource/MongoDB''}','N','N','Y','N'); -INSERT INTO entities VALUES(117,'Mozilla Firefox',2,'{''qid'': ''Q698'', ''types'': [''Q6368''], ''url'': ''http://dbpedia.org/resource/Firefox''}','N','N','Y','Y'); -INSERT INTO entities VALUES(118,'MQ Client',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(119,'MS Office 365',2,'{''qid'': ''Q775811'', ''types'': [''Q1254596'', ''Q26674207''], ''url'': ''http://dbpedia.org/resource/Office_365''}','Y','N','N','N'); -INSERT INTO entities VALUES(120,'MS SQL Server',2,'{''qid'': ''Q215819'', ''types'': [''Q218616'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_SQL_Server''}','N','N','Y','N'); -INSERT INTO entities VALUES(121,'MS SQL Server Compact',2,'{''qid'': ''Q1814028'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Compact''}','N','N','Y','N'); -INSERT INTO entities VALUES(122,'MySQL',2,'{''qid'': ''Q850'', ''types'': [''Q1371279'', ''Q1130645'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/MySQL''}','N','N','Y','Y'); -INSERT INTO entities VALUES(123,'Neo4j',2,'{''qid'': ''Q1628290'', ''types'': [''Q99510066'', ''Q218616'', ''Q595971'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Neo4j''}','N','N','Y','Y'); -INSERT INTO entities VALUES(124,'Nexus Repository OSS',2,'{}','N','Y','Y','N'); -INSERT INTO entities VALUES(125,'Nix package manager',2,'{''qid'': ''Q7041957'', ''types'': [''Q891055'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Nix_package_manager''}','N','N','Y','Y'); -INSERT INTO entities VALUES(126,'OpenLDAP',2,'{''qid'': ''Q682918'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/OpenLDAP''}','N','N','Y','Y'); -INSERT INTO entities VALUES(127,'OpenText Exstream',2,'{''qid'': ''Q5421776'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Exstream_Software''}','N','Y','Y','N'); -INSERT INTO entities VALUES(128,'OpenVPN',2,'{''qid'': ''Q509075'', ''types'': [''Q166142'', ''Q341''], ''url'': ''http://dbpedia.org/resource/OpenVPN''}','N','N','Y','Y'); -INSERT INTO entities VALUES(129,'Oracle Access Management',2,'{''qid'': ''Q7099276'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Identity_Management''}','Y','Y','N','N'); -INSERT INTO entities VALUES(130,'Oracle ADF',2,'{''qid'': ''Q1853309'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Development_Framework''}','Y','N','N','N'); -INSERT INTO entities VALUES(131,'Oracle APEX',2,'{''qid'': ''Q1908291'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Express''}','N','N','Y','N'); -INSERT INTO entities VALUES(132,'Oracle BI Publisher',2,'{''qid'': ''Q7099244'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_BI_Publisher''}','Y','N','N','N'); -INSERT INTO entities VALUES(133,'Oracle Business Intelligence',2,'{''qid'': ''Q7099251'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Business_Intelligence_Suite_Enterprise_Edition''}','Y','N','N','N'); -INSERT INTO entities VALUES(134,'Oracle Database',2,'{''qid'': ''Q185524'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/Oracle_Database''}','N','N','Y','N'); -INSERT INTO entities VALUES(135,'Oracle Designer',2,'{''qid'': ''Q7099261'', ''types'': [''Q28059995''], ''url'': ''http://dbpedia.org/resource/Oracle_Designer''}','N','Y','Y','N'); -INSERT INTO entities VALUES(136,'Oracle Enterprise Manager',2,'{''qid'': ''Q7099266'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Enterprise_Manager''}','Y','N','N','N'); -INSERT INTO entities VALUES(137,'Oracle Forms',2,'{''qid'': ''Q744707'', ''types'': [''Q756637''], ''url'': ''http://dbpedia.org/resource/Oracle_Forms''}','N','N','Y','N'); -INSERT INTO entities VALUES(138,'Oracle Hyperion|Hyperion Interactive Reporting',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(139,'Oracle Hyperion|Hyperion Planning',2,'{''qid'': ''Q5958168'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q5958168''}','Y','N','N','N'); -INSERT INTO entities VALUES(140,'Oracle Net Services',2,'{''qid'': ''Q7099283'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Net_Services''}','Y','Y','N','N'); -INSERT INTO entities VALUES(141,'Oracle Real Application Clusters (RAC)',2,'{''qid'': ''Q1418481'', ''types'': [''Q28057052''], ''url'': ''http://dbpedia.org/resource/Oracle_RAC''}','N','Y','Y','N'); -INSERT INTO entities VALUES(142,'Oracle Retail Point-of-Service',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(143,'Oracle Service Bus',2,'{''qid'': ''Q7099295'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Service_Bus''}','Y','N','N','N'); -INSERT INTO entities VALUES(144,'Oracle Smart View',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(145,'Oracle SOA Suite',2,'{''qid'': ''Q7099294'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_SOA_Suite''}','N','N','Y','N'); -INSERT INTO entities VALUES(146,'Oracle SQL Developer',2,'{''qid'': ''Q931351'', ''types'': [''Q13741'', ''Q47607''], ''url'': ''http://dbpedia.org/resource/Oracle_SQL_Developer''}','N','N','Y','N'); -INSERT INTO entities VALUES(147,'Oracle TimesTen In-Memory Database',2,'{''qid'': ''Q3991449'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/TimesTen''}','Y','N','N','N'); -INSERT INTO entities VALUES(148,'Oracle Warehouse Builder (OWB)',2,'{''qid'': ''Q3354986'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Warehouse_Builder''}','Y','N','N','N'); -INSERT INTO entities VALUES(149,'Orbix',2,'{''qid'': ''Q4045955'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Orbix_(software)''}','Y','N','N','N'); -INSERT INTO entities VALUES(150,'Pentaho',2,'{''qid'': ''Q644841'', ''types'': [''Q341'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Pentaho''}','N','N','Y','Y'); -INSERT INTO entities VALUES(151,'PeopleSoft',2,'{''qid'': ''Q1928814'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/PeopleSoft''}','N','Y','Y','N'); -INSERT INTO entities VALUES(152,'Perkin Elmer Informatics (PKI)',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(153,'Pervasive PSQL',2,'{''qid'': ''Q7171236'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Pervasive_PSQL''}','Y','N','N','N'); -INSERT INTO entities VALUES(154,'PIPE-FLO',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(155,'PKZIP',2,'{''qid'': ''Q1602149'', ''types'': [''Q25303924''], ''url'': ''http://dbpedia.org/resource/PKZIP''}','Y','N','N','N'); -INSERT INTO entities VALUES(156,'Planview',2,'{''qid'': ''Q19903554'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Planview''}','Y','N','N','N'); -INSERT INTO entities VALUES(157,'PostgreSQL',2,'{''qid'': ''Q192490'', ''types'': [''Q341'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/PostgreSQL''}','N','N','Y','Y'); -INSERT INTO entities VALUES(158,'Powerbuilder',2,'{''qid'': ''Q580882'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/PowerBuilder''}','Y','N','N','N'); -INSERT INTO entities VALUES(159,'Primavera P6',2,'{''qid'': ''Q2111327'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Primavera_(software)''}','Y','N','N','N'); -INSERT INTO entities VALUES(160,'Pro*COBOL',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(161,'ProjectWise',2,'{''qid'': ''Q7248950'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/ProjectWise''}','Y','N','N','N'); -INSERT INTO entities VALUES(162,'ProjectWise Web Server',2,'{''qid'': ''Q7248950'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/ProjectWise''}','Y','N','N','N'); -INSERT INTO entities VALUES(163,'PVCS Version Manager',2,'{''qid'': ''Q3359906'', ''types'': [''Q3257930'', ''Q55680343''], ''url'': ''http://dbpedia.org/resource/PVCS''}','Y','N','N','N'); -INSERT INTO entities VALUES(164,'QlikView',2,'{''qid'': ''Q105859488'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105859488''}','Y','N','N','N'); -INSERT INTO entities VALUES(165,'RabbitMQ',2,'{''qid'': ''Q2081413'', ''types'': [''Q6821765'', ''Q341''], ''url'': ''http://dbpedia.org/resource/RabbitMQ''}','N','N','Y','Y'); -INSERT INTO entities VALUES(166,'Rational ClearCase',2,'{''qid'': ''Q593863'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Rational_ClearCase''}','Y','N','N','N'); -INSERT INTO entities VALUES(167,'Rational ClearQuest',2,'{''qid'': ''Q1493633'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Rational_ClearQuest''}','Y','N','N','N'); -INSERT INTO entities VALUES(168,'Redis',2,'{''qid'': ''Q2136322'', ''types'': [''Q82231''], ''url'': ''http://dbpedia.org/resource/Redis''}','N','N','Y','Y'); -INSERT INTO entities VALUES(169,'Remedy',2,'{''qid'': ''Q7311616'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Remedy_Debugger''}','N','N','Y','N'); -INSERT INTO entities VALUES(170,'Riak',2,'{''qid'': ''Q2328712'', ''types'': [''Q506883'', ''Q20706915'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Riak''}','N','N','Y','N'); -INSERT INTO entities VALUES(171,'RightFax',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(172,'Rumba',2,'{''qid'': ''Q21684437'', ''types'': [''Q1544863'', ''Q3328778''], ''url'': ''http://dbpedia.org/resource/Rumba''}','N','N','Y','N'); -INSERT INTO entities VALUES(173,'SAP BusinessObjects BI server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(174,'SAP ERP',2,'{''qid'': ''Q167533'', ''types'': [''Q28057030''], ''url'': ''http://dbpedia.org/resource/SAP_ERP''}','Y','N','N','N'); -INSERT INTO entities VALUES(175,'SAP HANA DB',2,'{''qid'': ''Q951374'', ''types'': [''Q1572823'', ''Q166142'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/SAP_HANA''}','N','N','Y','N'); -INSERT INTO entities VALUES(176,'SAP MaxDB',2,'{''qid'': ''Q2143312'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/MaxDB''}','N','N','Y','N'); -INSERT INTO entities VALUES(177,'SAP NetWeaver Business Warehouse',2,'{''qid'': ''Q1269377'', ''types'': [''Q193351''], ''url'': ''http://dbpedia.org/resource/SAP_NetWeaver_Business_Warehouse''}','Y','N','N','N'); -INSERT INTO entities VALUES(178,'SAP SQL Anywhere',2,'{''qid'': ''Q2247564'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQL_Anywhere''}','N','N','Y','N'); -INSERT INTO entities VALUES(179,'SAP Web Dynpro',2,'{''qid'': ''Q1804792'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Web_Dynpro''}','Y','Y','N','N'); -INSERT INTO entities VALUES(180,'Sentry',2,'{''qid'': ''Q3478803'', ''types'': [''Q58778''], ''url'': ''http://dbpedia.org/resource/Sentry_(monitoring_system)''}','N','Y','Y','N'); -INSERT INTO entities VALUES(181,'SharePoint',2,'{''qid'': ''Q18833'', ''types'': [''Q1371279'', ''Q1344636'', ''Q131093'', ''Q831677'', ''Q615985''], ''url'': ''http://dbpedia.org/resource/SharePoint''}','N','N','Y','N'); -INSERT INTO entities VALUES(182,'Siebel',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(183,'SNA Manager',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(184,'SnagIt',2,'{''qid'': ''Q1776235'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Snagit''}','Y','N','N','N'); -INSERT INTO entities VALUES(185,'solidDB',2,'{''qid'': ''Q7557804'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SolidDB''}','Y','N','N','N'); -INSERT INTO entities VALUES(186,'SonarQube',2,'{''qid'': ''Q541691'', ''types'': [''Q28061130'', ''Q341''], ''url'': ''http://dbpedia.org/resource/SonarQube''}','N','Y','Y','Y'); -INSERT INTO entities VALUES(187,'SpaceMonger',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(188,'Splunk',2,'{''qid'': ''Q1835753'', ''types'': [''Q1058914'', ''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Splunk''}','N','N','Y','N'); -INSERT INTO entities VALUES(189,'SQLIO',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(190,'Sybase SQL Server',2,'{''qid'': ''Q2576415'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/Adaptive_Server_Enterprise''}','N','Y','Y','N'); -INSERT INTO entities VALUES(191,'Syncsort',2,'{''qid'': ''Q7662279'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Syncsort''}','Y','N','N','N'); -INSERT INTO entities VALUES(192,'Sysinternal Tools',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(193,'Sysinternal Tools|*',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(194,'Sysinternal Tools|AccessEnum',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(195,'Sysinternal Tools|ClockRes',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(196,'Sysinternal Tools|Coreinfo',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(197,'Sysinternal Tools|DiskExt',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(198,'Sysinternal Tools|DiskMon',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(199,'Sysinternal Tools|Hex2dec',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(200,'Sysinternal Tools|Junction',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(201,'Sysinternal Tools|LDMDump',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(202,'Sysinternal Tools|LoadOrder',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(203,'Sysinternal Tools|PipeList',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(204,'Sysinternal Tools|Process Explorer',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(205,'Sysinternal Tools|PsKill',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(206,'Sysinternal Tools|PsPasswd',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(207,'Sysinternal Tools|SDelete',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(208,'Sysinternal Tools|ShareEnum',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(209,'Sysinternal Tools|Sync',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(210,'Sysinternal Tools|TCPView',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(211,'Sysinternal Tools|VMMap',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(212,'Sysinternal Tools|Whois',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(213,'Tableau',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(214,'TCPLink Enterprise Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(215,'Teradata',2,'{''qid'': ''Q430745'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Teradata''}','N','N','Y','N'); -INSERT INTO entities VALUES(216,'Teradata QS Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(217,'TIBCO Business Works (BW)',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(218,'TIBCO InConcert',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(219,'TIBCO Rendezvous',2,'{''qid'': ''Q11198794'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/TIBCO_Rendezvous''}','N','N','Y','N'); -INSERT INTO entities VALUES(220,'Tivoli Access Manager (TAM)',2,'{''qid'': ''None'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Access_Manager''}','N','N','Y','N'); -INSERT INTO entities VALUES(221,'TortoiseCVS',2,'{''qid'': ''Q2883113'', ''types'': [''Q166142'', ''Q341''], ''url'': ''http://dbpedia.org/resource/TortoiseCVS''}','Y','N','N','Y'); -INSERT INTO entities VALUES(222,'TortoiseSVN',2,'{''qid'': ''Q1062467'', ''types'': [''Q166142'', ''Q1130645''], ''url'': ''http://dbpedia.org/resource/TortoiseSVN''}','Y','N','N','N'); -INSERT INTO entities VALUES(223,'TSO/ISPF',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(224,'TWS zCentric',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(225,'Uniface',2,'{''qid'': ''Q2143563'', ''types'': [''Q9143'', ''Q13741'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/Uniface_(programming_language)''}','N','N','Y','N'); -INSERT INTO entities VALUES(226,'ViewNow X Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(227,'Virtual I/O Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(228,'Visibroker',2,'{''qid'': ''Q7936097'', ''types'': [''Q146768''], ''url'': ''http://dbpedia.org/resource/Visibroker''}','Y','N','N','N'); -INSERT INTO entities VALUES(229,'VMware Solution Exchange Marketplace (VSX)',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(230,'VMware Tools',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(231,'VMware vCenter',2,'{''qid'': ''Q55636858'', ''types'': [''Q218616'', ''Q1371279''], ''url'': ''None''}','N','N','Y','N'); -INSERT INTO entities VALUES(232,'WebFOCUS',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(233,'WebLogic Integration',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(234,'WebSphere Commerce Suite (WCS)',2,'{''qid'': ''Q5969126'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebSphere_Commerce''}','Y','N','N','N'); -INSERT INTO entities VALUES(235,'WebSphere Message Broker',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(236,'Wherescape Red',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(237,'Windchill',2,'{''qid'': ''Q8024086'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Windchill_(software)''}','Y','N','N','N'); -INSERT INTO entities VALUES(238,'Windows Indexing Service',2,'{''qid'': ''Q575974'', ''types'': [''Q1138815''], ''url'': ''http://dbpedia.org/resource/Indexing_Service''}','Y','N','N','N'); -INSERT INTO entities VALUES(239,'Windows Terminal Server (WTS)',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(240,'WingArc SVF',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(241,'WinMerge',2,'{''qid'': ''Q250602'', ''types'': [''Q341'', ''Q2990323''], ''url'': ''http://dbpedia.org/resource/WinMerge''}','N','N','Y','Y'); -INSERT INTO entities VALUES(242,'WinRAR',2,'{''qid'': ''Q242747'', ''types'': [''Q25303924'', ''Q185534''], ''url'': ''http://dbpedia.org/resource/WinRAR''}','Y','N','N','N'); -INSERT INTO entities VALUES(243,'WinSCP',2,'{''qid'': ''Q1160381'', ''types'': [''Q3503189'', ''Q2158576'', ''Q341''], ''url'': ''http://dbpedia.org/resource/WinSCP''}','Y','N','N','N'); -INSERT INTO entities VALUES(244,'Wise Package Studio',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(245,'Wordpress',2,'{''qid'': ''Q13166'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/WordPress''}','N','N','Y','Y'); -INSERT INTO entities VALUES(246,'XAMPP',2,'{''qid'': ''Q324073'', ''types'': [''Q100528793'', ''Q341''], ''url'': ''http://dbpedia.org/resource/XAMPP''}','N','N','Y','Y'); -INSERT INTO entities VALUES(247,'ZAP BI',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(248,'ZeroMQ',2,'{''qid'': ''Q8079189'', ''types'': [''Q188860'', ''Q341''], ''url'': ''http://dbpedia.org/resource/ZeroMQ''}','N','N','Y','Y'); -INSERT INTO entities VALUES(249,'Zerto Virtual Replication',2,'{''qid'': ''Q8069662'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Zerto''}','N','N','Y','N'); -INSERT INTO entities VALUES(250,'IBM PowerHA',2,'{''qid'': ''Q10850880'', ''types'': [''Q28057052'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_High_Availability_Cluster_Multiprocessing''}','Y','N','N','N'); -INSERT INTO entities VALUES(251,'Tivoli Netcool/OMNIbus',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(252,'IBM ILOG Views',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(253,'IBM ILOG CPLEX',2,'{''qid'': ''Q2372381'', ''types'': [''Q74086777''], ''url'': ''http://dbpedia.org/resource/CPLEX''}','Y','N','N','N'); -INSERT INTO entities VALUES(254,'IBM ILOG Jviews',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(255,'IBM ILOG Elixir',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(256,'IBM ILOG Supply Chain Apps',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(257,'ILOG Solver',2,'{''qid'': ''Q2011386'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/ILOG''}','Y','N','N','N'); -INSERT INTO entities VALUES(258,'SQLite',2,'{''qid'': ''Q319417'', ''types'': [''Q35687379'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQLite''}','N','N','Y','Y'); -INSERT INTO entities VALUES(259,'Apache HTTP Server',8,'{''qid'': ''Q11354'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/Apache_HTTP_Server''}','N','N','Y','Y'); -INSERT INTO entities VALUES(260,'Apache Tomcat',8,'{''qid'': ''Q507430'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Apache_Tomcat''}','N','N','Y','Y'); -INSERT INTO entities VALUES(261,'ArcGIS Server',8,'{''qid'': ''Q4784987'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ArcGIS_Server''}','N','N','Y','N'); -INSERT INTO entities VALUES(262,'Oracle WebLogic Server',8,'{''qid'': ''Q83589'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_WebLogic_Server''}','N','N','Y','N'); -INSERT INTO entities VALUES(263,'GlassFish',8,'{''qid'': ''Q68847'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/GlassFish''}','N','N','Y','N'); -INSERT INTO entities VALUES(264,'HAProxy',8,'{''qid'': ''Q5628948'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/HAProxy''}','N','N','Y','Y'); -INSERT INTO entities VALUES(265,'IBM HTTP Server',8,'{''qid'': ''Q821668'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/IBM_HTTP_Server''}','N','N','Y','N'); -INSERT INTO entities VALUES(266,'IIS',8,'{''qid'': ''Q11341'', ''types'': [''Q218616'', ''Q18287040''], ''url'': ''http://dbpedia.org/resource/Internet_Information_Services''}','N','N','Y','N'); -INSERT INTO entities VALUES(267,'JBoss',8,'{''qid'': ''Q485593'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/JBoss_(company)''}','N','N','Y','N'); -INSERT INTO entities VALUES(268,'JBoss|*',8,'{''qid'': ''Q485593'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/JBoss_(company)''}','N','N','Y','N'); -INSERT INTO entities VALUES(269,'Kitura',8,'{''qid'': ''Q28130427'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Kitura''}','N','N','Y','N'); -INSERT INTO entities VALUES(270,'Lotus Domino',8,'{''qid'': ''Q1069529'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q1069529''}','Y','N','N','N'); -INSERT INTO entities VALUES(271,'Lucee',8,'{''qid'': ''Q105180640'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Lucee''}','N','N','Y','Y'); -INSERT INTO entities VALUES(272,'Netscape Application Server (NAS)',8,'{''qid'': ''Q7000305'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Netscape_Application_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(273,'Netscape Enterprise Server (NES)',8,'{''qid'': ''Q478430'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q478430''}','Y','N','N','N'); -INSERT INTO entities VALUES(274,'Nginx',8,'{''qid'': ''Q306144'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/Nginx''}','N','N','Y','Y'); -INSERT INTO entities VALUES(275,'Oracle Application Server',8,'{''qid'': ''Q2027912'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(276,'Oracle WebCenter Content Server',8,'{''qid'': ''Q2309159'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/Oracle_WebCenter''}','Y','N','N','N'); -INSERT INTO entities VALUES(277,'Pivotal tc Server',8,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(278,'Resin Web Server',8,'{''qid'': ''Q2145742'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Resin_(software)''}','N','N','Y','Y'); -INSERT INTO entities VALUES(279,'SAP NetWeaver App Server',8,'{''qid'': ''Q2204924'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/SAP_NetWeaver''}','Y','N','N','N'); -INSERT INTO entities VALUES(280,'Spark',8,'{''qid'': ''Q20712258'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Spark_(software)''}','N','N','Y','N'); -INSERT INTO entities VALUES(281,'Oracle iPlanet Web Server',8,'{''qid'': ''Q1225115'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_iPlanet_Web_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(282,'UltiDev Web Server Pro (UWS)',8,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(283,'webMethods Integration Server',8,'{''qid'': ''Q7978461'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebMethods_Integration_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(284,'Websphere Application Server (WAS)',8,'{''qid'': ''Q81612'', ''types'': [''Q1330336'', ''Q71550''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Application_Server''}','N','N','Y','N'); -INSERT INTO entities VALUES(285,'WebSphere Liberty',8,'{''qid'': ''Q2536917'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q2536917''}','N','N','Y','N'); -INSERT INTO entities VALUES(286,'WebSphere Portal Server',8,'{''qid'': ''Q4053022'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebSphere_Portal''}','N','N','Y','N'); -INSERT INTO entities VALUES(287,'Websphere Process Server',8,'{''qid'': ''Q5969143'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Process_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(288,'WebSphere Process Server',8,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(289,'Oracle Real-Time Decisions (RTD)',8,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(290,'CA API Gateway',4,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(291,'Citrix ADC SDX',4,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(292,'Citrix ADC MPX',4,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(293,'HP Nonstop',4,'{''qid'': ''Q826798'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/NonStop_(server_computers)''}','Y','N','N','N'); -INSERT INTO entities VALUES(294,'IBM DataPower Gateway',4,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(295,'IBM Power Systems',4,'{''qid'': ''Q2040857'', ''types'': [''Q10929058''], ''url'': ''http://dbpedia.org/resource/IBM_Power_Systems''}','Y','N','N','N'); -INSERT INTO entities VALUES(296,'Intel Xeon Processor',4,'{''qid'': ''Q656154'', ''types'': [''Q431289'', ''Q12047070''], ''url'': ''http://dbpedia.org/resource/Xeon''}','Y','N','N','N'); -INSERT INTO entities VALUES(297,'Net Optics Taps',4,'{''qid'': ''Q17114213'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Net_Optics''}','Y','N','N','N'); -INSERT INTO entities VALUES(298,'Oracle Exadata',4,'{''qid'': ''Q4038419'', ''types'': [''Q68''], ''url'': ''http://dbpedia.org/resource/Oracle_Exadata''}','Y','N','N','N'); -INSERT INTO entities VALUES(299,'AutoIt',9,'{''qid'': ''Q784845'', ''types'': [''Q187432'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/AutoIt''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(300,'AWK',9,'{''qid'': ''Q213970'', ''types'': [''Q1418502'', ''Q187432'', ''Q28919945'', ''Q18343316'', ''Q287472''], ''url'': ''http://dbpedia.org/resource/AWK''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(301,'BASIC',9,'{''qid'': ''Q42979'', ''types'': [''Q79872'', ''Q1418502'', ''Q28922854'', ''Q9143'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/BASIC''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(302,'Brainscript',9,'{}','Y','N','N','N/A'); -INSERT INTO entities VALUES(303,'C',9,'{''qid'': ''Q15777'', ''types'': [''Q28922885'', ''Q28920117'', ''Q9143'', ''Q21562092'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C_(programming_language)''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(304,'C#',9,'{''qid'': ''Q2370'', ''types'': [''Q9143'', ''Q12772052''], ''url'': ''http://dbpedia.org/resource/C_Sharp_(programming_language)''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(305,'C++',9,'{''qid'': ''Q2407'', ''types'': [''Q28923026'', ''Q12772052'', ''Q28922885'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q5499621'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C++''}','Y','Y','N','N'); -INSERT INTO entities VALUES(306,'C++|Visual C++',9,'{''qid'': ''Q847296'', ''types'': [''Q13741'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_C++''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(307,'Cascading Style Sheets (CSS)',9,'{''qid'': ''Q46441'', ''types'': [''Q1029123''], ''url'': ''http://dbpedia.org/resource/Cascading_Style_Sheets''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(308,'Clipper',9,'{''qid'': ''Q834358'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Clipper_(programming_language)''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(309,'CLIST',9,'{''qid'': ''Q579880'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/CLIST''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(310,'COBOL',9,'{''qid'': ''Q131140'', ''types'': [''Q9143'', ''Q28922885'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/COBOL''}','Y','N','N','N'); -INSERT INTO entities VALUES(311,'ColdFusion Markup Language (CFML)',9,'{''qid'': ''Q2524362'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ColdFusion_Markup_Language''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(312,'Data Language Interface (DL/I)',9,'{''qid'': ''Q2299300'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Data_Language_Interface''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(313,'Delphi',9,'{''qid'': ''Q487378'', ''types'': [''Q9143'', ''Q218616'', ''Q13741''], ''url'': ''http://dbpedia.org/resource/Delphi_(programming_language)''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(314,'Easytrieve',9,'{''qid'': ''Q1278381'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Easytrieve''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(315,'Expect',9,'{''qid'': ''Q2642029'', ''types'': [''Q9143'', ''Q28937412'', ''Q4826135'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Expect''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(316,'eXtensible HyperText Markup Language (XHTML)',9,'{''qid'': ''Q166074'', ''types'': [''Q20155966'', ''Q317623'', ''Q37045''], ''url'': ''http://dbpedia.org/resource/XHTML''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(317,'Extensible Markup Language (XML)',9,'{''qid'': ''Q2115'', ''types'': [''Q82753'', ''Q37045'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/XML''}','Y','Y','N','N'); -INSERT INTO entities VALUES(318,'Extensible Markup Language (XML)|MSXML',9,'{''qid'': ''Q1133470'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/MSXML''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(319,'Extensible Stylesheet Language (XSL)',9,'{''qid'': ''Q32061'', ''types'': [''Q1029123'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/XSL''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(320,'Extensible Stylesheet Language Transformations (XLST)',9,'{''qid'': ''Q32110'', ''types'': [''Q2661442'', ''Q9143'', ''Q1144882'', ''Q3217190''], ''url'': ''http://dbpedia.org/resource/XSLT''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(321,'FOCUS',9,'{''qid'': ''Q5426833'', ''types'': [''Q238137''], ''url'': ''http://dbpedia.org/resource/FOCUS''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(322,'Fortran',9,'{''qid'': ''Q83303'', ''types'': [''Q28923026'', ''Q28922885'', ''Q899523'', ''Q28920117'', ''Q9143'', ''Q28920142'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Fortran''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(323,'Go',9,'{''qid'': ''Q37227'', ''types'': [''Q12772052'', ''Q28922885'', ''Q899523'', ''Q28920117'', ''Q9143'', ''Q28919943'', ''Q21562092'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/Go_(programming_language)''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(324,'GraphQL',9,'{''qid'': ''Q25104949'', ''types'': [''Q557770'', ''Q9143'', ''Q60551191''], ''url'': ''http://dbpedia.org/resource/GraphQL''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(325,'Groovy',9,'{''qid'': ''Q16886826'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Skeevy''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(326,'HiveQL',9,'{}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(327,'Hypertext Markup Language (HTML)',9,'{''qid'': ''Q8811'', ''types'': [''Q2661442'', ''Q17537576'', ''Q37045'', ''Q235557'', ''Q20202982''], ''url'': ''http://dbpedia.org/resource/HTML''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(328,'IBM High Level Assembler (HLASM)',9,'{''qid'': ''Q4039976'', ''types'': [''Q6470767''], ''url'': ''http://dbpedia.org/resource/IBM_High_Level_Assembler''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(329,'IBM i Control Language (CL)',9,'{''qid'': ''Q263490'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/IBM_i_Control_Language''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(330,'IBM Informix-4GL',9,'{''qid'': ''Q2816938'', ''types'': [''Q9143'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/IBM_Informix-4GL''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(331,'Java',9,'{''qid'': ''Q251'', ''types'': [''Q12772052'', ''Q56062429'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Java_(programming_language)''}','N','N','Y','N'); -INSERT INTO entities VALUES(332,'Java|Extensible Stylesheet Language (XSL)',9,'{''qid'': ''Q32061'', ''types'': [''Q1029123'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/XSL''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(333,'Java|Java Enterprise Edition (Java EE)',9,'{''qid'': ''Q193247'', ''types'': [''Q1330336'', ''Q27493'', ''Q241317''], ''url'': ''http://dbpedia.org/resource/Java_Platform,_Enterprise_Edition''}','N','N','Y','N'); -INSERT INTO entities VALUES(334,'Java|Java Standard Edition (Java SE)',9,'{''qid'': ''Q747478'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Java_Platform,_Standard_Edition''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(335,'Java|JavaServer Pages (JSP)',9,'{''qid'': ''Q183169'', ''types'': [''Q351507'', ''Q20819677'', ''Q1650567'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/JavaServer_Pages''}','Y','N','N','N'); -INSERT INTO entities VALUES(336,'Java|JavaServer Pages (JSP)|Scriptlets',9,'{''qid'': ''Q3476475'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Scriptlet''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(337,'JavaScript',9,'{''qid'': ''Q2005'', ''types'': [''Q241317'', ''Q12772052'', ''Q3839507'', ''Q187432'', ''Q9143'', ''Q28920810'', ''Q21562092'', ''Q28920813'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/JavaScript''}','Y','N','N','N'); -INSERT INTO entities VALUES(338,'JCL',9,'{''qid'': ''Q1505372'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Job_Control_Language''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(339,'Job Information Language (JIL)',9,'{}','Y','N','N','N/A'); -INSERT INTO entities VALUES(340,'JScript',9,'{''qid'': ''Q553514'', ''types'': [''Q4117406''], ''url'': ''http://dbpedia.org/resource/JScript''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(341,'Lisp',9,'{''qid'': ''Q132874'', ''types'': [''Q12772052'', ''Q28922885'', ''Q3839507'', ''Q28922887'', ''Q28922893'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Lisp_(programming_language)''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(342,'Niakwa Programming Language (NPL)',9,'{''qid'': ''Q6955040'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/NPL_(programming_language)''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(343,'Objective C',9,'{''qid'': ''Q188531'', ''types'': [''Q12772052'', ''Q28922858'', ''Q899523'', ''Q9143'', ''Q28922893''], ''url'': ''http://dbpedia.org/resource/Objective-C''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(344,'OpenEdge ABL',9,'{''qid'': ''Q1963461'', ''types'': [''Q899523'', ''Q9143'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/OpenEdge_Advanced_Business_Language''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(345,'Pascal',9,'{''qid'': ''Q81571'', ''types'': [''Q9143'', ''Q21562092'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Pascal_(programming_language)''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(346,'Pascal|Object Pascal',9,'{''qid'': ''Q633894'', ''types'': [''Q12772052'', ''Q9143'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/Object_Pascal''}','Y','Y','N','N'); -INSERT INTO entities VALUES(347,'Perl',9,'{''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(348,'Perl|ActivePerl',9,'{''qid'': ''Q4033363'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ActivePerl''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(349,'Perl|Rex',9,'{''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(350,'PHP',9,'{''qid'': ''Q59'', ''types'': [''Q1993334''], ''url'': ''http://dbpedia.org/resource/PHP''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(351,'PL/I',9,'{''qid'': ''Q223433'', ''types'': [''Q9143'', ''Q28922885''], ''url'': ''http://dbpedia.org/resource/PL/I''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(352,'PL/SQL',9,'{''qid'': ''Q41574'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/PL/SQL''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(353,'PRO*C',9,'{''qid'': ''Q2111340'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Pro*C''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(354,'Python',9,'{''qid'': ''Q28865'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Python_(programming_language)''}','N','N','Y','Y'); -INSERT INTO entities VALUES(355,'R',9,'{''qid'': ''Q206904'', ''types'': [''Q9143'', ''Q1004415''], ''url'': ''http://dbpedia.org/resource/R_(programming_language)''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(356,'Rexx',9,'{''qid'': ''Q685820'', ''types'': [''Q9143'', ''Q28937412'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Rexx''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(357,'RPG',9,'{''qid'': ''Q840543'', ''types'': [''Q9143'', ''Q28922885''], ''url'': ''http://dbpedia.org/resource/IBM_RPG''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(358,'Ruby',9,'{''qid'': ''Q161053'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Ruby_(programming_language)''}','N','Y','Y','Y'); -INSERT INTO entities VALUES(359,'Salesforce Object Query Language (SOQL)',9,'{}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(360,'SAS',9,'{''qid'': ''Q2003932'', ''types'': [''Q9143'', ''Q13199995'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/SAS_(software)''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(361,'Sass',9,'{''qid'': ''Q1572865'', ''types'': [''Q9143'', ''Q1029123'', ''Q50843083'', ''Q918333''], ''url'': ''http://dbpedia.org/resource/Sass_(stylesheet_language)''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(362,'Scala',9,'{''qid'': ''Q460584'', ''types'': [''Q12772052'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q56062429''], ''url'': ''http://dbpedia.org/resource/Scala_(programming_language)''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(363,'Smalltalk',9,'{''qid'': ''Q235086'', ''types'': [''Q9143'', ''Q28922858'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/Smalltalk''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(364,'Swift',9,'{''qid'': ''Q17118377'', ''types'': [''Q12772052'', ''Q28923023'', ''Q3839507'', ''Q899523'', ''Q341'', ''Q9143'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Swift_(programming_language)''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(365,'TCL',9,'{''qid'': ''Q5288'', ''types'': [''Q12772052'', ''Q28922885'', ''Q899523'', ''Q187432'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Tcl''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(366,'Transact-SQL',9,'{''qid'': ''Q1411245'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Transact-SQL''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(367,'TypeScript',9,'{''qid'': ''Q978185'', ''types'': [''Q9143'', ''Q341''], ''url'': ''http://dbpedia.org/resource/TypeScript''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(368,'VB.NET',9,'{''qid'': ''Q50077'', ''types'': [''Q2378'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_Basic_.NET''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(369,'VBScript',9,'{''qid'': ''Q13743'', ''types'': [''Q187432'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/VBScript''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(370,'Visual Basic',9,'{''qid'': ''Q2378'', ''types'': [''Q28922885'', ''Q899523'', ''Q9143'', ''Q42979'', ''Q28920813''], ''url'': ''http://dbpedia.org/resource/Visual_Basic''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(371,'Visual Basic for Applications (VBA)',9,'{''qid'': ''Q667566'', ''types'': [''Q2378'', ''Q9143'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_Basic_for_Applications''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(372,'Visual FoxPro',9,'{''qid'': ''Q753868'', ''types'': [''Q9143'', ''Q28922885'', ''Q899523'', ''Q13741''], ''url'': ''http://dbpedia.org/resource/Visual_FoxPro''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(373,'VoiceXML',9,'{''qid'': ''Q776038'', ''types'': [''Q20155966''], ''url'': ''http://dbpedia.org/resource/VoiceXML''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(374,'Xbase++',9,'{''qid'': ''Q1753410'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/XBase++''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(375,'Apache Lucene',12,'{''qid'': ''Q773196'', ''types'': [''Q188860'', ''Q19541'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Lucene''}','Y','N','N','N'); -INSERT INTO entities VALUES(376,'Apache Xerces',12,'{''qid'': ''Q629740'', ''types'': [''Q188860'', ''Q1130645''], ''url'': ''http://dbpedia.org/resource/Xerces''}','Y','N','N','N'); -INSERT INTO entities VALUES(377,'Cascading Style Sheets (CSS)|Bootstrap',12,'{''qid'': ''Q1195936'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Bootstrapping''}','Y','N','N','N'); -INSERT INTO entities VALUES(378,'Java|Apache Camel',12,'{''qid'': ''Q616626'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_Camel''}','N','N','Y','Y'); -INSERT INTO entities VALUES(379,'Java|Apache Commons BeanUtils',12,'{''qid'': ''Q28916245'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q28916245''}','Y','N','N','Y'); -INSERT INTO entities VALUES(380,'Java|Apache PDFBox',12,'{''qid'': ''Q17512395'', ''types'': [''Q21127166'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_PDFBox''}','Y','N','N','Y'); -INSERT INTO entities VALUES(381,'Java|Apache Velocity',12,'{''qid'': ''Q617156'', ''types'': [''Q351507'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Apache_Velocity''}','Y','N','N','N'); -INSERT INTO entities VALUES(382,'Java|EclipseLink',12,'{''qid'': ''Q897058'', ''types'': [''Q506883''], ''url'': ''http://dbpedia.org/resource/EclipseLink''}','Y','N','N','N'); -INSERT INTO entities VALUES(383,'Java|Enterprise JavaBeans (EJB)',12,'{''qid'': ''Q742961'', ''types'': [''Q20819677'', ''Q609588''], ''url'': ''http://dbpedia.org/resource/Enterprise_JavaBeans''}','Y','N','N','N'); -INSERT INTO entities VALUES(384,'Java|EZMorph',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(385,'Java|Google Web Toolkit (GWT)',12,'{''qid'': ''Q79578'', ''types'': [''Q2533324'', ''Q1193246'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Google_Web_Toolkit''}','Y','N','N','Y'); -INSERT INTO entities VALUES(386,'Java|Hibernate',12,'{''qid'': ''Q747866'', ''types'': [''Q1172354'', ''Q7170392'', ''Q58748'', ''Q5227234'', ''Q341'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Hibernate_(framework)''}','Y','N','N','Y'); -INSERT INTO entities VALUES(387,'Java|IBM SDK',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(388,'Java|Java Development Kit (JDK)',12,'{''qid'': ''Q741303'', ''types'': [''Q467707''], ''url'': ''http://dbpedia.org/resource/Java_Development_Kit''}','Y','N','N','N'); -INSERT INTO entities VALUES(389,'Java|Java Message Service (JMS)',12,'{''qid'': ''Q755515'', ''types'': [''Q20819677'', ''Q1092177''], ''url'': ''http://dbpedia.org/resource/Java_Message_Service''}','Y','N','N','N'); -INSERT INTO entities VALUES(390,'Java|Java Web Start',12,'{''qid'': ''Q33079'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Java_Web_Start''}','Y','N','N','N'); -INSERT INTO entities VALUES(391,'Java|JavaServer Faces (JSF)',12,'{''qid'': ''Q729427'', ''types'': [''Q1330336'', ''Q20819677''], ''url'': ''http://dbpedia.org/resource/JavaServer_Faces''}','Y','N','N','N'); -INSERT INTO entities VALUES(392,'Java|JDBC',12,'{''qid'': ''Q722772'', ''types'': [''Q1172354'', ''Q165194'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/Java_Database_Connectivity''}','Y','N','N','N'); -INSERT INTO entities VALUES(393,'Java|JRuby Core',12,'{''qid'': ''Q605718'', ''types'': [], ''url'': ''http://dbpedia.org/resource/JRuby''}','Y','N','N','Y'); -INSERT INTO entities VALUES(394,'Java|Log4j',12,'{''qid'': ''Q286923'', ''types'': [''Q22003134''], ''url'': ''http://dbpedia.org/resource/Log4j''}','Y','N','N','Y'); -INSERT INTO entities VALUES(395,'Java|Quartz',12,'{''qid'': ''Q2122405'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Quartz_(scheduler)''}','Y','N','N','Y'); -INSERT INTO entities VALUES(396,'Java|Remote Method Invocation (RMI)',12,'{''qid'': ''Q61902'', ''types'': [''Q1799072''], ''url'': ''http://dbpedia.org/resource/Java_remote_method_invocation''}','Y','N','N','N'); -INSERT INTO entities VALUES(397,'Java|Servlet',12,'{''qid'': ''Q341'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Free_software''}','Y','N','N','Y'); -INSERT INTO entities VALUES(398,'Java|Spring',12,'{''qid'': ''Q720314'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q720314''}','N','N','Y','Y'); -INSERT INTO entities VALUES(399,'Java|Spring|Spring Boot',12,'{''qid'': ''Q98731994'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q98731994''}','N','N','Y','Y'); -INSERT INTO entities VALUES(400,'Java|Spring|Spring Cloud Data Flow',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(401,'Java|Spring|Spring MVC',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(402,'Java|Struts',12,'{''qid'': ''Q900957'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Apache_Struts_1''}','Y','N','N','N'); -INSERT INTO entities VALUES(403,'Java|Swing',12,'{''qid'': ''Q859221'', ''types'': [''Q21127166''], ''url'': ''http://dbpedia.org/resource/Swing_(Java)''}','N','N','Y','N'); -INSERT INTO entities VALUES(404,'Java|Vaadin',12,'{''qid'': ''Q1400683'', ''types'': [''Q1330336'', ''Q386275'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Vaadin''}','Y','N','N','N'); -INSERT INTO entities VALUES(405,'JavaScript|AJAX',12,'{''qid'': ''Q134471'', ''types'': [''Q9143'', ''Q918270'', ''Q101244''], ''url'': ''http://dbpedia.org/resource/Ajax_(programming)''}','Y','N','N','N'); -INSERT INTO entities VALUES(406,'JavaScript|AngularJS',12,'{''qid'': ''Q2849803'', ''types'': [''Q188860'', ''Q783866'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/AngularJS''}','Y','N','N','N'); -INSERT INTO entities VALUES(407,'JavaScript|Draw2D',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(408,'JavaScript|Express.js',12,'{''qid'': ''Q16878131'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Express.js''}','Y','N','N','N'); -INSERT INTO entities VALUES(409,'JavaScript|Ext JS',12,'{''qid'': ''Q515393'', ''types'': [''Q1193246'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/Ext_JS''}','N','N','Y','N'); -INSERT INTO entities VALUES(410,'JavaScript|jqGrid',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(411,'JavaScript|JQuery',12,'{''qid'': ''Q230036'', ''types'': [''Q170584'', ''Q188860'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/JQuery''}','Y','N','N','N'); -INSERT INTO entities VALUES(412,'JavaScript|Jquery|jQuery UI',12,'{''qid'': ''Q285960'', ''types'': [], ''url'': ''http://dbpedia.org/resource/JQuery_UI''}','N','N','Y','N'); -INSERT INTO entities VALUES(413,'JavaScript|React',12,'{''qid'': ''Q19399674'', ''types'': [''Q1330336'', ''Q783866'', ''Q341''], ''url'': ''http://dbpedia.org/resource/React_(JavaScript_library)''}','Y','N','N','Y'); -INSERT INTO entities VALUES(414,'JavaScript|script.aculo.us',12,'{''qid'': ''Q309509'', ''types'': [''Q188860'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/Script.aculo.us''}','Y','N','N','N'); -INSERT INTO entities VALUES(415,'JavaScript|Valums AJAX File Uploader',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(416,'OWASP Enterprise Security API (ESAPI)',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(417,'Perl|Oraperl',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(418,'Android',6,'{''qid'': ''Q94'', ''types'': [''Q920890''], ''url'': ''http://dbpedia.org/resource/Android_(operating_system)''}','N','N','Y','N'); -INSERT INTO entities VALUES(419,'BeOS',6,'{''qid'': ''Q62563'', ''types'': [''Q218616'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/BeOS''}','N','N','Y','N'); -INSERT INTO entities VALUES(420,'Cisco IOS',6,'{''qid'': ''Q753576'', ''types'': [''Q282080''], ''url'': ''http://dbpedia.org/resource/Cisco_IOS''}','Y','N','N','N'); -INSERT INTO entities VALUES(421,'DART',6,'{''qid'': ''Q406009'', ''types'': [''Q1330336'', ''Q12772052'', ''Q899523'', ''Q3839507'', ''Q187432'', ''Q28922893'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Dart_(programming_language)''}','N','N','Y','N'); -INSERT INTO entities VALUES(422,'Fabric OS',6,'{''qid'': ''Q5428124'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Fabric_OS''}','N','N','Y','N'); -INSERT INTO entities VALUES(423,'GNU',6,'{''qid'': ''Q44571'', ''types'': [''Q9135'', ''Q11368''], ''url'': ''http://dbpedia.org/resource/GNU''}','N','N','Y','N'); -INSERT INTO entities VALUES(424,'IBM i',6,'{''qid'': ''Q15637561'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/IBM_i''}','N','N','Y','N'); -INSERT INTO entities VALUES(425,'iOS',6,'{''qid'': ''Q48493'', ''types'': [''Q920890'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/IOS''}','Y','N','N','N'); -INSERT INTO entities VALUES(426,'Linux',6,'{''qid'': ''Q388'', ''types'': [''Q14656'', ''Q16889133'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Linux''}','N','N','Y','Y'); -INSERT INTO entities VALUES(427,'Linux|CentOS',6,'{''qid'': ''Q207542'', ''types'': [''Q131669'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/CentOS''}','Y','N','N','Y'); -INSERT INTO entities VALUES(428,'Linux|Check Point',6,'{''qid'': ''Q751519'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q751519''}','Y','N','N','N'); -INSERT INTO entities VALUES(429,'Linux|Debian',6,'{''qid'': ''Q7715973'', ''types'': [''Q20983788'', ''Q3251801''], ''url'': ''http://dbpedia.org/resource/Debian''}','N','N','Y','Y'); -INSERT INTO entities VALUES(430,'Linux|Junos OS',6,'{''qid'': ''Q4041744'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Junos_OS''}','Y','N','N','N'); -INSERT INTO entities VALUES(431,'Linux|openSUSE',6,'{''qid'': ''Q16691'', ''types'': [''Q131669'', ''Q388'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/OpenSUSE''}','Y','N','N','Y'); -INSERT INTO entities VALUES(432,'Linux|Oracle Linux',6,'{''qid'': ''Q46094'', ''types'': [''Q131669'', ''Q977076''], ''url'': ''http://dbpedia.org/resource/Oracle_Linux''}','N','N','Y','Y'); -INSERT INTO entities VALUES(433,'Linux|Photon OS',6,'{''qid'': ''Q105703682'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105703682''}','N','N','Y','Y'); -INSERT INTO entities VALUES(434,'Linux|Red Hat Enterprise Linux',6,'{''qid'': ''Q215273'', ''types'': [''Q9135'', ''Q131669''], ''url'': ''http://dbpedia.org/resource/Red_Hat_Enterprise_Linux''}','N','N','Y','Y'); -INSERT INTO entities VALUES(435,'Linux|SUSE Linux Enterprise Server',6,'{''qid'': ''Q1759786'', ''types'': [''Q131669''], ''url'': ''http://dbpedia.org/resource/SUSE_Linux_Enterprise_Server''}','N','N','Y','Y'); -INSERT INTO entities VALUES(436,'Linux|Ubuntu',6,'{''qid'': ''Q381'', ''types'': [''Q131669'', ''Q5276054'', ''Q20983788'', ''Q3251801''], ''url'': ''http://dbpedia.org/resource/Ubuntu_(operating_system)''}','Y','N','N','Y'); -INSERT INTO entities VALUES(437,'Linux|zLinux',6,'{''qid'': ''Q136277'', ''types'': [''Q388''], ''url'': ''http://dbpedia.org/resource/Linux_on_z_Systems''}','N','N','Y','N'); -INSERT INTO entities VALUES(438,'macOS',6,'{''qid'': ''Q14116'', ''types'': [''Q43627'', ''Q218616'', ''Q811701'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/MacOS''}','N','N','Y','N'); -INSERT INTO entities VALUES(439,'MVS',6,'{''qid'': ''Q781443'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/MVS''}','Y','N','N','N'); -INSERT INTO entities VALUES(440,'MVS|OS/390',6,'{''qid'': ''Q1726891'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/OS/390''}','Y','N','N','N'); -INSERT INTO entities VALUES(441,'MVS|z/OS',6,'{''qid'': ''Q283705'', ''types'': [''Q14656''], ''url'': ''http://dbpedia.org/resource/Z/OS''}','Y','N','N','N'); -INSERT INTO entities VALUES(442,'OpenVMS',6,'{''qid'': ''Q479882'', ''types'': [''Q9135'', ''Q218616'', ''Q3496042''], ''url'': ''http://dbpedia.org/resource/OpenVMS''}','Y','N','N','N'); -INSERT INTO entities VALUES(443,'OS/2',6,'{''qid'': ''Q189794'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/OS/2''}','Y','N','N','N'); -INSERT INTO entities VALUES(444,'Unix',6,'{''qid'': ''Q11368'', ''types'': [''Q170584'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/Unix''}','Y','N','N','N'); -INSERT INTO entities VALUES(445,'Unix|AIX',6,'{''qid'': ''Q269856'', ''types'': [''Q218616'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/IBM_AIX''}','Y','N','N','N'); -INSERT INTO entities VALUES(446,'Unix|BSD',6,'{''qid'': ''Q34264'', ''types'': [''Q11368''], ''url'': ''http://dbpedia.org/resource/Berkeley_Software_Distribution''}','Y','N','N','N'); -INSERT INTO entities VALUES(447,'Unix|BSD|FreeBSD',6,'{''qid'': ''Q34236'', ''types'': [], ''url'': ''http://dbpedia.org/resource/FreeBSD''}','Y','N','N','N'); -INSERT INTO entities VALUES(448,'Unix|BSD|SunOS',6,'{''qid'': ''Q1208460'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/SunOS''}','Y','N','N','N'); -INSERT INTO entities VALUES(449,'Unix|HP-UX',6,'{''qid'': ''Q847593'', ''types'': [''Q14656''], ''url'': ''http://dbpedia.org/resource/HP-UX''}','Y','N','N','N'); -INSERT INTO entities VALUES(450,'Windows',6,'{''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows''}','N','N','Y','N'); -INSERT INTO entities VALUES(451,'Windows|Windows Desktop',6,'{''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows''}','Y','N','N','N'); -INSERT INTO entities VALUES(452,'Windows|Windows Server',6,'{''qid'': ''Q11219'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Windows_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(453,'Linux|Fedora',6,'{''qid'': ''Q48267'', ''types'': [''Q131669'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/Fedora_(operating_system)''}','Y','N','N','Y'); -INSERT INTO entities VALUES(454,'Linux|Amazon Linux',6,'{''qid'': ''Q68223191'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q68223191''}','Y','N','N','N'); -INSERT INTO entities VALUES(455,'Clarify|Clear Basic',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(456,'Eclipse|ATLAS Transformation Language (ATL)',5,'{''qid'': ''Q667812'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ATLAS_Transformation_Language''}','Y','N','N','N'); -INSERT INTO entities VALUES(457,'IBM BigFix Platform|Client Deploy Tool',5,'{''qid'': ''Q1420900'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Microsoft_Deployment_Toolkit''}','Y','N','N','N'); -INSERT INTO entities VALUES(458,'IBM Integration Bus|Extended Structured Query Language (ESQL)',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(459,'IBM Tivoli Asset Management|Asset Discovery for Distributed',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(460,'IBM Tivoli Storage Manager|TSM API',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(461,'IBM Tivoli Storage Manager|TSM Client',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(462,'IBM Tivoli Storage Manager|TSM Storage Agent',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(463,'IBM Tivoli Storage Manager|VSS Requestor',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(464,'Microsoft Exchange Server|Veeam Explorer',5,'{''qid'': ''Q22096414'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q22096414''}','Y','N','N','N'); -INSERT INTO entities VALUES(465,'MS SQL Server|MS SQL Server Browser',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(466,'MS SQL Server|Data Transformation Services',5,'{''qid'': ''Q644775'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Data_Transformation_Services''}','Y','N','N','N'); -INSERT INTO entities VALUES(467,'MS SQL Server|Log Reader Agent',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(468,'MS SQL Server|SQL Server Analysis Services (SSAS)',5,'{''qid'': ''Q2067216'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_Analysis_Services''}','Y','N','N','N'); -INSERT INTO entities VALUES(469,'MS SQL Server|SQL Server Database Engine',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(470,'MS SQL Server|SQL Server Integration Services (SSIS)',5,'{''qid'': ''Q1231051'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Integration_Services''}','Y','N','N','N'); -INSERT INTO entities VALUES(471,'MS SQL Server|SQL Server Management Studio',5,'{''qid'': ''Q4048883'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Management_Studio''}','Y','N','N','N'); -INSERT INTO entities VALUES(472,'MS SQL Server|SQL Server Report Builder',5,'{''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services''}','Y','N','N','N'); -INSERT INTO entities VALUES(473,'MS SQL Server|SQL Server Reporting Services (SSRS)',5,'{''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services''}','Y','N','N','N'); -INSERT INTO entities VALUES(474,'Oracle Database|Jserver',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(475,'Oracle Database|Oracle Spatial and Graph',5,'{''qid'': ''Q3508244'', ''types'': [''Q7397'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Oracle_Spatial_and_Graph''}','Y','N','N','N'); -INSERT INTO entities VALUES(476,'SAP ERP|SAP EHP',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(477,'SAP ERP|SAP Kernel',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(478,'Oracle Database|SQL*Plus',5,'{''qid'': ''Q2575010'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL*Plus''}','Y','N','N','N'); -INSERT INTO entities VALUES(479,'Sybase SQL Server|Sybase Central',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(480,'Sybase SQL Server|Sybase Dsedit',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(481,'TIBCO Business Works (BW)|Integration Manager',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(482,'.NET Framework|Common Runtime Library',7,'{''qid'': ''Q1444922'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Runtime_library''}','Y','N','N','N'); -INSERT INTO entities VALUES(483,'.NET Framework|log4net',7,'{''qid'': ''Q7884429'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q7884429''}','Y','N','N','Y'); -INSERT INTO entities VALUES(484,'.NET Framework|Magick.NET',7,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(485,'.NET Framework|Windows Communication Foundation (WCF)',7,'{''qid'': ''Q261595'', ''types'': [''Q40056'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Communication_Foundation''}','Y','N','N','N'); -INSERT INTO entities VALUES(486,'.NET Framework|Windows Workflow Foundation (WF)',7,'{''qid'': ''Q1154450'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Workflow_Foundation''}','Y','N','N','N'); -INSERT INTO entities VALUES(487,'.NET Framework|WinForms',7,'{''qid'': ''Q613361'', ''types'': [''Q1193246'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Forms''}','Y','N','N','N'); -INSERT INTO entities VALUES(488,'ActiveX|ADO',7,'{''qid'': ''Q344005'', ''types'': [''Q165194''], ''url'': ''http://dbpedia.org/resource/ActiveX_Data_Objects''}','Y','N','N','N'); -INSERT INTO entities VALUES(489,'IIS|Easy Migration Tool (IEMT)',7,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(490,'IIS|Application Request Routing (ARR)',7,'{''qid'': ''Q16987674'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Application_Request_Routing''}','Y','N','N','N'); -INSERT INTO entities VALUES(491,'IIS|IIS Manager',7,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(492,'JBoss|JBoss Seam',7,'{''qid'': ''Q923560'', ''types'': [''Q1330336'', ''Q341''], ''url'': ''http://dbpedia.org/resource/JBoss_Seam''}','Y','N','N','Y'); -INSERT INTO entities VALUES(493,'JBoss|Wildfly',7,'{''qid'': ''Q68850'', ''types'': [''Q71550'', ''Q341''], ''url'': ''http://dbpedia.org/resource/WildFly''}','N','N','Y','Y'); -INSERT INTO entities VALUES(494,'Oracle Application Server|Oracle Transparent Gateway',7,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(495,'Oracle WebCenter Content Server|Idoc Script',7,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(496,'SAP NetWeaver App Server|ABAP',7,'{''qid'': ''Q380523'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ABAP''}','Y','N','N','N'); -INSERT INTO entities VALUES(497,'.NET Framework',10,'{''qid'': ''Q5289'', ''types'': [''Q241317'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/.NET_Framework''}','Y','N','N','N'); -INSERT INTO entities VALUES(498,'Active Directory (AD)',10,'{''qid'': ''Q55692'', ''types'': [''Q756230''], ''url'': ''http://dbpedia.org/resource/Active_Directory''}','Y','N','N','N'); -INSERT INTO entities VALUES(499,'Active Server Pages (ASP)',10,'{''qid'': ''Q344266'', ''types'': [''Q1330336'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Active_Server_Pages''}','Y','N','N','N'); -INSERT INTO entities VALUES(500,'ActiveX',10,'{''qid'': ''Q302022'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/ActiveX''}','N','N','Y','N'); -INSERT INTO entities VALUES(501,'Apache Cordova',10,'{''qid'': ''Q16626338'', ''types'': [''Q6934955''], ''url'': ''http://dbpedia.org/resource/Apache_Cordova''}','Y','N','N','Y'); -INSERT INTO entities VALUES(502,'CICS',10,'{''qid'': ''Q1146247'', ''types'': [''Q9143'', ''Q4388320''], ''url'': ''http://dbpedia.org/resource/CICS''}','Y','Y','N','N'); -INSERT INTO entities VALUES(503,'Docker',10,'{''qid'': ''Q15206305'', ''types'': [''Q167772'', ''Q7935198'', ''Q506883''], ''url'': ''http://dbpedia.org/resource/Docker_(software)''}','N','N','Y','N'); -INSERT INTO entities VALUES(504,'Flash',10,'{''qid'': ''Q165658'', ''types'': [''Q1155404'', ''Q241317'', ''Q2622299'', ''Q166142''], ''url'': ''http://dbpedia.org/resource/Adobe_Flash''}','Y','N','N','N'); -INSERT INTO entities VALUES(505,'HTTP File Server',10,'{''qid'': ''Q1566096'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/HTTP_File_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(506,'Java Runtime Environment (JRE)',10,'{''qid'': ''Q1504505'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q1504505''}','Y','Y','N','N'); -INSERT INTO entities VALUES(507,'Node.js',10,'{''qid'': ''Q756100'', ''types'': [''Q28920813''], ''url'': ''http://dbpedia.org/resource/Node.js''}','N','N','Y','Y'); -INSERT INTO entities VALUES(508,'Ruby on Rails',10,'{''qid'': ''Q190478'', ''types'': [''Q1330336'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Ruby_on_Rails''}','N','N','Y','Y'); -INSERT INTO entities VALUES(509,'VisualForce',10,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(510,'EMC Celerra',11,'{''qid'': ''Q5057823'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Celerra''}','Y','N','N','N'); -INSERT INTO entities VALUES(511,'Application Lifecycle Management (ALM)',1,'{''qid'': ''Q621590'', ''types'': [''Q1780667''], ''url'': ''http://dbpedia.org/resource/Application_lifecycle_management''}','N','N','Y','N'); -INSERT INTO entities VALUES(512,'Assembler Language',1,'{''qid'': ''Q165436'', ''types'': [''Q28922854'', ''Q9143'', ''Q558937''], ''url'': ''http://dbpedia.org/resource/Assembly_language''}','N','N','Y','N'); -INSERT INTO entities VALUES(513,'Batch Management Software (BMS)',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(514,'Business Object Reports',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(515,'Common Gateway Interface (CGI)',1,'{''qid'': ''Q264364'', ''types'': [''Q11016'', ''Q132364''], ''url'': ''http://dbpedia.org/resource/Common_Gateway_Interface''}','N','N','Y','N'); -INSERT INTO entities VALUES(516,'Compopent Object Model (COM)',1,'{''qid'': ''Q662200'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Component_Object_Model''}','N','N','Y','N'); -INSERT INTO entities VALUES(517,'Common Object Request Broker Architecture (CORBA)',1,'{''qid'': ''Q691593'', ''types'': [''Q317623''], ''url'': ''http://dbpedia.org/resource/Common_Object_Request_Broker_Architecture''}','Y','N','N','N'); -INSERT INTO entities VALUES(518,'CORBA Interface Definition Language (CORBA IDL)',1,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(519,'Data Control Language (DCL)',1,'{''qid'': ''Q604737'', ''types'': [''Q41591651''], ''url'': ''http://dbpedia.org/resource/Data_control_language''}','Y','N','N','N'); -INSERT INTO entities VALUES(520,'Database (DB)',1,'{''qid'': ''Q8513'', ''types'': [''Q15401930'', ''Q386724'', ''Q28813620''], ''url'': ''http://dbpedia.org/resource/Database''}','N','N','Y','N'); -INSERT INTO entities VALUES(521,'Electronic Data Interchange (EDI)',1,'{''qid'': ''Q690189'', ''types'': [''Q2989673''], ''url'': ''http://dbpedia.org/resource/Electronic_data_interchange''}','Y','N','N','N'); -INSERT INTO entities VALUES(522,'Application Web Server',1,'{''qid'': ''Q11288'', ''types'': [''Q1371279'', ''Q4485156'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Web_server''}','N','N','Y','N'); -INSERT INTO entities VALUES(523,'Java-based Document Object Model for XML (JDOM)',1,'{''qid'': ''Q359595'', ''types'': [''Q341'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/JDOM''}','N','N','Y','Y'); -INSERT INTO entities VALUES(524,'Lightweight Directory Access Protocol (LDAP)',1,'{''qid'': ''Q188816'', ''types'': [''Q756230'', ''Q15836568''], ''url'': ''http://dbpedia.org/resource/Lightweight_Directory_Access_Protocol''}','N','N','Y','N'); -INSERT INTO entities VALUES(525,'Open Database Connectivity (ODBC)',1,'{''qid'': ''Q212606'', ''types'': [''Q165194'', ''Q1172367''], ''url'': ''http://dbpedia.org/resource/Open_Database_Connectivity''}','Y','N','N','N'); -INSERT INTO entities VALUES(526,'Order Management System (OMS)',1,'{''qid'': ''Q7100437'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Order_management_system''}','Y','N','N','N'); -INSERT INTO entities VALUES(527,'Oracle Web Services',1,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(528,'Reporting Services',1,'{''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services''}','Y','N','N','N'); -INSERT INTO entities VALUES(529,'Representational State Transfer (REST)',1,'{''qid'': ''Q749568'', ''types'': [''Q220644''], ''url'': ''http://dbpedia.org/resource/Representational_state_transfer''}','Y','N','N','N'); -INSERT INTO entities VALUES(530,'Service-Oriented Architecture (SOA)',1,'{''qid'': ''Q220644'', ''types'': [''Q846636''], ''url'': ''http://dbpedia.org/resource/Service-oriented_architecture''}','Y','N','N','N'); -INSERT INTO entities VALUES(531,'Simple Object Access Protocol (SOAP)',1,'{''qid'': ''Q189620'', ''types'': [''Q15836568''], ''url'': ''http://dbpedia.org/resource/SOAP''}','Y','N','N','N'); -INSERT INTO entities VALUES(532,'SQL',9,'{''qid'': ''Q47607'', ''types'': [''Q9143'', ''Q1144882'', ''Q845739'', ''Q691358''], ''url'': ''http://dbpedia.org/resource/SQL''}','N','N','Y','N'); -INSERT INTO entities VALUES(533,'YAML',1,'{''qid'': ''Q281876'', ''types'': [''Q37045'', ''Q50843083'', ''Q235557'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/YAML''}','Y','N','N','N'); -INSERT INTO entities VALUES(534,'Model-view-controller (MVC)',1,'{''qid'': ''Q44860'', ''types'': [''Q635346'', ''Q181156''], ''url'': ''http://dbpedia.org/resource/Modelûviewûcontroller''}','Y','N','N','N'); -INSERT INTO entities VALUES(535,'Application Server',1,'{''qid'': ''Q71550'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/Application_server''}','N','N','Y','N'); -INSERT INTO entities VALUES(536,'Cloud',1,'{''qid'': ''Q483639'', ''types'': [''Q771906'', ''Q241317''], ''url'': ''http://dbpedia.org/resource/Cloud_computing''}','N','N','Y','N'); -INSERT INTO entities VALUES(537,'Competency and Quality Assurance Server',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(538,'Device Provisioning Engines (DPE)',1,'{''qid'': ''Q5318925'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Dynamic_provisioning_environment''}','N','N','Y','N'); -INSERT INTO entities VALUES(539,'E-business solution',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(540,'Enterprise Service Bus(ESB)',1,'{''qid'': ''Q1061460'', ''types'': [''Q146923''], ''url'': ''http://dbpedia.org/resource/Enterprise_service_bus''}','N','N','Y','N'); -INSERT INTO entities VALUES(541,'File Server',1,'{''qid'': ''Q513349'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/File_server''}','N','N','Y','N'); -INSERT INTO entities VALUES(542,'General Ledger',1,'{''qid'': ''Q1977520'', ''types'': [''Q3831821'', ''Q4116214''], ''url'': ''http://dbpedia.org/resource/General_ledger''}','N','N','Y','N'); -INSERT INTO entities VALUES(543,'HTTP client',1,'{''qid'': ''Q2979024'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q2979024''}','Y','N','N','N'); -INSERT INTO entities VALUES(544,'HTTP Server',1,'{''qid'': ''Q11288'', ''types'': [''Q1371279'', ''Q4485156'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Web_server''}','N','N','Y','N'); -INSERT INTO entities VALUES(545,'Integrated Safe System of Work (ISSOW)',1,'{''qid'': ''Q5974495'', ''types'': [''Q317623''], ''url'': ''http://dbpedia.org/resource/ISSOW''}','N','N','Y','N'); -INSERT INTO entities VALUES(546,'Internet Exchange Point - Full Stack (ixp-ft)',1,'{''qid'': ''Q1433061'', ''types'': [''Q173106'', ''Q1293220''], ''url'': ''http://dbpedia.org/resource/Internet_exchange_point''}','N','N','Y','N'); -INSERT INTO entities VALUES(547,'Internet Message Access Protocol (IMAP)',1,'{''qid'': ''Q166936'', ''types'': [''Q16935517'', ''Q15836568''], ''url'': ''http://dbpedia.org/resource/Internet_Message_Access_Protocol''}','Y','N','N','N'); -INSERT INTO entities VALUES(548,'JSON',1,'{''qid'': ''Q2063'', ''types'': [''Q681263'', ''Q235557'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/JSON''}','N','N','Y','N'); -INSERT INTO entities VALUES(549,'KVS Application Server',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(550,'KVS File Server',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(551,'KVS Proxy Server',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(552,'mainframe',1,'{''qid'': ''Q177234'', ''types'': [''Q64729893''], ''url'': ''http://dbpedia.org/resource/Mainframe_computer''}','Y','N','N','N'); -INSERT INTO entities VALUES(553,'Manufacturing Execution System (MES)',1,'{''qid'': ''Q1404943'', ''types'': [''Q489371''], ''url'': ''http://dbpedia.org/resource/Manufacturing_execution_system''}','N','N','Y','N'); -INSERT INTO entities VALUES(554,'Mobile',1,'{''qid'': ''Q2738570'', ''types'': [''Q179310''], ''url'': ''http://dbpedia.org/resource/Mobile_computing''}','N','N','Y','N'); -INSERT INTO entities VALUES(555,'NonSQL',1,'{''qid'': ''Q5999165'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q5999165''}','Y','N','N','N'); -INSERT INTO entities VALUES(556,'SaaS',1,'{''qid'': ''Q1254596'', ''types'': [''Q8187769'', ''Q25036597'', ''Q17155032'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/Software_as_a_service''}','Y','N','N','N'); -INSERT INTO entities VALUES(557,'Storage Area Network (SAN)',1,'{''qid'': ''Q237576'', ''types'': [''Q15141646'', ''Q994895'', ''Q1301371''], ''url'': ''http://dbpedia.org/resource/Storage_area_network''}','N','N','Y','N'); -INSERT INTO entities VALUES(558,'Supplier Registration System Application Server',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(559,'Virtual Appliance',1,'{''qid'': ''Q752708'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Virtual_appliance''}','N','N','Y','N'); -INSERT INTO entities VALUES(560,'Webtop',1,'{''qid'': ''Q1780763'', ''types'': [''Q1668024''], ''url'': ''http://dbpedia.org/resource/Web_desktop''}','Y','N','N','N'); -INSERT INTO entities VALUES(561,'Proxy Server',1,'{''qid'': ''Q11189'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/Proxy_server''}','N','N','Y','N'); -INSERT INTO entities VALUES(562,'Utility',1,'{''qid'': ''Q312466'', ''types'': [''Q40056'', ''Q676202'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Utility_software''}','N','N','Y','N'); -INSERT INTO entities VALUES(563,'Citrix ADC',3,'{''qid'': ''Q12040775'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q12040775''}','N','N','Y','N'); -INSERT INTO entities VALUES(564,'Citrix ADC VPX',3,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(565,'Citrix ADC BLX',3,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(566,'InterScan Messaging Security Virtual Appliance (IMSVA)',3,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(567,'Oracle VM',3,'{''qid'': ''Q10852040'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Oracle_VM_Server_for_x86''}','Y','N','N','N'); -INSERT INTO entities VALUES(568,'VMware ESXi',3,'{''qid'': ''Q179116'', ''types'': [''Q1077480'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/VMware_ESXi''}','Y','N','N','N'); -INSERT INTO entities VALUES(569,'VMware Server',3,'{''qid'': ''Q4007037'', ''types'': [''Q1077480''], ''url'': ''http://dbpedia.org/resource/VMware_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(570,'IBM WebSphere Transformation Extender (WTX)',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(571,'Oracle Retail Point-of-Service',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(572,'Structured Query Language (SQL)',1,'{''qid'': ''Q47607'', ''types'': [''Q9143'', ''Q1144882'', ''Q845739'', ''Q691358''], ''url'': ''http://dbpedia.org/resource/SQL''}','Y','N','N','N'); -INSERT INTO entities VALUES(573,'TSO/ISPF',2,'{''qid'': ''Q679906'', ''types'': [''Q131212''], ''url'': ''http://dbpedia.org/resource/ISPF''}','Y','N','N','N'); -INSERT INTO entities VALUES(574,'Model view controller (MVC)',1,'{''qid'': ''Q44860'', ''types'': [''Q635346'', ''Q181156''], ''url'': ''http://dbpedia.org/resource/Modelûviewûcontroller''}','Y','N','N','N'); -INSERT INTO entities VALUES(575,'|*',6,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(576,'Linux|*',6,'{''qid'': ''Q388'', ''types'': [''Q14656'', ''Q16889133'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Linux''}','N','N','Y','Y'); -INSERT INTO entities VALUES(577,'MVS|*',6,'{''qid'': ''Q781443'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/MVS''}','Y','N','N','N'); -INSERT INTO entities VALUES(578,'Unix|*',6,'{''qid'': ''Q11368'', ''types'': [''Q170584'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/Unix''}','Y','N','N','N'); -INSERT INTO entities VALUES(579,'Unix|BSD|*',6,'{''qid'': ''Q34264'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34264''}','Y','N','N','N'); -INSERT INTO entities VALUES(580,'Windows|*',6,'{''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows''}','N','N','Y','N'); -INSERT INTO entities VALUES(581,'MS SQL Server|*',2,'{''qid'': ''Q215819'', ''types'': [''Q218616'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_SQL_Server''}','N','N','Y','N'); -INSERT INTO entities VALUES(582,'C#|*',9,'{''qid'': ''Q2370'', ''types'': [''Q9143'', ''Q12772052''], ''url'': ''http://dbpedia.org/resource/C_Sharp_(programming_language)''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(583,'C++|*',9,'{''qid'': ''Q2407'', ''types'': [''Q28923026'', ''Q12772052'', ''Q28922885'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q5499621'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C++''}','Y','Y','N','N'); -INSERT INTO entities VALUES(584,'Java|*',9,'{''qid'': ''Q251'', ''types'': [''Q12772052'', ''Q56062429'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Java_(programming_language)''}','N','N','Y','N'); -INSERT INTO entities VALUES(585,'Perl|*',9,'{''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(586,'PHP|*',9,'{}','N','N','Y','N/A'); -INSERT INTO entities VALUES(587,'Python|*',9,'{''qid'': ''Q28865'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Python_(programming_language)''}','N','N','Y','Y'); -INSERT INTO entities VALUES(588,'Ruby|*',9,'{}','N','Y','Y','Y'); -INSERT INTO entities VALUES(589,'JavaScript|*',9,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(590,'Unix|BSD|OpenBSD',6,'{''qid'': ''Q34215'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34215''}','Y','N','N','N'); -INSERT INTO entities VALUES(591,'z/VSE',6,'{''qid'': ''Q289345'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/VSE_(operating_system)''}','Y','N','N','N'); -INSERT INTO entities VALUES(592,'Active Server Pages (ASP)|*',9,'{''qid'': ''Q344266'', ''types'': [''Q1330336'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Active_Server_Pages''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(593,'MS-DOS',6,'{''qid'': ''Q47604'', ''types'': [''Q9135'', ''Q241317'', ''Q170434''], ''url'': ''http://dbpedia.org/resource/MS-DOS''}','Y','N','N','N'); -INSERT INTO entities VALUES(594,'COBOL|*',9,'{''qid'': ''Q131140'', ''types'': [''Q9143'', ''Q28922885'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/COBOL''}','Y','N','N','N'); -INSERT INTO entities VALUES(595,'VME',6,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(596,'Extensible Markup Language (XML)|*',9,'{''qid'': ''Q2115'', ''types'': [''Q82753'', ''Q37045'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/XML''}','Y','Y','N','N'); -INSERT INTO entities VALUES(597,'DOS/360',6,'{''qid'': ''Q3487917'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/DOS/360_and_successors''}','Y','N','N','N'); -INSERT INTO entities VALUES(598,'z/TPF',6,'{''qid'': ''Q1426122'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Transaction_Processing_Facility''}','Y','N','N','N'); -INSERT INTO entities VALUES(599,'Pascal|*',9,'{''qid'': ''Q81571'', ''types'': [''Q9143'', ''Q21562092'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Pascal_(programming_language)''}','Y','Y','N','N'); -INSERT INTO entities VALUES(600,'Oracle WebLogic Server|*',8,'{''qid'': ''Q83589'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_WebLogic_Server''}','N','N','Y','N'); -INSERT INTO entities VALUES(601,'Websphere ILOG JRules BRMS',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(602,'Unix|BSD|NetBSD',6,'{''qid'': ''Q34225'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34225''}','Y','N','N','N'); -INSERT INTO entities VALUES(603,'SharePoint|*',2,'{''qid'': ''Q18833'', ''types'': [''Q1371279'', ''Q1344636'', ''Q131093'', ''Q831677'', ''Q615985''], ''url'': ''http://dbpedia.org/resource/SharePoint''}','Y','N','N','N'); -INSERT INTO entities VALUES(604,'IBM Tivoli Storage Manager|*',2,'{''qid'': ''Q2001900'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Storage_Manager''}','Y','N','N','N'); -INSERT INTO entities VALUES(605,'IBM Spectrum Scale|*',2,'{''qid'': ''Q2389927'', ''types'': [''Q174989'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_General_Parallel_File_System''}','Y','N','N','N'); -INSERT INTO entities VALUES(606,'IBM Tivoli Asset Management|*',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(607,'Oracle Hyperion|*',2,'{''qid'': ''Q1431991'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Oracle_Hyperion''}','Y','N','N','N'); -INSERT INTO entities VALUES(608,'z/VM',6,'{''qid'': ''Q1399696'', ''types'': [''Q9135'', ''Q1077480''], ''url'': ''http://dbpedia.org/resource/Z/VM''}','Y','N','N','N'); -INSERT INTO entities VALUES(609,'IIS|*',8,'{''qid'': ''Q11341'', ''types'': [''Q218616'', ''Q18287040''], ''url'': ''http://dbpedia.org/resource/Internet_Information_Services''}','Y','N','N','N'); -INSERT INTO entities VALUES(610,'Oracle Application Server|*',8,'{''qid'': ''Q2027912'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(611,'instana',10,'{''qid'': ''Q107383927'', ''url'': ''https://www.wikidata.org/wiki/Q107383927''}','N','N','Y','N'); -INSERT INTO entities VALUES(612,'credstash',2,'{''qid'': ''Q107384165'', ''url'': ''https://www.wikidata.org/wiki/Q107384165''}','N','N','Y','N'); -INSERT INTO entities VALUES(613,'Snyk',2,'{''qid'': ''Q108282404'', ''url'': ''https://www.wikidata.org/wiki/Q108282404''}','N','N','Y','N'); -INSERT INTO entities VALUES(614,'Akka',2,'{''qid'': ''Q16002307'', ''url'': ''https://www.wikidata.org/wiki/Q16002307''}','N','N','Y','N'); -INSERT INTO entities VALUES(615,'Varnish',8,'{''qid'': ''Q1602447'', ''url'': ''https://www.wikidata.org/wiki/Q1602447''}','N','N','Y','N'); -INSERT INTO entities VALUES(616,'Datadog',10,'{''qid'': ''Q16248637'', ''url'': ''https://www.wikidata.org/wiki/Q16248637''}','N','N','Y','N'); -INSERT INTO entities VALUES(617,'API',1,'{''qid'': ''Q165194'', ''url'': ''https://www.wikidata.org/wiki/Q165194''}','N','N','Y','N'); -INSERT INTO entities VALUES(618,'Hazelcast',10,'{''qid'': ''Q17021540'', ''url'': ''https://www.wikidata.org/wiki/Q17021540''}','N','N','Y','N'); -INSERT INTO entities VALUES(619,'Infinispan',2,'{''qid'': ''Q18152516'', ''url'': ''https://www.wikidata.org/wiki/Q18152516''}','N','N','Y','N'); -INSERT INTO entities VALUES(620,'Nuxeo',10,'{''qid'': ''Q2004521'', ''url'': ''https://www.wikidata.org/wiki/Q2004521''}','N','N','Y','N'); -INSERT INTO entities VALUES(621,'ArangoDB',2,'{''qid'': ''Q20072115'', ''url'': ''https://www.wikidata.org/wiki/Q20072115''}','N','N','Y','N'); -INSERT INTO entities VALUES(622,'Eclipse Che',2,'{''qid'': ''Q25000883'', ''url'': ''https://www.wikidata.org/wiki/Q25000883''}','N','N','Y','N'); -INSERT INTO entities VALUES(623,'Amazon S3',2,'{''qid'': ''Q2593067'', ''url'': ''https://www.wikidata.org/wiki/Q2593067''}','N','N','Y','N'); -INSERT INTO entities VALUES(624,'ClickHouse',2,'{''qid'': ''Q27825826'', ''url'': ''https://www.wikidata.org/wiki/Q27825826''}','N','N','Y','N'); -INSERT INTO entities VALUES(625,'MinIO',2,'{''qid'': ''Q28956397'', ''url'': ''https://www.wikidata.org/wiki/Q28956397''}','N','N','Y','N'); -INSERT INTO entities VALUES(626,'Elasticsearch',2,'{''qid'': ''Q3050461'', ''url'': ''https://www.wikidata.org/wiki/Q3050461''}','N','N','Y','N'); -INSERT INTO entities VALUES(627,'XtraDB',2,'{''qid'': ''Q4021858'', ''url'': ''https://www.wikidata.org/wiki/Q4021858''}','N','N','Y','N'); -INSERT INTO entities VALUES(628,'Keycloak',2,'{''qid'': ''Q42916195'', ''url'': ''https://www.wikidata.org/wiki/Q42916195''}','N','N','Y','N'); -INSERT INTO entities VALUES(629,'Grafana',2,'{''qid'': ''Q43399271'', ''url'': ''https://www.wikidata.org/wiki/Q43399271''}','N','N','Y','N'); -INSERT INTO entities VALUES(630,'Mattermost',10,'{''qid'': ''Q55478510'', ''url'': ''https://www.wikidata.org/wiki/Q55478510''}','N','N','Y','N'); -INSERT INTO entities VALUES(631,'Synapse',2,'{''qid'': ''Q56328412'', ''url'': ''https://www.wikidata.org/wiki/Q56328412''}','N','N','Y','N'); -INSERT INTO entities VALUES(632,'Cloud IAM',2,'{''qid'': ''Q59852253'', ''url'': ''https://www.wikidata.org/wiki/Q59852253''}','N','N','Y','N'); -INSERT INTO entities VALUES(633,'Knative',10,'{''qid'': ''Q59905591'', ''url'': ''https://www.wikidata.org/wiki/Q59905591''}','N','N','Y','N'); -INSERT INTO entities VALUES(634,'Apache Cassandra',2,'{''qid'': ''Q616639'', ''url'': ''https://www.wikidata.org/wiki/Q616639''}','N','N','Y','N'); -INSERT INTO entities VALUES(635,'Kubeflow',10,'{''qid'': ''Q65048974'', ''url'': ''https://www.wikidata.org/wiki/Q65048974''}','N','N','Y','N'); -INSERT INTO entities VALUES(636,'Qiskit',2,'{''qid'': ''Q70490607'', ''url'': ''https://www.wikidata.org/wiki/Q70490607''}','N','N','Y','N'); -INSERT INTO entities VALUES(637,'Microsoft Azure',2,'{''qid'': ''Q725967'', ''url'': ''https://www.wikidata.org/wiki/Q725967''}','N','N','Y','N'); -INSERT INTO entities VALUES(638,'Strimzi',10,'{''qid'': ''Q72711423'', ''url'': ''https://www.wikidata.org/wiki/Q72711423''}','N','N','Y','N'); -INSERT INTO entities VALUES(639,'Sematext',10,'{''qid'': ''Q7449130'', ''url'': ''https://www.wikidata.org/wiki/Q7449130''}','N','N','Y','N'); -INSERT INTO entities VALUES(640,'Eclipse hawkBit',2,'{''qid'': ''Q76178253'', ''url'': ''https://www.wikidata.org/wiki/Q76178253''}','N','N','Y','N'); -INSERT INTO entities VALUES(641,'Eclipse Ditto',2,'{''qid'': ''Q76178650'', ''url'': ''https://www.wikidata.org/wiki/Q76178650''}','N','N','Y','N'); -INSERT INTO entities VALUES(642,'MariaDB',2,'{''qid'': ''Q787177'', ''url'': ''https://www.wikidata.org/wiki/Q787177''}','N','N','Y','N'); -INSERT INTO entities VALUES(643,'Zadara',2,'{''qid'': ''Q8064144'', ''url'': ''https://www.wikidata.org/wiki/Q8064144''}','N','N','Y','N'); -INSERT INTO entities VALUES(644,'Istio',2,'{''qid'': ''Q88464464'', ''url'': ''https://www.wikidata.org/wiki/Q88464464''}','N','N','Y','N'); -INSERT INTO entities VALUES(645,'Vault',2,'{''qid'': ''Q88664426'', ''url'': ''https://www.wikidata.org/wiki/Q88664426''}','N','N','Y','N'); -INSERT INTO entities VALUES(646,'Apache Druid',2,'{''qid'': ''Q89693799'', ''url'': ''https://www.wikidata.org/wiki/Q89693799''}','N','N','Y','N'); -INSERT INTO entities VALUES(647,'etcd',2,'{''qid'': ''Q96324273'', ''url'': ''https://www.wikidata.org/wiki/Q96324273''}','N','N','Y','N'); -INSERT INTO entities VALUES(648,'Traefik',8,'{''qid'': ''Q96332968'', ''url'': ''https://www.wikidata.org/wiki/Q96332968''}','N','N','Y','N'); -INSERT INTO entities VALUES(649,'IBM Cloud',2,'{''qid'': ''Q96381605'', ''url'': ''https://www.wikidata.org/wiki/Q96381605''}','N','N','Y','N'); -INSERT INTO entities VALUES(650,'YugabyteDB',2,'{''qid'': ''Q97187861'', ''url'': ''https://www.wikidata.org/wiki/Q97187861''}','N','N','Y','N'); -INSERT INTO entities VALUES(651,'CockroachDB',2,'{''qid'': ''Q98731903'', ''url'': ''https://www.wikidata.org/wiki/Q98731903''}','N','N','Y','N'); -INSERT INTO entities VALUES(652,'Jaeger',10,'{''qid'': ''Q98799449'', ''url'': ''https://www.wikidata.org/wiki/Q98799449''}','N','N','Y','N'); -INSERT INTO entities VALUES(653,'Natural Programming Language',9,'{}','N','N','Y','N/A'); -INSERT INTO entities VALUES(654,'AcuCOBOL',9,'{''qid'': ''Q288844'', ''url'': ''https://www.wikidata.org/wiki/Q288844''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(655,'Ada',9,'{''qid'': ''Q154755'', ''url'': ''https://www.wikidata.org/wiki/Q154755''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(656,'ADABAS',2,'{''qid'': ''Q346434'', ''url'': ''https://www.wikidata.org/wiki/Q346434''}','N','N','Y','N'); -INSERT INTO entities VALUES(657,'ADSO',9,'{''qid'': ''Q4685839'', ''url'': ''https://www.wikidata.org/wiki/Q4685839''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(658,'Ansible',2,'{''qid'': ''Q2852503'', ''url'': ''https://www.wikidata.org/wiki/Q2852503''}','N','N','Y','Y'); -INSERT INTO entities VALUES(659,'Batch',9,'{''qid'': ''Q479833'', ''url'': ''https://www.wikidata.org/wiki/Q479833''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(660,'Powershell',9,'{''qid'': ''Q840410'', ''url'': ''https://www.wikidata.org/wiki/Q840410''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(661,'COM+',10,'{''qid'': ''Q9670606'', ''url'': ''https://www.wikidata.org/wiki/Q9670606''}','N','N','Y','N'); -INSERT INTO entities VALUES(662,'Dataflex',9,'{''qid'': ''Q2391203'', ''url'': ''https://www.wikidata.org/wiki/Q2391203''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(663,'DDS',9,'{''qid'': ''Q1149607'', ''url'': ''https://www.wikidata.org/wiki/Q1149607''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(664,'Forte',9,'{''qid'': ''Q3748867'', ''url'': ''https://www.wikidata.org/wiki/Q3748867''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(665,'Foxpro',9,'{''qid'': ''Q2507721'', ''url'': ''https://www.wikidata.org/wiki/Q2507721''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(666,'IBM DB2 Purescale',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(667,'IDMS DB',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(668,'IDMS DML',9,'{}','Y','N','N','N/A'); -INSERT INTO entities VALUES(669,'Jaguar',8,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(670,'EAServer',8,'{''qid'': ''Q5816084'', ''url'': ''https://www.wikidata.org/wiki/Q5816084''}','Y','N','N','N'); -INSERT INTO entities VALUES(671,'Apache Cassandra',2,'{''qid'': ''Q616639'', ''url'': ''https://www.wikidata.org/wiki/Q616639''}','N','N','Y','N'); -INSERT INTO entities VALUES(672,'IBM Netezza',4,'{''qid'': ''Q3874960'', ''url'': ''https://www.wikidata.org/wiki/Q3874960''}','N','N','Y','N'); -INSERT INTO entities VALUES(673,'OpenEdge',9,'{''qid'': ''Q1963461'', ''url'': ''https://www.wikidata.org/wiki/Q1963461''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(674,'OpenROAD',9,'{''qid'': ''Q2025504'', ''url'': ''https://www.wikidata.org/wiki/Q2025504''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(675,'Oracle Reports',2,'{''qid'': ''Q4045946'', ''url'': ''https://www.wikidata.org/wiki/Q4045946''}','Y','N','N','N'); -INSERT INTO entities VALUES(676,'SAP Replication Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(677,'Git',2,'{''qid'': ''Q186055'', ''url'': ''https://www.wikidata.org/wiki/Q186055''}','N','N','Y','N'); -INSERT INTO entities VALUES(678,'GitLab',2,'{''qid'': ''Q16639197'', ''url'': ''https://www.wikidata.org/wiki/Q16639197''}','N','N','Y','N'); -INSERT INTO entities VALUES(679,'VSAM',2,'{''qid'': ''Q1514276'', ''url'': ''https://www.wikidata.org/wiki/Q1514276''}','Y','N','N','N'); -INSERT INTO entities VALUES(680,'Cloud<>Apache HTTP Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(681,'Cloud<>Windows|Windows Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(682,'Cloud<>MS SQL Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(683,'Cloud<>Azure SQL Server Database',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(684,'Cloud<>MySQL',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(685,'Cloud<>Oracle Database',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(686,'Cloud<>PostgreSQL',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(687,'Cloud<>AWS RDS',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(688,'Cloud<>SAP HANA DB',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(689,'BMS Map',9,'{}','Y','N','N','N/A'); -INSERT INTO entities VALUES(690,'DB400',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(691,'ILE',9,'{''qid'': ''Q16889435'', ''url'': ''https://www.wikidata.org/wiki/Q16889435''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(692,'Integrated Data Store (IDS)',2,'{''qid'': ''Q3799287'', ''url'': ''https://www.wikidata.org/wiki/Q3799287''}','Y','N','N','N'); -INSERT INTO entities VALUES(693,'ISAM',2,'{''qid'': ''Q1154755'', ''url'': ''https://www.wikidata.org/wiki/Q1154755''}','N','N','Y','N'); -INSERT INTO entities VALUES(694,'Oracle RDS',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(695,'SAP IQ',2,'{''qid'': ''Q948492'', ''url'': ''https://www.wikidata.org/wiki/Q948492''}','Y','N','N','N'); -INSERT INTO entities VALUES(696,'Cloud<>Linux',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(697,'Apache Maven',2,'{''qid'': ''Q139941'', ''url'': ''https://www.wikidata.org/wiki/Q139941''}','N','N','Y','Y'); -INSERT INTO entities VALUES(698,'IBM Basic Assembly Language (BAL)',9,'{''qid'': ''Q5968762'', ''url'': ''https://www.wikidata.org/wiki/Q5968762''}','Y','N','N','N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (1, '(E)JES', 2, '{''qid'': ''Q355203'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q355203''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (2, 'A-Auto Job Scheduling Software', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (3, 'Activiti', 2, '{''qid'': ''Q344370'', ''types'': [''Q341'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Activiti_(software)''}', 'N', 'Y', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (4, 'Adobe Acrobat Reader', 2, '{''qid'': ''Q207902'', ''types'': [''Q29364197'', ''Q166142''], ''url'': ''http://dbpedia.org/resource/Adobe_Acrobat''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (5, 'Ansible', 2, '{''qid'': ''Q2852503'', ''types'': [''Q29032804''], ''url'': ''http://dbpedia.org/resource/Ansible_(software)''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (6, 'Apache ActiveMQ', 2, '{''qid'': ''Q773135'', ''types'': [''Q6821765'', ''Q1092177'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_ActiveMQ''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (7, 'Apache Hbase', 2, '{''qid'': ''Q2538066'', ''types'': [''Q341'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Apache_HBase''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (8, 'Apache Hive', 2, '{''qid'': ''Q4778914'', ''types'': [''Q341'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Apache_Hive''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (9, 'Apache Kafka', 2, '{''qid'': ''Q16235208'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/Apache_Kafka''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (10, 'Apache ServiceMix', 2, '{''qid'': ''Q773212'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_ServiceMix''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (11, 'Apache Solr', 2, '{''qid'': ''Q2858103'', ''types'': [''Q19541'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_Solr''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (12, 'Apache Subversion', 2, '{''qid'': ''Q46794'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Apache_Subversion''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (13, 'Application Development Facility (ADF)', 2, '{''qid'': ''Q5285237'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Django_Software_Foundation''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (14, 'Asterisk', 2, '{''qid'': ''Q622754'', ''types'': [''Q1978634''], ''url'': ''http://dbpedia.org/resource/Asterisk_(PBX)''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (15, 'Automic Job Scheduler', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (16, 'Autosys', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (17, 'Bluebeam|Bluebeam Q', 2, '{''qid'': ''Q4930191'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Bluebeam_Software,_Inc.''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (18, 'BMC Control-M', 2, '{''qid'': ''Q4835944'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q4835944''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (19, 'BMC Identity Management', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (20, 'Borland Database Engine (BDE)', 2, '{''qid'': ''Q893888'', ''types'': [''Q537993''], ''url'': ''http://dbpedia.org/resource/Borland_Database_Engine''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (21, 'Business Intelligence and Reporting Tools (BIRT)', 2, '{''qid'': ''Q796007'', ''types'': [''Q341'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/BIRT_Project''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (22, 'CA Gen', 2, '{''qid'': ''Q2125673'', ''types'': [''Q28059995''], ''url'': ''http://dbpedia.org/resource/CA_Gen''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (23, 'CA Introscope', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (24, 'CA-Panvalet', 2, '{''qid'': ''Q17073931'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Panvalet''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (25, 'CA-TELON', 2, '{''qid'': ''Q2383975'', ''types'': [''Q238137''], ''url'': ''http://dbpedia.org/resource/CA-Telon''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (26, 'Casegen', 2, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (27, 'Chef Automate', 2, '{''qid'': ''Q24479'', ''types'': [''Q29032804''], ''url'': ''http://dbpedia.org/resource/Chef_(software)''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (28, 'Cisco AMP for Endpoints', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (29, 'CiscoWorks LAN Management Solution (LMS)', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (30, 'Citrix Virtual Apps and Desktops', 2, '{''qid'': ''Q1093482'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/XenApp''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (31, 'Citrix ADC CPX', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (32, 'Citrix Provisioning', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (33, 'Clarify', 2, '{''qid'': ''Q17105097'', ''types'': [''Q1058914''], ''url'': ''http://dbpedia.org/resource/Clarify_Op3nvoice''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (34, 'Clarity LIMS', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (35, 'LabWare LIMS', 2, '{''qid'': ''Q1798149'', ''types'': [''Q121182''], ''url'': ''http://dbpedia.org/resource/Laboratory_information_management_system''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (36, 'Cognos', 2, '{''qid'': ''Q1107048'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Cognos''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (37, 'Coldfusion', 2, '{''qid'': ''Q468446'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Adobe_ColdFusion''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (38, 'ConceptWave', 2, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (39, 'CONNAPI', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (40, 'Connect Direct', 2, '{''qid'': ''Q369085'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Connect:Direct''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (41, 'Cornerstone software', 2, '{''qid'': ''Q5171657'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Cornerstone_(software)''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (42, 'Crystal Reports', 2, '{''qid'': ''Q1142403'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/Crystal_Reports''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (43, 'DB2', 2, '{''qid'': ''Q431195'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/IBM_DB2''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (44, 'Documentum Content Server', 2, '{''qid'': ''Q5287684'', ''types'': [''Q247423'', ''Q1344636''], ''url'': ''http://dbpedia.org/resource/Documentum''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (45, 'Drupal', 2, '{''qid'': ''Q170855'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/Drupal''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (46, 'Eclipse', 2, '{''qid'': ''Q82268'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/Eclipse_(software)''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (47, 'Elastic (ELK) Stack', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (48, 'ETAP License Manager (LM)', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (49, 'ExamDiff', 2, '{''qid'': ''Q5419269'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ExamDiff_Pro''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (50, 'F5 Secure Web Gateway Services', 2, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (51, 'FileMaker Pro', 2, '{''qid'': ''Q1982831'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/FileMaker''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (52, 'FlexNet Manager Suite', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (53, 'FTP Voyager', 2, '{''qid'': ''Q1389773'', ''types'': [''Q3503189'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/FTP_Voyager''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (54, 'Genymotion', 2, '{''qid'': ''Q105239167'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105239167''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (55, 'Google Chrome', 2, '{''qid'': ''Q777'', ''types'': [''Q6368''], ''url'': ''http://dbpedia.org/resource/Google_Chrome''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (56, 'Greenplum DB', 2, '{''qid'': ''Q4039706'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Greenplum''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (57, 'Hadoop', 2, '{''qid'': ''Q29120'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Apache_Hadoop''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (58, 'HP aC++ compiler', 2, '{''qid'': ''Q5635754'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/HP_aC++''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (59, 'HP C/ANSI C compiler', 2, '{''qid'': ''Q4045464'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Norcroft_C_compiler''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (60, 'HP Operations Orchestration (HPOO)', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (61, 'HP Server Automation (HPSA)', 2, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (62, 'IBM BigFix Platform', 2, '{''qid'': ''Q7810432'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_BigFix''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (63, 'IBM Business Monitor', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (64, 'IBM Business Process Manager', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (65, 'IBM Content Manager OnDemand (CMOD)', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (66, 'IBM FileNet P8 Platform', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (67, 'IBM InfoSphere DataStage', 2, '{''qid'': ''Q5968866'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_InfoSphere_DataStage''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (68, 'IBM Integration Bus', 2, '{''qid'': ''Q5969139'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Integration_Bus''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (69, 'IBM License Metric Tool', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (70, 'IBM Maximo', 2, '{''qid'': ''Q55622518'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Maximo_(MRO)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (71, 'IBM Migration Utility', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (72, 'IBM Mobile Foundation', 2, '{''qid'': ''Q25324136'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_MobileFirst''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (73, 'IBM Operational Decision Manager (ODM)', 2, '{''qid'': ''Q16928000'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Operational_Decision_Management''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (74, 'IBM Spectrum Scale', 2, '{''qid'': ''Q2389927'', ''types'': [''Q174989'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_General_Parallel_File_System''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (75, 'IBM Tivoli Asset Management', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (76, 'IBM Tivoli Composite Application Manager', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (77, 'IBM Tivoli Monitoring', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (78, 'IBM Tivoli Storage Manager', 2, '{''qid'': ''Q2001900'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Storage_Manager''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (79, 'IBM Tivoli Workload Scheduler (TWS)', 2, '{''qid'': ''None'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Workload_Scheduler''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (80, 'IBM WebSphere Business Integration Adaptor', 2, '{''qid'': ''Q5969131'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Adapters''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (81, 'IBM Websphere MQ', 2, '{''qid'': ''Q528294'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_MQ''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (82, 'IBM WebSphere MQ Telemetry', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (83, 'IBM WebSphere Transformation Extender (WTX)', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (84, 'IMS DB', 2, '{''qid'': ''Q1571984'', ''types'': [''Q871236'', ''Q4388320'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/IBM_Information_Management_System''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (85, 'Info-ZIP', 2, '{''qid'': ''Q1662431'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Info-ZIP''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (86, 'Infobright Community Edition (ICE)', 2, '{''qid'': ''Q3150805'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Infobright''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (87, 'Informatica PowerCenter', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (88, 'Ingres', 2, '{''qid'': ''Q60463'', ''types'': [''Q1130645'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Ingres_(database)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (89, 'JBoss|JBoss Enterprise Service Bus', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (90, 'Jenkins', 2, '{''qid'': ''Q7491312'', ''types'': [''Q16947796''], ''url'': ''http://dbpedia.org/resource/Jenkins_(software)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (91, 'joinIT', 2, '{}', 'N', 'N', 'Y*', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (92, 'LifeFlow', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (93, 'Lotus Notes', 2, '{''qid'': ''Q60198'', ''types'': [''Q474157'', ''Q28601953'', ''Q131093''], ''url'': ''http://dbpedia.org/resource/IBM_Notes''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (94, 'MaaS360', 2, '{''qid'': ''Q39089630'', ''types'': [''None''], ''url'': ''None''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (95, 'Malwarebytes Anti-Malware', 2, '{''qid'': ''Q1783235'', ''types'': [''Q13429867''], ''url'': ''http://dbpedia.org/resource/Malwarebytes_Anti-Malware''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (96, 'ManageEngine ADSelfService Plus', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (97, 'MarkLogic DB', 2, '{''qid'': ''Q6766381'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/MarkLogic''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (98, 'Memcached', 2, '{''qid'': ''Q306661'', ''types'': [''Q165596'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Memcached''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (99, 'Microsoft Access', 2, '{''qid'': ''Q80689'', ''types'': [''Q218616'', ''Q176165'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_Access''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (100, 'Microsoft BizTalk Adapters for Host Systems', 2, '{''qid'': ''Q904150'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_BizTalk_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (101, 'Microsoft Dynamics AX', 2, '{''qid'': ''Q675860'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_Dynamics_AX''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (102, 'Microsoft Endpoint Configuration Manager (SCCM)', 2, '{''qid'': ''Q2061082'', ''types'': [''Q312466'', ''Q1371279''], ''url'': ''http://dbpedia.org/resource/System_Center_Configuration_Manager''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (103, 'Microsoft Excel', 2, '{''qid'': ''Q11272'', ''types'': [''Q218616'', ''Q183197''], ''url'': ''http://dbpedia.org/resource/Microsoft_Excel''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (104, 'Microsoft Exchange Server', 2, '{''qid'': ''Q223653'', ''types'': [''Q474157'', ''Q859477'', ''Q2933820''], ''url'': ''http://dbpedia.org/resource/Microsoft_Exchange_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (105, 'Microsoft Forefront Identity Manager (FIM)', 2, '{''qid'': ''Q5468182'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Forefront_Identity_Manager''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (106, 'Microsoft InfoPath', 2, '{''qid'': ''Q706294'', ''types'': [''Q474157'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_InfoPath''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (107, 'Microsoft Internet Explorer', 2, '{''qid'': ''Q1575'', ''types'': [''Q218616'', ''Q498267'', ''Q6368''], ''url'': ''http://dbpedia.org/resource/Internet_Explorer''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (108, 'Microsoft ISA Server', 2, '{''qid'': ''Q632851'', ''types'': [''Q40056''], ''url'': ''http://dbpedia.org/resource/Microsoft_Forefront_Threat_Management_Gateway''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (109, 'Microsoft MQ', 2, '{''qid'': ''Q1931595'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Microsoft_Message_Queuing''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (110, 'Microsoft System Center Endpoint Protection', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (111, 'Microsoft Visual Studio', 2, '{''qid'': ''Q134067'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/Microsoft_Visual_Studio''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (112, 'Microsoft Web Deploy', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (113, 'Microsoft Web Farm Framework (WFF)', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (114, 'Microsoft Web Platform Installer', 2, '{''qid'': ''Q976637'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Web_Platform_Installer''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (115, 'Model Driven Workflow (MDW)', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (116, 'MongoDB', 2, '{''qid'': ''Q1165204'', ''types'': [''Q1235236'', ''Q176165'', ''Q82231''], ''url'': ''http://dbpedia.org/resource/MongoDB''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (117, 'Mozilla Firefox', 2, '{''qid'': ''Q698'', ''types'': [''Q6368''], ''url'': ''http://dbpedia.org/resource/Firefox''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (118, 'MQ Client', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (119, 'MS Office 365', 2, '{''qid'': ''Q775811'', ''types'': [''Q1254596'', ''Q26674207''], ''url'': ''http://dbpedia.org/resource/Office_365''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (120, 'MS SQL Server', 2, '{''qid'': ''Q215819'', ''types'': [''Q218616'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_SQL_Server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (121, 'MS SQL Server Compact', 2, '{''qid'': ''Q1814028'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Compact''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (122, 'MySQL', 2, '{''qid'': ''Q850'', ''types'': [''Q1371279'', ''Q1130645'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/MySQL''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (123, 'Neo4j', 2, '{''qid'': ''Q1628290'', ''types'': [''Q99510066'', ''Q218616'', ''Q595971'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Neo4j''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (124, 'Nexus Repository OSS', 2, '{}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (125, 'Nix package manager', 2, '{''qid'': ''Q7041957'', ''types'': [''Q891055'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Nix_package_manager''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (126, 'OpenLDAP', 2, '{''qid'': ''Q682918'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/OpenLDAP''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (127, 'OpenText Exstream', 2, '{''qid'': ''Q5421776'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Exstream_Software''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (128, 'OpenVPN', 2, '{''qid'': ''Q509075'', ''types'': [''Q166142'', ''Q341''], ''url'': ''http://dbpedia.org/resource/OpenVPN''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (129, 'Oracle Access Management', 2, '{''qid'': ''Q7099276'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Identity_Management''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (130, 'Oracle ADF', 2, '{''qid'': ''Q1853309'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Development_Framework''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (131, 'Oracle APEX', 2, '{''qid'': ''Q1908291'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Express''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (132, 'Oracle BI Publisher', 2, '{''qid'': ''Q7099244'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_BI_Publisher''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (133, 'Oracle Business Intelligence', 2, '{''qid'': ''Q7099251'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Business_Intelligence_Suite_Enterprise_Edition''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (134, 'Oracle Database', 2, '{''qid'': ''Q185524'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/Oracle_Database''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (135, 'Oracle Designer', 2, '{''qid'': ''Q7099261'', ''types'': [''Q28059995''], ''url'': ''http://dbpedia.org/resource/Oracle_Designer''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (136, 'Oracle Enterprise Manager', 2, '{''qid'': ''Q7099266'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Enterprise_Manager''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (137, 'Oracle Forms', 2, '{''qid'': ''Q744707'', ''types'': [''Q756637''], ''url'': ''http://dbpedia.org/resource/Oracle_Forms''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (138, 'Oracle Hyperion|Hyperion Interactive Reporting', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (139, 'Oracle Hyperion|Hyperion Planning', 2, '{''qid'': ''Q5958168'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q5958168''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (140, 'Oracle Net Services', 2, '{''qid'': ''Q7099283'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Net_Services''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (141, 'Oracle Real Application Clusters (RAC)', 2, '{''qid'': ''Q1418481'', ''types'': [''Q28057052''], ''url'': ''http://dbpedia.org/resource/Oracle_RAC''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (142, 'Oracle Retail Point-of-Service', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (143, 'Oracle Service Bus', 2, '{''qid'': ''Q7099295'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Service_Bus''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (144, 'Oracle Smart View', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (145, 'Oracle SOA Suite', 2, '{''qid'': ''Q7099294'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_SOA_Suite''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (146, 'Oracle SQL Developer', 2, '{''qid'': ''Q931351'', ''types'': [''Q13741'', ''Q47607''], ''url'': ''http://dbpedia.org/resource/Oracle_SQL_Developer''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (147, 'Oracle TimesTen In-Memory Database', 2, '{''qid'': ''Q3991449'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/TimesTen''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (148, 'Oracle Warehouse Builder (OWB)', 2, '{''qid'': ''Q3354986'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Warehouse_Builder''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (149, 'Orbix', 2, '{''qid'': ''Q4045955'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Orbix_(software)''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (150, 'Pentaho', 2, '{''qid'': ''Q644841'', ''types'': [''Q341'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Pentaho''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (151, 'PeopleSoft', 2, '{''qid'': ''Q1928814'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/PeopleSoft''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (152, 'Perkin Elmer Informatics (PKI)', 2, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (153, 'Pervasive PSQL', 2, '{''qid'': ''Q7171236'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Pervasive_PSQL''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (154, 'PIPE-FLO', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (155, 'PKZIP', 2, '{''qid'': ''Q1602149'', ''types'': [''Q25303924''], ''url'': ''http://dbpedia.org/resource/PKZIP''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (156, 'Planview', 2, '{''qid'': ''Q19903554'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Planview''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (157, 'PostgreSQL', 2, '{''qid'': ''Q192490'', ''types'': [''Q341'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/PostgreSQL''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (158, 'Powerbuilder', 2, '{''qid'': ''Q580882'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/PowerBuilder''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (159, 'Primavera P6', 2, '{''qid'': ''Q2111327'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Primavera_(software)''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (160, 'Pro*COBOL', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (161, 'ProjectWise', 2, '{''qid'': ''Q7248950'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/ProjectWise''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (162, 'ProjectWise Web Server', 2, '{''qid'': ''Q7248950'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/ProjectWise''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (163, 'PVCS Version Manager', 2, '{''qid'': ''Q3359906'', ''types'': [''Q3257930'', ''Q55680343''], ''url'': ''http://dbpedia.org/resource/PVCS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (164, 'QlikView', 2, '{''qid'': ''Q105859488'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105859488''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (165, 'RabbitMQ', 2, '{''qid'': ''Q2081413'', ''types'': [''Q6821765'', ''Q341''], ''url'': ''http://dbpedia.org/resource/RabbitMQ''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (166, 'Rational ClearCase', 2, '{''qid'': ''Q593863'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Rational_ClearCase''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (167, 'Rational ClearQuest', 2, '{''qid'': ''Q1493633'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Rational_ClearQuest''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (168, 'Redis', 2, '{''qid'': ''Q2136322'', ''types'': [''Q82231''], ''url'': ''http://dbpedia.org/resource/Redis''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (169, 'Remedy', 2, '{''qid'': ''Q7311616'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Remedy_Debugger''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (170, 'Riak', 2, '{''qid'': ''Q2328712'', ''types'': [''Q506883'', ''Q20706915'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Riak''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (171, 'RightFax', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (172, 'Rumba', 2, '{''qid'': ''Q21684437'', ''types'': [''Q1544863'', ''Q3328778''], ''url'': ''http://dbpedia.org/resource/Rumba''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (173, 'SAP BusinessObjects BI server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (174, 'SAP ERP', 2, '{''qid'': ''Q167533'', ''types'': [''Q28057030''], ''url'': ''http://dbpedia.org/resource/SAP_ERP''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (175, 'SAP HANA DB', 2, '{''qid'': ''Q951374'', ''types'': [''Q1572823'', ''Q166142'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/SAP_HANA''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (176, 'SAP MaxDB', 2, '{''qid'': ''Q2143312'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/MaxDB''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (177, 'SAP NetWeaver Business Warehouse', 2, '{''qid'': ''Q1269377'', ''types'': [''Q193351''], ''url'': ''http://dbpedia.org/resource/SAP_NetWeaver_Business_Warehouse''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (178, 'SAP SQL Anywhere', 2, '{''qid'': ''Q2247564'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQL_Anywhere''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (179, 'SAP Web Dynpro', 2, '{''qid'': ''Q1804792'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Web_Dynpro''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (180, 'Sentry', 2, '{''qid'': ''Q3478803'', ''types'': [''Q58778''], ''url'': ''http://dbpedia.org/resource/Sentry_(monitoring_system)''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (181, 'SharePoint', 2, '{''qid'': ''Q18833'', ''types'': [''Q1371279'', ''Q1344636'', ''Q131093'', ''Q831677'', ''Q615985''], ''url'': ''http://dbpedia.org/resource/SharePoint''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (182, 'Siebel', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (183, 'SNA Manager', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (184, 'SnagIt', 2, '{''qid'': ''Q1776235'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Snagit''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (185, 'solidDB', 2, '{''qid'': ''Q7557804'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SolidDB''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (186, 'SonarQube', 2, '{''qid'': ''Q541691'', ''types'': [''Q28061130'', ''Q341''], ''url'': ''http://dbpedia.org/resource/SonarQube''}', 'N', 'Y', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (187, 'SpaceMonger', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (188, 'Splunk', 2, '{''qid'': ''Q1835753'', ''types'': [''Q1058914'', ''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Splunk''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (189, 'SQLIO', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (190, 'Sybase SQL Server', 2, '{''qid'': ''Q2576415'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/Adaptive_Server_Enterprise''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (191, 'Syncsort', 2, '{''qid'': ''Q7662279'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Syncsort''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (192, 'Sysinternal Tools', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (193, 'Sysinternal Tools|*', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (194, 'Sysinternal Tools|AccessEnum', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (195, 'Sysinternal Tools|ClockRes', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (196, 'Sysinternal Tools|Coreinfo', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (197, 'Sysinternal Tools|DiskExt', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (198, 'Sysinternal Tools|DiskMon', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (199, 'Sysinternal Tools|Hex2dec', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (200, 'Sysinternal Tools|Junction', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (201, 'Sysinternal Tools|LDMDump', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (202, 'Sysinternal Tools|LoadOrder', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (203, 'Sysinternal Tools|PipeList', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (204, 'Sysinternal Tools|Process Explorer', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (205, 'Sysinternal Tools|PsKill', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (206, 'Sysinternal Tools|PsPasswd', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (207, 'Sysinternal Tools|SDelete', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (208, 'Sysinternal Tools|ShareEnum', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (209, 'Sysinternal Tools|Sync', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (210, 'Sysinternal Tools|TCPView', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (211, 'Sysinternal Tools|VMMap', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (212, 'Sysinternal Tools|Whois', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (213, 'Tableau', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (214, 'TCPLink Enterprise Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (215, 'Teradata', 2, '{''qid'': ''Q430745'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Teradata''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (216, 'Teradata QS Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (217, 'TIBCO Business Works (BW)', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (218, 'TIBCO InConcert', 2, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (219, 'TIBCO Rendezvous', 2, '{''qid'': ''Q11198794'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/TIBCO_Rendezvous''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (220, 'Tivoli Access Manager (TAM)', 2, '{''qid'': ''None'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Access_Manager''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (221, 'TortoiseCVS', 2, '{''qid'': ''Q2883113'', ''types'': [''Q166142'', ''Q341''], ''url'': ''http://dbpedia.org/resource/TortoiseCVS''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (222, 'TortoiseSVN', 2, '{''qid'': ''Q1062467'', ''types'': [''Q166142'', ''Q1130645''], ''url'': ''http://dbpedia.org/resource/TortoiseSVN''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (223, 'TSO/ISPF', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (224, 'TWS zCentric', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (225, 'Uniface', 2, '{''qid'': ''Q2143563'', ''types'': [''Q9143'', ''Q13741'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/Uniface_(programming_language)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (226, 'ViewNow X Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (227, 'Virtual I/O Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (228, 'Visibroker', 2, '{''qid'': ''Q7936097'', ''types'': [''Q146768''], ''url'': ''http://dbpedia.org/resource/Visibroker''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (229, 'VMware Solution Exchange Marketplace (VSX)', 2, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (230, 'VMware Tools', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (231, 'VMware vCenter', 2, '{''qid'': ''Q55636858'', ''types'': [''Q218616'', ''Q1371279''], ''url'': ''None''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (232, 'WebFOCUS', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (233, 'WebLogic Integration', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (234, 'WebSphere Commerce Suite (WCS)', 2, '{''qid'': ''Q5969126'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebSphere_Commerce''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (235, 'WebSphere Message Broker', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (236, 'Wherescape Red', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (237, 'Windchill', 2, '{''qid'': ''Q8024086'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Windchill_(software)''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (238, 'Windows Indexing Service', 2, '{''qid'': ''Q575974'', ''types'': [''Q1138815''], ''url'': ''http://dbpedia.org/resource/Indexing_Service''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (239, 'Windows Terminal Server (WTS)', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (240, 'WingArc SVF', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (241, 'WinMerge', 2, '{''qid'': ''Q250602'', ''types'': [''Q341'', ''Q2990323''], ''url'': ''http://dbpedia.org/resource/WinMerge''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (242, 'WinRAR', 2, '{''qid'': ''Q242747'', ''types'': [''Q25303924'', ''Q185534''], ''url'': ''http://dbpedia.org/resource/WinRAR''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (243, 'WinSCP', 2, '{''qid'': ''Q1160381'', ''types'': [''Q3503189'', ''Q2158576'', ''Q341''], ''url'': ''http://dbpedia.org/resource/WinSCP''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (244, 'Wise Package Studio', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (245, 'Wordpress', 2, '{''qid'': ''Q13166'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/WordPress''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (246, 'XAMPP', 2, '{''qid'': ''Q324073'', ''types'': [''Q100528793'', ''Q341''], ''url'': ''http://dbpedia.org/resource/XAMPP''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (247, 'ZAP BI', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (248, 'ZeroMQ', 2, '{''qid'': ''Q8079189'', ''types'': [''Q188860'', ''Q341''], ''url'': ''http://dbpedia.org/resource/ZeroMQ''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (249, 'Zerto Virtual Replication', 2, '{''qid'': ''Q8069662'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Zerto''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (250, 'IBM PowerHA', 2, '{''qid'': ''Q10850880'', ''types'': [''Q28057052'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_High_Availability_Cluster_Multiprocessing''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (251, 'Tivoli Netcool/OMNIbus', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (252, 'IBM ILOG Views', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (253, 'IBM ILOG CPLEX', 2, '{''qid'': ''Q2372381'', ''types'': [''Q74086777''], ''url'': ''http://dbpedia.org/resource/CPLEX''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (254, 'IBM ILOG Jviews', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (255, 'IBM ILOG Elixir', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (256, 'IBM ILOG Supply Chain Apps', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (257, 'ILOG Solver', 2, '{''qid'': ''Q2011386'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/ILOG''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (258, 'SQLite', 2, '{''qid'': ''Q319417'', ''types'': [''Q35687379'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQLite''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (259, 'Apache HTTP Server', 8, '{''qid'': ''Q11354'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/Apache_HTTP_Server''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (260, 'Apache Tomcat', 8, '{''qid'': ''Q507430'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Apache_Tomcat''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (261, 'ArcGIS Server', 8, '{''qid'': ''Q4784987'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ArcGIS_Server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (262, 'Oracle WebLogic Server', 8, '{''qid'': ''Q83589'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_WebLogic_Server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (263, 'GlassFish', 8, '{''qid'': ''Q68847'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/GlassFish''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (264, 'HAProxy', 8, '{''qid'': ''Q5628948'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/HAProxy''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (265, 'IBM HTTP Server', 8, '{''qid'': ''Q821668'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/IBM_HTTP_Server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (266, 'IIS', 8, '{''qid'': ''Q11341'', ''types'': [''Q218616'', ''Q18287040''], ''url'': ''http://dbpedia.org/resource/Internet_Information_Services''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (267, 'JBoss', 8, '{''qid'': ''Q485593'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/JBoss_(company)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (268, 'JBoss|*', 8, '{''qid'': ''Q485593'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/JBoss_(company)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (269, 'Kitura', 8, '{''qid'': ''Q28130427'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Kitura''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (270, 'Lotus Domino', 8, '{''qid'': ''Q1069529'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q1069529''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (271, 'Lucee', 8, '{''qid'': ''Q105180640'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Lucee''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (272, 'Netscape Application Server (NAS)', 8, '{''qid'': ''Q7000305'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Netscape_Application_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (273, 'Netscape Enterprise Server (NES)', 8, '{''qid'': ''Q478430'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q478430''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (274, 'Nginx', 8, '{''qid'': ''Q306144'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/Nginx''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (275, 'Oracle Application Server', 8, '{''qid'': ''Q2027912'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (276, 'Oracle WebCenter Content Server', 8, '{''qid'': ''Q2309159'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/Oracle_WebCenter''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (277, 'Pivotal tc Server', 8, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (278, 'Resin Web Server', 8, '{''qid'': ''Q2145742'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Resin_(software)''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (279, 'SAP NetWeaver App Server', 8, '{''qid'': ''Q2204924'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/SAP_NetWeaver''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (280, 'Spark', 8, '{''qid'': ''Q20712258'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Spark_(software)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (281, 'Oracle iPlanet Web Server', 8, '{''qid'': ''Q1225115'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_iPlanet_Web_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (282, 'UltiDev Web Server Pro (UWS)', 8, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (283, 'webMethods Integration Server', 8, '{''qid'': ''Q7978461'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebMethods_Integration_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (284, 'Websphere Application Server (WAS)', 8, '{''qid'': ''Q81612'', ''types'': [''Q1330336'', ''Q71550''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Application_Server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (285, 'WebSphere Liberty', 8, '{''qid'': ''Q2536917'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q2536917''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (286, 'WebSphere Portal Server', 8, '{''qid'': ''Q4053022'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebSphere_Portal''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (287, 'Websphere Process Server', 8, '{''qid'': ''Q5969143'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Process_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (288, 'WebSphere Process Server', 8, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (289, 'Oracle Real-Time Decisions (RTD)', 8, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (290, 'CA API Gateway', 4, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (291, 'Citrix ADC SDX', 4, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (292, 'Citrix ADC MPX', 4, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (293, 'HP Nonstop', 4, '{''qid'': ''Q826798'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/NonStop_(server_computers)''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (294, 'IBM DataPower Gateway', 4, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (295, 'IBM Power Systems', 4, '{''qid'': ''Q2040857'', ''types'': [''Q10929058''], ''url'': ''http://dbpedia.org/resource/IBM_Power_Systems''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (296, 'Intel Xeon Processor', 4, '{''qid'': ''Q656154'', ''types'': [''Q431289'', ''Q12047070''], ''url'': ''http://dbpedia.org/resource/Xeon''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (297, 'Net Optics Taps', 4, '{''qid'': ''Q17114213'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Net_Optics''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (298, 'Oracle Exadata', 4, '{''qid'': ''Q4038419'', ''types'': [''Q68''], ''url'': ''http://dbpedia.org/resource/Oracle_Exadata''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (299, 'AutoIt', 9, '{''qid'': ''Q784845'', ''types'': [''Q187432'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/AutoIt''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (300, 'AWK', 9, '{''qid'': ''Q213970'', ''types'': [''Q1418502'', ''Q187432'', ''Q28919945'', ''Q18343316'', ''Q287472''], ''url'': ''http://dbpedia.org/resource/AWK''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (301, 'BASIC', 9, '{''qid'': ''Q42979'', ''types'': [''Q79872'', ''Q1418502'', ''Q28922854'', ''Q9143'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/BASIC''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (302, 'Brainscript', 9, '{}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (303, 'C', 9, '{''qid'': ''Q15777'', ''types'': [''Q28922885'', ''Q28920117'', ''Q9143'', ''Q21562092'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C_(programming_language)''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (304, 'C#', 9, '{''qid'': ''Q2370'', ''types'': [''Q9143'', ''Q12772052''], ''url'': ''http://dbpedia.org/resource/C_Sharp_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (305, 'C++', 9, '{''qid'': ''Q2407'', ''types'': [''Q28923026'', ''Q12772052'', ''Q28922885'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q5499621'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C++''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (306, 'C++|Visual C++', 9, '{''qid'': ''Q847296'', ''types'': [''Q13741'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_C++''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (307, 'Cascading Style Sheets (CSS)', 9, '{''qid'': ''Q46441'', ''types'': [''Q1029123''], ''url'': ''http://dbpedia.org/resource/Cascading_Style_Sheets''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (308, 'Clipper', 9, '{''qid'': ''Q834358'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Clipper_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (309, 'CLIST', 9, '{''qid'': ''Q579880'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/CLIST''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (310, 'COBOL', 9, '{''qid'': ''Q131140'', ''types'': [''Q9143'', ''Q28922885'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/COBOL''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (311, 'ColdFusion Markup Language (CFML)', 9, '{''qid'': ''Q2524362'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ColdFusion_Markup_Language''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (312, 'Data Language Interface (DL/I)', 9, '{''qid'': ''Q2299300'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Data_Language_Interface''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (313, 'Delphi', 9, '{''qid'': ''Q487378'', ''types'': [''Q9143'', ''Q218616'', ''Q13741''], ''url'': ''http://dbpedia.org/resource/Delphi_(programming_language)''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (314, 'Easytrieve', 9, '{''qid'': ''Q1278381'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Easytrieve''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (315, 'Expect', 9, '{''qid'': ''Q2642029'', ''types'': [''Q9143'', ''Q28937412'', ''Q4826135'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Expect''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (316, 'eXtensible HyperText Markup Language (XHTML)', 9, '{''qid'': ''Q166074'', ''types'': [''Q20155966'', ''Q317623'', ''Q37045''], ''url'': ''http://dbpedia.org/resource/XHTML''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (317, 'Extensible Markup Language (XML)', 9, '{''qid'': ''Q2115'', ''types'': [''Q82753'', ''Q37045'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/XML''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (318, 'Extensible Markup Language (XML)|MSXML', 9, '{''qid'': ''Q1133470'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/MSXML''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (319, 'Extensible Stylesheet Language (XSL)', 9, '{''qid'': ''Q32061'', ''types'': [''Q1029123'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/XSL''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (320, 'Extensible Stylesheet Language Transformations (XLST)', 9, '{''qid'': ''Q32110'', ''types'': [''Q2661442'', ''Q9143'', ''Q1144882'', ''Q3217190''], ''url'': ''http://dbpedia.org/resource/XSLT''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (321, 'FOCUS', 9, '{''qid'': ''Q5426833'', ''types'': [''Q238137''], ''url'': ''http://dbpedia.org/resource/FOCUS''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (322, 'Fortran', 9, '{''qid'': ''Q83303'', ''types'': [''Q28923026'', ''Q28922885'', ''Q899523'', ''Q28920117'', ''Q9143'', ''Q28920142'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Fortran''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (323, 'Go', 9, '{''qid'': ''Q37227'', ''types'': [''Q12772052'', ''Q28922885'', ''Q899523'', ''Q28920117'', ''Q9143'', ''Q28919943'', ''Q21562092'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/Go_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (324, 'GraphQL', 9, '{''qid'': ''Q25104949'', ''types'': [''Q557770'', ''Q9143'', ''Q60551191''], ''url'': ''http://dbpedia.org/resource/GraphQL''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (325, 'Groovy', 9, '{''qid'': ''Q16886826'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Skeevy''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (326, 'HiveQL', 9, '{}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (327, 'Hypertext Markup Language (HTML)', 9, '{''qid'': ''Q8811'', ''types'': [''Q2661442'', ''Q17537576'', ''Q37045'', ''Q235557'', ''Q20202982''], ''url'': ''http://dbpedia.org/resource/HTML''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (328, 'IBM High Level Assembler (HLASM)', 9, '{''qid'': ''Q4039976'', ''types'': [''Q6470767''], ''url'': ''http://dbpedia.org/resource/IBM_High_Level_Assembler''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (329, 'IBM i Control Language (CL)', 9, '{''qid'': ''Q263490'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/IBM_i_Control_Language''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (330, 'IBM Informix-4GL', 9, '{''qid'': ''Q2816938'', ''types'': [''Q9143'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/IBM_Informix-4GL''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (331, 'Java', 9, '{''qid'': ''Q251'', ''types'': [''Q12772052'', ''Q56062429'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Java_(programming_language)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (332, 'Java|Extensible Stylesheet Language (XSL)', 9, '{''qid'': ''Q32061'', ''types'': [''Q1029123'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/XSL''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (333, 'Java|Java Enterprise Edition (Java EE)', 9, '{''qid'': ''Q193247'', ''types'': [''Q1330336'', ''Q27493'', ''Q241317''], ''url'': ''http://dbpedia.org/resource/Java_Platform,_Enterprise_Edition''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (334, 'Java|Java Standard Edition (Java SE)', 9, '{''qid'': ''Q747478'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Java_Platform,_Standard_Edition''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (335, 'Java|JavaServer Pages (JSP)', 9, '{''qid'': ''Q183169'', ''types'': [''Q351507'', ''Q20819677'', ''Q1650567'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/JavaServer_Pages''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (336, 'Java|JavaServer Pages (JSP)|Scriptlets', 9, '{''qid'': ''Q3476475'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Scriptlet''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (337, 'JavaScript', 9, '{''qid'': ''Q2005'', ''types'': [''Q241317'', ''Q12772052'', ''Q3839507'', ''Q187432'', ''Q9143'', ''Q28920810'', ''Q21562092'', ''Q28920813'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/JavaScript''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (338, 'JCL', 9, '{''qid'': ''Q1505372'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Job_Control_Language''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (339, 'Job Information Language (JIL)', 9, '{}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (340, 'JScript', 9, '{''qid'': ''Q553514'', ''types'': [''Q4117406''], ''url'': ''http://dbpedia.org/resource/JScript''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (341, 'Lisp', 9, '{''qid'': ''Q132874'', ''types'': [''Q12772052'', ''Q28922885'', ''Q3839507'', ''Q28922887'', ''Q28922893'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Lisp_(programming_language)''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (342, 'Niakwa Programming Language (NPL)', 9, '{''qid'': ''Q6955040'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/NPL_(programming_language)''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (343, 'Objective C', 9, '{''qid'': ''Q188531'', ''types'': [''Q12772052'', ''Q28922858'', ''Q899523'', ''Q9143'', ''Q28922893''], ''url'': ''http://dbpedia.org/resource/Objective-C''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (344, 'OpenEdge ABL', 9, '{''qid'': ''Q1963461'', ''types'': [''Q899523'', ''Q9143'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/OpenEdge_Advanced_Business_Language''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (345, 'Pascal', 9, '{''qid'': ''Q81571'', ''types'': [''Q9143'', ''Q21562092'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Pascal_(programming_language)''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (346, 'Pascal|Object Pascal', 9, '{''qid'': ''Q633894'', ''types'': [''Q12772052'', ''Q9143'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/Object_Pascal''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (347, 'Perl', 9, '{''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (348, 'Perl|ActivePerl', 9, '{''qid'': ''Q4033363'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ActivePerl''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (349, 'Perl|Rex', 9, '{''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (350, 'PHP', 9, '{''qid'': ''Q59'', ''types'': [''Q1993334''], ''url'': ''http://dbpedia.org/resource/PHP''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (351, 'PL/I', 9, '{''qid'': ''Q223433'', ''types'': [''Q9143'', ''Q28922885''], ''url'': ''http://dbpedia.org/resource/PL/I''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (352, 'PL/SQL', 9, '{''qid'': ''Q41574'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/PL/SQL''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (353, 'PRO*C', 9, '{''qid'': ''Q2111340'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Pro*C''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (354, 'Python', 9, '{''qid'': ''Q28865'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Python_(programming_language)''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (355, 'R', 9, '{''qid'': ''Q206904'', ''types'': [''Q9143'', ''Q1004415''], ''url'': ''http://dbpedia.org/resource/R_(programming_language)''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (356, 'Rexx', 9, '{''qid'': ''Q685820'', ''types'': [''Q9143'', ''Q28937412'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Rexx''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (357, 'RPG', 9, '{''qid'': ''Q840543'', ''types'': [''Q9143'', ''Q28922885''], ''url'': ''http://dbpedia.org/resource/IBM_RPG''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (358, 'Ruby', 9, '{''qid'': ''Q161053'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Ruby_(programming_language)''}', 'N', 'Y', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (359, 'Salesforce Object Query Language (SOQL)', 9, '{}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (360, 'SAS', 9, '{''qid'': ''Q2003932'', ''types'': [''Q9143'', ''Q13199995'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/SAS_(software)''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (361, 'Sass', 9, '{''qid'': ''Q1572865'', ''types'': [''Q9143'', ''Q1029123'', ''Q50843083'', ''Q918333''], ''url'': ''http://dbpedia.org/resource/Sass_(stylesheet_language)''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (362, 'Scala', 9, '{''qid'': ''Q460584'', ''types'': [''Q12772052'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q56062429''], ''url'': ''http://dbpedia.org/resource/Scala_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (363, 'Smalltalk', 9, '{''qid'': ''Q235086'', ''types'': [''Q9143'', ''Q28922858'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/Smalltalk''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (364, 'Swift', 9, '{''qid'': ''Q17118377'', ''types'': [''Q12772052'', ''Q28923023'', ''Q3839507'', ''Q899523'', ''Q341'', ''Q9143'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Swift_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (365, 'TCL', 9, '{''qid'': ''Q5288'', ''types'': [''Q12772052'', ''Q28922885'', ''Q899523'', ''Q187432'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Tcl''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (366, 'Transact-SQL', 9, '{''qid'': ''Q1411245'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Transact-SQL''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (367, 'TypeScript', 9, '{''qid'': ''Q978185'', ''types'': [''Q9143'', ''Q341''], ''url'': ''http://dbpedia.org/resource/TypeScript''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (368, 'VB.NET', 9, '{''qid'': ''Q50077'', ''types'': [''Q2378'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_Basic_.NET''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (369, 'VBScript', 9, '{''qid'': ''Q13743'', ''types'': [''Q187432'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/VBScript''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (370, 'Visual Basic', 9, '{''qid'': ''Q2378'', ''types'': [''Q28922885'', ''Q899523'', ''Q9143'', ''Q42979'', ''Q28920813''], ''url'': ''http://dbpedia.org/resource/Visual_Basic''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (371, 'Visual Basic for Applications (VBA)', 9, '{''qid'': ''Q667566'', ''types'': [''Q2378'', ''Q9143'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_Basic_for_Applications''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (372, 'Visual FoxPro', 9, '{''qid'': ''Q753868'', ''types'': [''Q9143'', ''Q28922885'', ''Q899523'', ''Q13741''], ''url'': ''http://dbpedia.org/resource/Visual_FoxPro''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (373, 'VoiceXML', 9, '{''qid'': ''Q776038'', ''types'': [''Q20155966''], ''url'': ''http://dbpedia.org/resource/VoiceXML''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (374, 'Xbase++', 9, '{''qid'': ''Q1753410'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/XBase++''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (375, 'Apache Lucene', 12, '{''qid'': ''Q773196'', ''types'': [''Q188860'', ''Q19541'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Lucene''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (376, 'Apache Xerces', 12, '{''qid'': ''Q629740'', ''types'': [''Q188860'', ''Q1130645''], ''url'': ''http://dbpedia.org/resource/Xerces''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (377, 'Cascading Style Sheets (CSS)|Bootstrap', 12, '{''qid'': ''Q1195936'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Bootstrapping''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (378, 'Java|Apache Camel', 12, '{''qid'': ''Q616626'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_Camel''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (379, 'Java|Apache Commons BeanUtils', 12, '{''qid'': ''Q28916245'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q28916245''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (380, 'Java|Apache PDFBox', 12, '{''qid'': ''Q17512395'', ''types'': [''Q21127166'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_PDFBox''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (381, 'Java|Apache Velocity', 12, '{''qid'': ''Q617156'', ''types'': [''Q351507'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Apache_Velocity''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (382, 'Java|EclipseLink', 12, '{''qid'': ''Q897058'', ''types'': [''Q506883''], ''url'': ''http://dbpedia.org/resource/EclipseLink''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (383, 'Java|Enterprise JavaBeans (EJB)', 12, '{''qid'': ''Q742961'', ''types'': [''Q20819677'', ''Q609588''], ''url'': ''http://dbpedia.org/resource/Enterprise_JavaBeans''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (384, 'Java|EZMorph', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (385, 'Java|Google Web Toolkit (GWT)', 12, '{''qid'': ''Q79578'', ''types'': [''Q2533324'', ''Q1193246'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Google_Web_Toolkit''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (386, 'Java|Hibernate', 12, '{''qid'': ''Q747866'', ''types'': [''Q1172354'', ''Q7170392'', ''Q58748'', ''Q5227234'', ''Q341'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Hibernate_(framework)''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (387, 'Java|IBM SDK', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (388, 'Java|Java Development Kit (JDK)', 12, '{''qid'': ''Q741303'', ''types'': [''Q467707''], ''url'': ''http://dbpedia.org/resource/Java_Development_Kit''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (389, 'Java|Java Message Service (JMS)', 12, '{''qid'': ''Q755515'', ''types'': [''Q20819677'', ''Q1092177''], ''url'': ''http://dbpedia.org/resource/Java_Message_Service''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (390, 'Java|Java Web Start', 12, '{''qid'': ''Q33079'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Java_Web_Start''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (391, 'Java|JavaServer Faces (JSF)', 12, '{''qid'': ''Q729427'', ''types'': [''Q1330336'', ''Q20819677''], ''url'': ''http://dbpedia.org/resource/JavaServer_Faces''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (392, 'Java|JDBC', 12, '{''qid'': ''Q722772'', ''types'': [''Q1172354'', ''Q165194'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/Java_Database_Connectivity''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (393, 'Java|JRuby Core', 12, '{''qid'': ''Q605718'', ''types'': [], ''url'': ''http://dbpedia.org/resource/JRuby''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (394, 'Java|Log4j', 12, '{''qid'': ''Q286923'', ''types'': [''Q22003134''], ''url'': ''http://dbpedia.org/resource/Log4j''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (395, 'Java|Quartz', 12, '{''qid'': ''Q2122405'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Quartz_(scheduler)''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (396, 'Java|Remote Method Invocation (RMI)', 12, '{''qid'': ''Q61902'', ''types'': [''Q1799072''], ''url'': ''http://dbpedia.org/resource/Java_remote_method_invocation''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (397, 'Java|Servlet', 12, '{''qid'': ''Q341'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Free_software''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (398, 'Java|Spring', 12, '{''qid'': ''Q720314'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q720314''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (399, 'Java|Spring|Spring Boot', 12, '{''qid'': ''Q98731994'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q98731994''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (400, 'Java|Spring|Spring Cloud Data Flow', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (401, 'Java|Spring|Spring MVC', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (402, 'Java|Struts', 12, '{''qid'': ''Q900957'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Apache_Struts_1''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (403, 'Java|Swing', 12, '{''qid'': ''Q859221'', ''types'': [''Q21127166''], ''url'': ''http://dbpedia.org/resource/Swing_(Java)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (404, 'Java|Vaadin', 12, '{''qid'': ''Q1400683'', ''types'': [''Q1330336'', ''Q386275'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Vaadin''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (405, 'JavaScript|AJAX', 12, '{''qid'': ''Q134471'', ''types'': [''Q9143'', ''Q918270'', ''Q101244''], ''url'': ''http://dbpedia.org/resource/Ajax_(programming)''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (406, 'JavaScript|AngularJS', 12, '{''qid'': ''Q2849803'', ''types'': [''Q188860'', ''Q783866'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/AngularJS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (407, 'JavaScript|Draw2D', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (408, 'JavaScript|Express.js', 12, '{''qid'': ''Q16878131'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Express.js''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (409, 'JavaScript|Ext JS', 12, '{''qid'': ''Q515393'', ''types'': [''Q1193246'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/Ext_JS''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (410, 'JavaScript|jqGrid', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (411, 'JavaScript|JQuery', 12, '{''qid'': ''Q230036'', ''types'': [''Q170584'', ''Q188860'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/JQuery''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (412, 'JavaScript|Jquery|jQuery UI', 12, '{''qid'': ''Q285960'', ''types'': [], ''url'': ''http://dbpedia.org/resource/JQuery_UI''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (413, 'JavaScript|React', 12, '{''qid'': ''Q19399674'', ''types'': [''Q1330336'', ''Q783866'', ''Q341''], ''url'': ''http://dbpedia.org/resource/React_(JavaScript_library)''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (414, 'JavaScript|script.aculo.us', 12, '{''qid'': ''Q309509'', ''types'': [''Q188860'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/Script.aculo.us''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (415, 'JavaScript|Valums AJAX File Uploader', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (416, 'OWASP Enterprise Security API (ESAPI)', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (417, 'Perl|Oraperl', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (418, 'Android', 6, '{''qid'': ''Q94'', ''types'': [''Q920890''], ''url'': ''http://dbpedia.org/resource/Android_(operating_system)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (419, 'BeOS', 6, '{''qid'': ''Q62563'', ''types'': [''Q218616'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/BeOS''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (420, 'Cisco IOS', 6, '{''qid'': ''Q753576'', ''types'': [''Q282080''], ''url'': ''http://dbpedia.org/resource/Cisco_IOS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (421, 'DART', 6, '{''qid'': ''Q406009'', ''types'': [''Q1330336'', ''Q12772052'', ''Q899523'', ''Q3839507'', ''Q187432'', ''Q28922893'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Dart_(programming_language)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (422, 'Fabric OS', 6, '{''qid'': ''Q5428124'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Fabric_OS''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (423, 'GNU', 6, '{''qid'': ''Q44571'', ''types'': [''Q9135'', ''Q11368''], ''url'': ''http://dbpedia.org/resource/GNU''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (424, 'IBM i', 6, '{''qid'': ''Q15637561'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/IBM_i''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (425, 'iOS', 6, '{''qid'': ''Q48493'', ''types'': [''Q920890'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/IOS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (426, 'Linux', 6, '{''qid'': ''Q388'', ''types'': [''Q14656'', ''Q16889133'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Linux''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (427, 'Linux|CentOS', 6, '{''qid'': ''Q207542'', ''types'': [''Q131669'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/CentOS''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (428, 'Linux|Check Point', 6, '{''qid'': ''Q751519'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q751519''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (429, 'Linux|Debian', 6, '{''qid'': ''Q7715973'', ''types'': [''Q20983788'', ''Q3251801''], ''url'': ''http://dbpedia.org/resource/Debian''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (430, 'Linux|Junos OS', 6, '{''qid'': ''Q4041744'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Junos_OS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (431, 'Linux|openSUSE', 6, '{''qid'': ''Q16691'', ''types'': [''Q131669'', ''Q388'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/OpenSUSE''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (432, 'Linux|Oracle Linux', 6, '{''qid'': ''Q46094'', ''types'': [''Q131669'', ''Q977076''], ''url'': ''http://dbpedia.org/resource/Oracle_Linux''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (433, 'Linux|Photon OS', 6, '{''qid'': ''Q105703682'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105703682''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (434, 'Linux|Red Hat Enterprise Linux', 6, '{''qid'': ''Q215273'', ''types'': [''Q9135'', ''Q131669''], ''url'': ''http://dbpedia.org/resource/Red_Hat_Enterprise_Linux''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (435, 'Linux|SUSE Linux Enterprise Server', 6, '{''qid'': ''Q1759786'', ''types'': [''Q131669''], ''url'': ''http://dbpedia.org/resource/SUSE_Linux_Enterprise_Server''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (436, 'Linux|Ubuntu', 6, '{''qid'': ''Q381'', ''types'': [''Q131669'', ''Q5276054'', ''Q20983788'', ''Q3251801''], ''url'': ''http://dbpedia.org/resource/Ubuntu_(operating_system)''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (437, 'Linux|zLinux', 6, '{''qid'': ''Q136277'', ''types'': [''Q388''], ''url'': ''http://dbpedia.org/resource/Linux_on_z_Systems''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (438, 'macOS', 6, '{''qid'': ''Q14116'', ''types'': [''Q43627'', ''Q218616'', ''Q811701'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/MacOS''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (439, 'MVS', 6, '{''qid'': ''Q781443'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/MVS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (440, 'MVS|OS/390', 6, '{''qid'': ''Q1726891'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/OS/390''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (441, 'MVS|z/OS', 6, '{''qid'': ''Q283705'', ''types'': [''Q14656''], ''url'': ''http://dbpedia.org/resource/Z/OS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (442, 'OpenVMS', 6, '{''qid'': ''Q479882'', ''types'': [''Q9135'', ''Q218616'', ''Q3496042''], ''url'': ''http://dbpedia.org/resource/OpenVMS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (443, 'OS/2', 6, '{''qid'': ''Q189794'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/OS/2''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (444, 'Unix', 6, '{''qid'': ''Q11368'', ''types'': [''Q170584'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/Unix''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (445, 'Unix|AIX', 6, '{''qid'': ''Q269856'', ''types'': [''Q218616'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/IBM_AIX''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (446, 'Unix|BSD', 6, '{''qid'': ''Q34264'', ''types'': [''Q11368''], ''url'': ''http://dbpedia.org/resource/Berkeley_Software_Distribution''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (447, 'Unix|BSD|FreeBSD', 6, '{''qid'': ''Q34236'', ''types'': [], ''url'': ''http://dbpedia.org/resource/FreeBSD''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (448, 'Unix|BSD|SunOS', 6, '{''qid'': ''Q1208460'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/SunOS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (449, 'Unix|HP-UX', 6, '{''qid'': ''Q847593'', ''types'': [''Q14656''], ''url'': ''http://dbpedia.org/resource/HP-UX''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (450, 'Windows', 6, '{''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (451, 'Windows|Windows Desktop', 6, '{''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (452, 'Windows|Windows Server', 6, '{''qid'': ''Q11219'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Windows_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (453, 'Linux|Fedora', 6, '{''qid'': ''Q48267'', ''types'': [''Q131669'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/Fedora_(operating_system)''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (454, 'Linux|Amazon Linux', 6, '{''qid'': ''Q68223191'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q68223191''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (455, 'Clarify|Clear Basic', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (456, 'Eclipse|ATLAS Transformation Language (ATL)', 5, '{''qid'': ''Q667812'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ATLAS_Transformation_Language''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (457, 'IBM BigFix Platform|Client Deploy Tool', 5, '{''qid'': ''Q1420900'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Microsoft_Deployment_Toolkit''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (458, 'IBM Integration Bus|Extended Structured Query Language (ESQL)', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (459, 'IBM Tivoli Asset Management|Asset Discovery for Distributed', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (460, 'IBM Tivoli Storage Manager|TSM API', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (461, 'IBM Tivoli Storage Manager|TSM Client', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (462, 'IBM Tivoli Storage Manager|TSM Storage Agent', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (463, 'IBM Tivoli Storage Manager|VSS Requestor', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (464, 'Microsoft Exchange Server|Veeam Explorer', 5, '{''qid'': ''Q22096414'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q22096414''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (465, 'MS SQL Server|MS SQL Server Browser', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (466, 'MS SQL Server|Data Transformation Services', 5, '{''qid'': ''Q644775'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Data_Transformation_Services''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (467, 'MS SQL Server|Log Reader Agent', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (468, 'MS SQL Server|SQL Server Analysis Services (SSAS)', 5, '{''qid'': ''Q2067216'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_Analysis_Services''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (469, 'MS SQL Server|SQL Server Database Engine', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (470, 'MS SQL Server|SQL Server Integration Services (SSIS)', 5, '{''qid'': ''Q1231051'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Integration_Services''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (471, 'MS SQL Server|SQL Server Management Studio', 5, '{''qid'': ''Q4048883'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Management_Studio''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (472, 'MS SQL Server|SQL Server Report Builder', 5, '{''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (473, 'MS SQL Server|SQL Server Reporting Services (SSRS)', 5, '{''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (474, 'Oracle Database|Jserver', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (475, 'Oracle Database|Oracle Spatial and Graph', 5, '{''qid'': ''Q3508244'', ''types'': [''Q7397'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Oracle_Spatial_and_Graph''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (476, 'SAP ERP|SAP EHP', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (477, 'SAP ERP|SAP Kernel', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (478, 'Oracle Database|SQL*Plus', 5, '{''qid'': ''Q2575010'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL*Plus''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (479, 'Sybase SQL Server|Sybase Central', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (480, 'Sybase SQL Server|Sybase Dsedit', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (481, 'TIBCO Business Works (BW)|Integration Manager', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (482, '.NET Framework|Common Runtime Library', 7, '{''qid'': ''Q1444922'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Runtime_library''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (483, '.NET Framework|log4net', 7, '{''qid'': ''Q7884429'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q7884429''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (484, '.NET Framework|Magick.NET', 7, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (485, '.NET Framework|Windows Communication Foundation (WCF)', 7, '{''qid'': ''Q261595'', ''types'': [''Q40056'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Communication_Foundation''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (486, '.NET Framework|Windows Workflow Foundation (WF)', 7, '{''qid'': ''Q1154450'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Workflow_Foundation''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (487, '.NET Framework|WinForms', 7, '{''qid'': ''Q613361'', ''types'': [''Q1193246'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Forms''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (488, 'ActiveX|ADO', 7, '{''qid'': ''Q344005'', ''types'': [''Q165194''], ''url'': ''http://dbpedia.org/resource/ActiveX_Data_Objects''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (489, 'IIS|Easy Migration Tool (IEMT)', 7, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (490, 'IIS|Application Request Routing (ARR)', 7, '{''qid'': ''Q16987674'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Application_Request_Routing''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (491, 'IIS|IIS Manager', 7, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (492, 'JBoss|JBoss Seam', 7, '{''qid'': ''Q923560'', ''types'': [''Q1330336'', ''Q341''], ''url'': ''http://dbpedia.org/resource/JBoss_Seam''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (493, 'JBoss|Wildfly', 7, '{''qid'': ''Q68850'', ''types'': [''Q71550'', ''Q341''], ''url'': ''http://dbpedia.org/resource/WildFly''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (494, 'Oracle Application Server|Oracle Transparent Gateway', 7, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (495, 'Oracle WebCenter Content Server|Idoc Script', 7, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (496, 'SAP NetWeaver App Server|ABAP', 7, '{''qid'': ''Q380523'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ABAP''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (497, '.NET Framework', 10, '{''qid'': ''Q5289'', ''types'': [''Q241317'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/.NET_Framework''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (498, 'Active Directory (AD)', 10, '{''qid'': ''Q55692'', ''types'': [''Q756230''], ''url'': ''http://dbpedia.org/resource/Active_Directory''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (499, 'Active Server Pages (ASP)', 10, '{''qid'': ''Q344266'', ''types'': [''Q1330336'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Active_Server_Pages''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (500, 'ActiveX', 10, '{''qid'': ''Q302022'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/ActiveX''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (501, 'Apache Cordova', 10, '{''qid'': ''Q16626338'', ''types'': [''Q6934955''], ''url'': ''http://dbpedia.org/resource/Apache_Cordova''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (502, 'CICS', 10, '{''qid'': ''Q1146247'', ''types'': [''Q9143'', ''Q4388320''], ''url'': ''http://dbpedia.org/resource/CICS''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (503, 'Docker', 10, '{''qid'': ''Q15206305'', ''types'': [''Q167772'', ''Q7935198'', ''Q506883''], ''url'': ''http://dbpedia.org/resource/Docker_(software)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (504, 'Flash', 10, '{''qid'': ''Q165658'', ''types'': [''Q1155404'', ''Q241317'', ''Q2622299'', ''Q166142''], ''url'': ''http://dbpedia.org/resource/Adobe_Flash''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (505, 'HTTP File Server', 10, '{''qid'': ''Q1566096'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/HTTP_File_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (506, 'Java Runtime Environment (JRE)', 10, '{''qid'': ''Q1504505'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q1504505''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (507, 'Node.js', 10, '{''qid'': ''Q756100'', ''types'': [''Q28920813''], ''url'': ''http://dbpedia.org/resource/Node.js''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (508, 'Ruby on Rails', 10, '{''qid'': ''Q190478'', ''types'': [''Q1330336'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Ruby_on_Rails''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (509, 'VisualForce', 10, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (510, 'EMC Celerra', 11, '{''qid'': ''Q5057823'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Celerra''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (511, 'Application Lifecycle Management (ALM)', 1, '{''qid'': ''Q621590'', ''types'': [''Q1780667''], ''url'': ''http://dbpedia.org/resource/Application_lifecycle_management''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (512, 'Assembler Language', 1, '{''qid'': ''Q165436'', ''types'': [''Q28922854'', ''Q9143'', ''Q558937''], ''url'': ''http://dbpedia.org/resource/Assembly_language''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (513, 'Batch Management Software (BMS)', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (514, 'Business Object Reports', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (515, 'Common Gateway Interface (CGI)', 1, '{''qid'': ''Q264364'', ''types'': [''Q11016'', ''Q132364''], ''url'': ''http://dbpedia.org/resource/Common_Gateway_Interface''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (516, 'Compopent Object Model (COM)', 1, '{''qid'': ''Q662200'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Component_Object_Model''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (517, 'Common Object Request Broker Architecture (CORBA)', 1, '{''qid'': ''Q691593'', ''types'': [''Q317623''], ''url'': ''http://dbpedia.org/resource/Common_Object_Request_Broker_Architecture''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (518, 'CORBA Interface Definition Language (CORBA IDL)', 1, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (519, 'Data Control Language (DCL)', 1, '{''qid'': ''Q604737'', ''types'': [''Q41591651''], ''url'': ''http://dbpedia.org/resource/Data_control_language''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (520, 'Database (DB)', 1, '{''qid'': ''Q8513'', ''types'': [''Q15401930'', ''Q386724'', ''Q28813620''], ''url'': ''http://dbpedia.org/resource/Database''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (521, 'Electronic Data Interchange (EDI)', 1, '{''qid'': ''Q690189'', ''types'': [''Q2989673''], ''url'': ''http://dbpedia.org/resource/Electronic_data_interchange''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (522, 'Application Web Server', 1, '{''qid'': ''Q11288'', ''types'': [''Q1371279'', ''Q4485156'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Web_server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (523, 'Java-based Document Object Model for XML (JDOM)', 1, '{''qid'': ''Q359595'', ''types'': [''Q341'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/JDOM''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (524, 'Lightweight Directory Access Protocol (LDAP)', 1, '{''qid'': ''Q188816'', ''types'': [''Q756230'', ''Q15836568''], ''url'': ''http://dbpedia.org/resource/Lightweight_Directory_Access_Protocol''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (525, 'Open Database Connectivity (ODBC)', 1, '{''qid'': ''Q212606'', ''types'': [''Q165194'', ''Q1172367''], ''url'': ''http://dbpedia.org/resource/Open_Database_Connectivity''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (526, 'Order Management System (OMS)', 1, '{''qid'': ''Q7100437'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Order_management_system''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (527, 'Oracle Web Services', 1, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (528, 'Reporting Services', 1, '{''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (529, 'Representational State Transfer (REST)', 1, '{''qid'': ''Q749568'', ''types'': [''Q220644''], ''url'': ''http://dbpedia.org/resource/Representational_state_transfer''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (530, 'Service-Oriented Architecture (SOA)', 1, '{''qid'': ''Q220644'', ''types'': [''Q846636''], ''url'': ''http://dbpedia.org/resource/Service-oriented_architecture''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (531, 'Simple Object Access Protocol (SOAP)', 1, '{''qid'': ''Q189620'', ''types'': [''Q15836568''], ''url'': ''http://dbpedia.org/resource/SOAP''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (532, 'SQL', 9, '{''qid'': ''Q47607'', ''types'': [''Q9143'', ''Q1144882'', ''Q845739'', ''Q691358''], ''url'': ''http://dbpedia.org/resource/SQL''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (533, 'YAML', 1, '{''qid'': ''Q281876'', ''types'': [''Q37045'', ''Q50843083'', ''Q235557'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/YAML''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (534, 'Model-view-controller (MVC)', 1, '{''qid'': ''Q44860'', ''types'': [''Q635346'', ''Q181156''], ''url'': ''http://dbpedia.org/resource/Modelûviewûcontroller''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (535, 'Application Server', 1, '{''qid'': ''Q71550'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/Application_server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (536, 'Cloud', 1, '{''qid'': ''Q483639'', ''types'': [''Q771906'', ''Q241317''], ''url'': ''http://dbpedia.org/resource/Cloud_computing''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (537, 'Competency and Quality Assurance Server', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (538, 'Device Provisioning Engines (DPE)', 1, '{''qid'': ''Q5318925'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Dynamic_provisioning_environment''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (539, 'E-business solution', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (540, 'Enterprise Service Bus(ESB)', 1, '{''qid'': ''Q1061460'', ''types'': [''Q146923''], ''url'': ''http://dbpedia.org/resource/Enterprise_service_bus''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (541, 'File Server', 1, '{''qid'': ''Q513349'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/File_server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (542, 'General Ledger', 1, '{''qid'': ''Q1977520'', ''types'': [''Q3831821'', ''Q4116214''], ''url'': ''http://dbpedia.org/resource/General_ledger''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (543, 'HTTP client', 1, '{''qid'': ''Q2979024'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q2979024''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (544, 'HTTP Server', 1, '{''qid'': ''Q11288'', ''types'': [''Q1371279'', ''Q4485156'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Web_server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (545, 'Integrated Safe System of Work (ISSOW)', 1, '{''qid'': ''Q5974495'', ''types'': [''Q317623''], ''url'': ''http://dbpedia.org/resource/ISSOW''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (546, 'Internet Exchange Point - Full Stack (ixp-ft)', 1, '{''qid'': ''Q1433061'', ''types'': [''Q173106'', ''Q1293220''], ''url'': ''http://dbpedia.org/resource/Internet_exchange_point''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (547, 'Internet Message Access Protocol (IMAP)', 1, '{''qid'': ''Q166936'', ''types'': [''Q16935517'', ''Q15836568''], ''url'': ''http://dbpedia.org/resource/Internet_Message_Access_Protocol''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (548, 'JSON', 1, '{''qid'': ''Q2063'', ''types'': [''Q681263'', ''Q235557'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/JSON''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (549, 'KVS Application Server', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (550, 'KVS File Server', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (551, 'KVS Proxy Server', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (552, 'mainframe', 1, '{''qid'': ''Q177234'', ''types'': [''Q64729893''], ''url'': ''http://dbpedia.org/resource/Mainframe_computer''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (553, 'Manufacturing Execution System (MES)', 1, '{''qid'': ''Q1404943'', ''types'': [''Q489371''], ''url'': ''http://dbpedia.org/resource/Manufacturing_execution_system''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (554, 'Mobile', 1, '{''qid'': ''Q2738570'', ''types'': [''Q179310''], ''url'': ''http://dbpedia.org/resource/Mobile_computing''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (555, 'NonSQL', 1, '{''qid'': ''Q5999165'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q5999165''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (556, 'SaaS', 1, '{''qid'': ''Q1254596'', ''types'': [''Q8187769'', ''Q25036597'', ''Q17155032'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/Software_as_a_service''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (557, 'Storage Area Network (SAN)', 1, '{''qid'': ''Q237576'', ''types'': [''Q15141646'', ''Q994895'', ''Q1301371''], ''url'': ''http://dbpedia.org/resource/Storage_area_network''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (558, 'Supplier Registration System Application Server', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (559, 'Virtual Appliance', 1, '{''qid'': ''Q752708'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Virtual_appliance''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (560, 'Webtop', 1, '{''qid'': ''Q1780763'', ''types'': [''Q1668024''], ''url'': ''http://dbpedia.org/resource/Web_desktop''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (561, 'Proxy Server', 1, '{''qid'': ''Q11189'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/Proxy_server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (562, 'Utility', 1, '{''qid'': ''Q312466'', ''types'': [''Q40056'', ''Q676202'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Utility_software''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (563, 'Citrix ADC', 3, '{''qid'': ''Q12040775'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q12040775''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (564, 'Citrix ADC VPX', 3, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (565, 'Citrix ADC BLX', 3, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (566, 'InterScan Messaging Security Virtual Appliance (IMSVA)', 3, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (567, 'Oracle VM', 3, '{''qid'': ''Q10852040'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Oracle_VM_Server_for_x86''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (568, 'VMware ESXi', 3, '{''qid'': ''Q179116'', ''types'': [''Q1077480'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/VMware_ESXi''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (569, 'VMware Server', 3, '{''qid'': ''Q4007037'', ''types'': [''Q1077480''], ''url'': ''http://dbpedia.org/resource/VMware_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (570, 'IBM WebSphere Transformation Extender (WTX)', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (571, 'Oracle Retail Point-of-Service', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (572, 'Structured Query Language (SQL)', 1, '{''qid'': ''Q47607'', ''types'': [''Q9143'', ''Q1144882'', ''Q845739'', ''Q691358''], ''url'': ''http://dbpedia.org/resource/SQL''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (573, 'TSO/ISPF', 2, '{''qid'': ''Q679906'', ''types'': [''Q131212''], ''url'': ''http://dbpedia.org/resource/ISPF''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (574, 'Model view controller (MVC)', 1, '{''qid'': ''Q44860'', ''types'': [''Q635346'', ''Q181156''], ''url'': ''http://dbpedia.org/resource/Modelûviewûcontroller''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (575, '|*', 6, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (576, 'Linux|*', 6, '{''qid'': ''Q388'', ''types'': [''Q14656'', ''Q16889133'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Linux''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (577, 'MVS|*', 6, '{''qid'': ''Q781443'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/MVS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (578, 'Unix|*', 6, '{''qid'': ''Q11368'', ''types'': [''Q170584'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/Unix''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (579, 'Unix|BSD|*', 6, '{''qid'': ''Q34264'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34264''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (580, 'Windows|*', 6, '{''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (581, 'MS SQL Server|*', 2, '{''qid'': ''Q215819'', ''types'': [''Q218616'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_SQL_Server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (582, 'C#|*', 9, '{''qid'': ''Q2370'', ''types'': [''Q9143'', ''Q12772052''], ''url'': ''http://dbpedia.org/resource/C_Sharp_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (583, 'C++|*', 9, '{''qid'': ''Q2407'', ''types'': [''Q28923026'', ''Q12772052'', ''Q28922885'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q5499621'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C++''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (584, 'Java|*', 9, '{''qid'': ''Q251'', ''types'': [''Q12772052'', ''Q56062429'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Java_(programming_language)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (585, 'Perl|*', 9, '{''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (586, 'PHP|*', 9, '{}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (587, 'Python|*', 9, '{''qid'': ''Q28865'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Python_(programming_language)''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (588, 'Ruby|*', 9, '{}', 'N', 'Y', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (589, 'JavaScript|*', 9, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (590, 'Unix|BSD|OpenBSD', 6, '{''qid'': ''Q34215'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34215''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (591, 'z/VSE', 6, '{''qid'': ''Q289345'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/VSE_(operating_system)''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (592, 'Active Server Pages (ASP)|*', 9, '{''qid'': ''Q344266'', ''types'': [''Q1330336'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Active_Server_Pages''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (593, 'MS-DOS', 6, '{''qid'': ''Q47604'', ''types'': [''Q9135'', ''Q241317'', ''Q170434''], ''url'': ''http://dbpedia.org/resource/MS-DOS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (594, 'COBOL|*', 9, '{''qid'': ''Q131140'', ''types'': [''Q9143'', ''Q28922885'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/COBOL''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (595, 'VME', 6, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (596, 'Extensible Markup Language (XML)|*', 9, '{''qid'': ''Q2115'', ''types'': [''Q82753'', ''Q37045'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/XML''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (597, 'DOS/360', 6, '{''qid'': ''Q3487917'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/DOS/360_and_successors''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (598, 'z/TPF', 6, '{''qid'': ''Q1426122'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Transaction_Processing_Facility''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (599, 'Pascal|*', 9, '{''qid'': ''Q81571'', ''types'': [''Q9143'', ''Q21562092'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Pascal_(programming_language)''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (600, 'Oracle WebLogic Server|*', 8, '{''qid'': ''Q83589'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_WebLogic_Server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (601, 'Websphere ILOG JRules BRMS', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (602, 'Unix|BSD|NetBSD', 6, '{''qid'': ''Q34225'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34225''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (603, 'SharePoint|*', 2, '{''qid'': ''Q18833'', ''types'': [''Q1371279'', ''Q1344636'', ''Q131093'', ''Q831677'', ''Q615985''], ''url'': ''http://dbpedia.org/resource/SharePoint''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (604, 'IBM Tivoli Storage Manager|*', 2, '{''qid'': ''Q2001900'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Storage_Manager''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (605, 'IBM Spectrum Scale|*', 2, '{''qid'': ''Q2389927'', ''types'': [''Q174989'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_General_Parallel_File_System''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (606, 'IBM Tivoli Asset Management|*', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (607, 'Oracle Hyperion|*', 2, '{''qid'': ''Q1431991'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Oracle_Hyperion''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (608, 'z/VM', 6, '{''qid'': ''Q1399696'', ''types'': [''Q9135'', ''Q1077480''], ''url'': ''http://dbpedia.org/resource/Z/VM''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (609, 'IIS|*', 8, '{''qid'': ''Q11341'', ''types'': [''Q218616'', ''Q18287040''], ''url'': ''http://dbpedia.org/resource/Internet_Information_Services''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (610, 'Oracle Application Server|*', 8, '{''qid'': ''Q2027912'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (611, 'instana', 10, '{''qid'': ''Q107383927'', ''url'': ''https://www.wikidata.org/wiki/Q107383927''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (612, 'credstash', 2, '{''qid'': ''Q107384165'', ''url'': ''https://www.wikidata.org/wiki/Q107384165''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (613, 'Snyk', 2, '{''qid'': ''Q108282404'', ''url'': ''https://www.wikidata.org/wiki/Q108282404''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (614, 'Akka', 2, '{''qid'': ''Q16002307'', ''url'': ''https://www.wikidata.org/wiki/Q16002307''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (615, 'Varnish', 8, '{''qid'': ''Q1602447'', ''url'': ''https://www.wikidata.org/wiki/Q1602447''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (616, 'Datadog', 10, '{''qid'': ''Q16248637'', ''url'': ''https://www.wikidata.org/wiki/Q16248637''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (617, 'API', 1, '{''qid'': ''Q165194'', ''url'': ''https://www.wikidata.org/wiki/Q165194''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (618, 'Hazelcast', 10, '{''qid'': ''Q17021540'', ''url'': ''https://www.wikidata.org/wiki/Q17021540''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (619, 'Infinispan', 2, '{''qid'': ''Q18152516'', ''url'': ''https://www.wikidata.org/wiki/Q18152516''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (620, 'Nuxeo', 10, '{''qid'': ''Q2004521'', ''url'': ''https://www.wikidata.org/wiki/Q2004521''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (621, 'ArangoDB', 2, '{''qid'': ''Q20072115'', ''url'': ''https://www.wikidata.org/wiki/Q20072115''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (622, 'Eclipse Che', 2, '{''qid'': ''Q25000883'', ''url'': ''https://www.wikidata.org/wiki/Q25000883''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (623, 'Amazon S3', 2, '{''qid'': ''Q2593067'', ''url'': ''https://www.wikidata.org/wiki/Q2593067''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (624, 'ClickHouse', 2, '{''qid'': ''Q27825826'', ''url'': ''https://www.wikidata.org/wiki/Q27825826''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (625, 'MinIO', 2, '{''qid'': ''Q28956397'', ''url'': ''https://www.wikidata.org/wiki/Q28956397''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (626, 'Elasticsearch', 2, '{''qid'': ''Q3050461'', ''url'': ''https://www.wikidata.org/wiki/Q3050461''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (627, 'XtraDB', 2, '{''qid'': ''Q4021858'', ''url'': ''https://www.wikidata.org/wiki/Q4021858''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (628, 'Keycloak', 2, '{''qid'': ''Q42916195'', ''url'': ''https://www.wikidata.org/wiki/Q42916195''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (629, 'Grafana', 2, '{''qid'': ''Q43399271'', ''url'': ''https://www.wikidata.org/wiki/Q43399271''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (630, 'Mattermost', 10, '{''qid'': ''Q55478510'', ''url'': ''https://www.wikidata.org/wiki/Q55478510''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (631, 'Synapse', 2, '{''qid'': ''Q56328412'', ''url'': ''https://www.wikidata.org/wiki/Q56328412''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (632, 'Cloud IAM', 2, '{''qid'': ''Q59852253'', ''url'': ''https://www.wikidata.org/wiki/Q59852253''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (633, 'Knative', 10, '{''qid'': ''Q59905591'', ''url'': ''https://www.wikidata.org/wiki/Q59905591''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (634, 'Apache Cassandra', 2, '{''qid'': ''Q616639'', ''url'': ''https://www.wikidata.org/wiki/Q616639''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (635, 'Kubeflow', 10, '{''qid'': ''Q65048974'', ''url'': ''https://www.wikidata.org/wiki/Q65048974''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (636, 'Qiskit', 2, '{''qid'': ''Q70490607'', ''url'': ''https://www.wikidata.org/wiki/Q70490607''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (637, 'Microsoft Azure', 2, '{''qid'': ''Q725967'', ''url'': ''https://www.wikidata.org/wiki/Q725967''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (638, 'Strimzi', 10, '{''qid'': ''Q72711423'', ''url'': ''https://www.wikidata.org/wiki/Q72711423''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (639, 'Sematext', 10, '{''qid'': ''Q7449130'', ''url'': ''https://www.wikidata.org/wiki/Q7449130''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (640, 'Eclipse hawkBit', 2, '{''qid'': ''Q76178253'', ''url'': ''https://www.wikidata.org/wiki/Q76178253''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (641, 'Eclipse Ditto', 2, '{''qid'': ''Q76178650'', ''url'': ''https://www.wikidata.org/wiki/Q76178650''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (642, 'MariaDB', 2, '{''qid'': ''Q787177'', ''url'': ''https://www.wikidata.org/wiki/Q787177''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (643, 'Zadara', 2, '{''qid'': ''Q8064144'', ''url'': ''https://www.wikidata.org/wiki/Q8064144''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (644, 'Istio', 2, '{''qid'': ''Q88464464'', ''url'': ''https://www.wikidata.org/wiki/Q88464464''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (645, 'Vault', 2, '{''qid'': ''Q88664426'', ''url'': ''https://www.wikidata.org/wiki/Q88664426''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (646, 'Apache Druid', 2, '{''qid'': ''Q89693799'', ''url'': ''https://www.wikidata.org/wiki/Q89693799''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (647, 'etcd', 2, '{''qid'': ''Q96324273'', ''url'': ''https://www.wikidata.org/wiki/Q96324273''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (648, 'Traefik', 8, '{''qid'': ''Q96332968'', ''url'': ''https://www.wikidata.org/wiki/Q96332968''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (649, 'IBM Cloud', 2, '{''qid'': ''Q96381605'', ''url'': ''https://www.wikidata.org/wiki/Q96381605''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (650, 'YugabyteDB', 2, '{''qid'': ''Q97187861'', ''url'': ''https://www.wikidata.org/wiki/Q97187861''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (651, 'CockroachDB', 2, '{''qid'': ''Q98731903'', ''url'': ''https://www.wikidata.org/wiki/Q98731903''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (652, 'Jaeger', 10, '{''qid'': ''Q98799449'', ''url'': ''https://www.wikidata.org/wiki/Q98799449''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (653, 'Natural Programming Language', 9, '{}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (654, 'AcuCOBOL', 9, '{''qid'': ''Q288844'', ''url'': ''https://www.wikidata.org/wiki/Q288844''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (655, 'Ada', 9, '{''qid'': ''Q154755'', ''url'': ''https://www.wikidata.org/wiki/Q154755''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (656, 'ADABAS', 2, '{''qid'': ''Q346434'', ''url'': ''https://www.wikidata.org/wiki/Q346434''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (657, 'ADSO', 9, '{''qid'': ''Q4685839'', ''url'': ''https://www.wikidata.org/wiki/Q4685839''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (658, 'Ansible', 2, '{''qid'': ''Q2852503'', ''url'': ''https://www.wikidata.org/wiki/Q2852503''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (659, 'Batch', 9, '{''qid'': ''Q479833'', ''url'': ''https://www.wikidata.org/wiki/Q479833''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (660, 'Powershell', 9, '{''qid'': ''Q840410'', ''url'': ''https://www.wikidata.org/wiki/Q840410''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (661, 'COM+', 10, '{''qid'': ''Q9670606'', ''url'': ''https://www.wikidata.org/wiki/Q9670606''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (662, 'Dataflex', 9, '{''qid'': ''Q2391203'', ''url'': ''https://www.wikidata.org/wiki/Q2391203''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (663, 'DDS', 9, '{''qid'': ''Q1149607'', ''url'': ''https://www.wikidata.org/wiki/Q1149607''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (664, 'Forte', 9, '{''qid'': ''Q3748867'', ''url'': ''https://www.wikidata.org/wiki/Q3748867''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (665, 'Foxpro', 9, '{''qid'': ''Q2507721'', ''url'': ''https://www.wikidata.org/wiki/Q2507721''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (666, 'IBM DB2 Purescale', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (667, 'IDMS DB', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (668, 'IDMS DML', 9, '{}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (669, 'Jaguar', 8, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (670, 'EAServer', 8, '{''qid'': ''Q5816084'', ''url'': ''https://www.wikidata.org/wiki/Q5816084''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (671, 'Apache Cassandra', 2, '{''qid'': ''Q616639'', ''url'': ''https://www.wikidata.org/wiki/Q616639''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (672, 'IBM Netezza', 4, '{''qid'': ''Q3874960'', ''url'': ''https://www.wikidata.org/wiki/Q3874960''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (673, 'OpenEdge', 9, '{''qid'': ''Q1963461'', ''url'': ''https://www.wikidata.org/wiki/Q1963461''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (674, 'OpenROAD', 9, '{''qid'': ''Q2025504'', ''url'': ''https://www.wikidata.org/wiki/Q2025504''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (675, 'Oracle Reports', 2, '{''qid'': ''Q4045946'', ''url'': ''https://www.wikidata.org/wiki/Q4045946''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (676, 'SAP Replication Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (677, 'Git', 2, '{''qid'': ''Q186055'', ''url'': ''https://www.wikidata.org/wiki/Q186055''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (678, 'GitLab', 2, '{''qid'': ''Q16639197'', ''url'': ''https://www.wikidata.org/wiki/Q16639197''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (679, 'VSAM', 2, '{''qid'': ''Q1514276'', ''url'': ''https://www.wikidata.org/wiki/Q1514276''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (680, 'Cloud<>Apache HTTP Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (681, 'Cloud<>Windows|Windows Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (682, 'Cloud<>MS SQL Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (683, 'Cloud<>Azure SQL Server Database', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (684, 'Cloud<>MySQL', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (685, 'Cloud<>Oracle Database', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (686, 'Cloud<>PostgreSQL', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (687, 'Cloud<>AWS RDS', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (688, 'Cloud<>SAP HANA DB', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (689, 'BMS Map', 9, '{}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (690, 'DB400', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (691, 'ILE', 9, '{''qid'': ''Q16889435'', ''url'': ''https://www.wikidata.org/wiki/Q16889435''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (692, 'Integrated Data Store (IDS)', 2, '{''qid'': ''Q3799287'', ''url'': ''https://www.wikidata.org/wiki/Q3799287''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (693, 'ISAM', 2, '{''qid'': ''Q1154755'', ''url'': ''https://www.wikidata.org/wiki/Q1154755''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (694, 'Oracle RDS', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (695, 'SAP IQ', 2, '{''qid'': ''Q948492'', ''url'': ''https://www.wikidata.org/wiki/Q948492''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (696, 'Cloud<>Linux', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (697, 'Apache Maven', 2, '{''qid'': ''Q139941'', ''url'': ''https://www.wikidata.org/wiki/Q139941''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (698, 'IBM Basic Assembly Language (BAL)', 9, '{''qid'': ''Q5968762'', ''url'': ''https://www.wikidata.org/wiki/Q5968762''}', 'Y', 'N', 'N', 'N'); + +-- Table: entity_mentions CREATE TABLE entity_mentions ( id integer PRIMARY KEY AUTOINCREMENT, entity_mention_name text NOT NULL, @@ -978,7725 +1010,7727 @@ CREATE TABLE entity_mentions ( FOREIGN KEY (entity_type_id) REFERENCES entity_types (id), FOREIGN KEY (entity_id) REFERENCES entities (id) ); -INSERT INTO entity_mentions VALUES(1,'DOT NET',10,497,'others'); -INSERT INTO entity_mentions VALUES(2,'.NET 4.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(3,'Dot net - FW 4',10,497,'others'); -INSERT INTO entity_mentions VALUES(4,'.Net 4.7.1 Enterprise Lib',10,497,'others'); -INSERT INTO entity_mentions VALUES(5,'.Net 3.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(6,'.NET4.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(7,'.NET Framework 4.x',10,497,'others'); -INSERT INTO entity_mentions VALUES(8,'Microsoft - Microsoft .NET Framework 2',10,497,'others'); -INSERT INTO entity_mentions VALUES(9,'Microsoft - Microsoft .NET Framework 3.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(10,'.NET 3.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(11,'Dot Net Framework 3.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(12,'.NET',10,497,'others'); -INSERT INTO entity_mentions VALUES(13,'.NET 4',10,497,'others'); -INSERT INTO entity_mentions VALUES(14,'.Net 4.5.2 Enterprise Lib',10,497,'others'); -INSERT INTO entity_mentions VALUES(15,'.NET2.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(16,'DOTNET',10,497,'others'); -INSERT INTO entity_mentions VALUES(17,'Microsoft .NET Release 1.1',10,497,'others'); -INSERT INTO entity_mentions VALUES(18,'.Net 4.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(19,'.NET 2.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(20,'.Net Framework 4.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(21,'Microsoft .NET 4.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(22,'.net 2017',10,497,'others'); -INSERT INTO entity_mentions VALUES(23,'.Net framework',10,497,'others'); -INSERT INTO entity_mentions VALUES(24,'Microsoft .NET Framework 4.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(25,'.net 4.0 Framework',10,497,'others'); -INSERT INTO entity_mentions VALUES(26,'Microsoft.NET 2.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(27,'.Net 4.5.2',10,497,'others'); -INSERT INTO entity_mentions VALUES(28,'.NET 4.6',10,497,'others'); -INSERT INTO entity_mentions VALUES(29,'Microsoft - Microsoft .NET Framework 4',10,497,'others'); -INSERT INTO entity_mentions VALUES(30,'.NET4.6',10,497,'others'); -INSERT INTO entity_mentions VALUES(31,'Microsoft - Microsoft .NET Framework 4.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(32,'Dot Net Framework 4.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(33,'Microsoft - Microsoft .NET Framework 3',10,497,'others'); -INSERT INTO entity_mentions VALUES(34,'Microsoft - Microsoft .Net Framework 1',10,497,'others'); -INSERT INTO entity_mentions VALUES(35,'Microsoft .NET Release 4.6',10,497,'others'); -INSERT INTO entity_mentions VALUES(36,'.net Framework 3.5 SP1',10,497,'others'); -INSERT INTO entity_mentions VALUES(37,'Microsoft.net',10,497,'others'); -INSERT INTO entity_mentions VALUES(38,'Microsoft .NET',10,497,'others'); -INSERT INTO entity_mentions VALUES(39,'Microsoft .NET Release 2.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(40,'Dot Net 2.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(41,'Common Runtime Library',7,482,'others'); -INSERT INTO entity_mentions VALUES(42,'APACHE LOG4NET',7,483,'others'); -INSERT INTO entity_mentions VALUES(43,'LOG4NET',7,483,'others'); -INSERT INTO entity_mentions VALUES(44,'Magik',7,484,'others'); -INSERT INTO entity_mentions VALUES(45,'Magick.NET',7,484,'others'); -INSERT INTO entity_mentions VALUES(46,'WCF',7,485,'others'); -INSERT INTO entity_mentions VALUES(47,'Windows Communication Foundation',7,485,'others'); -INSERT INTO entity_mentions VALUES(48,'Windows Communication Foundation (WCF)',7,485,'others'); -INSERT INTO entity_mentions VALUES(49,'WWF',7,486,'others'); -INSERT INTO entity_mentions VALUES(50,'Windows Workflow Foundation (WF)',7,486,'others'); -INSERT INTO entity_mentions VALUES(51,'Windows Workflow Foundation',7,486,'others'); -INSERT INTO entity_mentions VALUES(52,'WinForms',7,487,'others'); -INSERT INTO entity_mentions VALUES(53,'Ejes',2,1,'others'); -INSERT INTO entity_mentions VALUES(54,'(E)JES',2,1,'others'); -INSERT INTO entity_mentions VALUES(55,'(UNIRITA) A-AUTO 7.2.2',2,2,'others'); -INSERT INTO entity_mentions VALUES(56,'A-AUTO',2,2,'others'); -INSERT INTO entity_mentions VALUES(57,'A-Auto Job Scheduling Software',2,2,'others'); -INSERT INTO entity_mentions VALUES(58,'Active Directoy',10,498,'others'); -INSERT INTO entity_mentions VALUES(59,'Active Directory (AD)',10,498,'others'); -INSERT INTO entity_mentions VALUES(60,'Active Server Page',10,499,'others'); -INSERT INTO entity_mentions VALUES(61,'ASPNet',10,499,'others'); -INSERT INTO entity_mentions VALUES(62,'Microsoft Active Server Pages 6.0',10,499,'others'); -INSERT INTO entity_mentions VALUES(63,'APSX',10,499,'others'); -INSERT INTO entity_mentions VALUES(64,'ASP .NET',10,499,'others'); -INSERT INTO entity_mentions VALUES(65,'Microsoft Active Server Pages',10,499,'others'); -INSERT INTO entity_mentions VALUES(66,'Microsoft ASP files',10,499,'others'); -INSERT INTO entity_mentions VALUES(67,'Active Server Pages (ASP)',10,499,'others'); -INSERT INTO entity_mentions VALUES(68,'ASP',10,499,'others'); -INSERT INTO entity_mentions VALUES(69,'Classic ASP',10,499,'others'); -INSERT INTO entity_mentions VALUES(70,'Classis ASP',10,499,'others'); -INSERT INTO entity_mentions VALUES(71,'ASP 3.0',10,499,'others'); -INSERT INTO entity_mentions VALUES(72,'ASP.NET',10,499,'others'); -INSERT INTO entity_mentions VALUES(73,'ASPX',10,499,'others'); -INSERT INTO entity_mentions VALUES(74,'ASP.NET 1.0.3705',10,499,'others'); -INSERT INTO entity_mentions VALUES(75,'ActiveX',10,500,'others'); -INSERT INTO entity_mentions VALUES(76,'ADO',7,488,'others'); -INSERT INTO entity_mentions VALUES(77,'Activiti',2,3,'others'); -INSERT INTO entity_mentions VALUES(78,'Adobe Acrobat Reader',2,4,'others'); -INSERT INTO entity_mentions VALUES(79,'Acrobat Reader',2,4,'others'); -INSERT INTO entity_mentions VALUES(80,'Adobe - Adobe Acrobat Reader DC 2019',2,4,'others'); -INSERT INTO entity_mentions VALUES(81,'Adobe Acrobat Reader DC 2019',2,4,'others'); -INSERT INTO entity_mentions VALUES(82,'Android',6,418,'others'); -INSERT INTO entity_mentions VALUES(83,'Android SDK',6,418,'others'); -INSERT INTO entity_mentions VALUES(84,'Andriod',6,418,'others'); -INSERT INTO entity_mentions VALUES(85,'ansible',2,5,'others'); -INSERT INTO entity_mentions VALUES(86,'Apache ActiveMQ',2,6,'others'); -INSERT INTO entity_mentions VALUES(87,'Apache Active Queue',2,6,'others'); -INSERT INTO entity_mentions VALUES(88,'MQ Apache Active Queue',2,6,'others'); -INSERT INTO entity_mentions VALUES(89,'Cordova',10,501,'others'); -INSERT INTO entity_mentions VALUES(90,'Cordova framework',10,501,'others'); -INSERT INTO entity_mentions VALUES(91,'Apache Cordova',10,501,'others'); -INSERT INTO entity_mentions VALUES(92,'cordova-android',10,501,'others'); -INSERT INTO entity_mentions VALUES(93,'Apache Hbase',2,7,'others'); -INSERT INTO entity_mentions VALUES(94,'Hbase',2,7,'others'); -INSERT INTO entity_mentions VALUES(95,'Hive',2,8,'others'); -INSERT INTO entity_mentions VALUES(96,'Apache Hive',2,8,'others'); -INSERT INTO entity_mentions VALUES(97,'Apache HTTP Server 2.0',8,259,'others'); -INSERT INTO entity_mentions VALUES(98,'Apache HTTP Server 2.2 (Linux)',8,259,'others'); -INSERT INTO entity_mentions VALUES(99,'Apache HTTP Server 2.4 (Linux)',8,259,'others'); -INSERT INTO entity_mentions VALUES(100,'APACHE HTTP SERVER VERSION 2.2.13',8,259,'others'); -INSERT INTO entity_mentions VALUES(101,'TS-Apache HTTP Server 2.4',8,259,'others'); -INSERT INTO entity_mentions VALUES(102,'Apache',8,259,'others'); -INSERT INTO entity_mentions VALUES(103,'Apache Web Server',8,259,'others'); -INSERT INTO entity_mentions VALUES(104,'Apache 2.4',8,259,'others'); -INSERT INTO entity_mentions VALUES(105,'Apache HTTP Server 2.0 (Solaris)',8,259,'others'); -INSERT INTO entity_mentions VALUES(106,'APACHE HTTP SERVER VERSION 1.3',8,259,'others'); -INSERT INTO entity_mentions VALUES(107,'APACHE WEB SERVER VERSION 1.3.27',8,259,'others'); -INSERT INTO entity_mentions VALUES(108,'Apache WebServer',8,259,'others'); -INSERT INTO entity_mentions VALUES(109,'Apache HTTP Server 2.4',8,259,'others'); -INSERT INTO entity_mentions VALUES(110,'Apache 3',8,259,'others'); -INSERT INTO entity_mentions VALUES(111,'Apache Instance',8,259,'others'); -INSERT INTO entity_mentions VALUES(112,'Apache HTTP Server 2.0 (Linux)',8,259,'others'); -INSERT INTO entity_mentions VALUES(113,'Apache 2.4 - 32 bit',8,259,'others'); -INSERT INTO entity_mentions VALUES(114,'Apache HTTP Server 2.2',8,259,'others'); -INSERT INTO entity_mentions VALUES(115,'Apache HTTP Server',8,259,'others'); -INSERT INTO entity_mentions VALUES(116,'Apache Kafka',2,9,'others'); -INSERT INTO entity_mentions VALUES(117,'kafka',2,9,'others'); -INSERT INTO entity_mentions VALUES(118,'Apache Lucene',12,375,'others'); -INSERT INTO entity_mentions VALUES(119,'Lucene',12,375,'others'); -INSERT INTO entity_mentions VALUES(120,'ServiceMix',2,10,'others'); -INSERT INTO entity_mentions VALUES(121,'Apache ServiceMix',2,10,'others'); -INSERT INTO entity_mentions VALUES(122,'Apache Solr',2,11,'others'); -INSERT INTO entity_mentions VALUES(123,'solr',2,11,'others'); -INSERT INTO entity_mentions VALUES(124,'Subversion',2,12,'others'); -INSERT INTO entity_mentions VALUES(125,'Apache Subversion',2,12,'others'); -INSERT INTO entity_mentions VALUES(126,'Subversion software',2,12,'others'); -INSERT INTO entity_mentions VALUES(127,'Tomcat 8',8,260,'others'); -INSERT INTO entity_mentions VALUES(128,'APACHE TOMCAT VERSION 6',8,260,'others'); -INSERT INTO entity_mentions VALUES(129,'Tomcat 3',8,260,'others'); -INSERT INTO entity_mentions VALUES(130,'Apache Tomcat 6 (Linux)',8,260,'others'); -INSERT INTO entity_mentions VALUES(131,'Apache Tomcat',8,260,'others'); -INSERT INTO entity_mentions VALUES(132,'Apache Tomcat 3 (Linux)',8,260,'others'); -INSERT INTO entity_mentions VALUES(133,'tomcat',8,260,'others'); -INSERT INTO entity_mentions VALUES(134,'Tomcat 3/4/5/6/7',8,260,'others'); -INSERT INTO entity_mentions VALUES(135,'Apache Tomcat 7',8,260,'others'); -INSERT INTO entity_mentions VALUES(136,'Apache Software Foundation - Apache Tomcat 8.5',8,260,'others'); -INSERT INTO entity_mentions VALUES(137,'Tomcat 7',8,260,'others'); -INSERT INTO entity_mentions VALUES(138,'APACHE TOMCAT VERSION 7',8,260,'others'); -INSERT INTO entity_mentions VALUES(139,'Tomcat 6',8,260,'others'); -INSERT INTO entity_mentions VALUES(140,'Tomcat 8.0.33',8,260,'others'); -INSERT INTO entity_mentions VALUES(141,'Tomcat 7.0',8,260,'others'); -INSERT INTO entity_mentions VALUES(142,'Tomcat 9',8,260,'others'); -INSERT INTO entity_mentions VALUES(143,'Tomcat 4',8,260,'others'); -INSERT INTO entity_mentions VALUES(144,'Apache Software Foundation - Apache Tomcat 9',8,260,'others'); -INSERT INTO entity_mentions VALUES(145,'Apache Software Foundation - Apache Tomcat 7',8,260,'others'); -INSERT INTO entity_mentions VALUES(146,'Apache Tomcat 6',8,260,'others'); -INSERT INTO entity_mentions VALUES(147,'Apache Tomcat 8',8,260,'others'); -INSERT INTO entity_mentions VALUES(148,'Tomcat 8/9',8,260,'others'); -INSERT INTO entity_mentions VALUES(149,'Apache Tomcat 8.5.15',8,260,'others'); -INSERT INTO entity_mentions VALUES(150,'Apache Tomcat 9',8,260,'others'); -INSERT INTO entity_mentions VALUES(151,'Apache Software Foundation - Apache Tomcat 8',8,260,'others'); -INSERT INTO entity_mentions VALUES(152,'Apache Tomcat 1',8,260,'others'); -INSERT INTO entity_mentions VALUES(153,'Tomcat 5',8,260,'others'); -INSERT INTO entity_mentions VALUES(154,'Apache Tomcat 3',8,260,'others'); -INSERT INTO entity_mentions VALUES(155,'Apache Tomcat 8 (Linux)',8,260,'others'); -INSERT INTO entity_mentions VALUES(156,'APACHE TOMCAT VERSION 6.0',8,260,'others'); -INSERT INTO entity_mentions VALUES(157,'Apache Tomcat 5',8,260,'others'); -INSERT INTO entity_mentions VALUES(158,'Apache tomcat 9.0.12',8,260,'others'); -INSERT INTO entity_mentions VALUES(159,'Apache xerces',12,376,'others'); -INSERT INTO entity_mentions VALUES(160,'XERCES',12,376,'others'); -INSERT INTO entity_mentions VALUES(161,'Application Development Facility (ADF)',2,13,'others'); -INSERT INTO entity_mentions VALUES(162,'ADF',2,13,'others'); -INSERT INTO entity_mentions VALUES(163,'ADF (Application Development Facility)',2,13,'others'); -INSERT INTO entity_mentions VALUES(164,'Application Development Facility',2,13,'others'); -INSERT INTO entity_mentions VALUES(165,'ArcGIS Server 10.3.1',8,261,'others'); -INSERT INTO entity_mentions VALUES(166,'ArcGIS Server',8,261,'others'); -INSERT INTO entity_mentions VALUES(167,'Asterisk 1.8',2,14,'others'); -INSERT INTO entity_mentions VALUES(168,'Asterisk',2,14,'others'); -INSERT INTO entity_mentions VALUES(169,'AutoIt 3.3',9,299,'others'); -INSERT INTO entity_mentions VALUES(170,'AutoIt',9,299,'others'); -INSERT INTO entity_mentions VALUES(171,'AutoiIt',9,299,'others'); -INSERT INTO entity_mentions VALUES(172,'Automic - UC4',2,15,'others'); -INSERT INTO entity_mentions VALUES(173,'Automic Job Scheduler',2,15,'others'); -INSERT INTO entity_mentions VALUES(174,'Autosys',2,16,'others'); -INSERT INTO entity_mentions VALUES(175,'AWK',9,300,'others'); -INSERT INTO entity_mentions VALUES(176,'basic',9,301,'others'); -INSERT INTO entity_mentions VALUES(177,'WLS 10.2',8,262,'others'); -INSERT INTO entity_mentions VALUES(178,'BEA WebLogic Enterprise (WLE)',8,262,'others'); -INSERT INTO entity_mentions VALUES(179,'Oracle Weblogic 12.2.1.3.0',8,262,'others'); -INSERT INTO entity_mentions VALUES(180,'Oracle Weblogic 12c',8,262,'others'); -INSERT INTO entity_mentions VALUES(181,'Oracle Weblogic 12.2.1.2.0',8,262,'others'); -INSERT INTO entity_mentions VALUES(182,'BEA WLS',8,262,'others'); -INSERT INTO entity_mentions VALUES(183,'Weblogic 9.2.0.0',8,262,'others'); -INSERT INTO entity_mentions VALUES(184,'BEA WebLogic Server',8,262,'others'); -INSERT INTO entity_mentions VALUES(185,'Weblogic 12c',8,262,'others'); -INSERT INTO entity_mentions VALUES(186,'Oracle WebLogic Server 12',8,262,'others'); -INSERT INTO entity_mentions VALUES(187,'Weblogic 10.1 MP1',8,262,'others'); -INSERT INTO entity_mentions VALUES(188,'BEA WebLogic Server 8',8,262,'others'); -INSERT INTO entity_mentions VALUES(189,'Oracle WebLogic Server',8,262,'others'); -INSERT INTO entity_mentions VALUES(190,'WEBLOGIC-SERVER',8,262,'others'); -INSERT INTO entity_mentions VALUES(191,'Weblogic 12.2.1.2',8,262,'others'); -INSERT INTO entity_mentions VALUES(192,'Oracle WebLogic Server 12 (Linux)',8,262,'others'); -INSERT INTO entity_mentions VALUES(193,'Weblogic 12.2.1.3.0',8,262,'others'); -INSERT INTO entity_mentions VALUES(194,'WLE',8,262,'others'); -INSERT INTO entity_mentions VALUES(195,'Weblogic 10.3.0.0',8,262,'others'); -INSERT INTO entity_mentions VALUES(196,'Weblogic 12.1.3.0',8,262,'others'); -INSERT INTO entity_mentions VALUES(197,'Weblogic',8,262,'others'); -INSERT INTO entity_mentions VALUES(198,'Oracle WebLogic Server 10',8,262,'others'); -INSERT INTO entity_mentions VALUES(199,'ORACLE WEBLOGIC SERVER 10.3',8,262,'others'); -INSERT INTO entity_mentions VALUES(200,'Weblogic Server',8,262,'others'); -INSERT INTO entity_mentions VALUES(201,'Oracle Weblogic 8.1.1',8,262,'others'); -INSERT INTO entity_mentions VALUES(202,'Web Logic',8,262,'others'); -INSERT INTO entity_mentions VALUES(203,'Oracle Weblogic 12.x',8,262,'others'); -INSERT INTO entity_mentions VALUES(204,'BEA WEBLOGIC SERVER VERSION 7',8,262,'others'); -INSERT INTO entity_mentions VALUES(205,'Oracle Weblogic Server 12c',8,262,'others'); -INSERT INTO entity_mentions VALUES(206,'Weblogic 10.3.6.0',8,262,'others'); -INSERT INTO entity_mentions VALUES(207,'Oracle Weblogic 12.1.2',8,262,'others'); -INSERT INTO entity_mentions VALUES(208,'BEA WLE',8,262,'others'); -INSERT INTO entity_mentions VALUES(209,'WLS 10',8,262,'others'); -INSERT INTO entity_mentions VALUES(210,'WLS',8,262,'others'); -INSERT INTO entity_mentions VALUES(211,'WebLogic',8,262,'others'); -INSERT INTO entity_mentions VALUES(212,'ORACLE WEBLOGIC SERVER VERSION 10.3',8,262,'others'); -INSERT INTO entity_mentions VALUES(213,'Weblogic 12.2.1.1',8,262,'others'); -INSERT INTO entity_mentions VALUES(214,'BEA Weblogic',8,262,'others'); -INSERT INTO entity_mentions VALUES(215,'Oracle Weblogic 12.1',8,262,'others'); -INSERT INTO entity_mentions VALUES(216,'Weblogic 10',8,262,'others'); -INSERT INTO entity_mentions VALUES(217,'BeOS',6,419,'others'); -INSERT INTO entity_mentions VALUES(218,'Bluebeam Q',2,17,'others'); -INSERT INTO entity_mentions VALUES(219,'BMC Control-M CM For SAP 6.2',2,18,'others'); -INSERT INTO entity_mentions VALUES(220,'BMC Control-M',2,18,'others'); -INSERT INTO entity_mentions VALUES(221,'BMC Identity Management',2,19,'others'); -INSERT INTO entity_mentions VALUES(222,'IDM-BMC Identity Management',2,19,'others'); -INSERT INTO entity_mentions VALUES(223,'Borland Database Engine',2,20,'others'); -INSERT INTO entity_mentions VALUES(224,'Borland - BDE Administrator 1',2,20,'others'); -INSERT INTO entity_mentions VALUES(225,'Borland Database Engine (BDE)',2,20,'others'); -INSERT INTO entity_mentions VALUES(226,'Borland - BDE Administrator 5.2',2,20,'others'); -INSERT INTO entity_mentions VALUES(227,'brain script',9,302,'others'); -INSERT INTO entity_mentions VALUES(228,'BRAINScript',9,302,'others'); -INSERT INTO entity_mentions VALUES(229,'Business Intelligence and Reporting Tools',2,21,'others'); -INSERT INTO entity_mentions VALUES(230,'Actuate Report Server',2,21,'others'); -INSERT INTO entity_mentions VALUES(231,'BIRT',2,21,'others'); -INSERT INTO entity_mentions VALUES(232,'Business Intelligence and Reporting Tools (BIRT)',2,21,'others'); -INSERT INTO entity_mentions VALUES(233,'C',9,303,'others'); -INSERT INTO entity_mentions VALUES(234,'CSHARP',9,304,'others'); -INSERT INTO entity_mentions VALUES(235,'C# 3.0',9,304,'others'); -INSERT INTO entity_mentions VALUES(236,'C#',9,304,'others'); -INSERT INTO entity_mentions VALUES(237,'c-sharp',9,304,'others'); -INSERT INTO entity_mentions VALUES(238,'C+',9,305,'others'); -INSERT INTO entity_mentions VALUES(239,'C++',9,305,'others'); -INSERT INTO entity_mentions VALUES(240,'vc++',9,306,'others'); -INSERT INTO entity_mentions VALUES(241,'MSVC',9,306,'others'); -INSERT INTO entity_mentions VALUES(242,'Visual C++ 2008',9,306,'others'); -INSERT INTO entity_mentions VALUES(243,'Microsoft Visual C++',9,306,'others'); -INSERT INTO entity_mentions VALUES(244,'Visual C++',9,306,'others'); -INSERT INTO entity_mentions VALUES(245,'Microsoft - Microsoft Visual C++ 2008 Redistributable (x64) 9',9,306,'others'); -INSERT INTO entity_mentions VALUES(246,'vc',9,306,'others'); -INSERT INTO entity_mentions VALUES(247,'CA API Gateway',4,290,'others'); -INSERT INTO entity_mentions VALUES(248,'CA Gen 8',2,22,'others'); -INSERT INTO entity_mentions VALUES(249,'CA Gen',2,22,'others'); -INSERT INTO entity_mentions VALUES(250,'CA Technologies - Computer Associates Introscope 8.2',2,23,'others'); -INSERT INTO entity_mentions VALUES(251,'Introscope',2,23,'others'); -INSERT INTO entity_mentions VALUES(252,'CA Technologies - Computer Associates Introscope',2,23,'others'); -INSERT INTO entity_mentions VALUES(253,'CA Introscope',2,23,'others'); -INSERT INTO entity_mentions VALUES(254,'CA-Panvalet',2,24,'others'); -INSERT INTO entity_mentions VALUES(255,'Panvalet',2,24,'others'); -INSERT INTO entity_mentions VALUES(256,'Telon',2,25,'others'); -INSERT INTO entity_mentions VALUES(257,'CA-TELON',2,25,'others'); -INSERT INTO entity_mentions VALUES(258,'CSS 3',9,307,'others'); -INSERT INTO entity_mentions VALUES(259,'Style Sheet',9,307,'others'); -INSERT INTO entity_mentions VALUES(260,'Cascading Style Sheets',9,307,'others'); -INSERT INTO entity_mentions VALUES(261,'Cascading Style Sheets (CSS)',9,307,'others'); -INSERT INTO entity_mentions VALUES(262,'CSS',9,307,'others'); -INSERT INTO entity_mentions VALUES(263,'Bootstrap',12,377,'others'); -INSERT INTO entity_mentions VALUES(264,'Casegen',2,26,'others'); -INSERT INTO entity_mentions VALUES(265,'Chef Automate',2,27,'others'); -INSERT INTO entity_mentions VALUES(266,'CICS',10,502,'others'); -INSERT INTO entity_mentions VALUES(267,'Cisco AMP for Endpoints',2,28,'others'); -INSERT INTO entity_mentions VALUES(268,'Cisco Systems Inc. - Cisco AMP for Endpoints Connector 6.1',2,28,'others'); -INSERT INTO entity_mentions VALUES(269,'Cisco IOS',6,420,'others'); -INSERT INTO entity_mentions VALUES(270,'CiscoWorks',2,29,'others'); -INSERT INTO entity_mentions VALUES(271,'CISCO CISCOWORKS',2,29,'others'); -INSERT INTO entity_mentions VALUES(272,'CiscoWorks LAN Management Solution (LMS)',2,29,'others'); -INSERT INTO entity_mentions VALUES(273,'CiscoWorks LAN Management Solution',2,29,'others'); -INSERT INTO entity_mentions VALUES(274,'WinFrame',2,30,'others'); -INSERT INTO entity_mentions VALUES(275,'Citrix Virtual Apps',2,30,'others'); -INSERT INTO entity_mentions VALUES(276,'Citrix Managed Desktops',2,30,'others'); -INSERT INTO entity_mentions VALUES(277,'METAFRAME',2,30,'others'); -INSERT INTO entity_mentions VALUES(278,'XenApp',2,30,'others'); -INSERT INTO entity_mentions VALUES(279,'Citrix Metaframe',2,30,'others'); -INSERT INTO entity_mentions VALUES(280,'Citrix Server',2,30,'others'); -INSERT INTO entity_mentions VALUES(281,'Citrix Virtual Apps and Desktops',2,30,'others'); -INSERT INTO entity_mentions VALUES(282,'Presentation Server',2,30,'others'); -INSERT INTO entity_mentions VALUES(283,'NETSCALER-1.5',3,563,'others'); -INSERT INTO entity_mentions VALUES(284,'NETSCALER-11.',3,563,'others'); -INSERT INTO entity_mentions VALUES(285,'Citrix SD-WAN',3,563,'others'); -INSERT INTO entity_mentions VALUES(286,'NetScaler SD-WAN',3,563,'others'); -INSERT INTO entity_mentions VALUES(287,'Citrix NetScaler ADC',3,563,'others'); -INSERT INTO entity_mentions VALUES(288,'Citrix ADC',3,563,'others'); -INSERT INTO entity_mentions VALUES(289,'NetScaler ADC',3,563,'others'); -INSERT INTO entity_mentions VALUES(290,'NetScaler ADC VPX',3,564,'others'); -INSERT INTO entity_mentions VALUES(291,'Citrix ADC VPX',3,564,'others'); -INSERT INTO entity_mentions VALUES(292,'NetScaler VPX',3,564,'others'); -INSERT INTO entity_mentions VALUES(293,'Citrix NetScaler VPX',3,564,'others'); -INSERT INTO entity_mentions VALUES(294,'Citrix ADC BLX',3,565,'others'); -INSERT INTO entity_mentions VALUES(295,'NetScaler CPX',2,31,'others'); -INSERT INTO entity_mentions VALUES(296,'Citrix ADC CPX',2,31,'others'); -INSERT INTO entity_mentions VALUES(297,'Citrix ADC SDX',4,291,'others'); -INSERT INTO entity_mentions VALUES(298,'NetScaler SDX',4,291,'others'); -INSERT INTO entity_mentions VALUES(299,'Citrix ADC MPX',4,292,'others'); -INSERT INTO entity_mentions VALUES(300,'NetScaler MPX',4,292,'others'); -INSERT INTO entity_mentions VALUES(301,'Citrix Provisioning',2,32,'others'); -INSERT INTO entity_mentions VALUES(302,'Citrix Provisioning 2006',2,32,'others'); -INSERT INTO entity_mentions VALUES(303,'Citrix Provisioning Services',2,32,'others'); -INSERT INTO entity_mentions VALUES(304,'Provisioning Services 7.15.8',2,32,'others'); -INSERT INTO entity_mentions VALUES(305,'Citrix PVS',2,32,'others'); -INSERT INTO entity_mentions VALUES(306,'Clarify',2,33,'others'); -INSERT INTO entity_mentions VALUES(307,'Clear Basic',5,455,'others'); -INSERT INTO entity_mentions VALUES(308,'Clarify ClearBasic',5,455,'others'); -INSERT INTO entity_mentions VALUES(309,'Clarity LIMS',2,34,'others'); -INSERT INTO entity_mentions VALUES(310,'LabWare LIMS',2,35,'others'); -INSERT INTO entity_mentions VALUES(311,'Clipper',9,308,'others'); -INSERT INTO entity_mentions VALUES(312,'CLISTS',9,309,'others'); -INSERT INTO entity_mentions VALUES(313,'CLIST',9,309,'others'); -INSERT INTO entity_mentions VALUES(314,'COBOL II',9,310,'others'); -INSERT INTO entity_mentions VALUES(315,'COBOL',9,310,'others'); -INSERT INTO entity_mentions VALUES(316,'Cobol Assembler',9,310,'others'); -INSERT INTO entity_mentions VALUES(317,'IBM COGNOS BUSINESS INTELLIGENCE SERVER VERSION 10.2',2,36,'others'); -INSERT INTO entity_mentions VALUES(318,'IBM - COGNOS',2,36,'others'); -INSERT INTO entity_mentions VALUES(319,'IBM Cognos',2,36,'others'); -INSERT INTO entity_mentions VALUES(320,'Cognos',2,36,'others'); -INSERT INTO entity_mentions VALUES(321,'IBM Cognos ICM',2,36,'others'); -INSERT INTO entity_mentions VALUES(322,'Cold Fusion',2,37,'others'); -INSERT INTO entity_mentions VALUES(323,'Coldfusion Webserver',2,37,'others'); -INSERT INTO entity_mentions VALUES(324,'Coldfusion',2,37,'others'); -INSERT INTO entity_mentions VALUES(325,'ColdFus',2,37,'others'); -INSERT INTO entity_mentions VALUES(326,'CFML',9,311,'others'); -INSERT INTO entity_mentions VALUES(327,'ColdFusion Markup Language',9,311,'others'); -INSERT INTO entity_mentions VALUES(328,'ColdFusion Markup Language (CFML)',9,311,'others'); -INSERT INTO entity_mentions VALUES(329,'ConceptWave',2,38,'others'); -INSERT INTO entity_mentions VALUES(330,'CONNAPI',2,39,'others'); -INSERT INTO entity_mentions VALUES(331,'Sterling Connect',2,40,'others'); -INSERT INTO entity_mentions VALUES(332,'Connect Direct 4.5',2,40,'others'); -INSERT INTO entity_mentions VALUES(333,'IBM Sterling Connect:Direct',2,40,'others'); -INSERT INTO entity_mentions VALUES(334,'Connect:Direct',2,40,'others'); -INSERT INTO entity_mentions VALUES(335,'Connect Direct File agent',2,40,'others'); -INSERT INTO entity_mentions VALUES(336,'Connect Direct',2,40,'others'); -INSERT INTO entity_mentions VALUES(337,'IBM Sterling Connect:Direct vX',2,40,'others'); -INSERT INTO entity_mentions VALUES(338,'Sterling Connect:Direct',2,40,'others'); -INSERT INTO entity_mentions VALUES(339,'Connect Direct 4.5, 4.6',2,40,'others'); -INSERT INTO entity_mentions VALUES(340,'Connect Direct 4.6',2,40,'others'); -INSERT INTO entity_mentions VALUES(341,'Cormerstone',2,41,'others'); -INSERT INTO entity_mentions VALUES(342,'Cornerstone software',2,41,'others'); -INSERT INTO entity_mentions VALUES(343,'Cornerstone',2,41,'others'); -INSERT INTO entity_mentions VALUES(344,'Crystal Report',2,42,'others'); -INSERT INTO entity_mentions VALUES(345,'Crystal',2,42,'others'); -INSERT INTO entity_mentions VALUES(346,'Crystal Reports',2,42,'others'); -INSERT INTO entity_mentions VALUES(347,'DART',6,421,'others'); -INSERT INTO entity_mentions VALUES(348,'DL/I',9,312,'others'); -INSERT INTO entity_mentions VALUES(349,'Data Language/I',9,312,'others'); -INSERT INTO entity_mentions VALUES(350,'Data Language Interface (DL/I)',9,312,'others'); -INSERT INTO entity_mentions VALUES(351,'Data Language/One',9,312,'others'); -INSERT INTO entity_mentions VALUES(352,'Data Language/Interface',9,312,'others'); -INSERT INTO entity_mentions VALUES(353,'Dl1',9,312,'others'); -INSERT INTO entity_mentions VALUES(354,'Data Language Interface',9,312,'others'); -INSERT INTO entity_mentions VALUES(355,'DB2/400',2,43,'others'); -INSERT INTO entity_mentions VALUES(356,'IBM DB2 UDB/LUW ENTERPRISE SERVER EDITION DB2 v9.7 FP11 SB 37314',2,43,'others'); -INSERT INTO entity_mentions VALUES(357,'IBM - IBM DB2 Advanced Workgroup Server Edition OEM Limited Use 11.1',2,43,'others'); -INSERT INTO entity_mentions VALUES(358,'DB2 ESE 10.1',2,43,'others'); -INSERT INTO entity_mentions VALUES(359,'IBM - IBM DB2 Enterprise Server Edition - CPU Option 9.7',2,43,'others'); -INSERT INTO entity_mentions VALUES(360,'DB2 UDB',2,43,'others'); -INSERT INTO entity_mentions VALUES(361,'DB2',2,43,'others'); -INSERT INTO entity_mentions VALUES(362,'DB2 V9',2,43,'others'); -INSERT INTO entity_mentions VALUES(363,'IBM DB',2,43,'others'); -INSERT INTO entity_mentions VALUES(364,'DB2-UDB',2,43,'others'); -INSERT INTO entity_mentions VALUES(365,'DB2 11.1',2,43,'others'); -INSERT INTO entity_mentions VALUES(366,'IBM-DB2-V9',2,43,'others'); -INSERT INTO entity_mentions VALUES(367,'IBM - IBM DB2 Advanced Enterprise Server Edition OEM Limited Use 11.1',2,43,'others'); -INSERT INTO entity_mentions VALUES(368,'IBM - IBM DB2 Personal Edition Product Trial 9.7',2,43,'others'); -INSERT INTO entity_mentions VALUES(369,'IBM - IBM DB2 Enterprise Server Edition - CPU Option 10.1',2,43,'others'); -INSERT INTO entity_mentions VALUES(370,'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.*',2,43,'others'); -INSERT INTO entity_mentions VALUES(371,'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.7',2,43,'others'); -INSERT INTO entity_mentions VALUES(372,'IBM DB2 UDB/LUW ENTERPRISE SERVER EDITION DB2 ESE v9.7 FP 11 Special Build 35826 37314',2,43,'others'); -INSERT INTO entity_mentions VALUES(373,'DB2/UDB',2,43,'others'); -INSERT INTO entity_mentions VALUES(374,'IBM DB2 ENTERPRISE SERVER EDITION PVU OPTION 10.5',2,43,'others'); -INSERT INTO entity_mentions VALUES(375,'DB2 10.5',2,43,'others'); -INSERT INTO entity_mentions VALUES(376,'DB2 9.7',2,43,'others'); -INSERT INTO entity_mentions VALUES(377,'DB2 9.1',2,43,'others'); -INSERT INTO entity_mentions VALUES(378,'IBM - IBM DB2 UDB Enterprise Server Edition 8.2',2,43,'others'); -INSERT INTO entity_mentions VALUES(379,'DB2 for i',2,43,'others'); -INSERT INTO entity_mentions VALUES(380,'IBM - IBM DB2 Enterprise Server Edition OEM Limited Use 10.5',2,43,'others'); -INSERT INTO entity_mentions VALUES(381,'IBM - IBM DB2 Storage Optimization Feature 9.7',2,43,'others'); -INSERT INTO entity_mentions VALUES(382,'IBM - IBM DB2 Advanced Enterprise Server Edition PVU Option 10.5',2,43,'others'); -INSERT INTO entity_mentions VALUES(383,'UDB',2,43,'others'); -INSERT INTO entity_mentions VALUES(384,'IBM - IBM DB2 Enterprise Server Edition Product Trial 9.7',2,43,'others'); -INSERT INTO entity_mentions VALUES(385,'DB2 ESE 10.5',2,43,'others'); -INSERT INTO entity_mentions VALUES(386,'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.5',2,43,'others'); -INSERT INTO entity_mentions VALUES(387,'IBM DB2',2,43,'others'); -INSERT INTO entity_mentions VALUES(388,'IBM - IBM DB2 Workgroup Server Edition Product Trial 9.7',2,43,'others'); -INSERT INTO entity_mentions VALUES(389,'Delphi',9,313,'others'); -INSERT INTO entity_mentions VALUES(390,'docker',10,503,'others'); -INSERT INTO entity_mentions VALUES(391,'Documentum D2',2,44,'others'); -INSERT INTO entity_mentions VALUES(392,'Documentum content server',2,44,'others'); -INSERT INTO entity_mentions VALUES(393,'Documentum',2,44,'others'); -INSERT INTO entity_mentions VALUES(394,'DOCUMENTUM-CS',2,44,'others'); -INSERT INTO entity_mentions VALUES(395,'DRUPAL',2,45,'others'); -INSERT INTO entity_mentions VALUES(396,'Easytrieve',9,314,'others'); -INSERT INTO entity_mentions VALUES(397,'EZTriev',9,314,'others'); -INSERT INTO entity_mentions VALUES(398,'Eztrieve',9,314,'others'); -INSERT INTO entity_mentions VALUES(399,'Eclipse',2,46,'others'); -INSERT INTO entity_mentions VALUES(400,'ATLAS Transformation Language',5,456,'others'); -INSERT INTO entity_mentions VALUES(401,'ATL',5,456,'others'); -INSERT INTO entity_mentions VALUES(402,'ATLAS Transformation Language (ATL)',5,456,'others'); -INSERT INTO entity_mentions VALUES(403,'Elastic (ELK) Stack',2,47,'others'); -INSERT INTO entity_mentions VALUES(404,'ELK',2,47,'others'); -INSERT INTO entity_mentions VALUES(405,'EMC Celerra',11,510,'others'); -INSERT INTO entity_mentions VALUES(406,'ETAP License Manager (LM)',2,48,'others'); -INSERT INTO entity_mentions VALUES(407,'ETAP Licensing Manager/TARO GJH',2,48,'others'); -INSERT INTO entity_mentions VALUES(408,'ETAP License Manager',2,48,'others'); -INSERT INTO entity_mentions VALUES(409,'ETAP License Manager GJH',2,48,'others'); -INSERT INTO entity_mentions VALUES(410,'PrestoSoft - ExamDiff Application 1.6',2,49,'others'); -INSERT INTO entity_mentions VALUES(411,'PrestoSoft - ExamDiff Application',2,49,'others'); -INSERT INTO entity_mentions VALUES(412,'ExamDiff',2,49,'others'); -INSERT INTO entity_mentions VALUES(413,'ExamDiff Application',2,49,'others'); -INSERT INTO entity_mentions VALUES(414,'Expect',9,315,'others'); -INSERT INTO entity_mentions VALUES(415,'Expect Scripts',9,315,'others'); -INSERT INTO entity_mentions VALUES(416,'eXtensible HyperText Markup Language (XHTML)',9,316,'others'); -INSERT INTO entity_mentions VALUES(417,'eXtensible HyperText Markup Language',9,316,'others'); -INSERT INTO entity_mentions VALUES(418,'XHTML',9,316,'others'); -INSERT INTO entity_mentions VALUES(419,'XML',9,317,'others'); -INSERT INTO entity_mentions VALUES(420,'Extensible Markup Language',9,317,'others'); -INSERT INTO entity_mentions VALUES(421,'Extensible Markup Language (XML)',9,317,'others'); -INSERT INTO entity_mentions VALUES(422,'MSXML',9,318,'others'); -INSERT INTO entity_mentions VALUES(423,'Microsoft - MSXML 4.0 SP2 4.2',9,318,'others'); -INSERT INTO entity_mentions VALUES(424,'Extensible Stylesheet Language',9,319,'others'); -INSERT INTO entity_mentions VALUES(425,'XSL',9,319,'others'); -INSERT INTO entity_mentions VALUES(426,'Extensible Stylesheet Language (XSL)',9,319,'others'); -INSERT INTO entity_mentions VALUES(427,'Extensible Stylesheet Language Transformations (XLST)',9,320,'others'); -INSERT INTO entity_mentions VALUES(428,'Extensible Stylesheet Language Transformations',9,320,'others'); -INSERT INTO entity_mentions VALUES(429,'XSLT',9,320,'others'); -INSERT INTO entity_mentions VALUES(430,'ServerCA Access GatewayF5',2,50,'others'); -INSERT INTO entity_mentions VALUES(431,'F5 Secure Web Gateway Services',2,50,'others'); -INSERT INTO entity_mentions VALUES(432,'Fabric OS',6,422,'others'); -INSERT INTO entity_mentions VALUES(433,'FabricOS',6,422,'others'); -INSERT INTO entity_mentions VALUES(434,'FileMaker Pro',2,51,'others'); -INSERT INTO entity_mentions VALUES(435,'FILEMAKER PRO 8.5',2,51,'others'); -INSERT INTO entity_mentions VALUES(436,'Flash',10,504,'others'); -INSERT INTO entity_mentions VALUES(437,'Flexnet 2016',2,52,'others'); -INSERT INTO entity_mentions VALUES(438,'FlexNet Manager Suite',2,52,'others'); -INSERT INTO entity_mentions VALUES(439,'FlexNet Manager Suite 2016',2,52,'others'); -INSERT INTO entity_mentions VALUES(440,'FOCUS',9,321,'others'); -INSERT INTO entity_mentions VALUES(441,'fortran',9,322,'others'); -INSERT INTO entity_mentions VALUES(442,'Rhino Software Inc - FTP Voyager 16.2',2,53,'others'); -INSERT INTO entity_mentions VALUES(443,'FTP Voyager',2,53,'others'); -INSERT INTO entity_mentions VALUES(444,'Genymotion',2,54,'others'); -INSERT INTO entity_mentions VALUES(445,'GlassFish',8,263,'others'); -INSERT INTO entity_mentions VALUES(446,'GlassFish Server 4 Open Source',8,263,'others'); -INSERT INTO entity_mentions VALUES(447,'GlassFish Server 4',8,263,'others'); -INSERT INTO entity_mentions VALUES(448,'GNU',6,423,'others'); -INSERT INTO entity_mentions VALUES(449,'Go',9,323,'others'); -INSERT INTO entity_mentions VALUES(450,'Chrome',2,55,'others'); -INSERT INTO entity_mentions VALUES(451,'Google Chrome',2,55,'others'); -INSERT INTO entity_mentions VALUES(452,'Google Chrome 76',2,55,'others'); -INSERT INTO entity_mentions VALUES(453,'GraphQL',9,324,'others'); -INSERT INTO entity_mentions VALUES(454,'EMC Greenplum',2,56,'others'); -INSERT INTO entity_mentions VALUES(455,'Groovy',9,325,'others'); -INSERT INTO entity_mentions VALUES(456,'Hadoop',2,57,'others'); -INSERT INTO entity_mentions VALUES(457,'HAProxy',8,264,'others'); -INSERT INTO entity_mentions VALUES(458,'HiveQL',9,326,'others'); -INSERT INTO entity_mentions VALUES(459,'HP aC++ compiler',2,58,'others'); -INSERT INTO entity_mentions VALUES(460,'HP C++',2,58,'others'); -INSERT INTO entity_mentions VALUES(461,'HP aC++',2,58,'others'); -INSERT INTO entity_mentions VALUES(462,'HP C/aC++',2,58,'others'); -INSERT INTO entity_mentions VALUES(463,'HP C++ 10.20',2,58,'others'); -INSERT INTO entity_mentions VALUES(464,'HPC 11.11',2,59,'others'); -INSERT INTO entity_mentions VALUES(465,'HP C/ANSI C compiler',2,59,'others'); -INSERT INTO entity_mentions VALUES(466,'HP C/ANSI C',2,59,'others'); -INSERT INTO entity_mentions VALUES(467,'HP Nonstop J06.20.00',4,293,'others'); -INSERT INTO entity_mentions VALUES(468,'HP Nonstop',4,293,'others'); -INSERT INTO entity_mentions VALUES(469,'HP Operations Orchestration (HPOO)',2,60,'others'); -INSERT INTO entity_mentions VALUES(470,'HP Operations Orchestration',2,60,'others'); -INSERT INTO entity_mentions VALUES(471,'HPOO',2,60,'others'); -INSERT INTO entity_mentions VALUES(472,'HPSA',2,61,'others'); -INSERT INTO entity_mentions VALUES(473,'HP Server Automation',2,61,'others'); -INSERT INTO entity_mentions VALUES(474,'HP Server Automation (HPSA)',2,61,'others'); -INSERT INTO entity_mentions VALUES(475,'HFS',10,505,'others'); -INSERT INTO entity_mentions VALUES(476,'www.rejetto.com - HttpFileServer 2.3',10,505,'others'); -INSERT INTO entity_mentions VALUES(477,'HTTP File Server',10,505,'others'); -INSERT INTO entity_mentions VALUES(478,'HttpFileServer',10,505,'others'); -INSERT INTO entity_mentions VALUES(479,'Hypertext Markup Language',9,327,'others'); -INSERT INTO entity_mentions VALUES(480,'HTML4',9,327,'others'); -INSERT INTO entity_mentions VALUES(481,'HTML',9,327,'others'); -INSERT INTO entity_mentions VALUES(482,'Hypertext Markup Language (HTML)',9,327,'others'); -INSERT INTO entity_mentions VALUES(483,'HTML5',9,327,'others'); -INSERT INTO entity_mentions VALUES(484,'IBM BigFix',2,62,'others'); -INSERT INTO entity_mentions VALUES(485,'IBM - IBM BigFix Platform',2,62,'others'); -INSERT INTO entity_mentions VALUES(486,'IBM BigFix Platform',2,62,'others'); -INSERT INTO entity_mentions VALUES(487,'IBM - IBM BigFix Platform Client Deploy Tool 9.5',5,457,'others'); -INSERT INTO entity_mentions VALUES(488,'Client Deploy Tool',5,457,'others'); -INSERT INTO entity_mentions VALUES(489,'(IBM) IBM Business Monitor 8.5.6',2,63,'others'); -INSERT INTO entity_mentions VALUES(490,'IBM Business Monitor',2,63,'others'); -INSERT INTO entity_mentions VALUES(491,'IBM BPM',2,64,'others'); -INSERT INTO entity_mentions VALUES(492,'IBM Business Process Manager',2,64,'others'); -INSERT INTO entity_mentions VALUES(493,'IBM Business Process Manager 8.5.7.0',2,64,'others'); -INSERT INTO entity_mentions VALUES(494,'(IBM) IBM Business Process Manager 8.5.6',2,64,'others'); -INSERT INTO entity_mentions VALUES(495,'IBM Business Process Manager 8.5.6.0',2,64,'others'); -INSERT INTO entity_mentions VALUES(496,'IBM Content Manager OnDemand',2,65,'others'); -INSERT INTO entity_mentions VALUES(497,'IBM Content Manager OnDemand (CMOD)',2,65,'others'); -INSERT INTO entity_mentions VALUES(498,'CMOD',2,65,'others'); -INSERT INTO entity_mentions VALUES(499,'Data Power',4,294,'others'); -INSERT INTO entity_mentions VALUES(500,'IBM DataPower Gateway',4,294,'others'); -INSERT INTO entity_mentions VALUES(501,'IDG.7.5.2.19hp',4,294,'others'); -INSERT INTO entity_mentions VALUES(502,'datapower-connector',4,294,'others'); -INSERT INTO entity_mentions VALUES(503,'FileNet',2,66,'others'); -INSERT INTO entity_mentions VALUES(504,'IBM FileNet',2,66,'others'); -INSERT INTO entity_mentions VALUES(505,'IBM FileNet P8 Platform',2,66,'others'); -INSERT INTO entity_mentions VALUES(506,'hlasm',9,328,'others'); -INSERT INTO entity_mentions VALUES(507,'IBM High Level Assembler',9,328,'others'); -INSERT INTO entity_mentions VALUES(508,'IBM High Level Assembler (HLASM)',9,328,'others'); -INSERT INTO entity_mentions VALUES(509,'IBM - IBM HTTP Server 6.1',8,265,'others'); -INSERT INTO entity_mentions VALUES(510,'IHS',8,265,'others'); -INSERT INTO entity_mentions VALUES(511,'IBM - IBM HTTP Server 7',8,265,'others'); -INSERT INTO entity_mentions VALUES(512,'IBM - IBM HTTP Server 8.5',8,265,'others'); -INSERT INTO entity_mentions VALUES(513,'WebSphere and IHS',8,265,'others'); -INSERT INTO entity_mentions VALUES(514,'WebSphere http',8,265,'others'); -INSERT INTO entity_mentions VALUES(515,'(IBM) IBM HTTP Server 8.5',8,265,'others'); -INSERT INTO entity_mentions VALUES(516,'IBM HTTP Server',8,265,'others'); -INSERT INTO entity_mentions VALUES(517,'IBM HTTP SERVER 8',8,265,'others'); -INSERT INTO entity_mentions VALUES(518,'IBM HTTP Server 8.',8,265,'others'); -INSERT INTO entity_mentions VALUES(519,'IBM Websphere HTTP Server',8,265,'others'); -INSERT INTO entity_mentions VALUES(520,'IBM HTTP',8,265,'others'); -INSERT INTO entity_mentions VALUES(521,'WebSphere IHS',8,265,'others'); -INSERT INTO entity_mentions VALUES(522,'WebSphere -IHS',8,265,'others'); -INSERT INTO entity_mentions VALUES(523,'IBM HTTP SERVER 6.1',8,265,'others'); -INSERT INTO entity_mentions VALUES(524,'IBMi',6,424,'others'); -INSERT INTO entity_mentions VALUES(525,'IBM i',6,424,'others'); -INSERT INTO entity_mentions VALUES(526,'OS400 V7R1',6,424,'others'); -INSERT INTO entity_mentions VALUES(527,'OS400',6,424,'others'); -INSERT INTO entity_mentions VALUES(528,'OS/400',6,424,'others'); -INSERT INTO entity_mentions VALUES(529,'CLP',9,329,'others'); -INSERT INTO entity_mentions VALUES(530,'IBM i Control Language (CL)',9,329,'others'); -INSERT INTO entity_mentions VALUES(531,'IBM Informix-4GL',9,330,'others'); -INSERT INTO entity_mentions VALUES(532,'Informix 4GL',9,330,'others'); -INSERT INTO entity_mentions VALUES(533,'Informix-4GL',9,330,'others'); -INSERT INTO entity_mentions VALUES(534,'DATASTAGE',2,67,'others'); -INSERT INTO entity_mentions VALUES(535,'IBM InfoSphere DataStage',2,67,'others'); -INSERT INTO entity_mentions VALUES(536,'datastage 11.3',2,67,'others'); -INSERT INTO entity_mentions VALUES(537,'IBM Integration Bus 10.0',2,68,'others'); -INSERT INTO entity_mentions VALUES(538,'IBM Integration Bus v9',2,68,'others'); -INSERT INTO entity_mentions VALUES(539,'IBM Integration Bus 9.0',2,68,'others'); -INSERT INTO entity_mentions VALUES(540,'IBM Integration Bus',2,68,'others'); -INSERT INTO entity_mentions VALUES(541,'IIB',2,68,'others'); -INSERT INTO entity_mentions VALUES(542,'IBM Integration Bus v10',2,68,'others'); -INSERT INTO entity_mentions VALUES(543,'Extended Structured Query Language (ESQL)',5,458,'others'); -INSERT INTO entity_mentions VALUES(544,'ESQL',5,458,'others'); -INSERT INTO entity_mentions VALUES(545,'Extended Structured Query Language',5,458,'others'); -INSERT INTO entity_mentions VALUES(546,'IBM - IBM License Metric Tool and Tivoli Asset Discovery for Distributed',2,69,'others'); -INSERT INTO entity_mentions VALUES(547,'IBM License Metric Tool',2,69,'others'); -INSERT INTO entity_mentions VALUES(548,'Maximo',2,70,'others'); -INSERT INTO entity_mentions VALUES(549,'IBM Maximo 7.6',2,70,'others'); -INSERT INTO entity_mentions VALUES(550,'IBM Maximo',2,70,'others'); -INSERT INTO entity_mentions VALUES(551,'IBM Migration Utility',2,71,'others'); -INSERT INTO entity_mentions VALUES(552,'IBM WorkLight',2,72,'others'); -INSERT INTO entity_mentions VALUES(553,'IBM Mobile Foundation',2,72,'others'); -INSERT INTO entity_mentions VALUES(554,'Operational Decision Manager',2,73,'others'); -INSERT INTO entity_mentions VALUES(555,'ILOG JRules',2,73,'others'); -INSERT INTO entity_mentions VALUES(556,'Decision Server 8.0.1.0',2,73,'others'); -INSERT INTO entity_mentions VALUES(557,'IBM WebSphere ILOG Jrules',2,73,'others'); -INSERT INTO entity_mentions VALUES(558,'IBM Operational Decision Manager (ODM)',2,73,'others'); -INSERT INTO entity_mentions VALUES(559,'Decision Center 8.0.1.0',2,73,'others'); -INSERT INTO entity_mentions VALUES(560,'IBM Operational Decision Manager',2,73,'others'); -INSERT INTO entity_mentions VALUES(561,'IBM ODM',2,73,'others'); -INSERT INTO entity_mentions VALUES(562,'AS400',4,295,'others'); -INSERT INTO entity_mentions VALUES(563,'AS/400',4,295,'others'); -INSERT INTO entity_mentions VALUES(564,'IBM Power Systems',4,295,'others'); -INSERT INTO entity_mentions VALUES(565,'System p',4,295,'others'); -INSERT INTO entity_mentions VALUES(566,'System i',4,295,'others'); -INSERT INTO entity_mentions VALUES(567,'P-series',4,295,'others'); -INSERT INTO entity_mentions VALUES(568,'IBM iSeries/AS400 system Model 520',4,295,'others'); -INSERT INTO entity_mentions VALUES(569,'IBM - IBM Spectrum Scale Express Client 4.1',2,74,'others'); -INSERT INTO entity_mentions VALUES(570,'IBM Spectrum Scale Server',2,74,'others'); -INSERT INTO entity_mentions VALUES(571,'IBM Spectrum Scale',2,74,'others'); -INSERT INTO entity_mentions VALUES(572,'IBM - IBM Spectrum Scale Express Server 4.1',2,74,'others'); -INSERT INTO entity_mentions VALUES(573,'IBM - IBM Spectrum Scale Standard Server 4.1',2,74,'others'); -INSERT INTO entity_mentions VALUES(574,'IBM - IBM Spectrum Scale Express FPO 4.1',2,74,'others'); -INSERT INTO entity_mentions VALUES(575,'IBM Spectrum Scale FPO',2,74,'others'); -INSERT INTO entity_mentions VALUES(576,'IBM Spectrum Scale Client',2,74,'others'); -INSERT INTO entity_mentions VALUES(577,'IBM - IBM Spectrum Scale Standard FPO 4.1',2,74,'others'); -INSERT INTO entity_mentions VALUES(578,'IBM - IBM Spectrum Scale Standard Client 4.1',2,74,'others'); -INSERT INTO entity_mentions VALUES(579,'IBM Tivoli Asset Management',2,75,'others'); -INSERT INTO entity_mentions VALUES(580,'Tivoli Asset Management',2,75,'others'); -INSERT INTO entity_mentions VALUES(581,'Asset Discovery for Distributed',5,459,'others'); -INSERT INTO entity_mentions VALUES(582,'Tivoli Asset Discovery for Distributed',5,459,'others'); -INSERT INTO entity_mentions VALUES(583,'IBM - IBM Tivoli Composite Application Manager for Microsoft Applications - MS SQL Server Agent 6.3',2,76,'others'); -INSERT INTO entity_mentions VALUES(584,'IBM Tivoli Composite Application Manager',2,76,'others'); -INSERT INTO entity_mentions VALUES(585,'IBM - IBM Tivoli Composite Application Manager Agent for DB2 7.1',2,76,'others'); -INSERT INTO entity_mentions VALUES(586,'IBM - IBM Tivoli Composite Application Manager for Microsoft Applications - IIS server agent 6.3',2,76,'others'); -INSERT INTO entity_mentions VALUES(587,'IBM - IBM Tivoli Monitoring - Windows OS Agent 6.2',2,77,'others'); -INSERT INTO entity_mentions VALUES(588,'IBM - IBM Tivoli Monitoring for Databases - DB2 Agent 6.2',2,77,'others'); -INSERT INTO entity_mentions VALUES(589,'IBM Tivoli Monitoring',2,77,'others'); -INSERT INTO entity_mentions VALUES(590,'IBM - IBM Tivoli Monitoring - Windows OS Agent 6.3',2,77,'others'); -INSERT INTO entity_mentions VALUES(591,'Tivoli Monitoring',2,77,'others'); -INSERT INTO entity_mentions VALUES(592,'Database MS SQL Agent',2,77,'others'); -INSERT INTO entity_mentions VALUES(593,'Linux OS Agent',2,77,'others'); -INSERT INTO entity_mentions VALUES(594,'Database DB2 Agent',2,77,'others'); -INSERT INTO entity_mentions VALUES(595,'IBM - IBM Tivoli Monitoring for Databases - MS SQL Agent 6.2',2,77,'others'); -INSERT INTO entity_mentions VALUES(596,'IBM - IBM Tivoli Monitoring - Linux OS Agent 6.2',2,77,'others'); -INSERT INTO entity_mentions VALUES(597,'Windows OS Agent',2,77,'others'); -INSERT INTO entity_mentions VALUES(598,'IBM - IBM Tivoli Monitoring - Windows OS Agent 6',2,77,'others'); -INSERT INTO entity_mentions VALUES(599,'IBM Tivoli Storage Manager',2,78,'others'); -INSERT INTO entity_mentions VALUES(600,'IBM - IBM TSM FCM',2,78,'others'); -INSERT INTO entity_mentions VALUES(601,'Tivoli Storage Manager',2,78,'others'); -INSERT INTO entity_mentions VALUES(602,'IBM - IBM Tivoli Storage Manager',2,78,'others'); -INSERT INTO entity_mentions VALUES(603,'IBM Tivoli Storage Manager API',2,78,'others'); -INSERT INTO entity_mentions VALUES(604,'IBM - IBM Tivoli Storage Manager for Databases - Data Protection for Microsoft SQL 6.3',2,78,'others'); -INSERT INTO entity_mentions VALUES(605,'Databases Data Protection for Microsoft SQL',2,78,'others'); -INSERT INTO entity_mentions VALUES(606,'IBM - IBM Tivoli Storage Manager API 6.4',2,78,'others'); -INSERT INTO entity_mentions VALUES(607,'IBM - IBM Spectrum Protect Data Protection for Microsoft SQL Server 8.1',2,78,'others'); -INSERT INTO entity_mentions VALUES(608,'IBM Spectrum Protect Data Protection',2,78,'others'); -INSERT INTO entity_mentions VALUES(609,'TSM API',5,460,'others'); -INSERT INTO entity_mentions VALUES(610,'IBM - IBM Spectrum Protect API 7.1',5,460,'others'); -INSERT INTO entity_mentions VALUES(611,'IBM - IBM Spectrum Protect Client',5,461,'others'); -INSERT INTO entity_mentions VALUES(612,'TSM Client',5,461,'others'); -INSERT INTO entity_mentions VALUES(613,'IBM - IBM Tivoli Storage Manager Client',5,461,'others'); -INSERT INTO entity_mentions VALUES(614,'TSM Storage Agent',5,462,'others'); -INSERT INTO entity_mentions VALUES(615,'IBM - IBM Spectrum Protect Storage Agent 8.1',5,462,'others'); -INSERT INTO entity_mentions VALUES(616,'VSS Requestor',5,463,'others'); -INSERT INTO entity_mentions VALUES(617,'VSS Requestor configured 8.1',5,463,'others'); -INSERT INTO entity_mentions VALUES(618,'VSS Requestor 7.1',5,463,'others'); -INSERT INTO entity_mentions VALUES(619,'TWS-WS',2,79,'others'); -INSERT INTO entity_mentions VALUES(620,'Tivoli Workload Scheduler',2,79,'others'); -INSERT INTO entity_mentions VALUES(621,'IBM Tivoli Workload Scheduler (TWS)',2,79,'others'); -INSERT INTO entity_mentions VALUES(622,'IBM WebSphere Business Integration Adaptor',2,80,'others'); -INSERT INTO entity_mentions VALUES(623,'WebSphere Business Integration Adaptor',2,80,'others'); -INSERT INTO entity_mentions VALUES(624,'wbia 2.6',2,80,'others'); -INSERT INTO entity_mentions VALUES(625,'IBM WBIA 2.6.0.12',2,80,'others'); -INSERT INTO entity_mentions VALUES(626,'IBM Websphere MQ 7.1',2,81,'others'); -INSERT INTO entity_mentions VALUES(627,'MQ',2,81,'others'); -INSERT INTO entity_mentions VALUES(628,'MQ 9.1',2,81,'others'); -INSERT INTO entity_mentions VALUES(629,'IBM WebSphere MQ Client 7.5',2,81,'others'); -INSERT INTO entity_mentions VALUES(630,'Websphere MQ',2,81,'others'); -INSERT INTO entity_mentions VALUES(631,'MQ 7',2,81,'others'); -INSERT INTO entity_mentions VALUES(632,'MQ 6',2,81,'others'); -INSERT INTO entity_mentions VALUES(633,'MQ 9.0',2,81,'others'); -INSERT INTO entity_mentions VALUES(634,'MQ 5.3',2,81,'others'); -INSERT INTO entity_mentions VALUES(635,'MQ 7.01',2,81,'others'); -INSERT INTO entity_mentions VALUES(636,'MQ 7.5',2,81,'others'); -INSERT INTO entity_mentions VALUES(637,'MQSeries 8.0',2,81,'others'); -INSERT INTO entity_mentions VALUES(638,'IBM Websphere MQ',2,81,'others'); -INSERT INTO entity_mentions VALUES(639,'IBM MQ',2,81,'others'); -INSERT INTO entity_mentions VALUES(640,'IBM WEBSPHERE MQ SERVER 7.5',2,81,'others'); -INSERT INTO entity_mentions VALUES(641,'WSMQ 8.0',2,81,'others'); -INSERT INTO entity_mentions VALUES(642,'MQ 9.0.5',2,81,'others'); -INSERT INTO entity_mentions VALUES(643,'IBM WebSphere MQ Telemetry Service 7.5',2,82,'others'); -INSERT INTO entity_mentions VALUES(644,'IBM WebSphere MQ Telemetry',2,82,'others'); -INSERT INTO entity_mentions VALUES(645,'WTX',2,83,'others'); -INSERT INTO entity_mentions VALUES(646,'IBM WebSphere Transformation Extender (WTX)',2,83,'others'); -INSERT INTO entity_mentions VALUES(647,'IBM WebSphere Transformation Extender',2,83,'others'); -INSERT INTO entity_mentions VALUES(648,'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.6001.18000',8,266,'others'); -INSERT INTO entity_mentions VALUES(649,'IIS 7.5',8,266,'others'); -INSERT INTO entity_mentions VALUES(650,'Internet Information Services (IIS)',8,266,'others'); -INSERT INTO entity_mentions VALUES(651,'Microsoft Internet Information Services 7.5',8,266,'others'); -INSERT INTO entity_mentions VALUES(652,'MICROSOFT INTERNET INFORMATION SERVICES VERSION 7',8,266,'others'); -INSERT INTO entity_mentions VALUES(653,'Microsoft Internet Information Services',8,266,'others'); -INSERT INTO entity_mentions VALUES(654,'Microsoft Internet Information',8,266,'others'); -INSERT INTO entity_mentions VALUES(655,'IIS Express 8',8,266,'others'); -INSERT INTO entity_mentions VALUES(656,'Internet Information Services (IIS 6.0)',8,266,'others'); -INSERT INTO entity_mentions VALUES(657,'Microsoft IIS 8.5',8,266,'others'); -INSERT INTO entity_mentions VALUES(658,'IIS',8,266,'others'); -INSERT INTO entity_mentions VALUES(659,'IIS Express',8,266,'others'); -INSERT INTO entity_mentions VALUES(660,'MICROSOFT INTERNET INFORMATION SERVICES VERSION 7.5',8,266,'others'); -INSERT INTO entity_mentions VALUES(661,'Microsoft Internet Inf',8,266,'others'); -INSERT INTO entity_mentions VALUES(662,'MICROSOFT INTERNET INFORMATION SERVER VERSION 5.1.2600.2180',8,266,'others'); -INSERT INTO entity_mentions VALUES(663,'TS-IIS Express 10',8,266,'others'); -INSERT INTO entity_mentions VALUES(664,'Microsoft Internet Informat',8,266,'others'); -INSERT INTO entity_mentions VALUES(665,'Microsoft IIS Webserver',8,266,'others'); -INSERT INTO entity_mentions VALUES(666,'IIS Server',8,266,'others'); -INSERT INTO entity_mentions VALUES(667,'Microsoft Internet Information Services 8.5',8,266,'others'); -INSERT INTO entity_mentions VALUES(668,'IIS Version 7',8,266,'others'); -INSERT INTO entity_mentions VALUES(669,'Microsoft Internet Information Services 8.0',8,266,'others'); -INSERT INTO entity_mentions VALUES(670,'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.3790.1830',8,266,'others'); -INSERT INTO entity_mentions VALUES(671,'IIS 8.5.9600.16386',8,266,'others'); -INSERT INTO entity_mentions VALUES(672,'IIS 7.x',8,266,'others'); -INSERT INTO entity_mentions VALUES(673,'IIS 7.0',8,266,'others'); -INSERT INTO entity_mentions VALUES(674,'IIS 10',8,266,'others'); -INSERT INTO entity_mentions VALUES(675,'Microsoft Internet Information Services 6.0',8,266,'others'); -INSERT INTO entity_mentions VALUES(676,'Internet Information Services (IIS 7.0)',8,266,'others'); -INSERT INTO entity_mentions VALUES(677,'Microsoft Internet Information Services 10.0',8,266,'others'); -INSERT INTO entity_mentions VALUES(678,'IIS 8.5',8,266,'others'); -INSERT INTO entity_mentions VALUES(679,'Microsoft - IIS Express 10',8,266,'others'); -INSERT INTO entity_mentions VALUES(680,'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.*',8,266,'others'); -INSERT INTO entity_mentions VALUES(681,'Microsoft IIS 7.0',8,266,'others'); -INSERT INTO entity_mentions VALUES(682,'MICROSOFT INTERNET INFORMATION SERVICES VERSION 8',8,266,'others'); -INSERT INTO entity_mentions VALUES(683,'IIS v 7.0',8,266,'others'); -INSERT INTO entity_mentions VALUES(684,'IIS 7.2.1952',8,266,'others'); -INSERT INTO entity_mentions VALUES(685,'Microsoft Internet Information Services 7.0',8,266,'others'); -INSERT INTO entity_mentions VALUES(686,'Microsoft IIS 8.0',8,266,'others'); -INSERT INTO entity_mentions VALUES(687,'IIS Web Server v6',8,266,'others'); -INSERT INTO entity_mentions VALUES(688,'IIS 8.x',8,266,'others'); -INSERT INTO entity_mentions VALUES(689,'IIS 8.0.1557',8,266,'others'); -INSERT INTO entity_mentions VALUES(690,'IIS 11',8,266,'others'); -INSERT INTO entity_mentions VALUES(691,'IIS 6.0',8,266,'others'); -INSERT INTO entity_mentions VALUES(692,'IIS Express 7',8,266,'others'); -INSERT INTO entity_mentions VALUES(693,'IIS 7.2.2',8,266,'others'); -INSERT INTO entity_mentions VALUES(694,'IIS Instance',8,266,'others'); -INSERT INTO entity_mentions VALUES(695,'Microsoft IIS 6.0',8,266,'others'); -INSERT INTO entity_mentions VALUES(696,'IIS Express 10',8,266,'others'); -INSERT INTO entity_mentions VALUES(697,'IIS Servers',8,266,'others'); -INSERT INTO entity_mentions VALUES(698,'MS-IIS',8,266,'others'); -INSERT INTO entity_mentions VALUES(699,'Internet Information Services (IIS 8.5)',8,266,'others'); -INSERT INTO entity_mentions VALUES(700,'IIS 8.0',8,266,'others'); -INSERT INTO entity_mentions VALUES(701,'Microsoft IIS 7.5',8,266,'others'); -INSERT INTO entity_mentions VALUES(702,'IIS Version 8 64 bit',8,266,'others'); -INSERT INTO entity_mentions VALUES(703,'IIS 6',8,266,'others'); -INSERT INTO entity_mentions VALUES(704,'IIS7.5',8,266,'others'); -INSERT INTO entity_mentions VALUES(705,'IEMT',7,489,'others'); -INSERT INTO entity_mentions VALUES(706,'Microsoft - IIS 6.0 Migration Tool 1',7,489,'others'); -INSERT INTO entity_mentions VALUES(707,'IIS Easy Migration Tool',7,489,'others'); -INSERT INTO entity_mentions VALUES(708,'Easy Migration Tool',7,489,'others'); -INSERT INTO entity_mentions VALUES(709,'Easy Migration Tool (IEMT)',7,489,'others'); -INSERT INTO entity_mentions VALUES(710,'IIS Easy Migration Tool (IEMT)',7,489,'others'); -INSERT INTO entity_mentions VALUES(711,'MS-ARR',7,490,'others'); -INSERT INTO entity_mentions VALUES(712,'Application Request Routing',7,490,'others'); -INSERT INTO entity_mentions VALUES(713,'ARR',7,490,'others'); -INSERT INTO entity_mentions VALUES(714,'Application Request Routing (ARR)',7,490,'others'); -INSERT INTO entity_mentions VALUES(715,'IIS Manager',7,491,'others'); -INSERT INTO entity_mentions VALUES(716,'IMS DB',2,84,'others'); -INSERT INTO entity_mentions VALUES(717,'IMS',2,84,'others'); -INSERT INTO entity_mentions VALUES(718,'Infozip 6',2,85,'others'); -INSERT INTO entity_mentions VALUES(719,'Infozip',2,85,'others'); -INSERT INTO entity_mentions VALUES(720,'Info-ZIP',2,85,'others'); -INSERT INTO entity_mentions VALUES(721,'Infobright Community Edition',2,86,'others'); -INSERT INTO entity_mentions VALUES(722,'Infobright Community Edition (ICE)',2,86,'others'); -INSERT INTO entity_mentions VALUES(723,'infobright-ce',2,86,'others'); -INSERT INTO entity_mentions VALUES(724,'informatica',2,87,'others'); -INSERT INTO entity_mentions VALUES(725,'Informatica PowerCenter',2,87,'others'); -INSERT INTO entity_mentions VALUES(726,'Informatica PowerCenter 10.2',2,87,'others'); -INSERT INTO entity_mentions VALUES(727,'Informatica Version 10.2.0 HotFix1',2,87,'others'); -INSERT INTO entity_mentions VALUES(728,'Informatica Power Center 8.6.1',2,87,'others'); -INSERT INTO entity_mentions VALUES(729,'ETL tool: Informatica',2,87,'others'); -INSERT INTO entity_mentions VALUES(730,'Informatica database server-mspr50',2,87,'others'); -INSERT INTO entity_mentions VALUES(731,'Informatica ETL',2,87,'others'); -INSERT INTO entity_mentions VALUES(732,'Informatica Power Center 9.6.1',2,87,'others'); -INSERT INTO entity_mentions VALUES(733,'Informatica PowerCenter 10.2-msprap150',2,87,'others'); -INSERT INTO entity_mentions VALUES(734,'ETL tool=Informatica',2,87,'others'); -INSERT INTO entity_mentions VALUES(735,'Ingres',2,88,'others'); -INSERT INTO entity_mentions VALUES(736,'INGRES DBM',2,88,'others'); -INSERT INTO entity_mentions VALUES(737,'Intel(R) Xeon(R) CPU E7- 4870 @ 2.40GHz',4,296,'others'); -INSERT INTO entity_mentions VALUES(738,'intel(r) xeon(r) cpu e7- 4870 @ 2.40ghz',4,296,'others'); -INSERT INTO entity_mentions VALUES(739,'Intel(R) Xeon(R) CPU E5530 @ 2.40GHz',4,296,'others'); -INSERT INTO entity_mentions VALUES(740,'Intel(R) Xeon(R) CPU X7550 @ 2.00GHz',4,296,'others'); -INSERT INTO entity_mentions VALUES(741,'Intel(R) Xeon(R) CPU E5-2648L v4 @ 1.80GHz',4,296,'others'); -INSERT INTO entity_mentions VALUES(742,'Intel Xeon Processor',4,296,'others'); -INSERT INTO entity_mentions VALUES(743,'IMSVA 9.1',3,566,'others'); -INSERT INTO entity_mentions VALUES(744,'InterScan Messaging Security Virtual Appliance',3,566,'others'); -INSERT INTO entity_mentions VALUES(745,'InterScan Messaging Security Virtual Appliance (IMSVA)',3,566,'others'); -INSERT INTO entity_mentions VALUES(746,'IMSVA',3,566,'others'); -INSERT INTO entity_mentions VALUES(747,'iOS',6,425,'others'); -INSERT INTO entity_mentions VALUES(748,'Java 1.8',9,331,'others'); -INSERT INTO entity_mentions VALUES(749,'Java 7',9,331,'others'); -INSERT INTO entity_mentions VALUES(750,'Java on Weblogic server',9,331,'others'); -INSERT INTO entity_mentions VALUES(751,'Java',9,331,'others'); -INSERT INTO entity_mentions VALUES(752,'Java5',9,331,'others'); -INSERT INTO entity_mentions VALUES(753,'Java 6',9,331,'others'); -INSERT INTO entity_mentions VALUES(754,'Java 6.0',9,331,'others'); -INSERT INTO entity_mentions VALUES(755,'Java 7 Update 25',9,331,'others'); -INSERT INTO entity_mentions VALUES(756,'Java Scripting',9,331,'others'); -INSERT INTO entity_mentions VALUES(757,'J2ee',9,331,'others'); -INSERT INTO entity_mentions VALUES(758,'Java (open source)',9,331,'others'); -INSERT INTO entity_mentions VALUES(759,'Java 5',9,331,'others'); -INSERT INTO entity_mentions VALUES(760,'Java 1.5',9,331,'others'); -INSERT INTO entity_mentions VALUES(761,'Java (1.6)',9,331,'others'); -INSERT INTO entity_mentions VALUES(762,'Java 1.8.0_92',9,331,'others'); -INSERT INTO entity_mentions VALUES(763,'Java 1.6',9,331,'others'); -INSERT INTO entity_mentions VALUES(764,'J2EE 6',9,331,'others'); -INSERT INTO entity_mentions VALUES(765,'Java (J2EE)',9,331,'others'); -INSERT INTO entity_mentions VALUES(766,'Oracle - Java Runtime Environment 11',10,506,'others'); -INSERT INTO entity_mentions VALUES(767,'JRE',10,506,'others'); -INSERT INTO entity_mentions VALUES(768,'Java Runtime',10,506,'others'); -INSERT INTO entity_mentions VALUES(769,'Oracle - Java Runtime Environment 8',10,506,'others'); -INSERT INTO entity_mentions VALUES(770,'Oracle - Java Runtime Environment 7',10,506,'others'); -INSERT INTO entity_mentions VALUES(771,'Java Runtime Environment (JRE)',10,506,'others'); -INSERT INTO entity_mentions VALUES(772,'Java Runtime 6',10,506,'others'); -INSERT INTO entity_mentions VALUES(773,'Camel',12,378,'others'); -INSERT INTO entity_mentions VALUES(774,'Apache Camel',12,378,'others'); -INSERT INTO entity_mentions VALUES(775,'SS7/CAMEL',12,378,'others'); -INSERT INTO entity_mentions VALUES(776,'Apache mmons-beanutils',12,379,'others'); -INSERT INTO entity_mentions VALUES(777,'Apache Commons BeanUtils',12,379,'others'); -INSERT INTO entity_mentions VALUES(778,'PDFBox',12,380,'others'); -INSERT INTO entity_mentions VALUES(779,'Apache PDFBox',12,380,'others'); -INSERT INTO entity_mentions VALUES(780,'PDFBox 1.6',12,380,'others'); -INSERT INTO entity_mentions VALUES(781,'Velocity',12,381,'others'); -INSERT INTO entity_mentions VALUES(782,'Apache Velocity',12,381,'others'); -INSERT INTO entity_mentions VALUES(783,'EclipseLink 2.6.4',12,382,'others'); -INSERT INTO entity_mentions VALUES(784,'EclipseLink',12,382,'others'); -INSERT INTO entity_mentions VALUES(785,'EJB',12,383,'others'); -INSERT INTO entity_mentions VALUES(786,'EJBS',12,383,'others'); -INSERT INTO entity_mentions VALUES(787,'Ejb 2.x',12,383,'others'); -INSERT INTO entity_mentions VALUES(788,'Enterprise JavaBeans (EJB)',12,383,'others'); -INSERT INTO entity_mentions VALUES(789,'Enterprise JavaBeans',12,383,'others'); -INSERT INTO entity_mentions VALUES(790,'JAVA-XSL',9,332,'others'); -INSERT INTO entity_mentions VALUES(791,'Extensible Stylesheet Language',9,332,'others'); -INSERT INTO entity_mentions VALUES(792,'Extensible Stylesheet Language (XSL)',9,332,'others'); -INSERT INTO entity_mentions VALUES(793,'EZMorph',12,384,'others'); -INSERT INTO entity_mentions VALUES(794,'GWT',12,385,'others'); -INSERT INTO entity_mentions VALUES(795,'Google Web Toolkit',12,385,'others'); -INSERT INTO entity_mentions VALUES(796,'Google Web Toolkit (GWT)',12,385,'others'); -INSERT INTO entity_mentions VALUES(797,'Hibernate',12,386,'others'); -INSERT INTO entity_mentions VALUES(798,'IBM - IBM SDK 5.0 for Windows AMD/EMT 64',12,387,'others'); -INSERT INTO entity_mentions VALUES(799,'IBM SDK',12,387,'others'); -INSERT INTO entity_mentions VALUES(800,'Oracle - JDK/SDK',12,388,'others'); -INSERT INTO entity_mentions VALUES(801,'JDK 1.7.0',12,388,'others'); -INSERT INTO entity_mentions VALUES(802,'JDK',12,388,'others'); -INSERT INTO entity_mentions VALUES(803,'Oracle (Sun) JDK/JRE',12,388,'others'); -INSERT INTO entity_mentions VALUES(804,'JDK8',12,388,'others'); -INSERT INTO entity_mentions VALUES(805,'JDK 1.5',12,388,'others'); -INSERT INTO entity_mentions VALUES(806,'Oracle JDK',12,388,'others'); -INSERT INTO entity_mentions VALUES(807,'Java Development Kit (JDK)',12,388,'others'); -INSERT INTO entity_mentions VALUES(808,'Oracle - JDK/SDK 8',12,388,'others'); -INSERT INTO entity_mentions VALUES(809,'Java Development Kit',12,388,'others'); -INSERT INTO entity_mentions VALUES(810,'JDK 1.6.0_24',12,388,'others'); -INSERT INTO entity_mentions VALUES(811,'JDK8 (1.8)',12,388,'others'); -INSERT INTO entity_mentions VALUES(812,'JDK 1.3',12,388,'others'); -INSERT INTO entity_mentions VALUES(813,'JEE',9,333,'others'); -INSERT INTO entity_mentions VALUES(814,'Java EE',9,333,'others'); -INSERT INTO entity_mentions VALUES(815,'Java Enterprise Edition (Java EE)',9,333,'others'); -INSERT INTO entity_mentions VALUES(816,'Java Enterprise Edition',9,333,'others'); -INSERT INTO entity_mentions VALUES(817,'Java Message Service (JMS)',12,389,'others'); -INSERT INTO entity_mentions VALUES(818,'JMS',12,389,'others'); -INSERT INTO entity_mentions VALUES(819,'Java Message Service',12,389,'others'); -INSERT INTO entity_mentions VALUES(820,'Java Standard Edition (Java SE)',9,334,'others'); -INSERT INTO entity_mentions VALUES(821,'oracle - java - java se 6',9,334,'others'); -INSERT INTO entity_mentions VALUES(822,'Java SE 6',9,334,'others'); -INSERT INTO entity_mentions VALUES(823,'Java Web Start',12,390,'others'); -INSERT INTO entity_mentions VALUES(824,'Oracle - Java Web Start 1.5',12,390,'others'); -INSERT INTO entity_mentions VALUES(825,'Oracle - Java Web Start 6',12,390,'others'); -INSERT INTO entity_mentions VALUES(826,'JavaServer Faces',12,391,'others'); -INSERT INTO entity_mentions VALUES(827,'JavaServer Faces (JSF)',12,391,'others'); -INSERT INTO entity_mentions VALUES(828,'JSF',12,391,'others'); -INSERT INTO entity_mentions VALUES(829,'JavaServer Pages',9,335,'others'); -INSERT INTO entity_mentions VALUES(830,'JavaServer Pages (JSP)',9,335,'others'); -INSERT INTO entity_mentions VALUES(831,'Core JSP',9,335,'others'); -INSERT INTO entity_mentions VALUES(832,'JSP',9,335,'others'); -INSERT INTO entity_mentions VALUES(833,'JSP Scriptlets',9,336,'others'); -INSERT INTO entity_mentions VALUES(834,'Java Scriplet',9,336,'others'); -INSERT INTO entity_mentions VALUES(835,'JDBC',12,392,'others'); -INSERT INTO entity_mentions VALUES(836,'JRuby Core',12,393,'others'); -INSERT INTO entity_mentions VALUES(837,'Core 9.2.0.0',12,393,'others'); -INSERT INTO entity_mentions VALUES(838,'APACHE LOG4J',12,394,'others'); -INSERT INTO entity_mentions VALUES(839,'Log4j',12,394,'others'); -INSERT INTO entity_mentions VALUES(840,'Quartz',12,395,'others'); -INSERT INTO entity_mentions VALUES(841,'Java RMI',12,396,'others'); -INSERT INTO entity_mentions VALUES(842,'Java Remote Method Invocation (RMI)',12,396,'others'); -INSERT INTO entity_mentions VALUES(843,'Remote Method Invocation',12,396,'others'); -INSERT INTO entity_mentions VALUES(844,'Java Servlets',12,397,'others'); -INSERT INTO entity_mentions VALUES(845,'Java 6 Servlets',12,397,'others'); -INSERT INTO entity_mentions VALUES(846,'J2EE Servlets',12,397,'others'); -INSERT INTO entity_mentions VALUES(847,'Servlet',12,397,'others'); -INSERT INTO entity_mentions VALUES(848,'Servlets',12,397,'others'); -INSERT INTO entity_mentions VALUES(849,'Servlets v2.3',12,397,'others'); -INSERT INTO entity_mentions VALUES(850,'Spring',12,398,'others'); -INSERT INTO entity_mentions VALUES(851,'Spring IO',12,398,'others'); -INSERT INTO entity_mentions VALUES(852,'Spring BOOT',12,399,'others'); -INSERT INTO entity_mentions VALUES(853,'Spring Cloud Data Flow',12,400,'others'); -INSERT INTO entity_mentions VALUES(854,'Spring MVC',12,401,'others'); -INSERT INTO entity_mentions VALUES(855,'Struts (2.0)',12,402,'others'); -INSERT INTO entity_mentions VALUES(856,'Struts 2.0',12,402,'others'); -INSERT INTO entity_mentions VALUES(857,'Struts',12,402,'others'); -INSERT INTO entity_mentions VALUES(858,'Swing',12,403,'others'); -INSERT INTO entity_mentions VALUES(859,'Swings',12,403,'others'); -INSERT INTO entity_mentions VALUES(860,'Vaadin',12,404,'others'); -INSERT INTO entity_mentions VALUES(861,'javasript',9,337,'others'); -INSERT INTO entity_mentions VALUES(862,'JS',9,337,'others'); -INSERT INTO entity_mentions VALUES(863,'Javascript',9,337,'others'); -INSERT INTO entity_mentions VALUES(864,'Java Script',9,337,'others'); -INSERT INTO entity_mentions VALUES(865,'javascriptl',9,337,'others'); -INSERT INTO entity_mentions VALUES(866,'AJAX',12,405,'others'); -INSERT INTO entity_mentions VALUES(867,'Angular JS',12,406,'others'); -INSERT INTO entity_mentions VALUES(868,'AngularJS',12,406,'others'); -INSERT INTO entity_mentions VALUES(869,'Angular',12,406,'others'); -INSERT INTO entity_mentions VALUES(870,'Draw2D',12,407,'others'); -INSERT INTO entity_mentions VALUES(871,'Draw2D 2.10.1',12,407,'others'); -INSERT INTO entity_mentions VALUES(872,'Express',12,408,'others'); -INSERT INTO entity_mentions VALUES(873,'Express.js',12,408,'others'); -INSERT INTO entity_mentions VALUES(874,'ExtJS 4.1',12,409,'others'); -INSERT INTO entity_mentions VALUES(875,'Sencha 4.2.0',12,409,'others'); -INSERT INTO entity_mentions VALUES(876,'ExtJS',12,409,'others'); -INSERT INTO entity_mentions VALUES(877,'Ext JS',12,409,'others'); -INSERT INTO entity_mentions VALUES(878,'jqGrid',12,410,'others'); -INSERT INTO entity_mentions VALUES(879,'JQuery 1.7',12,411,'others'); -INSERT INTO entity_mentions VALUES(880,'JQuery',12,411,'others'); -INSERT INTO entity_mentions VALUES(881,'jqueryui',12,412,'others'); -INSERT INTO entity_mentions VALUES(882,'jQuery UI',12,412,'others'); -INSERT INTO entity_mentions VALUES(883,'jquery-ui',12,412,'others'); -INSERT INTO entity_mentions VALUES(884,'react',12,413,'others'); -INSERT INTO entity_mentions VALUES(885,'ReactJS',12,413,'others'); -INSERT INTO entity_mentions VALUES(886,'react.js',12,413,'others'); -INSERT INTO entity_mentions VALUES(887,'Scriptaculous',12,414,'others'); -INSERT INTO entity_mentions VALUES(888,'script.aculo.us',12,414,'others'); -INSERT INTO entity_mentions VALUES(889,'Valums File Uploader',12,415,'others'); -INSERT INTO entity_mentions VALUES(890,'Valums AJAX File Uploader',12,415,'others'); -INSERT INTO entity_mentions VALUES(891,'Jboss 7',8,267,'others'); -INSERT INTO entity_mentions VALUES(892,'JBOSS 5.1.2',8,267,'others'); -INSERT INTO entity_mentions VALUES(893,'Red Hat JBoss Enterprise Application Platform 6.3',8,267,'others'); -INSERT INTO entity_mentions VALUES(894,'EAP',8,267,'others'); -INSERT INTO entity_mentions VALUES(895,'JBOSS-EAP',8,267,'others'); -INSERT INTO entity_mentions VALUES(896,'JBoss Application Server 4',8,267,'others'); -INSERT INTO entity_mentions VALUES(897,'JBoss Application Server 7',8,267,'others'); -INSERT INTO entity_mentions VALUES(898,'JBoss Application Server 5',8,267,'others'); -INSERT INTO entity_mentions VALUES(899,'JBoss Application Server',8,267,'others'); -INSERT INTO entity_mentions VALUES(900,'Enterprise Application Platform',8,267,'others'); -INSERT INTO entity_mentions VALUES(901,'JBoss',8,267,'others'); -INSERT INTO entity_mentions VALUES(902,'Jboss 7.1.2',8,267,'others'); -INSERT INTO entity_mentions VALUES(903,'Wildfly',8,267,'others'); -INSERT INTO entity_mentions VALUES(904,'JBOSS 5.1.2 EAP',8,267,'others'); -INSERT INTO entity_mentions VALUES(905,'server: Jboss',8,267,'others'); -INSERT INTO entity_mentions VALUES(906,'JBOSS 6.3.2 EAP',8,267,'others'); -INSERT INTO entity_mentions VALUES(907,'JBoss EAP 4.3',8,267,'others'); -INSERT INTO entity_mentions VALUES(908,'Jboss 4.1.2',8,267,'others'); -INSERT INTO entity_mentions VALUES(909,'JBOSS 5',8,267,'others'); -INSERT INTO entity_mentions VALUES(910,'JBOSS 6.3.2',8,267,'others'); -INSERT INTO entity_mentions VALUES(911,'JBoss Seam',7,492,'others'); -INSERT INTO entity_mentions VALUES(912,'SEAM',7,492,'others'); -INSERT INTO entity_mentions VALUES(913,'JCL',9,338,'others'); -INSERT INTO entity_mentions VALUES(914,'Jenkins',2,90,'others'); -INSERT INTO entity_mentions VALUES(915,'Job Information Language',9,339,'others'); -INSERT INTO entity_mentions VALUES(916,'JIL - Job Information Language',9,339,'others'); -INSERT INTO entity_mentions VALUES(917,'Job Information Language (JIL)',9,339,'others'); -INSERT INTO entity_mentions VALUES(918,'JIL',9,339,'others'); -INSERT INTO entity_mentions VALUES(919,'JoinIT by Acayosoft',2,91,'others'); -INSERT INTO entity_mentions VALUES(920,'Acayosoft JoinIT',2,91,'others'); -INSERT INTO entity_mentions VALUES(921,'JoinIT by Acayosoft v 9.0.8',2,91,'others'); -INSERT INTO entity_mentions VALUES(922,'joinIT',2,91,'others'); -INSERT INTO entity_mentions VALUES(923,'JScript',9,340,'others'); -INSERT INTO entity_mentions VALUES(924,'Kitura',8,269,'others'); -INSERT INTO entity_mentions VALUES(925,'LifeFlow',2,92,'others'); -INSERT INTO entity_mentions VALUES(926,'LifeFlow Tool',2,92,'others'); -INSERT INTO entity_mentions VALUES(927,'Linux 2.6.32-696.28.1.el6.x86_64',6,426,'others'); -INSERT INTO entity_mentions VALUES(928,'Other Linux (64-bit)',6,426,'others'); -INSERT INTO entity_mentions VALUES(929,'Linux',6,426,'others'); -INSERT INTO entity_mentions VALUES(930,'Linux 2.6.32-696.30.1.el6.x86_64',6,426,'others'); -INSERT INTO entity_mentions VALUES(931,'Linux 2.6.9',6,426,'others'); -INSERT INTO entity_mentions VALUES(932,'Linux 2.6.32-642.3.1.el6.x86_64',6,426,'others'); -INSERT INTO entity_mentions VALUES(933,'Linux - 2.6.18-371.1.2.el5',6,426,'others'); -INSERT INTO entity_mentions VALUES(934,'Linux 2.6.32-696.23.1.el6.x86_64',6,426,'others'); -INSERT INTO entity_mentions VALUES(935,'Other Linux (32-bit)',6,426,'others'); -INSERT INTO entity_mentions VALUES(936,'Linux (64-bit)',6,426,'others'); -INSERT INTO entity_mentions VALUES(937,'Linux 3.10.0-1062.el7.x86_64',6,426,'others'); -INSERT INTO entity_mentions VALUES(938,'Other 2.6.x Linux (64-bit)',6,426,'others'); -INSERT INTO entity_mentions VALUES(939,'CentOS 6 (32-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(940,'LINUX CentOS 7.3',6,427,'others'); -INSERT INTO entity_mentions VALUES(941,'CentOS 4 (32-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(942,'LINUX CentOS 6.2',6,427,'others'); -INSERT INTO entity_mentions VALUES(943,'Linux CentOS_5.5',6,427,'others'); -INSERT INTO entity_mentions VALUES(944,'CentOS 7.2',6,427,'others'); -INSERT INTO entity_mentions VALUES(945,'CentOS 6 (64-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(946,'LINUX CentOS 6.8',6,427,'others'); -INSERT INTO entity_mentions VALUES(947,'LINUX CentOS 6.9',6,427,'others'); -INSERT INTO entity_mentions VALUES(948,'LINUX CentOS 6.4',6,427,'others'); -INSERT INTO entity_mentions VALUES(949,'CentOS 4/5/6 (64-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(950,'CentOS 5 (32-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(951,'Linux CentOS_5.2',6,427,'others'); -INSERT INTO entity_mentions VALUES(952,'CentOS 4 (64-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(953,'CentOS 7 (64-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(954,'CentOS 5 (64-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(955,'CentOS 5.8 (x86)',6,427,'others'); -INSERT INTO entity_mentions VALUES(956,'CentOS 6.4',6,427,'others'); -INSERT INTO entity_mentions VALUES(957,'CentOS 7.5.184',6,427,'others'); -INSERT INTO entity_mentions VALUES(958,'CentOS 4/5/6 (32-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(959,'CentOS',6,427,'others'); -INSERT INTO entity_mentions VALUES(960,'CentOS release 5.11',6,427,'others'); -INSERT INTO entity_mentions VALUES(961,'CentOS 4/5 or later (32-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(962,'LINUX CentOS 6.5',6,427,'others'); -INSERT INTO entity_mentions VALUES(963,'LINUX CentOS 6.7',6,427,'others'); -INSERT INTO entity_mentions VALUES(964,'LINUX CentOS 5.8',6,427,'others'); -INSERT INTO entity_mentions VALUES(965,'LINUX CentOS 5',6,427,'others'); -INSERT INTO entity_mentions VALUES(966,'CentOS 7.x',6,427,'others'); -INSERT INTO entity_mentions VALUES(967,'CentOS 4/5/6/7 (64-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(968,'CentOS 4/5 or later (64-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(969,'LINUX CentOS 5.7',6,427,'others'); -INSERT INTO entity_mentions VALUES(970,'Check Point IPSO',6,428,'others'); -INSERT INTO entity_mentions VALUES(971,'Gaia Kernel version 2.7',6,428,'others'); -INSERT INTO entity_mentions VALUES(972,'Checkpoint',6,428,'others'); -INSERT INTO entity_mentions VALUES(973,'Check Point Gaia',6,428,'others'); -INSERT INTO entity_mentions VALUES(974,'Gaia Kernel version 2.6',6,428,'others'); -INSERT INTO entity_mentions VALUES(975,'Debian Linux',6,429,'others'); -INSERT INTO entity_mentions VALUES(976,'Debian GNU/Linux 8 (64-bit)',6,429,'others'); -INSERT INTO entity_mentions VALUES(977,'Debian',6,429,'others'); -INSERT INTO entity_mentions VALUES(978,'Debian Linux 8',6,429,'others'); -INSERT INTO entity_mentions VALUES(979,'LINUX Debian 6.0',6,429,'others'); -INSERT INTO entity_mentions VALUES(980,'Debian GNU/Linux 5 (64-bit)',6,429,'others'); -INSERT INTO entity_mentions VALUES(981,'Junos OS',6,430,'others'); -INSERT INTO entity_mentions VALUES(982,'JunOS',6,430,'others'); -INSERT INTO entity_mentions VALUES(983,'JunOS 8.0R14',6,430,'others'); -INSERT INTO entity_mentions VALUES(984,'JunOS 8.0R13',6,430,'others'); -INSERT INTO entity_mentions VALUES(985,'OpenSuse',6,431,'others'); -INSERT INTO entity_mentions VALUES(986,'SUSE openSUSE (64-bit)',6,431,'others'); -INSERT INTO entity_mentions VALUES(987,'Oracle - Linux Server - 7.5 Beta',6,432,'others'); -INSERT INTO entity_mentions VALUES(988,'Oracle Linux 7',6,432,'others'); -INSERT INTO entity_mentions VALUES(989,'LINUX Oracle EL 6.6 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(990,'OEL',6,432,'others'); -INSERT INTO entity_mentions VALUES(991,'LINUX Oracle EL 6.3 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(992,'LINUX Oracle EL 7.4 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(993,'OEL 6.5 (Oracle Linux)3.8.13-16.2.1.el6uek.x86_64',6,432,'others'); -INSERT INTO entity_mentions VALUES(994,'LINUX Oracle EL 5.11 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(995,'LINUX Oracle EL 5.10 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(996,'LINUX Oracle EL 5.9',6,432,'others'); -INSERT INTO entity_mentions VALUES(997,'Oracle Linux 6.1',6,432,'others'); -INSERT INTO entity_mentions VALUES(998,'Oracle Linux 4/5 or later (64-bit)',6,432,'others'); -INSERT INTO entity_mentions VALUES(999,'LINUX Oracle EL 6.9',6,432,'others'); -INSERT INTO entity_mentions VALUES(1000,'LINUX Oracle EL 6.8 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(1001,'Oracle Linux 5 (64-bit)',6,432,'others'); -INSERT INTO entity_mentions VALUES(1002,'Oracle Enterprise Server 7.5',6,432,'others'); -INSERT INTO entity_mentions VALUES(1003,'Oracle Linux 5u10',6,432,'others'); -INSERT INTO entity_mentions VALUES(1004,'OEL6.7 - 3.8.13-68.3.4.el6uek.x86_64',6,432,'others'); -INSERT INTO entity_mentions VALUES(1005,'Oracle Linux Server 6.10',6,432,'others'); -INSERT INTO entity_mentions VALUES(1006,'LINUX Oracle EL 6.9 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(1007,'LINUX Oracle EL 6.7 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(1008,'Oracle Linux Server release 6.9',6,432,'others'); -INSERT INTO entity_mentions VALUES(1009,'Oracle Linux Server 6.9',6,432,'others'); -INSERT INTO entity_mentions VALUES(1010,'LINUX Oracle EL 5.8 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(1011,'OEL 6.5 (Oracle Linux)2.6.32-431.el6.x86_63',6,432,'others'); -INSERT INTO entity_mentions VALUES(1012,'Oracle Linux Server 6.7',6,432,'others'); -INSERT INTO entity_mentions VALUES(1013,'Oracle Enterprise Linux',6,432,'others'); -INSERT INTO entity_mentions VALUES(1014,'Oracle Linux',6,432,'others'); -INSERT INTO entity_mentions VALUES(1015,'OEL 6.5 (Oracle Linux)2.6.32-431.el6.x86_62',6,432,'others'); -INSERT INTO entity_mentions VALUES(1016,'Oracle Linux 4 (64-bit)',6,432,'others'); -INSERT INTO entity_mentions VALUES(1017,'Photon OS',6,433,'others'); -INSERT INTO entity_mentions VALUES(1018,'VMware Photon',6,433,'others'); -INSERT INTO entity_mentions VALUES(1019,'VMware Photon 1',6,433,'others'); -INSERT INTO entity_mentions VALUES(1020,'Red Hat Enterprise Linux Server 6.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1021,'Red Hat Enterprise Linux Server 7.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1022,'Linux - Redhat 6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1023,'LINUX RedHat ES 5.7 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1024,'Red Hat Enterprise Linux Server 6.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1025,'Red Hat Enterprise Linux AS release 4 (Nahant Update 8)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1026,'Red Hat Enterprise Linux Server release 6.9 (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1027,'RED HAT ENTERPRISE LINUX 5.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1028,'Red Hat Enterprise Linux Server 6.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1029,'LINUX RedHat EL 7.3 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1030,'RHEL',6,434,'others'); -INSERT INTO entity_mentions VALUES(1031,'Redhat Linux 5.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1032,'Linux Red Hat 7.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1033,'Red Hat Enterprise Linux Server 7.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1034,'Red Hat Enterprise Linux Server 7.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1035,'Red Hat(Linux)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1036,'LINUX Red Hat Enterprise Linux Server 5.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1037,'LINUX RedHat EL 5.7 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1038,'Linux Red Hat5.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1039,'Linux Red Hat3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1040,'LINUXRed Hat Enterprise Linux Server 7.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1041,'Red Hat Enterprise Linux Server 5.8',6,434,'others'); -INSERT INTO entity_mentions VALUES(1042,'LINUX RedHat EL 6.8 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1043,'RHEL 7.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1044,'Redhat - Redhat Linux 7.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1045,'Linux RH6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1046,'Red Hat Enterprise Linux 6 (32-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1047,'RED HAT ENTERPRISE LINUX SERVER 6.X (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1048,'RHEL 6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1049,'Red Hat Enterprise Linux 7.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1050,'LINUXRed Hat Enterprise Linux Server 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1051,'RHEL 6.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1052,'Red Hat Enterprise Linux Santiago 6.3 32 Bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1053,'LINUX RedHat EL 6.6 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1054,'RED HAT ENTERPRISE LINUX 6.10',6,434,'others'); -INSERT INTO entity_mentions VALUES(1055,'RED HAT ENTERPRISE LINUX SERVER 5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1056,'Linux Red Hat6.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1057,'RED HAT ENTERPRISE LINUX SERVER 7.X (Maipo)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1058,'Red Hat Enterprise Linux Server release 7.3 (Maipo)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1059,'RHEL7.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1060,'Linux Red Hat Enterprise Server 6.10',6,434,'others'); -INSERT INTO entity_mentions VALUES(1061,'Red Hat Enterprise Linux Server 7.6 (Maipo)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1062,'Red Hat Enterprise Linux 5 (64-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1063,'Linux Red Hat6.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1064,'RHEL 7.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1065,'RHEL 7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1066,'RED HAT ENTERPRISE LINUX 4.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1067,'Red Hat Enterprise Linux 5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1068,'Red Hat Enterprise Linux Server 6.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1069,'LINUX RedHat EL 7.5 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1070,'LINUXRed Hat Enterprise Linux Server 5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1071,'LINUX RED HAT ENTERPRISE SERVER 5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1072,'Unix Linux Redhat',6,434,'others'); -INSERT INTO entity_mentions VALUES(1073,'LINUX RED HAT ENTERPRISE SERVER 6 X64',6,434,'others'); -INSERT INTO entity_mentions VALUES(1074,'Red Hat Linux',6,434,'others'); -INSERT INTO entity_mentions VALUES(1075,'LINUX RED HAT ENTERPRISE SERVER 6.8',6,434,'others'); -INSERT INTO entity_mentions VALUES(1076,'RHEL6.6 - 2.6.32-504.el6.x86_64',6,434,'others'); -INSERT INTO entity_mentions VALUES(1077,'RED HAT ENTERPRISE LINUX 5.X',6,434,'others'); -INSERT INTO entity_mentions VALUES(1078,'Linux Red Hat Enterprise Server 7.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1079,'Linux Red Hat4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1080,'Linux Red Hat Enterprise Server 6.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1081,'Red Hat Enterprise Linux Server release 5.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1082,'Red Hat Linux x64 6.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1083,'Red Hat Enterprise Linux Server 7.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1084,'Linux Red Hat6.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1085,'LINUX RED HAT ENTERPRISE SERVER 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1086,'Red Hat Enterprise Linux Server release 6.6 (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1087,'RED HAT ENTERPRISE LINUX 6.X',6,434,'others'); -INSERT INTO entity_mentions VALUES(1088,'Red Hat Enterprise Linux Server 6.x',6,434,'others'); -INSERT INTO entity_mentions VALUES(1089,'RedHat Enterprise Linux 6 (64-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1090,'RED HAT ENTERPRISE LINUX',6,434,'others'); -INSERT INTO entity_mentions VALUES(1091,'Redhat - Redhat Linux 6.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1092,'RED HAT ENTERPRISE LINUX 5.8',6,434,'others'); -INSERT INTO entity_mentions VALUES(1093,'RED HAT ENTERPRISE LINUX 5.10',6,434,'others'); -INSERT INTO entity_mentions VALUES(1094,'RED HAT ENTERPRISE LINUX 7.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1095,'Red Hat Enterprise Linux Server 5.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1096,'Redhat - RHEL 7.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1097,'RHEL7.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1098,'Red Hat Enterprise Linux Server release 7.5 (Maipo)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1099,'Red Hat Enterprise Linux 6 (64-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1100,'Red Hat Entreprise Linux 6.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1101,'RED HAT ENTERPRISE LINUX 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1102,'RHEL 5.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1103,'Red Hat Enterprise Linux 7.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1104,'LINUX RedHat EL 6.2 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1105,'Linux Red Hat6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1106,'RED HAT ENTERPRISE LINUX 5.11 - 5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1107,'Red Hat Enterprise Linux Server 5.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1108,'Redhat 6 64-Bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1109,'Red Hat Enterprise Linux 5 (32-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1110,'Red Hat Enterprise Linux Server 7.',6,434,'others'); -INSERT INTO entity_mentions VALUES(1111,'RHEL 6.6 ((64 bit x86_64)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1112,'Red Hat Enterprise Linux Server Release 6.10',6,434,'others'); -INSERT INTO entity_mentions VALUES(1113,'LINUX RED HAT ENTERPRISE ES 4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1114,'Linux Red Hat Enterprise Server 5.11 (2.6.18-419.el5)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1115,'Red Hat Enterprise Linux Server release 6.8 (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1116,'RED HAT ENTERPRISE LINUX 4.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1117,'Redhat Linux 6.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1118,'Red Hat Enterprise Linux AS',6,434,'others'); -INSERT INTO entity_mentions VALUES(1119,'RED HAT ADVANCED SERVER 5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1120,'LINUX RED HAT ENTERPRISE SERVER 7.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1121,'RHEL6.7 - 2.6.32-573.el6.x86_64',6,434,'others'); -INSERT INTO entity_mentions VALUES(1122,'Red Hat Enterprise Linux Server 5.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1123,'LINUX RedHat EL 5 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1124,'Red Hat Enterprise Linux 7.2 (64-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1125,'LINUX RedHat EL 5.11 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1126,'RHEL 6.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1127,'RHEL 6.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1128,'Red Hat Enterprise Linux Server',6,434,'others'); -INSERT INTO entity_mentions VALUES(1129,'Red Hat Enterprise Linux Server 5.x',6,434,'others'); -INSERT INTO entity_mentions VALUES(1130,'Red Hat Enterprise Linux Santiago 6.x',6,434,'others'); -INSERT INTO entity_mentions VALUES(1131,'RED HAT ENTERPRISE LINUX 6.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1132,'RED HAT ENTERPRISE LINUX 7.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1133,'Red Hat Enterprise Linux Server release 5.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1134,'RHEL Server',6,434,'others'); -INSERT INTO entity_mentions VALUES(1135,'Linux RHEL',6,434,'others'); -INSERT INTO entity_mentions VALUES(1136,'redhat6.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1137,'RHEL 5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1138,'Redhat - Redhat Linux 6.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1139,'Linux RH',6,434,'others'); -INSERT INTO entity_mentions VALUES(1140,'Red Hat Enterprise Linux Server release 6.10 (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1141,'Red Hat Enterprise Linux 3 (32-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1142,'Redhat - Red Hat(Linux)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1143,'RED HAT ENTERPRISE LINUX 5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1144,'RED HAT ENTERPRISE LINUX SERVER 4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1145,'Redhat Linux 6.10',6,434,'others'); -INSERT INTO entity_mentions VALUES(1146,'Linux RH7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1147,'Red Hat Enterprise Linux Server release 5 (Tikanga)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1148,'RHEL 7.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1149,'LINUX Red Hat Enterprise Linux Server 6.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1150,'Red Hat Enterprise Linux Server 6.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1151,'Red Hat Enterprise Linux Server release 7.4 (Maipo)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1152,'Red Hat V6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1153,'Redhat Linux',6,434,'others'); -INSERT INTO entity_mentions VALUES(1154,'RHEL 6.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1155,'RED HAT ENTERPRISE LINUX 6.X TPM',6,434,'others'); -INSERT INTO entity_mentions VALUES(1156,'Linux Red Hat5.8',6,434,'others'); -INSERT INTO entity_mentions VALUES(1157,'Linux Red Hat5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1158,'Linux RH5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1159,'Red Hat Enterprise Linux Santiago 6.3 64 Bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1160,'rehl5.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1161,'RED HAT ENTERPRISE LINUX ES 5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1162,'Red Hat Enterprise Linux Server release 7.6 (Maipo)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1163,'LINUX RED HAT ENTERPRISE SERVER 7.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1164,'Red Hat Enterprise Linux 4 (32-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1165,'RHEL 7.xx',6,434,'others'); -INSERT INTO entity_mentions VALUES(1166,'Red Hat Enterprise Linux Server 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1167,'Red Hat Enterprise Linux Server release 7.x',6,434,'others'); -INSERT INTO entity_mentions VALUES(1168,'Red Hat Enterprise Linux 7 (64-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1169,'Red Hat Enterprise Linux 5 Update 3 (RHEL 5.3) for x86-64',6,434,'others'); -INSERT INTO entity_mentions VALUES(1170,'LINUX RED HAT ENTERPRISE AS 4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1171,'RHEL Linux',6,434,'others'); -INSERT INTO entity_mentions VALUES(1172,'RHEL 7.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1173,'RED HAT ENTERPRISE LINUX 4.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1174,'RED HAT ENTERPRISE LINUX 6.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1175,'Linux Red Hat6.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1176,'RHEL 7.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1177,'RHEL 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1178,'RED HAT ENTERPRISE LINUX 5.X TPM',6,434,'others'); -INSERT INTO entity_mentions VALUES(1179,'RED HAT ENTERPRISE LINUX ES 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1180,'LINUX RedHat EL 7.4 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1181,'Red Hat Enterprise Linux Server release 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1182,'Red Hat Linux 5.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1183,'LINUX RED HAT ENTERPRISE SERVER 7.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1184,'LINUX RedHat EL 5.0 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1185,'Red Hat Enterprise Linux Server release 6.3 (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1186,'RED HAT ENTERPRISE LINUX SERVER 5.X (Tikanga)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1187,'Red Hat Enterprise Linux Server 7.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1188,'Linux Red Hat 6.10',6,434,'others'); -INSERT INTO entity_mentions VALUES(1189,'Linux Red Hat',6,434,'others'); -INSERT INTO entity_mentions VALUES(1190,'Red Hat 6.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1191,'LINUX Red Hat Enterprise Linux Server 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1192,'LINUX Red Hat Enterprise Linux Server 5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1193,'Red Hat Enterprise Linux Server 5.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1194,'RHEL7.xx',6,434,'others'); -INSERT INTO entity_mentions VALUES(1195,'RHEL 6.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1196,'Linux Red Hat5.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1197,'Red Hat Enterprise Linux Server 7.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1198,'Red Hat Enterprise Linux Server release 6.5 (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1199,'Linux Red Hat6.8',6,434,'others'); -INSERT INTO entity_mentions VALUES(1200,'Red Hat Enterprise Linux Server 6.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1201,'LINUXRed Hat Enterprise Linux Server 6.10',6,434,'others'); -INSERT INTO entity_mentions VALUES(1202,'Red Hat Enterprise Linux 7.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1203,'Red Hat Enterprise Linux Server 7.x',6,434,'others'); -INSERT INTO entity_mentions VALUES(1204,'Redhat Linux 7.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1205,'red hat',6,434,'others'); -INSERT INTO entity_mentions VALUES(1206,'LINUX RedHat EL 6.10 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1207,'Red Hat Enterprise Linux 6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1208,'Red Hat Enterprise Linux Server release 6.7 (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1209,'Linux Red Hat5.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1210,'Red Hat Enterprise Linux 7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1211,'Red Hat Linux 6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1212,'RED HAT ENTERPRISE LINUX 7.X',6,434,'others'); -INSERT INTO entity_mentions VALUES(1213,'RHEL x86-64',6,434,'others'); -INSERT INTO entity_mentions VALUES(1214,'LINUX RED HAT ENTERPRISE SERVER 7.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1215,'Red Hat Enterprise Linux Server 4.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1216,'RED HAT ENTERPRISE LINUX 5 (64 Bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1217,'Redhat',6,434,'others'); -INSERT INTO entity_mentions VALUES(1218,'RED HAT ENTERPRISE LINUX 7.X TPM',6,434,'others'); -INSERT INTO entity_mentions VALUES(1219,'Red Hat Enterprise Linux Server 6.8',6,434,'others'); -INSERT INTO entity_mentions VALUES(1220,'Red Hat Enterprise Linux Server 5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1221,'RED HAT ENTERPRISE LINUX SERVER 6.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1222,'RedHat 7.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1223,'Redhat Linux 6.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1224,'LINUX RED HAT 5 EL',6,434,'others'); -INSERT INTO entity_mentions VALUES(1225,'LINUX RedHat EL 6.9 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1226,'RED HAT ENTERPRISE LINUX 7.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1227,'suse enterprise server 11 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1228,'SUSE Linux Enterprise Server 12 x86_64',6,435,'others'); -INSERT INTO entity_mentions VALUES(1229,'SUSE11',6,435,'others'); -INSERT INTO entity_mentions VALUES(1230,'SUSE Linux Enterprise 10 (32-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1231,'SUSE Linux Enterprise 10 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1232,'Linux SuSE12',6,435,'others'); -INSERT INTO entity_mentions VALUES(1233,'SUSE Linux Enterprise 12 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1234,'Linux SuSE2.6.32-504.12.2.el6.x86_64',6,435,'others'); -INSERT INTO entity_mentions VALUES(1235,'LINUXSUSE_SLES 11.4',6,435,'others'); -INSERT INTO entity_mentions VALUES(1236,'SUSE Linux Enterprise 11 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1237,'SUSE10',6,435,'others'); -INSERT INTO entity_mentions VALUES(1238,'SUSE Linux 12',6,435,'others'); -INSERT INTO entity_mentions VALUES(1239,'LINUX SUSE_SLES 11.4',6,435,'others'); -INSERT INTO entity_mentions VALUES(1240,'LINUX SuSE Enterprise Server 11 64bit',6,435,'others'); -INSERT INTO entity_mentions VALUES(1241,'SLES 11 SP4',6,435,'others'); -INSERT INTO entity_mentions VALUES(1242,'SUSE Enterprise Server 11 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1243,'SUSELinux Enterprise 11.x',6,435,'others'); -INSERT INTO entity_mentions VALUES(1244,'SUSE Linux Enterprise Server 11 x86_64',6,435,'others'); -INSERT INTO entity_mentions VALUES(1245,'SUSE Enterprise 11 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1246,'SUSE Enterprise 10 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1247,'suse enterprise 11 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1248,'SUSE LINUX ENTERPRISE SERVER 11, SERVICE PACK SERVICE PACK SP4',6,435,'others'); -INSERT INTO entity_mentions VALUES(1249,'SUSE Linux 11',6,435,'others'); -INSERT INTO entity_mentions VALUES(1250,'SUSE Linux 11 SP3',6,435,'others'); -INSERT INTO entity_mentions VALUES(1251,'SUSE Linux Eneterprise Server (SLES) 11.0',6,435,'others'); -INSERT INTO entity_mentions VALUES(1252,'SUSE Linux',6,435,'others'); -INSERT INTO entity_mentions VALUES(1253,'SLES 9',6,435,'others'); -INSERT INTO entity_mentions VALUES(1254,'SUSE Linux Enterprise Server 11 (x86_64)PATCHLEVEL = 3',6,435,'others'); -INSERT INTO entity_mentions VALUES(1255,'Linux SuSE11',6,435,'others'); -INSERT INTO entity_mentions VALUES(1256,'SUSE',6,435,'others'); -INSERT INTO entity_mentions VALUES(1257,'SUSELinux Enterprise 11 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1258,'LINUX SuSE Enterprise Server 9',6,435,'others'); -INSERT INTO entity_mentions VALUES(1259,'LINUX SuSE 10.0 Enterprise',6,435,'others'); -INSERT INTO entity_mentions VALUES(1260,'SUSE LINUX ENTERPRISE SERVER 11.3',6,435,'others'); -INSERT INTO entity_mentions VALUES(1261,'SUSE LINUX Enterprise Server 9 (i586) VERSION = 9 PATCHLEVEL = 3',6,435,'others'); -INSERT INTO entity_mentions VALUES(1262,'SUSE Linux Enterprise Server 11 (x86_64)PATCHLEVEL = 1',6,435,'others'); -INSERT INTO entity_mentions VALUES(1263,'SUSE Linux Enterprise 11 SP4',6,435,'others'); -INSERT INTO entity_mentions VALUES(1264,'SuseLinux',6,435,'others'); -INSERT INTO entity_mentions VALUES(1265,'SLES 12 SP2 for Power/SAP',6,435,'others'); -INSERT INTO entity_mentions VALUES(1266,'SUSE Linux Enterprise Server',6,435,'others'); -INSERT INTO entity_mentions VALUES(1267,'LINUX Ubuntu 12.04.1 LTS',6,436,'others'); -INSERT INTO entity_mentions VALUES(1268,'Ubuntu - Ubuntu Server - 16.04.1 LTS',6,436,'others'); -INSERT INTO entity_mentions VALUES(1269,'Ubuntu Linux (32-bit)',6,436,'others'); -INSERT INTO entity_mentions VALUES(1270,'LINUX Ubuntu 16.04 LTS',6,436,'others'); -INSERT INTO entity_mentions VALUES(1271,'Ubuntu Linux Server 10 (64-bit)',6,436,'others'); -INSERT INTO entity_mentions VALUES(1272,'Ubuntu',6,436,'others'); -INSERT INTO entity_mentions VALUES(1273,'LINUX Ubuntu 14.04 LTS',6,436,'others'); -INSERT INTO entity_mentions VALUES(1274,'UBUNTU LINUX (64-BIT)',6,436,'others'); -INSERT INTO entity_mentions VALUES(1275,'Ubuntu Linux',6,436,'others'); -INSERT INTO entity_mentions VALUES(1276,'LINUX UBUNTU 16.04',6,436,'others'); -INSERT INTO entity_mentions VALUES(1277,'LINUX Ubuntu',6,436,'others'); -INSERT INTO entity_mentions VALUES(1278,'Linux - Ubuntu Server 16.04.1 LTS',6,436,'others'); -INSERT INTO entity_mentions VALUES(1279,'zLinux',6,437,'others'); -INSERT INTO entity_mentions VALUES(1280,'Lisp',9,341,'others'); -INSERT INTO entity_mentions VALUES(1281,'Lotus Domino',8,270,'others'); -INSERT INTO entity_mentions VALUES(1282,'domino8.5',8,270,'others'); -INSERT INTO entity_mentions VALUES(1283,'Domino 8.x',8,270,'others'); -INSERT INTO entity_mentions VALUES(1284,'Lotus Notes',2,93,'others'); -INSERT INTO entity_mentions VALUES(1285,'Lotus Notes Internal',2,93,'others'); -INSERT INTO entity_mentions VALUES(1286,'Lucee',8,271,'others'); -INSERT INTO entity_mentions VALUES(1287,'Lucee 5.2.6.60',8,271,'others'); -INSERT INTO entity_mentions VALUES(1288,'MaaS360',2,94,'others'); -INSERT INTO entity_mentions VALUES(1289,'mac OS',6,438,'others'); -INSERT INTO entity_mentions VALUES(1290,'macOS',6,438,'others'); -INSERT INTO entity_mentions VALUES(1291,'Darwin',6,438,'others'); -INSERT INTO entity_mentions VALUES(1292,'Malwarebytes Anti-Malware',2,95,'others'); -INSERT INTO entity_mentions VALUES(1293,'Malwarebytes Corporation - Malwarebytes Anti-Malware 3.4',2,95,'others'); -INSERT INTO entity_mentions VALUES(1294,'Malwarebytes',2,95,'others'); -INSERT INTO entity_mentions VALUES(1295,'ManageEngine ADSelfService Plus',2,96,'others'); -INSERT INTO entity_mentions VALUES(1296,'Manage Engine ADSelfService Porta',2,96,'others'); -INSERT INTO entity_mentions VALUES(1297,'Marklogic',2,97,'others'); -INSERT INTO entity_mentions VALUES(1298,'MarkLogic DB',2,97,'others'); -INSERT INTO entity_mentions VALUES(1299,'Memcache',2,98,'others'); -INSERT INTO entity_mentions VALUES(1300,'Memcached',2,98,'others'); -INSERT INTO entity_mentions VALUES(1301,'ACCDB',2,99,'others'); -INSERT INTO entity_mentions VALUES(1302,'Microsoft Access',2,99,'others'); -INSERT INTO entity_mentions VALUES(1303,'Access DB',2,99,'others'); -INSERT INTO entity_mentions VALUES(1304,'MS Access 2016',2,99,'others'); -INSERT INTO entity_mentions VALUES(1305,'MS Access',2,99,'others'); -INSERT INTO entity_mentions VALUES(1306,'Microsoft BizTalk Adapters for Host Systems 2.0',2,100,'others'); -INSERT INTO entity_mentions VALUES(1307,'Microsoft BizTalk Adapters for Host Systems',2,100,'others'); -INSERT INTO entity_mentions VALUES(1308,'Microsoft Dynamics AX',2,101,'others'); -INSERT INTO entity_mentions VALUES(1309,'MS Dynamics AX 4',2,101,'others'); -INSERT INTO entity_mentions VALUES(1310,'Microsoft - Microsoft System Center Configuration Manager 2012',2,102,'others'); -INSERT INTO entity_mentions VALUES(1311,'SCCM',2,102,'others'); -INSERT INTO entity_mentions VALUES(1312,'Microsoft Endpoint Configuration Manager (SCCM)',2,102,'others'); -INSERT INTO entity_mentions VALUES(1313,'ConfigMgr',2,102,'others'); -INSERT INTO entity_mentions VALUES(1314,'Microsoft - Microsoft System Center Configuration Manager Client 5',2,102,'others'); -INSERT INTO entity_mentions VALUES(1315,'Microsoft Endpoint Configuration Manager',2,102,'others'); -INSERT INTO entity_mentions VALUES(1316,'MS System Centre Configuration Manager',2,102,'others'); -INSERT INTO entity_mentions VALUES(1317,'MS Excel',2,103,'others'); -INSERT INTO entity_mentions VALUES(1318,'Excel',2,103,'others'); -INSERT INTO entity_mentions VALUES(1319,'Microsoft Excel 2010',2,103,'others'); -INSERT INTO entity_mentions VALUES(1320,'Microsoft Excel',2,103,'others'); -INSERT INTO entity_mentions VALUES(1321,'Excel 2010',2,103,'others'); -INSERT INTO entity_mentions VALUES(1322,'Microsoft Exchange Server',2,104,'others'); -INSERT INTO entity_mentions VALUES(1323,'MS Exchange 2010 Enterprise',2,104,'others'); -INSERT INTO entity_mentions VALUES(1324,'Veeam Explorer',5,464,'others'); -INSERT INTO entity_mentions VALUES(1325,'Microsoft Forefront Identity Manager (FIM)',2,105,'others'); -INSERT INTO entity_mentions VALUES(1326,'Microsoft Forefront Identity Manager',2,105,'others'); -INSERT INTO entity_mentions VALUES(1327,'FIM SQL Development Server',2,105,'others'); -INSERT INTO entity_mentions VALUES(1328,'InfoPath',2,106,'others'); -INSERT INTO entity_mentions VALUES(1329,'Microsoft InfoPath',2,106,'others'); -INSERT INTO entity_mentions VALUES(1330,'Microsoft - Internet Explor',2,107,'others'); -INSERT INTO entity_mentions VALUES(1331,'Microsoft - Internet Explorer 11',2,107,'others'); -INSERT INTO entity_mentions VALUES(1332,'Microsoft Internet Explorer',2,107,'others'); -INSERT INTO entity_mentions VALUES(1333,'Internet Explor',2,107,'others'); -INSERT INTO entity_mentions VALUES(1334,'ISA Server',2,108,'others'); -INSERT INTO entity_mentions VALUES(1335,'Microsoft ISA Server',2,108,'others'); -INSERT INTO entity_mentions VALUES(1336,'Microsoft MQ',2,109,'others'); -INSERT INTO entity_mentions VALUES(1337,'System Center Endpoint Protection for Mac',2,110,'others'); -INSERT INTO entity_mentions VALUES(1338,'System Center 2012 Endpoint Protection',2,110,'others'); -INSERT INTO entity_mentions VALUES(1339,'Microsoft System Center 2012 Endpoint Protection',2,110,'others'); -INSERT INTO entity_mentions VALUES(1340,'Microsoft - Microsoft System Center 2012 Endpoint Protection 2.2',2,110,'others'); -INSERT INTO entity_mentions VALUES(1341,'SCEP for Linux',2,110,'others'); -INSERT INTO entity_mentions VALUES(1342,'System Center Endpoint Protection for Linux',2,110,'others'); -INSERT INTO entity_mentions VALUES(1343,'Microsoft System Center Endpoint Protection 2012',2,110,'others'); -INSERT INTO entity_mentions VALUES(1344,'System Center 2012 R2 Endpoint Protection',2,110,'others'); -INSERT INTO entity_mentions VALUES(1345,'SCEP for Mac',2,110,'others'); -INSERT INTO entity_mentions VALUES(1346,'Microsoft System Center Endpoint Protection',2,110,'others'); -INSERT INTO entity_mentions VALUES(1347,'System Center Endpoint Protection',2,110,'others'); -INSERT INTO entity_mentions VALUES(1348,'Microsoft - Microsoft Visual Studio 2010',2,111,'others'); -INSERT INTO entity_mentions VALUES(1349,'Microsoft Visual Studio 2010',2,111,'others'); -INSERT INTO entity_mentions VALUES(1350,'Microsoft Visual Studio',2,111,'others'); -INSERT INTO entity_mentions VALUES(1351,'Visual Studio',2,111,'others'); -INSERT INTO entity_mentions VALUES(1352,'Microsoft Web Deploy 2.0',2,112,'others'); -INSERT INTO entity_mentions VALUES(1353,'Microsoft Web Deploy',2,112,'others'); -INSERT INTO entity_mentions VALUES(1354,'Web Deploy',2,112,'others'); -INSERT INTO entity_mentions VALUES(1355,'msdeploy',2,112,'others'); -INSERT INTO entity_mentions VALUES(1356,'Web Farm Framework',2,113,'others'); -INSERT INTO entity_mentions VALUES(1357,'Microsoft Web Farm Framework Version 2.2',2,113,'others'); -INSERT INTO entity_mentions VALUES(1358,'Microsoft Web Farm Framework',2,113,'others'); -INSERT INTO entity_mentions VALUES(1359,'WFF',2,113,'others'); -INSERT INTO entity_mentions VALUES(1360,'Microsoft Web Farm Framework (WFF)',2,113,'others'); -INSERT INTO entity_mentions VALUES(1361,'WebPI',2,114,'others'); -INSERT INTO entity_mentions VALUES(1362,'Web Platform Installer',2,114,'others'); -INSERT INTO entity_mentions VALUES(1363,'Microsoft Web Platform Installer',2,114,'others'); -INSERT INTO entity_mentions VALUES(1364,'Microsoft Web Platform Installer 3.0',2,114,'others'); -INSERT INTO entity_mentions VALUES(1365,'Web PI',2,114,'others'); -INSERT INTO entity_mentions VALUES(1366,'MDW 6',2,115,'others'); -INSERT INTO entity_mentions VALUES(1367,'MDW Framework',2,115,'others'); -INSERT INTO entity_mentions VALUES(1368,'MDW',2,115,'others'); -INSERT INTO entity_mentions VALUES(1369,'Model Driven Workflow',2,115,'others'); -INSERT INTO entity_mentions VALUES(1370,'Model Driven Workflow (MDW)',2,115,'others'); -INSERT INTO entity_mentions VALUES(1371,'MONGO-DB',2,116,'others'); -INSERT INTO entity_mentions VALUES(1372,'Mango DB',2,116,'others'); -INSERT INTO entity_mentions VALUES(1373,'Mongo DB',2,116,'others'); -INSERT INTO entity_mentions VALUES(1374,'MangoDB',2,116,'others'); -INSERT INTO entity_mentions VALUES(1375,'MongoDB',2,116,'others'); -INSERT INTO entity_mentions VALUES(1376,'Mozilla.org - Firefox 38.5',2,117,'others'); -INSERT INTO entity_mentions VALUES(1377,'Firefox',2,117,'others'); -INSERT INTO entity_mentions VALUES(1378,'Mozilla.org',2,117,'others'); -INSERT INTO entity_mentions VALUES(1379,'Mozilla.org - Firefox 68',2,117,'others'); -INSERT INTO entity_mentions VALUES(1380,'Mozilla Firefox',2,117,'others'); -INSERT INTO entity_mentions VALUES(1381,'Mozilla.or',2,117,'others'); -INSERT INTO entity_mentions VALUES(1382,'MQ Client 7.5',2,118,'others'); -INSERT INTO entity_mentions VALUES(1383,'MQ Client',2,118,'others'); -INSERT INTO entity_mentions VALUES(1384,'MS Office 365',2,119,'others'); -INSERT INTO entity_mentions VALUES(1385,'Office 365',2,119,'others'); -INSERT INTO entity_mentions VALUES(1386,'O365',2,119,'others'); -INSERT INTO entity_mentions VALUES(1387,'MS SQL Server 2008 Standard',2,120,'others'); -INSERT INTO entity_mentions VALUES(1388,'MS SQL 2008R2SP2ENT (10.52.4042.0)',2,120,'others'); -INSERT INTO entity_mentions VALUES(1389,'MS SQL Server 2008',2,120,'others'); -INSERT INTO entity_mentions VALUES(1390,'SQL Server 11.0.2100.60',2,120,'others'); -INSERT INTO entity_mentions VALUES(1391,'MS SQL 2016 SP1',2,120,'others'); -INSERT INTO entity_mentions VALUES(1392,'SQL 2012 Development Server',2,120,'others'); -INSERT INTO entity_mentions VALUES(1393,'MICROSOFT SQL SERVER 2008 R2 ENTERPRISE EDITION 10.5',2,120,'others'); -INSERT INTO entity_mentions VALUES(1394,'Microsoft - Microsoft SQL Server 2012 for Microsoft SQL Server 2012 Standard Edition 2012',2,120,'others'); -INSERT INTO entity_mentions VALUES(1395,'MS SQL Server MS SQL Server 2008',2,120,'others'); -INSERT INTO entity_mentions VALUES(1396,'SQL Server 2016 SP1',2,120,'others'); -INSERT INTO entity_mentions VALUES(1397,'SQL Server 2000',2,120,'others'); -INSERT INTO entity_mentions VALUES(1398,'SQL Server 2005 Standard',2,120,'others'); -INSERT INTO entity_mentions VALUES(1399,'Microsoft SQL Server 2008 (SP4) - 10.0.6000.29 (X64)',2,120,'others'); -INSERT INTO entity_mentions VALUES(1400,'MICROSOFT SQL SERVER 2005 STANDARD EDITION 9.*',2,120,'others'); -INSERT INTO entity_mentions VALUES(1401,'Microsoft SQL Server SQL Server 2008 R2',2,120,'others'); -INSERT INTO entity_mentions VALUES(1402,'MICROSOFT SQL SERVER 2012 DEVELOPER EDITION',2,120,'others'); -INSERT INTO entity_mentions VALUES(1403,'Microsoft SQL Server 2000',2,120,'others'); -INSERT INTO entity_mentions VALUES(1404,'MS SQL Server 2008 R2 Express',2,120,'others'); -INSERT INTO entity_mentions VALUES(1405,'SQL Server',2,120,'others'); -INSERT INTO entity_mentions VALUES(1406,'SQL Server 2012 SP3',2,120,'others'); -INSERT INTO entity_mentions VALUES(1407,'SQL Server 2003',2,120,'others'); -INSERT INTO entity_mentions VALUES(1408,'Microsoft SQL Server 2016 - Service pack 2',2,120,'others'); -INSERT INTO entity_mentions VALUES(1409,'SQL SERVER 2008 R2',2,120,'others'); -INSERT INTO entity_mentions VALUES(1410,'MS SQL Server 2008 Enterprise R2',2,120,'others'); -INSERT INTO entity_mentions VALUES(1411,'MS SQL Server 2014 Express',2,120,'others'); -INSERT INTO entity_mentions VALUES(1412,'SQL Server 2008 R2 SP1',2,120,'others'); -INSERT INTO entity_mentions VALUES(1413,'SQL Server 2008 R2 Enterprize SP2 64Bit',2,120,'others'); -INSERT INTO entity_mentions VALUES(1414,'MICROSOFT SQL SERVER 2012 STANDARD EDITION',2,120,'others'); -INSERT INTO entity_mentions VALUES(1415,'MS SQL Server 2008 Developer',2,120,'others'); -INSERT INTO entity_mentions VALUES(1416,'SQL 2005',2,120,'others'); -INSERT INTO entity_mentions VALUES(1417,'MICROSOFT SQL SERVER 2008 DEVELOPER EDITION',2,120,'others'); -INSERT INTO entity_mentions VALUES(1418,'Microsoft SQL Server 2012 (SP4-GDR)',2,120,'others'); -INSERT INTO entity_mentions VALUES(1419,'MS SQL Server 2012 Enterprise',2,120,'others'); -INSERT INTO entity_mentions VALUES(1420,'Microsoft SQL Server 2008 R2 (RTM) - 10.50.1600.1 (X64)',2,120,'others'); -INSERT INTO entity_mentions VALUES(1421,'MS SQL Server 2005 Express',2,120,'others'); -INSERT INTO entity_mentions VALUES(1422,'SQL Server 2016',2,120,'others'); -INSERT INTO entity_mentions VALUES(1423,'Microsoft SQL Server 2012',2,120,'others'); -INSERT INTO entity_mentions VALUES(1424,'Microsoft SQL Server SQL Server 2005',2,120,'others'); -INSERT INTO entity_mentions VALUES(1425,'MS SQL',2,120,'others'); -INSERT INTO entity_mentions VALUES(1426,'sql server 2009 SQL',2,120,'others'); -INSERT INTO entity_mentions VALUES(1427,'Microsoft - Microsoft SQL - 13.0',2,120,'others'); -INSERT INTO entity_mentions VALUES(1428,'MSSQL Database Server',2,120,'others'); -INSERT INTO entity_mentions VALUES(1429,'SQL Server 2008 R2 SP3',2,120,'others'); -INSERT INTO entity_mentions VALUES(1430,'sql server 2013 SQL',2,120,'others'); -INSERT INTO entity_mentions VALUES(1431,'SQL 2012',2,120,'others'); -INSERT INTO entity_mentions VALUES(1432,'Microsoft SQL Server 2000 (SP4)',2,120,'others'); -INSERT INTO entity_mentions VALUES(1433,'MS SQL Server 2012 Standard',2,120,'others'); -INSERT INTO entity_mentions VALUES(1434,'MSSQL2008',2,120,'others'); -INSERT INTO entity_mentions VALUES(1435,'MS SQL server 2008 R2',2,120,'others'); -INSERT INTO entity_mentions VALUES(1436,'MS SQL Server 2000 Standard',2,120,'others'); -INSERT INTO entity_mentions VALUES(1437,'MS SQLServer',2,120,'others'); -INSERT INTO entity_mentions VALUES(1438,'microsoft sql',2,120,'others'); -INSERT INTO entity_mentions VALUES(1439,'MS SQL 2008R2SP2STD (10.52.4042.0)',2,120,'others'); -INSERT INTO entity_mentions VALUES(1440,'MS SQL Server 2008 R2 Standard',2,120,'others'); -INSERT INTO entity_mentions VALUES(1441,'MS SQL Server 2005 Enterprise',2,120,'others'); -INSERT INTO entity_mentions VALUES(1442,'MS SQL Server 2008 Standard R2',2,120,'others'); -INSERT INTO entity_mentions VALUES(1443,'SQL Server 12.0.2000.8',2,120,'others'); -INSERT INTO entity_mentions VALUES(1444,'MS SQL 2008R2SP3STD (10.53.6220.0)',2,120,'others'); -INSERT INTO entity_mentions VALUES(1445,'SQL Server 11.0.5388.0',2,120,'others'); -INSERT INTO entity_mentions VALUES(1446,'sql server 2011 SQL',2,120,'others'); -INSERT INTO entity_mentions VALUES(1447,'MS SQL Server 2014 Enterprise',2,120,'others'); -INSERT INTO entity_mentions VALUES(1448,'sql server 2008 SQL',2,120,'others'); -INSERT INTO entity_mentions VALUES(1449,'SQl 2016',2,120,'others'); -INSERT INTO entity_mentions VALUES(1450,'Microsoft SQL Server',2,120,'others'); -INSERT INTO entity_mentions VALUES(1451,'SQL Server 2014 SP2',2,120,'others'); -INSERT INTO entity_mentions VALUES(1452,'SQL Server 2008 R2 RTM',2,120,'others'); -INSERT INTO entity_mentions VALUES(1453,'Microsoft SQL Server Standard Edition',2,120,'others'); -INSERT INTO entity_mentions VALUES(1454,'MS SQL Server 2000',2,120,'others'); -INSERT INTO entity_mentions VALUES(1455,'sql2000',2,120,'others'); -INSERT INTO entity_mentions VALUES(1456,'SQL Server 2012',2,120,'others'); -INSERT INTO entity_mentions VALUES(1457,'Microsoft SQL Server 2008',2,120,'others'); -INSERT INTO entity_mentions VALUES(1458,'SQL Server 10.0.5538.0',2,120,'others'); -INSERT INTO entity_mentions VALUES(1459,'Microsoft - Microsoft SQL Server 2008 R2 for Microsoft SQL Server 2008 R2 Express Edition 2008',2,120,'others'); -INSERT INTO entity_mentions VALUES(1460,'MICROSOFT SQL SERVER 2014 ENTERPRISE EDITION 12',2,120,'others'); -INSERT INTO entity_mentions VALUES(1461,'SQL Server 11.0.3156.0',2,120,'others'); -INSERT INTO entity_mentions VALUES(1462,'SQLServer',2,120,'others'); -INSERT INTO entity_mentions VALUES(1463,'SQL Server 2000 SP4',2,120,'others'); -INSERT INTO entity_mentions VALUES(1464,'SQL Server 2008',2,120,'others'); -INSERT INTO entity_mentions VALUES(1465,'SQL Server 2008 R2 STD SP1',2,120,'others'); -INSERT INTO entity_mentions VALUES(1466,'sql server 2010 SQL',2,120,'others'); -INSERT INTO entity_mentions VALUES(1467,'MICROSOFT SQL SERVER 2008 R2 STANDARD EDITION',2,120,'others'); -INSERT INTO entity_mentions VALUES(1468,'Microsoft SQL Server 2012 (SP4) (KB4018073) - 11.0.7001.0 (X64)',2,120,'others'); -INSERT INTO entity_mentions VALUES(1469,'MICROSOFT SQL SERVER 2014 STANDARD EDITION 12',2,120,'others'); -INSERT INTO entity_mentions VALUES(1470,'MS SQL SERVER 08',2,120,'others'); -INSERT INTO entity_mentions VALUES(1471,'SQL Server 10.50.2550.0',2,120,'others'); -INSERT INTO entity_mentions VALUES(1472,'Microsoft SQL Server 2005',2,120,'others'); -INSERT INTO entity_mentions VALUES(1473,'SQL 2000',2,120,'others'); -INSERT INTO entity_mentions VALUES(1474,'sql server 2012 SQL',2,120,'others'); -INSERT INTO entity_mentions VALUES(1475,'MS SQL Server 2017',2,120,'others'); -INSERT INTO entity_mentions VALUES(1476,'MS SQL Server 2012',2,120,'others'); -INSERT INTO entity_mentions VALUES(1477,'MS SQL Server 2008 R2 Enterprise',2,120,'others'); -INSERT INTO entity_mentions VALUES(1478,'SQL Server 9.0.1399.0',2,120,'others'); -INSERT INTO entity_mentions VALUES(1479,'MS SQL 2008SP2STD (10.2.4067.0)',2,120,'others'); -INSERT INTO entity_mentions VALUES(1480,'SQL Server 2005',2,120,'others'); -INSERT INTO entity_mentions VALUES(1481,'Microsoft SQL Server 8.1',2,120,'others'); -INSERT INTO entity_mentions VALUES(1482,'Microsoft - Microsoft SQL Server 2005 for Microsoft SQL Server 2005 Express Edition 2005',2,120,'others'); -INSERT INTO entity_mentions VALUES(1483,'Microsoft - Microsoft SQL Server 2008 R2 for Microsoft SQL Server 2008 R2 Standard Edition 2008',2,120,'others'); -INSERT INTO entity_mentions VALUES(1484,'MICROSOFT SQL SERVER 2008 R2 ENTERPRISE EDITION 10.*',2,120,'others'); -INSERT INTO entity_mentions VALUES(1485,'MICROSOFT SQL SERVER 2008 R2 STANDARD EDITION 10.5',2,120,'others'); -INSERT INTO entity_mentions VALUES(1486,'MS SQL 2005SP3STD (9.3.4340)',2,120,'others'); -INSERT INTO entity_mentions VALUES(1487,'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION',2,120,'others'); -INSERT INTO entity_mentions VALUES(1488,'SQL Server 2017 RTM',2,120,'others'); -INSERT INTO entity_mentions VALUES(1489,'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION 11.0"',2,120,'others'); -INSERT INTO entity_mentions VALUES(1490,'SQL 2014',2,120,'others'); -INSERT INTO entity_mentions VALUES(1491,'Microsoft - Microsoft SQL Server 2014 for Microsoft SQL Server 2014 Express Edition 2014',2,120,'others'); -INSERT INTO entity_mentions VALUES(1492,'Microsoft SQL Server 2008R2',2,120,'others'); -INSERT INTO entity_mentions VALUES(1493,'SQL Server 2008 SP1',2,120,'others'); -INSERT INTO entity_mentions VALUES(1494,'MICROSOFT SQL SERVER 2005 ENTERPRISE EDITION',2,120,'others'); -INSERT INTO entity_mentions VALUES(1495,'SQLSVR2008',2,120,'others'); -INSERT INTO entity_mentions VALUES(1496,'MICROSOFT SQL SERVER 2008 ENTERPRISE EDITION',2,120,'others'); -INSERT INTO entity_mentions VALUES(1497,'SQL Server 9.0.5069.0',2,120,'others'); -INSERT INTO entity_mentions VALUES(1498,'MS SQL Instance',2,120,'others'); -INSERT INTO entity_mentions VALUES(1499,'Microsoft - Microsoft SQL Server 2014 for Microsoft SQL Server 2014 Standard Edition 2014',2,120,'others'); -INSERT INTO entity_mentions VALUES(1500,'MICROSOFT SQL SERVER 2008 STANDARD EDITION',2,120,'others'); -INSERT INTO entity_mentions VALUES(1501,'SQL Server 2012 SP4',2,120,'others'); -INSERT INTO entity_mentions VALUES(1502,'Microsoft SQL sever 2008 R2 SP 3',2,120,'others'); -INSERT INTO entity_mentions VALUES(1503,'SQL Server 2012 SP2',2,120,'others'); -INSERT INTO entity_mentions VALUES(1504,'Microsoft SQL Server 2016',2,120,'others'); -INSERT INTO entity_mentions VALUES(1505,'MS SQL Server 2012 Developer',2,120,'others'); -INSERT INTO entity_mentions VALUES(1506,'MS SQL 2014',2,120,'others'); -INSERT INTO entity_mentions VALUES(1507,'MS SQL Server',2,120,'others'); -INSERT INTO entity_mentions VALUES(1508,'MS SQL Server 2005 Standard',2,120,'others'); -INSERT INTO entity_mentions VALUES(1509,'SQL Server 2014',2,120,'others'); -INSERT INTO entity_mentions VALUES(1510,'MS SQL Server 2016',2,120,'others'); -INSERT INTO entity_mentions VALUES(1511,'MICROSOFT SQL SERVER 2012 STANDARD EDITION 11',2,120,'others'); -INSERT INTO entity_mentions VALUES(1512,'SQL Server 10.0.2531.0',2,120,'others'); -INSERT INTO entity_mentions VALUES(1513,'MICROSOFT SQL SERVER 2000 STANDARD EDITION 8.*',2,120,'others'); -INSERT INTO entity_mentions VALUES(1514,'MS SQL Server 2014',2,120,'others'); -INSERT INTO entity_mentions VALUES(1515,'Microsoft - SQL Server Express LocalDB 2014',2,120,'others'); -INSERT INTO entity_mentions VALUES(1516,'MS SQL 2012SP3STD (11.3.6020.0)',2,120,'others'); -INSERT INTO entity_mentions VALUES(1517,'MICROSOFT SQL SERVER 2014 STANDARD EDITION 12.0',2,120,'others'); -INSERT INTO entity_mentions VALUES(1518,'MSSQL',2,120,'others'); -INSERT INTO entity_mentions VALUES(1519,'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION 11',2,120,'others'); -INSERT INTO entity_mentions VALUES(1520,'Microsoft - Microsoft SQL Server 2008 for Microsoft SQL Server 2008 Express Edition 2008',2,120,'others'); -INSERT INTO entity_mentions VALUES(1521,'SQL Server 2008 SP4',2,120,'others'); -INSERT INTO entity_mentions VALUES(1522,'Microsoft SQL Server 2008 R2 Policies 10.50.1600.1',2,120,'others'); -INSERT INTO entity_mentions VALUES(1523,'Microsoft SQL Server 1997 (SP4)',2,120,'others'); -INSERT INTO entity_mentions VALUES(1524,'MS SQL Server 2008 Express',2,120,'others'); -INSERT INTO entity_mentions VALUES(1525,'MS SQL 2005SP4STD (9.4.5324)',2,120,'others'); -INSERT INTO entity_mentions VALUES(1526,'SQL 2008',2,120,'others'); -INSERT INTO entity_mentions VALUES(1527,'MS SQL Server 2008 Enterprise',2,120,'others'); -INSERT INTO entity_mentions VALUES(1528,'MS SQL Server 2005',2,120,'others'); -INSERT INTO entity_mentions VALUES(1529,'SQL 2008 R2',2,120,'others'); -INSERT INTO entity_mentions VALUES(1530,'Microsoft SQL Server 2008 (SP3) - 10.0.5500.0 (X64)',2,120,'others'); -INSERT INTO entity_mentions VALUES(1531,'MS SQL Server 2014 Standard',2,120,'others'); -INSERT INTO entity_mentions VALUES(1532,'SQL Server 2016 SP2',2,120,'others'); -INSERT INTO entity_mentions VALUES(1533,'Microsoft SQL Server 2014',2,120,'others'); -INSERT INTO entity_mentions VALUES(1534,'Microsoft SQL Server Browser 10.52.4000.0',5,465,'others'); -INSERT INTO entity_mentions VALUES(1535,'MS SQL Server Browser',5,465,'others'); -INSERT INTO entity_mentions VALUES(1536,'MS SQL Server Compact',2,121,'others'); -INSERT INTO entity_mentions VALUES(1537,'Microsoft SQL Server Compact 3.5 SP2 ENU 3.5.8080.0',2,121,'others'); -INSERT INTO entity_mentions VALUES(1538,'Microsoft SQL Server Compact 3.5 SP2 Query Tools ENU 3.5.8080.0',2,121,'others'); -INSERT INTO entity_mentions VALUES(1539,'MS DTS',5,466,'others'); -INSERT INTO entity_mentions VALUES(1540,'Data Transformation Services',5,466,'others'); -INSERT INTO entity_mentions VALUES(1541,'Microsoft - Microsoft SQL Server Replication Logreader Agent 9',5,467,'others'); -INSERT INTO entity_mentions VALUES(1542,'Log Reader Agent',5,467,'others'); -INSERT INTO entity_mentions VALUES(1543,'SQL Server Analysis Services 10.50.2500.0',5,468,'others'); -INSERT INTO entity_mentions VALUES(1544,'SQL Server Analysis Services 11.0.2218.0',5,468,'others'); -INSERT INTO entity_mentions VALUES(1545,'SQL Server Analysis Services',5,468,'others'); -INSERT INTO entity_mentions VALUES(1546,'Microsoft - Microsoft SQL Server Analysis Services 2012 for Microsoft SQL Server 2012 Standard Edition 2012',5,468,'others'); -INSERT INTO entity_mentions VALUES(1547,'Microsoft - Microsoft SQL Server Analysis Services 2014 for Microsoft SQL Server 2014 Standard Edition 2014',5,468,'others'); -INSERT INTO entity_mentions VALUES(1548,'SSAS 2012',5,468,'others'); -INSERT INTO entity_mentions VALUES(1549,'Microsoft - Microsoft SQL Server Analysis Services 2014 for Microsoft SQL Server 2014 Enterprise Edition 2014',5,468,'others'); -INSERT INTO entity_mentions VALUES(1550,'SQL Server Analysis Services 12.0.2000.8',5,468,'others'); -INSERT INTO entity_mentions VALUES(1551,'SQL Server Analysis Services (SSAS)',5,468,'others'); -INSERT INTO entity_mentions VALUES(1552,'SQL Server Analysis Services 11.0.3000.0',5,468,'others'); -INSERT INTO entity_mentions VALUES(1553,'SSAS',5,468,'others'); -INSERT INTO entity_mentions VALUES(1554,'6+ SSAS databases',5,468,'others'); -INSERT INTO entity_mentions VALUES(1555,'25+ SSAS databases',5,468,'others'); -INSERT INTO entity_mentions VALUES(1556,'SQL Server Database Engine',5,469,'others'); -INSERT INTO entity_mentions VALUES(1557,'Microsoft - Microsoft SQL Server Database Engine Services 10.1',5,469,'others'); -INSERT INTO entity_mentions VALUES(1558,'Microsoft - Microsoft SQL Server Integration Services 2014 for Microsoft SQL Server 2014 Enterprise Edition 2014',5,470,'others'); -INSERT INTO entity_mentions VALUES(1559,'SSIS',5,470,'others'); -INSERT INTO entity_mentions VALUES(1560,'SSIS 2008 R3',5,470,'others'); -INSERT INTO entity_mentions VALUES(1561,'Microsoft - Microsoft SQL Server Integration Services 2014 for Microsoft SQL Server 2014 Standard Edition 2014',5,470,'others'); -INSERT INTO entity_mentions VALUES(1562,'SSIS 2008 R4',5,470,'others'); -INSERT INTO entity_mentions VALUES(1563,'SQL Server Integration Services',5,470,'others'); -INSERT INTO entity_mentions VALUES(1564,'SSIS 2008 R2',5,470,'others'); -INSERT INTO entity_mentions VALUES(1565,'SSIS - 2008',5,470,'others'); -INSERT INTO entity_mentions VALUES(1566,'SQL Server Integration Services (SSIS)',5,470,'others'); -INSERT INTO entity_mentions VALUES(1567,'Microsoft - Microsoft SQL Server Management Studio 16',5,471,'others'); -INSERT INTO entity_mentions VALUES(1568,'Microsoft SQL Server Management studio2016',5,471,'others'); -INSERT INTO entity_mentions VALUES(1569,'SQL Management Studio',5,471,'others'); -INSERT INTO entity_mentions VALUES(1570,'SQL server mgmt studio 2012',5,471,'others'); -INSERT INTO entity_mentions VALUES(1571,'SQL Server Management Studio',5,471,'others'); -INSERT INTO entity_mentions VALUES(1572,'Microsoft - SQL Server Management Studio 2012',5,471,'others'); -INSERT INTO entity_mentions VALUES(1573,'Microsoft - Microsoft SQL Report Builder 10.5',5,472,'others'); -INSERT INTO entity_mentions VALUES(1574,'SQL Server Report Builder',5,472,'others'); -INSERT INTO entity_mentions VALUES(1575,'SQL Server Reporting Services 10.50.2500.0',5,473,'others'); -INSERT INTO entity_mentions VALUES(1576,'SQL Server Reporting Services',5,473,'others'); -INSERT INTO entity_mentions VALUES(1577,'SQL Server Reporting Services 11.0.5058.0',5,473,'others'); -INSERT INTO entity_mentions VALUES(1578,'SQL Server Reporting Services 12.0.2000.8',5,473,'others'); -INSERT INTO entity_mentions VALUES(1579,'SQL Server Reporting Services 11.0.2218.0',5,473,'others'); -INSERT INTO entity_mentions VALUES(1580,'Microsoft - Microsoft SQL Server Reporting Services 2012 for Microsoft SQL Server 2012 Express Edition 2012',5,473,'others'); -INSERT INTO entity_mentions VALUES(1581,'SQL Server Reporting Services 11.0.3000.0',5,473,'others'); -INSERT INTO entity_mentions VALUES(1582,'SSRS 2016',5,473,'others'); -INSERT INTO entity_mentions VALUES(1583,'SSRS',5,473,'others'); -INSERT INTO entity_mentions VALUES(1584,'SQL Server Reporting Services (SSRS)',5,473,'others'); -INSERT INTO entity_mentions VALUES(1585,'MICROSOFT SQL SERVER REPORTING SERVICES 10.*',5,473,'others'); -INSERT INTO entity_mentions VALUES(1586,'MVS',6,439,'others'); -INSERT INTO entity_mentions VALUES(1587,'OS/390',6,440,'others'); -INSERT INTO entity_mentions VALUES(1588,'ZOS V1R9',6,441,'others'); -INSERT INTO entity_mentions VALUES(1589,'ZOS Base 1.12',6,441,'others'); -INSERT INTO entity_mentions VALUES(1590,'IBM Z/OS V2.1',6,441,'others'); -INSERT INTO entity_mentions VALUES(1591,'z/OS 1.9',6,441,'others'); -INSERT INTO entity_mentions VALUES(1592,'z/OS',6,441,'others'); -INSERT INTO entity_mentions VALUES(1593,'zOS',6,441,'others'); -INSERT INTO entity_mentions VALUES(1594,'z/OS 1.8',6,441,'others'); -INSERT INTO entity_mentions VALUES(1595,'zOS 11.1',6,441,'others'); -INSERT INTO entity_mentions VALUES(1596,'z/OS Base',6,441,'others'); -INSERT INTO entity_mentions VALUES(1597,'MySQL Instance',2,122,'others'); -INSERT INTO entity_mentions VALUES(1598,'MySQL AB - MySQL - 15.1',2,122,'others'); -INSERT INTO entity_mentions VALUES(1599,'My SQL 0',2,122,'others'); -INSERT INTO entity_mentions VALUES(1600,'MYSQL',2,122,'others'); -INSERT INTO entity_mentions VALUES(1601,'Sun - Sun Microsystems MySQL Server Community Edition 5.6',2,122,'others'); -INSERT INTO entity_mentions VALUES(1602,'MySQL AB - MySQL Server 5.5',2,122,'others'); -INSERT INTO entity_mentions VALUES(1603,'MySQL AB - MySQL Server 5.7',2,122,'others'); -INSERT INTO entity_mentions VALUES(1604,'MySQL Enterprise Server - 8.0.16',2,122,'others'); -INSERT INTO entity_mentions VALUES(1605,'mysql on linux',2,122,'others'); -INSERT INTO entity_mentions VALUES(1606,'Neo4',2,123,'others'); -INSERT INTO entity_mentions VALUES(1607,'Neo4J',2,123,'others'); -INSERT INTO entity_mentions VALUES(1608,'Net Optics Network TAPs',4,297,'others'); -INSERT INTO entity_mentions VALUES(1609,'Net Optics Taps',4,297,'others'); -INSERT INTO entity_mentions VALUES(1610,'NAS',8,272,'others'); -INSERT INTO entity_mentions VALUES(1611,'Netscape Application Server',8,272,'others'); -INSERT INTO entity_mentions VALUES(1612,'Netscape Application Server (NAS)',8,272,'others'); -INSERT INTO entity_mentions VALUES(1613,'NES',8,273,'others'); -INSERT INTO entity_mentions VALUES(1614,'Netscape Enterprise Server',8,273,'others'); -INSERT INTO entity_mentions VALUES(1615,'Netscape En',8,273,'others'); -INSERT INTO entity_mentions VALUES(1616,'Netscape Enterprise Server (NES)',8,273,'others'); -INSERT INTO entity_mentions VALUES(1617,'Nexus',2,124,'others'); -INSERT INTO entity_mentions VALUES(1618,'Nexus Repository OSS',2,124,'others'); -INSERT INTO entity_mentions VALUES(1619,'Nginx (Linux)',8,274,'others'); -INSERT INTO entity_mentions VALUES(1620,'Nginx 3 (Linux)',8,274,'others'); -INSERT INTO entity_mentions VALUES(1621,'Nginx 1 (Linux)',8,274,'others'); -INSERT INTO entity_mentions VALUES(1622,'Nginx',8,274,'others'); -INSERT INTO entity_mentions VALUES(1623,'Nginx 1',8,274,'others'); -INSERT INTO entity_mentions VALUES(1624,'Nginx 3',8,274,'others'); -INSERT INTO entity_mentions VALUES(1625,'Niakwa Programming Language (NPL)',9,342,'others'); -INSERT INTO entity_mentions VALUES(1626,'NPL (Niakwa Inc)',9,342,'others'); -INSERT INTO entity_mentions VALUES(1627,'Niakwa Programming Language',9,342,'others'); -INSERT INTO entity_mentions VALUES(1628,'NIX',2,125,'others'); -INSERT INTO entity_mentions VALUES(1629,'Nix package manager',2,125,'others'); -INSERT INTO entity_mentions VALUES(1630,'Node.js',10,507,'others'); -INSERT INTO entity_mentions VALUES(1631,'Node.js 0.10 (Linux)',10,507,'others'); -INSERT INTO entity_mentions VALUES(1632,'Nodejs Foundation - nodejs - node.js 11.7.0',10,507,'others'); -INSERT INTO entity_mentions VALUES(1633,'TS-Node.js 6',10,507,'others'); -INSERT INTO entity_mentions VALUES(1634,'Node.js 4',10,507,'others'); -INSERT INTO entity_mentions VALUES(1635,'Node.js 6',10,507,'others'); -INSERT INTO entity_mentions VALUES(1636,'Node.js 10',10,507,'others'); -INSERT INTO entity_mentions VALUES(1637,'Node.js 8',10,507,'others'); -INSERT INTO entity_mentions VALUES(1638,'TS-Node.js 8',10,507,'others'); -INSERT INTO entity_mentions VALUES(1639,'TS-Node.js 0.10',10,507,'others'); -INSERT INTO entity_mentions VALUES(1640,'node',10,507,'others'); -INSERT INTO entity_mentions VALUES(1641,'Node.js 0.8',10,507,'others'); -INSERT INTO entity_mentions VALUES(1642,'Node.js 0.10',10,507,'others'); -INSERT INTO entity_mentions VALUES(1643,'Node.js 4 (Linux)',10,507,'others'); -INSERT INTO entity_mentions VALUES(1644,'TS-Node.js 11',10,507,'others'); -INSERT INTO entity_mentions VALUES(1645,'Node.js 5',10,507,'others'); -INSERT INTO entity_mentions VALUES(1646,'Nodejs',10,507,'others'); -INSERT INTO entity_mentions VALUES(1647,'Node.js 0.12',10,507,'others'); -INSERT INTO entity_mentions VALUES(1648,'Objective C',9,343,'others'); -INSERT INTO entity_mentions VALUES(1649,'Objective-C',9,343,'others'); -INSERT INTO entity_mentions VALUES(1650,'Obj-C',9,343,'others'); -INSERT INTO entity_mentions VALUES(1651,'OpenEdge ABL',9,344,'others'); -INSERT INTO entity_mentions VALUES(1652,'Progress',9,344,'others'); -INSERT INTO entity_mentions VALUES(1653,'OpenEdge',9,344,'others'); -INSERT INTO entity_mentions VALUES(1654,'Progress OpenEdge',9,344,'others'); -INSERT INTO entity_mentions VALUES(1655,'Symas OpenLDAP',2,126,'others'); -INSERT INTO entity_mentions VALUES(1656,'OpenLDAP',2,126,'others'); -INSERT INTO entity_mentions VALUES(1657,'HPExstream',2,127,'others'); -INSERT INTO entity_mentions VALUES(1658,'OpenText Exstream',2,127,'others'); -INSERT INTO entity_mentions VALUES(1659,'VMS 8.4',6,442,'others'); -INSERT INTO entity_mentions VALUES(1660,'OPENVMS 7.3.2',6,442,'others'); -INSERT INTO entity_mentions VALUES(1661,'VMS',6,442,'others'); -INSERT INTO entity_mentions VALUES(1662,'OpenVMS',6,442,'others'); -INSERT INTO entity_mentions VALUES(1663,'OPENVMS 8.4',6,442,'others'); -INSERT INTO entity_mentions VALUES(1664,'OpenVPN',2,128,'others'); -INSERT INTO entity_mentions VALUES(1665,'Oracle Access Management',2,129,'others'); -INSERT INTO entity_mentions VALUES(1666,'OAM 12c',2,129,'others'); -INSERT INTO entity_mentions VALUES(1667,'ADF 12c',2,130,'others'); -INSERT INTO entity_mentions VALUES(1668,'Oracle ADF',2,130,'others'); -INSERT INTO entity_mentions VALUES(1669,'Oracle APEX',2,131,'others'); -INSERT INTO entity_mentions VALUES(1670,'Apex',2,131,'others'); -INSERT INTO entity_mentions VALUES(1671,'Oracle HTTP Server 12c',8,275,'others'); -INSERT INTO entity_mentions VALUES(1672,'OHS',8,275,'others'); -INSERT INTO entity_mentions VALUES(1673,'Oracle Application Server 9i',8,275,'others'); -INSERT INTO entity_mentions VALUES(1674,'Oracle HTTP Server powered by Apache',8,275,'others'); -INSERT INTO entity_mentions VALUES(1675,'j2eeoracleca',8,275,'others'); -INSERT INTO entity_mentions VALUES(1676,'Oracle Application Server',8,275,'others'); -INSERT INTO entity_mentions VALUES(1677,'Oracle HTTP',8,275,'others'); -INSERT INTO entity_mentions VALUES(1678,'Oracle HTTP server',8,275,'others'); -INSERT INTO entity_mentions VALUES(1679,'Oracle - Oracle Application Server OC4J Instance 11.2',8,275,'others'); -INSERT INTO entity_mentions VALUES(1680,'Oracle Web App Server',8,275,'others'); -INSERT INTO entity_mentions VALUES(1681,'9i AS server',8,275,'others'); -INSERT INTO entity_mentions VALUES(1682,'Oracle Applications 11.5.10CU2',8,275,'others'); -INSERT INTO entity_mentions VALUES(1683,'Oracle Application R12.1.3',8,275,'others'); -INSERT INTO entity_mentions VALUES(1684,'OC4J',8,275,'others'); -INSERT INTO entity_mentions VALUES(1685,'Oracle Appache 1.0.22',8,275,'others'); -INSERT INTO entity_mentions VALUES(1686,'Oracle Transparent Gateway',7,494,'others'); -INSERT INTO entity_mentions VALUES(1687,'Weblogic BI Publisher',2,132,'others'); -INSERT INTO entity_mentions VALUES(1688,'Oracle BI Publisher 10g (10.1.3.4)',2,132,'others'); -INSERT INTO entity_mentions VALUES(1689,'Oracle BI Publisher',2,132,'others'); -INSERT INTO entity_mentions VALUES(1690,'Oracle Business Intelligence',2,133,'others'); -INSERT INTO entity_mentions VALUES(1691,'OBI',2,133,'others'); -INSERT INTO entity_mentions VALUES(1692,'OBIEE',2,133,'others'); -INSERT INTO entity_mentions VALUES(1693,'OBI Reporting',2,133,'others'); -INSERT INTO entity_mentions VALUES(1694,'Oracle 12c Enterprise',2,134,'others'); -INSERT INTO entity_mentions VALUES(1695,'Oracle 12 c',2,134,'others'); -INSERT INTO entity_mentions VALUES(1696,'Oracle 12.2 Client',2,134,'others'); -INSERT INTO entity_mentions VALUES(1697,'Oracle 11gR1',2,134,'others'); -INSERT INTO entity_mentions VALUES(1698,'Oracle 18c',2,134,'others'); -INSERT INTO entity_mentions VALUES(1699,'Oracle 9.2.0.7.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1700,'Oracle 10.2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1701,'Oracle Database 11g Enterprise Edition Release 11.2.0.4.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1702,'Oracle 11.2 (Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit) RAC',2,134,'others'); -INSERT INTO entity_mentions VALUES(1703,'Oracle 18',2,134,'others'); -INSERT INTO entity_mentions VALUES(1704,'Oracle 9i',2,134,'others'); -INSERT INTO entity_mentions VALUES(1705,'Oracle 12c (v12.2.0.1) ORACLE',2,134,'others'); -INSERT INTO entity_mentions VALUES(1706,'Oracle Database 12.1.0.2.190716',2,134,'others'); -INSERT INTO entity_mentions VALUES(1707,'Oracle 12.1.0.2.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1708,'Oracle 12.1',2,134,'others'); -INSERT INTO entity_mentions VALUES(1709,'Oracle Database 11g R2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1710,'Oracle 11 on AIX',2,134,'others'); -INSERT INTO entity_mentions VALUES(1711,'Oracle Database 10g Enterprise Edition Release 10.1.0.4.0 - 64bit',2,134,'others'); -INSERT INTO entity_mentions VALUES(1712,'Oracle Database 11.2.0.3.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1713,'Oracle Database 10g 10.2.0.5.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1714,'Oracle 11 on EXA',2,134,'others'); -INSERT INTO entity_mentions VALUES(1715,'Oracle Database 11.1.0.7.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1716,'Oracle Database Server',2,134,'others'); -INSERT INTO entity_mentions VALUES(1717,'Oracle DB Server',2,134,'others'); -INSERT INTO entity_mentions VALUES(1718,'Oracle (9i,10g,11g,12c,18c)',2,134,'others'); -INSERT INTO entity_mentions VALUES(1719,'Oracle 12C',2,134,'others'); -INSERT INTO entity_mentions VALUES(1720,'Oracle 10.2.0.5',2,134,'others'); -INSERT INTO entity_mentions VALUES(1721,'Oracle-OracleDB-10g',2,134,'others'); -INSERT INTO entity_mentions VALUES(1722,'Oracle 11.2.0.2.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1723,'Oracle 10',2,134,'others'); -INSERT INTO entity_mentions VALUES(1724,'Oracle 8',2,134,'others'); -INSERT INTO entity_mentions VALUES(1725,'Oracle 11G R2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1726,'Oracle Database 10g Release 10.2.0.4.0 - 64bit Production',2,134,'others'); -INSERT INTO entity_mentions VALUES(1727,'Oarcle 11G',2,134,'others'); -INSERT INTO entity_mentions VALUES(1728,'Oracle 12C R2 ORACLE',2,134,'others'); -INSERT INTO entity_mentions VALUES(1729,'Oracle 11x',2,134,'others'); -INSERT INTO entity_mentions VALUES(1730,'Oracle 11.2.4',2,134,'others'); -INSERT INTO entity_mentions VALUES(1731,'Oracle Database 11gR2 Enterprise Edition 11.2.0.1 (64-bit)',2,134,'others'); -INSERT INTO entity_mentions VALUES(1732,'Oracle',2,134,'others'); -INSERT INTO entity_mentions VALUES(1733,'Oracle 12.1.0.2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1734,'Oracle Database 10g R2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1735,'Oracle 12x',2,134,'others'); -INSERT INTO entity_mentions VALUES(1736,'Oracle - 12.1.0.2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1737,'Oracle 10g',2,134,'others'); -INSERT INTO entity_mentions VALUES(1738,'DB - Oracle inbuilt',2,134,'others'); -INSERT INTO entity_mentions VALUES(1739,'Oracle 12g',2,134,'others'); -INSERT INTO entity_mentions VALUES(1740,'Oracle Database 10g Release 2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1741,'Oracle 11.2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1742,'Oracle 11 g',2,134,'others'); -INSERT INTO entity_mentions VALUES(1743,'Oracle 9.2.0.8.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1744,'Oracle Database 12.2.1.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1745,'Oracle 10.2.0.4.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1746,'Oracle 10g (10.2.0.3.0 on 32-bit windows)',2,134,'others'); -INSERT INTO entity_mentions VALUES(1747,'Oracle 11g (11.2.0.3.0 on 64-bit windows)',2,134,'others'); -INSERT INTO entity_mentions VALUES(1748,'Oracle-Oracle DB-8i',2,134,'others'); -INSERT INTO entity_mentions VALUES(1749,'Oracle DB',2,134,'others'); -INSERT INTO entity_mentions VALUES(1750,'Oracle Database',2,134,'others'); -INSERT INTO entity_mentions VALUES(1751,'Oracle - Oracle Database - 10g Release 2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1752,'Oracle 10x',2,134,'others'); -INSERT INTO entity_mentions VALUES(1753,'Oracle 11.2.0.4.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1754,'Oracle 11g RAC',2,134,'others'); -INSERT INTO entity_mentions VALUES(1755,'Oracle Database 11g Release 2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1756,'Oracle Server',2,134,'others'); -INSERT INTO entity_mentions VALUES(1757,'Oracle Database 12c R1',2,134,'others'); -INSERT INTO entity_mentions VALUES(1758,'Oracle 10.2.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1759,'Oracle 11.2.0.4.0 64-bit',2,134,'others'); -INSERT INTO entity_mentions VALUES(1760,'Oracle 10.2.0.5.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1761,'Oracle 9.2.0.5.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1762,'Oracle DB 11g EER 11.2.0.3.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1763,'ORACLE RELATIONAL DATABASE MANAGEMENT SYSTEM VERSION 11.2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1764,'Oracle Database 9i Release 2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1765,'Oracle 11.1.0.7.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1766,'Oracle Database 11g',2,134,'others'); -INSERT INTO entity_mentions VALUES(1767,'Oracle DB 11.2.0.3',2,134,'others'); -INSERT INTO entity_mentions VALUES(1768,'Oracle 12.2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1769,'Oracle 11g',2,134,'others'); -INSERT INTO entity_mentions VALUES(1770,'Oracle Database 12c Release 2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1771,'Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production',2,134,'others'); -INSERT INTO entity_mentions VALUES(1772,'Oracle 11.2.0.3.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1773,'Oracle 10.2.0.3.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1774,'Oracle 12',2,134,'others'); -INSERT INTO entity_mentions VALUES(1775,'Oracle Database 12c R2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1776,'Oracle 12C on linux',2,134,'others'); -INSERT INTO entity_mentions VALUES(1777,'oracle 11g ORACLE',2,134,'others'); -INSERT INTO entity_mentions VALUES(1778,'Oracle - 11.2.0.3',2,134,'others'); -INSERT INTO entity_mentions VALUES(1779,'Oracle 12c (Oracle Database 12c Enterprise Edition Release 11.2.0.3.0 - 64bit)',2,134,'others'); -INSERT INTO entity_mentions VALUES(1780,'Oracle9i Enterprise Edition Release 9.2.0.5.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1781,'OracleDB EE11.2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1782,'Oracle 11g on linux',2,134,'others'); -INSERT INTO entity_mentions VALUES(1783,'Oracle 11gEssbase',2,134,'others'); -INSERT INTO entity_mentions VALUES(1784,'Oracle12',2,134,'others'); -INSERT INTO entity_mentions VALUES(1785,'Oracle Database 12c Release 1',2,134,'others'); -INSERT INTO entity_mentions VALUES(1786,'JServer Release 9.2.0.5.0',5,474,'others'); -INSERT INTO entity_mentions VALUES(1787,'Jserver',5,474,'others'); -INSERT INTO entity_mentions VALUES(1788,'ORACLE SPATIAL',5,475,'others'); -INSERT INTO entity_mentions VALUES(1789,'Oracle Spatial and Graph',5,475,'others'); -INSERT INTO entity_mentions VALUES(1790,'Designer 6i',2,135,'others'); -INSERT INTO entity_mentions VALUES(1791,'Oracle Designer',2,135,'others'); -INSERT INTO entity_mentions VALUES(1792,'Enterprise Manager 12.2.1.1',2,136,'others'); -INSERT INTO entity_mentions VALUES(1793,'Enterprise Manager 12.2.1.2',2,136,'others'); -INSERT INTO entity_mentions VALUES(1794,'Enterprise Manager 11.1.1.7',2,136,'others'); -INSERT INTO entity_mentions VALUES(1795,'Oracle Enterprise Manager',2,136,'others'); -INSERT INTO entity_mentions VALUES(1796,'Exadata X6-2',4,298,'others'); -INSERT INTO entity_mentions VALUES(1797,'Oracle Exadata',4,298,'others'); -INSERT INTO entity_mentions VALUES(1798,'Oracle Exadata 11g',4,298,'others'); -INSERT INTO entity_mentions VALUES(1799,'Oracle - Exadata X6-2',4,298,'others'); -INSERT INTO entity_mentions VALUES(1800,'Oracle Forms',2,137,'others'); -INSERT INTO entity_mentions VALUES(1801,'Hyperion Interactive Reporting',2,138,'others'); -INSERT INTO entity_mentions VALUES(1802,'Oracle Hyperion Interactive Reporting version 9.3',2,138,'others'); -INSERT INTO entity_mentions VALUES(1803,'Hyperion Planning Server',2,139,'others'); -INSERT INTO entity_mentions VALUES(1804,'Hyperion Planning',2,139,'others'); -INSERT INTO entity_mentions VALUES(1805,'Oracle Net Services',2,140,'others'); -INSERT INTO entity_mentions VALUES(1806,'Oracle, Nets',2,140,'others'); -INSERT INTO entity_mentions VALUES(1807,'Oracle Real Application Clusters (RAC)',2,141,'others'); -INSERT INTO entity_mentions VALUES(1808,'Oracle RAC',2,141,'others'); -INSERT INTO entity_mentions VALUES(1809,'Oracle Real Application Clusters',2,141,'others'); -INSERT INTO entity_mentions VALUES(1810,'Oracle Retail Point-of-Service',2,142,'others'); -INSERT INTO entity_mentions VALUES(1811,'ORPOS 13.3.3',2,142,'others'); -INSERT INTO entity_mentions VALUES(1812,'ORPOS 13.3.5',2,142,'others'); -INSERT INTO entity_mentions VALUES(1813,'ORPOS 13.3.4',2,142,'others'); -INSERT INTO entity_mentions VALUES(1814,'Oracle Service Bus',2,143,'others'); -INSERT INTO entity_mentions VALUES(1815,'Oracle Service Bus 11.1.1.7',2,143,'others'); -INSERT INTO entity_mentions VALUES(1816,'Oracle Service Bus 12.2.1.2',2,143,'others'); -INSERT INTO entity_mentions VALUES(1817,'OSB Servers',2,143,'others'); -INSERT INTO entity_mentions VALUES(1818,'Oracle Service Bus 12.2.1.1',2,143,'others'); -INSERT INTO entity_mentions VALUES(1819,'Oracle Smart View',2,144,'others'); -INSERT INTO entity_mentions VALUES(1820,'Hyperian Smart View',2,144,'others'); -INSERT INTO entity_mentions VALUES(1821,'Oracle SOA Suite',2,145,'others'); -INSERT INTO entity_mentions VALUES(1822,'Oracle SOA Suite 12.2.1.3.0',2,145,'others'); -INSERT INTO entity_mentions VALUES(1823,'Oracle SQL Developer',2,146,'others'); -INSERT INTO entity_mentions VALUES(1824,'Oracle - Oracle Sql Developer 1.5',2,146,'others'); -INSERT INTO entity_mentions VALUES(1825,'Oracle TimesTen In-Memory Database',2,147,'others'); -INSERT INTO entity_mentions VALUES(1826,'Oracle TT',2,147,'others'); -INSERT INTO entity_mentions VALUES(1827,'Oracle VM 3.3.3',3,567,'others'); -INSERT INTO entity_mentions VALUES(1828,'Oracle VM',3,567,'others'); -INSERT INTO entity_mentions VALUES(1829,'Oracle VM 3.3',3,567,'others'); -INSERT INTO entity_mentions VALUES(1830,'OWB 10g',2,148,'others'); -INSERT INTO entity_mentions VALUES(1831,'Oracle Warehouse Builder',2,148,'others'); -INSERT INTO entity_mentions VALUES(1832,'Oracle Warehouse Builder (OWB)',2,148,'others'); -INSERT INTO entity_mentions VALUES(1833,'WebCenter Content Server',8,276,'others'); -INSERT INTO entity_mentions VALUES(1834,'Oracle WebCenter Content Server',8,276,'others'); -INSERT INTO entity_mentions VALUES(1835,'IDOC SCRIPT',7,495,'others'); -INSERT INTO entity_mentions VALUES(1836,'Orbix',2,149,'others'); -INSERT INTO entity_mentions VALUES(1837,'IONA Orbix',2,149,'others'); -INSERT INTO entity_mentions VALUES(1838,'OS/2',6,443,'others'); -INSERT INTO entity_mentions VALUES(1839,'OWASP Enterprise Security API (ESAPI)',12,416,'others'); -INSERT INTO entity_mentions VALUES(1840,'OWASP Enterprise Security API',12,416,'others'); -INSERT INTO entity_mentions VALUES(1841,'Esapi',12,416,'others'); -INSERT INTO entity_mentions VALUES(1842,'Pascal',9,345,'others'); -INSERT INTO entity_mentions VALUES(1843,'Object Pascal',9,346,'others'); -INSERT INTO entity_mentions VALUES(1844,'Clascal',9,346,'others'); -INSERT INTO entity_mentions VALUES(1845,'Pentaho',2,150,'others'); -INSERT INTO entity_mentions VALUES(1846,'peoplesoft',2,151,'others'); -INSERT INTO entity_mentions VALUES(1847,'Oracle-HR-9.2',2,151,'others'); -INSERT INTO entity_mentions VALUES(1848,'Perkin Elmer Informatics',2,152,'others'); -INSERT INTO entity_mentions VALUES(1849,'Perkin Elmer Informatics (PKI)',2,152,'others'); -INSERT INTO entity_mentions VALUES(1850,'Perl',9,347,'others'); -INSERT INTO entity_mentions VALUES(1851,'Perl 5.8.4',9,347,'others'); -INSERT INTO entity_mentions VALUES(1852,'ActivePerl',9,348,'others'); -INSERT INTO entity_mentions VALUES(1853,'ActiveState Tool Corp. - ActivePerl 5.12',9,348,'others'); -INSERT INTO entity_mentions VALUES(1854,'ActiveState Tool Corp. - ActivePerl 5.8',9,348,'others'); -INSERT INTO entity_mentions VALUES(1855,'ORAPERL',12,417,'others'); -INSERT INTO entity_mentions VALUES(1856,'REX',9,349,'others'); -INSERT INTO entity_mentions VALUES(1857,'Pervasive',2,153,'others'); -INSERT INTO entity_mentions VALUES(1858,'Pervasive PSQL',2,153,'others'); -INSERT INTO entity_mentions VALUES(1859,'PHP 5.4',9,350,'others'); -INSERT INTO entity_mentions VALUES(1860,'PHP',9,350,'others'); -INSERT INTO entity_mentions VALUES(1861,'Pipeflo',2,154,'others'); -INSERT INTO entity_mentions VALUES(1862,'PIPE-FLO',2,154,'others'); -INSERT INTO entity_mentions VALUES(1863,'TCServer V6',8,277,'others'); -INSERT INTO entity_mentions VALUES(1864,'Pivotal tc Server',8,277,'others'); -INSERT INTO entity_mentions VALUES(1865,'IBM PKWARE PKZip 2',2,155,'others'); -INSERT INTO entity_mentions VALUES(1866,'PKZIP',2,155,'others'); -INSERT INTO entity_mentions VALUES(1867,'PL/I',9,351,'others'); -INSERT INTO entity_mentions VALUES(1868,'PL1',9,351,'others'); -INSERT INTO entity_mentions VALUES(1869,'pli',9,351,'others'); -INSERT INTO entity_mentions VALUES(1870,'PL/1',9,351,'others'); -INSERT INTO entity_mentions VALUES(1871,'PLQSL',9,352,'others'); -INSERT INTO entity_mentions VALUES(1872,'Oracle - SQL',9,352,'others'); -INSERT INTO entity_mentions VALUES(1873,'PL/SQL TEMPLATING LANGUAGE',9,352,'others'); -INSERT INTO entity_mentions VALUES(1874,'PL/SQL',9,352,'others'); -INSERT INTO entity_mentions VALUES(1875,'Oracle SQL',9,352,'others'); -INSERT INTO entity_mentions VALUES(1876,'PLSQL;',9,352,'others'); -INSERT INTO entity_mentions VALUES(1877,'Oracle PL/SQL',9,352,'others'); -INSERT INTO entity_mentions VALUES(1878,'Oracle PLSQL',9,352,'others'); -INSERT INTO entity_mentions VALUES(1879,'plsql',9,352,'others'); -INSERT INTO entity_mentions VALUES(1880,'pl-sql',9,352,'others'); -INSERT INTO entity_mentions VALUES(1881,'PL SQL',9,352,'others'); -INSERT INTO entity_mentions VALUES(1882,'Planview',2,156,'others'); -INSERT INTO entity_mentions VALUES(1883,'Projectplace',2,156,'others'); -INSERT INTO entity_mentions VALUES(1884,'postgres',2,157,'others'); -INSERT INTO entity_mentions VALUES(1885,'PostGreSQL',2,157,'others'); -INSERT INTO entity_mentions VALUES(1886,'PostgreSQL 0',2,157,'others'); -INSERT INTO entity_mentions VALUES(1887,'Postgress',2,157,'others'); -INSERT INTO entity_mentions VALUES(1888,'PowerBuilder 6.5',2,158,'others'); -INSERT INTO entity_mentions VALUES(1889,'Powerbuilder V12.5',2,158,'others'); -INSERT INTO entity_mentions VALUES(1890,'Power Builder',2,158,'others'); -INSERT INTO entity_mentions VALUES(1891,'Powerbuilder v11.5',2,158,'others'); -INSERT INTO entity_mentions VALUES(1892,'Power Builder 6.5',2,158,'others'); -INSERT INTO entity_mentions VALUES(1893,'Powerbuilder',2,158,'others'); -INSERT INTO entity_mentions VALUES(1894,'Primavera',2,159,'others'); -INSERT INTO entity_mentions VALUES(1895,'Primavera P6',2,159,'others'); -INSERT INTO entity_mentions VALUES(1896,'PRO*C',9,353,'others'); -INSERT INTO entity_mentions VALUES(1897,'PRO C',9,353,'others'); -INSERT INTO entity_mentions VALUES(1898,'ProC',9,353,'others'); -INSERT INTO entity_mentions VALUES(1899,'Pro*Cobol',2,160,'others'); -INSERT INTO entity_mentions VALUES(1900,'ProjectWise',2,161,'others'); -INSERT INTO entity_mentions VALUES(1901,'ProjectWise Oracle Server',2,161,'others'); -INSERT INTO entity_mentions VALUES(1902,'Projectwise Server (XM)',2,162,'others'); -INSERT INTO entity_mentions VALUES(1903,'ProjectWise JJ',2,162,'others'); -INSERT INTO entity_mentions VALUES(1904,'Projectwise Server',2,162,'others'); -INSERT INTO entity_mentions VALUES(1905,'Projectwise Setup for PEMEX',2,162,'others'); -INSERT INTO entity_mentions VALUES(1906,'ProjectWise Web Server',2,162,'others'); -INSERT INTO entity_mentions VALUES(1907,'ProjectWise Application Server',2,162,'others'); -INSERT INTO entity_mentions VALUES(1908,'ProjectWise Cache Server',2,162,'others'); -INSERT INTO entity_mentions VALUES(1909,'PVCS Version Manager',2,163,'others'); -INSERT INTO entity_mentions VALUES(1910,'Serena PVCS Version Manager 8.4',2,163,'others'); -INSERT INTO entity_mentions VALUES(1911,'Python Software Foundation - Python 2.6',9,354,'others'); -INSERT INTO entity_mentions VALUES(1912,'Python - Python - Python 2',9,354,'others'); -INSERT INTO entity_mentions VALUES(1913,'Python 2',9,354,'others'); -INSERT INTO entity_mentions VALUES(1914,'Python',9,354,'others'); -INSERT INTO entity_mentions VALUES(1915,'QlikView',2,164,'others'); -INSERT INTO entity_mentions VALUES(1916,'R',9,355,'others'); -INSERT INTO entity_mentions VALUES(1917,'RMQ',2,165,'others'); -INSERT INTO entity_mentions VALUES(1918,'rabbit mq',2,165,'others'); -INSERT INTO entity_mentions VALUES(1919,'RabbitMQ',2,165,'others'); -INSERT INTO entity_mentions VALUES(1920,'ClearCase Build Utility 1',2,166,'others'); -INSERT INTO entity_mentions VALUES(1921,'Rational ClearCase',2,166,'others'); -INSERT INTO entity_mentions VALUES(1922,'Clearquest',2,167,'others'); -INSERT INTO entity_mentions VALUES(1923,'Rational ClearQuest',2,167,'others'); -INSERT INTO entity_mentions VALUES(1924,'redis',2,168,'others'); -INSERT INTO entity_mentions VALUES(1925,'Remedy',2,169,'others'); -INSERT INTO entity_mentions VALUES(1926,'Remedy ARS',2,169,'others'); -INSERT INTO entity_mentions VALUES(1927,'Resin Web Server',8,278,'others'); -INSERT INTO entity_mentions VALUES(1928,'Resin',8,278,'others'); -INSERT INTO entity_mentions VALUES(1929,'rexx',9,356,'others'); -INSERT INTO entity_mentions VALUES(1930,'Riak',2,170,'others'); -INSERT INTO entity_mentions VALUES(1931,'RightFax client 10',2,171,'others'); -INSERT INTO entity_mentions VALUES(1932,'RightFax',2,171,'others'); -INSERT INTO entity_mentions VALUES(1933,'RPG',9,357,'others'); -INSERT INTO entity_mentions VALUES(1934,'Ruby',9,358,'others'); -INSERT INTO entity_mentions VALUES(1935,'Ruby on Rails',10,508,'others'); -INSERT INTO entity_mentions VALUES(1936,'Rumba',2,172,'others'); -INSERT INTO entity_mentions VALUES(1937,'Salesforce Object Query Language (SOQL)',9,359,'others'); -INSERT INTO entity_mentions VALUES(1938,'SOQL',9,359,'others'); -INSERT INTO entity_mentions VALUES(1939,'Salesforce Object Query Language',9,359,'others'); -INSERT INTO entity_mentions VALUES(1940,'SAP Business Objects',2,173,'others'); -INSERT INTO entity_mentions VALUES(1941,'Business Objects 12',2,173,'others'); -INSERT INTO entity_mentions VALUES(1942,'BusinessObjects 4.2 SP7',2,173,'others'); -INSERT INTO entity_mentions VALUES(1943,'SAP BI 4.2 Sp5',2,173,'others'); -INSERT INTO entity_mentions VALUES(1944,'SAP BusinessObjects BI server',2,173,'others'); -INSERT INTO entity_mentions VALUES(1945,'SAP ERP',2,174,'others'); -INSERT INTO entity_mentions VALUES(1946,'SAP EHP 7',5,476,'others'); -INSERT INTO entity_mentions VALUES(1947,'SAP EHP',5,476,'others'); -INSERT INTO entity_mentions VALUES(1948,'SAP - SAP Kernel 7.1',5,477,'others'); -INSERT INTO entity_mentions VALUES(1949,'SAP Kernel',5,477,'others'); -INSERT INTO entity_mentions VALUES(1950,'SAP HANA ON SUSEOracle 11g on Linux',2,175,'others'); -INSERT INTO entity_mentions VALUES(1951,'HANA',2,175,'others'); -INSERT INTO entity_mentions VALUES(1952,'SAP HANA DB',2,175,'others'); -INSERT INTO entity_mentions VALUES(1953,'SAP - HANA 2.0',2,175,'others'); -INSERT INTO entity_mentions VALUES(1954,'SAP MaxDB',2,176,'others'); -INSERT INTO entity_mentions VALUES(1955,'NetWeaver',8,279,'others'); -INSERT INTO entity_mentions VALUES(1956,'SAP NetWeaver App Server',8,279,'others'); -INSERT INTO entity_mentions VALUES(1957,'ABAP',7,496,'others'); -INSERT INTO entity_mentions VALUES(1958,'SAP NetWeaver Business Warehouse',2,177,'others'); -INSERT INTO entity_mentions VALUES(1959,'SAP BW 7.5 SP10 - BW has 10 App servers for load balancing',2,177,'others'); -INSERT INTO entity_mentions VALUES(1960,'SAP BW DB server has one instance and 13 servers for load balancing',2,177,'others'); -INSERT INTO entity_mentions VALUES(1961,'SAP BW 7.5 SP10',2,177,'others'); -INSERT INTO entity_mentions VALUES(1962,'SAP - SAP SQL Anywhere Network Database Server 12',2,178,'others'); -INSERT INTO entity_mentions VALUES(1963,'SAP SQL Anywhere',2,178,'others'); -INSERT INTO entity_mentions VALUES(1964,'SAP - SAP SQL Anywhere Network Database Server 11',2,178,'others'); -INSERT INTO entity_mentions VALUES(1965,'SAP - SAP SQL Anywhere Personal Database Server 16',2,178,'others'); -INSERT INTO entity_mentions VALUES(1966,'SAP Web Dynpro',2,179,'others'); -INSERT INTO entity_mentions VALUES(1967,'Web-Dynpro',2,179,'others'); -INSERT INTO entity_mentions VALUES(1968,'SAS',9,360,'others'); -INSERT INTO entity_mentions VALUES(1969,'SAS 9.2',9,360,'others'); -INSERT INTO entity_mentions VALUES(1970,'SCSS',9,361,'others'); -INSERT INTO entity_mentions VALUES(1971,'Sass',9,361,'others'); -INSERT INTO entity_mentions VALUES(1972,'Scala',9,362,'others'); -INSERT INTO entity_mentions VALUES(1973,'Scalla',9,362,'others'); -INSERT INTO entity_mentions VALUES(1974,'Sentry',2,180,'others'); -INSERT INTO entity_mentions VALUES(1975,'Sentry 1.13',2,180,'others'); -INSERT INTO entity_mentions VALUES(1976,'Sharepoints 2010',2,181,'others'); -INSERT INTO entity_mentions VALUES(1977,'Microsoft SPS 2010',2,181,'others'); -INSERT INTO entity_mentions VALUES(1978,'SharePoint',2,181,'others'); -INSERT INTO entity_mentions VALUES(1979,'SharePoint 2013',2,181,'others'); -INSERT INTO entity_mentions VALUES(1980,'Sharepoint 2007',2,181,'others'); -INSERT INTO entity_mentions VALUES(1981,'Sharepoint 2010',2,181,'others'); -INSERT INTO entity_mentions VALUES(1982,'SQL Server SP2013 Database Server',2,181,'others'); -INSERT INTO entity_mentions VALUES(1983,'Sharepoint 2016',2,181,'others'); -INSERT INTO entity_mentions VALUES(1984,'Siebel IP 2015',2,182,'others'); -INSERT INTO entity_mentions VALUES(1985,'Siebel 7.8.2.16',2,182,'others'); -INSERT INTO entity_mentions VALUES(1986,'Siebel',2,182,'others'); -INSERT INTO entity_mentions VALUES(1987,'Siebel CRM',2,182,'others'); -INSERT INTO entity_mentions VALUES(1988,'Smalltalk',9,363,'others'); -INSERT INTO entity_mentions VALUES(1989,'SNA Manager',2,183,'others'); -INSERT INTO entity_mentions VALUES(1990,'SNA Manager 8.0.3608.0',2,183,'others'); -INSERT INTO entity_mentions VALUES(1991,'Techsmith Corporation - SnagIt 8',2,184,'others'); -INSERT INTO entity_mentions VALUES(1992,'SnagIt',2,184,'others'); -INSERT INTO entity_mentions VALUES(1993,'Solid development server',2,185,'others'); -INSERT INTO entity_mentions VALUES(1994,'solidDB',2,185,'others'); -INSERT INTO entity_mentions VALUES(1995,'SonarSource - SonarSource SonarQube Server 5.1',2,186,'others'); -INSERT INTO entity_mentions VALUES(1996,'SonarQube',2,186,'others'); -INSERT INTO entity_mentions VALUES(1997,'SpaceMonger',2,187,'others'); -INSERT INTO entity_mentions VALUES(1998,'Sixty-Five Software - SpaceMonger 1.4',2,187,'others'); -INSERT INTO entity_mentions VALUES(1999,'Spark',8,280,'others'); -INSERT INTO entity_mentions VALUES(2000,'Splunk',2,188,'others'); -INSERT INTO entity_mentions VALUES(2001,'SQLPlus',5,478,'others'); -INSERT INTO entity_mentions VALUES(2002,'SQL Plus',5,478,'others'); -INSERT INTO entity_mentions VALUES(2003,'SQL*Plus',5,478,'others'); -INSERT INTO entity_mentions VALUES(2004,'SQLIO 1.0',2,189,'others'); -INSERT INTO entity_mentions VALUES(2005,'SQLIO',2,189,'others'); -INSERT INTO entity_mentions VALUES(2006,'Netscape Enterprise Server',8,281,'others'); -INSERT INTO entity_mentions VALUES(2007,'Sun ONE Web Server',8,281,'others'); -INSERT INTO entity_mentions VALUES(2008,'Sun Java Web Server 7.0 Update 2',8,281,'others'); -INSERT INTO entity_mentions VALUES(2009,'iPlanet Web Server',8,281,'others'); -INSERT INTO entity_mentions VALUES(2010,'Oracle iPlanet Web Server',8,281,'others'); -INSERT INTO entity_mentions VALUES(2011,'Sun Java Web Server',8,281,'others'); -INSERT INTO entity_mentions VALUES(2012,'SunOne',8,281,'others'); -INSERT INTO entity_mentions VALUES(2013,'Swift',9,364,'others'); -INSERT INTO entity_mentions VALUES(2014,'Sybase SQL Server',2,190,'others'); -INSERT INTO entity_mentions VALUES(2015,'Sybase',2,190,'others'); -INSERT INTO entity_mentions VALUES(2016,'SYBASE ADAPTIVE SERVER ENTERPRISE DATABASE SERVER 12.5"',2,190,'others'); -INSERT INTO entity_mentions VALUES(2017,'SYBASE ADAPTIVE SERVER ENTERPRISE DATABASE SERVER 12',2,190,'others'); -INSERT INTO entity_mentions VALUES(2018,'SAP - Sybase Adaptive Server Enterprise 12.5',2,190,'others'); -INSERT INTO entity_mentions VALUES(2019,'SAP - Sybase Adaptive Server Enterprise 16',2,190,'others'); -INSERT INTO entity_mentions VALUES(2020,'SAP - Sybase Adaptive Server Enterprise 12',2,190,'others'); -INSERT INTO entity_mentions VALUES(2021,'Sybase Central',5,479,'others'); -INSERT INTO entity_mentions VALUES(2022,'SAP - Sybase Central 4.3',5,479,'others'); -INSERT INTO entity_mentions VALUES(2023,'SAP - Sybase Dsedit 12.5',5,480,'others'); -INSERT INTO entity_mentions VALUES(2024,'Sybase Dsedit',5,480,'others'); -INSERT INTO entity_mentions VALUES(2025,'Sysncsort',2,191,'others'); -INSERT INTO entity_mentions VALUES(2026,'syncsort',2,191,'others'); -INSERT INTO entity_mentions VALUES(2027,'Sysinternals LLC - AccessEnum 1 1',2,194,'others'); -INSERT INTO entity_mentions VALUES(2028,'AccessEnum',2,194,'others'); -INSERT INTO entity_mentions VALUES(2029,'Sysinternals LLC - ClockRes 2',2,195,'others'); -INSERT INTO entity_mentions VALUES(2030,'ClockRes',2,195,'others'); -INSERT INTO entity_mentions VALUES(2031,'Sysinternals LLC - Coreinfo 3.21',2,196,'others'); -INSERT INTO entity_mentions VALUES(2032,'Coreinfo',2,196,'others'); -INSERT INTO entity_mentions VALUES(2033,'Sysinternals LLC - DiskExt 1.1',2,197,'others'); -INSERT INTO entity_mentions VALUES(2034,'DiskExt',2,197,'others'); -INSERT INTO entity_mentions VALUES(2035,'Sysinternals LLC - DiskMon 2.01',2,198,'others'); -INSERT INTO entity_mentions VALUES(2036,'DiskMon',2,198,'others'); -INSERT INTO entity_mentions VALUES(2037,'Hex2dec',2,199,'others'); -INSERT INTO entity_mentions VALUES(2038,'Sysinternals LLC - Hex2dec 1',2,199,'others'); -INSERT INTO entity_mentions VALUES(2039,'Sysinternals LLC - Junction 1.6',2,200,'others'); -INSERT INTO entity_mentions VALUES(2040,'Junction',2,200,'others'); -INSERT INTO entity_mentions VALUES(2041,'Sysinternals LLC - LDMDump 1.02',2,201,'others'); -INSERT INTO entity_mentions VALUES(2042,'LDMDump',2,201,'others'); -INSERT INTO entity_mentions VALUES(2043,'Sysinternals LLC - LoadOrder 1',2,202,'others'); -INSERT INTO entity_mentions VALUES(2044,'LoadOrder',2,202,'others'); -INSERT INTO entity_mentions VALUES(2045,'PipeList',2,203,'others'); -INSERT INTO entity_mentions VALUES(2046,'Sysinternals LLC - PipeList 1.01',2,203,'others'); -INSERT INTO entity_mentions VALUES(2047,'Process Explorer',2,204,'others'); -INSERT INTO entity_mentions VALUES(2048,'Sysinternals LLC - Process Explorer 16.5',2,204,'others'); -INSERT INTO entity_mentions VALUES(2049,'Sysinternals LLC - PsKill 1.15',2,205,'others'); -INSERT INTO entity_mentions VALUES(2050,'PsKill',2,205,'others'); -INSERT INTO entity_mentions VALUES(2051,'Sysinternals LLC - PsPasswd 1.23',2,206,'others'); -INSERT INTO entity_mentions VALUES(2052,'PsPasswd',2,206,'others'); -INSERT INTO entity_mentions VALUES(2053,'SDelete',2,207,'others'); -INSERT INTO entity_mentions VALUES(2054,'Sysinternals LLC - SDelete 1.61',2,207,'others'); -INSERT INTO entity_mentions VALUES(2055,'Sysinternals LLC - ShareEnum 1.6',2,208,'others'); -INSERT INTO entity_mentions VALUES(2056,'ShareEnum',2,208,'others'); -INSERT INTO entity_mentions VALUES(2057,'Sysinternals LLC - Sync 2.2',2,209,'others'); -INSERT INTO entity_mentions VALUES(2058,'Sync',2,209,'others'); -INSERT INTO entity_mentions VALUES(2059,'Sysinternals LLC - Sysinternals TCPView 3.5',2,210,'others'); -INSERT INTO entity_mentions VALUES(2060,'TCPView',2,210,'others'); -INSERT INTO entity_mentions VALUES(2061,'Sysinternals LLC - VMMap 3.11',2,211,'others'); -INSERT INTO entity_mentions VALUES(2062,'VMMap',2,211,'others'); -INSERT INTO entity_mentions VALUES(2063,'Sysinternals LLC - Whois 1.11',2,212,'others'); -INSERT INTO entity_mentions VALUES(2064,'Whois',2,212,'others'); -INSERT INTO entity_mentions VALUES(2065,'Tableau',2,213,'others'); -INSERT INTO entity_mentions VALUES(2066,'TCL',9,365,'others'); -INSERT INTO entity_mentions VALUES(2067,'TCPLink Enterprise Server 6',2,214,'others'); -INSERT INTO entity_mentions VALUES(2068,'(Canon IT Solutions) TCPLink Enterprise Server 6',2,214,'others'); -INSERT INTO entity_mentions VALUES(2069,'TERADATA',2,215,'others'); -INSERT INTO entity_mentions VALUES(2070,'Teradata hors Radia',2,215,'others'); -INSERT INTO entity_mentions VALUES(2071,'Teradata QS Server',2,216,'others'); -INSERT INTO entity_mentions VALUES(2072,'TERADATA QUERY SCHEDULER SERVER VERSION 15',2,216,'others'); -INSERT INTO entity_mentions VALUES(2073,'TIBCO Business Works',2,217,'others'); -INSERT INTO entity_mentions VALUES(2074,'Tibco BW',2,217,'others'); -INSERT INTO entity_mentions VALUES(2075,'BusinessWorks',2,217,'others'); -INSERT INTO entity_mentions VALUES(2076,'TIBCO Business Works (BW)',2,217,'others'); -INSERT INTO entity_mentions VALUES(2077,'Integration Manager',5,481,'others'); -INSERT INTO entity_mentions VALUES(2078,'Tibco-IM',5,481,'others'); -INSERT INTO entity_mentions VALUES(2079,'Tibco Integration Manager',5,481,'others'); -INSERT INTO entity_mentions VALUES(2080,'Tibco InConcert',2,218,'others'); -INSERT INTO entity_mentions VALUES(2081,'TIBCO Rendezvous (RV)',2,219,'others'); -INSERT INTO entity_mentions VALUES(2082,'TIBCO Rendezvous',2,219,'others'); -INSERT INTO entity_mentions VALUES(2083,'Tivoli Access Manager (TAM)',2,220,'others'); -INSERT INTO entity_mentions VALUES(2084,'Tivoli Access Manager 6.1',2,220,'others'); -INSERT INTO entity_mentions VALUES(2085,'TortoiseCVS',2,221,'others'); -INSERT INTO entity_mentions VALUES(2086,'TortoiseSVN',2,222,'others'); -INSERT INTO entity_mentions VALUES(2087,'TortoiseSVN 1.8',2,222,'others'); -INSERT INTO entity_mentions VALUES(2088,'TSQL',9,366,'others'); -INSERT INTO entity_mentions VALUES(2089,'Transact-SQL',9,366,'others'); -INSERT INTO entity_mentions VALUES(2090,'Trasact SQL',9,366,'others'); -INSERT INTO entity_mentions VALUES(2091,'T-SQL',9,366,'others'); -INSERT INTO entity_mentions VALUES(2092,'Transact SQL',9,366,'others'); -INSERT INTO entity_mentions VALUES(2093,'TSO/ISPF',2,223,'others'); -INSERT INTO entity_mentions VALUES(2094,'ispf',2,223,'others'); -INSERT INTO entity_mentions VALUES(2095,'TSO',2,223,'others'); -INSERT INTO entity_mentions VALUES(2096,'TSO ISPF',2,223,'others'); -INSERT INTO entity_mentions VALUES(2097,'TWS zCentric 8.4',2,224,'others'); -INSERT INTO entity_mentions VALUES(2098,'TWS Zcentric',2,224,'others'); -INSERT INTO entity_mentions VALUES(2099,'TypeScript',9,367,'others'); -INSERT INTO entity_mentions VALUES(2100,'UltiDev Web Server Pro (UWS)',8,282,'others'); -INSERT INTO entity_mentions VALUES(2101,'UltiDev Web Server Pro',8,282,'others'); -INSERT INTO entity_mentions VALUES(2102,'UltiDev Web Server Pro 2',8,282,'others'); -INSERT INTO entity_mentions VALUES(2103,'UltiDev Cassini Pro',8,282,'others'); -INSERT INTO entity_mentions VALUES(2104,'Uniface',2,225,'others'); -INSERT INTO entity_mentions VALUES(2105,'Unix',6,444,'others'); -INSERT INTO entity_mentions VALUES(2106,'IBM AIX 6.1 6100 64 Bit',6,445,'others'); -INSERT INTO entity_mentions VALUES(2107,'AIX 7.1 7100-04-06-1806',6,445,'others'); -INSERT INTO entity_mentions VALUES(2108,'AIX-6',6,445,'others'); -INSERT INTO entity_mentions VALUES(2109,'AIX Enterprise',6,445,'others'); -INSERT INTO entity_mentions VALUES(2110,'IBM AIX',6,445,'others'); -INSERT INTO entity_mentions VALUES(2111,'AIX7.1.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2112,'AIX 7100-05-03-1838',6,445,'others'); -INSERT INTO entity_mentions VALUES(2113,'IBM - AIX Standard Edition 7.1',6,445,'others'); -INSERT INTO entity_mentions VALUES(2114,'IBM AIX 5.3, SERVICE PACK TL12 SP08',6,445,'others'); -INSERT INTO entity_mentions VALUES(2115,'AIX7.2.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2116,'AIX 6.1.0.0.09',6,445,'others'); -INSERT INTO entity_mentions VALUES(2117,'AIX 7.2.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2118,'AIX 5.3 5300-12-07-1241',6,445,'others'); -INSERT INTO entity_mentions VALUES(2119,'AIX 6.1.9.101',6,445,'others'); -INSERT INTO entity_mentions VALUES(2120,'AIX 5.3.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2121,'AIX 7.1',6,445,'others'); -INSERT INTO entity_mentions VALUES(2122,'AIX 7.1 7100-05-03-1846',6,445,'others'); -INSERT INTO entity_mentions VALUES(2123,'AIX 5.3.0.0.08',6,445,'others'); -INSERT INTO entity_mentions VALUES(2124,'AIX 6.1 6100-09-09-1717',6,445,'others'); -INSERT INTO entity_mentions VALUES(2125,'AIX 7.1 7100-04-01-1543',6,445,'others'); -INSERT INTO entity_mentions VALUES(2126,'AIX 6100-09-09-1717',6,445,'others'); -INSERT INTO entity_mentions VALUES(2127,'IBM AIX 6.1 Enterprise 64 Bit',6,445,'others'); -INSERT INTO entity_mentions VALUES(2128,'AIX 7.1.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2129,'IBM AIX 7.1 x',6,445,'others'); -INSERT INTO entity_mentions VALUES(2130,'AIX 7.1 7100-05-03-1838',6,445,'others'); -INSERT INTO entity_mentions VALUES(2131,'AIX7.2',6,445,'others'); -INSERT INTO entity_mentions VALUES(2132,'AIX 6.1 6100-09-12-1838',6,445,'others'); -INSERT INTO entity_mentions VALUES(2133,'AIX (Linux)',6,445,'others'); -INSERT INTO entity_mentions VALUES(2134,'IBM - AIX Express Edition 7.1',6,445,'others'); -INSERT INTO entity_mentions VALUES(2135,'AIX 5.3.0.0.12',6,445,'others'); -INSERT INTO entity_mentions VALUES(2136,'AIX',6,445,'others'); -INSERT INTO entity_mentions VALUES(2137,'IBM AIX 6.1 6100 32 Bit',6,445,'others'); -INSERT INTO entity_mentions VALUES(2138,'AIX: 7.2',6,445,'others'); -INSERT INTO entity_mentions VALUES(2139,'AIX 6.1',6,445,'others'); -INSERT INTO entity_mentions VALUES(2140,'AIX 5.3',6,445,'others'); -INSERT INTO entity_mentions VALUES(2141,'IBM AIX 5.3 5300 64 Bit',6,445,'others'); -INSERT INTO entity_mentions VALUES(2142,'AIX 5.2.0.0.09',6,445,'others'); -INSERT INTO entity_mentions VALUES(2143,'AIX 5.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2144,'AIX 7100-05-03-1846',6,445,'others'); -INSERT INTO entity_mentions VALUES(2145,'AIX 7.2 7200-03-03-1914',6,445,'others'); -INSERT INTO entity_mentions VALUES(2146,'AIX6.1.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2147,'IBM AIX 7.1 7100 64 Bit',6,445,'others'); -INSERT INTO entity_mentions VALUES(2148,'AIX 7.1 7100-05-04-1914',6,445,'others'); -INSERT INTO entity_mentions VALUES(2149,'IBM AIX 5.x',6,445,'others'); -INSERT INTO entity_mentions VALUES(2150,'AIX 6.1.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2151,'AIX 7.1.5.16',6,445,'others'); -INSERT INTO entity_mentions VALUES(2152,'AIX 6.1.0.0 UNIX LPAR',6,445,'others'); -INSERT INTO entity_mentions VALUES(2153,'AIX 5300-12-07-1241',6,445,'others'); -INSERT INTO entity_mentions VALUES(2154,'IBM AIX 5.3, SERVICE PACK TL12 SP01',6,445,'others'); -INSERT INTO entity_mentions VALUES(2155,'IBM - AIX 6.1.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2156,'IBM AIX 6.1x',6,445,'others'); -INSERT INTO entity_mentions VALUES(2157,'AIX7.1',6,445,'others'); -INSERT INTO entity_mentions VALUES(2158,'AIX 7100-04-05-1720',6,445,'others'); -INSERT INTO entity_mentions VALUES(2159,'AIX Express',6,445,'others'); -INSERT INTO entity_mentions VALUES(2160,'IBM AIX 64 Bit',6,445,'others'); -INSERT INTO entity_mentions VALUES(2161,'AIX Standard',6,445,'others'); -INSERT INTO entity_mentions VALUES(2162,'AIX 6.1.8.16',6,445,'others'); -INSERT INTO entity_mentions VALUES(2163,'FreeBSD (64-bit)',6,447,'others'); -INSERT INTO entity_mentions VALUES(2164,'FreeBSD',6,447,'others'); -INSERT INTO entity_mentions VALUES(2165,'FreeBSD 8.X',6,447,'others'); -INSERT INTO entity_mentions VALUES(2166,'FreeBSD 8.4',6,447,'others'); -INSERT INTO entity_mentions VALUES(2167,'Sun Solaris 10 OS',6,448,'others'); -INSERT INTO entity_mentions VALUES(2168,'Solaris 11.2 SPARC',6,448,'others'); -INSERT INTO entity_mentions VALUES(2169,'Solaris UNIX',6,448,'others'); -INSERT INTO entity_mentions VALUES(2170,'Unix Servers (Solaris',6,448,'others'); -INSERT INTO entity_mentions VALUES(2171,'Oracle Solaris 11.3 SPARC',6,448,'others'); -INSERT INTO entity_mentions VALUES(2172,'SUN 5.10',6,448,'others'); -INSERT INTO entity_mentions VALUES(2173,'SOLARIS 10',6,448,'others'); -INSERT INTO entity_mentions VALUES(2174,'Sun Solaris',6,448,'others'); -INSERT INTO entity_mentions VALUES(2175,'Solaris 5.10 (Generic_150400-61)',6,448,'others'); -INSERT INTO entity_mentions VALUES(2176,'Solaris 5.10 (Generic_150400-62)',6,448,'others'); -INSERT INTO entity_mentions VALUES(2177,'Solaris (Sun OS 5.9)',6,448,'others'); -INSERT INTO entity_mentions VALUES(2178,'Solaris 5.10 (Generic_150400-55)',6,448,'others'); -INSERT INTO entity_mentions VALUES(2179,'SUNOS 5.10',6,448,'others'); -INSERT INTO entity_mentions VALUES(2180,'Sun Solaris - 5.10',6,448,'others'); -INSERT INTO entity_mentions VALUES(2181,'Solaris 10 (SunOS 5.10)',6,448,'others'); -INSERT INTO entity_mentions VALUES(2182,'Oracle Solaris',6,448,'others'); -INSERT INTO entity_mentions VALUES(2183,'Unix - SunOS - 5.10 Generic_147147-26',6,448,'others'); -INSERT INTO entity_mentions VALUES(2184,'Solaris 1 (SPARC)',6,448,'others'); -INSERT INTO entity_mentions VALUES(2185,'SUN OS',6,448,'others'); -INSERT INTO entity_mentions VALUES(2186,'solaris',6,448,'others'); -INSERT INTO entity_mentions VALUES(2187,'SunSolaris 10.0',6,448,'others'); -INSERT INTO entity_mentions VALUES(2188,'SOLARIS 9',6,448,'others'); -INSERT INTO entity_mentions VALUES(2189,'SunOS',6,448,'others'); -INSERT INTO entity_mentions VALUES(2190,'SUN 5.9',6,448,'others'); -INSERT INTO entity_mentions VALUES(2191,'SOLARIS 8',6,448,'others'); -INSERT INTO entity_mentions VALUES(2192,'SunOS 5.1',6,448,'others'); -INSERT INTO entity_mentions VALUES(2193,'SunOS 5.11',6,448,'others'); -INSERT INTO entity_mentions VALUES(2194,'Oracle Solaris 10',6,448,'others'); -INSERT INTO entity_mentions VALUES(2195,'Sun Solaris 10',6,448,'others'); -INSERT INTO entity_mentions VALUES(2196,'HPUX 11i V1',6,449,'others'); -INSERT INTO entity_mentions VALUES(2197,'HP-UX 11.31',6,449,'others'); -INSERT INTO entity_mentions VALUES(2198,'HPUX 11i V3',6,449,'others'); -INSERT INTO entity_mentions VALUES(2199,'HP/UXB.11.23',6,449,'others'); -INSERT INTO entity_mentions VALUES(2200,'HPUX B.11.31',6,449,'others'); -INSERT INTO entity_mentions VALUES(2201,'HPUX 11',6,449,'others'); -INSERT INTO entity_mentions VALUES(2202,'hp-ux',6,449,'others'); -INSERT INTO entity_mentions VALUES(2203,'HPUX 11.23',6,449,'others'); -INSERT INTO entity_mentions VALUES(2204,'HP-UX B.11.31',6,449,'others'); -INSERT INTO entity_mentions VALUES(2205,'HPUX 11.31',6,449,'others'); -INSERT INTO entity_mentions VALUES(2206,'HP-UX 11.23',6,449,'others'); -INSERT INTO entity_mentions VALUES(2207,'HP-UX B.11.00',6,449,'others'); -INSERT INTO entity_mentions VALUES(2208,'HP-UX B.11.23',6,449,'others'); -INSERT INTO entity_mentions VALUES(2209,'HP-UX B.11.11',6,449,'others'); -INSERT INTO entity_mentions VALUES(2210,'HP 10.20',6,449,'others'); -INSERT INTO entity_mentions VALUES(2211,'HP Unix',6,449,'others'); -INSERT INTO entity_mentions VALUES(2212,'HP UX',6,449,'others'); -INSERT INTO entity_mentions VALUES(2213,'HP-UX 11.11',6,449,'others'); -INSERT INTO entity_mentions VALUES(2214,'HPUX',6,449,'others'); -INSERT INTO entity_mentions VALUES(2215,'HPUX-11i V3',6,449,'others'); -INSERT INTO entity_mentions VALUES(2216,'HP-UX B.10.20',6,449,'others'); -INSERT INTO entity_mentions VALUES(2217,'HP/UXB.11.31',6,449,'others'); -INSERT INTO entity_mentions VALUES(2218,'HP-UX 10.20',6,449,'others'); -INSERT INTO entity_mentions VALUES(2219,'Visual Basic .Net',9,368,'others'); -INSERT INTO entity_mentions VALUES(2220,'VB.NET',9,368,'others'); -INSERT INTO entity_mentions VALUES(2221,'VB Script',9,369,'others'); -INSERT INTO entity_mentions VALUES(2222,'VBscript',9,369,'others'); -INSERT INTO entity_mentions VALUES(2223,'NetManage-ViewNow',2,226,'others'); -INSERT INTO entity_mentions VALUES(2224,'ViewNow X Server',2,226,'others'); -INSERT INTO entity_mentions VALUES(2225,'Virtual I/O Server',2,227,'others'); -INSERT INTO entity_mentions VALUES(2226,'VIO 2.2.0.10',2,227,'others'); -INSERT INTO entity_mentions VALUES(2227,'VIOS',2,227,'others'); -INSERT INTO entity_mentions VALUES(2228,'visibroker',2,228,'others'); -INSERT INTO entity_mentions VALUES(2229,'VB6',9,370,'others'); -INSERT INTO entity_mentions VALUES(2230,'VB 6.0',9,370,'others'); -INSERT INTO entity_mentions VALUES(2231,'visualbasic',9,370,'others'); -INSERT INTO entity_mentions VALUES(2232,'VB',9,370,'others'); -INSERT INTO entity_mentions VALUES(2233,'VISUAL BASIC 6',9,370,'others'); -INSERT INTO entity_mentions VALUES(2234,'Visual Basic',9,370,'others'); -INSERT INTO entity_mentions VALUES(2235,'Visual Basic 6.0',9,370,'others'); -INSERT INTO entity_mentions VALUES(2236,'Visusal Basic',9,370,'others'); -INSERT INTO entity_mentions VALUES(2237,'Visual Basic for Applications (VBA)',9,371,'others'); -INSERT INTO entity_mentions VALUES(2238,'Visual Basic for Applications',9,371,'others'); -INSERT INTO entity_mentions VALUES(2239,'VBA',9,371,'others'); -INSERT INTO entity_mentions VALUES(2240,'Access VB',9,371,'others'); -INSERT INTO entity_mentions VALUES(2241,'Visual FoxPro',9,372,'others'); -INSERT INTO entity_mentions VALUES(2242,'vfoxpro',9,372,'others'); -INSERT INTO entity_mentions VALUES(2243,'VisualForce',10,509,'others'); -INSERT INTO entity_mentions VALUES(2244,'ESXi',3,568,'others'); -INSERT INTO entity_mentions VALUES(2245,'ESXi 5.1',3,568,'others'); -INSERT INTO entity_mentions VALUES(2246,'VM ESXi 5.1',3,568,'others'); -INSERT INTO entity_mentions VALUES(2247,'VM ESXi 6.0',3,568,'others'); -INSERT INTO entity_mentions VALUES(2248,'VM ESXi 5.5',3,568,'others'); -INSERT INTO entity_mentions VALUES(2249,'VMWARE ESXI SERVER 5.5',3,568,'others'); -INSERT INTO entity_mentions VALUES(2250,'VM ESXi 5.0.0',3,568,'others'); -INSERT INTO entity_mentions VALUES(2251,'VMware ESXi 5.5.0',3,568,'others'); -INSERT INTO entity_mentions VALUES(2252,'VM ESXi 6.5',3,568,'others'); -INSERT INTO entity_mentions VALUES(2253,'VMWare ESX',3,568,'others'); -INSERT INTO entity_mentions VALUES(2254,'VM ESXi 5.0',3,568,'others'); -INSERT INTO entity_mentions VALUES(2255,'VMWare ESXi',3,568,'others'); -INSERT INTO entity_mentions VALUES(2256,'VMWARE ESXI SERVER 5.1',3,568,'others'); -INSERT INTO entity_mentions VALUES(2257,'VMware Appliance',3,569,'others'); -INSERT INTO entity_mentions VALUES(2258,'VMware Server',3,569,'others'); -INSERT INTO entity_mentions VALUES(2259,'VMware Solution Exchange Marketplace (VSX)',2,229,'others'); -INSERT INTO entity_mentions VALUES(2260,'VSX',2,229,'others'); -INSERT INTO entity_mentions VALUES(2261,'VMware Solution Exchange Marketplace',2,229,'others'); -INSERT INTO entity_mentions VALUES(2262,'VMware - VMware Tools 10.2',2,230,'others'); -INSERT INTO entity_mentions VALUES(2263,'VMware Tools',2,230,'others'); -INSERT INTO entity_mentions VALUES(2264,'VMware - VMware vCenter Server 5.5',2,231,'others'); -INSERT INTO entity_mentions VALUES(2265,'VMware vCenter',2,231,'others'); -INSERT INTO entity_mentions VALUES(2266,'VoiceXML',9,373,'others'); -INSERT INTO entity_mentions VALUES(2267,'VXML',9,373,'others'); -INSERT INTO entity_mentions VALUES(2268,'WebFOCUS',2,232,'others'); -INSERT INTO entity_mentions VALUES(2269,'Web Focus',2,232,'others'); -INSERT INTO entity_mentions VALUES(2270,'FOCEXEC',2,232,'others'); -INSERT INTO entity_mentions VALUES(2271,'Web Logic Integration',2,233,'others'); -INSERT INTO entity_mentions VALUES(2272,'WLI 8',2,233,'others'); -INSERT INTO entity_mentions VALUES(2273,'WebLogic Integration',2,233,'others'); -INSERT INTO entity_mentions VALUES(2274,'Web Logic Integration 9.2.0.0',2,233,'others'); -INSERT INTO entity_mentions VALUES(2275,'webMethods Integration Server',8,283,'others'); -INSERT INTO entity_mentions VALUES(2276,'WebMethods',8,283,'others'); -INSERT INTO entity_mentions VALUES(2277,'Webmethods 9.7',8,283,'others'); -INSERT INTO entity_mentions VALUES(2278,'WAS 7',8,284,'others'); -INSERT INTO entity_mentions VALUES(2279,'websphere 8.0.0.4',8,284,'others'); -INSERT INTO entity_mentions VALUES(2280,'IBM WEBSPHERE APPLICATION SERVER VERSION 6.1.0',8,284,'others'); -INSERT INTO entity_mentions VALUES(2281,'WEBSPHERE APPLICATION SERVER - BASE VERSION 8.5.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2282,'WEBSPHERE APPLICATION SERVER 8',8,284,'others'); -INSERT INTO entity_mentions VALUES(2283,'Websphere Application Server 6.x',8,284,'others'); -INSERT INTO entity_mentions VALUES(2284,'websphere',8,284,'others'); -INSERT INTO entity_mentions VALUES(2285,'WebSphere Application Server 9.0',8,284,'others'); -INSERT INTO entity_mentions VALUES(2286,'IBM WebSphere Application Server Network Deployment, 8.0.0.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2287,'WebSphere Application Server (WAS)',8,284,'others'); -INSERT INTO entity_mentions VALUES(2288,'IBM WebSphere Application Server Network Deployment 7',8,284,'others'); -INSERT INTO entity_mentions VALUES(2289,'WebSphere Application Server 8.5.1',8,284,'others'); -INSERT INTO entity_mentions VALUES(2290,'WAS ND8.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2291,'WAS7',8,284,'others'); -INSERT INTO entity_mentions VALUES(2292,'WebSphere Application Server 5.1',8,284,'others'); -INSERT INTO entity_mentions VALUES(2293,'WebSphere Application Server 8.5.5.6',8,284,'others'); -INSERT INTO entity_mentions VALUES(2294,'WebSphere Application Server 5.0',8,284,'others'); -INSERT INTO entity_mentions VALUES(2295,'WebSphere Application Server 8.0',8,284,'others'); -INSERT INTO entity_mentions VALUES(2296,'IBM WebSphere 8.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2297,'Websphere 9.0',8,284,'others'); -INSERT INTO entity_mentions VALUES(2298,'WebSphere 7.0.0.27',8,284,'others'); -INSERT INTO entity_mentions VALUES(2299,'IBM - WebSphere Application Server - Base 8.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2300,'WebSphere Application Server 8.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2301,'WEBSPHERE APPLICATION SERVER 8.5.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2302,'WebSphere Application Server 8.5 (WAS)',8,284,'others'); -INSERT INTO entity_mentions VALUES(2303,'Websphere AS (JVM)',8,284,'others'); -INSERT INTO entity_mentions VALUES(2304,'WebSphere App Server',8,284,'others'); -INSERT INTO entity_mentions VALUES(2305,'WebSphere Application Server 6.1 (WAS)',8,284,'others'); -INSERT INTO entity_mentions VALUES(2306,'WEBSPHERE APPLICATION SERVER',8,284,'others'); -INSERT INTO entity_mentions VALUES(2307,'WAS 6.1',8,284,'others'); -INSERT INTO entity_mentions VALUES(2308,'WebSphere 8.0.0.4',8,284,'others'); -INSERT INTO entity_mentions VALUES(2309,'WEBSPHERE APPLICATION SERVER 6.1',8,284,'others'); -INSERT INTO entity_mentions VALUES(2310,'IBM WebSphere',8,284,'others'); -INSERT INTO entity_mentions VALUES(2311,'Websphere Application Server 8.5.5.11',8,284,'others'); -INSERT INTO entity_mentions VALUES(2312,'WebSphere Application Server 8.5.5.8',8,284,'others'); -INSERT INTO entity_mentions VALUES(2313,'IBM WebSphere Application Server 8.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2314,'Websphere (WAS7)',8,284,'others'); -INSERT INTO entity_mentions VALUES(2315,'IBM WebSphere Application',8,284,'others'); -INSERT INTO entity_mentions VALUES(2316,'WAS 6.x',8,284,'others'); -INSERT INTO entity_mentions VALUES(2317,'WAS',8,284,'others'); -INSERT INTO entity_mentions VALUES(2318,'IBM OpenStack Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2319,'IBM WebSphere Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2320,'Open Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2321,'IBM Open Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2322,'WebSphere Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2323,'IBM WebSphere Application Server Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2324,'IBM WAS Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2325,'WebSphere Application Server Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2326,'WAS Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2327,'IBM Cloud WebSphere Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2328,'OpenStack Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2329,'WebSphere Commerce Suite (WCS)',2,234,'others'); -INSERT INTO entity_mentions VALUES(2330,'WebSphere Commerce',2,234,'others'); -INSERT INTO entity_mentions VALUES(2331,'WMB 6.1',2,235,'others'); -INSERT INTO entity_mentions VALUES(2332,'WebSphere Message Broker v6.0',2,235,'others'); -INSERT INTO entity_mentions VALUES(2333,'WebSphere Message Broker',2,235,'others'); -INSERT INTO entity_mentions VALUES(2334,'WebSphere Portal Version 6.1',8,286,'others'); -INSERT INTO entity_mentions VALUES(2335,'WebSphere Portal Enable Limited Use 6.1',8,286,'others'); -INSERT INTO entity_mentions VALUES(2336,'WebSphere Portal Server 6.0',8,286,'others'); -INSERT INTO entity_mentions VALUES(2337,'WebSphere Portal Enable 6.1',8,286,'others'); -INSERT INTO entity_mentions VALUES(2338,'WebSphere Portal Extend 6.1',8,286,'others'); -INSERT INTO entity_mentions VALUES(2339,'WebSphere Portal Server',8,286,'others'); -INSERT INTO entity_mentions VALUES(2340,'WebSphere Portal Limited Use 6.1',8,286,'others'); -INSERT INTO entity_mentions VALUES(2341,'WebSphere Portal Extend Limited Use 6.1',8,286,'others'); -INSERT INTO entity_mentions VALUES(2342,'Websphere Process Server',8,287,'others'); -INSERT INTO entity_mentions VALUES(2343,'Websphere Process Server 8.5',8,288,'others'); -INSERT INTO entity_mentions VALUES(2344,'Wherescape Red',2,236,'others'); -INSERT INTO entity_mentions VALUES(2345,'Windchill 11.1',2,237,'others'); -INSERT INTO entity_mentions VALUES(2346,'Windchill',2,237,'others'); -INSERT INTO entity_mentions VALUES(2347,'windows nt',6,450,'others'); -INSERT INTO entity_mentions VALUES(2348,'Windows',6,450,'others'); -INSERT INTO entity_mentions VALUES(2349,'Windows OS: Windows NT',6,450,'others'); -INSERT INTO entity_mentions VALUES(2350,'Windows NT 6.1 Service Pack 1',6,450,'others'); -INSERT INTO entity_mentions VALUES(2351,'Windows NT 6.1',6,450,'others'); -INSERT INTO entity_mentions VALUES(2352,'Windows NT 4.0',6,450,'others'); -INSERT INTO entity_mentions VALUES(2353,'Microsoft Windows NT 6.1',6,450,'others'); -INSERT INTO entity_mentions VALUES(2354,'Window',6,450,'others'); -INSERT INTO entity_mentions VALUES(2355,'Microsoft Windows NT 4.0',6,450,'others'); -INSERT INTO entity_mentions VALUES(2356,'WINDOWS6.1.7601',6,450,'others'); -INSERT INTO entity_mentions VALUES(2357,'Windows NT 6.1Windows NT 6.1',6,450,'others'); -INSERT INTO entity_mentions VALUES(2358,'Windows Indexing Service',2,238,'others'); -INSERT INTO entity_mentions VALUES(2359,'IIS Index Search Server',2,238,'others'); -INSERT INTO entity_mentions VALUES(2360,'WTS',2,239,'others'); -INSERT INTO entity_mentions VALUES(2361,'Windows Terminal Server',2,239,'others'); -INSERT INTO entity_mentions VALUES(2362,'Windows Terminal Server (WTS)',2,239,'others'); -INSERT INTO entity_mentions VALUES(2363,'Windows 7 Standard',6,451,'others'); -INSERT INTO entity_mentions VALUES(2364,'WINDOWS 10 SERVER STANDARD EDITION X64',6,451,'others'); -INSERT INTO entity_mentions VALUES(2365,'Microsoft Windows 7 (64-bit)',6,451,'others'); -INSERT INTO entity_mentions VALUES(2366,'Microsoft Windows XP Professional (32-bit)',6,451,'others'); -INSERT INTO entity_mentions VALUES(2367,'Windows 7 Professional x64',6,451,'others'); -INSERT INTO entity_mentions VALUES(2368,'Microsoft Microsoft Windows Entreprise',6,451,'others'); -INSERT INTO entity_mentions VALUES(2369,'Microsoft Windows 2000',6,451,'others'); -INSERT INTO entity_mentions VALUES(2370,'Microsoft Windows 10',6,451,'others'); -INSERT INTO entity_mentions VALUES(2371,'MS Microsoft Windows 7',6,451,'others'); -INSERT INTO entity_mentions VALUES(2372,'Microsoft Windows 7 Professional',6,451,'others'); -INSERT INTO entity_mentions VALUES(2373,'Microsoft Microsoft Windows 7 Enterprise',6,451,'others'); -INSERT INTO entity_mentions VALUES(2374,'Microsoft Windows 10 Enterprise',6,451,'others'); -INSERT INTO entity_mentions VALUES(2375,'Win Desktop',6,451,'others'); -INSERT INTO entity_mentions VALUES(2376,'Windows 10 Pro',6,451,'others'); -INSERT INTO entity_mentions VALUES(2377,'Windows 10',6,451,'others'); -INSERT INTO entity_mentions VALUES(2378,'Windows 7 Ultimate',6,451,'others'); -INSERT INTO entity_mentions VALUES(2379,'Microsoft Windows 8 (64-bit)',6,451,'others'); -INSERT INTO entity_mentions VALUES(2380,'Microsoft Windows XP',6,451,'others'); -INSERT INTO entity_mentions VALUES(2381,'Windows 10 Enterprise',6,451,'others'); -INSERT INTO entity_mentions VALUES(2382,'Windows XP',6,451,'others'); -INSERT INTO entity_mentions VALUES(2383,'Windows 10 Professional',6,451,'others'); -INSERT INTO entity_mentions VALUES(2384,'Windows 7',6,451,'others'); -INSERT INTO entity_mentions VALUES(2385,'Microsoft Windows 10 (64-bit)',6,451,'others'); -INSERT INTO entity_mentions VALUES(2386,'Win 7',6,451,'others'); -INSERT INTO entity_mentions VALUES(2387,'windowsxp',6,451,'others'); -INSERT INTO entity_mentions VALUES(2388,'Microsoft Windows Unknown',6,451,'others'); -INSERT INTO entity_mentions VALUES(2389,'Windows 7 Enterprise',6,451,'others'); -INSERT INTO entity_mentions VALUES(2390,'Windows XP Professional',6,451,'others'); -INSERT INTO entity_mentions VALUES(2391,'Windows 7 Professional',6,451,'others'); -INSERT INTO entity_mentions VALUES(2392,'Window XP',6,451,'others'); -INSERT INTO entity_mentions VALUES(2393,'Microsoft Windows 7 Enterprise',6,451,'others'); -INSERT INTO entity_mentions VALUES(2394,'Microsoft Windows 7 - SOE',6,451,'others'); -INSERT INTO entity_mentions VALUES(2395,'Windows 7 Enterprise Edition',6,451,'others'); -INSERT INTO entity_mentions VALUES(2396,'Windows 8',6,451,'others'); -INSERT INTO entity_mentions VALUES(2397,'Microsoft Windows 7',6,451,'others'); -INSERT INTO entity_mentions VALUES(2398,'Microsoft Windows 7 (32-bit)',6,451,'others'); -INSERT INTO entity_mentions VALUES(2399,'Windows Embedded Standard 7',6,451,'others'); -INSERT INTO entity_mentions VALUES(2400,'Win10',6,451,'others'); -INSERT INTO entity_mentions VALUES(2401,'Windows 2003',6,451,'others'); -INSERT INTO entity_mentions VALUES(2402,'Windows Server 2012 R9',6,452,'others'); -INSERT INTO entity_mentions VALUES(2403,'Windows 2003 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2404,'Windows 2008 Enterprise R2 x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2405,'Windows Server 2003 SE x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2406,'Microsoft Windows Server 2008 R2 Standard Service Pack 1, 64-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2407,'WINDOWS SERVER 2004',6,452,'others'); -INSERT INTO entity_mentions VALUES(2408,'WINDOWS 2008R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2409,'Microsoft Windows Server 2008 Standard Editio',6,452,'others'); -INSERT INTO entity_mentions VALUES(2410,'MICROSOFT WINDOWS NT 2003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2411,'Windows Server 2008 R2 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2412,'Windows Server 2012 R3',6,452,'others'); -INSERT INTO entity_mentions VALUES(2413,'WINDOWS 2003 R2 SERVER STANDARD EDITION',6,452,'others'); -INSERT INTO entity_mentions VALUES(2414,'Windows Server 28 - i386',6,452,'others'); -INSERT INTO entity_mentions VALUES(2415,'Microsoft Microsoft Windows Server 2016 Datacenter',6,452,'others'); -INSERT INTO entity_mentions VALUES(2416,'Microsoft(R) Windows(R) Server 2003, Enterprise Edition Service Pack 2, 32-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2417,'Windows Server 2008 Enterprise x64 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2418,'Windows Server 2016',6,452,'others'); -INSERT INTO entity_mentions VALUES(2419,'Microsoft - Windows server 2012 - R2 - Service Pack 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2420,'Microsoft(R) Windows(R) Server 2003, Standard Edition R2 Service Pack 2, 32-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2421,'Microsoft Windows Server 2008 R2 Standard x64 Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2422,'WINDOWS6.1.7601 Server 2008 R2 Ent x64 SP 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2423,'Windows Server 2012 R2 Standard (Core)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2424,'WINDOWS 2008 R2 SERVER STANDARD EDITION X64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2425,'Windows Server 2012 R26',6,452,'others'); -INSERT INTO entity_mentions VALUES(2426,'Microsoft(R) Windows(R) Server 2003 Standard x64 Edition R2 Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2427,'Windows 2008 Enterprise 32-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2428,'Microsoft Windows Server 2003 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2429,'Windows Server 2012 R2 Std',6,452,'others'); -INSERT INTO entity_mentions VALUES(2430,'Windows 2003 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2431,'Windows 2008 R2 Enterprise 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2432,'Windows Server 2012 R2 Standard 64 bit Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2433,'Microsoft Windows Server 2003 Enterprise Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2434,'Microsoft Windows Server 2000 Advanced',6,452,'others'); -INSERT INTO entity_mentions VALUES(2435,'Microsoft Windows Server 2012 R2 St',6,452,'others'); -INSERT INTO entity_mentions VALUES(2436,'Windows 2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2437,'Windows 2012 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2438,'Windows Server 2008 R2 (64 bits)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2439,'Windows X-Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2440,'Windows 2008 R2 Standard 6.1.7601 Service Pack 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2441,'Windows Server 2003 Standard (32-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2442,'Windows 2008 Standard x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2443,'Microsoft Windows Server 2008 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2444,'Microsoft Windows Storage Server 2012 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2445,'Windows Server 2003 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2446,'Windows 2012 R2 Standard 64-Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2447,'Windows Server 212 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2448,'Windows Server 2012 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2449,'Windows Server 2012 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2450,'Windows Server 2017',6,452,'others'); -INSERT INTO entity_mentions VALUES(2451,'Windows Server 2000 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2452,'Windows Server 2003 Enterprise R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2453,'Windows Server 2003 SP2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2454,'Microsoft Windows 2000 Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2455,'w2k12',6,452,'others'); -INSERT INTO entity_mentions VALUES(2456,'WINDOWS 2013',6,452,'others'); -INSERT INTO entity_mentions VALUES(2457,'WINDOWS 2016 SE 64 BIT',6,452,'others'); -INSERT INTO entity_mentions VALUES(2458,'Windows Server 2008 R2 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2459,'Microsoft - Windows 2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2460,'Microsoft Windows Server 2016',6,452,'others'); -INSERT INTO entity_mentions VALUES(2461,'Microsoft Windows Server 2000 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2462,'Windows Server 2012 R12',6,452,'others'); -INSERT INTO entity_mentions VALUES(2463,'Window Server 2003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2464,'WINDOWS SERVER 2008 ENTERPRISE X64 6.0',6,452,'others'); -INSERT INTO entity_mentions VALUES(2465,'Windows server 2008R2 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2466,'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition R2 Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2467,'MICROSOFT WINDOWS 2008 TPM',6,452,'others'); -INSERT INTO entity_mentions VALUES(2468,'Microsoft Windows Server 2012 Standardx64 Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2469,'MICROSOFT WINDOWS STD 2008',6,452,'others'); -INSERT INTO entity_mentions VALUES(2470,'Microsoft(R) Windows(R) Server 2003, Standard Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2471,'Windows Server 2012 R23',6,452,'others'); -INSERT INTO entity_mentions VALUES(2472,'WINDOWS 6.3.9600 Server 2012 R2 Std x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2473,'Windows 2008 R2 Standard 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2474,'Windows Server 2008 SP1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2475,'Windows server 2008 R2 standard Service Pack1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2476,'MICROSOFT WINDOWS STD 2008 TPM',6,452,'others'); -INSERT INTO entity_mentions VALUES(2477,'Microsoft Windows Server 2008 Standard Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2478,'Windows 2012 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2479,'MICROSOFT WINDOWS NT 2003 ENT',6,452,'others'); -INSERT INTO entity_mentions VALUES(2480,'Windows Server 2012 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2481,'Windows Server 2016 Standard 64 bit Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2482,'MICROSOFT WINDOWS 2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2483,'Windows Server 2003 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2484,'Windows 2003 Standard5.2.3790',6,452,'others'); -INSERT INTO entity_mentions VALUES(2485,'Windows Server 2012 R4',6,452,'others'); -INSERT INTO entity_mentions VALUES(2486,'Windows Server 2012 R7',6,452,'others'); -INSERT INTO entity_mentions VALUES(2487,'Windows Server 2012 R17',6,452,'others'); -INSERT INTO entity_mentions VALUES(2488,'Windows 2012 R',6,452,'others'); -INSERT INTO entity_mentions VALUES(2489,'Windows Server 2012 R8',6,452,'others'); -INSERT INTO entity_mentions VALUES(2490,'WINDOWS SERVER 2012 R2 DATACENTER',6,452,'others'); -INSERT INTO entity_mentions VALUES(2491,'Microsoft Windows Server 2003 R2 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2492,'Windows 2008 Enterprise 32 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2493,'MICROSOFT WINDOWS 2008 ENT',6,452,'others'); -INSERT INTO entity_mentions VALUES(2494,'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2495,'Windows 2012 R2 Standard 6.3.9600',6,452,'others'); -INSERT INTO entity_mentions VALUES(2496,'Windows 2000 Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2497,'Windows Server 2012 R20',6,452,'others'); -INSERT INTO entity_mentions VALUES(2498,'Windows Server 2000',6,452,'others'); -INSERT INTO entity_mentions VALUES(2499,'Windows Server 2003 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2500,'Windows Server 2008 Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2501,'Windows 2016 Datacenter',6,452,'others'); -INSERT INTO entity_mentions VALUES(2502,'Microsoft(R) Windows(R) Server 2003, Standard Edition Service Pack 2, 32-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2503,'Microsoft Windows Server 2016 Datacenter',6,452,'others'); -INSERT INTO entity_mentions VALUES(2504,'WINDOWS SERVER 2008 R2 STANDARD 6.1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2505,'Microsoft - Windows Server 2008 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2506,'Microsoft Windows Server 2012 (64-bit) - Server 2012 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2507,'Microsoft Windows Server 2016 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2508,'Windows Server 2008 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2509,'Windows 2016 Datacenter10.0.14393',6,452,'others'); -INSERT INTO entity_mentions VALUES(2510,'Windows Server 2008 64-Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2511,'windows server 2008 r2 ent',6,452,'others'); -INSERT INTO entity_mentions VALUES(2512,'Windows Server 212',6,452,'others'); -INSERT INTO entity_mentions VALUES(2513,'windows6.3.9600',6,452,'others'); -INSERT INTO entity_mentions VALUES(2514,'Windows 2012 R2 Standard 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2515,'Microsoft Windows Server 2000 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2516,'windows6.3.9600 server 2012 r2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2517,'Windows 2008 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2518,'Microsoft Microsoft Windows Server 2016 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2519,'Windows 2003 Server Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2520,'Windows Server 2012 R16',6,452,'others'); -INSERT INTO entity_mentions VALUES(2521,'Window server 2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2522,'Microsoft Windows Server 2003 Enterprise Edition Version 5.2.3790 [Build 3790]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2523,'Windows 2003 Server R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2524,'Windows Server 2012 R21',6,452,'others'); -INSERT INTO entity_mentions VALUES(2525,'Microsoft Windows Server 2003 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2526,'Windows Server 2012 R6',6,452,'others'); -INSERT INTO entity_mentions VALUES(2527,'Windows Server 2012 R27',6,452,'others'); -INSERT INTO entity_mentions VALUES(2528,'Windows 2008 Standard without Hyper-V6.0.6003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2529,'WINDOWS SERVER 2012 R2 - Server 2012 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2530,'Windows 2008 R2 Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2531,'Microsoft Windows Server 2003 Standard (32-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2532,'Windows 2012 R2 Datacenter',6,452,'others'); -INSERT INTO entity_mentions VALUES(2533,'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition R2 Service Pack 2, 64-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2534,'Windows Server 2018',6,452,'others'); -INSERT INTO entity_mentions VALUES(2535,'Windows 2008 Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2536,'WINDOWS6.3.9600 Server 2012 R2 DC x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2537,'Windows 2008 Standard 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2538,'WINDOWS 6.1.7601 Server 2008 R2 Ent x64 SP 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2539,'WINDOWS SERVER 2012 R2 DATACENTER 6.3',6,452,'others'); -INSERT INTO entity_mentions VALUES(2540,'Microsoft Windows Server 2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2541,'Windows Server 2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2542,'Windows server Standard SP2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2543,'WINDOWS 2003 R2 SERVER ENTERPRISE EDITION',6,452,'others'); -INSERT INTO entity_mentions VALUES(2544,'Windows 2000',6,452,'others'); -INSERT INTO entity_mentions VALUES(2545,'W2K8R2 Standard 64 BIT',6,452,'others'); -INSERT INTO entity_mentions VALUES(2546,'Windows Server 2008 R2 Datacenter',6,452,'others'); -INSERT INTO entity_mentions VALUES(2547,'Windows 2008 Standard6.0.6003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2548,'Windows2008 R2 Enterprise 64bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2549,'WINDOWS 2012 R2 SERVER STANDARD EDITION X64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2550,'Windows Server 2000 Professional',6,452,'others'); -INSERT INTO entity_mentions VALUES(2551,'Microsoft Windows Server 2008 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2552,'WINDOWS SERVER 2003 R2 ENTERPRISE 5.2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2553,'Win2008R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2554,'Microsoft Windows Server 2003 Web Edition (32-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2555,'Windows 2008 Standard 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2556,'Microsoft Windows Server 2008 R2 Enterprise Version 6.1.7601 [Build 7601]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2557,'Windows Server 2003 Appliance',6,452,'others'); -INSERT INTO entity_mentions VALUES(2558,'Windows server 2012 R2 Standared',6,452,'others'); -INSERT INTO entity_mentions VALUES(2559,'Windows 2008 ENT R2 (64 bits)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2560,'Windows Server 2003 (32-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2561,'Microsoft Windows Server 2003 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2562,'WIN2008R2 6.1.7601',6,452,'others'); -INSERT INTO entity_mentions VALUES(2563,'Microsoft Windows Server 2012 R2 Datacenter',6,452,'others'); -INSERT INTO entity_mentions VALUES(2564,'microsoft windows std 2012 tpm',6,452,'others'); -INSERT INTO entity_mentions VALUES(2565,'Windows Server 2012 R2 Standardx64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2566,'microsoft windows 2008',6,452,'others'); -INSERT INTO entity_mentions VALUES(2567,'Microsoft Windows Server 2016 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2568,'Windows 2008 Standard 32 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2569,'Microsoft Windows 2008 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2570,'Microsoft Windows 2000 Server Service Pack 4',6,452,'others'); -INSERT INTO entity_mentions VALUES(2571,'Microsoft Windows Server 2003 Enterprise x64 Edition Version 5.2.3790 [Build 3790]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2572,'Microsoft Windows Storage Server 2012 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2573,'Microsoft Windows Server 2003 Standard x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2574,'Window2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2575,'Microsoft Windows NT Server Version 4.0.1381 [Build 1381]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2576,'Windows Server 2003 Ent',6,452,'others'); -INSERT INTO entity_mentions VALUES(2577,'Windows Server 2000 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2578,'Windows 2008 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2579,'Microsoft Windows Server 2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2580,'Microsoft Windows Server 2003 Standard Edition Version 5.2.3790 [Build 3790]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2581,'Windows Server 2003;',6,452,'others'); -INSERT INTO entity_mentions VALUES(2582,'WS03',6,452,'others'); -INSERT INTO entity_mentions VALUES(2583,'WINDOWS 6.0.6002 Server 2008 Ent x64 SP 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2584,'Windows 2008 Enterprise x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2585,'Microsoft Windows Server 2003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2586,'Windows Server 2008 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2587,'Windows Server 2008 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2588,'windows server 2008 r2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2589,'Windows 2008 R2 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2590,'Windows Server 2003 Std 32-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2591,'Windows 2008 R2 Standard 64bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2592,'Microsoft Windows Server 2008 (32-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2593,'MS WINDOWS SERVER 08',6,452,'others'); -INSERT INTO entity_mentions VALUES(2594,'Microsoft Windows 2003 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2595,'Windows Server 2012 R25',6,452,'others'); -INSERT INTO entity_mentions VALUES(2596,'MICROSOFT WINDOWS NT 2003 TPM',6,452,'others'); -INSERT INTO entity_mentions VALUES(2597,'Win Server 2008',6,452,'others'); -INSERT INTO entity_mentions VALUES(2598,'Windows 2003 R2 Standard 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2599,'WINDOWS 5.2.3790 Server 2003 Ent SP 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2600,'WIN2014',6,452,'others'); -INSERT INTO entity_mentions VALUES(2601,'Windows Server 2012 R19',6,452,'others'); -INSERT INTO entity_mentions VALUES(2602,'Microsoft Windows Server 2012 R2 Standard Version 6.3.9600 [Build 9600]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2603,'Windows Server 2008 R2 Ent 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2604,'Win 2012 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2605,'Microsoft Windows Server 2008 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2606,'WINDOWS 6.3.9600 Server 2012 R2 DC x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2607,'Windows Server 2012 R24',6,452,'others'); -INSERT INTO entity_mentions VALUES(2608,'Win Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2609,'Windows 2008 Standard R2 x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2610,'Windows Server 2008 R2 Enterprise x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2611,'Windows server 2008 Dual processor Intel Xeon x5660 @2.80 GHz 6196 MB memory installed',6,452,'others'); -INSERT INTO entity_mentions VALUES(2612,'Windows2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2613,'Windows 2008 R2 Standard6.1.7601',6,452,'others'); -INSERT INTO entity_mentions VALUES(2614,'Windows 2016',6,452,'others'); -INSERT INTO entity_mentions VALUES(2615,'Windows 2008 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2616,'Windows Server 2008 R2 64Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2617,'Windows Server 2012 R14',6,452,'others'); -INSERT INTO entity_mentions VALUES(2618,'Windows Storage Server 2008 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2619,'Windows Server 2008 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2620,'Microsoft Windows Server 2003 (32-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2621,'Windows OS 2008 Server R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2622,'Microsoft Microsoft Windows Server 2008 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2623,'Windows Server 28 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2624,'WINDOWS 2003 SERVER ENTERPRISE EDITION',6,452,'others'); -INSERT INTO entity_mentions VALUES(2625,'Microsoft Windows Server 2003 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2626,'Windows Server 2008 (32-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2627,'Windows Server 2003 Std 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2628,'Windows 2012 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2629,'Wintel',6,452,'others'); -INSERT INTO entity_mentions VALUES(2630,'Windows Server 2003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2631,'Windows Server 2003 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2632,'Microsoft Windows Server 2012 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2633,'Windows 2000 Standard Server SP4',6,452,'others'); -INSERT INTO entity_mentions VALUES(2634,'WINDOWS6.3.9600 Server 2012 R2 Std x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2635,'Microsoft Windows 2000 Server Version 5.0.2195 [Build 2195]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2636,'Microsoft Windows Server 2016 St',6,452,'others'); -INSERT INTO entity_mentions VALUES(2637,'WINDOWS SERVER 2008 ENTERPRISE 6.0',6,452,'others'); -INSERT INTO entity_mentions VALUES(2638,'Windows Server 2008 R2 Std',6,452,'others'); -INSERT INTO entity_mentions VALUES(2639,'Windows 2003 Enterprise5.2.3790',6,452,'others'); -INSERT INTO entity_mentions VALUES(2640,'WINDOWS 2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2641,'Windows 2008 R2 OS',6,452,'others'); -INSERT INTO entity_mentions VALUES(2642,'Microsoft Windows Server 2008 R2 Enterprise Service Pack 1, 64-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2643,'Windows Server 2008 Enterprise x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2644,'Windows 2003 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2645,'Windows 2008 R2 Enterprise6.1.7601',6,452,'others'); -INSERT INTO entity_mentions VALUES(2646,'Windows 2003 Standard 32 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2647,'WINDOWS SERVER 2003 APPLIANCE 5.2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2648,'Windows Server 2003 Std',6,452,'others'); -INSERT INTO entity_mentions VALUES(2649,'WS08R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2650,'Windows Storage Server 2012 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2651,'WINDOWS SERVER 2003 STANDARD 5.2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2652,'Windows 2008 Enterprise 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2653,'Microsoft Windows Server 2012 R2 for Microsoft Windows Server 2012 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2654,'Windows Server 2000 Advanced',6,452,'others'); -INSERT INTO entity_mentions VALUES(2655,'Microsoft Windows Server 2008 R2 Enterprise x64 Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2656,'WINDOWS 2008 R2 SERVER ENTERPRISE EDITION X64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2657,'Windows Server 2008 32-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2658,'Windows Server 2003 Web Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2659,'WINDOWS SERVER 2012 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2660,'Microsoft Windows 2012 R2 Server Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2661,'w2k8r2sp1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2662,'Microsoft Windows Server 2008 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2663,'Windows Server 2003 Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2664,'Microsoft Windows Server 2008 R2 Standa',6,452,'others'); -INSERT INTO entity_mentions VALUES(2665,'Win 2003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2666,'Windows Server 2012 R29',6,452,'others'); -INSERT INTO entity_mentions VALUES(2667,'Microsoft - Windows server 2008 - Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2668,'Microsoft Windows Server 2003 Enterprise x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2669,'Microsoft(R) Windows(R) Server 2003, Enterprise Edition R2 Service Pack 2, 32-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2670,'Windows 2012 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2671,'WINDOWS SERVER 2012 R2 STANDARD 6.3',6,452,'others'); -INSERT INTO entity_mentions VALUES(2672,'Windows Server 2008 Enterprise R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2673,'Microsoft Windows Server 2008 R2 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2674,'Windows 2008 R2 Standard 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2675,'Microsoft Windows Server 2008 R2 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2676,'Windows 2003 Enterprise 32-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2677,'Microsoft - Microsoft Windows Server 2012 for Microsoft Windows Server 2012 Standard 6.2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2678,'Windows 2012 Storage R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2679,'Windows server 2008 Dual processor Intel Xeon x5660 @2.80 GHz 4096 MB memory installed',6,452,'others'); -INSERT INTO entity_mentions VALUES(2680,'Microsoft - Windows Server 2012 R2 - 6.3',6,452,'others'); -INSERT INTO entity_mentions VALUES(2681,'Windows Server 2012 R5',6,452,'others'); -INSERT INTO entity_mentions VALUES(2682,'Microsoft Windows Server 2012 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2683,'MICROSOFT WINDOWS NT 2003 ENT TPM',6,452,'others'); -INSERT INTO entity_mentions VALUES(2684,'Windows 2012 Server R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2685,'Windows 2016 Standard10.0.14393',6,452,'others'); -INSERT INTO entity_mentions VALUES(2686,'Microsoft Microsoft Windows Server 2012 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2687,'Windows Server 2003 Ent 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2688,'MICROSOFT WINDOWS 2003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2689,'WINDOWS 2003 SERVER ENTERPRISE EDITION X64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2690,'Windows 2012 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2691,'WINDOWS 2000 ADVANCED SERVER 5.0',6,452,'others'); -INSERT INTO entity_mentions VALUES(2692,'Microsoft Windows NT 4.0 Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2693,'Windows Server2012 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2694,'Win Server 2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2695,'Microsoft Windows Server 2008 Enterprise Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2696,'MICROSOFT WINDOWS STD 2012 TPM',6,452,'others'); -INSERT INTO entity_mentions VALUES(2697,'Windows 2003 Enterprise 32 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2698,'Windows 2008 Enterprise R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2699,'Windows 2008',6,452,'others'); -INSERT INTO entity_mentions VALUES(2700,'Microsoft Microsoft Windows 2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2701,'WINDOWS 2003 SERVER STANDARD EDITION',6,452,'others'); -INSERT INTO entity_mentions VALUES(2702,'windows server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2703,'Microsoft Windows Server 2008',6,452,'others'); -INSERT INTO entity_mentions VALUES(2704,'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2705,'Win Server 2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2706,'Windows 2016 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2707,'Microsoft Windows Server 2003 Standard (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2708,'Microsoft Windows Server 2008 R2 Standard. Service Pack 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2709,'Windows 2000 Server Service Pack 4',6,452,'others'); -INSERT INTO entity_mentions VALUES(2710,'Windows Server 2003 R2 Ent 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2711,'Windows Server 2012 r2 64bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2712,'Windows 2008 Enterprise 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2713,'Microsoft Windows Server 2012 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2714,'Windows Server 2012 R15',6,452,'others'); -INSERT INTO entity_mentions VALUES(2715,'Windows 2003 Standard 5.2.3790 Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2716,'Windows 2012 Standard6.2.9200',6,452,'others'); -INSERT INTO entity_mentions VALUES(2717,'MICROSOFT WINDOWS 2016 TPM',6,452,'others'); -INSERT INTO entity_mentions VALUES(2718,'Microsoft Windows Server 2016 or later (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2719,'Windows Storage Server 2012 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2720,'Windows 2003 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2721,'Windows Server 2016 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2722,'Microsoft Windows Server 2012 R2 Standardx64 Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2723,'Windows 2008 R2 Enterprise 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2724,'Windows 2003 Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2725,'Windows 2012 R2 Standard6.3.9600',6,452,'others'); -INSERT INTO entity_mentions VALUES(2726,'Windows Server Threshold, 64-bit (Build 14393)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2727,'Windows Server 2012 R28',6,452,'others'); -INSERT INTO entity_mentions VALUES(2728,'Windows Server 2012 R13',6,452,'others'); -INSERT INTO entity_mentions VALUES(2729,'Microsoft Microsoft Windows Server 2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2730,'Microsoft Windows Server 2008 R2 Standard Service Pack 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2731,'Windows Server 2003 32-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2732,'Microsoft Windows Server 2008 R2 Enterprise Version 6.1.7600 [Build 7600]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2733,'Microsoft - Windows server 2003 - Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2734,'Windows 2008 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2735,'MicrosoftWindows Server 2008 R2 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2736,'windows6.3',6,452,'others'); -INSERT INTO entity_mentions VALUES(2737,'Microsoft - Windows Server 2012 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2738,'Windows 2016 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2739,'Windows Server 2003 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2740,'Windows Server NT',6,452,'others'); -INSERT INTO entity_mentions VALUES(2741,'Windows Server 2012 Std',6,452,'others'); -INSERT INTO entity_mentions VALUES(2742,'Microsoft Windows Server 2008 R2 Standard Version 6.1.7601 [Build 7601]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2743,'Windows Server 2012 R18',6,452,'others'); -INSERT INTO entity_mentions VALUES(2744,'Windows 2008 Enterprise6.0.6003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2745,'Microsoft(R) Windows(R) Server 2003, Standard Edition Service Pack 1, 32-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2746,'Windows Server 2012 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2747,'Windows Server 2019 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2748,'windows server 2008 R2 SP1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2749,'Win 2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2750,'Win2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2751,'Win2012R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2752,'windows server threshold',6,452,'others'); -INSERT INTO entity_mentions VALUES(2753,'win2008',6,452,'others'); -INSERT INTO entity_mentions VALUES(2754,'Windows 2003 Standard x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2755,'Microsoft Windows Storage Server 2008 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2756,'Windows Server 28',6,452,'others'); -INSERT INTO entity_mentions VALUES(2757,'Microsoft Windows Server 2008 Standard Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2758,'Windows Server 2008 R2 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2759,'Windows Server 2008 R2 with Service Pack 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2760,'Windows Server 2012 R11',6,452,'others'); -INSERT INTO entity_mentions VALUES(2761,'Windows Server 2012 R10',6,452,'others'); -INSERT INTO entity_mentions VALUES(2762,'Windows Server 2012 R30',6,452,'others'); -INSERT INTO entity_mentions VALUES(2763,'WINDOWS 2016 STANDARD EDITION',6,452,'others'); -INSERT INTO entity_mentions VALUES(2764,'Windows Server 2012 R22',6,452,'others'); -INSERT INTO entity_mentions VALUES(2765,'Windows Server 2003 Standard (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2766,'WINDOWS SERVER 2008 R2 ENTERPRISE 6.1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2767,'Microsoft Windows Server 2008 R2 (64-bit) - Server 2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2768,'Microsoft Windows Server 2008 R2 Enterprise Service Pack 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2769,'Windows Server 2008',6,452,'others'); -INSERT INTO entity_mentions VALUES(2770,'(WingArc) SVF 9.1',2,240,'others'); -INSERT INTO entity_mentions VALUES(2771,'WingArc SVF',2,240,'others'); -INSERT INTO entity_mentions VALUES(2772,'WinMerge',2,241,'others'); -INSERT INTO entity_mentions VALUES(2773,'WinMerge.org - WinMerge 2.14',2,241,'others'); -INSERT INTO entity_mentions VALUES(2774,'RARLab - WinRAR 5.31',2,242,'others'); -INSERT INTO entity_mentions VALUES(2775,'WinRAR',2,242,'others'); -INSERT INTO entity_mentions VALUES(2776,'WinSCP.net - WinSCP 5.11',2,243,'others'); -INSERT INTO entity_mentions VALUES(2777,'WinSCP',2,243,'others'); -INSERT INTO entity_mentions VALUES(2778,'Wise',2,244,'others'); -INSERT INTO entity_mentions VALUES(2779,'Wise Package Studio',2,244,'others'); -INSERT INTO entity_mentions VALUES(2780,'Wordpress',2,245,'others'); -INSERT INTO entity_mentions VALUES(2781,'XAMPP',2,246,'others'); -INSERT INTO entity_mentions VALUES(2782,'Xbase++',9,374,'others'); -INSERT INTO entity_mentions VALUES(2783,'Xbase++ v1.9',9,374,'others'); -INSERT INTO entity_mentions VALUES(2784,'ZAP BI Application Test Server',2,247,'others'); -INSERT INTO entity_mentions VALUES(2785,'ZAP BI Application Stage Server',2,247,'others'); -INSERT INTO entity_mentions VALUES(2786,'ZAP BI',2,247,'others'); -INSERT INTO entity_mentions VALUES(2787,'ZAP BI Application Server',2,247,'others'); -INSERT INTO entity_mentions VALUES(2788,'ZMQ',2,248,'others'); -INSERT INTO entity_mentions VALUES(2789,'ZeroMQ',2,248,'others'); -INSERT INTO entity_mentions VALUES(2790,'Zerto Vritual Appliance',2,249,'others'); -INSERT INTO entity_mentions VALUES(2791,'Zerto Virtual Replication',2,249,'others'); -INSERT INTO entity_mentions VALUES(2792,'Fedora',6,453,'others'); -INSERT INTO entity_mentions VALUES(2793,'Amazon Linux',6,454,'others'); -INSERT INTO entity_mentions VALUES(2794,'Oracle RTD',8,289,'others'); -INSERT INTO entity_mentions VALUES(2795,'Oracle Real-Time Decisions (RTD)',8,289,'others'); -INSERT INTO entity_mentions VALUES(2796,'Oracle Real-Time Decisions',8,289,'others'); -INSERT INTO entity_mentions VALUES(2797,'PowerHA',2,250,'others'); -INSERT INTO entity_mentions VALUES(2798,'IBM High Availability Cluster Multiprocessing',2,250,'others'); -INSERT INTO entity_mentions VALUES(2799,'IBM PowerHA',2,250,'others'); -INSERT INTO entity_mentions VALUES(2800,'IBM PowerHA SystemMirror',2,250,'others'); -INSERT INTO entity_mentions VALUES(2801,'Tivoli Netcool/OMNIbus',2,251,'others'); -INSERT INTO entity_mentions VALUES(2802,'OMNIbus',2,251,'others'); -INSERT INTO entity_mentions VALUES(2803,'Tivoli Netcool',2,251,'others'); -INSERT INTO entity_mentions VALUES(2804,'IBM ILOG Views',2,252,'others'); -INSERT INTO entity_mentions VALUES(2805,'ILOG Views',2,252,'others'); -INSERT INTO entity_mentions VALUES(2806,'IBM ILOG CPLEX',2,253,'others'); -INSERT INTO entity_mentions VALUES(2807,'ILOG CPLEX',2,253,'others'); -INSERT INTO entity_mentions VALUES(2808,'IBM ILOG Jviews',2,254,'others'); -INSERT INTO entity_mentions VALUES(2809,'ILOG Jviews',2,254,'others'); -INSERT INTO entity_mentions VALUES(2810,'IBM ILOG Elixir',2,255,'others'); -INSERT INTO entity_mentions VALUES(2811,'ILOG Elixir',2,255,'others'); -INSERT INTO entity_mentions VALUES(2812,'ILOG Supply Chain Apps',2,256,'others'); -INSERT INTO entity_mentions VALUES(2813,'IBM ILOG Supply Chain Apps',2,256,'others'); -INSERT INTO entity_mentions VALUES(2814,'ILOG Solver',2,257,'others'); -INSERT INTO entity_mentions VALUES(2815,'Websphere ILOG JRules BRMS',2,601,'others'); -INSERT INTO entity_mentions VALUES(2816,'ILOG JRules BRMS',2,601,'others'); -INSERT INTO entity_mentions VALUES(2817,'Application Lifecycle Management',1,511,'others'); -INSERT INTO entity_mentions VALUES(2818,'ALM',1,511,'others'); -INSERT INTO entity_mentions VALUES(2819,'Application Lifecycle Management (ALM)',1,511,'others'); -INSERT INTO entity_mentions VALUES(2820,'Assembler Language',1,512,'others'); -INSERT INTO entity_mentions VALUES(2821,'Assembler',1,512,'others'); -INSERT INTO entity_mentions VALUES(2822,'BMS',1,513,'others'); -INSERT INTO entity_mentions VALUES(2823,'Batch Management Software (BMS)',1,513,'others'); -INSERT INTO entity_mentions VALUES(2824,'Batch Management Software',1,513,'others'); -INSERT INTO entity_mentions VALUES(2825,'Business Object Reports',1,514,'others'); -INSERT INTO entity_mentions VALUES(2826,'Common Gateway Interface (CGI)',1,515,'others'); -INSERT INTO entity_mentions VALUES(2827,'Common Gateway Interface',1,515,'others'); -INSERT INTO entity_mentions VALUES(2828,'CGI',1,515,'others'); -INSERT INTO entity_mentions VALUES(2829,'Compopent Object Model',1,516,'others'); -INSERT INTO entity_mentions VALUES(2830,'COM',1,516,'others'); -INSERT INTO entity_mentions VALUES(2831,'Compopent Object Model (COM)',1,516,'others'); -INSERT INTO entity_mentions VALUES(2832,'Common Object Request Broker Architecture (CORBA)',1,517,'others'); -INSERT INTO entity_mentions VALUES(2833,'Common Object Request Broker Architecture',1,517,'others'); -INSERT INTO entity_mentions VALUES(2834,'CORBA',1,517,'others'); -INSERT INTO entity_mentions VALUES(2835,'CORBA Interface Definition Language (CORBA IDL)',1,518,'others'); -INSERT INTO entity_mentions VALUES(2836,'CORBA Interface Definition Language',1,518,'others'); -INSERT INTO entity_mentions VALUES(2837,'CORBA IDL',1,518,'others'); -INSERT INTO entity_mentions VALUES(2838,'Data Control Language',1,519,'others'); -INSERT INTO entity_mentions VALUES(2839,'DCL',1,519,'others'); -INSERT INTO entity_mentions VALUES(2840,'Database',1,520,'others'); -INSERT INTO entity_mentions VALUES(2841,'DB',1,520,'others'); -INSERT INTO entity_mentions VALUES(2842,'DB (database)',1,520,'others'); -INSERT INTO entity_mentions VALUES(2843,'EDI',1,521,'others'); -INSERT INTO entity_mentions VALUES(2844,'Electronic Data Interchange',1,521,'others'); -INSERT INTO entity_mentions VALUES(2845,'Electronic Data Interchange (EDI)',1,521,'others'); -INSERT INTO entity_mentions VALUES(2846,'Web Server',1,522,'others'); -INSERT INTO entity_mentions VALUES(2847,'Java-based Document Object Model for XML',1,523,'others'); -INSERT INTO entity_mentions VALUES(2848,'Java-based Document Object Model for XML (JDOM)',1,523,'others'); -INSERT INTO entity_mentions VALUES(2849,'JDOM',1,523,'others'); -INSERT INTO entity_mentions VALUES(2850,'Lightweight Directory Access Protocol',1,524,'others'); -INSERT INTO entity_mentions VALUES(2851,'LDAP',1,524,'others'); -INSERT INTO entity_mentions VALUES(2852,'Lightweight Directory Access Protocol (LDAP)',1,524,'others'); -INSERT INTO entity_mentions VALUES(2853,'Open Database Connectivity (ODBC)',1,525,'others'); -INSERT INTO entity_mentions VALUES(2854,'Open Database Connectivity',1,525,'others'); -INSERT INTO entity_mentions VALUES(2855,'ODBC',1,525,'others'); -INSERT INTO entity_mentions VALUES(2856,'Order Management System (OMS)',1,526,'others'); -INSERT INTO entity_mentions VALUES(2857,'Order Management System',1,526,'others'); -INSERT INTO entity_mentions VALUES(2858,'OMS',1,526,'others'); -INSERT INTO entity_mentions VALUES(2859,'Oracle Web Services',1,527,'others'); -INSERT INTO entity_mentions VALUES(2860,'Reporting Services',1,528,'others'); -INSERT INTO entity_mentions VALUES(2861,'REST',1,529,'others'); -INSERT INTO entity_mentions VALUES(2862,'Representational State Transfer',1,529,'others'); -INSERT INTO entity_mentions VALUES(2863,'Representational State Transfer (REST)',1,529,'others'); -INSERT INTO entity_mentions VALUES(2864,'Service-Oriented Architecture',1,530,'others'); -INSERT INTO entity_mentions VALUES(2865,'Service-Oriented Architecture (SOA)',1,530,'others'); -INSERT INTO entity_mentions VALUES(2866,'SOA',1,530,'others'); -INSERT INTO entity_mentions VALUES(2867,'Simple Object Access Protocol (SOAP)',1,531,'others'); -INSERT INTO entity_mentions VALUES(2868,'SOAP',1,531,'others'); -INSERT INTO entity_mentions VALUES(2869,'Simple Object Access Protocol',1,531,'others'); -INSERT INTO entity_mentions VALUES(2870,'Sturctured Query Language',9,532,'others'); -INSERT INTO entity_mentions VALUES(2871,'SQL',9,532,'others'); -INSERT INTO entity_mentions VALUES(2872,'YAML',1,533,'others'); -INSERT INTO entity_mentions VALUES(2873,'MVC',1,574,'others'); -INSERT INTO entity_mentions VALUES(2874,'Application Server',1,535,'others'); -INSERT INTO entity_mentions VALUES(2875,'Cloud',1,536,'others'); -INSERT INTO entity_mentions VALUES(2876,'Competency and Quality Assurance Server',1,537,'others'); -INSERT INTO entity_mentions VALUES(2877,'Device Provisioning Engines',1,538,'others'); -INSERT INTO entity_mentions VALUES(2878,'Device Provisioning Engines (DPE)',1,538,'others'); -INSERT INTO entity_mentions VALUES(2879,'DPE',1,538,'others'); -INSERT INTO entity_mentions VALUES(2880,'E-business solution',1,539,'others'); -INSERT INTO entity_mentions VALUES(2881,'Ebusiness solution',1,539,'others'); -INSERT INTO entity_mentions VALUES(2882,'ESB',1,540,'others'); -INSERT INTO entity_mentions VALUES(2883,'Enterprise Service Bus',1,540,'others'); -INSERT INTO entity_mentions VALUES(2884,'Enterprise Service Bus(ESB)',1,540,'others'); -INSERT INTO entity_mentions VALUES(2885,'File Server',1,541,'others'); -INSERT INTO entity_mentions VALUES(2886,'General Ledger',1,542,'others'); -INSERT INTO entity_mentions VALUES(2887,'HTTP client',1,543,'others'); -INSERT INTO entity_mentions VALUES(2888,'HTTP Server',1,544,'others'); -INSERT INTO entity_mentions VALUES(2889,'Integrated Safe System of Work',1,545,'others'); -INSERT INTO entity_mentions VALUES(2890,'ISSOW',1,545,'others'); -INSERT INTO entity_mentions VALUES(2891,'Integrated Safe System of Work (ISSOW)',1,545,'others'); -INSERT INTO entity_mentions VALUES(2892,'Internet Exchange Point - Full Stack (ixp-ft)',1,546,'others'); -INSERT INTO entity_mentions VALUES(2893,'IMAP',1,547,'others'); -INSERT INTO entity_mentions VALUES(2894,'Internet Message Access Protocol',1,547,'others'); -INSERT INTO entity_mentions VALUES(2895,'Internet Message Access Protocol (IMAP)',1,547,'others'); -INSERT INTO entity_mentions VALUES(2896,'JSON',1,548,'others'); -INSERT INTO entity_mentions VALUES(2897,'KVS Application Server',1,549,'others'); -INSERT INTO entity_mentions VALUES(2898,'KVS File Server',1,550,'others'); -INSERT INTO entity_mentions VALUES(2899,'KVS Proxy Server',1,551,'others'); -INSERT INTO entity_mentions VALUES(2900,'mainframe',1,552,'others'); -INSERT INTO entity_mentions VALUES(2901,'Manufacturing Execution System',1,553,'others'); -INSERT INTO entity_mentions VALUES(2902,'Manufacturing Execution System (MES)',1,553,'others'); -INSERT INTO entity_mentions VALUES(2903,'MES',1,553,'others'); -INSERT INTO entity_mentions VALUES(2904,'Mobile',1,554,'others'); -INSERT INTO entity_mentions VALUES(2905,'NonSQL',1,555,'others'); -INSERT INTO entity_mentions VALUES(2906,'SaaS',1,556,'others'); -INSERT INTO entity_mentions VALUES(2907,'Storage Area Network',1,557,'others'); -INSERT INTO entity_mentions VALUES(2908,'Storage Area Network (SAN)',1,557,'others'); -INSERT INTO entity_mentions VALUES(2909,'SAN',1,557,'others'); -INSERT INTO entity_mentions VALUES(2910,'Supplier Registration System',1,558,'others'); -INSERT INTO entity_mentions VALUES(2911,'Supplier Registration Application Server',1,558,'others'); -INSERT INTO entity_mentions VALUES(2912,'Supplier Registration System Application Server',1,558,'others'); -INSERT INTO entity_mentions VALUES(2913,'Virtual Appliance',1,559,'others'); -INSERT INTO entity_mentions VALUES(2914,'Webtop',1,560,'others'); -INSERT INTO entity_mentions VALUES(2915,'Proxy Server',1,561,'others'); -INSERT INTO entity_mentions VALUES(2916,'Application/Utility',1,562,'others'); -INSERT INTO entity_mentions VALUES(2917,'Utility',1,562,'others'); -INSERT INTO entity_mentions VALUES(2918,'SQLite',2,258,'others'); -INSERT INTO entity_mentions VALUES(2919,'OpenBSD',6,590,'others'); -INSERT INTO entity_mentions VALUES(2920,'z/VSE',6,591,'others'); -INSERT INTO entity_mentions VALUES(2921,'Z/Virtual System Environment',6,591,'others'); -INSERT INTO entity_mentions VALUES(2922,'VSE',6,591,'others'); -INSERT INTO entity_mentions VALUES(2923,'DOS/VSE',6,591,'others'); -INSERT INTO entity_mentions VALUES(2924,'Microsoft Disk Operating System',6,593,'others'); -INSERT INTO entity_mentions VALUES(2925,'Microsoft DOS',6,593,'others'); -INSERT INTO entity_mentions VALUES(2926,'MS DOS',6,593,'others'); -INSERT INTO entity_mentions VALUES(2927,'MS-DOS',6,593,'others'); -INSERT INTO entity_mentions VALUES(2928,'VME/B',6,595,'others'); -INSERT INTO entity_mentions VALUES(2929,'VME',6,595,'others'); -INSERT INTO entity_mentions VALUES(2930,'Virtual Machine Environment',6,595,'others'); -INSERT INTO entity_mentions VALUES(2931,'VME 2900',6,595,'others'); -INSERT INTO entity_mentions VALUES(2932,'OpenVME',6,595,'others'); -INSERT INTO entity_mentions VALUES(2933,'DOS/360',6,597,'others'); -INSERT INTO entity_mentions VALUES(2934,'Disk Operating System/360',6,597,'others'); -INSERT INTO entity_mentions VALUES(2935,'TPF',6,598,'others'); -INSERT INTO entity_mentions VALUES(2936,'z/TPF',6,598,'others'); -INSERT INTO entity_mentions VALUES(2937,'Transaction Processing Facility',6,598,'others'); -INSERT INTO entity_mentions VALUES(2938,'z/VM',6,608,'others'); -INSERT INTO entity_mentions VALUES(2939,'Berkeley Software Distribution',6,446,'others'); -INSERT INTO entity_mentions VALUES(2940,'BSD',6,446,'others'); -INSERT INTO entity_mentions VALUES(2941,'Berkeley System Distribution',6,446,'others'); -INSERT INTO entity_mentions VALUES(2942,'BSD Unix',6,446,'others'); -INSERT INTO entity_mentions VALUES(2943,'Berkeley Unix',6,446,'others'); -INSERT INTO entity_mentions VALUES(2944,'Wildfly',7,493,'others'); -INSERT INTO entity_mentions VALUES(2945,'JBoss Application Server',7,493,'others'); -INSERT INTO entity_mentions VALUES(2946,'Job Entry Subsystem 3',2,1,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2947,'Job Entry Subsystem',2,1,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2948,'Job Entry Subsystem 2/3',2,1,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2949,'JES2',2,1,'also_known_as'); -INSERT INTO entity_mentions VALUES(2950,'JES3',2,1,'also_known_as'); -INSERT INTO entity_mentions VALUES(2951,'Activiti',2,3,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2952,'Acrobat forms',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2953,'Adobe Acrobat 3D',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2954,'Adobe Acrobat Professional',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2955,'Acrobat Professional',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2956,'Adobe Acrobat Pro',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2957,'Acrobat 8',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2958,'Adobe Acrobat Capture',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2959,'Adobe Acrobat Reader',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2960,'Acrobat file',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2961,'Acrobat reader',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2962,'Adobe Reader X',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2963,'Acrobat 3D',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2964,'Adobe Reader LE',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2965,'Adobe acrobat',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2966,'Acrobat Pro',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2967,'Acrobat 7',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2968,'Adobe Acrobat 9.5.5',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2969,'Adobe reader',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2970,'Adobe Acrobat Viewer',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2971,'Acrobat Exchange',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2972,'Acrobat document',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2973,'Acroread',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2974,'AdobeR Reader',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2975,'Adobe Acrobat Distiller',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2976,'Acrobat PDFMaker 10.0 for Word',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2977,'Adobe Acrobat X',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2978,'Adobe Acrobat Reader DC',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2979,'Adobe Reader',2,4,'also_known_as'); -INSERT INTO entity_mentions VALUES(2980,'Acrobat Reader',2,4,'also_known_as'); -INSERT INTO entity_mentions VALUES(2981,'Ansible software',2,5,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2982,'Activemq',2,6,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2983,'ActiveMQ',2,6,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2984,'HBase',2,7,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2985,'Hbase',2,7,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2986,'HiveQL',2,8,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2987,'Kafka Streams',2,9,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2988,'Kafka (software)',2,9,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2989,'Apache kafka',2,9,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2990,'ServiceMix',2,10,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2991,'Solr',2,11,'also_known_as'); -INSERT INTO entity_mentions VALUES(2992,'Subversion (vcs)',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2993,'Commit access',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2994,'Svn (vcs)',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2995,'Subverson',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2996,'Subversion branch',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2997,'Svn (software)',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2998,'Subversion software',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2999,'Sub Versioning',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3000,'Apache subversion',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3001,'Svn software',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3002,'Subversion branching',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3003,'SVN branch',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3004,'Subversion (program)',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3005,'Subversive branching',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3006,'Svn vcs',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3007,'Subversion (software)',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3008,'Svn (Unix)',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3009,'Subversion (Software)',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3010,'Asterisk operator',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3011,'Asterisk character',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3012,'Asterisks',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3013,'Asterisk (punctuation)',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3014,'Asterick',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3015,'Asterisked form',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3016,'Splat (pronouns)',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3017,'Heavy asterisk',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3018,'Asteract',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3019,'Astrick',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3020,'Bluebeam Revu',2,17,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3021,'BDE (Borland)',2,20,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3022,'Borland BDE',2,20,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3023,'ODAPI',2,20,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3024,'Eclipse BIRT',2,21,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3025,'BIRT Reports',2,21,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3026,'BIRT Report',2,21,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3027,'Advantage:Gen',2,22,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3028,'Cool:Gen',2,22,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3029,'COOLGen',2,22,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3030,'COOL:Gen',2,22,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3031,'Advantage Gen',2,22,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3032,'Coolgen',2,22,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3033,'Information Engineering Facility',2,22,'also_known_as'); -INSERT INTO entity_mentions VALUES(3034,'CA-Panvalet',2,24,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3035,'CA Panvalet',2,24,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3036,'Telon',2,25,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3037,'TELON',2,25,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3038,'Chef (tool)',2,27,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3039,'Chef-Solo',2,27,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3040,'Chef Community Repository',2,27,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3041,'Chef software',2,27,'also_known_as'); -INSERT INTO entity_mentions VALUES(3042,'Citrix XenApp',2,30,'also_known_as'); -INSERT INTO entity_mentions VALUES(3043,'WinFrame',2,30,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3044,'Citrix WinFrame',2,30,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3045,'Winframe',2,30,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3046,'OP3Nvoice',2,33,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3047,'Clarify - Op3nvoice',2,33,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3048,'Laboratory information system',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3049,'Laboratory Information Management System',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3050,'Laboratory informatics system',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3051,'Lims',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3052,'Laboratory Information Management Systems',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3053,'Lab information system',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3054,'Laboratory computer system',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3055,'Laboratory Information Management Software',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3056,'Laboratory Information System',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3057,'Cognos Inc.',2,36,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3058,'IBM Cognos',2,36,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3059,'Macromedia ColdFusion MX',2,37,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3060,'ColdFusion MX',2,37,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3061,'Coldfusion',2,37,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3062,'Adobe cold fusion',2,37,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3063,'ColdFusion Components',2,37,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3064,'Cold Fusion programming language',2,37,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3065,'Abobe coldfusion',2,37,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3066,'ColdFusion programming language',2,37,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3067,'ColdFusion',2,37,'also_known_as'); -INSERT INTO entity_mentions VALUES(3068,'Macromedia ColdFusion',2,37,'also_known_as'); -INSERT INTO entity_mentions VALUES(3069,'Network Data Mover',2,40,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3070,'Connect Direct',2,40,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3071,'Crystal Report',2,42,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3072,'Crystal reports',2,42,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3073,'SAP Crystal Reports',2,42,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3074,'Report application server',2,42,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3075,'DB2',2,43,'also_known_as'); -INSERT INTO entity_mentions VALUES(3076,'Db2',2,43,'also_known_as'); -INSERT INTO entity_mentions VALUES(3077,'DB2/400',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3078,'IBM DB2 Express-C',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3079,'DB2/2',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3080,'DB2 Express',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3081,'SQLCA',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3082,'Ibm viper',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3083,'DATABASE 2',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3084,'IBM Db2',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3085,'Db2 for i',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3086,'DB2 DWE',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3087,'DB/2',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3088,'IBM PureQuery',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3089,'DB2 Everyplace',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3090,'PureQuery',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3091,'IBM DB2',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3092,'Db/2',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3093,'Documentum D2',2,44,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3094,'EMC Documentum',2,44,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3095,'Droopal',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3096,'Deanspace',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3097,'Drupal theming',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3098,'Droople',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3099,'CivicSpace',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3100,'Druscal',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3101,'Drupal Con',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3102,'DrupalCon',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3103,'Civic Space',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3104,'Drupla',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3105,'Durpal',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3106,'DeanSpace',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3107,'Druple',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3108,'Hack4Dean',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3109,'Civicspace',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3110,'Acquia Drupal',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3111,'Open Atrium',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3112,'Eclipse sdk',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3113,'Mylyn',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3114,'Java Eclipse',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3115,'Web Tools Platform',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3116,'Eclipse software',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3117,'Eclipse SDK',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3118,'Eclipse Kura',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3119,'Eclipse Classic',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3120,'Eclipse ganymede',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3121,'Eclipse Europa',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3122,'Eclipse (computing)',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3123,'Eclipse (platform)',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3124,'Eclipse IDE',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3125,'Java eclipse',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3126,'Yoxos OnDemand',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3127,'Eclipse java',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3128,'Yoxos',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3129,'Eclipse (IDE)',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3130,'Eclipse (SDK)',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3131,'Eclipse ide',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3132,'Eclipse (ide)',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3133,'Eclipse Galileo',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3134,'Eclipse platform',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3135,'Eclipse RCP',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3136,'Java Emitter Templates',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3137,'Eclipse ADT',2,46,'also_known_as'); -INSERT INTO entity_mentions VALUES(3138,'ExamDiff',2,49,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3139,'FileMaker Pro',2,51,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3140,'Filemaker',2,51,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3141,'FileMaker II',2,51,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3142,'Filemaker Pro',2,51,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3143,'FileMaker Server',2,51,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3144,'FilemakerPro',2,51,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3145,'Google chrome 5',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3146,'Google Chrome Beta',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3147,'Google chrome',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3148,'Google Chrome 12',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3149,'Chrome software',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3150,'Google Chrome 14',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3151,'Chrome (browser)',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3152,'Googlechrome',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3153,'Chrome Canary',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3154,'Google Chrome extension',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3155,'Google Chrome browser',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3156,'Google Chrome for IOS',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3157,'Chrome extension',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3158,'Extension (Google Chrome)',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3159,'Incognito mode',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3160,'Chrome browser',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3161,'Google Chrome for Android',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3162,'Google Chrome Extensions Gallery',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3163,'Google Chrome 4',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3164,'GChrome',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3165,'Google Browser',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3166,'Chrome google',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3167,'Chrome (software)',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3168,'Chrome (Google)',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3169,'Chrome web browser',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3170,'Google Chrome 13',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3171,'Google Chrome 11',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3172,'Google Chrome Canary',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3173,'Chrome Extensions',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3174,'Chromium (engine)',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3175,'GBrowser',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3176,'Chrome (web browser)',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3177,'Google Chrome for iOS',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3178,'Chrome for Android',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3179,'EMC Greenplum',2,56,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3180,'Pivotal Greenplum Database',2,56,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3181,'Greenplum database',2,56,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3182,'Hadoop distributed file system',2,57,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3183,'Hadoop Distributed Filesystem',2,57,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3184,'Hadoop YARN',2,57,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3185,'HDFS',2,57,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3186,'Amazon Elastic MapReduce',2,57,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3187,'Hadoop Distributed File System',2,57,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3188,'YARN',2,57,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3189,'Hadoop',2,57,'also_known_as'); -INSERT INTO entity_mentions VALUES(3190,'NorCroft',2,59,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3191,'Norcroft compiler suite',2,59,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3192,'Norcroft C',2,59,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3193,'Norcroft compiler',2,59,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3194,'Norcroft',2,59,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3195,'Tivoli Endpoint Manager',2,62,'also_known_as'); -INSERT INTO entity_mentions VALUES(3196,'IBM Endpoint Manager',2,62,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3197,'Datastage',2,67,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3198,'IBM InfoSphere',2,67,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3199,'DataStage',2,67,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3200,'IBM WebSphere DataStage',2,67,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3201,'IBM Integration Bus',2,68,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3202,'IBM WebSphere Message Broker',2,68,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3203,'WebSphere Message Broker',2,68,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3204,'IBM MobileFirst',2,72,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3205,'IBM WebSphere ILOG JRules',2,73,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3206,'Spectrum Scale',2,74,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3207,'IBM Spectrum Scale',2,74,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3208,'General Parallel File System',2,74,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3209,'IBM General Parallel File System',2,74,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3210,'Vesta File System',2,74,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3211,'Adstar Distributed Storage Manager',2,78,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3212,'Tivoli Storage Manager',2,78,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3213,'ADSM',2,78,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3214,'ADSTAR Distributed Storage Manager',2,78,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3215,'IBM Tivoli Storage Manager FastBack',2,78,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3216,'Distributed Storage Manager Client',2,78,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3217,'WebSphere Adapters',2,80,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3218,'MQ Series',2,81,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3219,'Websphere MQ',2,81,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3220,'IBM Message Queue Interface',2,81,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3221,'Mqseries',2,81,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3222,'IBM WebSphere MQ',2,81,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3223,'IBM Websphere MQ',2,81,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3224,'WebSphere MQ',2,81,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3225,'MQSeries',2,81,'also_known_as'); -INSERT INTO entity_mentions VALUES(3226,'Hierarchical sequential access method',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3227,'IBM IMS',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3228,'Information Management System',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3229,'IMS DC',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3230,'IMS/DC',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3231,'HSAM (computing)',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3232,'Information management system',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3233,'Hierarchical Sequential Access Method',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3234,'IMS/DB',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3235,'IMS/TM',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3236,'IMS system',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3237,'WiZ',2,85,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3238,'Zip (software)',2,85,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3239,'Info-Zip',2,85,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3240,'InfoZip',2,85,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3241,'Infozip',2,85,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3242,'Berkeley Ingres QUEL',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3243,'IngresCorporation',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3244,'Ingres II',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3245,'Ingres Database',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3246,'University Ingres',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3247,'OpenIngres',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3248,'CA-Ingres',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3249,'Ingres database',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3250,'INGRES',2,88,'also_known_as'); -INSERT INTO entity_mentions VALUES(3251,'IBM Domino',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3252,'Lotus domino',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3253,'Notes Release 3.0',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3254,'Lotus Notes 3.0',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3255,'Lotus Notes Mail',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3256,'Lotus Notes 2.1',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3257,'Lotus Notes Release 3.0',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3258,'Lotus notes',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3259,'Eproductivity',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3260,'Notes 3.0',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3261,'Lodus notes',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3262,'Domino XML',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3263,'Lodus nodes',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3264,'Notes Release 2.1',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3265,'Lodus Nodes',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3266,'IBM Lotus Notes',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3267,'IBM Lotus Domino',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3268,'Notes Storage Facility',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3269,'Lotus Domino',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3270,'Dominoblog',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3271,'Lodus Notes',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3272,'Lotus Notes Release 2.1',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3273,'Notes 2.1',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3274,'IBM iNotes Webmail Redirect',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3275,'Domino (software)',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3276,'HLC Domino',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3277,'HCL Notes',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3278,'EProductivity',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3279,'Notes Storage Format',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3280,'Lotus Notes',2,93,'also_known_as'); -INSERT INTO entity_mentions VALUES(3281,'IBM Notes',2,93,'also_known_as'); -INSERT INTO entity_mentions VALUES(3282,'MaaS 360 (Software)',2,94,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3283,'Malwarebytes'' AntiMalware',2,95,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3284,'Malwarebytes'' Anti-Malware',2,95,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3285,'Malware Bytes',2,95,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3286,'Malwarebytes Anti-Malware',2,95,'also_known_as'); -INSERT INTO entity_mentions VALUES(3287,'Mark Logic',2,97,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3288,'MarkMail',2,97,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3289,'MarkLogic Corporation',2,97,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3290,'Mark logic',2,97,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3291,'Memcache',2,98,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3292,'Memory Cache Daemon',2,98,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3293,'Microsoft Access Development',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3294,'Ms access',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3295,'Ms Access',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3296,'Microsoft Access 2002',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3297,'Access 2002',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3298,'MS access',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3299,'Access 97 SR2',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3300,'Microsoft Access 2007',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3301,'Access 2',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3302,'Accdb',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3303,'MS Access',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3304,'MSAccess',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3305,'Office Access',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3306,'Microsoft Acces',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3307,'Access 97',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3308,'MSACCESS',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3309,'Microsoft access',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3310,'Microsoft Office Access',2,99,'also_known_as'); -INSERT INTO entity_mentions VALUES(3311,'Biztalk',2,100,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3312,'BizTalk',2,100,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3313,'BizTalk Server',2,100,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3314,'Microsoft Biztalk Server',2,100,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3315,'Axapta',2,101,'also_known_as'); -INSERT INTO entity_mentions VALUES(3316,'En''tegrate',2,101,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3317,'X++',2,101,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3318,'En''tegrate Software',2,101,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3319,'Dynamics AX',2,101,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3320,'MorphX',2,101,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3321,'System Management Server',2,102,'also_known_as'); -INSERT INTO entity_mentions VALUES(3322,'ConfigMgr',2,102,'also_known_as'); -INSERT INTO entity_mentions VALUES(3323,'System center configuration manager',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3324,'System Centre Configuration Manager',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3325,'Systems Management Server',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3326,'System Center Configuration Manager',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3327,'AssetMetrix',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3328,'SCCM 2007',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3329,'MSSMS',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3330,'Microsoft Systems Management Server',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3331,'MS excel',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3332,'Excel (Microsoft)',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3333,'Excel macro',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3334,'Microsoft XL',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3335,'Excel function',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3336,'Excel 2010',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3337,'Microsoft excel file formats',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3338,'Microsoft excel',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3339,'Microsoft(r) Excel(r)',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3340,'XLW',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3341,'Ms Excel',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3342,'XLS files',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3343,'XLS file',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3344,'Microsoft Excel XP',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3345,'Ms excel',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3346,'Excel Viewer',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3347,'XLS FILE',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3348,'Microsoft Excel:mac',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3349,'Excel spreadsheet',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3350,'Microsoft Excel 95',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3351,'Microsoft Excel 2002',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3352,'Microsoft Excel 2003',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3353,'Excel 2007',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3354,'Microsoft Excel Viewer',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3355,'Microsoft Excel file format',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3356,'Excel Web App',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3357,'EXCEL',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3358,'Xlw',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3359,'Microsoft Excel 2004',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3360,'MICROSOFT EXCEL',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3361,'Excel table',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3362,'Excel 2003',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3363,'Excel VBA',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3364,'Microsoft Office Excel',2,103,'also_known_as'); -INSERT INTO entity_mentions VALUES(3365,'Excel',2,103,'also_known_as'); -INSERT INTO entity_mentions VALUES(3366,'MS Excel',2,103,'also_known_as'); -INSERT INTO entity_mentions VALUES(3367,'Office Excel',2,103,'also_known_as'); -INSERT INTO entity_mentions VALUES(3368,'MS Exchange Server',2,104,'also_known_as'); -INSERT INTO entity_mentions VALUES(3369,'Exchange email',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3370,'Exchange 2007',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3371,'Exchange Online',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3372,'Microsoft Exchange Client',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3373,'Exchange Server',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3374,'Cluster continuos replication',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3375,'Exchange 2010',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3376,'Microsoft Exchange 2013',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3377,'Microsoft Exchange Server 2013',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3378,'Microsoft Exchange server',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3379,'LinkAge Software',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3380,'Exchange Server 2007',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3381,'Exchange Server 2003',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3382,'Exchange 2013',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3383,'MS Exchange 2010 SP2',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3384,'Exchange Server 2013',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3385,'Cluster continuous replication',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3386,'Identity Lifecycle Manager',2,105,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3387,'Microsoft Office Infopath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3388,'Microsoft infoPath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3389,'Microsoft Infopath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3390,'Microsoft infopath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3391,'Infopath 2007',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3392,'Office Forms Server',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3393,'MS InfoPath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3394,'Infopath Form Services',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3395,'MS infoPath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3396,'Ms Infopath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3397,'Infopath Forms Services',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3398,'InfoPath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3399,'Microsoft InfoPath Filler',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3400,'InfoPath Forms Services',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3401,'Forms Server',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3402,'Infopath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3403,'Ms infoPath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3404,'InfoPath Form Services',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3405,'Infopass',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3406,'Ms infopath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3407,'Microsoft Office Forms Server',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3408,'Office InfoPath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3409,'MS infopath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3410,'InfoPath forms services',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3411,'Microsoft Office InfoPath 2007',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3412,'Infopath forms services',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3413,'Microsoft InfoPath Designer',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3414,'Microsoft Office InfoPath',2,106,'also_known_as'); -INSERT INTO entity_mentions VALUES(3415,'XDocs',2,106,'also_known_as'); -INSERT INTO entity_mentions VALUES(3416,'Microsoft Internet Explorer',2,107,'also_known_as'); -INSERT INTO entity_mentions VALUES(3417,'MSIE',2,107,'also_known_as'); -INSERT INTO entity_mentions VALUES(3418,'Windows Internet Explorer',2,107,'also_known_as'); -INSERT INTO entity_mentions VALUES(3419,'MS IE',2,107,'also_known_as'); -INSERT INTO entity_mentions VALUES(3420,'Internetexplorer',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3421,'Microsoft IE',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3422,'Stopie',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3423,'Internut Exploder',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3424,'WinInet',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3425,'Internex',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3426,'Wininet',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3427,'Internet Exploder',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3428,'Iexplorer',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3429,'Features of internet explorer',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3430,'WinINET',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3431,'MicroSoft Internet Explorer',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3432,'Innerhtml',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3433,'Iexplore',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3434,'MSIE (web browser)',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3435,'Internet explorer',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3436,'Internet exploiter',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3437,'Internet Exploiter',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3438,'MS Internet Explorer',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3439,'InternetExplorer',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3440,'M.S.I.E.',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3441,'IE browser',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3442,'InnerHTML',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3443,'StopIE',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3444,'Microsoft Proxy Server',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3445,'Threat Management Gateway',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3446,'Internet Security and Acceleratoin Server',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3447,'Internet Security and Acceleration Server',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3448,'Microsoft ISA Server',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3449,'Internet Security and Acceleration',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3450,'MS Proxy Server',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3451,'ISA server',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3452,'Forefront Threat Management Gateway',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3453,'ISA Server',2,108,'also_known_as'); -INSERT INTO entity_mentions VALUES(3454,'Forefront TMG',2,108,'also_known_as'); -INSERT INTO entity_mentions VALUES(3455,'Microsoft Internet Security and Acceleration Server',2,108,'also_known_as'); -INSERT INTO entity_mentions VALUES(3456,'MSMQ',2,109,'also_known_as'); -INSERT INTO entity_mentions VALUES(3457,'Microsoft Message Queue Server',2,109,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3458,'Microsoft Message Queue',2,109,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3459,'Visual Studio .NET',2,111,'also_known_as'); -INSERT INTO entity_mentions VALUES(3460,'Microsoft Visual Studio .NET',2,111,'also_known_as'); -INSERT INTO entity_mentions VALUES(3461,'Visual Studio',2,111,'also_known_as'); -INSERT INTO entity_mentions VALUES(3462,'Vs2010',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3463,'Visual Studio 97',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3464,'Microsoft Visual Studio 2008',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3465,'Data dude',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3466,'Visual Studio Shell',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3467,'Microsoft Development Environment',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3468,'Visual Studio .NET 2003',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3469,'VS2008',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3470,'LightSwitch',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3471,'Visual Studio Team Services',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3472,'Visual Studio 2017',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3473,'Microsoft visual studio',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3474,'Microsoft Visual Studio 2015',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3475,'Visual Studio Online',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3476,'Visual Studio 11',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3477,'DevBiz Business Solutions',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3478,'Visual Studio .NET 2005',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3479,'Visual Studio .NET 2002',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3480,'Visual Studio Test Professional',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3481,'VS2017',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3482,'Visual Studio 2019',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3483,'VS2010',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3484,'Microsoft Visual Studio Community',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3485,'Visual Studio.NET 2005',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3486,'Microsoft Visual Studio debugger',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3487,'MSDEV',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3488,'Visual Studio 2013',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3489,'Visual Studio Application Lifecycle Management',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3490,'Visual Studio Team Suite',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3491,'Visual studio',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3492,'VS6',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3493,'Microsoft Test professional',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3494,'Visual Studio 2015',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3495,'Azure DevOps Services',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3496,'Visual Studio 2010',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3497,'Microsoft visual studio 2010',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3498,'VS2005',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3499,'Visual Studio.NET',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3500,'VS 2005',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3501,'DXCore',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3502,'Visual Studio debugger',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3503,'Visual Studio Team Test',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3504,'MS Visual Studio',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3505,'RefactorPro',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3506,'Visual Studio Debugger',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3507,'VisualStudio',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3508,'Visual Studio LightSwitch',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3509,'Microsoft Orcas',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3510,'Visual Studio ALM',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3511,'Microsoft Visual Studio 2005',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3512,'Visual Studio 2005',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3513,'CodeView and the Visual Studio Debugger',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3514,'Visual Studio Orcas',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3515,'Visual Studio 2022',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3516,'Microsoft Test Professional',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3517,'Visual Studio 2008',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3518,'Microsoft Visual Studio Debugger',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3519,'Vs.net',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3520,'VS05',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3521,'Vs 2010',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3522,'Visual Studio 6.0',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3523,'Visual Studio Community',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3524,'VISUAL STUDIO 2008',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3525,'DevBiz',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3526,'Microsoft Visual Studio 2010',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3527,'Visual Studio 2012',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3528,'VS 2008',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3529,'Visual Studio Ultimate 2010',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3530,'WebPI',2,114,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3531,'Microsoft Web Platform Installer',2,114,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3532,'Mongo db',2,116,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3533,'Mongodb',2,116,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3534,'Firefox (browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3535,'Firebird browser',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3536,'FireBird (browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3537,'Mozila Firefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3538,'Firefox minefield',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3539,'Minefield (trunk build)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3540,'FireFox (web browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3541,'Firebird (web browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3542,'Mozilla Phoenix',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3543,'Mozilla/browser',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3544,'Firefox (software)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3545,'Mozilla firefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3546,'M/b',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3547,'Phoenix web browser',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3548,'Firefox Aurora',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3549,'Mozilla Firerfox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3550,'Firebird (browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3551,'Mozilla''s Firefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3552,'MineField Browser',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3553,'Firefox (web browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3554,'Mozilla phoenix',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3555,'SpreadFirefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3556,'FireBird (web browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3557,'Mozzila Firefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3558,'FireFox (browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3559,'Mozilla Minefield',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3560,'Firefox esr',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3561,'Mozilla FireFox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3562,'Mozilla Firefox''s',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3563,'Mozilla firebird',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3564,'Mozff',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3565,'Mozilla firefox esr',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3566,'Firebird Web Browser',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3567,'Frefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3568,'Phoenix (browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3569,'Spread Firefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3570,'Forefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3571,'FireFox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3572,'Mozillafirefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3573,'Mozilla Fire Fox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3574,'Firefox Roadmap',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3575,'Firefox roadmap',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3576,'Firebird web browser',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3577,'Mozilla Firefox (software)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3578,'Mozilla Firefox ESR',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3579,'SpreadFireFox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3580,'Moz firefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3581,'Firefox Browser',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3582,'Firefo',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3583,'Fire Fox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3584,'Mozilla FireBird',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3585,'Mozilla FX',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3586,'Firefox ESR',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3587,'Mozilla ff',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3588,'Phoenix (web browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3589,'Fire fox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3590,'Firefox web browser',2,117,'also_known_as'); -INSERT INTO entity_mentions VALUES(3591,'Firefox browser',2,117,'also_known_as'); -INSERT INTO entity_mentions VALUES(3592,'Mozilla Firebird',2,117,'also_known_as'); -INSERT INTO entity_mentions VALUES(3593,'Mozilla Firefox',2,117,'also_known_as'); -INSERT INTO entity_mentions VALUES(3594,'MS-Office 365',2,119,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3595,'MS SQL',2,120,'also_known_as'); -INSERT INTO entity_mentions VALUES(3596,'MS SQL Server',2,120,'also_known_as'); -INSERT INTO entity_mentions VALUES(3597,'MSSQL',2,120,'also_known_as'); -INSERT INTO entity_mentions VALUES(3598,'MS-SQL',2,120,'also_known_as'); -INSERT INTO entity_mentions VALUES(3599,'Microsoft SQL Server 2005',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3600,'Sql Server 2000',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3601,'SQL Server 2017',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3602,'Sqlcmd',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3603,'SQL Server 2014 ISO',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3604,'SQL Server 2000',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3605,'SQL Server 2005',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3606,'SQL Server 2014',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3607,'Microsoft SQL Server 2008 R2',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3608,'Microsoft SQL server',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3609,'Microsoft SQL Server 2000',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3610,'SQL Server 2014 CAB',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3611,'SQL Server 2008 R2',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3612,'Pubs (database)',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3613,'SQL Server 2012',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3614,'Microsoft SQL',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3615,'Microsoft SQL Server 2008',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3616,'Microsoft Sql Server',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3617,'SQL 6.5',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3618,'Ms sql server',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3619,'SQL Server 2008',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3620,'Microsoft sql server',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3621,'Mssql',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3622,'SQL Server 2016',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3623,'SQL 7.0',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3624,'SQL Server 2019',2,120,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3625,'SQL Server 2005 Compact Edition',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3626,'SQL Server Compact 3.5',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3627,'Microsoft SQL Server Compact Edition',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3628,'SQL Server Compact Edition Database File',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3629,'Sql mobile',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3630,'SQL Server Compact Edition',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3631,'SQL Mobile',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3632,'SQLCE',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3633,'SQL Server Mobile',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3634,'SQLce',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3635,'SQL Server Compact 2005 Edition',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3636,'SQL Server Mobile Edition',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3637,'SQL Server CE',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3638,'Microsoft SQL Server Mobile Edition',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3639,'Microsoft SQL Server Compact',2,121,'also_known_as'); -INSERT INTO entity_mentions VALUES(3640,'SQL CE',2,121,'also_known_as'); -INSERT INTO entity_mentions VALUES(3641,'My sql',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3642,'MySQL server',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3643,'Mysql 5.0',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3644,'MySQL Fabric',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3645,'Mysqldump',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3646,'MySql',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3647,'MYSQL',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3648,'MySQL HA',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3649,'SunSQL',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3650,'Libmysqld',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3651,'Mysql-server',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3652,'Mysql',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3653,'Mqsql',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3654,'My Structured Query Language',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3655,'My SQL',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3656,'MySql 5',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3657,'Mysql 5.1',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3658,'Neo Technology',2,123,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3659,'Neo4J',2,123,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3660,'Nix language',2,125,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3661,'Nix Package Manager',2,125,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3662,'Openldap',2,126,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3663,'OpenText Exstream',2,127,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3664,'PrivateVPN',2,128,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3665,'Openvon',2,128,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3666,'Openvpn',2,128,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3667,'Open VPN',2,128,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3668,'ADF Faces',2,130,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3669,'Oracle ADF',2,130,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3670,'Oracle HTML DB',2,131,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3671,'Html db',2,131,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3672,'HTML DB',2,131,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3673,'Oracle APEX',2,131,'also_known_as'); -INSERT INTO entity_mentions VALUES(3674,'Oracle XML Publisher',2,132,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3675,'OBIEE',2,133,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3676,'Oracle11i',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3677,'Oracle8i',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3678,'Oracle (software)',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3679,'Oracle (database)',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3680,'Ora92',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3681,'Oracle 11i',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3682,'Oracle express',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3683,'Oracle XE',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3684,'Oracle (DBMS)',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3685,'Oracle database',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3686,'Instantclient',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3687,'Oracle db',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3688,'Oracle 11g',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3689,'Oracle R Enterprise',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3690,'Oracle9i',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3691,'Oracle11g',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3692,'Oracle DBMS',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3693,'Oracle8',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3694,'Oracle RDBMS',2,134,'also_known_as'); -INSERT INTO entity_mentions VALUES(3695,'Oracle Designer 2000',2,135,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3696,'Oracle Enterprise Manager',2,136,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3697,'Oracle Forms',2,137,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3698,'Oracle Hyperion|Hyperion Planning',2,139,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3699,'Oracle Net',2,140,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3700,'Real application clusters',2,141,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3701,'Oracle Service Bus',2,143,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3702,'Oracle soa',2,145,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3703,'Oracle SQL Developer',2,146,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3704,'Oracle TimesTen In-Memory Database',2,147,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3705,'Timesten',2,147,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3706,'Smallbase',2,147,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3707,'TimesTen In-Memory Database',2,147,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3708,'Oracle Warehouse Builder',2,148,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3709,'Orbix (Software)',2,149,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3710,'Pentaho Data Integration',2,150,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3711,'Ramsetcube',2,150,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3712,'PeopleSoft Enterprise',2,151,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3713,'People Soft',2,151,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3714,'PeopleSoft',2,151,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3715,'PeopleSoft EnterpriseOne',2,151,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3716,'PeopleSoft HRMS',2,151,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3717,'Peoplesoft',2,151,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3718,'Pervasive psql',2,153,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3719,'Actian Zen',2,153,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3720,'Pervasive sql',2,153,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3721,'PKZip',2,155,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3722,'PKSFX',2,155,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3723,'PKUNZIP',2,155,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3724,'SecureZIP',2,155,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3725,'Pkunzip',2,155,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3726,'Pkzip',2,155,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3727,'Metis (modelling)',2,156,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3728,'Metis (software)',2,156,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3729,'PgSQL',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3730,'PostgreSQL Data Base Management System',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3731,'Postsql',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3732,'Postgres95',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3733,'POSTGRES',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3734,'Autovacuum',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3735,'PGSQL',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3736,'PostSQL',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3737,'PostGRES',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3738,'POSTGRES95',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3739,'Psql (PostgreSQL)',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3740,'Pgsql',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3741,'PortugueseSQL',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3742,'PostegreSQL',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3743,'PostGRE',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3744,'PostgresSQL',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3745,'Postgresql',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3746,'PostGres',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3747,'PostgreSql',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3748,'Postgre sql',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3749,'Postgress',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3750,'Postgre',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3751,'Postgres',2,157,'also_known_as'); -INSERT INTO entity_mentions VALUES(3752,'Powerbuilder',2,158,'also_known_as'); -INSERT INTO entity_mentions VALUES(3753,'Sybase PowerBuilder',2,158,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3754,'Power Builder',2,158,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3755,'Oracle Primavera',2,159,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3756,'Primavera p6',2,159,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3757,'XER (file format)',2,159,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3758,'Primavera P3',2,159,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3759,'ProjectWise',2,161,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3760,'ProjectWise Web Server',2,162,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3761,'Polytron Version Control System',2,163,'also_known_as'); -INSERT INTO entity_mentions VALUES(3762,'QlikView',2,164,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3763,'Rabbit MQ',2,165,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3764,'Rabbitmq',2,165,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3765,'RabbitMq',2,165,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3766,'Rabbit mq',2,165,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3767,'MultiVersion File System',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3768,'IBM Rational ClearCase',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3769,'Clear case',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3770,'IBM Rational MultiVersion File System',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3771,'Clearcase',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3772,'Rational MultiVersion File System',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3773,'Ibm clear case',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3774,'ClearCase',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3775,'Rational Business Developer Extension',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3776,'Rational Service Tester for SOA Quality',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3777,'Rational Business Developer',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3778,'Rational ClearQuest',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3779,'IBM Rational SQABasic',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3780,'SQABasic',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3781,'IBM Rational Business Developer Extension',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3782,'Rationale Software',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3783,'Rational Machines',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3784,'Rational Application Developer',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3785,'Rational Team Concert',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3786,'Rational Engineering Lifecycle Manager',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3787,'IBM Jazz',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3788,'IBM Rational Team Concert',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3789,'Rational Rose RealTime',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3790,'IBM Rational Business Developer',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3791,'IBM Rational Software',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3792,'Rational Software Corporation',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3793,'Rational Functional Tester',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3794,'Rational Tau',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3795,'Rational robot',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3796,'IBM Rational',2,167,'also_known_as'); -INSERT INTO entity_mentions VALUES(3797,'Redis (data store)',2,168,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3798,'Redis (dbms)',2,168,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3799,'Redis database format',2,168,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3800,'Remedy',2,169,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3801,'Riak',2,170,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3802,'Rumba criolla',2,172,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3803,'Mysap',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3804,'SAP enterprise software',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3805,'SAP Transport management system',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3806,'Profitability Analysis (SAP)',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3807,'MySAP',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3808,'SAP ERP Financials',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3809,'MySAP ERP',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3810,'SAP Basis',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3811,'SAP HCM PA',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3812,'SAP ECC',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3813,'MySAP ERP Operations',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3814,'SAP ERP Human Capital Management',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3815,'MySAP ERP Financials',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3816,'SAP Fiori',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3817,'SAP ERP Operations',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3818,'SAP ERP Corporate Services',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3819,'High-performance Analytical Application',2,175,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3820,'SAP DB',2,176,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3821,'SAPDB',2,176,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3822,'SapDB',2,176,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3823,'SAP Netweaver Business Intelligence',2,177,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3824,'SAP NetWeaver Business Intelligence',2,177,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3825,'SAP BW',2,177,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3826,'SAP Business Information Warehouse',2,177,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3827,'Sybase ASA',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3828,'ASA (SQL Anywhere)',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3829,'PowerSoft SQL',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3830,'SAP Adaptive Server Anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3831,'Sybase asa',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3832,'PowerSoft Watcom SQL',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3833,'Sybase Anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3834,'Sql anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3835,'Adaptive Server Anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3836,'SAP SQL Anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3837,'PowerSoft SQL Anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3838,'Sybase SQL Anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3839,'SAP Sybase Adaptive Server Anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3840,'SAP Sybase ASA',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3841,'Watcom SQL',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3842,'Sybase Adaptive Server Anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3843,'SAP ASA',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3844,'Web Dynpro ABAP',2,179,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3845,'Webdynpro',2,179,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3846,'Dynpro',2,179,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3847,'Sentry Risk Table',2,180,'also_known_as'); -INSERT INTO entity_mentions VALUES(3848,'Windows Sharepoint',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3849,'Microsoft SharePoint Server',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3850,'MOSS 2007',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3851,'Microsoft Office SharePoint Server 2007',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3852,'SharePoint 2007',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3853,'Windows sharepoint',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3854,'Microsoft SharePoint 2010',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3855,'SharePoint 2010',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3856,'Microsoft SharePoint 2007',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3857,'Sharepoint',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3858,'Share point server',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3859,'SharePoint Foundation',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3860,'SharePoint services',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3861,'SharePoint Server',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3862,'Sharepoint portal server',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3863,'Microsoft sharepoint',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3864,'Windows SharePoint 2007',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3865,'Microsoft SharePoint',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3866,'Office SharePoint Server',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3867,'Windows SharePoint',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3868,'MS Sharepoint',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3869,'Windows SharePoint Server',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3870,'Sharepoint 2007',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3871,'Windows SharePoint Services',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3872,'Share Point',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3873,'Microsoft Office Sharepoint Server 2007',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3874,'Microsoft Windows SharePoint Services',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3875,'Microsoft Office SharePoint Portal Server',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3876,'Microsoft Sharepoint Foundation',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3877,'SharePoint Portal Server',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3878,'Sharepoint services',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3879,'Sharepoint Services',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3880,'Sharepoint 2010',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3881,'Microsoft Sharepoint',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3882,'Windows Sharepoint Services 3',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3883,'Sharepoint server',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3884,'MS SharePoint',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3885,'Microsoft Office SharePoint',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3886,'SharePointCOE',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3887,'Share point',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3888,'Sharepoint collaboration',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3889,'Microsoft SharePoint Foundation',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3890,'SharePoint Services',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3891,'SharePoint Resources',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3892,'Windows Sharepoint Services',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3893,'Microsoft Office SharePoint Server',2,181,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3894,'Snaglt',2,184,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3895,'SnagIt',2,184,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3896,'IBM Mobile',2,185,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3897,'SonarLint',2,186,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3898,'Sonarqube',2,186,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3899,'Sonar (software quality)',2,186,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3900,'Splunk',2,188,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3901,'Sybase SQL Server',2,190,'also_known_as'); -INSERT INTO entity_mentions VALUES(3902,'SAP Sybase DB',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3903,'SAP Sybase SQL Server',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3904,'SAP Sybase ASE',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3905,'Sybase Adaptive Server Enterprise',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3906,'SAP Adaptive Server Enterprise',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3907,'SAP Sybase Adaptive Server Enterprise (ASE)',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3908,'Sybase (database)',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3909,'SAP SQL Server',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3910,'SAP Sybase',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3911,'SAP Sybase Adaptive Server Enterprise',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3912,'Sybase database',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3913,'ASE (SQL Server)',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3914,'Sybase Enterprise',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3915,'Sybase ASE',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3916,'SAP ASE',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3917,'Sybase DB',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3918,'Syncsort',2,191,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3919,'Teradata Geospatial',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3920,'Teradata FastLoad',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3921,'Teradata Warehouse Miner',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3922,'Fastexport',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3923,'BTEQ',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3924,'Teradata Parallel Transporter',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3925,'FastExport',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3926,'ADAM Software',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3927,'Tibco Rendezvous',2,219,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3928,'Tivoli Access Manager',2,220,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3929,'Tortoise CVS',2,221,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3930,'TSVN',2,222,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3931,'Tortoisesvn',2,222,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3932,'Tortoise svn',2,222,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3933,'Tortoise SVN',2,222,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3934,'UNIFACE',2,225,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3935,'VisiBroker',2,228,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3936,'Vcenter',2,231,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3937,'IBM WebSphere Commerce',2,234,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3938,'WebSphere Commerce',2,234,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3939,'Windchill',2,237,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3940,'Index Server',2,238,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3941,'Windows Indexing Service',2,238,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3942,'Windows indexing service',2,238,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3943,'WinMerge 2011',2,241,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3944,'Winmerge',2,241,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3945,'Winrar',2,242,'also_known_as'); -INSERT INTO entity_mentions VALUES(3946,'WinRar',2,242,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3947,'RAR5',2,242,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3948,'Rarlab WinRAR',2,242,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3949,'Win RAR',2,242,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3950,'WINSCP',2,243,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3951,'Winscp',2,243,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3952,'Word press',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3953,'BbPress',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3954,'Cafelog',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3955,'WordPress MU',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3956,'B2\cafelog',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3957,'Wordpress',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3958,'B2/cafelog',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3959,'WordPress 2.1.2',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3960,'WordCamp',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3961,'WordPress Foundation',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3962,'Word Press',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3963,'The WordPress Foundation',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3964,'Wordpress foundation',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3965,'B2 (software)',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3966,'Xampp',2,246,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3967,'XAMPP Lite',2,246,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3968,'Xamp',2,246,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3969,'Xampp Lite',2,246,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3970,'Apache Friends',2,246,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3971,'0MQ',2,248,'also_known_as'); -INSERT INTO entity_mentions VALUES(3972,'ZMQ',2,248,'also_known_as'); -INSERT INTO entity_mentions VALUES(3973,'Nanomsg',2,248,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3974,'Zero MQ',2,248,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3975,'ØMQ',2,248,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3976,'0mq',2,248,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3977,'Zmq',2,248,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3978,'Zeromq',2,248,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3979,'OMQ',2,248,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3980,'Zerto Virtual Replication',2,249,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3981,'HACMP',2,250,'also_known_as'); -INSERT INTO entity_mentions VALUES(3982,'High Availability Cluster Multiprocessing',2,250,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3983,'IBM PowerHA SystemMirror',2,250,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3984,'ILOG CPLEX',2,253,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3985,'OPL Development Studio',2,253,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3986,'LogicTools',2,257,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3987,'Sqlite',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3988,'SQL Lite',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3989,'Sqlite3',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3990,'SqlLite',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3991,'SQLLite',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3992,'SQLite4',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3993,'SQLlite',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3994,'SQLite3',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3995,'SQlite',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3996,'SQLLite DB',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3997,'SQLite Manager',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3998,'Sqllite',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3999,'SQLITE',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4000,'Apache webserver',8,259,'also_known_as'); -INSERT INTO entity_mentions VALUES(4001,'Apache Server',8,259,'also_known_as'); -INSERT INTO entity_mentions VALUES(4002,'Apache web server',8,259,'also_known_as'); -INSERT INTO entity_mentions VALUES(4003,'Apache WWW Server',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4004,'Apache (server)',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4005,'Apache (web server)',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4006,'Apache httpd',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4007,'Apache server',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4008,'Apache2',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4009,'Apache2ctl',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4010,'Apache Web Server',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4011,'Apache 2.4',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4012,'Apache Web server',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4013,'Apache HTTPd',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4014,'Apache http',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4015,'Apache HTTPD',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4016,'Apachectl',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4017,'Apache http server',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4018,'Apache HTTP server',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4019,'Apache (HTTP server)',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4020,'Apache 1.3',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4021,'Apache (webserver)',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4022,'Apache 2.2',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4023,'Apache Webserver',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4024,'Apache (computing)',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4025,'Tomcat Catalina',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4026,'Apache tomcat',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4027,'Tomcat Jasper',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4028,'Tomcat6',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4029,'Tomcat 6',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4030,'Tomcat5',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4031,'Catalina (Tomcat)',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4032,'Tomcat Coyote',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4033,'Tomcat (software)',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4034,'Jakarta Tomcat',8,260,'also_known_as'); -INSERT INTO entity_mentions VALUES(4035,'ArcGIS Server',8,261,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4036,'BEA-WebLogic',8,262,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4037,'Bea Weblogic',8,262,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4038,'Oracle Weblogic',8,262,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4039,'Web Logic',8,262,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4040,'BEA AS',8,262,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4041,'BEA WebLogic',8,262,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4042,'WebLogic',8,262,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4043,'BEA Application Server',8,262,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4044,'BEA Weblogic',8,262,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4045,'Oracle WebLogic',8,262,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4046,'Weblogic',8,262,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4047,'Oracle Weblogic Server',8,262,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4048,'WebLogic Application Server',8,262,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4049,'Sun ONE Application Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4050,'Oracle GlassFish Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4051,'SJSAS',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4052,'Java System Application Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4053,'Glassfish Application Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4054,'Sun GlassFish Enterprise Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4055,'Glassfish server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4056,'Sun Java Application Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4057,'Sun Java System Application Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4058,'IPlanet Application Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4059,'Haproxy',8,264,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4060,'IBM HTTP Server',8,265,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4061,'Microsoft IIS',8,266,'also_known_as'); -INSERT INTO entity_mentions VALUES(4062,'Microsoft Internet Information Services',8,266,'also_known_as'); -INSERT INTO entity_mentions VALUES(4063,'Internet Information Server',8,266,'also_known_as'); -INSERT INTO entity_mentions VALUES(4064,'IIS 7',8,266,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4065,'Microsoft Internet Information Server',8,266,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4066,'IIS Media Services',8,266,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4067,'Microsoft-IIS',8,266,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4068,'MS IIS',8,266,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4069,'IIS7',8,266,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4070,'IIS Media Pack',8,266,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4071,'Microsoft-iis',8,266,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4072,'Microsoft IIS server',8,266,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4073,'IIS Express',8,266,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4074,'IIS server',8,266,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4075,'Red Hat Software',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4076,'RHTS',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4077,'RHAT (NASDAQ)',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4078,'Red Hat Czech',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4079,'PNAELV',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4080,'JBoss (company)',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4081,'RHAT',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4082,'Redhat.com',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4083,'Red Hat Test Suite',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4084,'Ntsysv',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4085,'FUSE Message Broker',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4086,'JBOSS',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4087,'RESTEasy',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4088,'Red Hat (company)',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4089,'REDHAT',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4090,'Red.ht',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4091,'CloudForms',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4092,'Red Hat High',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4093,'Red Hat Enterprise MRG',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4094,'JBoss',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4095,'RED HAT',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4096,'JBoss Group',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4097,'Red hat',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4098,'Red Hat',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4099,'Red Hat MGR',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4100,'Redhat',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4101,'Red Hat MRG',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4102,'RESTeasy',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4103,'Red Hat Inc',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4104,'Red Hat India',8,267,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4105,'Red Hat Inc.',8,267,'also_known_as'); -INSERT INTO entity_mentions VALUES(4106,'RedHat',8,267,'also_known_as'); -INSERT INTO entity_mentions VALUES(4107,'Red Hat Software',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4108,'RHTS',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4109,'RHAT (NASDAQ)',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4110,'Red Hat Czech',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4111,'Fuse Message Broker',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4112,'PNAELV',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4113,'JBoss (company)',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4114,'RHAT',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4115,'Redhat.com',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4116,'Red Hat Test Suite',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4117,'Ntsysv',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4118,'FUSE Message Broker',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4119,'NASDAQ:RHAT',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4120,'JBOSS',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4121,'RESTEasy',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4122,'Red Hat (company)',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4123,'REDHAT',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4124,'Red.ht',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4125,'CloudForms',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4126,'Red Hat High',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4127,'Red Hat Enterprise MRG',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4128,'JBoss',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4129,'RED HAT',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4130,'JBoss Group',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4131,'Red hat',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4132,'Red Hat',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4133,'Red Hat MGR',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4134,'Redhat',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4135,'Red Hat MRG',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4136,'RESTeasy',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4137,'Red Hat Inc',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4138,'Red Hat India',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4139,'Red Hat Inc.',8,268,'also_known_as'); -INSERT INTO entity_mentions VALUES(4140,'RedHat',8,268,'also_known_as'); -INSERT INTO entity_mentions VALUES(4141,'Kitura',8,269,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4142,'IBM Domino',8,270,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4143,'Lucee',8,271,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4144,'Netscape Application Server',8,272,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4145,'Netscape Enterprise Server',8,273,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4146,'Nginx plus',8,274,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4147,'NGINX',8,274,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4148,'Engine X',8,274,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4149,'NGINX Unit',8,274,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4150,'Oracle OC4J',8,275,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4151,'OC4J',8,275,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4152,'Oracle Application Server 10g',8,275,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4153,'Oracle Imaging and Process Management',8,276,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4154,'Oracle Content Management',8,276,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4155,'WebCenter',8,276,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4156,'Oracle Universal Content Management',8,276,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4157,'Universal Content Management',8,276,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4158,'Oracle WebCenter Imaging',8,276,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4159,'Resin Server',8,278,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4160,'Resin Application Server',8,278,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4161,'Caucho Resin',8,278,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4162,'Quercus (software)',8,278,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4163,'NetWeawer',8,279,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4164,'SAP Netweaver solution',8,279,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4165,'Netweaver',8,279,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4166,'SAP Central Process Scheduling',8,279,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4167,'NetWeaver',8,279,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4168,'Apache Spark',8,280,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4169,'Sun Java System Web Server',8,281,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4170,'Sun Java Enterprise System Web Server',8,281,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4171,'IPlanet Web Server 4.1',8,281,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4172,'Netscape Enterprise Server',8,281,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4173,'Sun ONE Web Server',8,281,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4174,'Netscape FastTrack Server',8,281,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4175,'Sun Java Web Server',8,281,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4176,'IPlanet Web Server',8,281,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4177,'Sun-Java-System-Web-Server',8,281,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4178,'webMethods Integration Server',8,283,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4179,'WebSphere Application Server V3.0',8,284,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4180,'WebSphere Application Server V5.0',8,284,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4181,'Websphere 6',8,284,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4182,'WAS 6',8,284,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4183,'WebSphere Application Server',8,284,'also_known_as'); -INSERT INTO entity_mentions VALUES(4184,'WebSphere',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4185,'WebSphere Application Server V5.1 Business Integration Foundation Edition',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4186,'WebSphere Application Server V6.0',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4187,'WebSphere Application Server V5.0 Enterprise Edition',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4188,'IBM WebSphere Real Time',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4189,'Websphere',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4190,'IBM Websphere',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4191,'WebSphere Application Server V4.0',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4192,'Websphere Software',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4193,'IBM WebSphere Information Integration',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4194,'WebSphere Information Integration',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4195,'WebSphere Portal Server',8,286,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4196,'WebSphere Process Server',8,287,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4197,'Integrity NonStop',4,293,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4198,'HP Integrity NonStop',4,293,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4199,'HPE NonStop',4,293,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4200,'Nonstop kernel',4,293,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4201,'NonStop Kernel',4,293,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4202,'NonStop OS',4,293,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4203,'IBM Power System',4,295,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4204,'Lpar2rrd',4,295,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4205,'Power Systems',4,295,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4206,'L5335',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4207,'Xeon E5-26xx',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4208,'Dunnington (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4209,'Cascades (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4210,'Scalable Memory Interconnect',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4211,'X7460',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4212,'Xeon E3-12xx',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4213,'Xeonx',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4214,'Woodcrest (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4215,'Pentium II Xeon',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4216,'Tigerton (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4217,'Jasper Forest (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4218,'XEON',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4219,'Xeon E7-48xx v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4220,'Clovertown (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4221,'Xeon E5',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4222,'Westmere-EX',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4223,'Drake (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4224,'X5650',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4225,'Xeon E3 v2',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4226,'Wolfdale-DP (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4227,'Quad-Core Intel Xeon',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4228,'Tanner (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4229,'Scalable memory interconnect',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4230,'Intel Xeon CPU',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4231,'Quad-Core Xeon',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4232,'Intel Xeon E5',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4233,'Xeon E3 v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4234,'Dempsey (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4235,'Xeon Silver',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4236,'Xeon E7-88xx v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4237,'Harpertown (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4238,'Xeon E5 v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4239,'Intel SMI',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4240,'Gainestown (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4241,'Xeon MP',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4242,'Dual-Core Xeon',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4243,'Xeon E5-26xx v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4244,'Intel Xeon Gold',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4245,'Nancona',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4246,'Haswell-EP',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4247,'Intel Xeon Platinum',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4248,'Sossaman (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4249,'Xeon E3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4250,'Xeon E7 v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4251,'Xeon E7 v2',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4252,'Intel Woodcrest',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4253,'E5310',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4254,'Intel Xeon Bronze',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4255,'Xeon E5 v2',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4256,'Pentium III Xeon',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4257,'Nehalem-ex',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4258,'Xeon E5-16xx',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4259,'Intel Xeon Silver',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4260,'Beckton (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4261,'Xeon E5-16xx v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4262,'Xeon Bronze',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4263,'Sossaman',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4264,'Xeon E3-12xx v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4265,'Intel Xeon',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4266,'Xeon Platinum',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4267,'Net Optics Taps',4,297,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4268,'Oracle Database Machine',4,298,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4269,'Exadata',4,298,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4270,'Autoit',9,299,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4271,'Autoit script',9,299,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4272,'AutoIt3',9,299,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4273,'AI3',9,299,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4274,'Awk',9,300,'also_known_as'); -INSERT INTO entity_mentions VALUES(4275,'Nawk',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4276,'GNU Awk',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4277,'GAWK',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4278,'GNU awk',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4279,'One true AWK',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4280,'AWK (programming language)',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4281,'AWK programming language',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4282,'Awk (language)',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4283,'Tawk',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4284,'One True AWK',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4285,'Gawk (GNU package)',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4286,'Awk language',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4287,'One true awk',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4288,'Awk programming language',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4289,'BASAIC programming language',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4290,'Beginner All-Purpose Symbolic',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4291,'Beginner''s All Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4292,'Beginners All Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4293,'Beginner All Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4294,'Beginner''s All-Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4295,'Basic programming language',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4296,'Beginners'' All-Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4297,'Beginners'' All-Purpose Symbolic',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4298,'Basic (programming language)',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4299,'Basic (language)',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4300,'Basic computer language',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4301,'Unstructured BASIC',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4302,'B.A.S.I.C.',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4303,'ECMA-55',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4304,'Beginner All-Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4305,'Compiled BASIC',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4306,'Structured BASIC',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4307,'Beginners All-Purpose Symbolic',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4308,'Beginner''s All-Purpose Symbolic',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4309,'ROM BASIC programming language',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4310,'Beginners All-Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4311,'BASIC language',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4312,'BASIC (programming language)',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4313,'Beginners All-purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4314,'Basic (computer language)',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4315,'Beginners'' All Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4316,'ANSI BASIC',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4317,'BASIC programming language',9,301,'also_known_as'); -INSERT INTO entity_mentions VALUES(4318,'Beginner''s All-purpose Symbolic Instruction Code',9,301,'also_known_as'); -INSERT INTO entity_mentions VALUES(4319,'C prog',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4320,'C programming Language',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4321,'C-programming',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4322,'C programming language/Evolution',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4323,'C (computer language)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4324,'C (programming langage)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4325,'C lang',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4326,'C (lang)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4327,'C programing language',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4328,'C (programming)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4329,'C78 (C version)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4330,'C programming',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4331,'C Language',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4332,'C language',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4333,'C Programming',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4334,'C program',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4335,'C programming language/K and R C',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4336,'C (language)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4337,'32/16 bit C programming',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4338,'C (software)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4339,'C(programming language)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4340,'C (Programming Language)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4341,'Programming language C',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4342,'Computer language C',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4343,'C programming language',9,303,'also_known_as'); -INSERT INTO entity_mentions VALUES(4344,'C# (programming language)',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4345,'C++++',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4346,'Visual C Sharp .Net',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4347,'Visual C Sharp Express Edition',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4348,'C♯ (programming language)',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4349,'Microsoft Visual C ♯',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4350,'C Sharp language',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4351,'C# programming language',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4352,'ISO/IEC 23270',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4353,'C Sharp Programming Language',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4354,'Microsoft Visual C Sharp',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4355,'C-sharp programming language',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4356,'C ♯ (programming language)',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4357,'C hash',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4358,'C♯ (language)',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4359,'C sharp (computing)',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4360,'CS (programming language)',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4361,'C sharp (language)',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4362,'C Sharp (language)',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4363,'ECMA-334',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4364,'C-hash',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4365,'C sharp 6.0',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4366,'C♯ programming language',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4367,'Visual C Sharp',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4368,'C Sharp 5.0',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4369,'C-Hash',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4370,'C sharp programming language',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4371,'ISO 23270',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4372,'C Sharp Programming language',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4373,'C Sharp (computing)',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4374,'C # (programming language)',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4375,'C sharp (programming language)',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4376,'C hashtag',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4377,'C Pound',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4378,'C Sharp programming language',9,304,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4379,'C plus plus',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4380,'C++ 1.0',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4381,'C plus plus programming language',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4382,'ISO/IEC 14882:2003',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4383,'C++ standard',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4384,'Standard C++ Foundation',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4385,'ISO/IEC 14882',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4386,'Sepples',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4387,'Cee plus plus',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4388,'C++ program',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4389,'C++ (Programming Language)',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4390,'C+++',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4391,'C++ syntax',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4392,'ANSI C++',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4393,'ISO C++',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4394,'C++ (programming language)',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4395,'C++ 2.0',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4396,'C++ language',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4397,'Cee Plus Plus',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4398,'C Plus Plus programming language',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4399,'Core language',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4400,'ISO C++ programming language',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4401,'Cplusplus',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4402,'C++ programming language',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4403,'C++98',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4404,'ISO/IEC 14882:2014',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4405,'++C',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4406,'CPlusPlus',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4407,'ISO/IEC 14882:2015',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4408,'C-plus-plus programming language',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4409,'C-plus-plus',9,305,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4410,'C Plus Plus',9,305,'also_known_as'); -INSERT INTO entity_mentions VALUES(4411,'Microsoft C',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4412,'Visual C++ .NET 2003',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4413,'Embedded Visual C++',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4414,'Visual C++ 2002',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4415,'Visual C++ 5.0',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4416,'Visual C++ 2010',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4417,'Visual C++ .NET 2002',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4418,'Visual C++ 2003',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4419,'Vc++',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4420,'MSVC90',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4421,'Visual C++',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4422,'MSVC 2005',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4423,'Embedded visual c plus plus',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4424,'Visual C++ 6.0',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4425,'Visual C++ 2.0',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4426,'Visual C++ 2008',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4427,'Visual C plus plus',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4428,'Visual C Plus Plus',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4429,'MSVC80',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4430,'Visual C++ 4.0',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4431,'Visual C++ 2012',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4432,'Visual C++ 4.2',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4433,'VisualC++',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4434,'MSVC110',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4435,'VC++',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4436,'MSVC120',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4437,'Microsoft C compiler',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4438,'MSVC 2010',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4439,'Microsoft Visual C plus plus',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4440,'MSVC100',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4441,'MSVC71',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4442,'Vc9',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4443,'MSVC 2013',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4444,'Visual C++ 1.0',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4445,'MSVC 2003',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4446,'Msvc',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4447,'Visual C++ 2013',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4448,'Microsoft Visual C Plus Plus',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4449,'Visual C++ 2005',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4450,'MSVC 2002',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4451,'MSVC 2008',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4452,'MSVC 2012',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4453,'Visual c',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4454,'MS Visual C++',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4455,'Vc6',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4456,'MSVC',9,306,'also_known_as'); -INSERT INTO entity_mentions VALUES(4457,'CSS 3',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4458,'Cascading Style Sheets',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4459,'Cascading Stylesheets',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4460,'Css1',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4461,'Cascading Style Sheet',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4462,'CSS stylesheet',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4463,'CSS selector',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4464,'CSS (internet)',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4465,'Cascading style sheets',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4466,'CSS1',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4467,'Css 2.1',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4468,'Aural Cascading Style Sheets',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4469,'Css3',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4470,'CSS 2',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4471,'CSS2',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4472,'CSs',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4473,'CSS 1.0',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4474,'Text/css',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4475,'Css 2.0',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4476,'CSS4',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4477,'Cascading Style Sheets - CSS',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4478,'Css 3',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4479,'Css',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4480,'Cascading style sheet',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4481,'CSS 4',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4482,'XML/XSL skin',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4483,'CSS styles',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4484,'CSS style sheets',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4485,'Cascading Style Sheets 4',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4486,'CSS styling',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4487,'CSS 3.0',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4488,'CSS style',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4489,'CSS2.1',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4490,'Cascading stylesheets',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4491,'Css2',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4492,'CSS3',9,307,'also_known_as'); -INSERT INTO entity_mentions VALUES(4493,'Clipper programming language',9,308,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4494,'CA clipper',9,308,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4495,'Clipper prog',9,308,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4496,'CA-Clipper',9,308,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4497,'Clist',9,309,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4498,'CoBoL',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4499,'COBOL-85',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4500,'COBOL 20XX',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4501,'COBOL 85',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4502,'ISO/IEC 1989',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4503,'MF-COBOL',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4504,'O-O COBOL',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4505,'COBOL programming language',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4506,'COBOL-74',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4507,'COBOL 60',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4508,'ISO 1989',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4509,'COBOL 74',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4510,'COBOL74',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4511,'COBOL-68',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4512,'OO COBOL',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4513,'COBOL language',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4514,'COBOL 1985',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4515,'Common Ordinary Business-Oriented Language',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4516,'COBOL 1968',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4517,'COBOL 2014',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4518,'Object-oriented COBOL',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4519,'Common Business Oriented Language',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4520,'COBOL (programming language)',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4521,'X3J4',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4522,'COBOL68',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4523,'COBOL 1974',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4524,'COBOL85',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4525,'OO-COBOL',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4526,'COBOL-60',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4527,'COmmon Business-Oriented Language',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4528,'COBOL 1960',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4529,'COBOL 2002',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4530,'RM/COBOL',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4531,'COBOL 68',9,310,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4532,'Common Business-Oriented Language',9,310,'also_known_as'); -INSERT INTO entity_mentions VALUES(4533,'Cobol',9,310,'also_known_as'); -INSERT INTO entity_mentions VALUES(4534,'CFML',9,311,'also_known_as'); -INSERT INTO entity_mentions VALUES(4535,'Cfml',9,311,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4536,'Data Language/1',9,312,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4537,'IBM Data Language One (DL/1)',9,312,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4538,'DL/I',9,312,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4539,'DL/1',9,312,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4540,'Borland Delphi 2006',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4541,'Delphi rad',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4542,'Delphi 2006',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4543,'Delphi XE2',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4544,'RAD Studio',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4545,'Embarcadero RAD Studio',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4546,'Delphi 2009',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4547,'Delphi XE',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4548,'CodeGear Delphi',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4549,'Delphi (IDE)',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4550,'Delphi XE4',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4551,'Delphi XE3',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4552,'Borland Delphi',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4553,'Delphi code',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4554,'Delphi 4',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4555,'Embarcadero Delphi',9,313,'also_known_as'); -INSERT INTO entity_mentions VALUES(4556,'Easytrieve',9,314,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4557,'Expect',9,315,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4558,'Xhtml11',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4559,'Xhtml strict',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4560,'XHTML 1.0',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4561,'XHTML 1.1',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4562,'Xhtml',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4563,'Xht',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4564,'Xhtml 2',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4565,'EXtensible HyperText Markup Language',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4566,'XHTML2',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4567,'X(HTML)',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4568,'XHTML 2.0',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4569,'Extensible HyperText Markup Language',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4570,'XHTML 2',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4571,'Extensible Hypertext Markup Language',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4572,'EXtensible Hypertext Markup Language',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4573,'(X)HTML',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4574,'XML feed',9,317,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4575,'XML feeds',9,317,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4576,'Well-formed XML',9,317,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4577,'Extended markup language',9,317,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4578,'EXtensible Markup Language',9,317,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4579,'Xml:lang',9,317,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4580,'Xml parser',9,317,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4581,'XML tag set',9,317,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4582,'Web3S',9,317,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4583,'Extensible markup language',9,317,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4584,'Xml',9,317,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4585,'Extended Markup Language',9,317,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4586,'Dynamic XML',9,317,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4587,'XML parser',9,317,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4588,'Text/xml',9,317,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4589,'Extensible Markup Language',9,317,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4590,'Valid XML document',9,317,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4591,'MS XML',9,318,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4592,'Microsoft XML Core Services',9,318,'also_known_as'); -INSERT INTO entity_mentions VALUES(4593,'Xsl',9,319,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4594,'Extensible stylesheet language',9,319,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4595,'EXtensible Stylesheet Language',9,319,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4596,'XSL stylesheet',9,319,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4597,'XSL stylesheets',9,319,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4598,'Extensible Stylesheet Language',9,319,'also_known_as'); -INSERT INTO entity_mentions VALUES(4599,'XML template engine',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4600,'XSL Transformation',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4601,'XSLT 2.0',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4602,'Xslt',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4603,'XSLT processor',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4604,'XLST',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4605,'XML template processor',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4606,'XSL-T',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4607,'XSL Transformations',9,320,'also_known_as'); -INSERT INTO entity_mentions VALUES(4608,'Extensible Stylesheet Language Transformations',9,320,'also_known_as'); -INSERT INTO entity_mentions VALUES(4609,'Focus (software)',9,321,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4610,'Focus software',9,321,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4611,'FORTRAN',9,322,'also_known_as'); -INSERT INTO entity_mentions VALUES(4612,'Formula Translation',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4613,'Fortran 77',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4614,'FORTRAN II',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4615,'Formula Translator',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4616,'FORTRAN 66',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4617,'FORTRAN programming language',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4618,'Fortran (programming language)',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4619,'Fortran 2018',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4620,'Fortran IV',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4621,'Fortran 2008',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4622,'Format (Fortran 66)',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4623,'Fortran 66',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4624,'Fortran programming language',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4625,'FORTRAN77',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4626,'ECMA-9',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4627,'Fortran language',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4628,'FORTRAN IV',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4629,'Fortran 95',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4630,'F77',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4631,'Fortran 2003',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4632,'FORTRAN 77',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4633,'Visual Fortran',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4634,'Fortran 90',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4635,'FORTRAN (programming language)',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4636,'FORTRAN 86',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4637,'Formula translation',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4638,'F2003',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4639,'Fort77',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4640,'Fortran 5 (programming language)',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4641,'F95',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4642,'Fortran 8X',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4643,'Fortran 2015',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4644,'Fortran-66',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4645,'FORTRAN I',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4646,'Go (Programming language)',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4647,'Gccgo',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4648,'Go Programming Language',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4649,'Google go',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4650,'Go language',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4651,'Golang',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4652,'Go google',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4653,'Go (language)',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4654,'GoLang',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4655,'Go lang',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4656,'Go programming language',9,323,'also_known_as'); -INSERT INTO entity_mentions VALUES(4657,'Google Go',9,323,'also_known_as'); -INSERT INTO entity_mentions VALUES(4658,'Graphql',9,324,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4659,'Groovy',9,325,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4660,'Dynamic Hypertext Markup Language',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4661,'HTML file',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4662,'Hypertext markup language',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4663,'HTML4',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4664,'Basic HTML',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4665,'HTM file',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4666,'HTML 4.01',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4667,'ISO/IEC HTML',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4668,'Hyper text Markup Language',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4669,'Hypertext Markup Language (HTML)',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4670,'Hyper Text Markup Language',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4671,'HTML2',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4672,'HTML 4',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4673,'HTML 3.2',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4674,'HTML+',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4675,'HLMT',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4676,'ISO/IEC 15445',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4677,'Hyper text markup language',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4678,'Html comment',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4679,'HTML code',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4680,'HTML strict',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4681,'HyperText Markup Language',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4682,'HTML 4.0',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4683,'Html',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4684,'Html language',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4685,'Html code',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4686,'HTML File Format',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4687,'HTML syntax',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4688,'HTML 3',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4689,'HMTL',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4690,'Text/html',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4691,'Html coding',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4692,'HTML 2',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4693,'HTML3',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4694,'Html 4.01',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4695,'Hypertext Markup Language',9,327,'also_known_as'); -INSERT INTO entity_mentions VALUES(4696,'HLASM',9,328,'also_known_as'); -INSERT INTO entity_mentions VALUES(4697,'IBM High-Level Assembler',9,328,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4698,'IBM High Level Assembler (HLASM)',9,328,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4699,'AS/400 Control Language',9,329,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4700,'CL Programming',9,329,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4701,'Control Language Programming',9,329,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4702,'CL (OS/400 command interpreter)',9,329,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4703,'AS/400 Command Language',9,329,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4704,'IBM i Control Language',9,329,'also_known_as'); -INSERT INTO entity_mentions VALUES(4705,'Informix 4GL/SQL',9,330,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4706,'Informix-4GL',9,330,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4707,'Java programming language',9,331,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4708,'Javax',9,331,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4709,'Java (software)',9,331,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4710,'Java (Programming language)',9,331,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4711,'Javalang',9,331,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4712,'Java Programming',9,331,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4713,'JPD (file format)',9,331,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4714,'Java (programming)',9,331,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4715,'Java (langage)',9,331,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4716,'Java language',9,331,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4717,'Java technology',9,331,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4718,'Flow Java',9,331,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4719,'Java (language)',9,331,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4720,'Java programming',9,331,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4721,'Java (Programming Language)',9,331,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4722,'Java prog',9,331,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4723,'Java code',9,331,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4724,'Java computer language',9,331,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4725,'Java Programing Languge',9,331,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4726,'Xsl',9,332,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4727,'Extensible stylesheet language',9,332,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4728,'EXtensible Stylesheet Language',9,332,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4729,'XSL stylesheet',9,332,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4730,'XSL stylesheets',9,332,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4731,'Extensible Stylesheet Language',9,332,'also_known_as'); -INSERT INTO entity_mentions VALUES(4732,'JavaEE',9,333,'also_known_as'); -INSERT INTO entity_mentions VALUES(4733,'Java EE',9,333,'also_known_as'); -INSERT INTO entity_mentions VALUES(4734,'J2EE',9,333,'also_known_as'); -INSERT INTO entity_mentions VALUES(4735,'Enterprise Java',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4736,'Java enterprise',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4737,'JSR 313',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4738,'Java EE 5',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4739,'Java Platform',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4740,'Java Enterprise Edition',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4741,'Java Enterprise Platform',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4742,'JSR 58',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4743,'Java 2 Platform',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4744,'Java ee',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4745,'J2EE 1.4',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4746,'Jakarta Enterprise Edition',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4747,'J2EE 1.3',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4748,'Java 2 Enterprise Edition',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4749,'J2EE 1.2',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4750,'JSR 151',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4751,'JSR 244',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4752,'J2ee',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4753,'J2SE',9,334,'also_known_as'); -INSERT INTO entity_mentions VALUES(4754,'Java 2 Platform Standard Edition',9,334,'also_known_as'); -INSERT INTO entity_mentions VALUES(4755,'Java SE',9,334,'also_known_as'); -INSERT INTO entity_mentions VALUES(4756,'JSR 59',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4757,'Javase',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4758,'J2se',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4759,'Java 2 Platform',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4760,'Java 2 Standard Edition',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4761,'Java Standard Edition',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4762,'JavaSE',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4763,'Java se',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4764,'JSR 270',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4765,'Java SE platform',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4766,'JSR 176',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4767,'JSR 152',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4768,'JSP compiler',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4769,'JSP container',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4770,'Jave Page',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4771,'Jakarta Server Pages compiler',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4772,'Jave Server',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4773,'Java server pages',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4774,'Javaserver pages',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4775,'Jsp2',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4776,'JSP files',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4777,'Java Server Page',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4778,'Java Server Pages',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4779,'JSP engine',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4780,'JSPF',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4781,'JSR 245',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4782,'JavaServer Pages compiler',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4783,'JavaServer Page',9,335,'also_known_as'); -INSERT INTO entity_mentions VALUES(4784,'JavaServer Pages',9,335,'also_known_as'); -INSERT INTO entity_mentions VALUES(4785,'Scriptlets',9,336,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4786,'JavaScripts',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4787,'Live-script',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4788,'JavaScript programming language',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4789,'Mocha (programming language)',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4790,'JavaScript rollover',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4791,'Live-Script',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4792,'Javascript Console',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4793,'Server side javascript',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4794,'Live script',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4795,'Javascript programming language',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4796,'JavaScript Forums',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4797,'JavaScript 1.6',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4798,'Javascript',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4799,'JavaScript language',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4800,'Escript',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4801,'JavaScript (programming language)',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4802,'Client-side JavaScript',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4803,'Javascript (programming language)',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4804,'Vanilla JS',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4805,'SSJS',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4806,'Javascript 1.7',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4807,'Java script',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4808,'Java Script',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4809,'JavaScript 1.7',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4810,'DOM scripting',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4811,'Vanilla JavaScript',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4812,'Live Script',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4813,'CSJS',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4814,'Server-side JavaScript',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4815,'Server-Side JavaScript',9,337,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4816,'IBM JCL',9,338,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4817,'Job Control Statements',9,338,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4818,'Job management language',9,338,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4819,'Job entry control language',9,338,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4820,'JECL',9,338,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4821,'Job control language',9,338,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4822,'Jscript',9,340,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4823,'Microsoft JScript',9,340,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4824,'JS script',9,340,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4825,'ActiveXObject',9,340,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4826,'Managed JScript',9,340,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4827,'Lisp computer language',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4828,'Lisp language',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4829,'Lisp atom',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4830,'LISP (programming language)',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4831,'LISP atom',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4832,'Lisp (programming)',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4833,'List Processing',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4834,'Lisp (language)',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4835,'MuLISP',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4836,'LISP',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4837,'LISP language',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4838,'Lisp 1.5',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4839,'LISP programming language',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4840,'Lisp programming language',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4841,'LISP 1.5',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4842,'Lithp (programming language)',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4843,'Lisp renaissance',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4844,'LISP (programming)',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4845,'NPL (Programming language)',9,342,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4846,'NPL programming language',9,342,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4847,'Obj-C',9,343,'also_known_as'); -INSERT INTO entity_mentions VALUES(4848,'ObjC',9,343,'also_known_as'); -INSERT INTO entity_mentions VALUES(4849,'Objc',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4850,'Objective-C 2.0',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4851,'Objective C++',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4852,'Objective-C++',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4853,'Objective C',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4854,'Object C',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4855,'Objective-C (programming language)',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4856,'Obj-c',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4857,'ObjC programming language',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4858,'Objective c',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4859,'C and Smalltalk',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4860,'Objective-c',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4861,'ObjectiveC',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4862,'Obj C',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4863,'Objective-C programming language',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4864,'Obj C programming language',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4865,'Objective C programming language',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4866,'Objective C plus plus',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4867,'Obj-C programming language',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4868,'Smalltalk and C',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4869,'Object-C',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4870,'OpenEdge Advanced Business Language (ABL)',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4871,'OpenEdge Database',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4872,'OpenEdge ABL',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4873,'OpenEdge Advance Business Language (ABL)',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4874,'Progress RDBMS',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4875,'Progress DBMS',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4876,'Advanced Business Language',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4877,'Progress (software)',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4878,'Progress4GL',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4879,'Webspeed',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4880,'Progress 4GL',9,344,'also_known_as'); -INSERT INTO entity_mentions VALUES(4881,'Pascal-SC',9,345,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4882,'Pascal-P1',9,345,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4883,'Pascal (language)',9,345,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4884,'Pascal-P',9,345,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4885,'Pascal programming language',9,345,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4886,'PASCAL-XSC',9,345,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4887,'Pascal-S',9,345,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4888,'Pascal Programming Language',9,345,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4889,'PASCAL-SC',9,345,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4890,'PASCAL (Programming language)',9,345,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4891,'Pascal-P2',9,345,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4892,'Pascal-P3',9,345,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4893,'Pascal-P system',9,345,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4894,'Pascal-P System',9,345,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4895,'Pascal-F',9,345,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4896,'Pascal (command)',9,345,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4897,'ISO/IEC 10206',9,345,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4898,'Pascal-P5',9,345,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4899,'Pascal language',9,345,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4900,'Pascal-p2',9,345,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4901,'Pascal 86',9,345,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4902,'Pascal-P4',9,345,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4903,'Pascal-XSC',9,345,'also_known_as'); -INSERT INTO entity_mentions VALUES(4904,'Delphi (language)',9,346,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4905,'Delphi programming language',9,346,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4906,'Delphi (programming language)',9,346,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4907,'Object-Oriented Pascal',9,346,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4908,'Delphi language',9,346,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4909,'Delphi (Computer Language)',9,346,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4910,'Delphi programming',9,346,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4911,'Perl 7',9,347,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4912,'Perl (programming language)',9,347,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4913,'Practical Extraction and Report Language',9,347,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4914,'Perl interpreter',9,347,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4915,'Vanilla Perl',9,347,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4916,'Practical Extraction And Report Language',9,347,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4917,'Ponie',9,347,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4918,'Embedded Perl',9,347,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4919,'Perl language',9,347,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4920,'X-perl',9,347,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4921,'Perl programming language',9,347,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4922,'Swiss army chainsaw',9,347,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4923,'IndigoPerl',9,347,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4924,'Perl code',9,347,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4925,'Swiss-army chainsaw',9,347,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4926,'Perl5',9,347,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4927,'PONIE',9,347,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4928,'PERL',9,347,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4929,'Perl 5',9,347,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4930,'Perl programming',9,347,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4931,'Perl (language)',9,347,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4932,'PerlScript',9,348,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4933,'Active Perl',9,348,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4934,'Activeperl',9,348,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4935,'Perlscript',9,348,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4936,'Perl 7',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4937,'Perl (programming language)',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4938,'Practical Extraction and Report Language',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4939,'Perl interpreter',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4940,'Vanilla Perl',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4941,'Practical Extraction And Report Language',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4942,'Ponie',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4943,'Embedded Perl',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4944,'Perl language',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4945,'X-perl',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4946,'Perl programming language',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4947,'Perl Golf',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4948,'Swiss army chainsaw',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4949,'IndigoPerl',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4950,'Perl code',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4951,'Swiss-army chainsaw',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4952,'Perl5',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4953,'PONIE',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4954,'PERL',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4955,'Perl 5',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4956,'Perl programming',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4957,'Perl (language)',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4958,'Php language',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4959,'Php (programming language)',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4960,'Zend Engine 3',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4961,'Php 5.3',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4962,'PHP interpreter',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4963,'PHP (programming language)',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4964,'Php 4',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4965,'PHP 5',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4966,'PHPNG',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4967,'PHP8',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4968,'PHP Next Generation',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4969,'PHP5-FPM',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4970,'PHP5',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4971,'PHP4',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4972,'Php 5.4',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4973,'Php 5.1',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4974,'PHP-FPM',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4975,'Php',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4976,'PHTML',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4977,'PHP/FI',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4978,'Php-fpm',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4979,'Php6',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4980,'PHP 6',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4981,'Php 5.0',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4982,'PHP3',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4983,'Php 6.0',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4984,'Zephir (programming language)',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4985,'Php1',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4986,'PHP:Hypertext Preprocessor',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4987,'Php 3',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4988,'PHP7',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4989,'PHP programming',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4990,'Phtml',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4991,'Php 5.2',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4992,'Php5',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4993,'Php2',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4994,'Phpng',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4995,'PHP Hypertext Preprocessor (programming language)',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4996,'PHP next generation',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4997,'Php3',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4998,'PHP6',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4999,'PHP programing language',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5000,'PHP 7',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5001,'Php 1',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5002,'Php 2',9,350,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5003,'Hypertext Preprocessor',9,350,'also_known_as'); -INSERT INTO entity_mentions VALUES(5004,'PHP programming language',9,350,'also_known_as'); -INSERT INTO entity_mentions VALUES(5005,'PHP: Hypertext Preprocessor',9,350,'also_known_as'); -INSERT INTO entity_mentions VALUES(5006,'PHP Hypertext Preprocessor',9,350,'also_known_as'); -INSERT INTO entity_mentions VALUES(5007,'SL/1',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5008,'PL/1',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5009,'Pl/1',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5010,'PL1 language',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5011,'PL/I programming language',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5012,'Visual PL/1',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5013,'DEC PL/I',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5014,'PL/I-80',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5015,'PL/MP',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5016,'Raincode PL/1',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5017,'PL/I-86',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5018,'PLI programming language',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5019,'PL/I (programming language)',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5020,'PL1 programming language',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5021,'PL/MI',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5022,'PLI-86',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5023,'VAX PL/I',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5024,'PL/Ⅰ',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5025,'RainCode PL/1',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5026,'PL/1 programming language',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5027,'StepSqlite',9,352,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5028,'PLSQL',9,352,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5029,'P/SQL',9,352,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5030,'PL SQL',9,352,'also_known_as'); -INSERT INTO entity_mentions VALUES(5031,'Pro*C++',9,353,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5032,'Pro C',9,353,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5033,'Pro*C/C++',9,353,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5034,'Python scripting language',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5035,'Python program',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5036,'PythonLanguage',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5037,'Python computer language',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5038,'Python code',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5039,'Python3',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5040,'Python (computing)',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5041,'Python programming language',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5042,'Python programming',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5043,'Pythonistas',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5044,'PEP8',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5045,'Pyston',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5046,'Python language',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5047,'Python (lang)',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5048,'Python2',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5049,'Python3000',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5050,'Python 3k',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5051,'Python (language)',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5052,'Coconut (programming language)',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5053,'Python (software)',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5054,'Pythonlang',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5055,'Python prog',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5056,'Python Programming',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5057,'Python Programming Language',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5058,'Python (scripting language)',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5059,'Pythonista',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5060,'Python (programming)',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5061,'Python (Programming Language)',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5062,'Python (computer language)',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5063,'Python 3K',9,354,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5064,'R project',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5065,'R (programming)',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5066,'R Shiny',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5067,'GNU-S',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5068,'RStat',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5069,'R programming language',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5070,'R Statistics',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5071,'R-stat',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5072,'R lang',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5073,'RPro',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5074,'R code',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5075,'R-Project',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5076,'R (computer language)',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5077,'R Project',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5078,'R programming',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5079,'R (program)',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5080,'R-project',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5081,'R (software)',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5082,'R-Stat',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5083,'Rstat',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5084,'RGL (software package)',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5085,'R (language)',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5086,'Rlang',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5087,'ParallelR',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5088,'R Open',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5089,'GNU R',9,355,'also_known_as'); -INSERT INTO entity_mentions VALUES(5090,'GNU S',9,355,'also_known_as'); -INSERT INTO entity_mentions VALUES(5091,'R language',9,355,'also_known_as'); -INSERT INTO entity_mentions VALUES(5092,'Quercus Personal REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5093,'Personal Rexx',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5094,'Personal REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5095,'REstructured eXtended eXecutor',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5096,'Enterprise REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5097,'Rexx programming language',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5098,'IBM REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5099,'Restructured Extended Executor',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5100,'REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5101,'Kilowatt Portable REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5102,'Pmrexx',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5103,'Enterprise Alternatives REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5104,'Kilowatt Portable Rexx',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5105,'Restructured extended executor',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5106,'Quercus Personal Rexx',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5107,'REXX (programming language)',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5108,'Portable REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5109,'Portable Rexx',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5110,'REXX programming language',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5111,'Report Program Generator',9,357,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5112,'Report program generator',9,357,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5113,'RPGLE',9,357,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5114,'RPG (programming language)',9,357,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5115,'IBM RPG (programming language)',9,357,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5116,'RPG IV',9,357,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5117,'RPG programming language',9,357,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5118,'Ruby (Programming Language)',9,358,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5119,'Ruby Programming Language',9,358,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5120,'Ruby programming',9,358,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5121,'Ruby Enterprise Edition',9,358,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5122,'Ruby language',9,358,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5123,'Ruby (language)',9,358,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5124,'Ruby (programming language',9,358,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5125,'Ruby (lang)',9,358,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5126,'Ruby lang',9,358,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5127,'Ruby-gnome2',9,358,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5128,'Ruby-language',9,358,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5129,'Ruby (computing)',9,358,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5130,'Ruby programming language',9,358,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5131,'Rubylang',9,358,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5132,'Ruby prog',9,358,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5133,'SAS (Software)',9,360,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5134,'SAS System',9,360,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5135,'SAS (programming language)',9,360,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5136,'SAS/STAT',9,360,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5137,'Interactive Matrix Language',9,360,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5138,'Statistical Analysis System',9,360,'also_known_as'); -INSERT INTO entity_mentions VALUES(5139,'Scss',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5140,'Sass CSS',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5141,'Sass (CSS)',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5142,'Sass (Stylesheet Language)',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5143,'Sass (markup language)',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5144,'SASS (language)',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5145,'Sass (software)',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5146,'Libsass',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5147,'Scala programming language',9,362,'also_known_as'); -INSERT INTO entity_mentions VALUES(5148,'Scala language',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5149,'Scala.js (programming language)',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5150,'ScalaNative',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5151,'ScalaNative (programming language)',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5152,'Scala-JS (Programming Language)',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5153,'Scala-JS',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5154,'Scala Native',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5155,'ScalaJS (Programming Language)',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5156,'Scala (programming language',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5157,'ScalaJs (programming language)',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5158,'Scala.js',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5159,'Scala Native (programming language)',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5160,'Smalltalk (programming language)',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5161,'Smalltalk programming language',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5162,'Smalltak',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5163,'Smalltalk-80',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5164,'Smalltalk Programming Language',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5165,'Smalltalk-72',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5166,'SmallTalk',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5167,'Smalltalk/V',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5168,'Visual Smalltalk',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5169,'Smalltalk 80',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5170,'SmallTalk programming language',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5171,'Swift (Apple programming language)',9,364,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5172,'Swift programming language',9,364,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5173,'Swift language',9,364,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5174,'Apple Swift',9,364,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5175,'SwiftNIO',9,364,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5176,'Swiftlang',9,364,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5177,'Tool Command Language',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5178,'Safe-Tcl',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5179,'Tcl (computer language)',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5180,'Object-oriented programming in Tcl',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5181,'Tcl (programming language)',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5182,'Tcl programming language',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5183,'Tcl/tk',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5184,'TclTk',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5185,'Tsql',9,366,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5186,'Transact SQL',9,366,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5187,'TSQL',9,366,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5188,'T-sql',9,366,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5189,'T-SQL',9,366,'also_known_as'); -INSERT INTO entity_mentions VALUES(5190,'Microsoft TypeScript',9,367,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5191,'VB.NET',9,368,'also_known_as'); -INSERT INTO entity_mentions VALUES(5192,'Microsoft Visual Basic.NET',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5193,'VB.Net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5194,'VB.net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5195,'Microsoft Visual Basic 2008 Express',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5196,'VB 2005',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5197,'VBx',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5198,'Vb dot net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5199,'Visual Basic 2005',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5200,'Visual Basic .Net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5201,'Visual BASIC .net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5202,'Visual Basic.NET',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5203,'Vb.net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5204,'Visual Basic (.NET Version)',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5205,'Visual Basic .NET 2003',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5206,'VB .NET',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5207,'Visual basic .net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5208,'Visual Basic.net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5209,'Visual Basic.Net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5210,'Microsoft Visual Basic .NET',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5211,'Visual Basic .net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5212,'Vbscript',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5213,'VB Script',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5214,'VBS Script',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5215,'VBScript (programming language)',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5216,'VBSCRIPT',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5217,'VB script',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5218,'Visual Basic Scripting',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5219,'VBscript',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5220,'Visual Basic Script Edition',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5221,'Visual Basic Scripting Edition',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5222,'VBSScript',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5223,'Visual Basic Script',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5224,'VbScript',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5225,'VBScript programming language',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5226,'Visual Basic 6',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5227,'Visual basic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5228,'Microsoft Visual Basic 5.0',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5229,'Visual basic 6',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5230,'Microsoft Visual Basic 6.0',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5231,'Vbasic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5232,'Microsoft Visual Basic 6',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5233,'Visual Basic 6.0',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5234,'VB4',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5235,'VB6',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5236,'Classic Visual Basic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5237,'Microsoft Visual Basic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5238,'Hummingbird Basic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5239,'MSVB',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5240,'VBP',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5241,'VB3',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5242,'Visual Basic 6 Portable',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5243,'Visual Basic programming language',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5244,'Microsoft Visual BASIC',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5245,'VBLang',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5246,'Visual Basic Control',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5247,'VisualBasic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5248,'VBDOS 1.0',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5249,'Virtual Basic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5250,'Visual BASIC',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5251,'Visual Basic Classic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5252,'Visual Basic 5',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5253,'Microsoft visual basic for applications',9,371,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5254,'Visual Basic for Applications programming language',9,371,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5255,'Visual basic for applications',9,371,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5256,'Visual Foxpro',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5257,'Visual Fox pro',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5258,'Microsoft Visual FoxPro',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5259,'Microsoft Visual Fox pro',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5260,'Microsoft Visual Foxpro',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5261,'Visual FoxPro programming language',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5262,'Visual Fox Pro',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5263,'Microsoft Visual Fox Pro',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5264,'VXML',9,373,'also_known_as'); -INSERT INTO entity_mentions VALUES(5265,'Voice XML',9,373,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5266,'Voicexml',9,373,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5267,'Xbase++',9,374,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5268,'XBase plus plus',9,374,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5269,'Clucene',12,375,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5270,'KinoSearch',12,375,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5271,'Kinosearch',12,375,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5272,'Solr/Lucene',12,375,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5273,'Lucene',12,375,'also_known_as'); -INSERT INTO entity_mentions VALUES(5274,'Apache Xerces',12,376,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5275,'Bootstarpping',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5276,'Boot strap',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5277,'Bootstrapped',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5278,'Bootstrap support',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5279,'Bootstrapping (computing)',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5280,'Bootstrapper',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5281,'Boot-strap',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5282,'Bootstrap (word origin)',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5283,'Java|Apache Camel',12,378,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5284,'Java|Apache Commons BeanUtils',12,379,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5285,'PDFBox',12,380,'also_known_as'); -INSERT INTO entity_mentions VALUES(5286,'Velocity apache',12,381,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5287,'Velocity (software)',12,381,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5288,'Jakarta Velocity',12,381,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5289,'Java|EclipseLink',12,382,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5290,'Enterprise JavaBeans',12,383,'also_known_as'); -INSERT INTO entity_mentions VALUES(5291,'EJB',12,383,'also_known_as'); -INSERT INTO entity_mentions VALUES(5292,'Enterprise Java Beans',12,383,'also_known_as'); -INSERT INTO entity_mentions VALUES(5293,'Enterprise Beans',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5294,'Enterprise beans',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5295,'Enterprise JavaBean',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5296,'Enterprise Bean',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5297,'SLSB',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5298,'Enterprise bean',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5299,'SFSB',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5300,'Jakarta Enterprise Bean',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5301,'Bean-Managed Persistence',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5302,'Enterprise Java Bean',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5303,'Java Enterprise Bean',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5304,'EJB Container',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5305,'Jakarta Enterprise beans',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5306,'Jakarta Enterprise bean',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5307,'JSR 153',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5308,'JSR 19',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5309,'EJB container',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5310,'Ejb',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5311,'JSR 220',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5312,'Container-Managed Persistence',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5313,'Message-driven EJB',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5314,'JSNI',12,385,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5315,'Hibernate Query Language',12,386,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5316,'Hibernate (Java)',12,386,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5317,'Hibernate OGM',12,386,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5318,'Hibernate (software)',12,386,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5319,'Hibernet',12,386,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5320,'Hibernate Core',12,386,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5321,'Hibernate (java)',12,386,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5322,'Java 2 SDK',12,388,'also_known_as'); -INSERT INTO entity_mentions VALUES(5323,'JDK',12,388,'also_known_as'); -INSERT INTO entity_mentions VALUES(5324,'Java SDK',12,388,'also_known_as'); -INSERT INTO entity_mentions VALUES(5325,'J2SDK',12,388,'also_known_as'); -INSERT INTO entity_mentions VALUES(5326,'Java 2 Software Development Kit',12,388,'also_known_as'); -INSERT INTO entity_mentions VALUES(5327,'JDK 1.2',12,388,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5328,'Java Development Toolkit',12,388,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5329,'Java jdk',12,388,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5330,'JSR 914',12,389,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5331,'Java messaging service',12,389,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5332,'Java Message Service',12,389,'also_known_as'); -INSERT INTO entity_mentions VALUES(5333,'JNLP',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5334,'Web Start',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5335,'Java webstart',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5336,'Java Network Launching Protocol',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5337,'JavaWS',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5338,'Webstart',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5339,'JSR 56',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5340,'Javaws',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5341,'Java web start',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5342,'Java Webstart',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5343,'JSR 127',12,391,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5344,'JSR 252',12,391,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5345,'Java Server Faces',12,391,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5346,'Javaserver faces',12,391,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5347,'JavaServer Faces (JSF)',12,391,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5348,'JavaServer Faces',12,391,'also_known_as'); -INSERT INTO entity_mentions VALUES(5349,'Jdbc',12,392,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5350,'Java Data Base Connectivity',12,392,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5351,'JDBC',12,392,'also_known_as'); -INSERT INTO entity_mentions VALUES(5352,'JRuby programming language',12,393,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5353,'JRuby language',12,393,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5354,'Jruby',12,393,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5355,'Apache Log4net',12,394,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5356,'Log4javascript',12,394,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5357,'Apache log4net',12,394,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5358,'Log4js',12,394,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5359,'Log4Net',12,394,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5360,'Log4c',12,394,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5361,'Log4J',12,394,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5362,'Quartz job scheduler',12,395,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5363,'JRMI',12,396,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5364,'Remote Method Invokation',12,396,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5365,'Java Remote Method Invocation',12,396,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5366,'Rmic',12,396,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5367,'Java RMI',12,396,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5368,'Free-source',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5369,'Free source',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5370,'Four Freedoms (software)',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5371,'Free (software)',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5372,'Software Libre',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5373,'Libre software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5374,'Free-source software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5375,'Free-libre software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5376,'Four Freedoms (Free software)',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5377,'Libre Software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5378,'Freedom-ware',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5379,'4 software freedoms',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5380,'Free sofware',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5381,'Free-software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5382,'FSF''s "free software" ideal',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5383,'Free and Open Source Software (FOSS) for development',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5384,'Freedomware',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5385,'Free computer software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5386,'Freed Software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5387,'Freedom software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5388,'Software libre',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5389,'Free software development',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5390,'Four Freedoms (free software)',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5391,'Spring (Java)',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5392,'Spring framework',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5393,'Spring MVC',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5394,'Spring beans',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5395,'Spring (framework)',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5396,'Spring Boot',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5397,'Java Spring',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5398,'Spring Framework (Java)',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5399,'Springframework',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5400,'Spring IOC Framework',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5401,'Spring AOP framework',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5402,'Spring AOP',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5403,'The Spring Framework',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5404,'Java|Spring|Spring Boot',12,399,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5405,'Jakarta Struts',12,402,'also_known_as'); -INSERT INTO entity_mentions VALUES(5406,'Struts Studio',12,402,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5407,'Struts Framework',12,402,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5408,'Java Struts',12,402,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5409,'Swing (java)',12,403,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5410,'Swing java',12,403,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5411,'Java Swing',12,403,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5412,'Javax.swing',12,403,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5413,'IT Mill Toolkit',12,404,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5414,'Ajax framework',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5415,'Ajax programming',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5416,'CAJAX',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5417,'Ajax scripts',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5418,'AJAX (programming)',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5419,'AJAXy',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5420,'AJAX framework',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5421,'Ajax desktops',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5422,'Asynchronous Javascript and XML',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5423,'Ajax language',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5424,'Ajax (software)',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5425,'Asynchronous JavaScript and JSON',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5426,'Asynchronous JavaScript and XML',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5427,'AJAX Framework',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5428,'AJAJ',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5429,'AJAX',12,405,'also_known_as'); -INSERT INTO entity_mentions VALUES(5430,'Angular JS',12,406,'also_known_as'); -INSERT INTO entity_mentions VALUES(5431,'Angular.js',12,406,'also_known_as'); -INSERT INTO entity_mentions VALUES(5432,'MVW framework',12,406,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5433,'Scope (AngularJS)',12,406,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5434,'Angularjs',12,406,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5435,'Expressjs',12,408,'also_known_as'); -INSERT INTO entity_mentions VALUES(5436,'Ext Core',12,409,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5437,'Extjs',12,409,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5438,'Ext (JavaScript library)',12,409,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5439,'ExtJS',12,409,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5440,'Ext (javascript library)',12,409,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5441,'CssQuery',12,411,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5442,'Jquery Library',12,411,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5443,'Jquery',12,411,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5444,'JQueryUI',12,412,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5445,'React.js',12,413,'also_known_as'); -INSERT INTO entity_mentions VALUES(5446,'ReactJS',12,413,'also_known_as'); -INSERT INTO entity_mentions VALUES(5447,'Reactjs',12,413,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5448,'Facebook React',12,413,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5449,'React (web framework)',12,413,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5450,'React JS',12,413,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5451,'React Fiber',12,413,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5452,'JavaScript|script.aculo.us',12,414,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5453,'Android operating system',6,418,'also_known_as'); -INSERT INTO entity_mentions VALUES(5454,'Android OS',6,418,'also_known_as'); -INSERT INTO entity_mentions VALUES(5455,'Google Android',6,418,'also_known_as'); -INSERT INTO entity_mentions VALUES(5456,'Android (software stack)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5457,'Android system',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5458,'Android (phone)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5459,'Android (Google)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5460,'Android phone operating system',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5461,'Google Android Linux OS',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5462,'Android (Operating System)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5463,'Android (mobile device platform)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5464,'Android Apps',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5465,'Android Phone',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5466,'Android cell phone',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5467,'Honeycomb',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5468,'Android software',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5469,'Android google',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5470,'Android 3.0 Honeycomb',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5471,'Android platform',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5472,'Android cellphone',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5473,'Android device',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5474,'Android mobile phone',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5475,'Mobile Android',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5476,'Android 3.0',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5477,'Android',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5478,'Android phone',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5479,'TaintDroid',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5480,'Google android',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5481,'Android (system)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5482,'Android Open Source Project',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5483,'Android app',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5484,'Os android',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5485,'Android (software)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5486,'Android application',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5487,'Android (os)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5488,'Android.os',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5489,'Android (OS)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5490,'Android Device Manager',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5491,'Android (platform)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5492,'Android client',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5493,'IDroid',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5494,'Android (company)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5495,'Android-powered device',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5496,'Android (mobile phone platform)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5497,'Android Operating System',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5498,'Android devices',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5499,'Google''s Android',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5500,'Android mobile',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5501,'Android fork',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5502,'Android (google)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5503,'Surfaceflinger',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5504,'Android os',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5505,'Android mobile phone platform',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5506,'Google Android One',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5507,'B.E.O.S',6,419,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5508,'Be OS',6,419,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5509,'Internetwork Operating System',6,420,'also_known_as'); -INSERT INTO entity_mentions VALUES(5510,'IOS (Cisco)',6,420,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5511,'CIOSS',6,420,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5512,'Interface Descriptor Block',6,420,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5513,'Google Dash',6,421,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5514,'ECMA Dart',6,421,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5515,'Dart (language)',6,421,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5516,'Dart programming language',6,421,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5517,'Dart language',6,421,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5518,'DartLang',6,421,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5519,'ECMA-408',6,421,'also_known_as'); -INSERT INTO entity_mentions VALUES(5520,'Google Dart',6,421,'also_known_as'); -INSERT INTO entity_mentions VALUES(5521,'Fabos',6,422,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5522,'The GNU operating system',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5523,'GNU/DOS',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5524,'GNU System',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5525,'GNU Operating System',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5526,'The GNU system',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5527,'GNU OS',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5528,'GNU system',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5529,'GNU''s Not Unix',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5530,'GNU operating system',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5531,'I5os',6,424,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5532,'IBM OS/400',6,424,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5533,'IBMi',6,424,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5534,'IBM i5/OS',6,424,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5535,'I on Power',6,424,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5536,'IBM i on Power',6,424,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5537,'OS/400',6,424,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5538,'I5/OS',6,424,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5539,'IBM I5/OS',6,424,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5540,'I-OS',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5541,'OS X iPhone',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5542,'IPhoneOS',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5543,'IPhone Operating System',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5544,'IPhone os',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5545,'Mac OS X (iPhone)',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5546,'IOS Apple',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5547,'Ipod touch os',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5548,'IPod Touch OS',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5549,'IPhone OS',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5550,'Apple iPhone OS',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5551,'OS X Mobile',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5552,'IOS (Apple Inc.)',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5553,'Multitasking (iOS)',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5554,'Apple iOS',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5555,'Iphone os',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5556,'IPhone operating system',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5557,'AppleiOS',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5558,'IOS (Apple)',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5559,'IOS (operating system)',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5560,'Ios (Apple)',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5561,'Linux (operating system)',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5562,'LINUX',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5563,'Linuces',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5564,'GNU/Linux/X11',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5565,'LinuX',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5566,'Linux-based GNU system',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5567,'Gnu/Linux',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5568,'Linux+GNU',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5569,'Linux desktop',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5570,'Lienucks',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5571,'GNU-Linux',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5572,'Linux/GNU',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5573,'Desktop GNU/Linux',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5574,'Desktop Linux',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5575,'Linux Powered System',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5576,'Linux/gnu',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5577,'Linux server',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5578,'GNU-linux',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5579,'GNU/Linux',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5580,'Linux box',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5581,'GNULinux',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5582,'Lynux',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5583,'Linux OS',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5584,'Linices',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5585,'Linux-based GNU systems',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5586,'GNU/Linux/X',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5587,'Desktop linux',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5588,'GNU–Linux',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5589,'Gnu/linux',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5590,'Linux on the desktop',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5591,'GNU+Linux',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5592,'GNU Linux',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5593,'Linux (GNU/Linux)',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5594,'Lineux',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5595,'Linux/X11',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5596,'Linix',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5597,'Linux operating system',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5598,'Linux/X',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5599,'BlackRhino GNU/Linux',6,426,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5600,'Centos',6,427,'also_known_as'); -INSERT INTO entity_mentions VALUES(5601,'CentOs',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5602,'Centos7',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5603,'Centos Stream',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5604,'CentOS Linux',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5605,'Community Enterprise Operating System',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5606,'CAOS Linux',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5607,'Cent OS',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5608,'CentOS Stream',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5609,'CheckPoint INSPECT Code',6,428,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5610,'VPN-1',6,428,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5611,'FireWall-1',6,428,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5612,'VPN-1 Power',6,428,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5613,'FireWall-1/VPN-1',6,428,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5614,'Debian Linux',6,429,'also_known_as'); -INSERT INTO entity_mentions VALUES(5615,'Debian GNU/Linux',6,429,'also_known_as'); -INSERT INTO entity_mentions VALUES(5616,'Debian Sid',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5617,'Debian GNU Hurd',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5618,'Debian Unstable',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5619,'Debian GNU/kFreeBSD',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5620,'Debian/sid',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5621,'Debian GNU/FreeBSD',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5622,'Debian Live',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5623,'Embedded Debian',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5624,'Debian Project',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5625,'Debian stable',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5626,'Kfreebsd-i386',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5627,'Debian Multimedia Project',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5628,'Debian repository',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5629,'Debian GNU',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5630,'Sid (Debian)',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5631,'Debian LTS',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5632,'GNU/Debian',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5633,'Kfreebsd-amd64',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5634,'Debian gnu/kfreebsd',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5635,'Debian OS',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5636,'Embedian',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5637,'KFreeBSD',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5638,'Debian Manifesto',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5639,'Debian Hurd',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5640,'Debian GNU/Hurd',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5641,'Debian (operating system)',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5642,'JunOS',6,430,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5643,'Juniper JUNOS',6,430,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5644,'Juniper OS',6,430,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5645,'JUNOS',6,430,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5646,'Juniper Junos',6,430,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5647,'Junos SDK',6,430,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5648,'Junos',6,430,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5649,'OpenSuSE',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5650,'SUSE Linux Professional',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5651,'OpenSUSE 11',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5652,'OpenSUSE Linux',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5653,'Factory (openSUSE)',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5654,'Factory (software)',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5655,'OpenSuSe',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5656,'Tumbleweed (software)',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5657,'OpenSUSE Tumbleweed',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5658,'Open SUSE',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5659,'OpenSuse',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5660,'Tumbleweed (operating system)',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5661,'OPENSUSE',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5662,'SUSEWatcher',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5663,'Opensuse',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5664,'Unbreakable Enterprise Kernel',6,432,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5665,'Oracle Unbreakable Enterprise Kernel',6,432,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5666,'Unbreakable Linux',6,432,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5667,'Oracle linux',6,432,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5668,'Unbreakable Linux Network',6,432,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5669,'Red Hat Compatible Kernel',6,432,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5670,'Oracle Unbreakable Linux',6,432,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5671,'Oracle Enterprise Linux',6,432,'also_known_as'); -INSERT INTO entity_mentions VALUES(5672,'Photon OS',6,433,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5673,'RHEL',6,434,'also_known_as'); -INSERT INTO entity_mentions VALUES(5674,'Red Hat Global Desktop',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5675,'RedHat enterprise linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5676,'Red hat enterprise linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5677,'RedHat Enterprise Linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5678,'Redhat Enterprise Linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5679,'Redhat enterprise linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5680,'Rhel',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5681,'Red hat enterprise',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5682,'Red Hat enterprise linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5683,'Rhel4',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5684,'Red Hat Global Desktop Linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5685,'Red Hat Enterprise Linux (RHEL)',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5686,'Red hat Enterprise Linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5687,'Red Hat Enterprise Linux 3',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5688,'Enterprise Linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5689,'RedPatch',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5690,'SUSE LINUX Enterprise Server',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5691,'SuSE SLES',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5692,'SLES (software)',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5693,'SuSE Linux Enterprise Server',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5694,'SUSE Linux Enterprise',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5695,'SLES (operating system)',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5696,'SuSE Enterprise Linux',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5697,'SUSE SLES',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5698,'Ubunt',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5699,'Ubuntu (GNU/Linux distribution)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5700,'Ubuntu Server Edition',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5701,'Ubuntu Light',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5702,'Ubuntu (linux)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5703,'Ubuntu (Operating system)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5704,'Ubuntulinux',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5705,'Uboonto Linux',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5706,'Easyubuntu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5707,'Ubuntu (os)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5708,'Ubuntu LTS',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5709,'Linux ubuntu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5710,'Ubuntu (software)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5711,'Ubuntu desktop',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5712,'Ubuntu (OS)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5713,'Ubuntu (Operating System)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5714,'Ubuntu operating system',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5715,'Ubufox',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5716,'Ubunto Linux',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5717,'Ubuntu (O.S.)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5718,'Ubuntu Business Desktop Remix',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5719,'Ubuntu GNU/Linux',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5720,'Ubuntu os',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5721,'Ubuntu Server',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5722,'Ubuntu (distribution)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5723,'Ubuntu (operating system)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5724,'Ubanto',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5725,'Unbuntu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5726,'Uboonto',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5727,'Ubuntu Linux (operating system based on Debian)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5728,'EasyUbuntu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5729,'Ubuntu Linux os',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5730,'Portable Ubuntu for Windows',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5731,'Ubuntu distro',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5732,'Ubuntu server',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5733,'Ubuntu distribution',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5734,'Ubuntu linux os',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5735,'Ubuntu (Linux)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5736,'Ubuntu (Linux distribution)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5737,'Ubutnu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5738,'Ubunut',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5739,'Ubuntu Desktop',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5740,'Ubuntu Linux Server Edition',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5741,'Ubuntu Universe',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5742,'Unbutu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5743,'Ubuntu Foundation',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5744,'Linux Ubuntu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5745,'Universe ubuntu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5746,'Ubuntu operatng system',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5747,'Ubuntu (linux distribution)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5748,'Ubununtu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5749,'Ubuntu Linux distribution',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5750,'Easy Ubuntu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5751,'Ubunto',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5752,'Ubuntu Enterprise Cloud',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5753,'ShipIt',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5754,'Ubuntu linux',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5755,'Ubuntu Linux operating system',6,436,'also_known_as'); -INSERT INTO entity_mentions VALUES(5756,'Ubuntu Linux',6,436,'also_known_as'); -INSERT INTO entity_mentions VALUES(5757,'Ubuntu OS',6,436,'also_known_as'); -INSERT INTO entity_mentions VALUES(5758,'Ubuntu Project',6,436,'also_known_as'); -INSERT INTO entity_mentions VALUES(5759,'Ubuntu GNU/linux',6,436,'also_known_as'); -INSERT INTO entity_mentions VALUES(5760,'Linux on zSeries',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5761,'LinuxONE',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5762,'ZLinux',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5763,'Linux for zSeries',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5764,'Linux on System z9',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5765,'Linux on mainframe',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5766,'S390x',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5767,'Linux/390',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5768,'IBM LinuxONE',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5769,'Linux for mainframe',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5770,'Linux on z Systems',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5771,'Linux on System z',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5772,'Linux on Z Systems',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5773,'Linux for mainframes',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5774,'Linux on zseries',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5775,'Linux on mainframes',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5776,'Mainframe Linux',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5777,'Linux on z',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5778,'Z/Linux',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5779,'Apple OS X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5780,'Marklar project',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5781,'OS/X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5782,'Max os x',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5783,'Mac OS X 10',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5784,'OS-X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5785,'Mac os 10',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5786,'Mac osx',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5787,'MacOS X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5788,'Macintosh OSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5789,'Macos',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5790,'Mac OSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5791,'MacOSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5792,'Macosx',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5793,'Apple Macintosh OSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5794,'Mac OS/OS X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5795,'Macintosh OS-X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5796,'Os x',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5797,'Mac OS-X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5798,'MacOS/X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5799,'Mac Os X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5800,'MAC OS X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5801,'MacintoshOSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5802,'Apple Macintosh OS X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5803,'Os ten',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5804,'Mac OS/X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5805,'Osx',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5806,'IBSD',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5807,'Apple macOS',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5808,'OSx',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5809,'Mac os ten',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5810,'OS X (operating system)',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5811,'MacOs',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5812,'Apple Mac OSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5813,'Macos x',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5814,'MAC OSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5815,'Apple OSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5816,'Apple Mac OS X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5817,'Macintosh OS X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5818,'MOSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5819,'Mac os x',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5820,'Apple MacOSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5821,'MacOS 10',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5822,'Apple os x',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5823,'OSX',6,438,'also_known_as'); -INSERT INTO entity_mentions VALUES(5824,'Mac OS 10',6,438,'also_known_as'); -INSERT INTO entity_mentions VALUES(5825,'Mac OS X',6,438,'also_known_as'); -INSERT INTO entity_mentions VALUES(5826,'OS X',6,438,'also_known_as'); -INSERT INTO entity_mentions VALUES(5827,'MSP (operating system)',6,439,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5828,'MVS/ESA',6,439,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5829,'OS/MVS',6,439,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5830,'MVS Operating System',6,439,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5831,'Data Facility Product',6,439,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5832,'MVS/XA',6,439,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5833,'MVS/370',6,439,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5834,'Fujitsu MSP',6,439,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5835,'OS/VS2 (MVS)',6,439,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5836,'Hitachi VOS3',6,439,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5837,'MVS/SP',6,439,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5838,'Multiple Virtual Storage',6,439,'also_known_as'); -INSERT INTO entity_mentions VALUES(5839,'MVS|OS/390',6,440,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5840,'ZOS',6,441,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5841,'IBM z/OS',6,441,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5842,'Virtual Memory System',6,442,'also_known_as'); -INSERT INTO entity_mentions VALUES(5843,'VAX/VMS',6,442,'also_known_as'); -INSERT INTO entity_mentions VALUES(5844,'Open vms',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5845,'VMS operating system',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5846,'OpenVMS 7.2',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5847,'DECwindows',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5848,'VMS (operating system)',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5849,'VAX-VMS',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5850,'DEC VMS',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5851,'DECWindows',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5852,'Vax/vms',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5853,'Open VMS',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5854,'Openvms',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5855,'OS/2 Warp',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5856,'Win-OS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5857,'DOS/286 (OS/2)',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5858,'NEWDOS (OS/2)',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5859,'Microsoft Betriebssystem/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5860,'Os2 warp',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5861,'OS/2 Warp 3',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5862,'OS/2 Warp 3J',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5863,'Warp 3',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5864,'IBM BS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5865,'BS/2 1.1',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5866,'Os2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5867,'OS/2 1.21',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5868,'BS/2 1.3',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5869,'Advanced DOS',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5870,'OS2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5871,'BS/2 1.0',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5872,'WINOS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5873,'OS/2 Warp 4.5',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5874,'IBM OS2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5875,'OS/2 Special Edition for Windows',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5876,'OS/2 2.1',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5877,'OS/2 Warp 4',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5878,'OS/2 1.3',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5879,'WinOS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5880,'OS/2 1.0',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5881,'Warp Server',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5882,'Microsoft OS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5883,'WIN-OS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5884,'OS/2 Warp Connect',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5885,'Microsoft Operating System/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5886,'IBM OS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5887,'OS/2 for Windows',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5888,'OS/2 2.0',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5889,'IBM Operating System/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5890,'OS 2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5891,'Betriebssystem/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5892,'DOS 5 (OS/2)',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5893,'Microsoft BS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5894,'IBM Betriebssystem/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5895,'DOS 286 (OS/2)',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5896,'OS/2 API',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5897,'OS/2 1.1',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5898,'BS/2 1.2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5899,'Os/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5900,'BS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5901,'CP/DOS',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5902,'ADOS (OS/2)',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5903,'OS/2 1.2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5904,'0S/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5905,'Operating System/2',6,443,'also_known_as'); -INSERT INTO entity_mentions VALUES(5906,'Unixes',6,444,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5907,'UNIX operating system',6,444,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5908,'UNIX systems',6,444,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5909,'Unix operating system',6,444,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5910,'Truly Unix',6,444,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5911,'UNIX system',6,444,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5912,'Unix box',6,444,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5913,'Unix system',6,444,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5914,'Traditional Unix',6,444,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5915,'UNIX',6,444,'also_known_as'); -INSERT INTO entity_mentions VALUES(5916,'Advanced IBM UNIX',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5917,'IBM-RT/AIX',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5918,'IBM AIX (operating system)',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5919,'Object Data Manager',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5920,'AIX (operating system)',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5921,'Aix os',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5922,'IBM System AIX',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5923,'Ibm lum',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5924,'AIX for Apple Network Server',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5925,'IBM AIX/370',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5926,'Advanced Interactive eXecutive',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5927,'AIX/RT',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5928,'AIX/370',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5929,'AIXv3',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5930,'IBM370/AIX',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5931,'IBM AIX/PS2',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5932,'VM/IX',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5933,'IX/370',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5934,'AIX for ANS',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5935,'IBM AIX/RT',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5936,'AIX Operating System',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5937,'AIX operating system',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5938,'AIX for Apple Network Servers',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5939,'IBM AIX/390',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5940,'AIX/PS2',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5941,'AIX/390',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5942,'AIX',6,445,'also_known_as'); -INSERT INTO entity_mentions VALUES(5943,'BSD operating system',6,446,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5944,'Berkeley software distribution',6,446,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5945,'4.4BSD-Lite',6,446,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5946,'Vmunix',6,446,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5947,'BSD Unices',6,446,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5948,'HPBSD',6,446,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5949,'4.4BSD-Encumbered',6,446,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5950,'Berkeley UNIX',6,446,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5951,'Berkley Software Distribution',6,446,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5952,'Net/1',6,446,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5953,'Berkeley UNIX 4.3BSD',6,446,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5954,'BSD-based',6,446,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5955,'Bsdgames',6,446,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5956,'Net/2',6,446,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5957,'Bsd',6,446,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5958,'*BSD',6,446,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5959,'BSD Unix',6,446,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5960,'BSD (operating system)',6,446,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5961,'BSD',6,446,'also_known_as'); -INSERT INTO entity_mentions VALUES(5962,'BSD UNIX',6,446,'also_known_as'); -INSERT INTO entity_mentions VALUES(5963,'Berkeley System Distribution',6,446,'also_known_as'); -INSERT INTO entity_mentions VALUES(5964,'Berkeley Unix',6,446,'also_known_as'); -INSERT INTO entity_mentions VALUES(5965,'TrustedBSD',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5966,'Freebsd',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5967,'FBSD',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5968,'Free BSD',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5969,'FreeBSD 8',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5970,'NanoBSD',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5971,'Linuxulator',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5972,'FreeBSD Project',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5973,'FREEBSD',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5974,'FreeBSD kernel',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5975,'FreeBSD 5.0',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5976,'Free bsd',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5977,'SUN OS',6,448,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5978,'Sun os',6,448,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5979,'SunOS Unix',6,448,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5980,'Sunos',6,448,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5981,'SunOS 4.1',6,448,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5982,'Sun OS',6,448,'also_known_as'); -INSERT INTO entity_mentions VALUES(5983,'HPUX',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5984,'Hewlett Packard Unix',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5985,'HP/UX',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5986,'Hewlett-Packard UniX',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5987,'Hewlett Packard-Unix',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5988,'Hpux',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5989,'Hewlett-Packard Unix',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5990,'HP Unix',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5991,'Hewlett-Packard UNIX',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5992,'Hewlett Packard UniX',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5993,'Hewlett Packard UNIX',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5994,'HP UX',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5995,'MS Windows',6,450,'also_known_as'); -INSERT INTO entity_mentions VALUES(5996,'Windows',6,450,'also_known_as'); -INSERT INTO entity_mentions VALUES(5997,'Apptimum',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5998,'Windows Operating System',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5999,'Windows OS',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6000,'Windows 365',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6001,'Windows the operating system',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6002,'Windows (Operating System)',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6003,'WINDOWS',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6004,'Windows (OS)',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6005,'Microsoft windows',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6006,'MS-Windows',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6007,'Windows operating system',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6008,'Windows PC',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6009,'Mswin',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6010,'Microsoft windows os',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6011,'MICROSOFT WINDOWS',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6012,'Widnows',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6013,'Windwos',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6014,'Windows (operating system)',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6015,'MSWindows',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6016,'Alliance OS',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6017,'Windows®',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6018,'PC Windows',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6019,'Ms windows',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6020,'Windows os',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6021,'MsWindows',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6022,'Windows (Operating system)',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6023,'32-bit Windows',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6024,'Microsoft windows operating system',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6025,'Windows Microsoft',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6026,'Freedows OS',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6027,'MSWin',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6028,'Windows computers',6,450,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6029,'MS Windows',6,451,'also_known_as'); -INSERT INTO entity_mentions VALUES(6030,'Windows',6,451,'also_known_as'); -INSERT INTO entity_mentions VALUES(6031,'Apptimum',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6032,'Windows Operating System',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6033,'Windows OS',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6034,'Windows 365',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6035,'Windows the operating system',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6036,'Windows (Operating System)',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6037,'WINDOWS',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6038,'Windows (OS)',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6039,'Microsoft windows',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6040,'MS-Windows',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6041,'Windows operating system',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6042,'Windows PC',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6043,'Mswin',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6044,'Microsoft windows os',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6045,'MICROSOFT WINDOWS',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6046,'Widnows',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6047,'Windwos',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6048,'Windows (operating system)',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6049,'MSWindows',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6050,'Alliance OS',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6051,'Windows®',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6052,'PC Windows',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6053,'Ms windows',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6054,'Windows os',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6055,'MsWindows',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6056,'Windows (Operating system)',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6057,'32-bit Windows',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6058,'Microsoft windows operating system',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6059,'Windows Microsoft',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6060,'Freedows OS',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6061,'MSWin',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6062,'Windows computers',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6063,'Windows Storage Server',6,452,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6064,'Microsoft Windows Server',6,452,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6065,'Windows Web Edition',6,452,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6066,'Windows server',6,452,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6067,'Windows Server 200x',6,452,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6068,'Windows Server 2022',6,452,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6069,'Microsoft Windows server',6,452,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6070,'Fedora Rawhide',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6071,'Linux fedora',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6072,'Fedora (OS)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6073,'Fedora AOS',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6074,'Fedora Extras',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6075,'Fedora (GNU/Linux distribution)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6076,'Fedora Core Linux',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6077,'Fedora Workstation',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6078,'Fedora OS',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6079,'Fedora (linux distribution)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6080,'COPR (Fedora)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6081,'Rawhide (operating system)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6082,'Fedora linux',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6083,'Fedora Robotics',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6084,'Cool Other Package Repositories',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6085,'Fedora Linux',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6086,'Fedomatix',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6087,'Fedora (Operating System)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6088,'Rawhide (software)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6089,'Eeedora',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6090,'Fedora operating system',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6091,'Fedora (software)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6092,'Fedora Core',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6093,'Fedora Cloud',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6094,'Rawhide (computing)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6095,'Fedora IoT',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6096,'Fedora Linux Swap',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6097,'Fedora (Linux)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6098,'Fedora Modular Server',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6099,'Fedora (Linux distribution)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6100,'Fedora CoreOS',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6101,'Fedora 10',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6102,'Fedora Silverblue',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6103,'Fedora Atomic Host',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6104,'Fedora spin',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6105,'Fedora Server',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6106,'EPEL',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6107,'Fedora LXQt',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6108,'Fedora core',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6109,'Linux|Amazon Linux',6,454,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6110,'ATLAS Transformation Language',5,456,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6111,'Microsoft Exchange Server|Veeam Explorer',5,464,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6112,'Data Transformation Service',5,466,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6113,'DTS package',5,466,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6114,'DTS Package',5,466,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6115,'Data transformation service',5,466,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6116,'DTS Packages',5,466,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6117,'DTS Tasks',5,466,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6118,'OLAP Services',5,468,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6119,'ADOMD.NET',5,468,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6120,'SQL Server Analysis Services',5,468,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6121,'SSIS package',5,470,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6122,'SSMS',5,471,'also_known_as'); -INSERT INTO entity_mentions VALUES(6123,'SSMSE',5,471,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6124,'Management studio',5,471,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6125,'SQL Reporting Services',5,472,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6126,'Sql server reporting services',5,472,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6127,'SQL Reporting Services',5,473,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6128,'Sql server reporting services',5,473,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6129,'Spatial Data Option',5,475,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6130,'GeoRaster',5,475,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6131,'Oracle Spatial',5,475,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6132,'SQLPlus',5,478,'also_known_as'); -INSERT INTO entity_mentions VALUES(6133,'Sqlplus',5,478,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6134,'SQL*Plus',5,478,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6135,'Run-time library',7,482,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6136,'.NET Framework|log4net',7,483,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6137,'Windows Communications Foundation',7,485,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6138,'Indigo Application Server',7,485,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6139,'Windows communication foundation',7,485,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6140,'Windows Communication Foundation (WCF)',7,485,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6141,'Windows Communication Framework',7,485,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6142,'Indigo (messaging system)',7,485,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6143,'Microsoft Indigo',7,485,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6144,'WF4',7,486,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6145,'Workflow Foundation',7,486,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6146,'Windows Overflow Foundation',7,486,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6147,'Windows.Forms',7,487,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6148,'Winforms',7,487,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6149,'Windows Forms control',7,487,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6150,'WindowsForms',7,487,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6151,'Windows Forms application',7,487,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6152,'WinForms',7,487,'also_known_as'); -INSERT INTO entity_mentions VALUES(6153,'ActiveX Data Object',7,488,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6154,'Active X Data Objects',7,488,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6155,'Msado',7,488,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6156,'Jboss seam',7,492,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6157,'JBoss SEAM',7,492,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6158,'Seam framework',7,492,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6159,'JBoss application server',7,493,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6160,'Wildfly',7,493,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6161,'JBoss AS',7,493,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6162,'Jbossas',7,493,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6163,'Jboss as',7,493,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6164,'Jboss',7,493,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6165,'JBossWS',7,493,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6166,'JBoss',7,493,'also_known_as'); -INSERT INTO entity_mentions VALUES(6167,'JBoss Application Server',7,493,'also_known_as'); -INSERT INTO entity_mentions VALUES(6168,'ABAP Objects',7,496,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6169,'SAP ABAP',7,496,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6170,'Abap Objects',7,496,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6171,'ABAP/4',7,496,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6172,'Abap IV',7,496,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6173,'Abap',7,496,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6174,'.NET SDK',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6175,'Dot NET Framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6176,'Microsoft net framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6177,'Net Framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6178,'Dotnet framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6179,'Netfx',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6180,'Dot Net Framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6181,'Dot net framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6182,'.NET Enterprise Server',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6183,'.NET framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6184,'NetFX',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6185,'Microsoft .NET framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6186,'Microsoft''s .NET Framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6187,'.NET Server',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6188,'.Net Framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6189,'.Net framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6190,'.NET Services',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6191,'.NET platform',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6192,'.Net (programming language)',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6193,'Microsoft .NET Framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6194,'.net framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6195,'NET Framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6196,'Active Directory Services',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6197,'Likewise Open',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6198,'Active directory object',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6199,'AD/LDS',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6200,'Active Directory Schema',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6201,'AD DS',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6202,'Microsoft Active Directory',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6203,'NT Directory Service',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6204,'Active Directory Site',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6205,'ActiveDirectory',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6206,'Active directory authentication module',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6207,'Active Directory Domain Services',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6208,'Active directory objects',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6209,'Active directory',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6210,'Micorsoft Active Directory',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6211,'Active Directory Service Interfaces',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6212,'Active Directory Service',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6213,'Active Directory Directory Services',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6214,'Microsoft Active Direcory',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6215,'Domain tree',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6216,'Active Directory Application Mode',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6217,'AD LDS',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6218,'ASP programming language',10,499,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6219,'Active Server Page',10,499,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6220,'ASP3',10,499,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6221,'Apache::ASP',10,499,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6222,'Active server pages',10,499,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6223,'Classic ASP',10,499,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6224,'Asp Apache',10,499,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6225,'Active X',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6226,'ActiveX Control',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6227,'Activex',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6228,'ActiveX client',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6229,'ActiveX Object',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6230,'ActiveX control',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6231,'ActiveX component',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6232,'MFC ActiveX Control',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6233,'Active x',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6234,'ActiveX server',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6235,'Active-x',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6236,'Activex control',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6237,'Apache Cordoba',10,501,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6238,'Apache Callback',10,501,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6239,'Customer Information Control System',10,502,'also_known_as'); -INSERT INTO entity_mentions VALUES(6240,'CICS Transaction Server',10,502,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6241,'Docker software',10,503,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6242,'Docker (Linux container engine)',10,503,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6243,'Libcontainer',10,503,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6244,'Dockerfile',10,503,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6245,'Docker Toolbox',10,503,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6246,'Shockwave Flash',10,504,'also_known_as'); -INSERT INTO entity_mentions VALUES(6247,'UIRA',10,504,'also_known_as'); -INSERT INTO entity_mentions VALUES(6248,'Flash MX',10,504,'also_known_as'); -INSERT INTO entity_mentions VALUES(6249,'Flash CS3',10,504,'also_known_as'); -INSERT INTO entity_mentions VALUES(6250,'Futuresplash',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6251,'Adobe Flash CS4',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6252,'Flash 8',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6253,'Flash mx 2004',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6254,'Flash (software)',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6255,'FutureSplash',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6256,'Macromedia Flash Remoting',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6257,'Macromedia flash',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6258,'Flash programming',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6259,'Adobe Flash animation',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6260,'Flash 6',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6261,'Adobe flash',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6262,'Adobe Flash Platform',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6263,'Macromedia Flash Professional 9',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6264,'F4L',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6265,'Flash components',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6266,'Flash 10',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6267,'F4l',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6268,'Flash 9',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6269,'Qflash',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6270,'Flash mx',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6271,'HTTP File Server',10,505,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6272,'JRE',10,506,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6273,'NodeJs',10,507,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6274,'Node js',10,507,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6275,'Node.JS',10,507,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6276,'Nodejs',10,507,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6277,'Iojs',10,507,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6278,'Io.js',10,507,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6279,'NodeJS',10,507,'also_known_as'); -INSERT INTO entity_mentions VALUES(6280,'Action Web Service',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6281,'Rubyonrails',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6282,'Ruby on Яails',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6283,'Ruby on rails',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6284,'Action Mailer',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6285,'Ruby on Iaails',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6286,'Rails framework',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6287,'Ruby on Rails (web framework)',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6288,'Ruby On Rails',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6289,'Ruby-on-rails',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6290,'Ruby with rails',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6291,'EMC Celerra',11,510,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6292,'Application Lifecycle Management',1,511,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6293,'Application management',1,511,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6294,'Application life-cycle management',1,511,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6295,'Integrated application lifecycle management',1,511,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6296,'Software Lifecycle Management',1,511,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6297,'Assembly Language',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6298,'Assembler (computer programming)',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6299,'Meta-assembler',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6300,'Op code mnemonic',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6301,'Cross-assembler',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6302,'Assembly languages',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6303,'Programming language/assembly',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6304,'Assembly language assembler',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6305,'Two-pass assembler',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6306,'Cross assembler',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6307,'Assembly code',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6308,'Assembler code',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6309,'Assembler language',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6310,'Assembler program',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6311,'Assembly language macros',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6312,'Mnemonics (assembler)',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6313,'ARM Assembly Language Programming',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6314,'Extended mnemonics',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6315,'Mnemonics (assembly language)',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6316,'Symbolic machine code',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6317,'Assembly programming language',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6318,'Assembly Programming System',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6319,'Assembler (programming language)',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6320,'Symbolic Machine Code',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6321,'Mnemonic (assembly language)',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6322,'Macro assembler',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6323,'Assembler (computing)',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6324,'Assembly file',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6325,'Mnemonic (assembler)',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6326,'Assember language',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6327,'Assembler for an assembly language',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6328,'Assembler programming',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6329,'Macroassembler',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6330,'Assembler directive',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6331,'Assembly programming',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6332,'Opcode mnemonics',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6333,'Assembly time',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6334,'Common Gateway Interface (CGI)',1,515,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6335,'Cgi script',1,515,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6336,'CGI script',1,515,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6337,'Common gateway interface',1,515,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6338,'COM+',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6339,'COM Plus',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6340,'Interface ID',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6341,'ActiveX application',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6342,'COM/ActiveX',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6343,'Multi Threaded Apartment',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6344,'COM object',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6345,'Neutral Apartment',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6346,'COM server',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6347,'Component object model',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6348,'Single-Threaded Apartment',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6349,'ActiveX script',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6350,'Single Threaded Apartment',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6351,'COM and OLE',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6352,'Microsoft Component Object Model',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6353,'Single-threaded apartment',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6354,'COM plus',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6355,'Apartment model',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6356,'Multi-Threaded Apartment',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6357,'COM+ Events',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6358,'Portable Object Adapter',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6359,'Object Management Architecture',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6360,'Portable interceptors',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6361,'OMG IDL',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6362,'Common object request broker architecture',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6363,'VMCID',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6364,'Incarnation (CORBA)',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6365,'CORBA IDL',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6366,'Corbaloc',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6367,'CORBA Component Model',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6368,'Servant (CORBA)',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6369,'Corba',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6370,'CORBA architecture',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6371,'CORBA',1,517,'also_known_as'); -INSERT INTO entity_mentions VALUES(6372,'Data Control Language',1,519,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6373,'DDBMS',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6374,'Enterprise database management',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6375,'Distributed data base',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6376,'Database management system',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6377,'Database Management',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6378,'Database query',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6379,'DBMSs',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6380,'Research database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6381,'Database management software',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6382,'Database (computing)',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6383,'Distributed Database Management System',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6384,'Database instance',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6385,'Database management program',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6386,'DataBase',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6387,'Library database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6388,'Database system',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6389,'Database management systems',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6390,'Database/Applications',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6391,'Data Base',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6392,'Distributed database management system',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6393,'Database Management System',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6394,'Database manager',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6395,'Database programming',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6396,'Database software',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6397,'Public database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6398,'Distributed databases',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6399,'Dbms',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6400,'Forensic database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6401,'Data base management system',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6402,'Databases',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6403,'Electronic data processing database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6404,'Database management',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6405,'Computer database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6406,'Data-base',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6407,'Data bases',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6408,'DBMS',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6409,'Computer Databases',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6410,'Database System',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6411,'Database development',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6412,'Numeric database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6413,'DB file',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6414,'Scientific database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6415,'Database Manager',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6416,'Database systems',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6417,'Database information system',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6418,'Data base',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6419,'D-base',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6420,'Database backend',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6421,'General-purpose DBMS',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6422,'Public databases',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6423,'Db management',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6424,'EDI Translation Software',1,521,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6425,'Electronic Data Interchange',1,521,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6426,'ANSI ASC X.12',1,521,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6427,'X.12',1,521,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6428,'Web-servers',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6429,'Web Servers',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6430,'Webserver',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6431,'HTTP Server',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6432,'Www server',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6433,'Web-server',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6434,'HTTP web server',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6435,'Web Server',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6436,'Web servers',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6437,'WWW server',1,522,'also_known_as'); -INSERT INTO entity_mentions VALUES(6438,'HTTP server',1,522,'also_known_as'); -INSERT INTO entity_mentions VALUES(6439,'Jdom',1,523,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6440,'Java object model',1,523,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6441,'JSR 102',1,523,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6442,'Java Document Object Model',1,523,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6443,'Ldap',1,524,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6444,'Eldap',1,524,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6445,'LDAPS',1,524,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6446,'LDAP',1,524,'also_known_as'); -INSERT INTO entity_mentions VALUES(6447,'Database driver',1,525,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6448,'ODBC driver',1,525,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6449,'ODBC Driver',1,525,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6450,'Open DataBase Connectivity',1,525,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6451,'OBDC',1,525,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6452,'Odbc',1,525,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6453,'Open database connectivity',1,525,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6454,'ODBC',1,525,'also_known_as'); -INSERT INTO entity_mentions VALUES(6455,'Order Management System',1,526,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6456,'Order management',1,526,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6457,'SQL Reporting Services',1,528,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6458,'Sql server reporting services',1,528,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6459,'REST API',1,529,'also_known_as'); -INSERT INTO entity_mentions VALUES(6460,'REST',1,529,'also_known_as'); -INSERT INTO entity_mentions VALUES(6461,'Representational State Transfer',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6462,'REST Architecture',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6463,'REST-SST',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6464,'RESTful web service',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6465,'REST interface',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6466,'RESTFul',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6467,'RESTfully',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6468,'Rest interface',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6469,'Restful interface',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6470,'RESTful API',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6471,'Restful web service',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6472,'Restful',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6473,'Restful application',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6474,'RESTful',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6475,'SOA Lifecycle',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6476,'SOA environment',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6477,'Service Oriented Architecture',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6478,'Endpoint computing',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6479,'Service orientated architecture',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6480,'Soba (computing)',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6481,'Broker (service-oriented architecture)',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6482,'Service-Oriented Architecture',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6483,'Service-oriented business application',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6484,'Service Oriented Computing',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6485,'Service-oriented Architecture',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6486,'Service-oriented architectures',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6487,'Service oriented architecture',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6488,'Service Orientated Architecture',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6489,'Service-orientated architecture',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6490,'Service-Orientated Architecture',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6491,'Service Oriented Architectures',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6492,'Simple Object Access Protocol',1,531,'also_known_as'); -INSERT INTO entity_mentions VALUES(6493,'SOAP request',1,531,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6494,'SOAP (protocol)',1,531,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6495,'Soap service',1,531,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6496,'Structured Query Language',9,532,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6497,'SQL script',9,532,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6498,'ANSI SQL',9,532,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6499,'SQL Servers',9,532,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6500,'Procedural SQL',9,532,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6501,'Structured query language',9,532,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6502,'SQL language',9,532,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6503,'Distributed SQL processing',9,532,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6504,'SQL programming language',9,532,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6505,'Transaction Control Language',9,532,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6506,'SEQUEL',9,532,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6507,'SQL (programming language)',9,532,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6508,'SQL database',9,532,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6509,'Structure Query Language',9,532,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6510,'Sql',9,532,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6511,'Yaml',1,533,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6512,'Yet Another Markup Language',1,533,'also_known_as'); -INSERT INTO entity_mentions VALUES(6513,'YAML Ain''t Markup Language',1,533,'also_known_as'); -INSERT INTO entity_mentions VALUES(6514,'Model',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6515,'Model-view',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6516,'Model view controller triad',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6517,'controller',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6518,'view',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6519,'Model-template-view',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6520,'Model–View–Controller',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6521,'Model View Controller',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6522,'MVC controller',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6523,'View (MVC)',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6524,'Model-View-Controller',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6525,'Controller (MVC)',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6526,'MVC Design Pattern',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6527,'MVC architecture',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6528,'Model-view controller',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6529,'Model-Template-View',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6530,'MVC Pattern',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6531,'Model-view-controller design pattern',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6532,'Model-View-Controller paradigm',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6533,'Model view controller',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6534,'Model/View/Controller',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6535,'MVC view',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6536,'MVC model',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6537,'Model (MVC)',1,534,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6538,'Model-view-controller',1,534,'also_known_as'); -INSERT INTO entity_mentions VALUES(6539,'Application server computing',1,535,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6540,'Application Server',1,535,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6541,'Mobile App Server',1,535,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6542,'Application servers',1,535,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6543,'Enterprise application server',1,535,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6544,'Java application server',1,535,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6545,'Appserver',1,535,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6546,'App server',1,535,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6547,'Web application server',1,535,'also_known_as'); -INSERT INTO entity_mentions VALUES(6548,'Cloud hosting',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6549,'Cloud architecture',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6550,'Cloud service',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6551,'IoT Cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6552,'Cloud-hosted',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6553,'Cloud vendor',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6554,'Cloud Provider Interface',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6555,'Cloud transformation',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6556,'XaaS',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6557,'Cloud computing platform',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6558,'Cloud computing vendor',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6559,'Cloud Computing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6560,'Cloud-based',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6561,'Cloud provider',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6562,'Could computing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6563,'Cloud computing provider',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6564,'Computing cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6565,'Computing in the cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6566,'Communication as a service',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6567,'Cloud infrastructure',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6568,'Hybrid cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6569,'Private cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6570,'Cloud Technology',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6571,'Cloud client',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6572,'Cloud vendors',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6573,'Cloud networking',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6574,'Cloud Hosting',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6575,'Remote computing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6576,'Private Cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6577,'Computing-in-the-cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6578,'Cloud hardware',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6579,'Cloud computer',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6580,'Cloud technology',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6581,'Public Cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6582,'Cloud processing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6583,'Burst computing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6584,'Member Only Cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6585,'Content Marketing Cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6586,'Cloud computing user',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6587,'Cloud Applications',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6588,'Online software',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6589,'Cloud Software',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6590,'Cloud services provider',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6591,'Computer cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6592,'Cloud-computing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6593,'Cloud distribution',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6594,'Public cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6595,'Cloud services',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6596,'Cloud-based computing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6597,'Cloud Service',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6598,'Cloudware',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6599,'EaaS',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6600,'Cloud service provider',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6601,'Cloud software',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6602,'Cloud user',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6603,'Cloud (computing)',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6604,'Cross-Platform Hybrid Cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6605,'Cloud Infrastructure',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6606,'Cloud (computers)',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6607,'Hybrid Cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6608,'Cloud standards',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6609,'Cloud users',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6610,'Cloud clients',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6611,'Cloud computing platforms',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6612,'Enterprise Cloud Computing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6613,'Dynamic Provisioning Environment',1,538,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6614,'Enterprise Service Bus',1,540,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6615,'Workgroup File server',1,541,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6616,'Fileserver',1,541,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6617,'File host',1,541,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6618,'Storage server',1,541,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6619,'File Server',1,541,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6620,'Workgroup file server',1,541,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6621,'File Server Solution',1,541,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6622,'Nominal ledgers',1,542,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6623,'General Ledger',1,542,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6624,'Generalledger',1,542,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6625,'General ledgers',1,542,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6626,'Nominal ledger',1,542,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6627,'HTTP client',1,543,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6628,'Web-servers',1,544,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6629,'Web Servers',1,544,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6630,'Webserver',1,544,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6631,'HTTP Server',1,544,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6632,'Www server',1,544,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6633,'Web-server',1,544,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6634,'HTTP web server',1,544,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6635,'HTTP daemon',1,544,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6636,'Web Server',1,544,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6637,'Web servers',1,544,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6638,'WWW server',1,544,'also_known_as'); -INSERT INTO entity_mentions VALUES(6639,'HTTP server',1,544,'also_known_as'); -INSERT INTO entity_mentions VALUES(6640,'ISSOW',1,545,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6641,'IXP',1,546,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6642,'Internet Exchange',1,546,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6643,'Internet exchange',1,546,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6644,'Internet Exchange Point',1,546,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6645,'IMAP server',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6646,'DIMAP',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6647,'Interactive Mail Access Protocol',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6648,'IMAP4',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6649,'IMAP3',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6650,'Imapd',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6651,'IMAPv4',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6652,'Imaps',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6653,'IMAPS',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6654,'Internet message access protocol',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6655,'IMAP',1,547,'also_known_as'); -INSERT INTO entity_mentions VALUES(6656,'Javascript Object Notation',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6657,'Json',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6658,'JSONNP',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6659,'Internet JSON',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6660,'JSON Schema',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6661,'JSON5',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6662,'I-JSON',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6663,'HJSON',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6664,'JavaScript Object Notation',1,548,'also_known_as'); -INSERT INTO entity_mentions VALUES(6665,'Mainframe computers',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6666,'Mainframe',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6667,'Main frame',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6668,'Big-iron',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6669,'MainFrame',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6670,'Mainframe computing',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6671,'Mainframe Computer',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6672,'Main frame computer',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6673,'Mainframes',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6674,'Big iron (computing)',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6675,'Main Frame Computer',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6676,'Main-frame',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6677,'Mainframe server',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6678,'Manufacturing Execution System',1,553,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6679,'Manufacturing execution systems',1,553,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6680,'Manufacturing Execution Systems',1,553,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6681,'NonSQL',1,555,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6682,'Software as a secure service',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6683,'Saasworld',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6684,'Software as service',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6685,'SasS',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6686,'Software-As-A-Service',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6687,'Software-as-a-service',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6688,'OpenSaaS',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6689,'Software plus services',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6690,'Software-as-a-Service',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6691,'Software As A Service',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6692,'Software as a Service',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6693,'Software as a sevice',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6694,'Cloud application',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6695,'SaaSS',1,556,'also_known_as'); -INSERT INTO entity_mentions VALUES(6696,'SaaS',1,556,'also_known_as'); -INSERT INTO entity_mentions VALUES(6697,'Storage area networks',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6698,'Storage Area Networks',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6699,'Storage network',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6700,'Distributed storage area networks',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6701,'Storage Area Network (SAN)',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6702,'Sanoip',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6703,'SANoIP',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6704,'Storage area networking',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6705,'San server',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6706,'SAN (computing)',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6707,'Storage Area Network(SAN)',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6708,'Centralized storage area networks',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6709,'Storage layer',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6710,'Storage Area Network',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6711,'Storage networking',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6712,'Online desktop',1,560,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6713,'WebTop',1,560,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6714,'Cloud desktop',1,560,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6715,'Webtop',1,560,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6716,'Web Desktop',1,560,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6717,'Anonymous Surfing',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6718,'Proxy IP address',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6719,'Application layer proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6720,'Caching proxy server',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6721,'Translation proxy server',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6722,'Internet proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6723,'Anonymous server',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6724,'Anonymous Web surfing',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6725,'Proxyserver',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6726,'Web Proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6727,'Proxy Bouncing',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6728,'Proxifier',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6729,'Http proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6730,'Proxy chaining',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6731,'Suffix proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6732,'Anonymity network',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6733,'Application-layer proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6734,'CGI proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6735,'HTTP proxy server',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6736,'Free proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6737,'Proxy Website',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6738,'Intercepting proxy server',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6739,'HTTPS Proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6740,'Proxy chain',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6741,'Proxy IP',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6742,'Proxy gateway',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6743,'Web proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6744,'Proxy Server',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6745,'Web proxies',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6746,'Proxy servers',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6747,'Proxy bypass',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6748,'Anonymous proxy server',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6749,'Bypass (computing)',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6750,'Residential proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6751,'Transparent proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6752,'Myspace proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6753,'Split proxies',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6754,'Forward proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6755,'P roxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6756,'HTTP proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6757,'Proxy Sites',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6758,'SSL Proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6759,'Anonymous Web proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6760,'Server proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6761,'Tproxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6762,'Circumventor',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6763,'Caching proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6764,'Secure & Anonymous Internet Surfing',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6765,'HTTP proxying',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6766,'Proxy filter',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6767,'Anonymous web proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6768,'Utility (computer science)',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6769,'Software utility',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6770,'Utility program',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6771,'Utility (software)',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6772,'Software utilities',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6773,'Utility Programs',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6774,'Utility (computing)',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6775,'Utility Software',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6776,'NetScaler',3,563,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6777,'Netscaler',3,563,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6778,'Oracle virtual machine',3,567,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6779,'Oracle VM',3,567,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6780,'ESX Server',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6781,'VMware ESXi Server',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6782,'VMware ESX Server 2.0',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6783,'VMWare ESX Server',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6784,'ESX Server 3i',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6785,'VMware ESX Server 3.0',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6786,'VMware ESX',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6787,'VMware ESXi (software)',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6788,'VMWare ESX',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6789,'VMWare ESXi',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6790,'VMware ESX Server',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6791,'ESXI',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6792,'ESXi',3,568,'also_known_as'); -INSERT INTO entity_mentions VALUES(6793,'VMware GSX Server',3,569,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6794,'GSX Server',3,569,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6795,'VMWare Server',3,569,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6796,'Structured Query Language',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6797,'SQL script',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6798,'ANSI SQL',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6799,'SQL Servers',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6800,'Procedural SQL',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6801,'Structured query language',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6802,'SQL language',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6803,'Distributed SQL processing',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6804,'SQL programming language',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6805,'Transaction Control Language',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6806,'SEQUEL',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6807,'SQL (programming language)',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6808,'SQL database',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6809,'Structure Query Language',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6810,'Sql',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6811,'Structured Programming Facility',2,573,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6812,'System Productivity Facility',2,573,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6813,'Program Development Facility',2,573,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6814,'Interactive System Productivity Facility',2,573,'also_known_as'); -INSERT INTO entity_mentions VALUES(6815,'Model',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6816,'Model-view',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6817,'Model view controller triad',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6818,'controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6819,'view',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6820,'Model-template-view',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6821,'Model–View–Controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6822,'Model View Controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6823,'MVC controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6824,'View (MVC)',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6825,'Model-View-Controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6826,'Controller (MVC)',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6827,'MVC Design Pattern',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6828,'MVC architecture',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6829,'Model-view controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6830,'Model-Template-View',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6831,'MVC Pattern',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6832,'Model-view-controller design pattern',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6833,'Model-View-Controller paradigm',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6834,'Model view controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6835,'Model/View/Controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6836,'MVC view',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6837,'MVC model',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6838,'Model (MVC)',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6839,'Model-view-controller',1,574,'also_known_as'); -INSERT INTO entity_mentions VALUES(6840,'Linux (operating system)',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6841,'LINUX',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6842,'Linuces',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6843,'GNU/Linux/X11',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6844,'LinuX',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6845,'Linux-based GNU system',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6846,'Gnu/Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6847,'Linux+GNU',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6848,'Linux desktop',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6849,'Lienucks',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6850,'GNU-Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6851,'Linux/GNU',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6852,'Desktop GNU/Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6853,'Desktop Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6854,'Linux Powered System',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6855,'Linux/gnu',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6856,'Linux server',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6857,'GNU-linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6858,'GNU/Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6859,'Linux box',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6860,'GNULinux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6861,'Lynux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6862,'Linux OS',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6863,'Linices',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6864,'Linux-based GNU systems',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6865,'GNU/Linux/X',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6866,'Desktop linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6867,'GNU–Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6868,'Gnu/linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6869,'GNU+Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6870,'GNU Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6871,'Linux (GNU/Linux)',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6872,'Lineux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6873,'Linux/X11',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6874,'Linix',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6875,'Linux operating system',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6876,'Linux/X',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6877,'BlackRhino GNU/Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6878,'MSP (operating system)',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6879,'MVS/ESA',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6880,'OS/MVS',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6881,'MVS Operating System',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6882,'MVS/XA',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6883,'MVS/370',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6884,'Fujitsu MSP',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6885,'OS/VS2 (MVS)',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6886,'Hitachi VOS3',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6887,'MVS/SP',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6888,'Multiple Virtual Storage',6,577,'also_known_as'); -INSERT INTO entity_mentions VALUES(6889,'Unixes',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6890,'UNIX operating system',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6891,'UNIX systems',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6892,'Unix operating system',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6893,'Truly Unix',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6894,'UNIX system',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6895,'Unix box',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6896,'Unix system',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6897,'Traditional Unix',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6898,'UNIX',6,578,'also_known_as'); -INSERT INTO entity_mentions VALUES(6899,'BSD operating system',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6900,'Berkeley software distribution',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6901,'4.4BSD-Lite',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6902,'Vmunix',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6903,'BSD Unices',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6904,'HPBSD',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6905,'4.4BSD-Encumbered',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6906,'Berkeley UNIX',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6907,'Berkley Software Distribution',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6908,'Berkeley UNIX 4.3BSD',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6909,'BSD-based',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6910,'Bsd',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6911,'*BSD',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6912,'BSD Unix',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6913,'BSD (operating system)',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6914,'BSD',6,579,'also_known_as'); -INSERT INTO entity_mentions VALUES(6915,'BSD UNIX',6,579,'also_known_as'); -INSERT INTO entity_mentions VALUES(6916,'Berkeley System Distribution',6,579,'also_known_as'); -INSERT INTO entity_mentions VALUES(6917,'Berkeley Unix',6,579,'also_known_as'); -INSERT INTO entity_mentions VALUES(6918,'MS Windows',6,580,'also_known_as'); -INSERT INTO entity_mentions VALUES(6919,'Windows',6,580,'also_known_as'); -INSERT INTO entity_mentions VALUES(6920,'Windows Operating System',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6921,'Windows OS',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6922,'Windows 365',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6923,'Windows the operating system',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6924,'Windows (Operating System)',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6925,'WINDOWS',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6926,'Windows (OS)',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6927,'Microsoft windows',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6928,'MS-Windows',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6929,'Windows operating system',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6930,'Windows PC',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6931,'Mswin',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6932,'Microsoft windows os',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6933,'MICROSOFT WINDOWS',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6934,'Widnows',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6935,'Windwos',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6936,'Windows (operating system)',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6937,'MSWindows',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6938,'Windows®',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6939,'PC Windows',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6940,'Ms windows',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6941,'Windows os',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6942,'MsWindows',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6943,'Windows (Operating system)',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6944,'32-bit Windows',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6945,'Microsoft windows operating system',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6946,'Windows Microsoft',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6947,'Freedows OS',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6948,'MSWin',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6949,'Windows computers',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6950,'MS SQL',2,581,'also_known_as'); -INSERT INTO entity_mentions VALUES(6951,'MS SQL Server',2,581,'also_known_as'); -INSERT INTO entity_mentions VALUES(6952,'MSSQL',2,581,'also_known_as'); -INSERT INTO entity_mentions VALUES(6953,'MS-SQL',2,581,'also_known_as'); -INSERT INTO entity_mentions VALUES(6954,'Microsoft SQL Server 2005',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6955,'Sql Server 2000',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6956,'SQL Server 2017',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6957,'SQL Server 2014 ISO',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6958,'SQL Server 2000',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6959,'SQL Server 2005',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6960,'SQL Server 2014',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6961,'Microsoft SQL Server 2008 R2',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6962,'Microsoft SQL server',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6963,'Microsoft SQL Server 2000',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6964,'SQL Server 2014 CAB',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6965,'SQL Server 2008 R2',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6966,'Pubs (database)',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6967,'SQL Server 2012',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6968,'Microsoft SQL',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6969,'Microsoft SQL Server 2008',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6970,'Microsoft Sql Server',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6971,'SQL 6.5',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6972,'Ms sql server',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6973,'SQL Server 2008',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6974,'Data Source Views',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6975,'Microsoft sql server',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6976,'Mssql',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6977,'SQL Server 2016',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6978,'SQL 7.0',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6979,'SQL Server 2019',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6980,'C# (programming language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6981,'C++++',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6982,'Visual C Sharp .Net',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6983,'Visual C Sharp Express Edition',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6984,'C♯ (programming language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6985,'Microsoft Visual C ♯',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6986,'C Sharp language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6987,'C# programming language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6988,'ISO/IEC 23270',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6989,'C Sharp Programming Language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6990,'Microsoft Visual C Sharp',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6991,'C-sharp programming language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6992,'C ♯ (programming language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6993,'C hash',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6994,'C♯ (language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6995,'C sharp (computing)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6996,'CS (programming language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6997,'C sharp (language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6998,'C Sharp (language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6999,'ECMA-334',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7000,'C-hash',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7001,'C sharp 6.0',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7002,'C♯ programming language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7003,'Visual C Sharp',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7004,'C Sharp 5.0',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7005,'C-Hash',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7006,'C sharp programming language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7007,'ISO 23270',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7008,'C Sharp Programming language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7009,'C Sharp (computing)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7010,'C # (programming language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7011,'C sharp (programming language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7012,'C hashtag',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7013,'C Pound',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7014,'C Sharp programming language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7015,'C plus plus',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7016,'C++ 1.0',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7017,'C plus plus programming language',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7018,'ISO/IEC 14882:2003',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7019,'C++ standard',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7020,'Standard C++ Foundation',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7021,'ISO/IEC 14882',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7022,'Sepples',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7023,'Cee plus plus',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7024,'C++ program',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7025,'C++ (Programming Language)',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7026,'C+++',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7027,'C++ syntax',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7028,'ANSI C++',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7029,'ISO C++',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7030,'C++ (programming language)',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7031,'C++ 2.0',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7032,'ISO 14882',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7033,'C++ language',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7034,'Cee Plus Plus',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7035,'C Plus Plus programming language',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7036,'Core language',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7037,'ISO C++ programming language',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7038,'Cplusplus',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7039,'C++ programming language',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7040,'C++98',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7041,'ISO/IEC 14882:2014',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7042,'++C',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7043,'CPlusPlus',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7044,'ISO/IEC 14882:2015',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7045,'C-plus-plus programming language',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7046,'C-plus-plus',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7047,'C Plus Plus',9,583,'also_known_as'); -INSERT INTO entity_mentions VALUES(7048,'Java programming language',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7049,'Javax',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7050,'Java Language Specification',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7051,'Java (software)',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7052,'Java (Programming language)',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7053,'Javalang',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7054,'Java Programming',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7055,'JPD (file format)',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7056,'Java (programming)',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7057,'Java language specification',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7058,'Java (langage)',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7059,'Java language',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7060,'Java technology',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7061,'Flow Java',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7062,'Java (language)',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7063,'Java programming',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7064,'Java (Programming Language)',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7065,'Java prog',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7066,'Java code',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7067,'Java computer language',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7068,'Java Programing Languge',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7069,'Perl 7',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7070,'Perl (programming language)',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7071,'Practical Extraction and Report Language',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7072,'Perl interpreter',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7073,'Vanilla Perl',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7074,'Practical Extraction And Report Language',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7075,'Ponie',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7076,'Embedded Perl',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7077,'Perl language',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7078,'X-perl',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7079,'Perl programming language',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7080,'Swiss army chainsaw',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7081,'IndigoPerl',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7082,'Perl code',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7083,'Swiss-army chainsaw',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7084,'Perl5',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7085,'PONIE',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7086,'PERL',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7087,'Perl 5',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7088,'Perl programming',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7089,'Perl (language)',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7090,'Python scripting language',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7091,'Python program',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7092,'PythonLanguage',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7093,'Python computer language',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7094,'Python code',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7095,'Python3',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7096,'Python (computing)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7097,'Python programming language',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7098,'Python programming',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7099,'Pythonistas',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7100,'Pyston',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7101,'Python language',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7102,'Python (lang)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7103,'Python2',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7104,'Python3000',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7105,'Python 3k',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7106,'Python (language)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7107,'Coconut (programming language)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7108,'Python (software)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7109,'Pythonlang',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7110,'Python prog',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7111,'Python Programming',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7112,'Python Programming Language',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7113,'Python (scripting language)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7114,'Pythonista',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7115,'Python (programming)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7116,'Python (Programming Language)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7117,'Python (computer language)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7118,'Python 3K',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7119,'OpenRsync',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7120,'Openbsd',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7121,'OpenCVS',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7122,'Opencvs',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7123,'Open bsd',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7124,'OpenBSD project',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7125,'Open BSD',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7126,'OpenBSD Project',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7127,'Obsd',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7128,'Openrsync',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7129,'VSE/SP',6,591,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7130,'Z/VSE (operating system)',6,591,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7131,'VSE/ESA',6,591,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7132,'Z/VSE',6,591,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7133,'DOS/VSE',6,591,'also_known_as'); -INSERT INTO entity_mentions VALUES(7134,'ASP programming language',9,592,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7135,'Active Server Page',9,592,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7136,'ASP3',9,592,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7137,'Apache::ASP',9,592,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7138,'Active server pages',9,592,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7139,'Classic ASP',9,592,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7140,'ASP Hints',9,592,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7141,'Asp Apache',9,592,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7142,'Microsoft Disk Operating System',6,593,'also_known_as'); -INSERT INTO entity_mentions VALUES(7143,'MSDOS',6,593,'also_known_as'); -INSERT INTO entity_mentions VALUES(7144,'Microsoft DOS',6,593,'also_known_as'); -INSERT INTO entity_mentions VALUES(7145,'MS DOS',6,593,'also_known_as'); -INSERT INTO entity_mentions VALUES(7146,'MS-DOS 1.51',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7147,'Microsoft Arabic MS-DOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7148,'HP MS-DOS 3.22R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7149,'MS-DOS 3.31',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7150,'MS-DOS 5.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7151,'MS-DOS 3.3a',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7152,'MS-DOS 3.3A',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7153,'Ms-dos',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7154,'TI MS-DOS 2.12',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7155,'MS-DOS 3.30',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7156,'MS-DOS 1.52',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7157,'Ms-Dos',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7158,'TeleVideo Personal Computer DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7159,'MSN-DOS Prompt',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7160,'MS-DOS 2.5',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7161,'AST Premium Exec DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7162,'Texas Instruments MS-DOS 2.12',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7163,'MS-DOS 1.50',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7164,'MS-DOS 1.20',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7165,'Altos MS-DOS 2.11',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7166,'Microsoft Hebrew MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7167,'MS-DOS 3.22R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7168,'MS-DOS 3.4',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7169,'MSdos',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7170,'HDOS (Microsoft)',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7171,'MS-DOS 3.21R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7172,'Microsoft MS-DOS 3.30A',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7173,'Compaq MS-DOS 3.31',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7174,'TeleVideo PC DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7175,'AST Premium Exec MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7176,'NCR-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7177,'MS-DOS 7.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7178,'Microsoft ADOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7179,'MS-DOS 1.23',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7180,'Hebrew MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7181,'MS-DOS 2.25',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7182,'MS-DOS 3.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7183,'ADOS 5.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7184,'Microsoft HDOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7185,'MS-DOS 2.12',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7186,'MS-DOS 2.11',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7187,'MS-DOS Mobile',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7188,'MS-DOS 2.10',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7189,'Microsoft HDOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7190,'MS-DOS 1.27',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7191,'MS-DOS 5.01',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7192,'MS-DOS 1.11',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7193,'MS-DOS 8.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7194,'Tandy MS-DOS 2.11R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7195,'MS-DOS 6.x',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7196,'MS-DOS 2.05',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7197,'MS-DOS 3.30+',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7198,'MS-DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7199,'HDOS (MS-DOS)',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7200,'MS/DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7201,'MS-DOS 1.1',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7202,'MS-DOS 2.50',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7203,'Microsoft Arabic MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7204,'MS-DOS 3.1',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7205,'MS-DOS 1.14',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7206,'MS-DOS 2.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7207,'MS-DOS 3.3R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7208,'TeleVideo Personal Computer DOS 2.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7209,'ADOS (Microsoft)',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7210,'MS-DOS 3.40',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7211,'MS-DOS 2.13',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7212,'TeleVideo PC DOS 2.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7213,'Microsoft Arabic MS-DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7214,'AST Premium Exec MS-DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7215,'Access DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7216,'MS-DOS 3.30a',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7217,'MS-DOS 2.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7218,'PC MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7219,'MS-DOS 3.30A',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7220,'TI MS-DOS 3.30R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7221,'MS-DOS 6',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7222,'MS-DOS 5',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7223,'Microsoft MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7224,'MS-DOS 1.2',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7225,'MS-DOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7226,'ADOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7227,'Texas Instruments MS-DOS 3.3R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7228,'AST MS-DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7229,'Microsoft HDOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7230,'TI MS-DOS 3.3R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7231,'MS-DOS 4.00 (IBM-developed)',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7232,'MS-DOS 1.22',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7233,'MS-DOS 1.53',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7234,'ADOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7235,'MS-ROMDOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7236,'MS-DOS 3.25',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7237,'Hebrew MS-DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7238,'MS-DOS 1.40',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7239,'MS-DOS 3.30R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7240,'AST Premium Exec DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7241,'Texas Instruments MS-DOS 3.30R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7242,'MS-DOS 1.25',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7243,'MS-DOS 2.01',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7244,'MS-DOS 1.26',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7245,'MS-DOS 1.41',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7246,'MS-DOS 1.29',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7247,'TeleVideo Personal Computer DOS 2.11',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7248,'MS-DOS 6.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7249,'Microsoft MS-DOS 3.30a',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7250,'TeleVideo PC DOS 2.11',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7251,'SB-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7252,'Microsoft Hebrew MS-DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7253,'HDOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7254,'Hewlett-Packard MS-DOS 3.22R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7255,'MS-DOS 5.00A',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7256,'MS-DOS 6.22',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7257,'Microsoft ADOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7258,'MS-DOS 3.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7259,'MS-DOS 2.2',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7260,'Hebrew MS-DOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7261,'MS-DOS 1',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7262,'COMPAQ-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7263,'MS-DOS 3.21',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7264,'MS-DOS 3.2',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7265,'Microsoft MS-DOS 3.3A',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7266,'MS-DOS 3.22',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7267,'MS-DOS 6.21',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7268,'MS-DOS 3.20',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7269,'Microsoft ADOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7270,'MS-DOS 1.30',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7271,'MS-DOS 7.10',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7272,'MS-DOS 3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7273,'MS-DOS 4.01',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7274,'Altos MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7275,'Microsoft Hebrew MS-DOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7276,'Arabic MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7277,'MsDOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7278,'MS-DOS 1.28',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7279,'MS-DOS 2.20',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7280,'MS-DOS 1.13',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7281,'MS-DOS 1.24',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7282,'HDOS 5.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7283,'ADOS (MS-DOS)',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7284,'MS-DOS 1.21',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7285,'MS-DOS 2',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7286,'HDOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7287,'MS DOS Mobile',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7288,'MS-DOS 6.2',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7289,'MS-DOS 6.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7290,'MS-DOS 2.11R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7291,'MS-DOS 1.12',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7292,'MS-DOS 6.20',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7293,'Arabic MS-DOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7294,'Arabic MS-DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7295,'MS-DOS 4.0 (IBM-developed)',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7296,'Microsoft MS-DOS 3.3a',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7297,'MS-DOS 1.54',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7298,'MS-DOS 3.10',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7299,'CoBoL',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7300,'COBOL-85',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7301,'COBOL 20XX',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7302,'COBOL 85',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7303,'ISO/IEC 1989',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7304,'MF-COBOL',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7305,'O-O COBOL',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7306,'COBOL programming language',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7307,'COBOL-74',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7308,'COBOL 60',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7309,'ISO 1989',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7310,'COBOL 74',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7311,'COBOL74',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7312,'COBOL-68',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7313,'OO COBOL',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7314,'COBOL language',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7315,'COBOL 1985',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7316,'Common Ordinary Business-Oriented Language',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7317,'COBOL 1968',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7318,'COBOL 2014',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7319,'Object-oriented COBOL',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7320,'Common Business Oriented Language',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7321,'COBOL (programming language)',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7322,'X3J4',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7323,'COBOL68',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7324,'COBOL 1974',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7325,'COBOL85',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7326,'OO-COBOL',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7327,'COBOL-60',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7328,'COmmon Business-Oriented Language',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7329,'COBOL 1960',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7330,'COBOL 2002',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7331,'RM/COBOL',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7332,'COBOL 68',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7333,'Common Business-Oriented Language',9,594,'also_known_as'); -INSERT INTO entity_mentions VALUES(7334,'Cobol',9,594,'also_known_as'); -INSERT INTO entity_mentions VALUES(7335,'XML comment',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7336,'Xml:lang',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7337,'Well-formed XML',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7338,'XML tag set',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7339,'XML Specification',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7340,'Dynamic XML',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7341,'Extended Markup Language',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7342,'XML vocabulary',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7343,'XML feeds',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7344,'Extended markup language',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7345,'XML document',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7346,'Valid XML document',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7347,'EXtensible Markup Language',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7348,'Web3S',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7349,'Xml',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7350,'Extensible Markup Language',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7351,'XML feed',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7352,'Xml parser',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7353,'Extensible markup language',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7354,'XML parser',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7355,'Text/xml',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7356,'DOS/VS',6,597,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7357,'IBM TOS/360',6,597,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7358,'DOS/360',6,597,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7359,'Tape Operating System',6,597,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7360,'TOS/360',6,597,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7361,'SSX/VSE',6,597,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7362,'Z/TPF',6,598,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7363,'TPF/ESA',6,598,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7364,'Pascal-SC',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7365,'Pascal-P1',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7366,'Pascal (language)',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7367,'Pascal-P',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7368,'Pascal programming language',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7369,'PASCAL-XSC',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7370,'Pascal-S',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7371,'Pascal Programming Language',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7372,'PASCAL-SC',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7373,'PASCAL (Programming language)',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7374,'Pascal-P2',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7375,'Pascal-P3',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7376,'Pascal-P system',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7377,'Pascal-P System',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7378,'Pascal-F',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7379,'Pascal (command)',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7380,'Pascal-P5',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7381,'Pascal language',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7382,'Pascal-p2',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7383,'Pascal 86',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7384,'Pascal-P4',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7385,'Pascal-XSC',9,599,'also_known_as'); -INSERT INTO entity_mentions VALUES(7386,'BEA-WebLogic',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7387,'Bea Weblogic',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7388,'Oracle Weblogic',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7389,'Web Logic',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7390,'BEA AS',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7391,'BEA WebLogic',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7392,'WebLogic',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7393,'BEA Application Server',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7394,'T3Server',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7395,'DbKona',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7396,'BEA Weblogic',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7397,'Oracle WebLogic',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7398,'Weblogic',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7399,'Oracle Weblogic Server',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7400,'WebLogic Application Server',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7401,'Netbsd',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7402,'NETBSD',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7403,'Nbsd',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7404,'The NetBSD Foundation',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7405,'NBSD',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7406,'Net bsd',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7407,'Net BSD',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7408,'NetBSD kernel',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7409,'Windows Sharepoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7410,'Microsoft SharePoint Server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7411,'MOSS 2007',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7412,'Microsoft Office SharePoint Server 2007',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7413,'SharePoint 2007',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7414,'Windows sharepoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7415,'Microsoft SharePoint 2010',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7416,'SharePoint 2010',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7417,'Microsoft SharePoint 2007',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7418,'Sharepoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7419,'Share point server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7420,'SharePoint Foundation',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7421,'SharePoint services',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7422,'SharePoint Server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7423,'Sharepoint portal server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7424,'Microsoft sharepoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7425,'Windows SharePoint 2007',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7426,'Microsoft SharePoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7427,'Office SharePoint Server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7428,'Windows SharePoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7429,'MS Sharepoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7430,'Windows SharePoint Server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7431,'Sharepoint 2007',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7432,'Windows SharePoint Services',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7433,'Share Point',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7434,'Microsoft Office Sharepoint Server 2007',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7435,'Microsoft Windows SharePoint Services',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7436,'Microsoft Office SharePoint Portal Server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7437,'Microsoft Sharepoint Foundation',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7438,'Web part packager',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7439,'SharePoint Portal Server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7440,'Sharepoint services',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7441,'Sharepoint Services',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7442,'Sharepoint 2010',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7443,'Microsoft Sharepoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7444,'Windows Sharepoint Services 3',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7445,'Sharepoint server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7446,'MS SharePoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7447,'Microsoft Office SharePoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7448,'SharePointCOE',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7449,'Share point',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7450,'Sharepoint collaboration',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7451,'Microsoft SharePoint Foundation',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7452,'SharePoint Services',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7453,'Windows Sharepoint Services',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7454,'Microsoft Office SharePoint Server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7455,'Adstar Distributed Storage Manager',2,604,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7456,'Tivoli Storage Manager',2,604,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7457,'ADSM',2,604,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7458,'ADSTAR Distributed Storage Manager',2,604,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7459,'IBM Tivoli Storage Manager FastBack',2,604,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7460,'Distributed Storage Manager Client',2,604,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7461,'Spectrum Scale',2,605,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7462,'IBM Spectrum Scale',2,605,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7463,'General Parallel File System',2,605,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7464,'IBM General Parallel File System',2,605,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7465,'Vesta File System',2,605,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7466,'Arbor Software',2,607,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7467,'Hyperion Planning',2,607,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7468,'z/VM',6,608,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7469,'Microsoft IIS',8,609,'also_known_as'); -INSERT INTO entity_mentions VALUES(7470,'Microsoft Internet Information Services',8,609,'also_known_as'); -INSERT INTO entity_mentions VALUES(7471,'Internet Information Server',8,609,'also_known_as'); -INSERT INTO entity_mentions VALUES(7472,'IIS 7',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7473,'Microsoft Internet Information Server',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7474,'IIS Media Services',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7475,'Microsoft-IIS',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7476,'MS IIS',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7477,'IIS7',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7478,'IIS Media Pack',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7479,'Microsoft-iis',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7480,'Microsoft IIS server',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7481,'IIS Express',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7482,'IIS server',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7483,'Oracle OC4J',8,610,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7484,'OC4J',8,610,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7485,'Oracle Application Server 10g',8,610,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7486,'credstash',2,612,NULL); -INSERT INTO entity_mentions VALUES(7487,'Snyk',2,613,NULL); -INSERT INTO entity_mentions VALUES(7488,'Akka',2,614,NULL); -INSERT INTO entity_mentions VALUES(7489,'Akka (software)',2,614,NULL); -INSERT INTO entity_mentions VALUES(7490,'Akka (toolkit)',2,614,NULL); -INSERT INTO entity_mentions VALUES(7491,'Varnish',8,615,NULL); -INSERT INTO entity_mentions VALUES(7492,'Varnish (Software)',8,615,NULL); -INSERT INTO entity_mentions VALUES(7493,'Varinish (Software)',8,615,NULL); -INSERT INTO entity_mentions VALUES(7494,'Varnish cache',8,615,NULL); -INSERT INTO entity_mentions VALUES(7495,'Varnishd',8,615,NULL); -INSERT INTO entity_mentions VALUES(7496,'Varnish cache server',8,615,NULL); -INSERT INTO entity_mentions VALUES(7497,'Varnish-cache.org',8,615,NULL); -INSERT INTO entity_mentions VALUES(7498,'Varnish (software)',8,615,NULL); -INSERT INTO entity_mentions VALUES(7499,'Datadog',10,616,NULL); -INSERT INTO entity_mentions VALUES(7500,'API',1,617,NULL); -INSERT INTO entity_mentions VALUES(7501,'Application-programming interface',1,617,NULL); -INSERT INTO entity_mentions VALUES(7502,'Application Programming Interfaces',1,617,NULL); -INSERT INTO entity_mentions VALUES(7503,'Application-level interaction',1,617,NULL); -INSERT INTO entity_mentions VALUES(7504,'Application Program Interface',1,617,NULL); -INSERT INTO entity_mentions VALUES(7505,'Api',1,617,NULL); -INSERT INTO entity_mentions VALUES(7506,'API documentation',1,617,NULL); -INSERT INTO entity_mentions VALUES(7507,'API Documentation',1,617,NULL); -INSERT INTO entity_mentions VALUES(7508,'Application Programming Interface (API)',1,617,NULL); -INSERT INTO entity_mentions VALUES(7509,'Application program interface',1,617,NULL); -INSERT INTO entity_mentions VALUES(7510,'Applications programming interface',1,617,NULL); -INSERT INTO entity_mentions VALUES(7511,'API',1,617,NULL); -INSERT INTO entity_mentions VALUES(7512,'Hazelcast',10,618,NULL); -INSERT INTO entity_mentions VALUES(7513,'Nuxeo',10,620,NULL); -INSERT INTO entity_mentions VALUES(7514,'ArangoDB',2,621,NULL); -INSERT INTO entity_mentions VALUES(7515,'AQL (ArangoDB Query Language)',2,621,NULL); -INSERT INTO entity_mentions VALUES(7516,'AvocadoDB',2,621,NULL); -INSERT INTO entity_mentions VALUES(7517,'Eclipse Che',2,622,NULL); -INSERT INTO entity_mentions VALUES(7518,'Codenvy',2,622,NULL); -INSERT INTO entity_mentions VALUES(7519,'Amazon S3',2,623,NULL); -INSERT INTO entity_mentions VALUES(7520,'Amazon Simple Storage Service',2,623,NULL); -INSERT INTO entity_mentions VALUES(7521,'Simple Storage Service',2,623,NULL); -INSERT INTO entity_mentions VALUES(7522,'S3.amazonaws.com',2,623,NULL); -INSERT INTO entity_mentions VALUES(7523,'Amazon-s3',2,623,NULL); -INSERT INTO entity_mentions VALUES(7524,'AWS S3',2,623,NULL); -INSERT INTO entity_mentions VALUES(7525,'Applications that use S3 API',2,623,NULL); -INSERT INTO entity_mentions VALUES(7526,'User:Leoinspace/Applications that use S3 API',2,623,NULL); -INSERT INTO entity_mentions VALUES(7527,'Amazon S3 server',2,623,NULL); -INSERT INTO entity_mentions VALUES(7528,'Amazon s3',2,623,NULL); -INSERT INTO entity_mentions VALUES(7529,'Amazon Simple Storage Service',2,623,NULL); -INSERT INTO entity_mentions VALUES(7530,'S3',2,623,NULL); -INSERT INTO entity_mentions VALUES(7531,'ClickHouse',2,624,NULL); -INSERT INTO entity_mentions VALUES(7532,'Clickhouse',2,624,NULL); -INSERT INTO entity_mentions VALUES(7533,'MinIO',2,625,NULL); -INSERT INTO entity_mentions VALUES(7534,'Minio',2,625,NULL); -INSERT INTO entity_mentions VALUES(7535,'Elasticsearch',2,626,NULL); -INSERT INTO entity_mentions VALUES(7536,'Compass Project',2,626,NULL); -INSERT INTO entity_mentions VALUES(7537,'ElasticSearch',2,626,NULL); -INSERT INTO entity_mentions VALUES(7538,'Shay Banon',2,626,NULL); -INSERT INTO entity_mentions VALUES(7539,'Logstash',2,626,NULL); -INSERT INTO entity_mentions VALUES(7540,'Elastic search',2,626,NULL); -INSERT INTO entity_mentions VALUES(7541,'Elastic Search',2,626,NULL); -INSERT INTO entity_mentions VALUES(7542,'Elasticsearch BV',2,626,NULL); -INSERT INTO entity_mentions VALUES(7543,'Elastic stack',2,626,NULL); -INSERT INTO entity_mentions VALUES(7544,'ELK stack',2,626,NULL); -INSERT INTO entity_mentions VALUES(7545,'es',2,626,NULL); -INSERT INTO entity_mentions VALUES(7546,'XtraDB',2,627,NULL); -INSERT INTO entity_mentions VALUES(7547,'Xtradb',2,627,NULL); -INSERT INTO entity_mentions VALUES(7548,'Xtra DB',2,627,NULL); -INSERT INTO entity_mentions VALUES(7549,'Percona XtraDB',2,627,NULL); -INSERT INTO entity_mentions VALUES(7550,'Keycloak',2,628,NULL); -INSERT INTO entity_mentions VALUES(7551,'JBoss SSO',2,628,NULL); -INSERT INTO entity_mentions VALUES(7552,'PicketLink (software)',2,628,NULL); -INSERT INTO entity_mentions VALUES(7553,'Grafana',2,629,NULL); -INSERT INTO entity_mentions VALUES(7554,'Mattermost',10,630,NULL); -INSERT INTO entity_mentions VALUES(7555,'Mattermost.com',10,630,NULL); -INSERT INTO entity_mentions VALUES(7556,'Cloud IAM',2,632,NULL); -INSERT INTO entity_mentions VALUES(7557,'Knative',10,633,NULL); -INSERT INTO entity_mentions VALUES(7558,'Apache Cassandra',2,634,NULL); -INSERT INTO entity_mentions VALUES(7559,'Apache cassandra',2,634,NULL); -INSERT INTO entity_mentions VALUES(7560,'Cassandra (database)',2,634,NULL); -INSERT INTO entity_mentions VALUES(7561,'Cassandra (software)',2,634,NULL); -INSERT INTO entity_mentions VALUES(7562,'Cassandra software',2,634,NULL); -INSERT INTO entity_mentions VALUES(7563,'Cassandra',2,634,NULL); -INSERT INTO entity_mentions VALUES(7564,'Kubeflow',10,635,NULL); -INSERT INTO entity_mentions VALUES(7565,'Qiskit',2,636,NULL); -INSERT INTO entity_mentions VALUES(7566,'QISKit',2,636,NULL); -INSERT INTO entity_mentions VALUES(7567,'Microsoft Azure',2,637,NULL); -INSERT INTO entity_mentions VALUES(7568,'Windows Strata',2,637,NULL); -INSERT INTO entity_mentions VALUES(7569,'Windows Cloud',2,637,NULL); -INSERT INTO entity_mentions VALUES(7570,'Windows azure',2,637,NULL); -INSERT INTO entity_mentions VALUES(7571,'Windows Azure Fabric Controller',2,637,NULL); -INSERT INTO entity_mentions VALUES(7572,'Microsoft Windows Azure',2,637,NULL); -INSERT INTO entity_mentions VALUES(7573,'Azure Services Platform',2,637,NULL); -INSERT INTO entity_mentions VALUES(7574,'Windows Azure',2,637,NULL); -INSERT INTO entity_mentions VALUES(7575,'Azure machine learning studio',2,637,NULL); -INSERT INTO entity_mentions VALUES(7576,'Microsoft azure',2,637,NULL); -INSERT INTO entity_mentions VALUES(7577,'Ethereum Blockchain as a Service',2,637,NULL); -INSERT INTO entity_mentions VALUES(7578,'Windows Azure',2,637,NULL); -INSERT INTO entity_mentions VALUES(7579,'Azure',2,637,NULL); -INSERT INTO entity_mentions VALUES(7580,'Strimzi',10,638,NULL); -INSERT INTO entity_mentions VALUES(7581,'Sematext',10,639,NULL); -INSERT INTO entity_mentions VALUES(7582,'Eclipse Ditto',2,641,NULL); -INSERT INTO entity_mentions VALUES(7583,'Zadara',2,643,NULL); -INSERT INTO entity_mentions VALUES(7584,'Zadara Storage',2,643,NULL); -INSERT INTO entity_mentions VALUES(7585,'Istio',2,644,NULL); -INSERT INTO entity_mentions VALUES(7586,'Vault',2,645,NULL); -INSERT INTO entity_mentions VALUES(7587,'Vault overseer',2,645,NULL); -INSERT INTO entity_mentions VALUES(7588,'Vault (disambiguation)',2,645,NULL); -INSERT INTO entity_mentions VALUES(7589,'Vaults',2,645,NULL); -INSERT INTO entity_mentions VALUES(7590,'Vault (software)',2,645,NULL); -INSERT INTO entity_mentions VALUES(7591,'HashiCorp Vault',2,645,NULL); -INSERT INTO entity_mentions VALUES(7592,'Apache Druid',2,646,NULL); -INSERT INTO entity_mentions VALUES(7593,'Druid (open-source data store)',2,646,NULL); -INSERT INTO entity_mentions VALUES(7594,'etcd',2,647,NULL); -INSERT INTO entity_mentions VALUES(7595,'Traefik',8,648,NULL); -INSERT INTO entity_mentions VALUES(7596,'IBM Cloud',2,649,NULL); -INSERT INTO entity_mentions VALUES(7597,'Bluemix',2,649,NULL); -INSERT INTO entity_mentions VALUES(7598,'IBM Bluemix',2,649,NULL); -INSERT INTO entity_mentions VALUES(7599,'OpenWhisk',2,649,NULL); -INSERT INTO entity_mentions VALUES(7600,'CockroachDB',2,651,NULL); -INSERT INTO entity_mentions VALUES(7601,'Cockroach DB',2,651,NULL); -INSERT INTO entity_mentions VALUES(7602,'User:Remote50/sandbox',2,651,NULL); -INSERT INTO entity_mentions VALUES(7603,'Cockroachlabs',2,651,NULL); -INSERT INTO entity_mentions VALUES(7604,'Cockroach Labs',2,651,NULL); -INSERT INTO entity_mentions VALUES(7605,'Jaeger',10,652,NULL); -INSERT INTO entity_mentions VALUES(7606,'NATURAL',9,653,'others'); -INSERT INTO entity_mentions VALUES(7607,'NPL',9,653,'others'); -INSERT INTO entity_mentions VALUES(7608,'Natural Programming Language',9,653,'others'); -INSERT INTO entity_mentions VALUES(7609,'ACUCOBOL-GT',9,654,'also_known_as'); -INSERT INTO entity_mentions VALUES(7610,'ACUCOBOL',9,654,'also_known_as'); -INSERT INTO entity_mentions VALUES(7611,'AcuCOBOL',9,654,'also_known_as'); -INSERT INTO entity_mentions VALUES(7612,'Ada',9,655,'also_known_as'); -INSERT INTO entity_mentions VALUES(7613,'MIL-STD-1815',9,655,'also_known_as'); -INSERT INTO entity_mentions VALUES(7614,'ISO/IEC 8652',9,655,'also_known_as'); -INSERT INTO entity_mentions VALUES(7615,'Ada 95',9,655,'also_known_as'); -INSERT INTO entity_mentions VALUES(7616,'Ada 83',9,655,'also_known_as'); -INSERT INTO entity_mentions VALUES(7617,'Ada 80',9,655,'also_known_as'); -INSERT INTO entity_mentions VALUES(7618,'Ada 2012',9,655,'also_known_as'); -INSERT INTO entity_mentions VALUES(7619,'Adaptable DAta BAse System',2,656,'also_known_as'); -INSERT INTO entity_mentions VALUES(7620,'ADABAS',2,656,'also_known_as'); -INSERT INTO entity_mentions VALUES(7621,'Adabas database',2,656,'also_known_as'); -INSERT INTO entity_mentions VALUES(7622,'Application Development System Online',9,657,'also_known_as'); -INSERT INTO entity_mentions VALUES(7623,'ADS/O',9,657,'also_known_as'); -INSERT INTO entity_mentions VALUES(7624,'ADS',9,657,'also_known_as'); -INSERT INTO entity_mentions VALUES(7625,'ADS/Online',9,657,'also_known_as'); -INSERT INTO entity_mentions VALUES(7626,'Ansible',2,5,'also_known_as'); -INSERT INTO entity_mentions VALUES(7627,'Ansible Software',2,5,'also_known_as'); -INSERT INTO entity_mentions VALUES(7628,'batch',9,659,'also_known_as'); -INSERT INTO entity_mentions VALUES(7629,'BAT file',9,659,'also_known_as'); -INSERT INTO entity_mentions VALUES(7630,'batch file',9,659,'also_known_as'); -INSERT INTO entity_mentions VALUES(7631,'Windows PowerShell',9,660,'also_known_as'); -INSERT INTO entity_mentions VALUES(7632,'PowerShell Core',9,660,'also_known_as'); -INSERT INTO entity_mentions VALUES(7633,'PS',9,660,'also_known_as'); -INSERT INTO entity_mentions VALUES(7634,'Power Shell',9,660,'also_known_as'); -INSERT INTO entity_mentions VALUES(7635,'Monal Shell',9,660,'also_known_as'); -INSERT INTO entity_mentions VALUES(7636,'Microsoft Shell',9,660,'also_known_as'); -INSERT INTO entity_mentions VALUES(7637,'MSH',9,660,'also_known_as'); -INSERT INTO entity_mentions VALUES(7638,'COM+',9,661,'also_known_as'); -INSERT INTO entity_mentions VALUES(7639,'Microsoft Component Services',9,661,'also_known_as'); -INSERT INTO entity_mentions VALUES(7640,'COM Services',9,661,'also_known_as'); -INSERT INTO entity_mentions VALUES(7641,'DataFlex',9,662,'also_known_as'); -INSERT INTO entity_mentions VALUES(7642,'Dataflex',9,662,'also_known_as'); -INSERT INTO entity_mentions VALUES(7643,'Visual DataFlex',9,662,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7644,'DDS',9,663,'also_known_as'); -INSERT INTO entity_mentions VALUES(7645,'Data distribution service',9,663,'also_known_as'); -INSERT INTO entity_mentions VALUES(7646,'Forte 4GL',9,664,'also_known_as'); -INSERT INTO entity_mentions VALUES(7647,'Forte',9,664,'also_known_as'); -INSERT INTO entity_mentions VALUES(7648,'FoxPro',9,665,'also_known_as'); -INSERT INTO entity_mentions VALUES(7649,'Foxpro',9,665,'also_known_as'); -INSERT INTO entity_mentions VALUES(7650,'FoxPro 2',9,665,'also_known_as'); -INSERT INTO entity_mentions VALUES(7651,'FoxPro 26',9,665,'also_known_as'); -INSERT INTO entity_mentions VALUES(7652,'FoxPro 2.6',9,665,'also_known_as'); -INSERT INTO entity_mentions VALUES(7653,'FPU26',9,665,'also_known_as'); -INSERT INTO entity_mentions VALUES(7654,'IBM DB2 Purescale',2,666,'others'); -INSERT INTO entity_mentions VALUES(7655,'DB2 Purescale',2,666,'others'); -INSERT INTO entity_mentions VALUES(7656,'IDMS DB',2,667,'others'); -INSERT INTO entity_mentions VALUES(7657,'IDMS Database',2,667,'others'); -INSERT INTO entity_mentions VALUES(7658,'IDMS/DB Database',2,667,'others'); -INSERT INTO entity_mentions VALUES(7659,'IDMS/DB DML',9,668,'others'); -INSERT INTO entity_mentions VALUES(7660,'IDMS/DB Data Manipulation Language',9,668,'others'); -INSERT INTO entity_mentions VALUES(7661,'IDMS DML',9,668,'others'); -INSERT INTO entity_mentions VALUES(7662,'Jaguar',8,669,'others'); -INSERT INTO entity_mentions VALUES(7663,'EAServer',8,670,'also_known_as'); -INSERT INTO entity_mentions VALUES(7664,'Enterprise Application Server',8,670,'also_known_as'); -INSERT INTO entity_mentions VALUES(7665,'Sybase Enterprise Application Server',8,670,'also_known_as'); -INSERT INTO entity_mentions VALUES(7666,'Apache Cassandra',2,634,'also_known_as'); -INSERT INTO entity_mentions VALUES(7667,'Cassandra',2,634,'also_known_as'); -INSERT INTO entity_mentions VALUES(7668,'Cassandra SGBD',2,634,'also_known_as'); -INSERT INTO entity_mentions VALUES(7669,'Netezza',4,672,'also_known_as'); -INSERT INTO entity_mentions VALUES(7670,'IBM Netezza',4,672,'also_known_as'); -INSERT INTO entity_mentions VALUES(7671,'OpenEdge',9,673,'also_known_as'); -INSERT INTO entity_mentions VALUES(7672,'Progress 4GL',9,673,'also_known_as'); -INSERT INTO entity_mentions VALUES(7673,'Progress',9,673,'also_known_as'); -INSERT INTO entity_mentions VALUES(7674,'OpenEdge Advanced Business Language',9,673,'also_known_as'); -INSERT INTO entity_mentions VALUES(7675,'OpenEdge ABL',9,673,'also_known_as'); -INSERT INTO entity_mentions VALUES(7676,'Open Rapid Object Application Development',9,674,'also_known_as'); -INSERT INTO entity_mentions VALUES(7677,'Oracle Reports',2,675,'also_known_as'); -INSERT INTO entity_mentions VALUES(7678,'Oracle RPT',2,675,'also_known_as'); -INSERT INTO entity_mentions VALUES(7679,'Oracle Reports 1',2,675,'others'); -INSERT INTO entity_mentions VALUES(7680,'Oracle Reports 2.0',2,675,'others'); -INSERT INTO entity_mentions VALUES(7681,'Oracle Reports 2.5',2,675,'others'); -INSERT INTO entity_mentions VALUES(7682,'Oracle Reports 6i',2,675,'others'); -INSERT INTO entity_mentions VALUES(7683,'Oracle Reports 9i',2,675,'others'); -INSERT INTO entity_mentions VALUES(7684,'Oracle Reports 10g',2,675,'others'); -INSERT INTO entity_mentions VALUES(7685,'SAP Replication Server',2,676,'others'); -INSERT INTO entity_mentions VALUES(7686,'content tracker',2,677,'also_known_as'); -INSERT INTO entity_mentions VALUES(7687,'Git',2,677,'also_known_as'); -INSERT INTO entity_mentions VALUES(7688,'the stupid content tracker',2,677,'also_known_as'); -INSERT INTO entity_mentions VALUES(7689,'gitlab',2,678,'also_known_as'); -INSERT INTO entity_mentions VALUES(7690,'Virtual Storage Access Method',2,679,'also_known_as'); -INSERT INTO entity_mentions VALUES(7691,'VSAM',2,679,'also_known_as'); -INSERT INTO entity_mentions VALUES(7692,'BMS Map',9,689,'others'); -INSERT INTO entity_mentions VALUES(7693,'Basic Mapping Supprt',9,689,'others'); -INSERT INTO entity_mentions VALUES(7694,'BMS',9,689,'others'); -INSERT INTO entity_mentions VALUES(7695,'DB400',2,690,'others'); -INSERT INTO entity_mentions VALUES(7696,'DB/400',2,690,'others'); -INSERT INTO entity_mentions VALUES(7697,'Integrated Language Environment',9,691,'also_known_as'); -INSERT INTO entity_mentions VALUES(7698,'ILE',9,691,'also_known_as'); -INSERT INTO entity_mentions VALUES(7699,'indexed sequential access method',2,693,'also_known_as'); -INSERT INTO entity_mentions VALUES(7700,'ISAM',2,693,'also_known_as'); -INSERT INTO entity_mentions VALUES(7701,'IBM ISAM',2,693,'others'); -INSERT INTO entity_mentions VALUES(7702,'Oracle RDS',2,694,'others'); -INSERT INTO entity_mentions VALUES(7703,'RDS Oracle DB',2,694,'others'); -INSERT INTO entity_mentions VALUES(7704,'Oracle RDS Database',2,694,'others'); -INSERT INTO entity_mentions VALUES(7705,'SAP IQ',2,695,'also_known_as'); -INSERT INTO entity_mentions VALUES(7706,'Sybase IQ',2,695,'also_known_as'); -INSERT INTO entity_mentions VALUES(7707,'SAP Sybase IQ',2,695,'also_known_as'); -INSERT INTO entity_mentions VALUES(7708,'z/Linux',2,437,'also_known_as'); -INSERT INTO entity_mentions VALUES(7709,'Linux on IBM Z',2,437,'also_known_as'); -INSERT INTO entity_mentions VALUES(7710,'Integrated Data Store (IDS)',2,692,'also_known_as'); -INSERT INTO entity_mentions VALUES(7711,'IDS',2,692,'also_known_as'); -INSERT INTO entity_mentions VALUES(7712,'IDS/I',2,692,'also_known_as'); -INSERT INTO entity_mentions VALUES(7713,'Springboot',12,399,'others'); -INSERT INTO entity_mentions VALUES(7714,'Apache Maven',2,697,'others'); -INSERT INTO entity_mentions VALUES(7715,'Maven',2,697,'also_known_as'); -INSERT INTO entity_mentions VALUES(7716,'BAL',9,698,'also_known_as'); -INSERT INTO entity_mentions VALUES(7717,'Basic Assembler Language',9,698,'also_known_as'); -INSERT INTO entity_mentions VALUES(7718,'Basic Assembly Language',9,698,'also_known_as'); -INSERT INTO entity_mentions VALUES(7719,'IBM Basic assembly language',9,698,'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1, 'DOT NET', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2, '.NET 4.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3, 'Dot net - FW 4', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4, '.Net 4.7.1 Enterprise Lib', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5, '.Net 3.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6, '.NET4.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7, '.NET Framework 4.x', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (8, 'Microsoft - Microsoft .NET Framework 2', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (9, 'Microsoft - Microsoft .NET Framework 3.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (10, '.NET 3.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (11, 'Dot Net Framework 3.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (12, '.NET', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (13, '.NET 4', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (14, '.Net 4.5.2 Enterprise Lib', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (15, '.NET2.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (16, 'DOTNET', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (17, 'Microsoft .NET Release 1.1', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (18, '.Net 4.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (19, '.NET 2.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (20, '.Net Framework 4.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (21, 'Microsoft .NET 4.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (22, '.net 2017', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (23, '.Net framework', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (24, 'Microsoft .NET Framework 4.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (25, '.net 4.0 Framework', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (26, 'Microsoft.NET 2.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (27, '.Net 4.5.2', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (28, '.NET 4.6', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (29, 'Microsoft - Microsoft .NET Framework 4', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (30, '.NET4.6', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (31, 'Microsoft - Microsoft .NET Framework 4.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (32, 'Dot Net Framework 4.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (33, 'Microsoft - Microsoft .NET Framework 3', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (34, 'Microsoft - Microsoft .Net Framework 1', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (35, 'Microsoft .NET Release 4.6', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (36, '.net Framework 3.5 SP1', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (37, 'Microsoft.net', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (38, 'Microsoft .NET', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (39, 'Microsoft .NET Release 2.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (40, 'Dot Net 2.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (41, 'Common Runtime Library', 7, 482, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (42, 'APACHE LOG4NET', 7, 483, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (43, 'LOG4NET', 7, 483, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (44, 'Magik', 7, 484, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (45, 'Magick.NET', 7, 484, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (46, 'WCF', 7, 485, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (47, 'Windows Communication Foundation', 7, 485, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (48, 'Windows Communication Foundation (WCF)', 7, 485, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (49, 'WWF', 7, 486, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (50, 'Windows Workflow Foundation (WF)', 7, 486, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (51, 'Windows Workflow Foundation', 7, 486, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (52, 'WinForms', 7, 487, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (53, 'Ejes', 2, 1, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (54, '(E)JES', 2, 1, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (55, '(UNIRITA) A-AUTO 7.2.2', 2, 2, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (56, 'A-AUTO', 2, 2, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (57, 'A-Auto Job Scheduling Software', 2, 2, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (58, 'Active Directoy', 10, 498, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (59, 'Active Directory (AD)', 10, 498, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (60, 'Active Server Page', 10, 499, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (61, 'ASPNet', 10, 499, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (62, 'Microsoft Active Server Pages 6.0', 10, 499, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (63, 'APSX', 10, 499, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (64, 'ASP .NET', 10, 499, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (65, 'Microsoft Active Server Pages', 10, 499, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (66, 'Microsoft ASP files', 10, 499, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (67, 'Active Server Pages (ASP)', 10, 499, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (68, 'ASP', 10, 499, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (69, 'Classic ASP', 10, 499, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (70, 'Classis ASP', 10, 499, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (71, 'ASP 3.0', 10, 499, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (72, 'ASP.NET', 10, 499, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (73, 'ASPX', 10, 499, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (74, 'ASP.NET 1.0.3705', 10, 499, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (75, 'ActiveX', 10, 500, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (76, 'ADO', 7, 488, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (77, 'Activiti', 2, 3, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (78, 'Adobe Acrobat Reader', 2, 4, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (79, 'Acrobat Reader', 2, 4, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (80, 'Adobe - Adobe Acrobat Reader DC 2019', 2, 4, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (81, 'Adobe Acrobat Reader DC 2019', 2, 4, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (82, 'Android', 6, 418, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (83, 'Android SDK', 6, 418, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (84, 'Andriod', 6, 418, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (85, 'ansible', 2, 5, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (86, 'Apache ActiveMQ', 2, 6, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (87, 'Apache Active Queue', 2, 6, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (88, 'MQ Apache Active Queue', 2, 6, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (89, 'Cordova', 10, 501, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (90, 'Cordova framework', 10, 501, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (91, 'Apache Cordova', 10, 501, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (92, 'cordova-android', 10, 501, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (93, 'Apache Hbase', 2, 7, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (94, 'Hbase', 2, 7, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (95, 'Hive', 2, 8, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (96, 'Apache Hive', 2, 8, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (97, 'Apache HTTP Server 2.0', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (98, 'Apache HTTP Server 2.2 (Linux)', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (99, 'Apache HTTP Server 2.4 (Linux)', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (100, 'APACHE HTTP SERVER VERSION 2.2.13', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (101, 'TS-Apache HTTP Server 2.4', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (102, 'Apache', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (103, 'Apache Web Server', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (104, 'Apache 2.4', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (105, 'Apache HTTP Server 2.0 (Solaris)', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (106, 'APACHE HTTP SERVER VERSION 1.3', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (107, 'APACHE WEB SERVER VERSION 1.3.27', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (108, 'Apache WebServer', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (109, 'Apache HTTP Server 2.4', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (110, 'Apache 3', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (111, 'Apache Instance', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (112, 'Apache HTTP Server 2.0 (Linux)', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (113, 'Apache 2.4 - 32 bit', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (114, 'Apache HTTP Server 2.2', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (115, 'Apache HTTP Server', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (116, 'Apache Kafka', 2, 9, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (117, 'kafka', 2, 9, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (118, 'Apache Lucene', 12, 375, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (119, 'Lucene', 12, 375, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (120, 'ServiceMix', 2, 10, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (121, 'Apache ServiceMix', 2, 10, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (122, 'Apache Solr', 2, 11, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (123, 'solr', 2, 11, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (124, 'Subversion', 2, 12, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (125, 'Apache Subversion', 2, 12, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (126, 'Subversion software', 2, 12, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (127, 'Tomcat 8', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (128, 'APACHE TOMCAT VERSION 6', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (129, 'Tomcat 3', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (130, 'Apache Tomcat 6 (Linux)', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (131, 'Apache Tomcat', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (132, 'Apache Tomcat 3 (Linux)', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (133, 'tomcat', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (134, 'Tomcat 3/4/5/6/7', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (135, 'Apache Tomcat 7', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (136, 'Apache Software Foundation - Apache Tomcat 8.5', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (137, 'Tomcat 7', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (138, 'APACHE TOMCAT VERSION 7', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (139, 'Tomcat 6', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (140, 'Tomcat 8.0.33', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (141, 'Tomcat 7.0', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (142, 'Tomcat 9', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (143, 'Tomcat 4', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (144, 'Apache Software Foundation - Apache Tomcat 9', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (145, 'Apache Software Foundation - Apache Tomcat 7', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (146, 'Apache Tomcat 6', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (147, 'Apache Tomcat 8', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (148, 'Tomcat 8/9', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (149, 'Apache Tomcat 8.5.15', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (150, 'Apache Tomcat 9', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (151, 'Apache Software Foundation - Apache Tomcat 8', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (152, 'Apache Tomcat 1', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (153, 'Tomcat 5', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (154, 'Apache Tomcat 3', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (155, 'Apache Tomcat 8 (Linux)', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (156, 'APACHE TOMCAT VERSION 6.0', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (157, 'Apache Tomcat 5', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (158, 'Apache tomcat 9.0.12', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (159, 'Apache xerces', 12, 376, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (160, 'XERCES', 12, 376, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (161, 'Application Development Facility (ADF)', 2, 13, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (162, 'ADF', 2, 13, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (163, 'ADF (Application Development Facility)', 2, 13, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (164, 'Application Development Facility', 2, 13, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (165, 'ArcGIS Server 10.3.1', 8, 261, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (166, 'ArcGIS Server', 8, 261, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (167, 'Asterisk 1.8', 2, 14, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (168, 'Asterisk', 2, 14, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (169, 'AutoIt 3.3', 9, 299, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (170, 'AutoIt', 9, 299, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (171, 'AutoiIt', 9, 299, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (172, 'Automic - UC4', 2, 15, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (173, 'Automic Job Scheduler', 2, 15, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (174, 'Autosys', 2, 16, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (175, 'AWK', 9, 300, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (176, 'basic', 9, 301, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (177, 'WLS 10.2', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (178, 'BEA WebLogic Enterprise (WLE)', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (179, 'Oracle Weblogic 12.2.1.3.0', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (180, 'Oracle Weblogic 12c', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (181, 'Oracle Weblogic 12.2.1.2.0', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (182, 'BEA WLS', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (183, 'Weblogic 9.2.0.0', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (184, 'BEA WebLogic Server', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (185, 'Weblogic 12c', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (186, 'Oracle WebLogic Server 12', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (187, 'Weblogic 10.1 MP1', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (188, 'BEA WebLogic Server 8', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (189, 'Oracle WebLogic Server', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (190, 'WEBLOGIC-SERVER', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (191, 'Weblogic 12.2.1.2', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (192, 'Oracle WebLogic Server 12 (Linux)', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (193, 'Weblogic 12.2.1.3.0', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (194, 'WLE', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (195, 'Weblogic 10.3.0.0', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (196, 'Weblogic 12.1.3.0', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (197, 'Weblogic', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (198, 'Oracle WebLogic Server 10', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (199, 'ORACLE WEBLOGIC SERVER 10.3', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (200, 'Weblogic Server', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (201, 'Oracle Weblogic 8.1.1', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (202, 'Web Logic', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (203, 'Oracle Weblogic 12.x', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (204, 'BEA WEBLOGIC SERVER VERSION 7', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (205, 'Oracle Weblogic Server 12c', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (206, 'Weblogic 10.3.6.0', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (207, 'Oracle Weblogic 12.1.2', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (208, 'BEA WLE', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (209, 'WLS 10', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (210, 'WLS', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (211, 'WebLogic', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (212, 'ORACLE WEBLOGIC SERVER VERSION 10.3', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (213, 'Weblogic 12.2.1.1', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (214, 'BEA Weblogic', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (215, 'Oracle Weblogic 12.1', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (216, 'Weblogic 10', 8, 262, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (217, 'BeOS', 6, 419, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (218, 'Bluebeam Q', 2, 17, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (219, 'BMC Control-M CM For SAP 6.2', 2, 18, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (220, 'BMC Control-M', 2, 18, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (221, 'BMC Identity Management', 2, 19, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (222, 'IDM-BMC Identity Management', 2, 19, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (223, 'Borland Database Engine', 2, 20, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (224, 'Borland - BDE Administrator 1', 2, 20, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (225, 'Borland Database Engine (BDE)', 2, 20, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (226, 'Borland - BDE Administrator 5.2', 2, 20, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (227, 'brain script', 9, 302, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (228, 'BRAINScript', 9, 302, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (229, 'Business Intelligence and Reporting Tools', 2, 21, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (230, 'Actuate Report Server', 2, 21, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (231, 'BIRT', 2, 21, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (232, 'Business Intelligence and Reporting Tools (BIRT)', 2, 21, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (233, 'C', 9, 303, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (234, 'CSHARP', 9, 304, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (235, 'C# 3.0', 9, 304, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (236, 'C#', 9, 304, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (237, 'c-sharp', 9, 304, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (238, 'C+', 9, 305, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (239, 'C++', 9, 305, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (240, 'vc++', 9, 306, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (241, 'MSVC', 9, 306, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (242, 'Visual C++ 2008', 9, 306, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (243, 'Microsoft Visual C++', 9, 306, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (244, 'Visual C++', 9, 306, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (245, 'Microsoft - Microsoft Visual C++ 2008 Redistributable (x64) 9', 9, 306, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (246, 'vc', 9, 306, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (247, 'CA API Gateway', 4, 290, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (248, 'CA Gen 8', 2, 22, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (249, 'CA Gen', 2, 22, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (250, 'CA Technologies - Computer Associates Introscope 8.2', 2, 23, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (251, 'Introscope', 2, 23, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (252, 'CA Technologies - Computer Associates Introscope', 2, 23, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (253, 'CA Introscope', 2, 23, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (254, 'CA-Panvalet', 2, 24, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (255, 'Panvalet', 2, 24, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (256, 'Telon', 2, 25, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (257, 'CA-TELON', 2, 25, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (258, 'CSS 3', 9, 307, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (259, 'Style Sheet', 9, 307, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (260, 'Cascading Style Sheets', 9, 307, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (261, 'Cascading Style Sheets (CSS)', 9, 307, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (262, 'CSS', 9, 307, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (263, 'Bootstrap', 12, 377, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (264, 'Casegen', 2, 26, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (265, 'Chef Automate', 2, 27, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (266, 'CICS', 10, 502, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (267, 'Cisco AMP for Endpoints', 2, 28, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (268, 'Cisco Systems Inc. - Cisco AMP for Endpoints Connector 6.1', 2, 28, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (269, 'Cisco IOS', 6, 420, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (270, 'CiscoWorks', 2, 29, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (271, 'CISCO CISCOWORKS', 2, 29, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (272, 'CiscoWorks LAN Management Solution (LMS)', 2, 29, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (273, 'CiscoWorks LAN Management Solution', 2, 29, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (274, 'WinFrame', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (275, 'Citrix Virtual Apps', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (276, 'Citrix Managed Desktops', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (277, 'METAFRAME', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (278, 'XenApp', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (279, 'Citrix Metaframe', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (280, 'Citrix Server', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (281, 'Citrix Virtual Apps and Desktops', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (282, 'Presentation Server', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (283, 'NETSCALER-1.5', 3, 563, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (284, 'NETSCALER-11.', 3, 563, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (285, 'Citrix SD-WAN', 3, 563, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (286, 'NetScaler SD-WAN', 3, 563, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (287, 'Citrix NetScaler ADC', 3, 563, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (288, 'Citrix ADC', 3, 563, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (289, 'NetScaler ADC', 3, 563, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (290, 'NetScaler ADC VPX', 3, 564, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (291, 'Citrix ADC VPX', 3, 564, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (292, 'NetScaler VPX', 3, 564, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (293, 'Citrix NetScaler VPX', 3, 564, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (294, 'Citrix ADC BLX', 3, 565, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (295, 'NetScaler CPX', 2, 31, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (296, 'Citrix ADC CPX', 2, 31, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (297, 'Citrix ADC SDX', 4, 291, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (298, 'NetScaler SDX', 4, 291, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (299, 'Citrix ADC MPX', 4, 292, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (300, 'NetScaler MPX', 4, 292, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (301, 'Citrix Provisioning', 2, 32, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (302, 'Citrix Provisioning 2006', 2, 32, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (303, 'Citrix Provisioning Services', 2, 32, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (304, 'Provisioning Services 7.15.8', 2, 32, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (305, 'Citrix PVS', 2, 32, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (306, 'Clarify', 2, 33, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (307, 'Clear Basic', 5, 455, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (308, 'Clarify ClearBasic', 5, 455, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (309, 'Clarity LIMS', 2, 34, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (310, 'LabWare LIMS', 2, 35, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (311, 'Clipper', 9, 308, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (312, 'CLISTS', 9, 309, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (313, 'CLIST', 9, 309, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (314, 'COBOL II', 9, 310, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (315, 'COBOL', 9, 310, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (316, 'Cobol Assembler', 9, 310, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (317, 'IBM COGNOS BUSINESS INTELLIGENCE SERVER VERSION 10.2', 2, 36, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (318, 'IBM - COGNOS', 2, 36, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (319, 'IBM Cognos', 2, 36, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (320, 'Cognos', 2, 36, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (321, 'IBM Cognos ICM', 2, 36, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (322, 'Cold Fusion', 2, 37, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (323, 'Coldfusion Webserver', 2, 37, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (324, 'Coldfusion', 2, 37, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (325, 'ColdFus', 2, 37, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (326, 'CFML', 9, 311, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (327, 'ColdFusion Markup Language', 9, 311, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (328, 'ColdFusion Markup Language (CFML)', 9, 311, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (329, 'ConceptWave', 2, 38, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (330, 'CONNAPI', 2, 39, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (331, 'Sterling Connect', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (332, 'Connect Direct 4.5', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (333, 'IBM Sterling Connect:Direct', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (334, 'Connect:Direct', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (335, 'Connect Direct File agent', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (336, 'Connect Direct', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (337, 'IBM Sterling Connect:Direct vX', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (338, 'Sterling Connect:Direct', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (339, 'Connect Direct 4.5, 4.6', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (340, 'Connect Direct 4.6', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (341, 'Cormerstone', 2, 41, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (342, 'Cornerstone software', 2, 41, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (343, 'Cornerstone', 2, 41, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (344, 'Crystal Report', 2, 42, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (345, 'Crystal', 2, 42, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (346, 'Crystal Reports', 2, 42, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (347, 'DART', 6, 421, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (348, 'DL/I', 9, 312, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (349, 'Data Language/I', 9, 312, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (350, 'Data Language Interface (DL/I)', 9, 312, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (351, 'Data Language/One', 9, 312, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (352, 'Data Language/Interface', 9, 312, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (353, 'Dl1', 9, 312, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (354, 'Data Language Interface', 9, 312, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (355, 'DB2/400', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (356, 'IBM DB2 UDB/LUW ENTERPRISE SERVER EDITION DB2 v9.7 FP11 SB 37314', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (357, 'IBM - IBM DB2 Advanced Workgroup Server Edition OEM Limited Use 11.1', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (358, 'DB2 ESE 10.1', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (359, 'IBM - IBM DB2 Enterprise Server Edition - CPU Option 9.7', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (360, 'DB2 UDB', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (361, 'DB2', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (362, 'DB2 V9', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (363, 'IBM DB', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (364, 'DB2-UDB', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (365, 'DB2 11.1', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (366, 'IBM-DB2-V9', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (367, 'IBM - IBM DB2 Advanced Enterprise Server Edition OEM Limited Use 11.1', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (368, 'IBM - IBM DB2 Personal Edition Product Trial 9.7', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (369, 'IBM - IBM DB2 Enterprise Server Edition - CPU Option 10.1', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (370, 'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.*', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (371, 'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.7', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (372, 'IBM DB2 UDB/LUW ENTERPRISE SERVER EDITION DB2 ESE v9.7 FP 11 Special Build 35826 37314', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (373, 'DB2/UDB', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (374, 'IBM DB2 ENTERPRISE SERVER EDITION PVU OPTION 10.5', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (375, 'DB2 10.5', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (376, 'DB2 9.7', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (377, 'DB2 9.1', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (378, 'IBM - IBM DB2 UDB Enterprise Server Edition 8.2', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (379, 'DB2 for i', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (380, 'IBM - IBM DB2 Enterprise Server Edition OEM Limited Use 10.5', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (381, 'IBM - IBM DB2 Storage Optimization Feature 9.7', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (382, 'IBM - IBM DB2 Advanced Enterprise Server Edition PVU Option 10.5', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (383, 'UDB', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (384, 'IBM - IBM DB2 Enterprise Server Edition Product Trial 9.7', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (385, 'DB2 ESE 10.5', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (386, 'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.5', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (387, 'IBM DB2', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (388, 'IBM - IBM DB2 Workgroup Server Edition Product Trial 9.7', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (389, 'Delphi', 9, 313, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (390, 'docker', 10, 503, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (391, 'Documentum D2', 2, 44, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (392, 'Documentum content server', 2, 44, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (393, 'Documentum', 2, 44, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (394, 'DOCUMENTUM-CS', 2, 44, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (395, 'DRUPAL', 2, 45, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (396, 'Easytrieve', 9, 314, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (397, 'EZTriev', 9, 314, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (398, 'Eztrieve', 9, 314, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (399, 'Eclipse', 2, 46, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (400, 'ATLAS Transformation Language', 5, 456, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (401, 'ATL', 5, 456, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (402, 'ATLAS Transformation Language (ATL)', 5, 456, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (403, 'Elastic (ELK) Stack', 2, 47, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (404, 'ELK', 2, 47, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (405, 'EMC Celerra', 11, 510, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (406, 'ETAP License Manager (LM)', 2, 48, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (407, 'ETAP Licensing Manager/TARO GJH', 2, 48, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (408, 'ETAP License Manager', 2, 48, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (409, 'ETAP License Manager GJH', 2, 48, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (410, 'PrestoSoft - ExamDiff Application 1.6', 2, 49, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (411, 'PrestoSoft - ExamDiff Application', 2, 49, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (412, 'ExamDiff', 2, 49, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (413, 'ExamDiff Application', 2, 49, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (414, 'Expect', 9, 315, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (415, 'Expect Scripts', 9, 315, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (416, 'eXtensible HyperText Markup Language (XHTML)', 9, 316, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (417, 'eXtensible HyperText Markup Language', 9, 316, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (418, 'XHTML', 9, 316, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (419, 'XML', 9, 317, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (420, 'Extensible Markup Language', 9, 317, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (421, 'Extensible Markup Language (XML)', 9, 317, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (422, 'MSXML', 9, 318, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (423, 'Microsoft - MSXML 4.0 SP2 4.2', 9, 318, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (424, 'Extensible Stylesheet Language', 9, 319, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (425, 'XSL', 9, 319, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (426, 'Extensible Stylesheet Language (XSL)', 9, 319, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (427, 'Extensible Stylesheet Language Transformations (XLST)', 9, 320, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (428, 'Extensible Stylesheet Language Transformations', 9, 320, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (429, 'XSLT', 9, 320, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (430, 'ServerCA Access GatewayF5', 2, 50, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (431, 'F5 Secure Web Gateway Services', 2, 50, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (432, 'Fabric OS', 6, 422, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (433, 'FabricOS', 6, 422, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (434, 'FileMaker Pro', 2, 51, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (435, 'FILEMAKER PRO 8.5', 2, 51, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (436, 'Flash', 10, 504, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (437, 'Flexnet 2016', 2, 52, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (438, 'FlexNet Manager Suite', 2, 52, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (439, 'FlexNet Manager Suite 2016', 2, 52, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (440, 'FOCUS', 9, 321, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (441, 'fortran', 9, 322, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (442, 'Rhino Software Inc - FTP Voyager 16.2', 2, 53, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (443, 'FTP Voyager', 2, 53, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (444, 'Genymotion', 2, 54, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (445, 'GlassFish', 8, 263, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (446, 'GlassFish Server 4 Open Source', 8, 263, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (447, 'GlassFish Server 4', 8, 263, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (448, 'GNU', 6, 423, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (449, 'Go', 9, 323, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (450, 'Chrome', 2, 55, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (451, 'Google Chrome', 2, 55, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (452, 'Google Chrome 76', 2, 55, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (453, 'GraphQL', 9, 324, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (454, 'EMC Greenplum', 2, 56, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (455, 'Groovy', 9, 325, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (456, 'Hadoop', 2, 57, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (457, 'HAProxy', 8, 264, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (458, 'HiveQL', 9, 326, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (459, 'HP aC++ compiler', 2, 58, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (460, 'HP C++', 2, 58, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (461, 'HP aC++', 2, 58, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (462, 'HP C/aC++', 2, 58, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (463, 'HP C++ 10.20', 2, 58, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (464, 'HPC 11.11', 2, 59, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (465, 'HP C/ANSI C compiler', 2, 59, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (466, 'HP C/ANSI C', 2, 59, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (467, 'HP Nonstop J06.20.00', 4, 293, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (468, 'HP Nonstop', 4, 293, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (469, 'HP Operations Orchestration (HPOO)', 2, 60, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (470, 'HP Operations Orchestration', 2, 60, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (471, 'HPOO', 2, 60, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (472, 'HPSA', 2, 61, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (473, 'HP Server Automation', 2, 61, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (474, 'HP Server Automation (HPSA)', 2, 61, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (475, 'HFS', 10, 505, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (476, 'www.rejetto.com - HttpFileServer 2.3', 10, 505, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (477, 'HTTP File Server', 10, 505, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (478, 'HttpFileServer', 10, 505, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (479, 'Hypertext Markup Language', 9, 327, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (480, 'HTML4', 9, 327, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (481, 'HTML', 9, 327, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (482, 'Hypertext Markup Language (HTML)', 9, 327, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (483, 'HTML5', 9, 327, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (484, 'IBM BigFix', 2, 62, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (485, 'IBM - IBM BigFix Platform', 2, 62, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (486, 'IBM BigFix Platform', 2, 62, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (487, 'IBM - IBM BigFix Platform Client Deploy Tool 9.5', 5, 457, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (488, 'Client Deploy Tool', 5, 457, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (489, '(IBM) IBM Business Monitor 8.5.6', 2, 63, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (490, 'IBM Business Monitor', 2, 63, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (491, 'IBM BPM', 2, 64, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (492, 'IBM Business Process Manager', 2, 64, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (493, 'IBM Business Process Manager 8.5.7.0', 2, 64, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (494, '(IBM) IBM Business Process Manager 8.5.6', 2, 64, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (495, 'IBM Business Process Manager 8.5.6.0', 2, 64, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (496, 'IBM Content Manager OnDemand', 2, 65, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (497, 'IBM Content Manager OnDemand (CMOD)', 2, 65, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (498, 'CMOD', 2, 65, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (499, 'Data Power', 4, 294, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (500, 'IBM DataPower Gateway', 4, 294, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (501, 'IDG.7.5.2.19hp', 4, 294, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (502, 'datapower-connector', 4, 294, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (503, 'FileNet', 2, 66, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (504, 'IBM FileNet', 2, 66, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (505, 'IBM FileNet P8 Platform', 2, 66, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (506, 'hlasm', 9, 328, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (507, 'IBM High Level Assembler', 9, 328, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (508, 'IBM High Level Assembler (HLASM)', 9, 328, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (509, 'IBM - IBM HTTP Server 6.1', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (510, 'IHS', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (511, 'IBM - IBM HTTP Server 7', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (512, 'IBM - IBM HTTP Server 8.5', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (513, 'WebSphere and IHS', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (514, 'WebSphere http', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (515, '(IBM) IBM HTTP Server 8.5', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (516, 'IBM HTTP Server', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (517, 'IBM HTTP SERVER 8', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (518, 'IBM HTTP Server 8.', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (519, 'IBM Websphere HTTP Server', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (520, 'IBM HTTP', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (521, 'WebSphere IHS', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (522, 'WebSphere -IHS', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (523, 'IBM HTTP SERVER 6.1', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (524, 'IBMi', 6, 424, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (525, 'IBM i', 6, 424, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (526, 'OS400 V7R1', 6, 424, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (527, 'OS400', 6, 424, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (528, 'OS/400', 6, 424, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (529, 'CLP', 9, 329, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (530, 'IBM i Control Language (CL)', 9, 329, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (531, 'IBM Informix-4GL', 9, 330, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (532, 'Informix 4GL', 9, 330, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (533, 'Informix-4GL', 9, 330, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (534, 'DATASTAGE', 2, 67, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (535, 'IBM InfoSphere DataStage', 2, 67, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (536, 'datastage 11.3', 2, 67, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (537, 'IBM Integration Bus 10.0', 2, 68, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (538, 'IBM Integration Bus v9', 2, 68, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (539, 'IBM Integration Bus 9.0', 2, 68, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (540, 'IBM Integration Bus', 2, 68, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (541, 'IIB', 2, 68, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (542, 'IBM Integration Bus v10', 2, 68, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (543, 'Extended Structured Query Language (ESQL)', 5, 458, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (544, 'ESQL', 5, 458, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (545, 'Extended Structured Query Language', 5, 458, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (546, 'IBM - IBM License Metric Tool and Tivoli Asset Discovery for Distributed', 2, 69, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (547, 'IBM License Metric Tool', 2, 69, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (548, 'Maximo', 2, 70, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (549, 'IBM Maximo 7.6', 2, 70, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (550, 'IBM Maximo', 2, 70, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (551, 'IBM Migration Utility', 2, 71, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (552, 'IBM WorkLight', 2, 72, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (553, 'IBM Mobile Foundation', 2, 72, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (554, 'Operational Decision Manager', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (555, 'ILOG JRules', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (556, 'Decision Server 8.0.1.0', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (557, 'IBM WebSphere ILOG Jrules', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (558, 'IBM Operational Decision Manager (ODM)', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (559, 'Decision Center 8.0.1.0', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (560, 'IBM Operational Decision Manager', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (561, 'IBM ODM', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (562, 'AS400', 4, 295, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (563, 'AS/400', 4, 295, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (564, 'IBM Power Systems', 4, 295, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (565, 'System p', 4, 295, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (566, 'System i', 4, 295, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (567, 'P-series', 4, 295, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (568, 'IBM iSeries/AS400 system Model 520', 4, 295, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (569, 'IBM - IBM Spectrum Scale Express Client 4.1', 2, 74, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (570, 'IBM Spectrum Scale Server', 2, 74, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (571, 'IBM Spectrum Scale', 2, 74, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (572, 'IBM - IBM Spectrum Scale Express Server 4.1', 2, 74, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (573, 'IBM - IBM Spectrum Scale Standard Server 4.1', 2, 74, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (574, 'IBM - IBM Spectrum Scale Express FPO 4.1', 2, 74, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (575, 'IBM Spectrum Scale FPO', 2, 74, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (576, 'IBM Spectrum Scale Client', 2, 74, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (577, 'IBM - IBM Spectrum Scale Standard FPO 4.1', 2, 74, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (578, 'IBM - IBM Spectrum Scale Standard Client 4.1', 2, 74, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (579, 'IBM Tivoli Asset Management', 2, 75, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (580, 'Tivoli Asset Management', 2, 75, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (581, 'Asset Discovery for Distributed', 5, 459, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (582, 'Tivoli Asset Discovery for Distributed', 5, 459, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (583, 'IBM - IBM Tivoli Composite Application Manager for Microsoft Applications - MS SQL Server Agent 6.3', 2, 76, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (584, 'IBM Tivoli Composite Application Manager', 2, 76, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (585, 'IBM - IBM Tivoli Composite Application Manager Agent for DB2 7.1', 2, 76, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (586, 'IBM - IBM Tivoli Composite Application Manager for Microsoft Applications - IIS server agent 6.3', 2, 76, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (587, 'IBM - IBM Tivoli Monitoring - Windows OS Agent 6.2', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (588, 'IBM - IBM Tivoli Monitoring for Databases - DB2 Agent 6.2', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (589, 'IBM Tivoli Monitoring', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (590, 'IBM - IBM Tivoli Monitoring - Windows OS Agent 6.3', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (591, 'Tivoli Monitoring', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (592, 'Database MS SQL Agent', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (593, 'Linux OS Agent', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (594, 'Database DB2 Agent', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (595, 'IBM - IBM Tivoli Monitoring for Databases - MS SQL Agent 6.2', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (596, 'IBM - IBM Tivoli Monitoring - Linux OS Agent 6.2', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (597, 'Windows OS Agent', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (598, 'IBM - IBM Tivoli Monitoring - Windows OS Agent 6', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (599, 'IBM Tivoli Storage Manager', 2, 78, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (600, 'IBM - IBM TSM FCM', 2, 78, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (601, 'Tivoli Storage Manager', 2, 78, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (602, 'IBM - IBM Tivoli Storage Manager', 2, 78, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (603, 'IBM Tivoli Storage Manager API', 2, 78, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (604, 'IBM - IBM Tivoli Storage Manager for Databases - Data Protection for Microsoft SQL 6.3', 2, 78, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (605, 'Databases Data Protection for Microsoft SQL', 2, 78, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (606, 'IBM - IBM Tivoli Storage Manager API 6.4', 2, 78, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (607, 'IBM - IBM Spectrum Protect Data Protection for Microsoft SQL Server 8.1', 2, 78, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (608, 'IBM Spectrum Protect Data Protection', 2, 78, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (609, 'TSM API', 5, 460, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (610, 'IBM - IBM Spectrum Protect API 7.1', 5, 460, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (611, 'IBM - IBM Spectrum Protect Client', 5, 461, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (612, 'TSM Client', 5, 461, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (613, 'IBM - IBM Tivoli Storage Manager Client', 5, 461, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (614, 'TSM Storage Agent', 5, 462, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (615, 'IBM - IBM Spectrum Protect Storage Agent 8.1', 5, 462, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (616, 'VSS Requestor', 5, 463, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (617, 'VSS Requestor configured 8.1', 5, 463, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (618, 'VSS Requestor 7.1', 5, 463, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (619, 'TWS-WS', 2, 79, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (620, 'Tivoli Workload Scheduler', 2, 79, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (621, 'IBM Tivoli Workload Scheduler (TWS)', 2, 79, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (622, 'IBM WebSphere Business Integration Adaptor', 2, 80, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (623, 'WebSphere Business Integration Adaptor', 2, 80, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (624, 'wbia 2.6', 2, 80, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (625, 'IBM WBIA 2.6.0.12', 2, 80, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (626, 'IBM Websphere MQ 7.1', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (627, 'MQ', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (628, 'MQ 9.1', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (629, 'IBM WebSphere MQ Client 7.5', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (630, 'Websphere MQ', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (631, 'MQ 7', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (632, 'MQ 6', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (633, 'MQ 9.0', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (634, 'MQ 5.3', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (635, 'MQ 7.01', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (636, 'MQ 7.5', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (637, 'MQSeries 8.0', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (638, 'IBM Websphere MQ', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (639, 'IBM MQ', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (640, 'IBM WEBSPHERE MQ SERVER 7.5', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (641, 'WSMQ 8.0', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (642, 'MQ 9.0.5', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (643, 'IBM WebSphere MQ Telemetry Service 7.5', 2, 82, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (644, 'IBM WebSphere MQ Telemetry', 2, 82, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (645, 'WTX', 2, 83, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (646, 'IBM WebSphere Transformation Extender (WTX)', 2, 83, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (647, 'IBM WebSphere Transformation Extender', 2, 83, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (648, 'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.6001.18000', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (649, 'IIS 7.5', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (650, 'Internet Information Services (IIS)', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (651, 'Microsoft Internet Information Services 7.5', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (652, 'MICROSOFT INTERNET INFORMATION SERVICES VERSION 7', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (653, 'Microsoft Internet Information Services', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (654, 'Microsoft Internet Information', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (655, 'IIS Express 8', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (656, 'Internet Information Services (IIS 6.0)', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (657, 'Microsoft IIS 8.5', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (658, 'IIS', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (659, 'IIS Express', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (660, 'MICROSOFT INTERNET INFORMATION SERVICES VERSION 7.5', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (661, 'Microsoft Internet Inf', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (662, 'MICROSOFT INTERNET INFORMATION SERVER VERSION 5.1.2600.2180', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (663, 'TS-IIS Express 10', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (664, 'Microsoft Internet Informat', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (665, 'Microsoft IIS Webserver', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (666, 'IIS Server', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (667, 'Microsoft Internet Information Services 8.5', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (668, 'IIS Version 7', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (669, 'Microsoft Internet Information Services 8.0', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (670, 'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.3790.1830', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (671, 'IIS 8.5.9600.16386', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (672, 'IIS 7.x', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (673, 'IIS 7.0', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (674, 'IIS 10', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (675, 'Microsoft Internet Information Services 6.0', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (676, 'Internet Information Services (IIS 7.0)', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (677, 'Microsoft Internet Information Services 10.0', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (678, 'IIS 8.5', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (679, 'Microsoft - IIS Express 10', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (680, 'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.*', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (681, 'Microsoft IIS 7.0', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (682, 'MICROSOFT INTERNET INFORMATION SERVICES VERSION 8', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (683, 'IIS v 7.0', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (684, 'IIS 7.2.1952', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (685, 'Microsoft Internet Information Services 7.0', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (686, 'Microsoft IIS 8.0', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (687, 'IIS Web Server v6', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (688, 'IIS 8.x', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (689, 'IIS 8.0.1557', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (690, 'IIS 11', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (691, 'IIS 6.0', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (692, 'IIS Express 7', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (693, 'IIS 7.2.2', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (694, 'IIS Instance', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (695, 'Microsoft IIS 6.0', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (696, 'IIS Express 10', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (697, 'IIS Servers', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (698, 'MS-IIS', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (699, 'Internet Information Services (IIS 8.5)', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (700, 'IIS 8.0', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (701, 'Microsoft IIS 7.5', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (702, 'IIS Version 8 64 bit', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (703, 'IIS 6', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (704, 'IIS7.5', 8, 266, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (705, 'IEMT', 7, 489, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (706, 'Microsoft - IIS 6.0 Migration Tool 1', 7, 489, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (707, 'IIS Easy Migration Tool', 7, 489, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (708, 'Easy Migration Tool', 7, 489, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (709, 'Easy Migration Tool (IEMT)', 7, 489, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (710, 'IIS Easy Migration Tool (IEMT)', 7, 489, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (711, 'MS-ARR', 7, 490, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (712, 'Application Request Routing', 7, 490, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (713, 'ARR', 7, 490, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (714, 'Application Request Routing (ARR)', 7, 490, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (715, 'IIS Manager', 7, 491, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (716, 'IMS DB', 2, 84, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (717, 'IMS', 2, 84, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (718, 'Infozip 6', 2, 85, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (719, 'Infozip', 2, 85, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (720, 'Info-ZIP', 2, 85, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (721, 'Infobright Community Edition', 2, 86, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (722, 'Infobright Community Edition (ICE)', 2, 86, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (723, 'infobright-ce', 2, 86, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (724, 'informatica', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (725, 'Informatica PowerCenter', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (726, 'Informatica PowerCenter 10.2', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (727, 'Informatica Version 10.2.0 HotFix1', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (728, 'Informatica Power Center 8.6.1', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (729, 'ETL tool: Informatica', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (730, 'Informatica database server-mspr50', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (731, 'Informatica ETL', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (732, 'Informatica Power Center 9.6.1', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (733, 'Informatica PowerCenter 10.2-msprap150', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (734, 'ETL tool=Informatica', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (735, 'Ingres', 2, 88, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (736, 'INGRES DBM', 2, 88, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (737, 'Intel(R) Xeon(R) CPU E7- 4870 @ 2.40GHz', 4, 296, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (738, 'intel(r) xeon(r) cpu e7- 4870 @ 2.40ghz', 4, 296, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (739, 'Intel(R) Xeon(R) CPU E5530 @ 2.40GHz', 4, 296, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (740, 'Intel(R) Xeon(R) CPU X7550 @ 2.00GHz', 4, 296, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (741, 'Intel(R) Xeon(R) CPU E5-2648L v4 @ 1.80GHz', 4, 296, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (742, 'Intel Xeon Processor', 4, 296, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (743, 'IMSVA 9.1', 3, 566, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (744, 'InterScan Messaging Security Virtual Appliance', 3, 566, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (745, 'InterScan Messaging Security Virtual Appliance (IMSVA)', 3, 566, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (746, 'IMSVA', 3, 566, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (747, 'iOS', 6, 425, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (748, 'Java 1.8', 9, 331, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (749, 'Java 7', 9, 331, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (750, 'Java on Weblogic server', 9, 331, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (751, 'Java', 9, 331, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (752, 'Java5', 9, 331, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (753, 'Java 6', 9, 331, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (754, 'Java 6.0', 9, 331, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (755, 'Java 7 Update 25', 9, 331, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (756, 'Java Scripting', 9, 331, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (757, 'J2ee', 9, 331, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (758, 'Java (open source)', 9, 331, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (759, 'Java 5', 9, 331, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (760, 'Java 1.5', 9, 331, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (761, 'Java (1.6)', 9, 331, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (762, 'Java 1.8.0_92', 9, 331, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (763, 'Java 1.6', 9, 331, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (764, 'J2EE 6', 9, 331, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (765, 'Java (J2EE)', 9, 331, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (766, 'Oracle - Java Runtime Environment 11', 10, 506, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (767, 'JRE', 10, 506, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (768, 'Java Runtime', 10, 506, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (769, 'Oracle - Java Runtime Environment 8', 10, 506, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (770, 'Oracle - Java Runtime Environment 7', 10, 506, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (771, 'Java Runtime Environment (JRE)', 10, 506, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (772, 'Java Runtime 6', 10, 506, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (773, 'Camel', 12, 378, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (774, 'Apache Camel', 12, 378, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (775, 'SS7/CAMEL', 12, 378, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (776, 'Apache mmons-beanutils', 12, 379, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (777, 'Apache Commons BeanUtils', 12, 379, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (778, 'PDFBox', 12, 380, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (779, 'Apache PDFBox', 12, 380, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (780, 'PDFBox 1.6', 12, 380, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (781, 'Velocity', 12, 381, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (782, 'Apache Velocity', 12, 381, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (783, 'EclipseLink 2.6.4', 12, 382, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (784, 'EclipseLink', 12, 382, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (785, 'EJB', 12, 383, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (786, 'EJBS', 12, 383, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (787, 'Ejb 2.x', 12, 383, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (788, 'Enterprise JavaBeans (EJB)', 12, 383, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (789, 'Enterprise JavaBeans', 12, 383, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (790, 'JAVA-XSL', 9, 332, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (791, 'Extensible Stylesheet Language', 9, 332, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (792, 'Extensible Stylesheet Language (XSL)', 9, 332, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (793, 'EZMorph', 12, 384, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (794, 'GWT', 12, 385, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (795, 'Google Web Toolkit', 12, 385, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (796, 'Google Web Toolkit (GWT)', 12, 385, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (797, 'Hibernate', 12, 386, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (798, 'IBM - IBM SDK 5.0 for Windows AMD/EMT 64', 12, 387, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (799, 'IBM SDK', 12, 387, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (800, 'Oracle - JDK/SDK', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (801, 'JDK 1.7.0', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (802, 'JDK', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (803, 'Oracle (Sun) JDK/JRE', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (804, 'JDK8', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (805, 'JDK 1.5', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (806, 'Oracle JDK', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (807, 'Java Development Kit (JDK)', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (808, 'Oracle - JDK/SDK 8', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (809, 'Java Development Kit', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (810, 'JDK 1.6.0_24', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (811, 'JDK8 (1.8)', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (812, 'JDK 1.3', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (813, 'JEE', 9, 333, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (814, 'Java EE', 9, 333, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (815, 'Java Enterprise Edition (Java EE)', 9, 333, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (816, 'Java Enterprise Edition', 9, 333, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (817, 'Java Message Service (JMS)', 12, 389, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (818, 'JMS', 12, 389, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (819, 'Java Message Service', 12, 389, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (820, 'Java Standard Edition (Java SE)', 9, 334, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (821, 'oracle - java - java se 6', 9, 334, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (822, 'Java SE 6', 9, 334, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (823, 'Java Web Start', 12, 390, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (824, 'Oracle - Java Web Start 1.5', 12, 390, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (825, 'Oracle - Java Web Start 6', 12, 390, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (826, 'JavaServer Faces', 12, 391, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (827, 'JavaServer Faces (JSF)', 12, 391, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (828, 'JSF', 12, 391, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (829, 'JavaServer Pages', 9, 335, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (830, 'JavaServer Pages (JSP)', 9, 335, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (831, 'Core JSP', 9, 335, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (832, 'JSP', 9, 335, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (833, 'JSP Scriptlets', 9, 336, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (834, 'Java Scriplet', 9, 336, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (835, 'JDBC', 12, 392, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (836, 'JRuby Core', 12, 393, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (837, 'Core 9.2.0.0', 12, 393, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (838, 'APACHE LOG4J', 12, 394, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (839, 'Log4j', 12, 394, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (840, 'Quartz', 12, 395, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (841, 'Java RMI', 12, 396, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (842, 'Java Remote Method Invocation (RMI)', 12, 396, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (843, 'Remote Method Invocation', 12, 396, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (844, 'Java Servlets', 12, 397, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (845, 'Java 6 Servlets', 12, 397, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (846, 'J2EE Servlets', 12, 397, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (847, 'Servlet', 12, 397, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (848, 'Servlets', 12, 397, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (849, 'Servlets v2.3', 12, 397, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (850, 'Spring', 12, 398, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (851, 'Spring IO', 12, 398, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (852, 'Spring BOOT', 12, 399, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (853, 'Spring Cloud Data Flow', 12, 400, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (854, 'Spring MVC', 12, 401, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (855, 'Struts (2.0)', 12, 402, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (856, 'Struts 2.0', 12, 402, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (857, 'Struts', 12, 402, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (858, 'Swing', 12, 403, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (859, 'Swings', 12, 403, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (860, 'Vaadin', 12, 404, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (861, 'javasript', 9, 337, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (862, 'JS', 9, 337, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (863, 'Javascript', 9, 337, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (864, 'Java Script', 9, 337, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (865, 'javascriptl', 9, 337, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (866, 'AJAX', 12, 405, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (867, 'Angular JS', 12, 406, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (868, 'AngularJS', 12, 406, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (869, 'Angular', 12, 406, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (870, 'Draw2D', 12, 407, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (871, 'Draw2D 2.10.1', 12, 407, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (872, 'Express', 12, 408, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (873, 'Express.js', 12, 408, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (874, 'ExtJS 4.1', 12, 409, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (875, 'Sencha 4.2.0', 12, 409, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (876, 'ExtJS', 12, 409, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (877, 'Ext JS', 12, 409, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (878, 'jqGrid', 12, 410, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (879, 'JQuery 1.7', 12, 411, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (880, 'JQuery', 12, 411, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (881, 'jqueryui', 12, 412, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (882, 'jQuery UI', 12, 412, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (883, 'jquery-ui', 12, 412, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (884, 'react', 12, 413, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (885, 'ReactJS', 12, 413, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (886, 'react.js', 12, 413, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (887, 'Scriptaculous', 12, 414, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (888, 'script.aculo.us', 12, 414, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (889, 'Valums File Uploader', 12, 415, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (890, 'Valums AJAX File Uploader', 12, 415, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (891, 'Jboss 7', 8, 267, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (892, 'JBOSS 5.1.2', 8, 267, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (893, 'Red Hat JBoss Enterprise Application Platform 6.3', 8, 267, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (894, 'EAP', 8, 267, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (895, 'JBOSS-EAP', 8, 267, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (896, 'JBoss Application Server 4', 8, 267, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (897, 'JBoss Application Server 7', 8, 267, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (898, 'JBoss Application Server 5', 8, 267, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (899, 'JBoss Application Server', 8, 267, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (900, 'Enterprise Application Platform', 8, 267, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (901, 'JBoss', 8, 267, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (902, 'Jboss 7.1.2', 8, 267, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (903, 'Wildfly', 8, 267, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (904, 'JBOSS 5.1.2 EAP', 8, 267, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (905, 'server: Jboss', 8, 267, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (906, 'JBOSS 6.3.2 EAP', 8, 267, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (907, 'JBoss EAP 4.3', 8, 267, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (908, 'Jboss 4.1.2', 8, 267, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (909, 'JBOSS 5', 8, 267, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (910, 'JBOSS 6.3.2', 8, 267, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (911, 'JBoss Seam', 7, 492, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (912, 'SEAM', 7, 492, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (913, 'JCL', 9, 338, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (914, 'Jenkins', 2, 90, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (915, 'Job Information Language', 9, 339, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (916, 'JIL - Job Information Language', 9, 339, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (917, 'Job Information Language (JIL)', 9, 339, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (918, 'JIL', 9, 339, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (919, 'JoinIT by Acayosoft', 2, 91, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (920, 'Acayosoft JoinIT', 2, 91, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (921, 'JoinIT by Acayosoft v 9.0.8', 2, 91, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (922, 'joinIT', 2, 91, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (923, 'JScript', 9, 340, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (924, 'Kitura', 8, 269, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (925, 'LifeFlow', 2, 92, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (926, 'LifeFlow Tool', 2, 92, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (927, 'Linux 2.6.32-696.28.1.el6.x86_64', 6, 426, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (928, 'Other Linux (64-bit)', 6, 426, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (929, 'Linux', 6, 426, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (930, 'Linux 2.6.32-696.30.1.el6.x86_64', 6, 426, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (931, 'Linux 2.6.9', 6, 426, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (932, 'Linux 2.6.32-642.3.1.el6.x86_64', 6, 426, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (933, 'Linux - 2.6.18-371.1.2.el5', 6, 426, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (934, 'Linux 2.6.32-696.23.1.el6.x86_64', 6, 426, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (935, 'Other Linux (32-bit)', 6, 426, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (936, 'Linux (64-bit)', 6, 426, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (937, 'Linux 3.10.0-1062.el7.x86_64', 6, 426, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (938, 'Other 2.6.x Linux (64-bit)', 6, 426, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (939, 'CentOS 6 (32-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (940, 'LINUX CentOS 7.3', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (941, 'CentOS 4 (32-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (942, 'LINUX CentOS 6.2', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (943, 'Linux CentOS_5.5', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (944, 'CentOS 7.2', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (945, 'CentOS 6 (64-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (946, 'LINUX CentOS 6.8', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (947, 'LINUX CentOS 6.9', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (948, 'LINUX CentOS 6.4', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (949, 'CentOS 4/5/6 (64-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (950, 'CentOS 5 (32-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (951, 'Linux CentOS_5.2', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (952, 'CentOS 4 (64-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (953, 'CentOS 7 (64-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (954, 'CentOS 5 (64-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (955, 'CentOS 5.8 (x86)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (956, 'CentOS 6.4', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (957, 'CentOS 7.5.184', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (958, 'CentOS 4/5/6 (32-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (959, 'CentOS', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (960, 'CentOS release 5.11', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (961, 'CentOS 4/5 or later (32-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (962, 'LINUX CentOS 6.5', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (963, 'LINUX CentOS 6.7', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (964, 'LINUX CentOS 5.8', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (965, 'LINUX CentOS 5', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (966, 'CentOS 7.x', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (967, 'CentOS 4/5/6/7 (64-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (968, 'CentOS 4/5 or later (64-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (969, 'LINUX CentOS 5.7', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (970, 'Check Point IPSO', 6, 428, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (971, 'Gaia Kernel version 2.7', 6, 428, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (972, 'Checkpoint', 6, 428, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (973, 'Check Point Gaia', 6, 428, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (974, 'Gaia Kernel version 2.6', 6, 428, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (975, 'Debian Linux', 6, 429, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (976, 'Debian GNU/Linux 8 (64-bit)', 6, 429, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (977, 'Debian', 6, 429, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (978, 'Debian Linux 8', 6, 429, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (979, 'LINUX Debian 6.0', 6, 429, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (980, 'Debian GNU/Linux 5 (64-bit)', 6, 429, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (981, 'Junos OS', 6, 430, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (982, 'JunOS', 6, 430, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (983, 'JunOS 8.0R14', 6, 430, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (984, 'JunOS 8.0R13', 6, 430, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (985, 'OpenSuse', 6, 431, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (986, 'SUSE openSUSE (64-bit)', 6, 431, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (987, 'Oracle - Linux Server - 7.5 Beta', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (988, 'Oracle Linux 7', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (989, 'LINUX Oracle EL 6.6 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (990, 'OEL', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (991, 'LINUX Oracle EL 6.3 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (992, 'LINUX Oracle EL 7.4 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (993, 'OEL 6.5 (Oracle Linux)3.8.13-16.2.1.el6uek.x86_64', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (994, 'LINUX Oracle EL 5.11 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (995, 'LINUX Oracle EL 5.10 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (996, 'LINUX Oracle EL 5.9', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (997, 'Oracle Linux 6.1', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (998, 'Oracle Linux 4/5 or later (64-bit)', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (999, 'LINUX Oracle EL 6.9', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1000, 'LINUX Oracle EL 6.8 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1001, 'Oracle Linux 5 (64-bit)', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1002, 'Oracle Enterprise Server 7.5', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1003, 'Oracle Linux 5u10', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1004, 'OEL6.7 - 3.8.13-68.3.4.el6uek.x86_64', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1005, 'Oracle Linux Server 6.10', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1006, 'LINUX Oracle EL 6.9 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1007, 'LINUX Oracle EL 6.7 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1008, 'Oracle Linux Server release 6.9', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1009, 'Oracle Linux Server 6.9', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1010, 'LINUX Oracle EL 5.8 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1011, 'OEL 6.5 (Oracle Linux)2.6.32-431.el6.x86_63', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1012, 'Oracle Linux Server 6.7', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1013, 'Oracle Enterprise Linux', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1014, 'Oracle Linux', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1015, 'OEL 6.5 (Oracle Linux)2.6.32-431.el6.x86_62', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1016, 'Oracle Linux 4 (64-bit)', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1017, 'Photon OS', 6, 433, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1018, 'VMware Photon', 6, 433, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1019, 'VMware Photon 1', 6, 433, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1020, 'Red Hat Enterprise Linux Server 6.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1021, 'Red Hat Enterprise Linux Server 7.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1022, 'Linux - Redhat 6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1023, 'LINUX RedHat ES 5.7 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1024, 'Red Hat Enterprise Linux Server 6.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1025, 'Red Hat Enterprise Linux AS release 4 (Nahant Update 8)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1026, 'Red Hat Enterprise Linux Server release 6.9 (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1027, 'RED HAT ENTERPRISE LINUX 5.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1028, 'Red Hat Enterprise Linux Server 6.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1029, 'LINUX RedHat EL 7.3 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1030, 'RHEL', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1031, 'Redhat Linux 5.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1032, 'Linux Red Hat 7.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1033, 'Red Hat Enterprise Linux Server 7.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1034, 'Red Hat Enterprise Linux Server 7.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1035, 'Red Hat(Linux)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1036, 'LINUX Red Hat Enterprise Linux Server 5.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1037, 'LINUX RedHat EL 5.7 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1038, 'Linux Red Hat5.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1039, 'Linux Red Hat3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1040, 'LINUXRed Hat Enterprise Linux Server 7.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1041, 'Red Hat Enterprise Linux Server 5.8', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1042, 'LINUX RedHat EL 6.8 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1043, 'RHEL 7.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1044, 'Redhat - Redhat Linux 7.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1045, 'Linux RH6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1046, 'Red Hat Enterprise Linux 6 (32-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1047, 'RED HAT ENTERPRISE LINUX SERVER 6.X (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1048, 'RHEL 6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1049, 'Red Hat Enterprise Linux 7.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1050, 'LINUXRed Hat Enterprise Linux Server 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1051, 'RHEL 6.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1052, 'Red Hat Enterprise Linux Santiago 6.3 32 Bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1053, 'LINUX RedHat EL 6.6 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1054, 'RED HAT ENTERPRISE LINUX 6.10', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1055, 'RED HAT ENTERPRISE LINUX SERVER 5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1056, 'Linux Red Hat6.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1057, 'RED HAT ENTERPRISE LINUX SERVER 7.X (Maipo)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1058, 'Red Hat Enterprise Linux Server release 7.3 (Maipo)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1059, 'RHEL7.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1060, 'Linux Red Hat Enterprise Server 6.10', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1061, 'Red Hat Enterprise Linux Server 7.6 (Maipo)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1062, 'Red Hat Enterprise Linux 5 (64-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1063, 'Linux Red Hat6.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1064, 'RHEL 7.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1065, 'RHEL 7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1066, 'RED HAT ENTERPRISE LINUX 4.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1067, 'Red Hat Enterprise Linux 5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1068, 'Red Hat Enterprise Linux Server 6.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1069, 'LINUX RedHat EL 7.5 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1070, 'LINUXRed Hat Enterprise Linux Server 5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1071, 'LINUX RED HAT ENTERPRISE SERVER 5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1072, 'Unix Linux Redhat', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1073, 'LINUX RED HAT ENTERPRISE SERVER 6 X64', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1074, 'Red Hat Linux', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1075, 'LINUX RED HAT ENTERPRISE SERVER 6.8', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1076, 'RHEL6.6 - 2.6.32-504.el6.x86_64', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1077, 'RED HAT ENTERPRISE LINUX 5.X', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1078, 'Linux Red Hat Enterprise Server 7.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1079, 'Linux Red Hat4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1080, 'Linux Red Hat Enterprise Server 6.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1081, 'Red Hat Enterprise Linux Server release 5.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1082, 'Red Hat Linux x64 6.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1083, 'Red Hat Enterprise Linux Server 7.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1084, 'Linux Red Hat6.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1085, 'LINUX RED HAT ENTERPRISE SERVER 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1086, 'Red Hat Enterprise Linux Server release 6.6 (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1087, 'RED HAT ENTERPRISE LINUX 6.X', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1088, 'Red Hat Enterprise Linux Server 6.x', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1089, 'RedHat Enterprise Linux 6 (64-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1090, 'RED HAT ENTERPRISE LINUX', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1091, 'Redhat - Redhat Linux 6.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1092, 'RED HAT ENTERPRISE LINUX 5.8', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1093, 'RED HAT ENTERPRISE LINUX 5.10', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1094, 'RED HAT ENTERPRISE LINUX 7.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1095, 'Red Hat Enterprise Linux Server 5.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1096, 'Redhat - RHEL 7.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1097, 'RHEL7.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1098, 'Red Hat Enterprise Linux Server release 7.5 (Maipo)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1099, 'Red Hat Enterprise Linux 6 (64-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1100, 'Red Hat Entreprise Linux 6.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1101, 'RED HAT ENTERPRISE LINUX 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1102, 'RHEL 5.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1103, 'Red Hat Enterprise Linux 7.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1104, 'LINUX RedHat EL 6.2 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1105, 'Linux Red Hat6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1106, 'RED HAT ENTERPRISE LINUX 5.11 - 5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1107, 'Red Hat Enterprise Linux Server 5.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1108, 'Redhat 6 64-Bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1109, 'Red Hat Enterprise Linux 5 (32-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1110, 'Red Hat Enterprise Linux Server 7.', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1111, 'RHEL 6.6 ((64 bit x86_64)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1112, 'Red Hat Enterprise Linux Server Release 6.10', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1113, 'LINUX RED HAT ENTERPRISE ES 4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1114, 'Linux Red Hat Enterprise Server 5.11 (2.6.18-419.el5)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1115, 'Red Hat Enterprise Linux Server release 6.8 (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1116, 'RED HAT ENTERPRISE LINUX 4.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1117, 'Redhat Linux 6.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1118, 'Red Hat Enterprise Linux AS', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1119, 'RED HAT ADVANCED SERVER 5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1120, 'LINUX RED HAT ENTERPRISE SERVER 7.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1121, 'RHEL6.7 - 2.6.32-573.el6.x86_64', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1122, 'Red Hat Enterprise Linux Server 5.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1123, 'LINUX RedHat EL 5 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1124, 'Red Hat Enterprise Linux 7.2 (64-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1125, 'LINUX RedHat EL 5.11 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1126, 'RHEL 6.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1127, 'RHEL 6.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1128, 'Red Hat Enterprise Linux Server', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1129, 'Red Hat Enterprise Linux Server 5.x', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1130, 'Red Hat Enterprise Linux Santiago 6.x', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1131, 'RED HAT ENTERPRISE LINUX 6.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1132, 'RED HAT ENTERPRISE LINUX 7.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1133, 'Red Hat Enterprise Linux Server release 5.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1134, 'RHEL Server', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1135, 'Linux RHEL', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1136, 'redhat6.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1137, 'RHEL 5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1138, 'Redhat - Redhat Linux 6.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1139, 'Linux RH', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1140, 'Red Hat Enterprise Linux Server release 6.10 (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1141, 'Red Hat Enterprise Linux 3 (32-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1142, 'Redhat - Red Hat(Linux)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1143, 'RED HAT ENTERPRISE LINUX 5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1144, 'RED HAT ENTERPRISE LINUX SERVER 4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1145, 'Redhat Linux 6.10', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1146, 'Linux RH7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1147, 'Red Hat Enterprise Linux Server release 5 (Tikanga)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1148, 'RHEL 7.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1149, 'LINUX Red Hat Enterprise Linux Server 6.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1150, 'Red Hat Enterprise Linux Server 6.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1151, 'Red Hat Enterprise Linux Server release 7.4 (Maipo)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1152, 'Red Hat V6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1153, 'Redhat Linux', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1154, 'RHEL 6.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1155, 'RED HAT ENTERPRISE LINUX 6.X TPM', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1156, 'Linux Red Hat5.8', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1157, 'Linux Red Hat5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1158, 'Linux RH5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1159, 'Red Hat Enterprise Linux Santiago 6.3 64 Bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1160, 'rehl5.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1161, 'RED HAT ENTERPRISE LINUX ES 5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1162, 'Red Hat Enterprise Linux Server release 7.6 (Maipo)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1163, 'LINUX RED HAT ENTERPRISE SERVER 7.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1164, 'Red Hat Enterprise Linux 4 (32-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1165, 'RHEL 7.xx', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1166, 'Red Hat Enterprise Linux Server 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1167, 'Red Hat Enterprise Linux Server release 7.x', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1168, 'Red Hat Enterprise Linux 7 (64-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1169, 'Red Hat Enterprise Linux 5 Update 3 (RHEL 5.3) for x86-64', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1170, 'LINUX RED HAT ENTERPRISE AS 4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1171, 'RHEL Linux', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1172, 'RHEL 7.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1173, 'RED HAT ENTERPRISE LINUX 4.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1174, 'RED HAT ENTERPRISE LINUX 6.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1175, 'Linux Red Hat6.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1176, 'RHEL 7.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1177, 'RHEL 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1178, 'RED HAT ENTERPRISE LINUX 5.X TPM', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1179, 'RED HAT ENTERPRISE LINUX ES 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1180, 'LINUX RedHat EL 7.4 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1181, 'Red Hat Enterprise Linux Server release 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1182, 'Red Hat Linux 5.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1183, 'LINUX RED HAT ENTERPRISE SERVER 7.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1184, 'LINUX RedHat EL 5.0 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1185, 'Red Hat Enterprise Linux Server release 6.3 (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1186, 'RED HAT ENTERPRISE LINUX SERVER 5.X (Tikanga)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1187, 'Red Hat Enterprise Linux Server 7.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1188, 'Linux Red Hat 6.10', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1189, 'Linux Red Hat', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1190, 'Red Hat 6.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1191, 'LINUX Red Hat Enterprise Linux Server 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1192, 'LINUX Red Hat Enterprise Linux Server 5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1193, 'Red Hat Enterprise Linux Server 5.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1194, 'RHEL7.xx', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1195, 'RHEL 6.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1196, 'Linux Red Hat5.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1197, 'Red Hat Enterprise Linux Server 7.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1198, 'Red Hat Enterprise Linux Server release 6.5 (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1199, 'Linux Red Hat6.8', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1200, 'Red Hat Enterprise Linux Server 6.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1201, 'LINUXRed Hat Enterprise Linux Server 6.10', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1202, 'Red Hat Enterprise Linux 7.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1203, 'Red Hat Enterprise Linux Server 7.x', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1204, 'Redhat Linux 7.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1205, 'red hat', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1206, 'LINUX RedHat EL 6.10 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1207, 'Red Hat Enterprise Linux 6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1208, 'Red Hat Enterprise Linux Server release 6.7 (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1209, 'Linux Red Hat5.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1210, 'Red Hat Enterprise Linux 7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1211, 'Red Hat Linux 6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1212, 'RED HAT ENTERPRISE LINUX 7.X', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1213, 'RHEL x86-64', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1214, 'LINUX RED HAT ENTERPRISE SERVER 7.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1215, 'Red Hat Enterprise Linux Server 4.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1216, 'RED HAT ENTERPRISE LINUX 5 (64 Bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1217, 'Redhat', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1218, 'RED HAT ENTERPRISE LINUX 7.X TPM', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1219, 'Red Hat Enterprise Linux Server 6.8', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1220, 'Red Hat Enterprise Linux Server 5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1221, 'RED HAT ENTERPRISE LINUX SERVER 6.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1222, 'RedHat 7.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1223, 'Redhat Linux 6.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1224, 'LINUX RED HAT 5 EL', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1225, 'LINUX RedHat EL 6.9 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1226, 'RED HAT ENTERPRISE LINUX 7.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1227, 'suse enterprise server 11 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1228, 'SUSE Linux Enterprise Server 12 x86_64', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1229, 'SUSE11', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1230, 'SUSE Linux Enterprise 10 (32-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1231, 'SUSE Linux Enterprise 10 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1232, 'Linux SuSE12', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1233, 'SUSE Linux Enterprise 12 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1234, 'Linux SuSE2.6.32-504.12.2.el6.x86_64', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1235, 'LINUXSUSE_SLES 11.4', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1236, 'SUSE Linux Enterprise 11 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1237, 'SUSE10', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1238, 'SUSE Linux 12', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1239, 'LINUX SUSE_SLES 11.4', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1240, 'LINUX SuSE Enterprise Server 11 64bit', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1241, 'SLES 11 SP4', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1242, 'SUSE Enterprise Server 11 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1243, 'SUSELinux Enterprise 11.x', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1244, 'SUSE Linux Enterprise Server 11 x86_64', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1245, 'SUSE Enterprise 11 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1246, 'SUSE Enterprise 10 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1247, 'suse enterprise 11 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1248, 'SUSE LINUX ENTERPRISE SERVER 11, SERVICE PACK SERVICE PACK SP4', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1249, 'SUSE Linux 11', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1250, 'SUSE Linux 11 SP3', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1251, 'SUSE Linux Eneterprise Server (SLES) 11.0', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1252, 'SUSE Linux', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1253, 'SLES 9', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1254, 'SUSE Linux Enterprise Server 11 (x86_64)PATCHLEVEL = 3', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1255, 'Linux SuSE11', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1256, 'SUSE', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1257, 'SUSELinux Enterprise 11 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1258, 'LINUX SuSE Enterprise Server 9', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1259, 'LINUX SuSE 10.0 Enterprise', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1260, 'SUSE LINUX ENTERPRISE SERVER 11.3', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1261, 'SUSE LINUX Enterprise Server 9 (i586) VERSION = 9 PATCHLEVEL = 3', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1262, 'SUSE Linux Enterprise Server 11 (x86_64)PATCHLEVEL = 1', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1263, 'SUSE Linux Enterprise 11 SP4', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1264, 'SuseLinux', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1265, 'SLES 12 SP2 for Power/SAP', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1266, 'SUSE Linux Enterprise Server', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1267, 'LINUX Ubuntu 12.04.1 LTS', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1268, 'Ubuntu - Ubuntu Server - 16.04.1 LTS', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1269, 'Ubuntu Linux (32-bit)', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1270, 'LINUX Ubuntu 16.04 LTS', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1271, 'Ubuntu Linux Server 10 (64-bit)', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1272, 'Ubuntu', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1273, 'LINUX Ubuntu 14.04 LTS', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1274, 'UBUNTU LINUX (64-BIT)', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1275, 'Ubuntu Linux', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1276, 'LINUX UBUNTU 16.04', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1277, 'LINUX Ubuntu', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1278, 'Linux - Ubuntu Server 16.04.1 LTS', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1279, 'zLinux', 6, 437, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1280, 'Lisp', 9, 341, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1281, 'Lotus Domino', 8, 270, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1282, 'domino8.5', 8, 270, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1283, 'Domino 8.x', 8, 270, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1284, 'Lotus Notes', 2, 93, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1285, 'Lotus Notes Internal', 2, 93, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1286, 'Lucee', 8, 271, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1287, 'Lucee 5.2.6.60', 8, 271, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1288, 'MaaS360', 2, 94, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1289, 'mac OS', 6, 438, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1290, 'macOS', 6, 438, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1291, 'Darwin', 6, 438, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1292, 'Malwarebytes Anti-Malware', 2, 95, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1293, 'Malwarebytes Corporation - Malwarebytes Anti-Malware 3.4', 2, 95, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1294, 'Malwarebytes', 2, 95, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1295, 'ManageEngine ADSelfService Plus', 2, 96, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1296, 'Manage Engine ADSelfService Porta', 2, 96, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1297, 'Marklogic', 2, 97, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1298, 'MarkLogic DB', 2, 97, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1299, 'Memcache', 2, 98, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1300, 'Memcached', 2, 98, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1301, 'ACCDB', 2, 99, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1302, 'Microsoft Access', 2, 99, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1303, 'Access DB', 2, 99, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1304, 'MS Access 2016', 2, 99, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1305, 'MS Access', 2, 99, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1306, 'Microsoft BizTalk Adapters for Host Systems 2.0', 2, 100, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1307, 'Microsoft BizTalk Adapters for Host Systems', 2, 100, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1308, 'Microsoft Dynamics AX', 2, 101, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1309, 'MS Dynamics AX 4', 2, 101, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1310, 'Microsoft - Microsoft System Center Configuration Manager 2012', 2, 102, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1311, 'SCCM', 2, 102, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1312, 'Microsoft Endpoint Configuration Manager (SCCM)', 2, 102, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1313, 'ConfigMgr', 2, 102, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1314, 'Microsoft - Microsoft System Center Configuration Manager Client 5', 2, 102, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1315, 'Microsoft Endpoint Configuration Manager', 2, 102, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1316, 'MS System Centre Configuration Manager', 2, 102, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1317, 'MS Excel', 2, 103, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1318, 'Excel', 2, 103, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1319, 'Microsoft Excel 2010', 2, 103, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1320, 'Microsoft Excel', 2, 103, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1321, 'Excel 2010', 2, 103, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1322, 'Microsoft Exchange Server', 2, 104, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1323, 'MS Exchange 2010 Enterprise', 2, 104, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1324, 'Veeam Explorer', 5, 464, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1325, 'Microsoft Forefront Identity Manager (FIM)', 2, 105, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1326, 'Microsoft Forefront Identity Manager', 2, 105, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1327, 'FIM SQL Development Server', 2, 105, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1328, 'InfoPath', 2, 106, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1329, 'Microsoft InfoPath', 2, 106, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1330, 'Microsoft - Internet Explor', 2, 107, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1331, 'Microsoft - Internet Explorer 11', 2, 107, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1332, 'Microsoft Internet Explorer', 2, 107, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1333, 'Internet Explor', 2, 107, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1334, 'ISA Server', 2, 108, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1335, 'Microsoft ISA Server', 2, 108, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1336, 'Microsoft MQ', 2, 109, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1337, 'System Center Endpoint Protection for Mac', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1338, 'System Center 2012 Endpoint Protection', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1339, 'Microsoft System Center 2012 Endpoint Protection', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1340, 'Microsoft - Microsoft System Center 2012 Endpoint Protection 2.2', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1341, 'SCEP for Linux', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1342, 'System Center Endpoint Protection for Linux', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1343, 'Microsoft System Center Endpoint Protection 2012', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1344, 'System Center 2012 R2 Endpoint Protection', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1345, 'SCEP for Mac', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1346, 'Microsoft System Center Endpoint Protection', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1347, 'System Center Endpoint Protection', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1348, 'Microsoft - Microsoft Visual Studio 2010', 2, 111, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1349, 'Microsoft Visual Studio 2010', 2, 111, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1350, 'Microsoft Visual Studio', 2, 111, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1351, 'Visual Studio', 2, 111, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1352, 'Microsoft Web Deploy 2.0', 2, 112, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1353, 'Microsoft Web Deploy', 2, 112, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1354, 'Web Deploy', 2, 112, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1355, 'msdeploy', 2, 112, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1356, 'Web Farm Framework', 2, 113, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1357, 'Microsoft Web Farm Framework Version 2.2', 2, 113, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1358, 'Microsoft Web Farm Framework', 2, 113, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1359, 'WFF', 2, 113, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1360, 'Microsoft Web Farm Framework (WFF)', 2, 113, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1361, 'WebPI', 2, 114, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1362, 'Web Platform Installer', 2, 114, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1363, 'Microsoft Web Platform Installer', 2, 114, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1364, 'Microsoft Web Platform Installer 3.0', 2, 114, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1365, 'Web PI', 2, 114, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1366, 'MDW 6', 2, 115, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1367, 'MDW Framework', 2, 115, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1368, 'MDW', 2, 115, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1369, 'Model Driven Workflow', 2, 115, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1370, 'Model Driven Workflow (MDW)', 2, 115, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1371, 'MONGO-DB', 2, 116, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1372, 'Mango DB', 2, 116, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1373, 'Mongo DB', 2, 116, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1374, 'MangoDB', 2, 116, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1375, 'MongoDB', 2, 116, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1376, 'Mozilla.org - Firefox 38.5', 2, 117, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1377, 'Firefox', 2, 117, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1378, 'Mozilla.org', 2, 117, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1379, 'Mozilla.org - Firefox 68', 2, 117, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1380, 'Mozilla Firefox', 2, 117, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1381, 'Mozilla.or', 2, 117, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1382, 'MQ Client 7.5', 2, 118, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1383, 'MQ Client', 2, 118, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1384, 'MS Office 365', 2, 119, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1385, 'Office 365', 2, 119, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1386, 'O365', 2, 119, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1387, 'MS SQL Server 2008 Standard', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1388, 'MS SQL 2008R2SP2ENT (10.52.4042.0)', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1389, 'MS SQL Server 2008', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1390, 'SQL Server 11.0.2100.60', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1391, 'MS SQL 2016 SP1', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1392, 'SQL 2012 Development Server', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1393, 'MICROSOFT SQL SERVER 2008 R2 ENTERPRISE EDITION 10.5', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1394, 'Microsoft - Microsoft SQL Server 2012 for Microsoft SQL Server 2012 Standard Edition 2012', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1395, 'MS SQL Server MS SQL Server 2008', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1396, 'SQL Server 2016 SP1', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1397, 'SQL Server 2000', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1398, 'SQL Server 2005 Standard', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1399, 'Microsoft SQL Server 2008 (SP4) - 10.0.6000.29 (X64)', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1400, 'MICROSOFT SQL SERVER 2005 STANDARD EDITION 9.*', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1401, 'Microsoft SQL Server SQL Server 2008 R2', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1402, 'MICROSOFT SQL SERVER 2012 DEVELOPER EDITION', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1403, 'Microsoft SQL Server 2000', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1404, 'MS SQL Server 2008 R2 Express', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1405, 'SQL Server', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1406, 'SQL Server 2012 SP3', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1407, 'SQL Server 2003', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1408, 'Microsoft SQL Server 2016 - Service pack 2', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1409, 'SQL SERVER 2008 R2', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1410, 'MS SQL Server 2008 Enterprise R2', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1411, 'MS SQL Server 2014 Express', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1412, 'SQL Server 2008 R2 SP1', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1413, 'SQL Server 2008 R2 Enterprize SP2 64Bit', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1414, 'MICROSOFT SQL SERVER 2012 STANDARD EDITION', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1415, 'MS SQL Server 2008 Developer', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1416, 'SQL 2005', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1417, 'MICROSOFT SQL SERVER 2008 DEVELOPER EDITION', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1418, 'Microsoft SQL Server 2012 (SP4-GDR)', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1419, 'MS SQL Server 2012 Enterprise', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1420, 'Microsoft SQL Server 2008 R2 (RTM) - 10.50.1600.1 (X64)', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1421, 'MS SQL Server 2005 Express', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1422, 'SQL Server 2016', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1423, 'Microsoft SQL Server 2012', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1424, 'Microsoft SQL Server SQL Server 2005', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1425, 'MS SQL', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1426, 'sql server 2009 SQL', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1427, 'Microsoft - Microsoft SQL - 13.0', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1428, 'MSSQL Database Server', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1429, 'SQL Server 2008 R2 SP3', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1430, 'sql server 2013 SQL', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1431, 'SQL 2012', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1432, 'Microsoft SQL Server 2000 (SP4)', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1433, 'MS SQL Server 2012 Standard', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1434, 'MSSQL2008', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1435, 'MS SQL server 2008 R2', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1436, 'MS SQL Server 2000 Standard', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1437, 'MS SQLServer', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1438, 'microsoft sql', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1439, 'MS SQL 2008R2SP2STD (10.52.4042.0)', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1440, 'MS SQL Server 2008 R2 Standard', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1441, 'MS SQL Server 2005 Enterprise', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1442, 'MS SQL Server 2008 Standard R2', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1443, 'SQL Server 12.0.2000.8', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1444, 'MS SQL 2008R2SP3STD (10.53.6220.0)', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1445, 'SQL Server 11.0.5388.0', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1446, 'sql server 2011 SQL', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1447, 'MS SQL Server 2014 Enterprise', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1448, 'sql server 2008 SQL', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1449, 'SQl 2016', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1450, 'Microsoft SQL Server', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1451, 'SQL Server 2014 SP2', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1452, 'SQL Server 2008 R2 RTM', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1453, 'Microsoft SQL Server Standard Edition', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1454, 'MS SQL Server 2000', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1455, 'sql2000', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1456, 'SQL Server 2012', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1457, 'Microsoft SQL Server 2008', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1458, 'SQL Server 10.0.5538.0', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1459, 'Microsoft - Microsoft SQL Server 2008 R2 for Microsoft SQL Server 2008 R2 Express Edition 2008', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1460, 'MICROSOFT SQL SERVER 2014 ENTERPRISE EDITION 12', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1461, 'SQL Server 11.0.3156.0', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1462, 'SQLServer', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1463, 'SQL Server 2000 SP4', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1464, 'SQL Server 2008', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1465, 'SQL Server 2008 R2 STD SP1', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1466, 'sql server 2010 SQL', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1467, 'MICROSOFT SQL SERVER 2008 R2 STANDARD EDITION', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1468, 'Microsoft SQL Server 2012 (SP4) (KB4018073) - 11.0.7001.0 (X64)', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1469, 'MICROSOFT SQL SERVER 2014 STANDARD EDITION 12', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1470, 'MS SQL SERVER 08', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1471, 'SQL Server 10.50.2550.0', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1472, 'Microsoft SQL Server 2005', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1473, 'SQL 2000', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1474, 'sql server 2012 SQL', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1475, 'MS SQL Server 2017', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1476, 'MS SQL Server 2012', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1477, 'MS SQL Server 2008 R2 Enterprise', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1478, 'SQL Server 9.0.1399.0', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1479, 'MS SQL 2008SP2STD (10.2.4067.0)', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1480, 'SQL Server 2005', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1481, 'Microsoft SQL Server 8.1', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1482, 'Microsoft - Microsoft SQL Server 2005 for Microsoft SQL Server 2005 Express Edition 2005', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1483, 'Microsoft - Microsoft SQL Server 2008 R2 for Microsoft SQL Server 2008 R2 Standard Edition 2008', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1484, 'MICROSOFT SQL SERVER 2008 R2 ENTERPRISE EDITION 10.*', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1485, 'MICROSOFT SQL SERVER 2008 R2 STANDARD EDITION 10.5', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1486, 'MS SQL 2005SP3STD (9.3.4340)', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1487, 'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1488, 'SQL Server 2017 RTM', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1489, 'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION 11.0"', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1490, 'SQL 2014', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1491, 'Microsoft - Microsoft SQL Server 2014 for Microsoft SQL Server 2014 Express Edition 2014', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1492, 'Microsoft SQL Server 2008R2', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1493, 'SQL Server 2008 SP1', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1494, 'MICROSOFT SQL SERVER 2005 ENTERPRISE EDITION', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1495, 'SQLSVR2008', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1496, 'MICROSOFT SQL SERVER 2008 ENTERPRISE EDITION', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1497, 'SQL Server 9.0.5069.0', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1498, 'MS SQL Instance', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1499, 'Microsoft - Microsoft SQL Server 2014 for Microsoft SQL Server 2014 Standard Edition 2014', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1500, 'MICROSOFT SQL SERVER 2008 STANDARD EDITION', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1501, 'SQL Server 2012 SP4', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1502, 'Microsoft SQL sever 2008 R2 SP 3', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1503, 'SQL Server 2012 SP2', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1504, 'Microsoft SQL Server 2016', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1505, 'MS SQL Server 2012 Developer', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1506, 'MS SQL 2014', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1507, 'MS SQL Server', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1508, 'MS SQL Server 2005 Standard', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1509, 'SQL Server 2014', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1510, 'MS SQL Server 2016', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1511, 'MICROSOFT SQL SERVER 2012 STANDARD EDITION 11', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1512, 'SQL Server 10.0.2531.0', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1513, 'MICROSOFT SQL SERVER 2000 STANDARD EDITION 8.*', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1514, 'MS SQL Server 2014', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1515, 'Microsoft - SQL Server Express LocalDB 2014', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1516, 'MS SQL 2012SP3STD (11.3.6020.0)', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1517, 'MICROSOFT SQL SERVER 2014 STANDARD EDITION 12.0', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1518, 'MSSQL', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1519, 'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION 11', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1520, 'Microsoft - Microsoft SQL Server 2008 for Microsoft SQL Server 2008 Express Edition 2008', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1521, 'SQL Server 2008 SP4', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1522, 'Microsoft SQL Server 2008 R2 Policies 10.50.1600.1', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1523, 'Microsoft SQL Server 1997 (SP4)', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1524, 'MS SQL Server 2008 Express', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1525, 'MS SQL 2005SP4STD (9.4.5324)', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1526, 'SQL 2008', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1527, 'MS SQL Server 2008 Enterprise', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1528, 'MS SQL Server 2005', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1529, 'SQL 2008 R2', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1530, 'Microsoft SQL Server 2008 (SP3) - 10.0.5500.0 (X64)', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1531, 'MS SQL Server 2014 Standard', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1532, 'SQL Server 2016 SP2', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1533, 'Microsoft SQL Server 2014', 2, 120, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1534, 'Microsoft SQL Server Browser 10.52.4000.0', 5, 465, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1535, 'MS SQL Server Browser', 5, 465, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1536, 'MS SQL Server Compact', 2, 121, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1537, 'Microsoft SQL Server Compact 3.5 SP2 ENU 3.5.8080.0', 2, 121, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1538, 'Microsoft SQL Server Compact 3.5 SP2 Query Tools ENU 3.5.8080.0', 2, 121, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1539, 'MS DTS', 5, 466, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1540, 'Data Transformation Services', 5, 466, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1541, 'Microsoft - Microsoft SQL Server Replication Logreader Agent 9', 5, 467, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1542, 'Log Reader Agent', 5, 467, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1543, 'SQL Server Analysis Services 10.50.2500.0', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1544, 'SQL Server Analysis Services 11.0.2218.0', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1545, 'SQL Server Analysis Services', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1546, 'Microsoft - Microsoft SQL Server Analysis Services 2012 for Microsoft SQL Server 2012 Standard Edition 2012', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1547, 'Microsoft - Microsoft SQL Server Analysis Services 2014 for Microsoft SQL Server 2014 Standard Edition 2014', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1548, 'SSAS 2012', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1549, 'Microsoft - Microsoft SQL Server Analysis Services 2014 for Microsoft SQL Server 2014 Enterprise Edition 2014', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1550, 'SQL Server Analysis Services 12.0.2000.8', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1551, 'SQL Server Analysis Services (SSAS)', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1552, 'SQL Server Analysis Services 11.0.3000.0', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1553, 'SSAS', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1554, '6+ SSAS databases', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1555, '25+ SSAS databases', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1556, 'SQL Server Database Engine', 5, 469, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1557, 'Microsoft - Microsoft SQL Server Database Engine Services 10.1', 5, 469, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1558, 'Microsoft - Microsoft SQL Server Integration Services 2014 for Microsoft SQL Server 2014 Enterprise Edition 2014', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1559, 'SSIS', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1560, 'SSIS 2008 R3', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1561, 'Microsoft - Microsoft SQL Server Integration Services 2014 for Microsoft SQL Server 2014 Standard Edition 2014', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1562, 'SSIS 2008 R4', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1563, 'SQL Server Integration Services', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1564, 'SSIS 2008 R2', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1565, 'SSIS - 2008', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1566, 'SQL Server Integration Services (SSIS)', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1567, 'Microsoft - Microsoft SQL Server Management Studio 16', 5, 471, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1568, 'Microsoft SQL Server Management studio2016', 5, 471, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1569, 'SQL Management Studio', 5, 471, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1570, 'SQL server mgmt studio 2012', 5, 471, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1571, 'SQL Server Management Studio', 5, 471, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1572, 'Microsoft - SQL Server Management Studio 2012', 5, 471, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1573, 'Microsoft - Microsoft SQL Report Builder 10.5', 5, 472, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1574, 'SQL Server Report Builder', 5, 472, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1575, 'SQL Server Reporting Services 10.50.2500.0', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1576, 'SQL Server Reporting Services', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1577, 'SQL Server Reporting Services 11.0.5058.0', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1578, 'SQL Server Reporting Services 12.0.2000.8', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1579, 'SQL Server Reporting Services 11.0.2218.0', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1580, 'Microsoft - Microsoft SQL Server Reporting Services 2012 for Microsoft SQL Server 2012 Express Edition 2012', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1581, 'SQL Server Reporting Services 11.0.3000.0', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1582, 'SSRS 2016', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1583, 'SSRS', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1584, 'SQL Server Reporting Services (SSRS)', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1585, 'MICROSOFT SQL SERVER REPORTING SERVICES 10.*', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1586, 'MVS', 6, 439, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1587, 'OS/390', 6, 440, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1588, 'ZOS V1R9', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1589, 'ZOS Base 1.12', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1590, 'IBM Z/OS V2.1', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1591, 'z/OS 1.9', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1592, 'z/OS', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1593, 'zOS', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1594, 'z/OS 1.8', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1595, 'zOS 11.1', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1596, 'z/OS Base', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1597, 'MySQL Instance', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1598, 'MySQL AB - MySQL - 15.1', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1599, 'My SQL 0', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1600, 'MYSQL', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1601, 'Sun - Sun Microsystems MySQL Server Community Edition 5.6', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1602, 'MySQL AB - MySQL Server 5.5', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1603, 'MySQL AB - MySQL Server 5.7', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1604, 'MySQL Enterprise Server - 8.0.16', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1605, 'mysql on linux', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1606, 'Neo4', 2, 123, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1607, 'Neo4J', 2, 123, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1608, 'Net Optics Network TAPs', 4, 297, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1609, 'Net Optics Taps', 4, 297, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1610, 'NAS', 8, 272, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1611, 'Netscape Application Server', 8, 272, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1612, 'Netscape Application Server (NAS)', 8, 272, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1613, 'NES', 8, 273, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1614, 'Netscape Enterprise Server', 8, 273, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1615, 'Netscape En', 8, 273, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1616, 'Netscape Enterprise Server (NES)', 8, 273, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1617, 'Nexus', 2, 124, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1618, 'Nexus Repository OSS', 2, 124, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1619, 'Nginx (Linux)', 8, 274, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1620, 'Nginx 3 (Linux)', 8, 274, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1621, 'Nginx 1 (Linux)', 8, 274, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1622, 'Nginx', 8, 274, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1623, 'Nginx 1', 8, 274, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1624, 'Nginx 3', 8, 274, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1625, 'Niakwa Programming Language (NPL)', 9, 342, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1626, 'NPL (Niakwa Inc)', 9, 342, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1627, 'Niakwa Programming Language', 9, 342, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1628, 'NIX', 2, 125, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1629, 'Nix package manager', 2, 125, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1630, 'Node.js', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1631, 'Node.js 0.10 (Linux)', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1632, 'Nodejs Foundation - nodejs - node.js 11.7.0', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1633, 'TS-Node.js 6', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1634, 'Node.js 4', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1635, 'Node.js 6', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1636, 'Node.js 10', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1637, 'Node.js 8', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1638, 'TS-Node.js 8', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1639, 'TS-Node.js 0.10', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1640, 'node', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1641, 'Node.js 0.8', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1642, 'Node.js 0.10', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1643, 'Node.js 4 (Linux)', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1644, 'TS-Node.js 11', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1645, 'Node.js 5', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1646, 'Nodejs', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1647, 'Node.js 0.12', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1648, 'Objective C', 9, 343, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1649, 'Objective-C', 9, 343, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1650, 'Obj-C', 9, 343, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1651, 'OpenEdge ABL', 9, 344, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1652, 'Progress', 9, 344, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1653, 'OpenEdge', 9, 344, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1654, 'Progress OpenEdge', 9, 344, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1655, 'Symas OpenLDAP', 2, 126, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1656, 'OpenLDAP', 2, 126, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1657, 'HPExstream', 2, 127, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1658, 'OpenText Exstream', 2, 127, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1659, 'VMS 8.4', 6, 442, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1660, 'OPENVMS 7.3.2', 6, 442, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1661, 'VMS', 6, 442, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1662, 'OpenVMS', 6, 442, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1663, 'OPENVMS 8.4', 6, 442, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1664, 'OpenVPN', 2, 128, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1665, 'Oracle Access Management', 2, 129, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1666, 'OAM 12c', 2, 129, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1667, 'ADF 12c', 2, 130, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1668, 'Oracle ADF', 2, 130, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1669, 'Oracle APEX', 2, 131, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1670, 'Apex', 2, 131, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1671, 'Oracle HTTP Server 12c', 8, 275, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1672, 'OHS', 8, 275, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1673, 'Oracle Application Server 9i', 8, 275, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1674, 'Oracle HTTP Server powered by Apache', 8, 275, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1675, 'j2eeoracleca', 8, 275, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1676, 'Oracle Application Server', 8, 275, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1677, 'Oracle HTTP', 8, 275, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1678, 'Oracle HTTP server', 8, 275, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1679, 'Oracle - Oracle Application Server OC4J Instance 11.2', 8, 275, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1680, 'Oracle Web App Server', 8, 275, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1681, '9i AS server', 8, 275, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1682, 'Oracle Applications 11.5.10CU2', 8, 275, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1683, 'Oracle Application R12.1.3', 8, 275, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1684, 'OC4J', 8, 275, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1685, 'Oracle Appache 1.0.22', 8, 275, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1686, 'Oracle Transparent Gateway', 7, 494, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1687, 'Weblogic BI Publisher', 2, 132, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1688, 'Oracle BI Publisher 10g (10.1.3.4)', 2, 132, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1689, 'Oracle BI Publisher', 2, 132, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1690, 'Oracle Business Intelligence', 2, 133, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1691, 'OBI', 2, 133, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1692, 'OBIEE', 2, 133, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1693, 'OBI Reporting', 2, 133, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1694, 'Oracle 12c Enterprise', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1695, 'Oracle 12 c', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1696, 'Oracle 12.2 Client', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1697, 'Oracle 11gR1', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1698, 'Oracle 18c', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1699, 'Oracle 9.2.0.7.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1700, 'Oracle 10.2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1701, 'Oracle Database 11g Enterprise Edition Release 11.2.0.4.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1702, 'Oracle 11.2 (Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit) RAC', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1703, 'Oracle 18', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1704, 'Oracle 9i', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1705, 'Oracle 12c (v12.2.0.1) ORACLE', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1706, 'Oracle Database 12.1.0.2.190716', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1707, 'Oracle 12.1.0.2.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1708, 'Oracle 12.1', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1709, 'Oracle Database 11g R2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1710, 'Oracle 11 on AIX', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1711, 'Oracle Database 10g Enterprise Edition Release 10.1.0.4.0 - 64bit', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1712, 'Oracle Database 11.2.0.3.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1713, 'Oracle Database 10g 10.2.0.5.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1714, 'Oracle 11 on EXA', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1715, 'Oracle Database 11.1.0.7.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1716, 'Oracle Database Server', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1717, 'Oracle DB Server', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1718, 'Oracle (9i,10g,11g,12c,18c)', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1719, 'Oracle 12C', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1720, 'Oracle 10.2.0.5', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1721, 'Oracle-OracleDB-10g', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1722, 'Oracle 11.2.0.2.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1723, 'Oracle 10', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1724, 'Oracle 8', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1725, 'Oracle 11G R2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1726, 'Oracle Database 10g Release 10.2.0.4.0 - 64bit Production', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1727, 'Oarcle 11G', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1728, 'Oracle 12C R2 ORACLE', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1729, 'Oracle 11x', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1730, 'Oracle 11.2.4', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1731, 'Oracle Database 11gR2 Enterprise Edition 11.2.0.1 (64-bit)', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1732, 'Oracle', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1733, 'Oracle 12.1.0.2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1734, 'Oracle Database 10g R2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1735, 'Oracle 12x', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1736, 'Oracle - 12.1.0.2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1737, 'Oracle 10g', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1738, 'DB - Oracle inbuilt', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1739, 'Oracle 12g', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1740, 'Oracle Database 10g Release 2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1741, 'Oracle 11.2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1742, 'Oracle 11 g', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1743, 'Oracle 9.2.0.8.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1744, 'Oracle Database 12.2.1.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1745, 'Oracle 10.2.0.4.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1746, 'Oracle 10g (10.2.0.3.0 on 32-bit windows)', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1747, 'Oracle 11g (11.2.0.3.0 on 64-bit windows)', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1748, 'Oracle-Oracle DB-8i', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1749, 'Oracle DB', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1750, 'Oracle Database', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1751, 'Oracle - Oracle Database - 10g Release 2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1752, 'Oracle 10x', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1753, 'Oracle 11.2.0.4.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1754, 'Oracle 11g RAC', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1755, 'Oracle Database 11g Release 2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1756, 'Oracle Server', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1757, 'Oracle Database 12c R1', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1758, 'Oracle 10.2.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1759, 'Oracle 11.2.0.4.0 64-bit', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1760, 'Oracle 10.2.0.5.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1761, 'Oracle 9.2.0.5.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1762, 'Oracle DB 11g EER 11.2.0.3.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1763, 'ORACLE RELATIONAL DATABASE MANAGEMENT SYSTEM VERSION 11.2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1764, 'Oracle Database 9i Release 2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1765, 'Oracle 11.1.0.7.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1766, 'Oracle Database 11g', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1767, 'Oracle DB 11.2.0.3', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1768, 'Oracle 12.2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1769, 'Oracle 11g', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1770, 'Oracle Database 12c Release 2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1771, 'Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1772, 'Oracle 11.2.0.3.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1773, 'Oracle 10.2.0.3.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1774, 'Oracle 12', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1775, 'Oracle Database 12c R2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1776, 'Oracle 12C on linux', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1777, 'oracle 11g ORACLE', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1778, 'Oracle - 11.2.0.3', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1779, 'Oracle 12c (Oracle Database 12c Enterprise Edition Release 11.2.0.3.0 - 64bit)', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1780, 'Oracle9i Enterprise Edition Release 9.2.0.5.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1781, 'OracleDB EE11.2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1782, 'Oracle 11g on linux', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1783, 'Oracle 11gEssbase', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1784, 'Oracle12', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1785, 'Oracle Database 12c Release 1', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1786, 'JServer Release 9.2.0.5.0', 5, 474, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1787, 'Jserver', 5, 474, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1788, 'ORACLE SPATIAL', 5, 475, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1789, 'Oracle Spatial and Graph', 5, 475, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1790, 'Designer 6i', 2, 135, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1791, 'Oracle Designer', 2, 135, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1792, 'Enterprise Manager 12.2.1.1', 2, 136, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1793, 'Enterprise Manager 12.2.1.2', 2, 136, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1794, 'Enterprise Manager 11.1.1.7', 2, 136, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1795, 'Oracle Enterprise Manager', 2, 136, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1796, 'Exadata X6-2', 4, 298, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1797, 'Oracle Exadata', 4, 298, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1798, 'Oracle Exadata 11g', 4, 298, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1799, 'Oracle - Exadata X6-2', 4, 298, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1800, 'Oracle Forms', 2, 137, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1801, 'Hyperion Interactive Reporting', 2, 138, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1802, 'Oracle Hyperion Interactive Reporting version 9.3', 2, 138, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1803, 'Hyperion Planning Server', 2, 139, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1804, 'Hyperion Planning', 2, 139, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1805, 'Oracle Net Services', 2, 140, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1806, 'Oracle, Nets', 2, 140, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1807, 'Oracle Real Application Clusters (RAC)', 2, 141, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1808, 'Oracle RAC', 2, 141, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1809, 'Oracle Real Application Clusters', 2, 141, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1810, 'Oracle Retail Point-of-Service', 2, 142, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1811, 'ORPOS 13.3.3', 2, 142, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1812, 'ORPOS 13.3.5', 2, 142, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1813, 'ORPOS 13.3.4', 2, 142, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1814, 'Oracle Service Bus', 2, 143, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1815, 'Oracle Service Bus 11.1.1.7', 2, 143, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1816, 'Oracle Service Bus 12.2.1.2', 2, 143, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1817, 'OSB Servers', 2, 143, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1818, 'Oracle Service Bus 12.2.1.1', 2, 143, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1819, 'Oracle Smart View', 2, 144, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1820, 'Hyperian Smart View', 2, 144, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1821, 'Oracle SOA Suite', 2, 145, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1822, 'Oracle SOA Suite 12.2.1.3.0', 2, 145, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1823, 'Oracle SQL Developer', 2, 146, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1824, 'Oracle - Oracle Sql Developer 1.5', 2, 146, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1825, 'Oracle TimesTen In-Memory Database', 2, 147, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1826, 'Oracle TT', 2, 147, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1827, 'Oracle VM 3.3.3', 3, 567, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1828, 'Oracle VM', 3, 567, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1829, 'Oracle VM 3.3', 3, 567, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1830, 'OWB 10g', 2, 148, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1831, 'Oracle Warehouse Builder', 2, 148, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1832, 'Oracle Warehouse Builder (OWB)', 2, 148, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1833, 'WebCenter Content Server', 8, 276, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1834, 'Oracle WebCenter Content Server', 8, 276, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1835, 'IDOC SCRIPT', 7, 495, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1836, 'Orbix', 2, 149, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1837, 'IONA Orbix', 2, 149, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1838, 'OS/2', 6, 443, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1839, 'OWASP Enterprise Security API (ESAPI)', 12, 416, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1840, 'OWASP Enterprise Security API', 12, 416, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1841, 'Esapi', 12, 416, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1842, 'Pascal', 9, 345, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1843, 'Object Pascal', 9, 346, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1844, 'Clascal', 9, 346, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1845, 'Pentaho', 2, 150, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1846, 'peoplesoft', 2, 151, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1847, 'Oracle-HR-9.2', 2, 151, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1848, 'Perkin Elmer Informatics', 2, 152, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1849, 'Perkin Elmer Informatics (PKI)', 2, 152, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1850, 'Perl', 9, 347, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1851, 'Perl 5.8.4', 9, 347, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1852, 'ActivePerl', 9, 348, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1853, 'ActiveState Tool Corp. - ActivePerl 5.12', 9, 348, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1854, 'ActiveState Tool Corp. - ActivePerl 5.8', 9, 348, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1855, 'ORAPERL', 12, 417, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1856, 'REX', 9, 349, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1857, 'Pervasive', 2, 153, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1858, 'Pervasive PSQL', 2, 153, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1859, 'PHP 5.4', 9, 350, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1860, 'PHP', 9, 350, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1861, 'Pipeflo', 2, 154, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1862, 'PIPE-FLO', 2, 154, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1863, 'TCServer V6', 8, 277, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1864, 'Pivotal tc Server', 8, 277, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1865, 'IBM PKWARE PKZip 2', 2, 155, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1866, 'PKZIP', 2, 155, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1867, 'PL/I', 9, 351, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1868, 'PL1', 9, 351, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1869, 'pli', 9, 351, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1870, 'PL/1', 9, 351, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1871, 'PLQSL', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1872, 'Oracle - SQL', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1873, 'PL/SQL TEMPLATING LANGUAGE', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1874, 'PL/SQL', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1875, 'Oracle SQL', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1876, 'PLSQL;', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1877, 'Oracle PL/SQL', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1878, 'Oracle PLSQL', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1879, 'plsql', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1880, 'pl-sql', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1881, 'PL SQL', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1882, 'Planview', 2, 156, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1883, 'Projectplace', 2, 156, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1884, 'postgres', 2, 157, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1885, 'PostGreSQL', 2, 157, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1886, 'PostgreSQL 0', 2, 157, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1887, 'Postgress', 2, 157, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1888, 'PowerBuilder 6.5', 2, 158, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1889, 'Powerbuilder V12.5', 2, 158, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1890, 'Power Builder', 2, 158, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1891, 'Powerbuilder v11.5', 2, 158, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1892, 'Power Builder 6.5', 2, 158, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1893, 'Powerbuilder', 2, 158, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1894, 'Primavera', 2, 159, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1895, 'Primavera P6', 2, 159, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1896, 'PRO*C', 9, 353, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1897, 'PRO C', 9, 353, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1898, 'ProC', 9, 353, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1899, 'Pro*Cobol', 2, 160, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1900, 'ProjectWise', 2, 161, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1901, 'ProjectWise Oracle Server', 2, 161, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1902, 'Projectwise Server (XM)', 2, 162, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1903, 'ProjectWise JJ', 2, 162, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1904, 'Projectwise Server', 2, 162, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1905, 'Projectwise Setup for PEMEX', 2, 162, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1906, 'ProjectWise Web Server', 2, 162, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1907, 'ProjectWise Application Server', 2, 162, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1908, 'ProjectWise Cache Server', 2, 162, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1909, 'PVCS Version Manager', 2, 163, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1910, 'Serena PVCS Version Manager 8.4', 2, 163, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1911, 'Python Software Foundation - Python 2.6', 9, 354, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1912, 'Python - Python - Python 2', 9, 354, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1913, 'Python 2', 9, 354, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1914, 'Python', 9, 354, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1915, 'QlikView', 2, 164, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1916, 'R', 9, 355, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1917, 'RMQ', 2, 165, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1918, 'rabbit mq', 2, 165, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1919, 'RabbitMQ', 2, 165, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1920, 'ClearCase Build Utility 1', 2, 166, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1921, 'Rational ClearCase', 2, 166, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1922, 'Clearquest', 2, 167, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1923, 'Rational ClearQuest', 2, 167, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1924, 'redis', 2, 168, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1925, 'Remedy', 2, 169, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1926, 'Remedy ARS', 2, 169, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1927, 'Resin Web Server', 8, 278, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1928, 'Resin', 8, 278, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1929, 'rexx', 9, 356, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1930, 'Riak', 2, 170, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1931, 'RightFax client 10', 2, 171, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1932, 'RightFax', 2, 171, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1933, 'RPG', 9, 357, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1934, 'Ruby', 9, 358, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1935, 'Ruby on Rails', 10, 508, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1936, 'Rumba', 2, 172, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1937, 'Salesforce Object Query Language (SOQL)', 9, 359, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1938, 'SOQL', 9, 359, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1939, 'Salesforce Object Query Language', 9, 359, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1940, 'SAP Business Objects', 2, 173, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1941, 'Business Objects 12', 2, 173, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1942, 'BusinessObjects 4.2 SP7', 2, 173, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1943, 'SAP BI 4.2 Sp5', 2, 173, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1944, 'SAP BusinessObjects BI server', 2, 173, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1945, 'SAP ERP', 2, 174, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1946, 'SAP EHP 7', 5, 476, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1947, 'SAP EHP', 5, 476, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1948, 'SAP - SAP Kernel 7.1', 5, 477, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1949, 'SAP Kernel', 5, 477, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1950, 'SAP HANA ON SUSEOracle 11g on Linux', 2, 175, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1951, 'HANA', 2, 175, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1952, 'SAP HANA DB', 2, 175, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1953, 'SAP - HANA 2.0', 2, 175, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1954, 'SAP MaxDB', 2, 176, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1955, 'NetWeaver', 8, 279, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1956, 'SAP NetWeaver App Server', 8, 279, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1957, 'ABAP', 7, 496, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1958, 'SAP NetWeaver Business Warehouse', 2, 177, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1959, 'SAP BW 7.5 SP10 - BW has 10 App servers for load balancing', 2, 177, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1960, 'SAP BW DB server has one instance and 13 servers for load balancing', 2, 177, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1961, 'SAP BW 7.5 SP10', 2, 177, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1962, 'SAP - SAP SQL Anywhere Network Database Server 12', 2, 178, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1963, 'SAP SQL Anywhere', 2, 178, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1964, 'SAP - SAP SQL Anywhere Network Database Server 11', 2, 178, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1965, 'SAP - SAP SQL Anywhere Personal Database Server 16', 2, 178, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1966, 'SAP Web Dynpro', 2, 179, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1967, 'Web-Dynpro', 2, 179, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1968, 'SAS', 9, 360, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1969, 'SAS 9.2', 9, 360, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1970, 'SCSS', 9, 361, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1971, 'Sass', 9, 361, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1972, 'Scala', 9, 362, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1973, 'Scalla', 9, 362, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1974, 'Sentry', 2, 180, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1975, 'Sentry 1.13', 2, 180, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1976, 'Sharepoints 2010', 2, 181, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1977, 'Microsoft SPS 2010', 2, 181, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1978, 'SharePoint', 2, 181, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1979, 'SharePoint 2013', 2, 181, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1980, 'Sharepoint 2007', 2, 181, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1981, 'Sharepoint 2010', 2, 181, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1982, 'SQL Server SP2013 Database Server', 2, 181, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1983, 'Sharepoint 2016', 2, 181, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1984, 'Siebel IP 2015', 2, 182, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1985, 'Siebel 7.8.2.16', 2, 182, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1986, 'Siebel', 2, 182, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1987, 'Siebel CRM', 2, 182, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1988, 'Smalltalk', 9, 363, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1989, 'SNA Manager', 2, 183, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1990, 'SNA Manager 8.0.3608.0', 2, 183, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1991, 'Techsmith Corporation - SnagIt 8', 2, 184, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1992, 'SnagIt', 2, 184, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1993, 'Solid development server', 2, 185, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1994, 'solidDB', 2, 185, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1995, 'SonarSource - SonarSource SonarQube Server 5.1', 2, 186, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1996, 'SonarQube', 2, 186, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1997, 'SpaceMonger', 2, 187, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1998, 'Sixty-Five Software - SpaceMonger 1.4', 2, 187, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1999, 'Spark', 8, 280, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2000, 'Splunk', 2, 188, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2001, 'SQLPlus', 5, 478, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2002, 'SQL Plus', 5, 478, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2003, 'SQL*Plus', 5, 478, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2004, 'SQLIO 1.0', 2, 189, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2005, 'SQLIO', 2, 189, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2006, 'Netscape Enterprise Server', 8, 281, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2007, 'Sun ONE Web Server', 8, 281, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2008, 'Sun Java Web Server 7.0 Update 2', 8, 281, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2009, 'iPlanet Web Server', 8, 281, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2010, 'Oracle iPlanet Web Server', 8, 281, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2011, 'Sun Java Web Server', 8, 281, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2012, 'SunOne', 8, 281, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2013, 'Swift', 9, 364, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2014, 'Sybase SQL Server', 2, 190, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2015, 'Sybase', 2, 190, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2016, 'SYBASE ADAPTIVE SERVER ENTERPRISE DATABASE SERVER 12.5"', 2, 190, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2017, 'SYBASE ADAPTIVE SERVER ENTERPRISE DATABASE SERVER 12', 2, 190, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2018, 'SAP - Sybase Adaptive Server Enterprise 12.5', 2, 190, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2019, 'SAP - Sybase Adaptive Server Enterprise 16', 2, 190, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2020, 'SAP - Sybase Adaptive Server Enterprise 12', 2, 190, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2021, 'Sybase Central', 5, 479, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2022, 'SAP - Sybase Central 4.3', 5, 479, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2023, 'SAP - Sybase Dsedit 12.5', 5, 480, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2024, 'Sybase Dsedit', 5, 480, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2025, 'Sysncsort', 2, 191, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2026, 'syncsort', 2, 191, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2027, 'Sysinternals LLC - AccessEnum 1 1', 2, 194, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2028, 'AccessEnum', 2, 194, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2029, 'Sysinternals LLC - ClockRes 2', 2, 195, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2030, 'ClockRes', 2, 195, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2031, 'Sysinternals LLC - Coreinfo 3.21', 2, 196, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2032, 'Coreinfo', 2, 196, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2033, 'Sysinternals LLC - DiskExt 1.1', 2, 197, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2034, 'DiskExt', 2, 197, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2035, 'Sysinternals LLC - DiskMon 2.01', 2, 198, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2036, 'DiskMon', 2, 198, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2037, 'Hex2dec', 2, 199, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2038, 'Sysinternals LLC - Hex2dec 1', 2, 199, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2039, 'Sysinternals LLC - Junction 1.6', 2, 200, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2040, 'Junction', 2, 200, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2041, 'Sysinternals LLC - LDMDump 1.02', 2, 201, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2042, 'LDMDump', 2, 201, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2043, 'Sysinternals LLC - LoadOrder 1', 2, 202, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2044, 'LoadOrder', 2, 202, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2045, 'PipeList', 2, 203, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2046, 'Sysinternals LLC - PipeList 1.01', 2, 203, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2047, 'Process Explorer', 2, 204, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2048, 'Sysinternals LLC - Process Explorer 16.5', 2, 204, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2049, 'Sysinternals LLC - PsKill 1.15', 2, 205, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2050, 'PsKill', 2, 205, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2051, 'Sysinternals LLC - PsPasswd 1.23', 2, 206, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2052, 'PsPasswd', 2, 206, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2053, 'SDelete', 2, 207, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2054, 'Sysinternals LLC - SDelete 1.61', 2, 207, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2055, 'Sysinternals LLC - ShareEnum 1.6', 2, 208, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2056, 'ShareEnum', 2, 208, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2057, 'Sysinternals LLC - Sync 2.2', 2, 209, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2058, 'Sync', 2, 209, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2059, 'Sysinternals LLC - Sysinternals TCPView 3.5', 2, 210, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2060, 'TCPView', 2, 210, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2061, 'Sysinternals LLC - VMMap 3.11', 2, 211, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2062, 'VMMap', 2, 211, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2063, 'Sysinternals LLC - Whois 1.11', 2, 212, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2064, 'Whois', 2, 212, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2065, 'Tableau', 2, 213, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2066, 'TCL', 9, 365, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2067, 'TCPLink Enterprise Server 6', 2, 214, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2068, '(Canon IT Solutions) TCPLink Enterprise Server 6', 2, 214, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2069, 'TERADATA', 2, 215, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2070, 'Teradata hors Radia', 2, 215, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2071, 'Teradata QS Server', 2, 216, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2072, 'TERADATA QUERY SCHEDULER SERVER VERSION 15', 2, 216, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2073, 'TIBCO Business Works', 2, 217, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2074, 'Tibco BW', 2, 217, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2075, 'BusinessWorks', 2, 217, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2076, 'TIBCO Business Works (BW)', 2, 217, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2077, 'Integration Manager', 5, 481, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2078, 'Tibco-IM', 5, 481, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2079, 'Tibco Integration Manager', 5, 481, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2080, 'Tibco InConcert', 2, 218, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2081, 'TIBCO Rendezvous (RV)', 2, 219, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2082, 'TIBCO Rendezvous', 2, 219, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2083, 'Tivoli Access Manager (TAM)', 2, 220, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2084, 'Tivoli Access Manager 6.1', 2, 220, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2085, 'TortoiseCVS', 2, 221, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2086, 'TortoiseSVN', 2, 222, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2087, 'TortoiseSVN 1.8', 2, 222, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2088, 'TSQL', 9, 366, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2089, 'Transact-SQL', 9, 366, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2090, 'Trasact SQL', 9, 366, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2091, 'T-SQL', 9, 366, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2092, 'Transact SQL', 9, 366, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2093, 'TSO/ISPF', 2, 223, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2094, 'ispf', 2, 223, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2095, 'TSO', 2, 223, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2096, 'TSO ISPF', 2, 223, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2097, 'TWS zCentric 8.4', 2, 224, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2098, 'TWS Zcentric', 2, 224, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2099, 'TypeScript', 9, 367, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2100, 'UltiDev Web Server Pro (UWS)', 8, 282, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2101, 'UltiDev Web Server Pro', 8, 282, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2102, 'UltiDev Web Server Pro 2', 8, 282, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2103, 'UltiDev Cassini Pro', 8, 282, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2104, 'Uniface', 2, 225, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2105, 'Unix', 6, 444, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2106, 'IBM AIX 6.1 6100 64 Bit', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2107, 'AIX 7.1 7100-04-06-1806', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2108, 'AIX-6', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2109, 'AIX Enterprise', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2110, 'IBM AIX', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2111, 'AIX7.1.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2112, 'AIX 7100-05-03-1838', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2113, 'IBM - AIX Standard Edition 7.1', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2114, 'IBM AIX 5.3, SERVICE PACK TL12 SP08', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2115, 'AIX7.2.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2116, 'AIX 6.1.0.0.09', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2117, 'AIX 7.2.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2118, 'AIX 5.3 5300-12-07-1241', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2119, 'AIX 6.1.9.101', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2120, 'AIX 5.3.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2121, 'AIX 7.1', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2122, 'AIX 7.1 7100-05-03-1846', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2123, 'AIX 5.3.0.0.08', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2124, 'AIX 6.1 6100-09-09-1717', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2125, 'AIX 7.1 7100-04-01-1543', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2126, 'AIX 6100-09-09-1717', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2127, 'IBM AIX 6.1 Enterprise 64 Bit', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2128, 'AIX 7.1.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2129, 'IBM AIX 7.1 x', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2130, 'AIX 7.1 7100-05-03-1838', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2131, 'AIX7.2', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2132, 'AIX 6.1 6100-09-12-1838', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2133, 'AIX (Linux)', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2134, 'IBM - AIX Express Edition 7.1', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2135, 'AIX 5.3.0.0.12', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2136, 'AIX', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2137, 'IBM AIX 6.1 6100 32 Bit', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2138, 'AIX: 7.2', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2139, 'AIX 6.1', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2140, 'AIX 5.3', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2141, 'IBM AIX 5.3 5300 64 Bit', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2142, 'AIX 5.2.0.0.09', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2143, 'AIX 5.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2144, 'AIX 7100-05-03-1846', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2145, 'AIX 7.2 7200-03-03-1914', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2146, 'AIX6.1.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2147, 'IBM AIX 7.1 7100 64 Bit', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2148, 'AIX 7.1 7100-05-04-1914', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2149, 'IBM AIX 5.x', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2150, 'AIX 6.1.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2151, 'AIX 7.1.5.16', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2152, 'AIX 6.1.0.0 UNIX LPAR', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2153, 'AIX 5300-12-07-1241', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2154, 'IBM AIX 5.3, SERVICE PACK TL12 SP01', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2155, 'IBM - AIX 6.1.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2156, 'IBM AIX 6.1x', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2157, 'AIX7.1', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2158, 'AIX 7100-04-05-1720', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2159, 'AIX Express', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2160, 'IBM AIX 64 Bit', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2161, 'AIX Standard', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2162, 'AIX 6.1.8.16', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2163, 'FreeBSD (64-bit)', 6, 447, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2164, 'FreeBSD', 6, 447, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2165, 'FreeBSD 8.X', 6, 447, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2166, 'FreeBSD 8.4', 6, 447, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2167, 'Sun Solaris 10 OS', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2168, 'Solaris 11.2 SPARC', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2169, 'Solaris UNIX', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2170, 'Unix Servers (Solaris', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2171, 'Oracle Solaris 11.3 SPARC', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2172, 'SUN 5.10', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2173, 'SOLARIS 10', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2174, 'Sun Solaris', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2175, 'Solaris 5.10 (Generic_150400-61)', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2176, 'Solaris 5.10 (Generic_150400-62)', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2177, 'Solaris (Sun OS 5.9)', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2178, 'Solaris 5.10 (Generic_150400-55)', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2179, 'SUNOS 5.10', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2180, 'Sun Solaris - 5.10', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2181, 'Solaris 10 (SunOS 5.10)', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2182, 'Oracle Solaris', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2183, 'Unix - SunOS - 5.10 Generic_147147-26', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2184, 'Solaris 1 (SPARC)', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2185, 'SUN OS', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2186, 'solaris', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2187, 'SunSolaris 10.0', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2188, 'SOLARIS 9', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2189, 'SunOS', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2190, 'SUN 5.9', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2191, 'SOLARIS 8', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2192, 'SunOS 5.1', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2193, 'SunOS 5.11', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2194, 'Oracle Solaris 10', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2195, 'Sun Solaris 10', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2196, 'HPUX 11i V1', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2197, 'HP-UX 11.31', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2198, 'HPUX 11i V3', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2199, 'HP/UXB.11.23', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2200, 'HPUX B.11.31', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2201, 'HPUX 11', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2202, 'hp-ux', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2203, 'HPUX 11.23', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2204, 'HP-UX B.11.31', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2205, 'HPUX 11.31', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2206, 'HP-UX 11.23', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2207, 'HP-UX B.11.00', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2208, 'HP-UX B.11.23', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2209, 'HP-UX B.11.11', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2210, 'HP 10.20', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2211, 'HP Unix', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2212, 'HP UX', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2213, 'HP-UX 11.11', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2214, 'HPUX', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2215, 'HPUX-11i V3', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2216, 'HP-UX B.10.20', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2217, 'HP/UXB.11.31', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2218, 'HP-UX 10.20', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2219, 'Visual Basic .Net', 9, 368, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2220, 'VB.NET', 9, 368, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2221, 'VB Script', 9, 369, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2222, 'VBscript', 9, 369, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2223, 'NetManage-ViewNow', 2, 226, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2224, 'ViewNow X Server', 2, 226, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2225, 'Virtual I/O Server', 2, 227, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2226, 'VIO 2.2.0.10', 2, 227, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2227, 'VIOS', 2, 227, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2228, 'visibroker', 2, 228, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2229, 'VB6', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2230, 'VB 6.0', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2231, 'visualbasic', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2232, 'VB', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2233, 'VISUAL BASIC 6', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2234, 'Visual Basic', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2235, 'Visual Basic 6.0', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2236, 'Visusal Basic', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2237, 'Visual Basic for Applications (VBA)', 9, 371, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2238, 'Visual Basic for Applications', 9, 371, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2239, 'VBA', 9, 371, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2240, 'Access VB', 9, 371, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2241, 'Visual FoxPro', 9, 372, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2242, 'vfoxpro', 9, 372, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2243, 'VisualForce', 10, 509, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2244, 'ESXi', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2245, 'ESXi 5.1', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2246, 'VM ESXi 5.1', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2247, 'VM ESXi 6.0', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2248, 'VM ESXi 5.5', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2249, 'VMWARE ESXI SERVER 5.5', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2250, 'VM ESXi 5.0.0', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2251, 'VMware ESXi 5.5.0', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2252, 'VM ESXi 6.5', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2253, 'VMWare ESX', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2254, 'VM ESXi 5.0', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2255, 'VMWare ESXi', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2256, 'VMWARE ESXI SERVER 5.1', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2257, 'VMware Appliance', 3, 569, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2258, 'VMware Server', 3, 569, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2259, 'VMware Solution Exchange Marketplace (VSX)', 2, 229, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2260, 'VSX', 2, 229, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2261, 'VMware Solution Exchange Marketplace', 2, 229, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2262, 'VMware - VMware Tools 10.2', 2, 230, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2263, 'VMware Tools', 2, 230, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2264, 'VMware - VMware vCenter Server 5.5', 2, 231, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2265, 'VMware vCenter', 2, 231, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2266, 'VoiceXML', 9, 373, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2267, 'VXML', 9, 373, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2268, 'WebFOCUS', 2, 232, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2269, 'Web Focus', 2, 232, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2270, 'FOCEXEC', 2, 232, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2271, 'Web Logic Integration', 2, 233, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2272, 'WLI 8', 2, 233, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2273, 'WebLogic Integration', 2, 233, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2274, 'Web Logic Integration 9.2.0.0', 2, 233, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2275, 'webMethods Integration Server', 8, 283, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2276, 'WebMethods', 8, 283, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2277, 'Webmethods 9.7', 8, 283, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2278, 'WAS 7', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2279, 'websphere 8.0.0.4', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2280, 'IBM WEBSPHERE APPLICATION SERVER VERSION 6.1.0', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2281, 'WEBSPHERE APPLICATION SERVER - BASE VERSION 8.5.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2282, 'WEBSPHERE APPLICATION SERVER 8', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2283, 'Websphere Application Server 6.x', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2284, 'websphere', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2285, 'WebSphere Application Server 9.0', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2286, 'IBM WebSphere Application Server Network Deployment, 8.0.0.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2287, 'WebSphere Application Server (WAS)', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2288, 'IBM WebSphere Application Server Network Deployment 7', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2289, 'WebSphere Application Server 8.5.1', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2290, 'WAS ND8.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2291, 'WAS7', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2292, 'WebSphere Application Server 5.1', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2293, 'WebSphere Application Server 8.5.5.6', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2294, 'WebSphere Application Server 5.0', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2295, 'WebSphere Application Server 8.0', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2296, 'IBM WebSphere 8.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2297, 'Websphere 9.0', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2298, 'WebSphere 7.0.0.27', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2299, 'IBM - WebSphere Application Server - Base 8.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2300, 'WebSphere Application Server 8.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2301, 'WEBSPHERE APPLICATION SERVER 8.5.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2302, 'WebSphere Application Server 8.5 (WAS)', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2303, 'Websphere AS (JVM)', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2304, 'WebSphere App Server', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2305, 'WebSphere Application Server 6.1 (WAS)', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2306, 'WEBSPHERE APPLICATION SERVER', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2307, 'WAS 6.1', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2308, 'WebSphere 8.0.0.4', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2309, 'WEBSPHERE APPLICATION SERVER 6.1', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2310, 'IBM WebSphere', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2311, 'Websphere Application Server 8.5.5.11', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2312, 'WebSphere Application Server 8.5.5.8', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2313, 'IBM WebSphere Application Server 8.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2314, 'Websphere (WAS7)', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2315, 'IBM WebSphere Application', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2316, 'WAS 6.x', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2317, 'WAS', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2318, 'IBM OpenStack Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2319, 'IBM WebSphere Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2320, 'Open Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2321, 'IBM Open Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2322, 'WebSphere Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2323, 'IBM WebSphere Application Server Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2324, 'IBM WAS Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2325, 'WebSphere Application Server Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2326, 'WAS Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2327, 'IBM Cloud WebSphere Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2328, 'OpenStack Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2329, 'WebSphere Commerce Suite (WCS)', 2, 234, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2330, 'WebSphere Commerce', 2, 234, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2331, 'WMB 6.1', 2, 235, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2332, 'WebSphere Message Broker v6.0', 2, 235, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2333, 'WebSphere Message Broker', 2, 235, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2334, 'WebSphere Portal Version 6.1', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2335, 'WebSphere Portal Enable Limited Use 6.1', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2336, 'WebSphere Portal Server 6.0', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2337, 'WebSphere Portal Enable 6.1', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2338, 'WebSphere Portal Extend 6.1', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2339, 'WebSphere Portal Server', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2340, 'WebSphere Portal Limited Use 6.1', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2341, 'WebSphere Portal Extend Limited Use 6.1', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2342, 'Websphere Process Server', 8, 287, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2343, 'Websphere Process Server 8.5', 8, 288, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2344, 'Wherescape Red', 2, 236, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2345, 'Windchill 11.1', 2, 237, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2346, 'Windchill', 2, 237, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2347, 'windows nt', 6, 450, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2348, 'Windows', 6, 450, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2349, 'Windows OS: Windows NT', 6, 450, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2350, 'Windows NT 6.1 Service Pack 1', 6, 450, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2351, 'Windows NT 6.1', 6, 450, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2352, 'Windows NT 4.0', 6, 450, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2353, 'Microsoft Windows NT 6.1', 6, 450, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2354, 'Window', 6, 450, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2355, 'Microsoft Windows NT 4.0', 6, 450, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2356, 'WINDOWS6.1.7601', 6, 450, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2357, 'Windows NT 6.1Windows NT 6.1', 6, 450, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2358, 'Windows Indexing Service', 2, 238, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2359, 'IIS Index Search Server', 2, 238, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2360, 'WTS', 2, 239, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2361, 'Windows Terminal Server', 2, 239, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2362, 'Windows Terminal Server (WTS)', 2, 239, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2363, 'Windows 7 Standard', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2364, 'WINDOWS 10 SERVER STANDARD EDITION X64', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2365, 'Microsoft Windows 7 (64-bit)', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2366, 'Microsoft Windows XP Professional (32-bit)', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2367, 'Windows 7 Professional x64', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2368, 'Microsoft Microsoft Windows Entreprise', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2369, 'Microsoft Windows 2000', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2370, 'Microsoft Windows 10', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2371, 'MS Microsoft Windows 7', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2372, 'Microsoft Windows 7 Professional', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2373, 'Microsoft Microsoft Windows 7 Enterprise', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2374, 'Microsoft Windows 10 Enterprise', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2375, 'Win Desktop', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2376, 'Windows 10 Pro', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2377, 'Windows 10', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2378, 'Windows 7 Ultimate', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2379, 'Microsoft Windows 8 (64-bit)', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2380, 'Microsoft Windows XP', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2381, 'Windows 10 Enterprise', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2382, 'Windows XP', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2383, 'Windows 10 Professional', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2384, 'Windows 7', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2385, 'Microsoft Windows 10 (64-bit)', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2386, 'Win 7', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2387, 'windowsxp', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2388, 'Microsoft Windows Unknown', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2389, 'Windows 7 Enterprise', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2390, 'Windows XP Professional', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2391, 'Windows 7 Professional', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2392, 'Window XP', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2393, 'Microsoft Windows 7 Enterprise', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2394, 'Microsoft Windows 7 - SOE', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2395, 'Windows 7 Enterprise Edition', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2396, 'Windows 8', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2397, 'Microsoft Windows 7', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2398, 'Microsoft Windows 7 (32-bit)', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2399, 'Windows Embedded Standard 7', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2400, 'Win10', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2401, 'Windows 2003', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2402, 'Windows Server 2012 R9', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2403, 'Windows 2003 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2404, 'Windows 2008 Enterprise R2 x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2405, 'Windows Server 2003 SE x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2406, 'Microsoft Windows Server 2008 R2 Standard Service Pack 1, 64-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2407, 'WINDOWS SERVER 2004', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2408, 'WINDOWS 2008R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2409, 'Microsoft Windows Server 2008 Standard Editio', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2410, 'MICROSOFT WINDOWS NT 2003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2411, 'Windows Server 2008 R2 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2412, 'Windows Server 2012 R3', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2413, 'WINDOWS 2003 R2 SERVER STANDARD EDITION', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2414, 'Windows Server 28 - i386', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2415, 'Microsoft Microsoft Windows Server 2016 Datacenter', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2416, 'Microsoft(R) Windows(R) Server 2003, Enterprise Edition Service Pack 2, 32-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2417, 'Windows Server 2008 Enterprise x64 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2418, 'Windows Server 2016', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2419, 'Microsoft - Windows server 2012 - R2 - Service Pack 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2420, 'Microsoft(R) Windows(R) Server 2003, Standard Edition R2 Service Pack 2, 32-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2421, 'Microsoft Windows Server 2008 R2 Standard x64 Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2422, 'WINDOWS6.1.7601 Server 2008 R2 Ent x64 SP 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2423, 'Windows Server 2012 R2 Standard (Core)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2424, 'WINDOWS 2008 R2 SERVER STANDARD EDITION X64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2425, 'Windows Server 2012 R26', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2426, 'Microsoft(R) Windows(R) Server 2003 Standard x64 Edition R2 Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2427, 'Windows 2008 Enterprise 32-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2428, 'Microsoft Windows Server 2003 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2429, 'Windows Server 2012 R2 Std', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2430, 'Windows 2003 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2431, 'Windows 2008 R2 Enterprise 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2432, 'Windows Server 2012 R2 Standard 64 bit Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2433, 'Microsoft Windows Server 2003 Enterprise Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2434, 'Microsoft Windows Server 2000 Advanced', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2435, 'Microsoft Windows Server 2012 R2 St', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2436, 'Windows 2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2437, 'Windows 2012 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2438, 'Windows Server 2008 R2 (64 bits)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2439, 'Windows X-Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2440, 'Windows 2008 R2 Standard 6.1.7601 Service Pack 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2441, 'Windows Server 2003 Standard (32-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2442, 'Windows 2008 Standard x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2443, 'Microsoft Windows Server 2008 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2444, 'Microsoft Windows Storage Server 2012 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2445, 'Windows Server 2003 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2446, 'Windows 2012 R2 Standard 64-Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2447, 'Windows Server 212 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2448, 'Windows Server 2012 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2449, 'Windows Server 2012 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2450, 'Windows Server 2017', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2451, 'Windows Server 2000 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2452, 'Windows Server 2003 Enterprise R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2453, 'Windows Server 2003 SP2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2454, 'Microsoft Windows 2000 Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2455, 'w2k12', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2456, 'WINDOWS 2013', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2457, 'WINDOWS 2016 SE 64 BIT', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2458, 'Windows Server 2008 R2 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2459, 'Microsoft - Windows 2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2460, 'Microsoft Windows Server 2016', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2461, 'Microsoft Windows Server 2000 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2462, 'Windows Server 2012 R12', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2463, 'Window Server 2003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2464, 'WINDOWS SERVER 2008 ENTERPRISE X64 6.0', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2465, 'Windows server 2008R2 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2466, 'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition R2 Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2467, 'MICROSOFT WINDOWS 2008 TPM', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2468, 'Microsoft Windows Server 2012 Standardx64 Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2469, 'MICROSOFT WINDOWS STD 2008', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2470, 'Microsoft(R) Windows(R) Server 2003, Standard Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2471, 'Windows Server 2012 R23', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2472, 'WINDOWS 6.3.9600 Server 2012 R2 Std x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2473, 'Windows 2008 R2 Standard 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2474, 'Windows Server 2008 SP1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2475, 'Windows server 2008 R2 standard Service Pack1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2476, 'MICROSOFT WINDOWS STD 2008 TPM', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2477, 'Microsoft Windows Server 2008 Standard Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2478, 'Windows 2012 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2479, 'MICROSOFT WINDOWS NT 2003 ENT', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2480, 'Windows Server 2012 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2481, 'Windows Server 2016 Standard 64 bit Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2482, 'MICROSOFT WINDOWS 2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2483, 'Windows Server 2003 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2484, 'Windows 2003 Standard5.2.3790', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2485, 'Windows Server 2012 R4', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2486, 'Windows Server 2012 R7', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2487, 'Windows Server 2012 R17', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2488, 'Windows 2012 R', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2489, 'Windows Server 2012 R8', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2490, 'WINDOWS SERVER 2012 R2 DATACENTER', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2491, 'Microsoft Windows Server 2003 R2 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2492, 'Windows 2008 Enterprise 32 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2493, 'MICROSOFT WINDOWS 2008 ENT', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2494, 'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2495, 'Windows 2012 R2 Standard 6.3.9600', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2496, 'Windows 2000 Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2497, 'Windows Server 2012 R20', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2498, 'Windows Server 2000', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2499, 'Windows Server 2003 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2500, 'Windows Server 2008 Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2501, 'Windows 2016 Datacenter', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2502, 'Microsoft(R) Windows(R) Server 2003, Standard Edition Service Pack 2, 32-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2503, 'Microsoft Windows Server 2016 Datacenter', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2504, 'WINDOWS SERVER 2008 R2 STANDARD 6.1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2505, 'Microsoft - Windows Server 2008 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2506, 'Microsoft Windows Server 2012 (64-bit) - Server 2012 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2507, 'Microsoft Windows Server 2016 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2508, 'Windows Server 2008 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2509, 'Windows 2016 Datacenter10.0.14393', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2510, 'Windows Server 2008 64-Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2511, 'windows server 2008 r2 ent', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2512, 'Windows Server 212', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2513, 'windows6.3.9600', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2514, 'Windows 2012 R2 Standard 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2515, 'Microsoft Windows Server 2000 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2516, 'windows6.3.9600 server 2012 r2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2517, 'Windows 2008 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2518, 'Microsoft Microsoft Windows Server 2016 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2519, 'Windows 2003 Server Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2520, 'Windows Server 2012 R16', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2521, 'Window server 2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2522, 'Microsoft Windows Server 2003 Enterprise Edition Version 5.2.3790 [Build 3790]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2523, 'Windows 2003 Server R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2524, 'Windows Server 2012 R21', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2525, 'Microsoft Windows Server 2003 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2526, 'Windows Server 2012 R6', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2527, 'Windows Server 2012 R27', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2528, 'Windows 2008 Standard without Hyper-V6.0.6003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2529, 'WINDOWS SERVER 2012 R2 - Server 2012 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2530, 'Windows 2008 R2 Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2531, 'Microsoft Windows Server 2003 Standard (32-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2532, 'Windows 2012 R2 Datacenter', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2533, 'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition R2 Service Pack 2, 64-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2534, 'Windows Server 2018', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2535, 'Windows 2008 Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2536, 'WINDOWS6.3.9600 Server 2012 R2 DC x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2537, 'Windows 2008 Standard 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2538, 'WINDOWS 6.1.7601 Server 2008 R2 Ent x64 SP 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2539, 'WINDOWS SERVER 2012 R2 DATACENTER 6.3', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2540, 'Microsoft Windows Server 2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2541, 'Windows Server 2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2542, 'Windows server Standard SP2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2543, 'WINDOWS 2003 R2 SERVER ENTERPRISE EDITION', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2544, 'Windows 2000', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2545, 'W2K8R2 Standard 64 BIT', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2546, 'Windows Server 2008 R2 Datacenter', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2547, 'Windows 2008 Standard6.0.6003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2548, 'Windows2008 R2 Enterprise 64bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2549, 'WINDOWS 2012 R2 SERVER STANDARD EDITION X64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2550, 'Windows Server 2000 Professional', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2551, 'Microsoft Windows Server 2008 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2552, 'WINDOWS SERVER 2003 R2 ENTERPRISE 5.2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2553, 'Win2008R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2554, 'Microsoft Windows Server 2003 Web Edition (32-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2555, 'Windows 2008 Standard 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2556, 'Microsoft Windows Server 2008 R2 Enterprise Version 6.1.7601 [Build 7601]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2557, 'Windows Server 2003 Appliance', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2558, 'Windows server 2012 R2 Standared', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2559, 'Windows 2008 ENT R2 (64 bits)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2560, 'Windows Server 2003 (32-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2561, 'Microsoft Windows Server 2003 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2562, 'WIN2008R2 6.1.7601', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2563, 'Microsoft Windows Server 2012 R2 Datacenter', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2564, 'microsoft windows std 2012 tpm', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2565, 'Windows Server 2012 R2 Standardx64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2566, 'microsoft windows 2008', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2567, 'Microsoft Windows Server 2016 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2568, 'Windows 2008 Standard 32 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2569, 'Microsoft Windows 2008 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2570, 'Microsoft Windows 2000 Server Service Pack 4', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2571, 'Microsoft Windows Server 2003 Enterprise x64 Edition Version 5.2.3790 [Build 3790]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2572, 'Microsoft Windows Storage Server 2012 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2573, 'Microsoft Windows Server 2003 Standard x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2574, 'Window2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2575, 'Microsoft Windows NT Server Version 4.0.1381 [Build 1381]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2576, 'Windows Server 2003 Ent', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2577, 'Windows Server 2000 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2578, 'Windows 2008 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2579, 'Microsoft Windows Server 2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2580, 'Microsoft Windows Server 2003 Standard Edition Version 5.2.3790 [Build 3790]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2581, 'Windows Server 2003;', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2582, 'WS03', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2583, 'WINDOWS 6.0.6002 Server 2008 Ent x64 SP 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2584, 'Windows 2008 Enterprise x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2585, 'Microsoft Windows Server 2003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2586, 'Windows Server 2008 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2587, 'Windows Server 2008 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2588, 'windows server 2008 r2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2589, 'Windows 2008 R2 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2590, 'Windows Server 2003 Std 32-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2591, 'Windows 2008 R2 Standard 64bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2592, 'Microsoft Windows Server 2008 (32-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2593, 'MS WINDOWS SERVER 08', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2594, 'Microsoft Windows 2003 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2595, 'Windows Server 2012 R25', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2596, 'MICROSOFT WINDOWS NT 2003 TPM', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2597, 'Win Server 2008', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2598, 'Windows 2003 R2 Standard 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2599, 'WINDOWS 5.2.3790 Server 2003 Ent SP 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2600, 'WIN2014', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2601, 'Windows Server 2012 R19', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2602, 'Microsoft Windows Server 2012 R2 Standard Version 6.3.9600 [Build 9600]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2603, 'Windows Server 2008 R2 Ent 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2604, 'Win 2012 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2605, 'Microsoft Windows Server 2008 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2606, 'WINDOWS 6.3.9600 Server 2012 R2 DC x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2607, 'Windows Server 2012 R24', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2608, 'Win Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2609, 'Windows 2008 Standard R2 x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2610, 'Windows Server 2008 R2 Enterprise x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2611, 'Windows server 2008 Dual processor Intel Xeon x5660 @2.80 GHz 6196 MB memory installed', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2612, 'Windows2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2613, 'Windows 2008 R2 Standard6.1.7601', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2614, 'Windows 2016', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2615, 'Windows 2008 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2616, 'Windows Server 2008 R2 64Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2617, 'Windows Server 2012 R14', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2618, 'Windows Storage Server 2008 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2619, 'Windows Server 2008 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2620, 'Microsoft Windows Server 2003 (32-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2621, 'Windows OS 2008 Server R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2622, 'Microsoft Microsoft Windows Server 2008 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2623, 'Windows Server 28 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2624, 'WINDOWS 2003 SERVER ENTERPRISE EDITION', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2625, 'Microsoft Windows Server 2003 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2626, 'Windows Server 2008 (32-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2627, 'Windows Server 2003 Std 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2628, 'Windows 2012 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2629, 'Wintel', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2630, 'Windows Server 2003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2631, 'Windows Server 2003 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2632, 'Microsoft Windows Server 2012 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2633, 'Windows 2000 Standard Server SP4', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2634, 'WINDOWS6.3.9600 Server 2012 R2 Std x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2635, 'Microsoft Windows 2000 Server Version 5.0.2195 [Build 2195]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2636, 'Microsoft Windows Server 2016 St', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2637, 'WINDOWS SERVER 2008 ENTERPRISE 6.0', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2638, 'Windows Server 2008 R2 Std', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2639, 'Windows 2003 Enterprise5.2.3790', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2640, 'WINDOWS 2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2641, 'Windows 2008 R2 OS', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2642, 'Microsoft Windows Server 2008 R2 Enterprise Service Pack 1, 64-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2643, 'Windows Server 2008 Enterprise x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2644, 'Windows 2003 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2645, 'Windows 2008 R2 Enterprise6.1.7601', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2646, 'Windows 2003 Standard 32 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2647, 'WINDOWS SERVER 2003 APPLIANCE 5.2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2648, 'Windows Server 2003 Std', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2649, 'WS08R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2650, 'Windows Storage Server 2012 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2651, 'WINDOWS SERVER 2003 STANDARD 5.2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2652, 'Windows 2008 Enterprise 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2653, 'Microsoft Windows Server 2012 R2 for Microsoft Windows Server 2012 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2654, 'Windows Server 2000 Advanced', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2655, 'Microsoft Windows Server 2008 R2 Enterprise x64 Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2656, 'WINDOWS 2008 R2 SERVER ENTERPRISE EDITION X64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2657, 'Windows Server 2008 32-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2658, 'Windows Server 2003 Web Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2659, 'WINDOWS SERVER 2012 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2660, 'Microsoft Windows 2012 R2 Server Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2661, 'w2k8r2sp1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2662, 'Microsoft Windows Server 2008 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2663, 'Windows Server 2003 Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2664, 'Microsoft Windows Server 2008 R2 Standa', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2665, 'Win 2003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2666, 'Windows Server 2012 R29', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2667, 'Microsoft - Windows server 2008 - Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2668, 'Microsoft Windows Server 2003 Enterprise x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2669, 'Microsoft(R) Windows(R) Server 2003, Enterprise Edition R2 Service Pack 2, 32-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2670, 'Windows 2012 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2671, 'WINDOWS SERVER 2012 R2 STANDARD 6.3', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2672, 'Windows Server 2008 Enterprise R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2673, 'Microsoft Windows Server 2008 R2 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2674, 'Windows 2008 R2 Standard 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2675, 'Microsoft Windows Server 2008 R2 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2676, 'Windows 2003 Enterprise 32-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2677, 'Microsoft - Microsoft Windows Server 2012 for Microsoft Windows Server 2012 Standard 6.2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2678, 'Windows 2012 Storage R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2679, 'Windows server 2008 Dual processor Intel Xeon x5660 @2.80 GHz 4096 MB memory installed', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2680, 'Microsoft - Windows Server 2012 R2 - 6.3', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2681, 'Windows Server 2012 R5', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2682, 'Microsoft Windows Server 2012 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2683, 'MICROSOFT WINDOWS NT 2003 ENT TPM', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2684, 'Windows 2012 Server R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2685, 'Windows 2016 Standard10.0.14393', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2686, 'Microsoft Microsoft Windows Server 2012 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2687, 'Windows Server 2003 Ent 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2688, 'MICROSOFT WINDOWS 2003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2689, 'WINDOWS 2003 SERVER ENTERPRISE EDITION X64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2690, 'Windows 2012 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2691, 'WINDOWS 2000 ADVANCED SERVER 5.0', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2692, 'Microsoft Windows NT 4.0 Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2693, 'Windows Server2012 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2694, 'Win Server 2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2695, 'Microsoft Windows Server 2008 Enterprise Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2696, 'MICROSOFT WINDOWS STD 2012 TPM', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2697, 'Windows 2003 Enterprise 32 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2698, 'Windows 2008 Enterprise R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2699, 'Windows 2008', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2700, 'Microsoft Microsoft Windows 2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2701, 'WINDOWS 2003 SERVER STANDARD EDITION', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2702, 'windows server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2703, 'Microsoft Windows Server 2008', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2704, 'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2705, 'Win Server 2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2706, 'Windows 2016 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2707, 'Microsoft Windows Server 2003 Standard (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2708, 'Microsoft Windows Server 2008 R2 Standard. Service Pack 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2709, 'Windows 2000 Server Service Pack 4', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2710, 'Windows Server 2003 R2 Ent 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2711, 'Windows Server 2012 r2 64bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2712, 'Windows 2008 Enterprise 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2713, 'Microsoft Windows Server 2012 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2714, 'Windows Server 2012 R15', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2715, 'Windows 2003 Standard 5.2.3790 Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2716, 'Windows 2012 Standard6.2.9200', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2717, 'MICROSOFT WINDOWS 2016 TPM', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2718, 'Microsoft Windows Server 2016 or later (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2719, 'Windows Storage Server 2012 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2720, 'Windows 2003 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2721, 'Windows Server 2016 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2722, 'Microsoft Windows Server 2012 R2 Standardx64 Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2723, 'Windows 2008 R2 Enterprise 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2724, 'Windows 2003 Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2725, 'Windows 2012 R2 Standard6.3.9600', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2726, 'Windows Server Threshold, 64-bit (Build 14393)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2727, 'Windows Server 2012 R28', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2728, 'Windows Server 2012 R13', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2729, 'Microsoft Microsoft Windows Server 2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2730, 'Microsoft Windows Server 2008 R2 Standard Service Pack 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2731, 'Windows Server 2003 32-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2732, 'Microsoft Windows Server 2008 R2 Enterprise Version 6.1.7600 [Build 7600]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2733, 'Microsoft - Windows server 2003 - Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2734, 'Windows 2008 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2735, 'MicrosoftWindows Server 2008 R2 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2736, 'windows6.3', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2737, 'Microsoft - Windows Server 2012 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2738, 'Windows 2016 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2739, 'Windows Server 2003 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2740, 'Windows Server NT', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2741, 'Windows Server 2012 Std', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2742, 'Microsoft Windows Server 2008 R2 Standard Version 6.1.7601 [Build 7601]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2743, 'Windows Server 2012 R18', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2744, 'Windows 2008 Enterprise6.0.6003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2745, 'Microsoft(R) Windows(R) Server 2003, Standard Edition Service Pack 1, 32-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2746, 'Windows Server 2012 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2747, 'Windows Server 2019 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2748, 'windows server 2008 R2 SP1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2749, 'Win 2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2750, 'Win2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2751, 'Win2012R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2752, 'windows server threshold', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2753, 'win2008', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2754, 'Windows 2003 Standard x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2755, 'Microsoft Windows Storage Server 2008 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2756, 'Windows Server 28', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2757, 'Microsoft Windows Server 2008 Standard Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2758, 'Windows Server 2008 R2 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2759, 'Windows Server 2008 R2 with Service Pack 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2760, 'Windows Server 2012 R11', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2761, 'Windows Server 2012 R10', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2762, 'Windows Server 2012 R30', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2763, 'WINDOWS 2016 STANDARD EDITION', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2764, 'Windows Server 2012 R22', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2765, 'Windows Server 2003 Standard (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2766, 'WINDOWS SERVER 2008 R2 ENTERPRISE 6.1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2767, 'Microsoft Windows Server 2008 R2 (64-bit) - Server 2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2768, 'Microsoft Windows Server 2008 R2 Enterprise Service Pack 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2769, 'Windows Server 2008', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2770, '(WingArc) SVF 9.1', 2, 240, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2771, 'WingArc SVF', 2, 240, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2772, 'WinMerge', 2, 241, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2773, 'WinMerge.org - WinMerge 2.14', 2, 241, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2774, 'RARLab - WinRAR 5.31', 2, 242, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2775, 'WinRAR', 2, 242, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2776, 'WinSCP.net - WinSCP 5.11', 2, 243, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2777, 'WinSCP', 2, 243, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2778, 'Wise', 2, 244, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2779, 'Wise Package Studio', 2, 244, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2780, 'Wordpress', 2, 245, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2781, 'XAMPP', 2, 246, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2782, 'Xbase++', 9, 374, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2783, 'Xbase++ v1.9', 9, 374, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2784, 'ZAP BI Application Test Server', 2, 247, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2785, 'ZAP BI Application Stage Server', 2, 247, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2786, 'ZAP BI', 2, 247, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2787, 'ZAP BI Application Server', 2, 247, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2788, 'ZMQ', 2, 248, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2789, 'ZeroMQ', 2, 248, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2790, 'Zerto Vritual Appliance', 2, 249, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2791, 'Zerto Virtual Replication', 2, 249, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2792, 'Fedora', 6, 453, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2793, 'Amazon Linux', 6, 454, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2794, 'Oracle RTD', 8, 289, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2795, 'Oracle Real-Time Decisions (RTD)', 8, 289, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2796, 'Oracle Real-Time Decisions', 8, 289, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2797, 'PowerHA', 2, 250, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2798, 'IBM High Availability Cluster Multiprocessing', 2, 250, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2799, 'IBM PowerHA', 2, 250, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2800, 'IBM PowerHA SystemMirror', 2, 250, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2801, 'Tivoli Netcool/OMNIbus', 2, 251, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2802, 'OMNIbus', 2, 251, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2803, 'Tivoli Netcool', 2, 251, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2804, 'IBM ILOG Views', 2, 252, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2805, 'ILOG Views', 2, 252, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2806, 'IBM ILOG CPLEX', 2, 253, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2807, 'ILOG CPLEX', 2, 253, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2808, 'IBM ILOG Jviews', 2, 254, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2809, 'ILOG Jviews', 2, 254, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2810, 'IBM ILOG Elixir', 2, 255, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2811, 'ILOG Elixir', 2, 255, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2812, 'ILOG Supply Chain Apps', 2, 256, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2813, 'IBM ILOG Supply Chain Apps', 2, 256, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2814, 'ILOG Solver', 2, 257, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2815, 'Websphere ILOG JRules BRMS', 2, 601, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2816, 'ILOG JRules BRMS', 2, 601, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2817, 'Application Lifecycle Management', 1, 511, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2818, 'ALM', 1, 511, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2819, 'Application Lifecycle Management (ALM)', 1, 511, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2820, 'Assembler Language', 1, 512, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2821, 'Assembler', 1, 512, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2822, 'BMS', 1, 513, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2823, 'Batch Management Software (BMS)', 1, 513, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2824, 'Batch Management Software', 1, 513, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2825, 'Business Object Reports', 1, 514, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2826, 'Common Gateway Interface (CGI)', 1, 515, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2827, 'Common Gateway Interface', 1, 515, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2828, 'CGI', 1, 515, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2829, 'Compopent Object Model', 1, 516, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2830, 'COM', 1, 516, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2831, 'Compopent Object Model (COM)', 1, 516, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2832, 'Common Object Request Broker Architecture (CORBA)', 1, 517, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2833, 'Common Object Request Broker Architecture', 1, 517, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2834, 'CORBA', 1, 517, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2835, 'CORBA Interface Definition Language (CORBA IDL)', 1, 518, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2836, 'CORBA Interface Definition Language', 1, 518, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2837, 'CORBA IDL', 1, 518, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2838, 'Data Control Language', 1, 519, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2839, 'DCL', 1, 519, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2840, 'Database', 1, 520, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2841, 'DB', 1, 520, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2842, 'DB (database)', 1, 520, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2843, 'EDI', 1, 521, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2844, 'Electronic Data Interchange', 1, 521, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2845, 'Electronic Data Interchange (EDI)', 1, 521, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2846, 'Web Server', 1, 522, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2847, 'Java-based Document Object Model for XML', 1, 523, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2848, 'Java-based Document Object Model for XML (JDOM)', 1, 523, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2849, 'JDOM', 1, 523, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2850, 'Lightweight Directory Access Protocol', 1, 524, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2851, 'LDAP', 1, 524, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2852, 'Lightweight Directory Access Protocol (LDAP)', 1, 524, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2853, 'Open Database Connectivity (ODBC)', 1, 525, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2854, 'Open Database Connectivity', 1, 525, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2855, 'ODBC', 1, 525, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2856, 'Order Management System (OMS)', 1, 526, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2857, 'Order Management System', 1, 526, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2858, 'OMS', 1, 526, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2859, 'Oracle Web Services', 1, 527, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2860, 'Reporting Services', 1, 528, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2861, 'REST', 1, 529, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2862, 'Representational State Transfer', 1, 529, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2863, 'Representational State Transfer (REST)', 1, 529, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2864, 'Service-Oriented Architecture', 1, 530, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2865, 'Service-Oriented Architecture (SOA)', 1, 530, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2866, 'SOA', 1, 530, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2867, 'Simple Object Access Protocol (SOAP)', 1, 531, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2868, 'SOAP', 1, 531, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2869, 'Simple Object Access Protocol', 1, 531, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2870, 'Sturctured Query Language', 9, 532, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2871, 'SQL', 9, 532, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2872, 'YAML', 1, 533, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2873, 'MVC', 1, 574, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2874, 'Application Server', 1, 535, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2875, 'Cloud', 1, 536, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2876, 'Competency and Quality Assurance Server', 1, 537, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2877, 'Device Provisioning Engines', 1, 538, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2878, 'Device Provisioning Engines (DPE)', 1, 538, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2879, 'DPE', 1, 538, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2880, 'E-business solution', 1, 539, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2881, 'Ebusiness solution', 1, 539, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2882, 'ESB', 1, 540, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2883, 'Enterprise Service Bus', 1, 540, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2884, 'Enterprise Service Bus(ESB)', 1, 540, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2885, 'File Server', 1, 541, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2886, 'General Ledger', 1, 542, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2887, 'HTTP client', 1, 543, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2888, 'HTTP Server', 1, 544, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2889, 'Integrated Safe System of Work', 1, 545, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2890, 'ISSOW', 1, 545, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2891, 'Integrated Safe System of Work (ISSOW)', 1, 545, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2892, 'Internet Exchange Point - Full Stack (ixp-ft)', 1, 546, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2893, 'IMAP', 1, 547, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2894, 'Internet Message Access Protocol', 1, 547, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2895, 'Internet Message Access Protocol (IMAP)', 1, 547, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2896, 'JSON', 1, 548, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2897, 'KVS Application Server', 1, 549, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2898, 'KVS File Server', 1, 550, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2899, 'KVS Proxy Server', 1, 551, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2900, 'mainframe', 1, 552, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2901, 'Manufacturing Execution System', 1, 553, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2902, 'Manufacturing Execution System (MES)', 1, 553, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2903, 'MES', 1, 553, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2904, 'Mobile', 1, 554, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2905, 'NonSQL', 1, 555, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2906, 'SaaS', 1, 556, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2907, 'Storage Area Network', 1, 557, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2908, 'Storage Area Network (SAN)', 1, 557, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2909, 'SAN', 1, 557, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2910, 'Supplier Registration System', 1, 558, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2911, 'Supplier Registration Application Server', 1, 558, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2912, 'Supplier Registration System Application Server', 1, 558, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2913, 'Virtual Appliance', 1, 559, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2914, 'Webtop', 1, 560, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2915, 'Proxy Server', 1, 561, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2916, 'Application/Utility', 1, 562, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2917, 'Utility', 1, 562, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2918, 'SQLite', 2, 258, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2919, 'OpenBSD', 6, 590, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2920, 'z/VSE', 6, 591, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2921, 'Z/Virtual System Environment', 6, 591, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2922, 'VSE', 6, 591, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2923, 'DOS/VSE', 6, 591, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2924, 'Microsoft Disk Operating System', 6, 593, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2925, 'Microsoft DOS', 6, 593, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2926, 'MS DOS', 6, 593, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2927, 'MS-DOS', 6, 593, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2928, 'VME/B', 6, 595, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2929, 'VME', 6, 595, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2930, 'Virtual Machine Environment', 6, 595, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2931, 'VME 2900', 6, 595, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2932, 'OpenVME', 6, 595, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2933, 'DOS/360', 6, 597, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2934, 'Disk Operating System/360', 6, 597, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2935, 'TPF', 6, 598, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2936, 'z/TPF', 6, 598, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2937, 'Transaction Processing Facility', 6, 598, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2938, 'z/VM', 6, 608, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2939, 'Berkeley Software Distribution', 6, 446, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2940, 'BSD', 6, 446, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2941, 'Berkeley System Distribution', 6, 446, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2942, 'BSD Unix', 6, 446, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2943, 'Berkeley Unix', 6, 446, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2944, 'Wildfly', 7, 493, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2945, 'JBoss Application Server', 7, 493, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2946, 'Job Entry Subsystem 3', 2, 1, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2947, 'Job Entry Subsystem', 2, 1, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2948, 'Job Entry Subsystem 2/3', 2, 1, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2949, 'JES2', 2, 1, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2950, 'JES3', 2, 1, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2951, 'Activiti', 2, 3, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2952, 'Acrobat forms', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2953, 'Adobe Acrobat 3D', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2954, 'Adobe Acrobat Professional', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2955, 'Acrobat Professional', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2956, 'Adobe Acrobat Pro', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2957, 'Acrobat 8', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2958, 'Adobe Acrobat Capture', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2959, 'Adobe Acrobat Reader', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2960, 'Acrobat file', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2961, 'Acrobat reader', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2962, 'Adobe Reader X', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2963, 'Acrobat 3D', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2964, 'Adobe Reader LE', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2965, 'Adobe acrobat', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2966, 'Acrobat Pro', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2967, 'Acrobat 7', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2968, 'Adobe Acrobat 9.5.5', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2969, 'Adobe reader', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2970, 'Adobe Acrobat Viewer', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2971, 'Acrobat Exchange', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2972, 'Acrobat document', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2973, 'Acroread', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2974, 'AdobeR Reader', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2975, 'Adobe Acrobat Distiller', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2976, 'Acrobat PDFMaker 10.0 for Word', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2977, 'Adobe Acrobat X', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2978, 'Adobe Acrobat Reader DC', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2979, 'Adobe Reader', 2, 4, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2980, 'Acrobat Reader', 2, 4, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2981, 'Ansible software', 2, 5, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2982, 'Activemq', 2, 6, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2983, 'ActiveMQ', 2, 6, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2984, 'HBase', 2, 7, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2985, 'Hbase', 2, 7, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2986, 'HiveQL', 2, 8, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2987, 'Kafka Streams', 2, 9, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2988, 'Kafka (software)', 2, 9, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2989, 'Apache kafka', 2, 9, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2990, 'ServiceMix', 2, 10, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2991, 'Solr', 2, 11, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2992, 'Subversion (vcs)', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2993, 'Commit access', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2994, 'Svn (vcs)', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2995, 'Subverson', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2996, 'Subversion branch', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2997, 'Svn (software)', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2998, 'Subversion software', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2999, 'Sub Versioning', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3000, 'Apache subversion', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3001, 'Svn software', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3002, 'Subversion branching', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3003, 'SVN branch', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3004, 'Subversion (program)', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3005, 'Subversive branching', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3006, 'Svn vcs', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3007, 'Subversion (software)', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3008, 'Svn (Unix)', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3009, 'Subversion (Software)', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3010, 'Asterisk operator', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3011, 'Asterisk character', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3012, 'Asterisks', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3013, 'Asterisk (punctuation)', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3014, 'Asterick', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3015, 'Asterisked form', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3016, 'Splat (pronouns)', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3017, 'Heavy asterisk', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3018, 'Asteract', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3019, 'Astrick', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3020, 'Bluebeam Revu', 2, 17, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3021, 'BDE (Borland)', 2, 20, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3022, 'Borland BDE', 2, 20, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3023, 'ODAPI', 2, 20, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3024, 'Eclipse BIRT', 2, 21, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3025, 'BIRT Reports', 2, 21, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3026, 'BIRT Report', 2, 21, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3027, 'Advantage:Gen', 2, 22, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3028, 'Cool:Gen', 2, 22, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3029, 'COOLGen', 2, 22, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3030, 'COOL:Gen', 2, 22, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3031, 'Advantage Gen', 2, 22, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3032, 'Coolgen', 2, 22, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3033, 'Information Engineering Facility', 2, 22, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3034, 'CA-Panvalet', 2, 24, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3035, 'CA Panvalet', 2, 24, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3036, 'Telon', 2, 25, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3037, 'TELON', 2, 25, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3038, 'Chef (tool)', 2, 27, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3039, 'Chef-Solo', 2, 27, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3040, 'Chef Community Repository', 2, 27, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3041, 'Chef software', 2, 27, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3042, 'Citrix XenApp', 2, 30, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3043, 'WinFrame', 2, 30, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3044, 'Citrix WinFrame', 2, 30, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3045, 'Winframe', 2, 30, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3046, 'OP3Nvoice', 2, 33, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3047, 'Clarify - Op3nvoice', 2, 33, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3048, 'Laboratory information system', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3049, 'Laboratory Information Management System', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3050, 'Laboratory informatics system', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3051, 'Lims', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3052, 'Laboratory Information Management Systems', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3053, 'Lab information system', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3054, 'Laboratory computer system', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3055, 'Laboratory Information Management Software', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3056, 'Laboratory Information System', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3057, 'Cognos Inc.', 2, 36, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3058, 'IBM Cognos', 2, 36, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3059, 'Macromedia ColdFusion MX', 2, 37, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3060, 'ColdFusion MX', 2, 37, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3061, 'Coldfusion', 2, 37, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3062, 'Adobe cold fusion', 2, 37, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3063, 'ColdFusion Components', 2, 37, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3064, 'Cold Fusion programming language', 2, 37, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3065, 'Abobe coldfusion', 2, 37, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3066, 'ColdFusion programming language', 2, 37, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3067, 'ColdFusion', 2, 37, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3068, 'Macromedia ColdFusion', 2, 37, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3069, 'Network Data Mover', 2, 40, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3070, 'Connect Direct', 2, 40, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3071, 'Crystal Report', 2, 42, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3072, 'Crystal reports', 2, 42, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3073, 'SAP Crystal Reports', 2, 42, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3074, 'Report application server', 2, 42, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3075, 'DB2', 2, 43, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3076, 'Db2', 2, 43, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3077, 'DB2/400', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3078, 'IBM DB2 Express-C', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3079, 'DB2/2', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3080, 'DB2 Express', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3081, 'SQLCA', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3082, 'Ibm viper', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3083, 'DATABASE 2', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3084, 'IBM Db2', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3085, 'Db2 for i', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3086, 'DB2 DWE', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3087, 'DB/2', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3088, 'IBM PureQuery', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3089, 'DB2 Everyplace', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3090, 'PureQuery', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3091, 'IBM DB2', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3092, 'Db/2', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3093, 'Documentum D2', 2, 44, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3094, 'EMC Documentum', 2, 44, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3095, 'Droopal', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3096, 'Deanspace', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3097, 'Drupal theming', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3098, 'Droople', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3099, 'CivicSpace', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3100, 'Druscal', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3101, 'Drupal Con', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3102, 'DrupalCon', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3103, 'Civic Space', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3104, 'Drupla', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3105, 'Durpal', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3106, 'DeanSpace', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3107, 'Druple', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3108, 'Hack4Dean', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3109, 'Civicspace', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3110, 'Acquia Drupal', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3111, 'Open Atrium', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3112, 'Eclipse sdk', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3113, 'Mylyn', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3114, 'Java Eclipse', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3115, 'Web Tools Platform', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3116, 'Eclipse software', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3117, 'Eclipse SDK', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3118, 'Eclipse Kura', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3119, 'Eclipse Classic', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3120, 'Eclipse ganymede', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3121, 'Eclipse Europa', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3122, 'Eclipse (computing)', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3123, 'Eclipse (platform)', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3124, 'Eclipse IDE', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3125, 'Java eclipse', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3126, 'Yoxos OnDemand', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3127, 'Eclipse java', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3128, 'Yoxos', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3129, 'Eclipse (IDE)', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3130, 'Eclipse (SDK)', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3131, 'Eclipse ide', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3132, 'Eclipse (ide)', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3133, 'Eclipse Galileo', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3134, 'Eclipse platform', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3135, 'Eclipse RCP', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3136, 'Java Emitter Templates', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3137, 'Eclipse ADT', 2, 46, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3138, 'ExamDiff', 2, 49, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3139, 'FileMaker Pro', 2, 51, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3140, 'Filemaker', 2, 51, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3141, 'FileMaker II', 2, 51, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3142, 'Filemaker Pro', 2, 51, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3143, 'FileMaker Server', 2, 51, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3144, 'FilemakerPro', 2, 51, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3145, 'Google chrome 5', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3146, 'Google Chrome Beta', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3147, 'Google chrome', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3148, 'Google Chrome 12', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3149, 'Chrome software', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3150, 'Google Chrome 14', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3151, 'Chrome (browser)', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3152, 'Googlechrome', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3153, 'Chrome Canary', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3154, 'Google Chrome extension', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3155, 'Google Chrome browser', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3156, 'Google Chrome for IOS', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3157, 'Chrome extension', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3158, 'Extension (Google Chrome)', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3159, 'Incognito mode', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3160, 'Chrome browser', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3161, 'Google Chrome for Android', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3162, 'Google Chrome Extensions Gallery', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3163, 'Google Chrome 4', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3164, 'GChrome', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3165, 'Google Browser', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3166, 'Chrome google', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3167, 'Chrome (software)', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3168, 'Chrome (Google)', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3169, 'Chrome web browser', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3170, 'Google Chrome 13', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3171, 'Google Chrome 11', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3172, 'Google Chrome Canary', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3173, 'Chrome Extensions', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3174, 'Chromium (engine)', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3175, 'GBrowser', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3176, 'Chrome (web browser)', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3177, 'Google Chrome for iOS', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3178, 'Chrome for Android', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3179, 'EMC Greenplum', 2, 56, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3180, 'Pivotal Greenplum Database', 2, 56, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3181, 'Greenplum database', 2, 56, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3182, 'Hadoop distributed file system', 2, 57, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3183, 'Hadoop Distributed Filesystem', 2, 57, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3184, 'Hadoop YARN', 2, 57, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3185, 'HDFS', 2, 57, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3186, 'Amazon Elastic MapReduce', 2, 57, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3187, 'Hadoop Distributed File System', 2, 57, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3188, 'YARN', 2, 57, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3189, 'Hadoop', 2, 57, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3190, 'NorCroft', 2, 59, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3191, 'Norcroft compiler suite', 2, 59, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3192, 'Norcroft C', 2, 59, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3193, 'Norcroft compiler', 2, 59, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3194, 'Norcroft', 2, 59, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3195, 'Tivoli Endpoint Manager', 2, 62, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3196, 'IBM Endpoint Manager', 2, 62, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3197, 'Datastage', 2, 67, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3198, 'IBM InfoSphere', 2, 67, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3199, 'DataStage', 2, 67, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3200, 'IBM WebSphere DataStage', 2, 67, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3201, 'IBM Integration Bus', 2, 68, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3202, 'IBM WebSphere Message Broker', 2, 68, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3203, 'WebSphere Message Broker', 2, 68, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3204, 'IBM MobileFirst', 2, 72, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3205, 'IBM WebSphere ILOG JRules', 2, 73, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3206, 'Spectrum Scale', 2, 74, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3207, 'IBM Spectrum Scale', 2, 74, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3208, 'General Parallel File System', 2, 74, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3209, 'IBM General Parallel File System', 2, 74, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3210, 'Vesta File System', 2, 74, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3211, 'Adstar Distributed Storage Manager', 2, 78, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3212, 'Tivoli Storage Manager', 2, 78, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3213, 'ADSM', 2, 78, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3214, 'ADSTAR Distributed Storage Manager', 2, 78, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3215, 'IBM Tivoli Storage Manager FastBack', 2, 78, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3216, 'Distributed Storage Manager Client', 2, 78, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3217, 'WebSphere Adapters', 2, 80, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3218, 'MQ Series', 2, 81, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3219, 'Websphere MQ', 2, 81, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3220, 'IBM Message Queue Interface', 2, 81, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3221, 'Mqseries', 2, 81, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3222, 'IBM WebSphere MQ', 2, 81, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3223, 'IBM Websphere MQ', 2, 81, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3224, 'WebSphere MQ', 2, 81, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3225, 'MQSeries', 2, 81, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3226, 'Hierarchical sequential access method', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3227, 'IBM IMS', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3228, 'Information Management System', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3229, 'IMS DC', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3230, 'IMS/DC', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3231, 'HSAM (computing)', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3232, 'Information management system', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3233, 'Hierarchical Sequential Access Method', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3234, 'IMS/DB', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3235, 'IMS/TM', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3236, 'IMS system', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3237, 'WiZ', 2, 85, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3238, 'Zip (software)', 2, 85, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3239, 'Info-Zip', 2, 85, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3240, 'InfoZip', 2, 85, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3241, 'Infozip', 2, 85, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3242, 'Berkeley Ingres QUEL', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3243, 'IngresCorporation', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3244, 'Ingres II', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3245, 'Ingres Database', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3246, 'University Ingres', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3247, 'OpenIngres', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3248, 'CA-Ingres', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3249, 'Ingres database', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3250, 'INGRES', 2, 88, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3251, 'IBM Domino', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3252, 'Lotus domino', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3253, 'Notes Release 3.0', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3254, 'Lotus Notes 3.0', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3255, 'Lotus Notes Mail', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3256, 'Lotus Notes 2.1', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3257, 'Lotus Notes Release 3.0', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3258, 'Lotus notes', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3259, 'Eproductivity', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3260, 'Notes 3.0', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3261, 'Lodus notes', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3262, 'Domino XML', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3263, 'Lodus nodes', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3264, 'Notes Release 2.1', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3265, 'Lodus Nodes', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3266, 'IBM Lotus Notes', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3267, 'IBM Lotus Domino', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3268, 'Notes Storage Facility', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3269, 'Lotus Domino', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3270, 'Dominoblog', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3271, 'Lodus Notes', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3272, 'Lotus Notes Release 2.1', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3273, 'Notes 2.1', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3274, 'IBM iNotes Webmail Redirect', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3275, 'Domino (software)', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3276, 'HLC Domino', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3277, 'HCL Notes', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3278, 'EProductivity', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3279, 'Notes Storage Format', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3280, 'Lotus Notes', 2, 93, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3281, 'IBM Notes', 2, 93, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3282, 'MaaS 360 (Software)', 2, 94, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3283, 'Malwarebytes'' AntiMalware', 2, 95, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3284, 'Malwarebytes'' Anti-Malware', 2, 95, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3285, 'Malware Bytes', 2, 95, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3286, 'Malwarebytes Anti-Malware', 2, 95, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3287, 'Mark Logic', 2, 97, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3288, 'MarkMail', 2, 97, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3289, 'MarkLogic Corporation', 2, 97, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3290, 'Mark logic', 2, 97, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3291, 'Memcache', 2, 98, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3292, 'Memory Cache Daemon', 2, 98, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3293, 'Microsoft Access Development', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3294, 'Ms access', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3295, 'Ms Access', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3296, 'Microsoft Access 2002', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3297, 'Access 2002', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3298, 'MS access', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3299, 'Access 97 SR2', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3300, 'Microsoft Access 2007', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3301, 'Access 2', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3302, 'Accdb', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3303, 'MS Access', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3304, 'MSAccess', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3305, 'Office Access', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3306, 'Microsoft Acces', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3307, 'Access 97', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3308, 'MSACCESS', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3309, 'Microsoft access', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3310, 'Microsoft Office Access', 2, 99, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3311, 'Biztalk', 2, 100, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3312, 'BizTalk', 2, 100, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3313, 'BizTalk Server', 2, 100, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3314, 'Microsoft Biztalk Server', 2, 100, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3315, 'Axapta', 2, 101, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3316, 'En''tegrate', 2, 101, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3317, 'X++', 2, 101, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3318, 'En''tegrate Software', 2, 101, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3319, 'Dynamics AX', 2, 101, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3320, 'MorphX', 2, 101, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3321, 'System Management Server', 2, 102, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3322, 'ConfigMgr', 2, 102, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3323, 'System center configuration manager', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3324, 'System Centre Configuration Manager', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3325, 'Systems Management Server', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3326, 'System Center Configuration Manager', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3327, 'AssetMetrix', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3328, 'SCCM 2007', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3329, 'MSSMS', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3330, 'Microsoft Systems Management Server', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3331, 'MS excel', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3332, 'Excel (Microsoft)', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3333, 'Excel macro', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3334, 'Microsoft XL', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3335, 'Excel function', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3336, 'Excel 2010', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3337, 'Microsoft excel file formats', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3338, 'Microsoft excel', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3339, 'Microsoft(r) Excel(r)', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3340, 'XLW', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3341, 'Ms Excel', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3342, 'XLS files', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3343, 'XLS file', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3344, 'Microsoft Excel XP', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3345, 'Ms excel', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3346, 'Excel Viewer', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3347, 'XLS FILE', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3348, 'Microsoft Excel:mac', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3349, 'Excel spreadsheet', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3350, 'Microsoft Excel 95', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3351, 'Microsoft Excel 2002', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3352, 'Microsoft Excel 2003', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3353, 'Excel 2007', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3354, 'Microsoft Excel Viewer', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3355, 'Microsoft Excel file format', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3356, 'Excel Web App', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3357, 'EXCEL', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3358, 'Xlw', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3359, 'Microsoft Excel 2004', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3360, 'MICROSOFT EXCEL', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3361, 'Excel table', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3362, 'Excel 2003', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3363, 'Excel VBA', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3364, 'Microsoft Office Excel', 2, 103, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3365, 'Excel', 2, 103, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3366, 'MS Excel', 2, 103, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3367, 'Office Excel', 2, 103, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3368, 'MS Exchange Server', 2, 104, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3369, 'Exchange email', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3370, 'Exchange 2007', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3371, 'Exchange Online', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3372, 'Microsoft Exchange Client', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3373, 'Exchange Server', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3374, 'Cluster continuos replication', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3375, 'Exchange 2010', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3376, 'Microsoft Exchange 2013', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3377, 'Microsoft Exchange Server 2013', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3378, 'Microsoft Exchange server', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3379, 'LinkAge Software', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3380, 'Exchange Server 2007', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3381, 'Exchange Server 2003', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3382, 'Exchange 2013', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3383, 'MS Exchange 2010 SP2', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3384, 'Exchange Server 2013', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3385, 'Cluster continuous replication', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3386, 'Identity Lifecycle Manager', 2, 105, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3387, 'Microsoft Office Infopath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3388, 'Microsoft infoPath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3389, 'Microsoft Infopath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3390, 'Microsoft infopath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3391, 'Infopath 2007', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3392, 'Office Forms Server', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3393, 'MS InfoPath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3394, 'Infopath Form Services', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3395, 'MS infoPath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3396, 'Ms Infopath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3397, 'Infopath Forms Services', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3398, 'InfoPath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3399, 'Microsoft InfoPath Filler', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3400, 'InfoPath Forms Services', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3401, 'Forms Server', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3402, 'Infopath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3403, 'Ms infoPath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3404, 'InfoPath Form Services', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3405, 'Infopass', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3406, 'Ms infopath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3407, 'Microsoft Office Forms Server', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3408, 'Office InfoPath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3409, 'MS infopath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3410, 'InfoPath forms services', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3411, 'Microsoft Office InfoPath 2007', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3412, 'Infopath forms services', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3413, 'Microsoft InfoPath Designer', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3414, 'Microsoft Office InfoPath', 2, 106, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3415, 'XDocs', 2, 106, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3416, 'Microsoft Internet Explorer', 2, 107, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3417, 'MSIE', 2, 107, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3418, 'Windows Internet Explorer', 2, 107, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3419, 'MS IE', 2, 107, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3420, 'Internetexplorer', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3421, 'Microsoft IE', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3422, 'Stopie', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3423, 'Internut Exploder', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3424, 'WinInet', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3425, 'Internex', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3426, 'Wininet', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3427, 'Internet Exploder', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3428, 'Iexplorer', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3429, 'Features of internet explorer', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3430, 'WinINET', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3431, 'MicroSoft Internet Explorer', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3432, 'Innerhtml', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3433, 'Iexplore', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3434, 'MSIE (web browser)', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3435, 'Internet explorer', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3436, 'Internet exploiter', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3437, 'Internet Exploiter', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3438, 'MS Internet Explorer', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3439, 'InternetExplorer', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3440, 'M.S.I.E.', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3441, 'IE browser', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3442, 'InnerHTML', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3443, 'StopIE', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3444, 'Microsoft Proxy Server', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3445, 'Threat Management Gateway', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3446, 'Internet Security and Acceleratoin Server', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3447, 'Internet Security and Acceleration Server', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3448, 'Microsoft ISA Server', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3449, 'Internet Security and Acceleration', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3450, 'MS Proxy Server', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3451, 'ISA server', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3452, 'Forefront Threat Management Gateway', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3453, 'ISA Server', 2, 108, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3454, 'Forefront TMG', 2, 108, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3455, 'Microsoft Internet Security and Acceleration Server', 2, 108, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3456, 'MSMQ', 2, 109, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3457, 'Microsoft Message Queue Server', 2, 109, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3458, 'Microsoft Message Queue', 2, 109, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3459, 'Visual Studio .NET', 2, 111, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3460, 'Microsoft Visual Studio .NET', 2, 111, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3461, 'Visual Studio', 2, 111, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3462, 'Vs2010', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3463, 'Visual Studio 97', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3464, 'Microsoft Visual Studio 2008', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3465, 'Data dude', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3466, 'Visual Studio Shell', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3467, 'Microsoft Development Environment', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3468, 'Visual Studio .NET 2003', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3469, 'VS2008', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3470, 'LightSwitch', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3471, 'Visual Studio Team Services', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3472, 'Visual Studio 2017', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3473, 'Microsoft visual studio', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3474, 'Microsoft Visual Studio 2015', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3475, 'Visual Studio Online', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3476, 'Visual Studio 11', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3477, 'DevBiz Business Solutions', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3478, 'Visual Studio .NET 2005', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3479, 'Visual Studio .NET 2002', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3480, 'Visual Studio Test Professional', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3481, 'VS2017', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3482, 'Visual Studio 2019', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3483, 'VS2010', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3484, 'Microsoft Visual Studio Community', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3485, 'Visual Studio.NET 2005', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3486, 'Microsoft Visual Studio debugger', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3487, 'MSDEV', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3488, 'Visual Studio 2013', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3489, 'Visual Studio Application Lifecycle Management', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3490, 'Visual Studio Team Suite', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3491, 'Visual studio', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3492, 'VS6', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3493, 'Microsoft Test professional', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3494, 'Visual Studio 2015', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3495, 'Azure DevOps Services', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3496, 'Visual Studio 2010', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3497, 'Microsoft visual studio 2010', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3498, 'VS2005', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3499, 'Visual Studio.NET', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3500, 'VS 2005', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3501, 'DXCore', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3502, 'Visual Studio debugger', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3503, 'Visual Studio Team Test', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3504, 'MS Visual Studio', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3505, 'RefactorPro', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3506, 'Visual Studio Debugger', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3507, 'VisualStudio', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3508, 'Visual Studio LightSwitch', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3509, 'Microsoft Orcas', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3510, 'Visual Studio ALM', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3511, 'Microsoft Visual Studio 2005', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3512, 'Visual Studio 2005', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3513, 'CodeView and the Visual Studio Debugger', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3514, 'Visual Studio Orcas', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3515, 'Visual Studio 2022', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3516, 'Microsoft Test Professional', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3517, 'Visual Studio 2008', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3518, 'Microsoft Visual Studio Debugger', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3519, 'Vs.net', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3520, 'VS05', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3521, 'Vs 2010', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3522, 'Visual Studio 6.0', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3523, 'Visual Studio Community', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3524, 'VISUAL STUDIO 2008', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3525, 'DevBiz', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3526, 'Microsoft Visual Studio 2010', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3527, 'Visual Studio 2012', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3528, 'VS 2008', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3529, 'Visual Studio Ultimate 2010', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3530, 'WebPI', 2, 114, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3531, 'Microsoft Web Platform Installer', 2, 114, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3532, 'Mongo db', 2, 116, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3533, 'Mongodb', 2, 116, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3534, 'Firefox (browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3535, 'Firebird browser', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3536, 'FireBird (browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3537, 'Mozila Firefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3538, 'Firefox minefield', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3539, 'Minefield (trunk build)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3540, 'FireFox (web browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3541, 'Firebird (web browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3542, 'Mozilla Phoenix', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3543, 'Mozilla/browser', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3544, 'Firefox (software)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3545, 'Mozilla firefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3546, 'M/b', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3547, 'Phoenix web browser', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3548, 'Firefox Aurora', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3549, 'Mozilla Firerfox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3550, 'Firebird (browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3551, 'Mozilla''s Firefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3552, 'MineField Browser', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3553, 'Firefox (web browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3554, 'Mozilla phoenix', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3555, 'SpreadFirefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3556, 'FireBird (web browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3557, 'Mozzila Firefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3558, 'FireFox (browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3559, 'Mozilla Minefield', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3560, 'Firefox esr', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3561, 'Mozilla FireFox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3562, 'Mozilla Firefox''s', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3563, 'Mozilla firebird', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3564, 'Mozff', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3565, 'Mozilla firefox esr', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3566, 'Firebird Web Browser', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3567, 'Frefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3568, 'Phoenix (browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3569, 'Spread Firefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3570, 'Forefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3571, 'FireFox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3572, 'Mozillafirefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3573, 'Mozilla Fire Fox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3574, 'Firefox Roadmap', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3575, 'Firefox roadmap', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3576, 'Firebird web browser', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3577, 'Mozilla Firefox (software)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3578, 'Mozilla Firefox ESR', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3579, 'SpreadFireFox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3580, 'Moz firefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3581, 'Firefox Browser', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3582, 'Firefo', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3583, 'Fire Fox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3584, 'Mozilla FireBird', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3585, 'Mozilla FX', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3586, 'Firefox ESR', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3587, 'Mozilla ff', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3588, 'Phoenix (web browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3589, 'Fire fox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3590, 'Firefox web browser', 2, 117, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3591, 'Firefox browser', 2, 117, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3592, 'Mozilla Firebird', 2, 117, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3593, 'Mozilla Firefox', 2, 117, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3594, 'MS-Office 365', 2, 119, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3595, 'MS SQL', 2, 120, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3596, 'MS SQL Server', 2, 120, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3597, 'MSSQL', 2, 120, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3598, 'MS-SQL', 2, 120, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3599, 'Microsoft SQL Server 2005', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3600, 'Sql Server 2000', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3601, 'SQL Server 2017', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3602, 'Sqlcmd', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3603, 'SQL Server 2014 ISO', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3604, 'SQL Server 2000', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3605, 'SQL Server 2005', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3606, 'SQL Server 2014', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3607, 'Microsoft SQL Server 2008 R2', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3608, 'Microsoft SQL server', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3609, 'Microsoft SQL Server 2000', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3610, 'SQL Server 2014 CAB', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3611, 'SQL Server 2008 R2', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3612, 'Pubs (database)', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3613, 'SQL Server 2012', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3614, 'Microsoft SQL', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3615, 'Microsoft SQL Server 2008', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3616, 'Microsoft Sql Server', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3617, 'SQL 6.5', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3618, 'Ms sql server', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3619, 'SQL Server 2008', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3620, 'Microsoft sql server', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3621, 'Mssql', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3622, 'SQL Server 2016', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3623, 'SQL 7.0', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3624, 'SQL Server 2019', 2, 120, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3625, 'SQL Server 2005 Compact Edition', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3626, 'SQL Server Compact 3.5', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3627, 'Microsoft SQL Server Compact Edition', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3628, 'SQL Server Compact Edition Database File', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3629, 'Sql mobile', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3630, 'SQL Server Compact Edition', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3631, 'SQL Mobile', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3632, 'SQLCE', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3633, 'SQL Server Mobile', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3634, 'SQLce', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3635, 'SQL Server Compact 2005 Edition', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3636, 'SQL Server Mobile Edition', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3637, 'SQL Server CE', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3638, 'Microsoft SQL Server Mobile Edition', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3639, 'Microsoft SQL Server Compact', 2, 121, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3640, 'SQL CE', 2, 121, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3641, 'My sql', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3642, 'MySQL server', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3643, 'Mysql 5.0', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3644, 'MySQL Fabric', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3645, 'Mysqldump', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3646, 'MySql', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3647, 'MYSQL', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3648, 'MySQL HA', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3649, 'SunSQL', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3650, 'Libmysqld', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3651, 'Mysql-server', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3652, 'Mysql', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3653, 'Mqsql', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3654, 'My Structured Query Language', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3655, 'My SQL', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3656, 'MySql 5', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3657, 'Mysql 5.1', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3658, 'Neo Technology', 2, 123, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3659, 'Neo4J', 2, 123, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3660, 'Nix language', 2, 125, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3661, 'Nix Package Manager', 2, 125, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3662, 'Openldap', 2, 126, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3663, 'OpenText Exstream', 2, 127, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3664, 'PrivateVPN', 2, 128, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3665, 'Openvon', 2, 128, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3666, 'Openvpn', 2, 128, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3667, 'Open VPN', 2, 128, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3668, 'ADF Faces', 2, 130, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3669, 'Oracle ADF', 2, 130, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3670, 'Oracle HTML DB', 2, 131, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3671, 'Html db', 2, 131, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3672, 'HTML DB', 2, 131, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3673, 'Oracle APEX', 2, 131, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3674, 'Oracle XML Publisher', 2, 132, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3675, 'OBIEE', 2, 133, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3676, 'Oracle11i', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3677, 'Oracle8i', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3678, 'Oracle (software)', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3679, 'Oracle (database)', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3680, 'Ora92', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3681, 'Oracle 11i', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3682, 'Oracle express', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3683, 'Oracle XE', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3684, 'Oracle (DBMS)', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3685, 'Oracle database', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3686, 'Instantclient', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3687, 'Oracle db', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3688, 'Oracle 11g', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3689, 'Oracle R Enterprise', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3690, 'Oracle9i', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3691, 'Oracle11g', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3692, 'Oracle DBMS', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3693, 'Oracle8', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3694, 'Oracle RDBMS', 2, 134, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3695, 'Oracle Designer 2000', 2, 135, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3696, 'Oracle Enterprise Manager', 2, 136, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3697, 'Oracle Forms', 2, 137, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3698, 'Oracle Hyperion|Hyperion Planning', 2, 139, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3699, 'Oracle Net', 2, 140, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3700, 'Real application clusters', 2, 141, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3701, 'Oracle Service Bus', 2, 143, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3702, 'Oracle soa', 2, 145, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3703, 'Oracle SQL Developer', 2, 146, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3704, 'Oracle TimesTen In-Memory Database', 2, 147, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3705, 'Timesten', 2, 147, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3706, 'Smallbase', 2, 147, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3707, 'TimesTen In-Memory Database', 2, 147, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3708, 'Oracle Warehouse Builder', 2, 148, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3709, 'Orbix (Software)', 2, 149, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3710, 'Pentaho Data Integration', 2, 150, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3711, 'Ramsetcube', 2, 150, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3712, 'PeopleSoft Enterprise', 2, 151, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3713, 'People Soft', 2, 151, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3714, 'PeopleSoft', 2, 151, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3715, 'PeopleSoft EnterpriseOne', 2, 151, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3716, 'PeopleSoft HRMS', 2, 151, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3717, 'Peoplesoft', 2, 151, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3718, 'Pervasive psql', 2, 153, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3719, 'Actian Zen', 2, 153, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3720, 'Pervasive sql', 2, 153, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3721, 'PKZip', 2, 155, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3722, 'PKSFX', 2, 155, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3723, 'PKUNZIP', 2, 155, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3724, 'SecureZIP', 2, 155, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3725, 'Pkunzip', 2, 155, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3726, 'Pkzip', 2, 155, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3727, 'Metis (modelling)', 2, 156, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3728, 'Metis (software)', 2, 156, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3729, 'PgSQL', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3730, 'PostgreSQL Data Base Management System', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3731, 'Postsql', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3732, 'Postgres95', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3733, 'POSTGRES', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3734, 'Autovacuum', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3735, 'PGSQL', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3736, 'PostSQL', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3737, 'PostGRES', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3738, 'POSTGRES95', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3739, 'Psql (PostgreSQL)', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3740, 'Pgsql', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3741, 'PortugueseSQL', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3742, 'PostegreSQL', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3743, 'PostGRE', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3744, 'PostgresSQL', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3745, 'Postgresql', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3746, 'PostGres', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3747, 'PostgreSql', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3748, 'Postgre sql', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3749, 'Postgress', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3750, 'Postgre', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3751, 'Postgres', 2, 157, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3752, 'Powerbuilder', 2, 158, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3753, 'Sybase PowerBuilder', 2, 158, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3754, 'Power Builder', 2, 158, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3755, 'Oracle Primavera', 2, 159, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3756, 'Primavera p6', 2, 159, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3757, 'XER (file format)', 2, 159, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3758, 'Primavera P3', 2, 159, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3759, 'ProjectWise', 2, 161, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3760, 'ProjectWise Web Server', 2, 162, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3761, 'Polytron Version Control System', 2, 163, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3762, 'QlikView', 2, 164, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3763, 'Rabbit MQ', 2, 165, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3764, 'Rabbitmq', 2, 165, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3765, 'RabbitMq', 2, 165, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3766, 'Rabbit mq', 2, 165, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3767, 'MultiVersion File System', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3768, 'IBM Rational ClearCase', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3769, 'Clear case', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3770, 'IBM Rational MultiVersion File System', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3771, 'Clearcase', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3772, 'Rational MultiVersion File System', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3773, 'Ibm clear case', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3774, 'ClearCase', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3775, 'Rational Business Developer Extension', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3776, 'Rational Service Tester for SOA Quality', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3777, 'Rational Business Developer', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3778, 'Rational ClearQuest', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3779, 'IBM Rational SQABasic', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3780, 'SQABasic', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3781, 'IBM Rational Business Developer Extension', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3782, 'Rationale Software', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3783, 'Rational Machines', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3784, 'Rational Application Developer', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3785, 'Rational Team Concert', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3786, 'Rational Engineering Lifecycle Manager', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3787, 'IBM Jazz', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3788, 'IBM Rational Team Concert', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3789, 'Rational Rose RealTime', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3790, 'IBM Rational Business Developer', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3791, 'IBM Rational Software', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3792, 'Rational Software Corporation', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3793, 'Rational Functional Tester', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3794, 'Rational Tau', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3795, 'Rational robot', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3796, 'IBM Rational', 2, 167, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3797, 'Redis (data store)', 2, 168, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3798, 'Redis (dbms)', 2, 168, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3799, 'Redis database format', 2, 168, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3800, 'Remedy', 2, 169, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3801, 'Riak', 2, 170, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3802, 'Rumba criolla', 2, 172, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3803, 'Mysap', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3804, 'SAP enterprise software', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3805, 'SAP Transport management system', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3806, 'Profitability Analysis (SAP)', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3807, 'MySAP', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3808, 'SAP ERP Financials', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3809, 'MySAP ERP', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3810, 'SAP Basis', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3811, 'SAP HCM PA', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3812, 'SAP ECC', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3813, 'MySAP ERP Operations', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3814, 'SAP ERP Human Capital Management', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3815, 'MySAP ERP Financials', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3816, 'SAP Fiori', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3817, 'SAP ERP Operations', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3818, 'SAP ERP Corporate Services', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3819, 'High-performance Analytical Application', 2, 175, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3820, 'SAP DB', 2, 176, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3821, 'SAPDB', 2, 176, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3822, 'SapDB', 2, 176, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3823, 'SAP Netweaver Business Intelligence', 2, 177, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3824, 'SAP NetWeaver Business Intelligence', 2, 177, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3825, 'SAP BW', 2, 177, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3826, 'SAP Business Information Warehouse', 2, 177, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3827, 'Sybase ASA', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3828, 'ASA (SQL Anywhere)', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3829, 'PowerSoft SQL', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3830, 'SAP Adaptive Server Anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3831, 'Sybase asa', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3832, 'PowerSoft Watcom SQL', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3833, 'Sybase Anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3834, 'Sql anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3835, 'Adaptive Server Anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3836, 'SAP SQL Anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3837, 'PowerSoft SQL Anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3838, 'Sybase SQL Anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3839, 'SAP Sybase Adaptive Server Anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3840, 'SAP Sybase ASA', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3841, 'Watcom SQL', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3842, 'Sybase Adaptive Server Anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3843, 'SAP ASA', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3844, 'Web Dynpro ABAP', 2, 179, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3845, 'Webdynpro', 2, 179, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3846, 'Dynpro', 2, 179, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3847, 'Sentry Risk Table', 2, 180, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3848, 'Windows Sharepoint', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3849, 'Microsoft SharePoint Server', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3850, 'MOSS 2007', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3851, 'Microsoft Office SharePoint Server 2007', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3852, 'SharePoint 2007', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3853, 'Windows sharepoint', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3854, 'Microsoft SharePoint 2010', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3855, 'SharePoint 2010', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3856, 'Microsoft SharePoint 2007', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3857, 'Sharepoint', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3858, 'Share point server', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3859, 'SharePoint Foundation', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3860, 'SharePoint services', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3861, 'SharePoint Server', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3862, 'Sharepoint portal server', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3863, 'Microsoft sharepoint', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3864, 'Windows SharePoint 2007', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3865, 'Microsoft SharePoint', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3866, 'Office SharePoint Server', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3867, 'Windows SharePoint', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3868, 'MS Sharepoint', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3869, 'Windows SharePoint Server', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3870, 'Sharepoint 2007', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3871, 'Windows SharePoint Services', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3872, 'Share Point', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3873, 'Microsoft Office Sharepoint Server 2007', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3874, 'Microsoft Windows SharePoint Services', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3875, 'Microsoft Office SharePoint Portal Server', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3876, 'Microsoft Sharepoint Foundation', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3877, 'SharePoint Portal Server', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3878, 'Sharepoint services', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3879, 'Sharepoint Services', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3880, 'Sharepoint 2010', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3881, 'Microsoft Sharepoint', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3882, 'Windows Sharepoint Services 3', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3883, 'Sharepoint server', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3884, 'MS SharePoint', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3885, 'Microsoft Office SharePoint', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3886, 'SharePointCOE', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3887, 'Share point', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3888, 'Sharepoint collaboration', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3889, 'Microsoft SharePoint Foundation', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3890, 'SharePoint Services', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3891, 'SharePoint Resources', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3892, 'Windows Sharepoint Services', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3893, 'Microsoft Office SharePoint Server', 2, 181, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3894, 'Snaglt', 2, 184, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3895, 'SnagIt', 2, 184, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3896, 'IBM Mobile', 2, 185, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3897, 'SonarLint', 2, 186, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3898, 'Sonarqube', 2, 186, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3899, 'Sonar (software quality)', 2, 186, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3900, 'Splunk', 2, 188, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3901, 'Sybase SQL Server', 2, 190, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3902, 'SAP Sybase DB', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3903, 'SAP Sybase SQL Server', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3904, 'SAP Sybase ASE', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3905, 'Sybase Adaptive Server Enterprise', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3906, 'SAP Adaptive Server Enterprise', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3907, 'SAP Sybase Adaptive Server Enterprise (ASE)', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3908, 'Sybase (database)', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3909, 'SAP SQL Server', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3910, 'SAP Sybase', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3911, 'SAP Sybase Adaptive Server Enterprise', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3912, 'Sybase database', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3913, 'ASE (SQL Server)', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3914, 'Sybase Enterprise', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3915, 'Sybase ASE', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3916, 'SAP ASE', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3917, 'Sybase DB', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3918, 'Syncsort', 2, 191, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3919, 'Teradata Geospatial', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3920, 'Teradata FastLoad', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3921, 'Teradata Warehouse Miner', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3922, 'Fastexport', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3923, 'BTEQ', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3924, 'Teradata Parallel Transporter', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3925, 'FastExport', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3926, 'ADAM Software', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3927, 'Tibco Rendezvous', 2, 219, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3928, 'Tivoli Access Manager', 2, 220, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3929, 'Tortoise CVS', 2, 221, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3930, 'TSVN', 2, 222, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3931, 'Tortoisesvn', 2, 222, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3932, 'Tortoise svn', 2, 222, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3933, 'Tortoise SVN', 2, 222, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3934, 'UNIFACE', 2, 225, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3935, 'VisiBroker', 2, 228, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3936, 'Vcenter', 2, 231, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3937, 'IBM WebSphere Commerce', 2, 234, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3938, 'WebSphere Commerce', 2, 234, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3939, 'Windchill', 2, 237, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3940, 'Index Server', 2, 238, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3941, 'Windows Indexing Service', 2, 238, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3942, 'Windows indexing service', 2, 238, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3943, 'WinMerge 2011', 2, 241, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3944, 'Winmerge', 2, 241, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3945, 'Winrar', 2, 242, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3946, 'WinRar', 2, 242, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3947, 'RAR5', 2, 242, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3948, 'Rarlab WinRAR', 2, 242, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3949, 'Win RAR', 2, 242, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3950, 'WINSCP', 2, 243, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3951, 'Winscp', 2, 243, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3952, 'Word press', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3953, 'BbPress', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3954, 'Cafelog', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3955, 'WordPress MU', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3956, 'B2\cafelog', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3957, 'Wordpress', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3958, 'B2/cafelog', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3959, 'WordPress 2.1.2', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3960, 'WordCamp', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3961, 'WordPress Foundation', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3962, 'Word Press', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3963, 'The WordPress Foundation', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3964, 'Wordpress foundation', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3965, 'B2 (software)', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3966, 'Xampp', 2, 246, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3967, 'XAMPP Lite', 2, 246, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3968, 'Xamp', 2, 246, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3969, 'Xampp Lite', 2, 246, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3970, 'Apache Friends', 2, 246, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3971, '0MQ', 2, 248, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3972, 'ZMQ', 2, 248, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3973, 'Nanomsg', 2, 248, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3974, 'Zero MQ', 2, 248, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3975, 'ØMQ', 2, 248, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3976, '0mq', 2, 248, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3977, 'Zmq', 2, 248, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3978, 'Zeromq', 2, 248, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3979, 'OMQ', 2, 248, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3980, 'Zerto Virtual Replication', 2, 249, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3981, 'HACMP', 2, 250, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3982, 'High Availability Cluster Multiprocessing', 2, 250, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3983, 'IBM PowerHA SystemMirror', 2, 250, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3984, 'ILOG CPLEX', 2, 253, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3985, 'OPL Development Studio', 2, 253, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3986, 'LogicTools', 2, 257, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3987, 'Sqlite', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3988, 'SQL Lite', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3989, 'Sqlite3', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3990, 'SqlLite', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3991, 'SQLLite', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3992, 'SQLite4', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3993, 'SQLlite', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3994, 'SQLite3', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3995, 'SQlite', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3996, 'SQLLite DB', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3997, 'SQLite Manager', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3998, 'Sqllite', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3999, 'SQLITE', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4000, 'Apache webserver', 8, 259, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4001, 'Apache Server', 8, 259, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4002, 'Apache web server', 8, 259, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4003, 'Apache WWW Server', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4004, 'Apache (server)', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4005, 'Apache (web server)', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4006, 'Apache httpd', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4007, 'Apache server', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4008, 'Apache2', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4009, 'Apache2ctl', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4010, 'Apache Web Server', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4011, 'Apache 2.4', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4012, 'Apache Web server', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4013, 'Apache HTTPd', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4014, 'Apache http', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4015, 'Apache HTTPD', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4016, 'Apachectl', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4017, 'Apache http server', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4018, 'Apache HTTP server', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4019, 'Apache (HTTP server)', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4020, 'Apache 1.3', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4021, 'Apache (webserver)', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4022, 'Apache 2.2', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4023, 'Apache Webserver', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4024, 'Apache (computing)', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4025, 'Tomcat Catalina', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4026, 'Apache tomcat', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4027, 'Tomcat Jasper', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4028, 'Tomcat6', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4029, 'Tomcat 6', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4030, 'Tomcat5', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4031, 'Catalina (Tomcat)', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4032, 'Tomcat Coyote', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4033, 'Tomcat (software)', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4034, 'Jakarta Tomcat', 8, 260, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4035, 'ArcGIS Server', 8, 261, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4036, 'BEA-WebLogic', 8, 262, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4037, 'Bea Weblogic', 8, 262, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4038, 'Oracle Weblogic', 8, 262, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4039, 'Web Logic', 8, 262, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4040, 'BEA AS', 8, 262, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4041, 'BEA WebLogic', 8, 262, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4042, 'WebLogic', 8, 262, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4043, 'BEA Application Server', 8, 262, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4044, 'BEA Weblogic', 8, 262, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4045, 'Oracle WebLogic', 8, 262, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4046, 'Weblogic', 8, 262, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4047, 'Oracle Weblogic Server', 8, 262, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4048, 'WebLogic Application Server', 8, 262, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4049, 'Sun ONE Application Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4050, 'Oracle GlassFish Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4051, 'SJSAS', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4052, 'Java System Application Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4053, 'Glassfish Application Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4054, 'Sun GlassFish Enterprise Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4055, 'Glassfish server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4056, 'Sun Java Application Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4057, 'Sun Java System Application Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4058, 'IPlanet Application Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4059, 'Haproxy', 8, 264, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4060, 'IBM HTTP Server', 8, 265, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4061, 'Microsoft IIS', 8, 266, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4062, 'Microsoft Internet Information Services', 8, 266, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4063, 'Internet Information Server', 8, 266, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4064, 'IIS 7', 8, 266, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4065, 'Microsoft Internet Information Server', 8, 266, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4066, 'IIS Media Services', 8, 266, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4067, 'Microsoft-IIS', 8, 266, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4068, 'MS IIS', 8, 266, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4069, 'IIS7', 8, 266, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4070, 'IIS Media Pack', 8, 266, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4071, 'Microsoft-iis', 8, 266, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4072, 'Microsoft IIS server', 8, 266, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4073, 'IIS Express', 8, 266, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4074, 'IIS server', 8, 266, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4075, 'Red Hat Software', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4076, 'RHTS', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4077, 'RHAT (NASDAQ)', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4078, 'Red Hat Czech', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4079, 'PNAELV', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4080, 'JBoss (company)', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4081, 'RHAT', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4082, 'Redhat.com', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4083, 'Red Hat Test Suite', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4084, 'Ntsysv', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4085, 'FUSE Message Broker', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4086, 'JBOSS', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4087, 'RESTEasy', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4088, 'Red Hat (company)', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4089, 'REDHAT', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4090, 'Red.ht', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4091, 'CloudForms', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4092, 'Red Hat High', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4093, 'Red Hat Enterprise MRG', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4094, 'JBoss', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4095, 'RED HAT', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4096, 'JBoss Group', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4097, 'Red hat', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4098, 'Red Hat', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4099, 'Red Hat MGR', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4100, 'Redhat', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4101, 'Red Hat MRG', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4102, 'RESTeasy', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4103, 'Red Hat Inc', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4104, 'Red Hat India', 8, 267, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4105, 'Red Hat Inc.', 8, 267, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4106, 'RedHat', 8, 267, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4107, 'Red Hat Software', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4108, 'RHTS', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4109, 'RHAT (NASDAQ)', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4110, 'Red Hat Czech', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4111, 'Fuse Message Broker', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4112, 'PNAELV', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4113, 'JBoss (company)', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4114, 'RHAT', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4115, 'Redhat.com', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4116, 'Red Hat Test Suite', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4117, 'Ntsysv', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4118, 'FUSE Message Broker', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4119, 'NASDAQ:RHAT', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4120, 'JBOSS', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4121, 'RESTEasy', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4122, 'Red Hat (company)', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4123, 'REDHAT', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4124, 'Red.ht', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4125, 'CloudForms', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4126, 'Red Hat High', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4127, 'Red Hat Enterprise MRG', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4128, 'JBoss', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4129, 'RED HAT', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4130, 'JBoss Group', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4131, 'Red hat', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4132, 'Red Hat', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4133, 'Red Hat MGR', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4134, 'Redhat', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4135, 'Red Hat MRG', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4136, 'RESTeasy', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4137, 'Red Hat Inc', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4138, 'Red Hat India', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4139, 'Red Hat Inc.', 8, 268, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4140, 'RedHat', 8, 268, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4141, 'Kitura', 8, 269, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4142, 'IBM Domino', 8, 270, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4143, 'Lucee', 8, 271, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4144, 'Netscape Application Server', 8, 272, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4145, 'Netscape Enterprise Server', 8, 273, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4146, 'Nginx plus', 8, 274, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4147, 'NGINX', 8, 274, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4148, 'Engine X', 8, 274, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4149, 'NGINX Unit', 8, 274, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4150, 'Oracle OC4J', 8, 275, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4151, 'OC4J', 8, 275, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4152, 'Oracle Application Server 10g', 8, 275, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4153, 'Oracle Imaging and Process Management', 8, 276, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4154, 'Oracle Content Management', 8, 276, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4155, 'WebCenter', 8, 276, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4156, 'Oracle Universal Content Management', 8, 276, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4157, 'Universal Content Management', 8, 276, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4158, 'Oracle WebCenter Imaging', 8, 276, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4159, 'Resin Server', 8, 278, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4160, 'Resin Application Server', 8, 278, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4161, 'Caucho Resin', 8, 278, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4162, 'Quercus (software)', 8, 278, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4163, 'NetWeawer', 8, 279, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4164, 'SAP Netweaver solution', 8, 279, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4165, 'Netweaver', 8, 279, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4166, 'SAP Central Process Scheduling', 8, 279, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4167, 'NetWeaver', 8, 279, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4168, 'Apache Spark', 8, 280, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4169, 'Sun Java System Web Server', 8, 281, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4170, 'Sun Java Enterprise System Web Server', 8, 281, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4171, 'IPlanet Web Server 4.1', 8, 281, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4172, 'Netscape Enterprise Server', 8, 281, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4173, 'Sun ONE Web Server', 8, 281, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4174, 'Netscape FastTrack Server', 8, 281, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4175, 'Sun Java Web Server', 8, 281, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4176, 'IPlanet Web Server', 8, 281, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4177, 'Sun-Java-System-Web-Server', 8, 281, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4178, 'webMethods Integration Server', 8, 283, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4179, 'WebSphere Application Server V3.0', 8, 284, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4180, 'WebSphere Application Server V5.0', 8, 284, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4181, 'Websphere 6', 8, 284, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4182, 'WAS 6', 8, 284, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4183, 'WebSphere Application Server', 8, 284, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4184, 'WebSphere', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4185, 'WebSphere Application Server V5.1 Business Integration Foundation Edition', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4186, 'WebSphere Application Server V6.0', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4187, 'WebSphere Application Server V5.0 Enterprise Edition', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4188, 'IBM WebSphere Real Time', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4189, 'Websphere', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4190, 'IBM Websphere', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4191, 'WebSphere Application Server V4.0', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4192, 'Websphere Software', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4193, 'IBM WebSphere Information Integration', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4194, 'WebSphere Information Integration', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4195, 'WebSphere Portal Server', 8, 286, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4196, 'WebSphere Process Server', 8, 287, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4197, 'Integrity NonStop', 4, 293, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4198, 'HP Integrity NonStop', 4, 293, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4199, 'HPE NonStop', 4, 293, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4200, 'Nonstop kernel', 4, 293, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4201, 'NonStop Kernel', 4, 293, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4202, 'NonStop OS', 4, 293, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4203, 'IBM Power System', 4, 295, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4204, 'Lpar2rrd', 4, 295, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4205, 'Power Systems', 4, 295, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4206, 'L5335', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4207, 'Xeon E5-26xx', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4208, 'Dunnington (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4209, 'Cascades (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4210, 'Scalable Memory Interconnect', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4211, 'X7460', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4212, 'Xeon E3-12xx', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4213, 'Xeonx', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4214, 'Woodcrest (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4215, 'Pentium II Xeon', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4216, 'Tigerton (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4217, 'Jasper Forest (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4218, 'XEON', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4219, 'Xeon E7-48xx v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4220, 'Clovertown (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4221, 'Xeon E5', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4222, 'Westmere-EX', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4223, 'Drake (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4224, 'X5650', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4225, 'Xeon E3 v2', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4226, 'Wolfdale-DP (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4227, 'Quad-Core Intel Xeon', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4228, 'Tanner (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4229, 'Scalable memory interconnect', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4230, 'Intel Xeon CPU', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4231, 'Quad-Core Xeon', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4232, 'Intel Xeon E5', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4233, 'Xeon E3 v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4234, 'Dempsey (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4235, 'Xeon Silver', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4236, 'Xeon E7-88xx v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4237, 'Harpertown (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4238, 'Xeon E5 v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4239, 'Intel SMI', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4240, 'Gainestown (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4241, 'Xeon MP', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4242, 'Dual-Core Xeon', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4243, 'Xeon E5-26xx v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4244, 'Intel Xeon Gold', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4245, 'Nancona', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4246, 'Haswell-EP', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4247, 'Intel Xeon Platinum', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4248, 'Sossaman (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4249, 'Xeon E3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4250, 'Xeon E7 v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4251, 'Xeon E7 v2', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4252, 'Intel Woodcrest', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4253, 'E5310', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4254, 'Intel Xeon Bronze', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4255, 'Xeon E5 v2', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4256, 'Pentium III Xeon', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4257, 'Nehalem-ex', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4258, 'Xeon E5-16xx', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4259, 'Intel Xeon Silver', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4260, 'Beckton (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4261, 'Xeon E5-16xx v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4262, 'Xeon Bronze', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4263, 'Sossaman', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4264, 'Xeon E3-12xx v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4265, 'Intel Xeon', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4266, 'Xeon Platinum', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4267, 'Net Optics Taps', 4, 297, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4268, 'Oracle Database Machine', 4, 298, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4269, 'Exadata', 4, 298, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4270, 'Autoit', 9, 299, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4271, 'Autoit script', 9, 299, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4272, 'AutoIt3', 9, 299, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4273, 'AI3', 9, 299, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4274, 'Awk', 9, 300, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4275, 'Nawk', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4276, 'GNU Awk', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4277, 'GAWK', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4278, 'GNU awk', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4279, 'One true AWK', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4280, 'AWK (programming language)', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4281, 'AWK programming language', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4282, 'Awk (language)', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4283, 'Tawk', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4284, 'One True AWK', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4285, 'Gawk (GNU package)', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4286, 'Awk language', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4287, 'One true awk', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4288, 'Awk programming language', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4289, 'BASAIC programming language', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4290, 'Beginner All-Purpose Symbolic', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4291, 'Beginner''s All Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4292, 'Beginners All Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4293, 'Beginner All Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4294, 'Beginner''s All-Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4295, 'Basic programming language', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4296, 'Beginners'' All-Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4297, 'Beginners'' All-Purpose Symbolic', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4298, 'Basic (programming language)', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4299, 'Basic (language)', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4300, 'Basic computer language', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4301, 'Unstructured BASIC', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4302, 'B.A.S.I.C.', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4303, 'ECMA-55', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4304, 'Beginner All-Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4305, 'Compiled BASIC', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4306, 'Structured BASIC', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4307, 'Beginners All-Purpose Symbolic', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4308, 'Beginner''s All-Purpose Symbolic', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4309, 'ROM BASIC programming language', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4310, 'Beginners All-Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4311, 'BASIC language', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4312, 'BASIC (programming language)', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4313, 'Beginners All-purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4314, 'Basic (computer language)', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4315, 'Beginners'' All Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4316, 'ANSI BASIC', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4317, 'BASIC programming language', 9, 301, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4318, 'Beginner''s All-purpose Symbolic Instruction Code', 9, 301, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4319, 'C prog', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4320, 'C programming Language', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4321, 'C-programming', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4322, 'C programming language/Evolution', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4323, 'C (computer language)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4324, 'C (programming langage)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4325, 'C lang', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4326, 'C (lang)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4327, 'C programing language', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4328, 'C (programming)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4329, 'C78 (C version)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4330, 'C programming', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4331, 'C Language', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4332, 'C language', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4333, 'C Programming', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4334, 'C program', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4335, 'C programming language/K and R C', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4336, 'C (language)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4337, '32/16 bit C programming', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4338, 'C (software)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4339, 'C(programming language)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4340, 'C (Programming Language)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4341, 'Programming language C', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4342, 'Computer language C', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4343, 'C programming language', 9, 303, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4344, 'C# (programming language)', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4345, 'C++++', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4346, 'Visual C Sharp .Net', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4347, 'Visual C Sharp Express Edition', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4348, 'C♯ (programming language)', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4349, 'Microsoft Visual C ♯', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4350, 'C Sharp language', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4351, 'C# programming language', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4352, 'ISO/IEC 23270', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4353, 'C Sharp Programming Language', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4354, 'Microsoft Visual C Sharp', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4355, 'C-sharp programming language', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4356, 'C ♯ (programming language)', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4357, 'C hash', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4358, 'C♯ (language)', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4359, 'C sharp (computing)', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4360, 'CS (programming language)', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4361, 'C sharp (language)', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4362, 'C Sharp (language)', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4363, 'ECMA-334', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4364, 'C-hash', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4365, 'C sharp 6.0', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4366, 'C♯ programming language', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4367, 'Visual C Sharp', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4368, 'C Sharp 5.0', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4369, 'C-Hash', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4370, 'C sharp programming language', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4371, 'ISO 23270', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4372, 'C Sharp Programming language', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4373, 'C Sharp (computing)', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4374, 'C # (programming language)', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4375, 'C sharp (programming language)', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4376, 'C hashtag', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4377, 'C Pound', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4378, 'C Sharp programming language', 9, 304, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4379, 'C plus plus', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4380, 'C++ 1.0', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4381, 'C plus plus programming language', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4382, 'ISO/IEC 14882:2003', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4383, 'C++ standard', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4384, 'Standard C++ Foundation', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4385, 'ISO/IEC 14882', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4386, 'Sepples', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4387, 'Cee plus plus', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4388, 'C++ program', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4389, 'C++ (Programming Language)', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4390, 'C+++', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4391, 'C++ syntax', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4392, 'ANSI C++', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4393, 'ISO C++', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4394, 'C++ (programming language)', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4395, 'C++ 2.0', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4396, 'C++ language', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4397, 'Cee Plus Plus', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4398, 'C Plus Plus programming language', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4399, 'Core language', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4400, 'ISO C++ programming language', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4401, 'Cplusplus', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4402, 'C++ programming language', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4403, 'C++98', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4404, 'ISO/IEC 14882:2014', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4405, '++C', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4406, 'CPlusPlus', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4407, 'ISO/IEC 14882:2015', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4408, 'C-plus-plus programming language', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4409, 'C-plus-plus', 9, 305, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4410, 'C Plus Plus', 9, 305, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4411, 'Microsoft C', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4412, 'Visual C++ .NET 2003', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4413, 'Embedded Visual C++', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4414, 'Visual C++ 2002', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4415, 'Visual C++ 5.0', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4416, 'Visual C++ 2010', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4417, 'Visual C++ .NET 2002', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4418, 'Visual C++ 2003', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4419, 'Vc++', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4420, 'MSVC90', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4421, 'Visual C++', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4422, 'MSVC 2005', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4423, 'Embedded visual c plus plus', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4424, 'Visual C++ 6.0', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4425, 'Visual C++ 2.0', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4426, 'Visual C++ 2008', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4427, 'Visual C plus plus', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4428, 'Visual C Plus Plus', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4429, 'MSVC80', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4430, 'Visual C++ 4.0', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4431, 'Visual C++ 2012', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4432, 'Visual C++ 4.2', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4433, 'VisualC++', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4434, 'MSVC110', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4435, 'VC++', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4436, 'MSVC120', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4437, 'Microsoft C compiler', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4438, 'MSVC 2010', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4439, 'Microsoft Visual C plus plus', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4440, 'MSVC100', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4441, 'MSVC71', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4442, 'Vc9', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4443, 'MSVC 2013', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4444, 'Visual C++ 1.0', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4445, 'MSVC 2003', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4446, 'Msvc', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4447, 'Visual C++ 2013', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4448, 'Microsoft Visual C Plus Plus', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4449, 'Visual C++ 2005', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4450, 'MSVC 2002', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4451, 'MSVC 2008', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4452, 'MSVC 2012', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4453, 'Visual c', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4454, 'MS Visual C++', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4455, 'Vc6', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4456, 'MSVC', 9, 306, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4457, 'CSS 3', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4458, 'Cascading Style Sheets', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4459, 'Cascading Stylesheets', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4460, 'Css1', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4461, 'Cascading Style Sheet', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4462, 'CSS stylesheet', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4463, 'CSS selector', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4464, 'CSS (internet)', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4465, 'Cascading style sheets', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4466, 'CSS1', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4467, 'Css 2.1', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4468, 'Aural Cascading Style Sheets', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4469, 'Css3', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4470, 'CSS 2', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4471, 'CSS2', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4472, 'CSs', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4473, 'CSS 1.0', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4474, 'Text/css', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4475, 'Css 2.0', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4476, 'CSS4', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4477, 'Cascading Style Sheets - CSS', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4478, 'Css 3', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4479, 'Css', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4480, 'Cascading style sheet', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4481, 'CSS 4', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4482, 'XML/XSL skin', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4483, 'CSS styles', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4484, 'CSS style sheets', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4485, 'Cascading Style Sheets 4', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4486, 'CSS styling', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4487, 'CSS 3.0', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4488, 'CSS style', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4489, 'CSS2.1', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4490, 'Cascading stylesheets', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4491, 'Css2', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4492, 'CSS3', 9, 307, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4493, 'Clipper programming language', 9, 308, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4494, 'CA clipper', 9, 308, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4495, 'Clipper prog', 9, 308, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4496, 'CA-Clipper', 9, 308, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4497, 'Clist', 9, 309, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4498, 'CoBoL', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4499, 'COBOL-85', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4500, 'COBOL 20XX', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4501, 'COBOL 85', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4502, 'ISO/IEC 1989', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4503, 'MF-COBOL', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4504, 'O-O COBOL', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4505, 'COBOL programming language', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4506, 'COBOL-74', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4507, 'COBOL 60', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4508, 'ISO 1989', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4509, 'COBOL 74', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4510, 'COBOL74', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4511, 'COBOL-68', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4512, 'OO COBOL', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4513, 'COBOL language', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4514, 'COBOL 1985', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4515, 'Common Ordinary Business-Oriented Language', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4516, 'COBOL 1968', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4517, 'COBOL 2014', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4518, 'Object-oriented COBOL', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4519, 'Common Business Oriented Language', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4520, 'COBOL (programming language)', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4521, 'X3J4', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4522, 'COBOL68', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4523, 'COBOL 1974', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4524, 'COBOL85', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4525, 'OO-COBOL', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4526, 'COBOL-60', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4527, 'COmmon Business-Oriented Language', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4528, 'COBOL 1960', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4529, 'COBOL 2002', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4530, 'RM/COBOL', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4531, 'COBOL 68', 9, 310, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4532, 'Common Business-Oriented Language', 9, 310, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4533, 'Cobol', 9, 310, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4534, 'CFML', 9, 311, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4535, 'Cfml', 9, 311, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4536, 'Data Language/1', 9, 312, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4537, 'IBM Data Language One (DL/1)', 9, 312, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4538, 'DL/I', 9, 312, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4539, 'DL/1', 9, 312, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4540, 'Borland Delphi 2006', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4541, 'Delphi rad', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4542, 'Delphi 2006', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4543, 'Delphi XE2', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4544, 'RAD Studio', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4545, 'Embarcadero RAD Studio', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4546, 'Delphi 2009', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4547, 'Delphi XE', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4548, 'CodeGear Delphi', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4549, 'Delphi (IDE)', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4550, 'Delphi XE4', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4551, 'Delphi XE3', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4552, 'Borland Delphi', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4553, 'Delphi code', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4554, 'Delphi 4', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4555, 'Embarcadero Delphi', 9, 313, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4556, 'Easytrieve', 9, 314, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4557, 'Expect', 9, 315, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4558, 'Xhtml11', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4559, 'Xhtml strict', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4560, 'XHTML 1.0', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4561, 'XHTML 1.1', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4562, 'Xhtml', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4563, 'Xht', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4564, 'Xhtml 2', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4565, 'EXtensible HyperText Markup Language', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4566, 'XHTML2', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4567, 'X(HTML)', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4568, 'XHTML 2.0', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4569, 'Extensible HyperText Markup Language', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4570, 'XHTML 2', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4571, 'Extensible Hypertext Markup Language', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4572, 'EXtensible Hypertext Markup Language', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4573, '(X)HTML', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4574, 'XML feed', 9, 317, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4575, 'XML feeds', 9, 317, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4576, 'Well-formed XML', 9, 317, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4577, 'Extended markup language', 9, 317, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4578, 'EXtensible Markup Language', 9, 317, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4579, 'Xml:lang', 9, 317, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4580, 'Xml parser', 9, 317, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4581, 'XML tag set', 9, 317, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4582, 'Web3S', 9, 317, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4583, 'Extensible markup language', 9, 317, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4584, 'Xml', 9, 317, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4585, 'Extended Markup Language', 9, 317, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4586, 'Dynamic XML', 9, 317, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4587, 'XML parser', 9, 317, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4588, 'Text/xml', 9, 317, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4589, 'Extensible Markup Language', 9, 317, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4590, 'Valid XML document', 9, 317, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4591, 'MS XML', 9, 318, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4592, 'Microsoft XML Core Services', 9, 318, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4593, 'Xsl', 9, 319, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4594, 'Extensible stylesheet language', 9, 319, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4595, 'EXtensible Stylesheet Language', 9, 319, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4596, 'XSL stylesheet', 9, 319, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4597, 'XSL stylesheets', 9, 319, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4598, 'Extensible Stylesheet Language', 9, 319, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4599, 'XML template engine', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4600, 'XSL Transformation', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4601, 'XSLT 2.0', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4602, 'Xslt', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4603, 'XSLT processor', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4604, 'XLST', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4605, 'XML template processor', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4606, 'XSL-T', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4607, 'XSL Transformations', 9, 320, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4608, 'Extensible Stylesheet Language Transformations', 9, 320, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4609, 'Focus (software)', 9, 321, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4610, 'Focus software', 9, 321, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4611, 'FORTRAN', 9, 322, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4612, 'Formula Translation', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4613, 'Fortran 77', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4614, 'FORTRAN II', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4615, 'Formula Translator', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4616, 'FORTRAN 66', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4617, 'FORTRAN programming language', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4618, 'Fortran (programming language)', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4619, 'Fortran 2018', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4620, 'Fortran IV', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4621, 'Fortran 2008', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4622, 'Format (Fortran 66)', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4623, 'Fortran 66', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4624, 'Fortran programming language', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4625, 'FORTRAN77', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4626, 'ECMA-9', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4627, 'Fortran language', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4628, 'FORTRAN IV', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4629, 'Fortran 95', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4630, 'F77', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4631, 'Fortran 2003', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4632, 'FORTRAN 77', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4633, 'Visual Fortran', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4634, 'Fortran 90', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4635, 'FORTRAN (programming language)', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4636, 'FORTRAN 86', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4637, 'Formula translation', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4638, 'F2003', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4639, 'Fort77', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4640, 'Fortran 5 (programming language)', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4641, 'F95', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4642, 'Fortran 8X', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4643, 'Fortran 2015', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4644, 'Fortran-66', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4645, 'FORTRAN I', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4646, 'Go (Programming language)', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4647, 'Gccgo', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4648, 'Go Programming Language', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4649, 'Google go', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4650, 'Go language', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4651, 'Golang', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4652, 'Go google', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4653, 'Go (language)', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4654, 'GoLang', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4655, 'Go lang', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4656, 'Go programming language', 9, 323, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4657, 'Google Go', 9, 323, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4658, 'Graphql', 9, 324, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4659, 'Groovy', 9, 325, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4660, 'Dynamic Hypertext Markup Language', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4661, 'HTML file', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4662, 'Hypertext markup language', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4663, 'HTML4', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4664, 'Basic HTML', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4665, 'HTM file', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4666, 'HTML 4.01', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4667, 'ISO/IEC HTML', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4668, 'Hyper text Markup Language', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4669, 'Hypertext Markup Language (HTML)', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4670, 'Hyper Text Markup Language', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4671, 'HTML2', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4672, 'HTML 4', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4673, 'HTML 3.2', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4674, 'HTML+', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4675, 'HLMT', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4676, 'ISO/IEC 15445', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4677, 'Hyper text markup language', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4678, 'Html comment', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4679, 'HTML code', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4680, 'HTML strict', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4681, 'HyperText Markup Language', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4682, 'HTML 4.0', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4683, 'Html', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4684, 'Html language', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4685, 'Html code', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4686, 'HTML File Format', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4687, 'HTML syntax', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4688, 'HTML 3', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4689, 'HMTL', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4690, 'Text/html', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4691, 'Html coding', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4692, 'HTML 2', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4693, 'HTML3', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4694, 'Html 4.01', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4695, 'Hypertext Markup Language', 9, 327, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4696, 'HLASM', 9, 328, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4697, 'IBM High-Level Assembler', 9, 328, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4698, 'IBM High Level Assembler (HLASM)', 9, 328, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4699, 'AS/400 Control Language', 9, 329, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4700, 'CL Programming', 9, 329, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4701, 'Control Language Programming', 9, 329, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4702, 'CL (OS/400 command interpreter)', 9, 329, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4703, 'AS/400 Command Language', 9, 329, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4704, 'IBM i Control Language', 9, 329, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4705, 'Informix 4GL/SQL', 9, 330, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4706, 'Informix-4GL', 9, 330, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4707, 'Java programming language', 9, 331, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4708, 'Javax', 9, 331, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4709, 'Java (software)', 9, 331, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4710, 'Java (Programming language)', 9, 331, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4711, 'Javalang', 9, 331, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4712, 'Java Programming', 9, 331, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4713, 'JPD (file format)', 9, 331, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4714, 'Java (programming)', 9, 331, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4715, 'Java (langage)', 9, 331, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4716, 'Java language', 9, 331, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4717, 'Java technology', 9, 331, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4718, 'Flow Java', 9, 331, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4719, 'Java (language)', 9, 331, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4720, 'Java programming', 9, 331, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4721, 'Java (Programming Language)', 9, 331, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4722, 'Java prog', 9, 331, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4723, 'Java code', 9, 331, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4724, 'Java computer language', 9, 331, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4725, 'Java Programing Languge', 9, 331, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4726, 'Xsl', 9, 332, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4727, 'Extensible stylesheet language', 9, 332, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4728, 'EXtensible Stylesheet Language', 9, 332, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4729, 'XSL stylesheet', 9, 332, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4730, 'XSL stylesheets', 9, 332, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4731, 'Extensible Stylesheet Language', 9, 332, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4732, 'JavaEE', 9, 333, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4733, 'Java EE', 9, 333, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4734, 'J2EE', 9, 333, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4735, 'Enterprise Java', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4736, 'Java enterprise', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4737, 'JSR 313', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4738, 'Java EE 5', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4739, 'Java Platform', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4740, 'Java Enterprise Edition', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4741, 'Java Enterprise Platform', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4742, 'JSR 58', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4743, 'Java 2 Platform', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4744, 'Java ee', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4745, 'J2EE 1.4', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4746, 'Jakarta Enterprise Edition', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4747, 'J2EE 1.3', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4748, 'Java 2 Enterprise Edition', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4749, 'J2EE 1.2', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4750, 'JSR 151', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4751, 'JSR 244', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4752, 'J2ee', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4753, 'J2SE', 9, 334, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4754, 'Java 2 Platform Standard Edition', 9, 334, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4755, 'Java SE', 9, 334, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4756, 'JSR 59', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4757, 'Javase', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4758, 'J2se', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4759, 'Java 2 Platform', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4760, 'Java 2 Standard Edition', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4761, 'Java Standard Edition', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4762, 'JavaSE', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4763, 'Java se', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4764, 'JSR 270', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4765, 'Java SE platform', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4766, 'JSR 176', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4767, 'JSR 152', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4768, 'JSP compiler', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4769, 'JSP container', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4770, 'Jave Page', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4771, 'Jakarta Server Pages compiler', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4772, 'Jave Server', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4773, 'Java server pages', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4774, 'Javaserver pages', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4775, 'Jsp2', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4776, 'JSP files', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4777, 'Java Server Page', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4778, 'Java Server Pages', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4779, 'JSP engine', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4780, 'JSPF', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4781, 'JSR 245', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4782, 'JavaServer Pages compiler', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4783, 'JavaServer Page', 9, 335, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4784, 'JavaServer Pages', 9, 335, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4785, 'Scriptlets', 9, 336, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4786, 'JavaScripts', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4787, 'Live-script', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4788, 'JavaScript programming language', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4789, 'Mocha (programming language)', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4790, 'JavaScript rollover', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4791, 'Live-Script', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4792, 'Javascript Console', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4793, 'Server side javascript', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4794, 'Live script', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4795, 'Javascript programming language', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4796, 'JavaScript Forums', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4797, 'JavaScript 1.6', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4798, 'Javascript', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4799, 'JavaScript language', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4800, 'Escript', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4801, 'JavaScript (programming language)', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4802, 'Client-side JavaScript', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4803, 'Javascript (programming language)', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4804, 'Vanilla JS', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4805, 'SSJS', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4806, 'Javascript 1.7', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4807, 'Java script', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4808, 'Java Script', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4809, 'JavaScript 1.7', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4810, 'DOM scripting', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4811, 'Vanilla JavaScript', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4812, 'Live Script', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4813, 'CSJS', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4814, 'Server-side JavaScript', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4815, 'Server-Side JavaScript', 9, 337, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4816, 'IBM JCL', 9, 338, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4817, 'Job Control Statements', 9, 338, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4818, 'Job management language', 9, 338, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4819, 'Job entry control language', 9, 338, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4820, 'JECL', 9, 338, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4821, 'Job control language', 9, 338, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4822, 'Jscript', 9, 340, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4823, 'Microsoft JScript', 9, 340, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4824, 'JS script', 9, 340, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4825, 'ActiveXObject', 9, 340, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4826, 'Managed JScript', 9, 340, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4827, 'Lisp computer language', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4828, 'Lisp language', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4829, 'Lisp atom', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4830, 'LISP (programming language)', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4831, 'LISP atom', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4832, 'Lisp (programming)', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4833, 'List Processing', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4834, 'Lisp (language)', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4835, 'MuLISP', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4836, 'LISP', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4837, 'LISP language', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4838, 'Lisp 1.5', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4839, 'LISP programming language', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4840, 'Lisp programming language', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4841, 'LISP 1.5', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4842, 'Lithp (programming language)', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4843, 'Lisp renaissance', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4844, 'LISP (programming)', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4845, 'NPL (Programming language)', 9, 342, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4846, 'NPL programming language', 9, 342, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4847, 'Obj-C', 9, 343, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4848, 'ObjC', 9, 343, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4849, 'Objc', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4850, 'Objective-C 2.0', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4851, 'Objective C++', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4852, 'Objective-C++', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4853, 'Objective C', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4854, 'Object C', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4855, 'Objective-C (programming language)', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4856, 'Obj-c', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4857, 'ObjC programming language', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4858, 'Objective c', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4859, 'C and Smalltalk', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4860, 'Objective-c', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4861, 'ObjectiveC', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4862, 'Obj C', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4863, 'Objective-C programming language', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4864, 'Obj C programming language', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4865, 'Objective C programming language', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4866, 'Objective C plus plus', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4867, 'Obj-C programming language', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4868, 'Smalltalk and C', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4869, 'Object-C', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4870, 'OpenEdge Advanced Business Language (ABL)', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4871, 'OpenEdge Database', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4872, 'OpenEdge ABL', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4873, 'OpenEdge Advance Business Language (ABL)', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4874, 'Progress RDBMS', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4875, 'Progress DBMS', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4876, 'Advanced Business Language', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4877, 'Progress (software)', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4878, 'Progress4GL', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4879, 'Webspeed', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4880, 'Progress 4GL', 9, 344, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4881, 'Pascal-SC', 9, 345, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4882, 'Pascal-P1', 9, 345, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4883, 'Pascal (language)', 9, 345, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4884, 'Pascal-P', 9, 345, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4885, 'Pascal programming language', 9, 345, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4886, 'PASCAL-XSC', 9, 345, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4887, 'Pascal-S', 9, 345, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4888, 'Pascal Programming Language', 9, 345, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4889, 'PASCAL-SC', 9, 345, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4890, 'PASCAL (Programming language)', 9, 345, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4891, 'Pascal-P2', 9, 345, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4892, 'Pascal-P3', 9, 345, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4893, 'Pascal-P system', 9, 345, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4894, 'Pascal-P System', 9, 345, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4895, 'Pascal-F', 9, 345, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4896, 'Pascal (command)', 9, 345, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4897, 'ISO/IEC 10206', 9, 345, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4898, 'Pascal-P5', 9, 345, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4899, 'Pascal language', 9, 345, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4900, 'Pascal-p2', 9, 345, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4901, 'Pascal 86', 9, 345, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4902, 'Pascal-P4', 9, 345, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4903, 'Pascal-XSC', 9, 345, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4904, 'Delphi (language)', 9, 346, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4905, 'Delphi programming language', 9, 346, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4906, 'Delphi (programming language)', 9, 346, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4907, 'Object-Oriented Pascal', 9, 346, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4908, 'Delphi language', 9, 346, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4909, 'Delphi (Computer Language)', 9, 346, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4910, 'Delphi programming', 9, 346, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4911, 'Perl 7', 9, 347, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4912, 'Perl (programming language)', 9, 347, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4913, 'Practical Extraction and Report Language', 9, 347, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4914, 'Perl interpreter', 9, 347, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4915, 'Vanilla Perl', 9, 347, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4916, 'Practical Extraction And Report Language', 9, 347, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4917, 'Ponie', 9, 347, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4918, 'Embedded Perl', 9, 347, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4919, 'Perl language', 9, 347, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4920, 'X-perl', 9, 347, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4921, 'Perl programming language', 9, 347, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4922, 'Swiss army chainsaw', 9, 347, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4923, 'IndigoPerl', 9, 347, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4924, 'Perl code', 9, 347, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4925, 'Swiss-army chainsaw', 9, 347, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4926, 'Perl5', 9, 347, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4927, 'PONIE', 9, 347, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4928, 'PERL', 9, 347, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4929, 'Perl 5', 9, 347, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4930, 'Perl programming', 9, 347, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4931, 'Perl (language)', 9, 347, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4932, 'PerlScript', 9, 348, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4933, 'Active Perl', 9, 348, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4934, 'Activeperl', 9, 348, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4935, 'Perlscript', 9, 348, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4936, 'Perl 7', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4937, 'Perl (programming language)', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4938, 'Practical Extraction and Report Language', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4939, 'Perl interpreter', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4940, 'Vanilla Perl', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4941, 'Practical Extraction And Report Language', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4942, 'Ponie', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4943, 'Embedded Perl', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4944, 'Perl language', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4945, 'X-perl', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4946, 'Perl programming language', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4947, 'Perl Golf', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4948, 'Swiss army chainsaw', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4949, 'IndigoPerl', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4950, 'Perl code', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4951, 'Swiss-army chainsaw', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4952, 'Perl5', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4953, 'PONIE', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4954, 'PERL', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4955, 'Perl 5', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4956, 'Perl programming', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4957, 'Perl (language)', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4958, 'Php language', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4959, 'Php (programming language)', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4960, 'Zend Engine 3', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4961, 'Php 5.3', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4962, 'PHP interpreter', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4963, 'PHP (programming language)', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4964, 'Php 4', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4965, 'PHP 5', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4966, 'PHPNG', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4967, 'PHP8', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4968, 'PHP Next Generation', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4969, 'PHP5-FPM', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4970, 'PHP5', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4971, 'PHP4', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4972, 'Php 5.4', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4973, 'Php 5.1', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4974, 'PHP-FPM', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4975, 'Php', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4976, 'PHTML', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4977, 'PHP/FI', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4978, 'Php-fpm', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4979, 'Php6', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4980, 'PHP 6', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4981, 'Php 5.0', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4982, 'PHP3', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4983, 'Php 6.0', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4984, 'Zephir (programming language)', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4985, 'Php1', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4986, 'PHP:Hypertext Preprocessor', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4987, 'Php 3', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4988, 'PHP7', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4989, 'PHP programming', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4990, 'Phtml', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4991, 'Php 5.2', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4992, 'Php5', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4993, 'Php2', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4994, 'Phpng', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4995, 'PHP Hypertext Preprocessor (programming language)', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4996, 'PHP next generation', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4997, 'Php3', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4998, 'PHP6', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4999, 'PHP programing language', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5000, 'PHP 7', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5001, 'Php 1', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5002, 'Php 2', 9, 350, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5003, 'Hypertext Preprocessor', 9, 350, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5004, 'PHP programming language', 9, 350, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5005, 'PHP: Hypertext Preprocessor', 9, 350, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5006, 'PHP Hypertext Preprocessor', 9, 350, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5007, 'SL/1', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5008, 'PL/1', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5009, 'Pl/1', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5010, 'PL1 language', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5011, 'PL/I programming language', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5012, 'Visual PL/1', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5013, 'DEC PL/I', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5014, 'PL/I-80', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5015, 'PL/MP', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5016, 'Raincode PL/1', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5017, 'PL/I-86', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5018, 'PLI programming language', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5019, 'PL/I (programming language)', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5020, 'PL1 programming language', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5021, 'PL/MI', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5022, 'PLI-86', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5023, 'VAX PL/I', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5024, 'PL/Ⅰ', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5025, 'RainCode PL/1', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5026, 'PL/1 programming language', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5027, 'StepSqlite', 9, 352, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5028, 'PLSQL', 9, 352, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5029, 'P/SQL', 9, 352, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5030, 'PL SQL', 9, 352, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5031, 'Pro*C++', 9, 353, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5032, 'Pro C', 9, 353, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5033, 'Pro*C/C++', 9, 353, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5034, 'Python scripting language', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5035, 'Python program', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5036, 'PythonLanguage', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5037, 'Python computer language', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5038, 'Python code', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5039, 'Python3', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5040, 'Python (computing)', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5041, 'Python programming language', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5042, 'Python programming', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5043, 'Pythonistas', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5044, 'PEP8', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5045, 'Pyston', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5046, 'Python language', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5047, 'Python (lang)', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5048, 'Python2', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5049, 'Python3000', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5050, 'Python 3k', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5051, 'Python (language)', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5052, 'Coconut (programming language)', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5053, 'Python (software)', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5054, 'Pythonlang', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5055, 'Python prog', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5056, 'Python Programming', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5057, 'Python Programming Language', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5058, 'Python (scripting language)', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5059, 'Pythonista', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5060, 'Python (programming)', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5061, 'Python (Programming Language)', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5062, 'Python (computer language)', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5063, 'Python 3K', 9, 354, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5064, 'R project', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5065, 'R (programming)', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5066, 'R Shiny', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5067, 'GNU-S', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5068, 'RStat', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5069, 'R programming language', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5070, 'R Statistics', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5071, 'R-stat', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5072, 'R lang', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5073, 'RPro', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5074, 'R code', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5075, 'R-Project', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5076, 'R (computer language)', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5077, 'R Project', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5078, 'R programming', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5079, 'R (program)', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5080, 'R-project', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5081, 'R (software)', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5082, 'R-Stat', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5083, 'Rstat', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5084, 'RGL (software package)', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5085, 'R (language)', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5086, 'Rlang', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5087, 'ParallelR', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5088, 'R Open', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5089, 'GNU R', 9, 355, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5090, 'GNU S', 9, 355, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5091, 'R language', 9, 355, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5092, 'Quercus Personal REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5093, 'Personal Rexx', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5094, 'Personal REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5095, 'REstructured eXtended eXecutor', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5096, 'Enterprise REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5097, 'Rexx programming language', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5098, 'IBM REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5099, 'Restructured Extended Executor', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5100, 'REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5101, 'Kilowatt Portable REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5102, 'Pmrexx', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5103, 'Enterprise Alternatives REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5104, 'Kilowatt Portable Rexx', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5105, 'Restructured extended executor', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5106, 'Quercus Personal Rexx', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5107, 'REXX (programming language)', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5108, 'Portable REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5109, 'Portable Rexx', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5110, 'REXX programming language', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5111, 'Report Program Generator', 9, 357, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5112, 'Report program generator', 9, 357, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5113, 'RPGLE', 9, 357, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5114, 'RPG (programming language)', 9, 357, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5115, 'IBM RPG (programming language)', 9, 357, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5116, 'RPG IV', 9, 357, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5117, 'RPG programming language', 9, 357, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5118, 'Ruby (Programming Language)', 9, 358, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5119, 'Ruby Programming Language', 9, 358, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5120, 'Ruby programming', 9, 358, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5121, 'Ruby Enterprise Edition', 9, 358, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5122, 'Ruby language', 9, 358, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5123, 'Ruby (language)', 9, 358, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5124, 'Ruby (programming language', 9, 358, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5125, 'Ruby (lang)', 9, 358, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5126, 'Ruby lang', 9, 358, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5127, 'Ruby-gnome2', 9, 358, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5128, 'Ruby-language', 9, 358, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5129, 'Ruby (computing)', 9, 358, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5130, 'Ruby programming language', 9, 358, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5131, 'Rubylang', 9, 358, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5132, 'Ruby prog', 9, 358, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5133, 'SAS (Software)', 9, 360, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5134, 'SAS System', 9, 360, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5135, 'SAS (programming language)', 9, 360, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5136, 'SAS/STAT', 9, 360, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5137, 'Interactive Matrix Language', 9, 360, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5138, 'Statistical Analysis System', 9, 360, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5139, 'Scss', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5140, 'Sass CSS', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5141, 'Sass (CSS)', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5142, 'Sass (Stylesheet Language)', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5143, 'Sass (markup language)', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5144, 'SASS (language)', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5145, 'Sass (software)', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5146, 'Libsass', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5147, 'Scala programming language', 9, 362, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5148, 'Scala language', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5149, 'Scala.js (programming language)', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5150, 'ScalaNative', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5151, 'ScalaNative (programming language)', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5152, 'Scala-JS (Programming Language)', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5153, 'Scala-JS', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5154, 'Scala Native', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5155, 'ScalaJS (Programming Language)', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5156, 'Scala (programming language', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5157, 'ScalaJs (programming language)', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5158, 'Scala.js', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5159, 'Scala Native (programming language)', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5160, 'Smalltalk (programming language)', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5161, 'Smalltalk programming language', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5162, 'Smalltak', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5163, 'Smalltalk-80', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5164, 'Smalltalk Programming Language', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5165, 'Smalltalk-72', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5166, 'SmallTalk', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5167, 'Smalltalk/V', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5168, 'Visual Smalltalk', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5169, 'Smalltalk 80', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5170, 'SmallTalk programming language', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5171, 'Swift (Apple programming language)', 9, 364, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5172, 'Swift programming language', 9, 364, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5173, 'Swift language', 9, 364, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5174, 'Apple Swift', 9, 364, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5175, 'SwiftNIO', 9, 364, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5176, 'Swiftlang', 9, 364, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5177, 'Tool Command Language', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5178, 'Safe-Tcl', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5179, 'Tcl (computer language)', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5180, 'Object-oriented programming in Tcl', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5181, 'Tcl (programming language)', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5182, 'Tcl programming language', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5183, 'Tcl/tk', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5184, 'TclTk', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5185, 'Tsql', 9, 366, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5186, 'Transact SQL', 9, 366, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5187, 'TSQL', 9, 366, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5188, 'T-sql', 9, 366, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5189, 'T-SQL', 9, 366, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5190, 'Microsoft TypeScript', 9, 367, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5191, 'VB.NET', 9, 368, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5192, 'Microsoft Visual Basic.NET', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5193, 'VB.Net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5194, 'VB.net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5195, 'Microsoft Visual Basic 2008 Express', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5196, 'VB 2005', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5197, 'VBx', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5198, 'Vb dot net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5199, 'Visual Basic 2005', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5200, 'Visual Basic .Net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5201, 'Visual BASIC .net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5202, 'Visual Basic.NET', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5203, 'Vb.net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5204, 'Visual Basic (.NET Version)', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5205, 'Visual Basic .NET 2003', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5206, 'VB .NET', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5207, 'Visual basic .net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5208, 'Visual Basic.net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5209, 'Visual Basic.Net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5210, 'Microsoft Visual Basic .NET', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5211, 'Visual Basic .net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5212, 'Vbscript', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5213, 'VB Script', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5214, 'VBS Script', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5215, 'VBScript (programming language)', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5216, 'VBSCRIPT', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5217, 'VB script', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5218, 'Visual Basic Scripting', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5219, 'VBscript', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5220, 'Visual Basic Script Edition', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5221, 'Visual Basic Scripting Edition', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5222, 'VBSScript', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5223, 'Visual Basic Script', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5224, 'VbScript', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5225, 'VBScript programming language', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5226, 'Visual Basic 6', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5227, 'Visual basic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5228, 'Microsoft Visual Basic 5.0', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5229, 'Visual basic 6', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5230, 'Microsoft Visual Basic 6.0', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5231, 'Vbasic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5232, 'Microsoft Visual Basic 6', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5233, 'Visual Basic 6.0', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5234, 'VB4', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5235, 'VB6', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5236, 'Classic Visual Basic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5237, 'Microsoft Visual Basic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5238, 'Hummingbird Basic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5239, 'MSVB', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5240, 'VBP', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5241, 'VB3', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5242, 'Visual Basic 6 Portable', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5243, 'Visual Basic programming language', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5244, 'Microsoft Visual BASIC', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5245, 'VBLang', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5246, 'Visual Basic Control', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5247, 'VisualBasic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5248, 'VBDOS 1.0', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5249, 'Virtual Basic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5250, 'Visual BASIC', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5251, 'Visual Basic Classic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5252, 'Visual Basic 5', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5253, 'Microsoft visual basic for applications', 9, 371, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5254, 'Visual Basic for Applications programming language', 9, 371, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5255, 'Visual basic for applications', 9, 371, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5256, 'Visual Foxpro', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5257, 'Visual Fox pro', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5258, 'Microsoft Visual FoxPro', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5259, 'Microsoft Visual Fox pro', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5260, 'Microsoft Visual Foxpro', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5261, 'Visual FoxPro programming language', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5262, 'Visual Fox Pro', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5263, 'Microsoft Visual Fox Pro', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5264, 'VXML', 9, 373, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5265, 'Voice XML', 9, 373, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5266, 'Voicexml', 9, 373, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5267, 'Xbase++', 9, 374, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5268, 'XBase plus plus', 9, 374, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5269, 'Clucene', 12, 375, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5270, 'KinoSearch', 12, 375, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5271, 'Kinosearch', 12, 375, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5272, 'Solr/Lucene', 12, 375, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5273, 'Lucene', 12, 375, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5274, 'Apache Xerces', 12, 376, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5275, 'Bootstarpping', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5276, 'Boot strap', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5277, 'Bootstrapped', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5278, 'Bootstrap support', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5279, 'Bootstrapping (computing)', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5280, 'Bootstrapper', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5281, 'Boot-strap', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5282, 'Bootstrap (word origin)', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5283, 'Java|Apache Camel', 12, 378, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5284, 'Java|Apache Commons BeanUtils', 12, 379, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5285, 'PDFBox', 12, 380, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5286, 'Velocity apache', 12, 381, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5287, 'Velocity (software)', 12, 381, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5288, 'Jakarta Velocity', 12, 381, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5289, 'Java|EclipseLink', 12, 382, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5290, 'Enterprise JavaBeans', 12, 383, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5291, 'EJB', 12, 383, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5292, 'Enterprise Java Beans', 12, 383, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5293, 'Enterprise Beans', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5294, 'Enterprise beans', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5295, 'Enterprise JavaBean', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5296, 'Enterprise Bean', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5297, 'SLSB', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5298, 'Enterprise bean', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5299, 'SFSB', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5300, 'Jakarta Enterprise Bean', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5301, 'Bean-Managed Persistence', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5302, 'Enterprise Java Bean', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5303, 'Java Enterprise Bean', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5304, 'EJB Container', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5305, 'Jakarta Enterprise beans', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5306, 'Jakarta Enterprise bean', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5307, 'JSR 153', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5308, 'JSR 19', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5309, 'EJB container', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5310, 'Ejb', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5311, 'JSR 220', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5312, 'Container-Managed Persistence', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5313, 'Message-driven EJB', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5314, 'JSNI', 12, 385, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5315, 'Hibernate Query Language', 12, 386, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5316, 'Hibernate (Java)', 12, 386, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5317, 'Hibernate OGM', 12, 386, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5318, 'Hibernate (software)', 12, 386, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5319, 'Hibernet', 12, 386, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5320, 'Hibernate Core', 12, 386, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5321, 'Hibernate (java)', 12, 386, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5322, 'Java 2 SDK', 12, 388, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5323, 'JDK', 12, 388, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5324, 'Java SDK', 12, 388, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5325, 'J2SDK', 12, 388, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5326, 'Java 2 Software Development Kit', 12, 388, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5327, 'JDK 1.2', 12, 388, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5328, 'Java Development Toolkit', 12, 388, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5329, 'Java jdk', 12, 388, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5330, 'JSR 914', 12, 389, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5331, 'Java messaging service', 12, 389, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5332, 'Java Message Service', 12, 389, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5333, 'JNLP', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5334, 'Web Start', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5335, 'Java webstart', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5336, 'Java Network Launching Protocol', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5337, 'JavaWS', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5338, 'Webstart', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5339, 'JSR 56', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5340, 'Javaws', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5341, 'Java web start', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5342, 'Java Webstart', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5343, 'JSR 127', 12, 391, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5344, 'JSR 252', 12, 391, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5345, 'Java Server Faces', 12, 391, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5346, 'Javaserver faces', 12, 391, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5347, 'JavaServer Faces (JSF)', 12, 391, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5348, 'JavaServer Faces', 12, 391, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5349, 'Jdbc', 12, 392, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5350, 'Java Data Base Connectivity', 12, 392, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5351, 'JDBC', 12, 392, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5352, 'JRuby programming language', 12, 393, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5353, 'JRuby language', 12, 393, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5354, 'Jruby', 12, 393, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5355, 'Apache Log4net', 12, 394, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5356, 'Log4javascript', 12, 394, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5357, 'Apache log4net', 12, 394, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5358, 'Log4js', 12, 394, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5359, 'Log4Net', 12, 394, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5360, 'Log4c', 12, 394, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5361, 'Log4J', 12, 394, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5362, 'Quartz job scheduler', 12, 395, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5363, 'JRMI', 12, 396, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5364, 'Remote Method Invokation', 12, 396, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5365, 'Java Remote Method Invocation', 12, 396, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5366, 'Rmic', 12, 396, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5367, 'Java RMI', 12, 396, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5368, 'Free-source', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5369, 'Free source', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5370, 'Four Freedoms (software)', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5371, 'Free (software)', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5372, 'Software Libre', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5373, 'Libre software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5374, 'Free-source software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5375, 'Free-libre software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5376, 'Four Freedoms (Free software)', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5377, 'Libre Software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5378, 'Freedom-ware', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5379, '4 software freedoms', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5380, 'Free sofware', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5381, 'Free-software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5382, 'FSF''s "free software" ideal', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5383, 'Free and Open Source Software (FOSS) for development', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5384, 'Freedomware', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5385, 'Free computer software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5386, 'Freed Software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5387, 'Freedom software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5388, 'Software libre', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5389, 'Free software development', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5390, 'Four Freedoms (free software)', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5391, 'Spring (Java)', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5392, 'Spring framework', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5393, 'Spring MVC', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5394, 'Spring beans', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5395, 'Spring (framework)', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5396, 'Spring Boot', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5397, 'Java Spring', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5398, 'Spring Framework (Java)', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5399, 'Springframework', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5400, 'Spring IOC Framework', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5401, 'Spring AOP framework', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5402, 'Spring AOP', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5403, 'The Spring Framework', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5404, 'Java|Spring|Spring Boot', 12, 399, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5405, 'Jakarta Struts', 12, 402, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5406, 'Struts Studio', 12, 402, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5407, 'Struts Framework', 12, 402, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5408, 'Java Struts', 12, 402, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5409, 'Swing (java)', 12, 403, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5410, 'Swing java', 12, 403, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5411, 'Java Swing', 12, 403, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5412, 'Javax.swing', 12, 403, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5413, 'IT Mill Toolkit', 12, 404, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5414, 'Ajax framework', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5415, 'Ajax programming', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5416, 'CAJAX', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5417, 'Ajax scripts', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5418, 'AJAX (programming)', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5419, 'AJAXy', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5420, 'AJAX framework', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5421, 'Ajax desktops', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5422, 'Asynchronous Javascript and XML', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5423, 'Ajax language', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5424, 'Ajax (software)', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5425, 'Asynchronous JavaScript and JSON', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5426, 'Asynchronous JavaScript and XML', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5427, 'AJAX Framework', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5428, 'AJAJ', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5429, 'AJAX', 12, 405, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5430, 'Angular JS', 12, 406, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5431, 'Angular.js', 12, 406, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5432, 'MVW framework', 12, 406, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5433, 'Scope (AngularJS)', 12, 406, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5434, 'Angularjs', 12, 406, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5435, 'Expressjs', 12, 408, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5436, 'Ext Core', 12, 409, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5437, 'Extjs', 12, 409, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5438, 'Ext (JavaScript library)', 12, 409, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5439, 'ExtJS', 12, 409, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5440, 'Ext (javascript library)', 12, 409, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5441, 'CssQuery', 12, 411, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5442, 'Jquery Library', 12, 411, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5443, 'Jquery', 12, 411, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5444, 'JQueryUI', 12, 412, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5445, 'React.js', 12, 413, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5446, 'ReactJS', 12, 413, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5447, 'Reactjs', 12, 413, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5448, 'Facebook React', 12, 413, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5449, 'React (web framework)', 12, 413, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5450, 'React JS', 12, 413, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5451, 'React Fiber', 12, 413, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5452, 'JavaScript|script.aculo.us', 12, 414, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5453, 'Android operating system', 6, 418, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5454, 'Android OS', 6, 418, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5455, 'Google Android', 6, 418, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5456, 'Android (software stack)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5457, 'Android system', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5458, 'Android (phone)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5459, 'Android (Google)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5460, 'Android phone operating system', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5461, 'Google Android Linux OS', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5462, 'Android (Operating System)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5463, 'Android (mobile device platform)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5464, 'Android Apps', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5465, 'Android Phone', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5466, 'Android cell phone', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5467, 'Honeycomb', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5468, 'Android software', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5469, 'Android google', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5470, 'Android 3.0 Honeycomb', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5471, 'Android platform', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5472, 'Android cellphone', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5473, 'Android device', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5474, 'Android mobile phone', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5475, 'Mobile Android', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5476, 'Android 3.0', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5477, 'Android', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5478, 'Android phone', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5479, 'TaintDroid', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5480, 'Google android', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5481, 'Android (system)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5482, 'Android Open Source Project', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5483, 'Android app', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5484, 'Os android', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5485, 'Android (software)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5486, 'Android application', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5487, 'Android (os)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5488, 'Android.os', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5489, 'Android (OS)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5490, 'Android Device Manager', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5491, 'Android (platform)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5492, 'Android client', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5493, 'IDroid', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5494, 'Android (company)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5495, 'Android-powered device', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5496, 'Android (mobile phone platform)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5497, 'Android Operating System', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5498, 'Android devices', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5499, 'Google''s Android', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5500, 'Android mobile', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5501, 'Android fork', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5502, 'Android (google)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5503, 'Surfaceflinger', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5504, 'Android os', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5505, 'Android mobile phone platform', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5506, 'Google Android One', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5507, 'B.E.O.S', 6, 419, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5508, 'Be OS', 6, 419, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5509, 'Internetwork Operating System', 6, 420, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5510, 'IOS (Cisco)', 6, 420, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5511, 'CIOSS', 6, 420, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5512, 'Interface Descriptor Block', 6, 420, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5513, 'Google Dash', 6, 421, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5514, 'ECMA Dart', 6, 421, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5515, 'Dart (language)', 6, 421, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5516, 'Dart programming language', 6, 421, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5517, 'Dart language', 6, 421, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5518, 'DartLang', 6, 421, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5519, 'ECMA-408', 6, 421, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5520, 'Google Dart', 6, 421, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5521, 'Fabos', 6, 422, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5522, 'The GNU operating system', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5523, 'GNU/DOS', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5524, 'GNU System', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5525, 'GNU Operating System', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5526, 'The GNU system', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5527, 'GNU OS', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5528, 'GNU system', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5529, 'GNU''s Not Unix', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5530, 'GNU operating system', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5531, 'I5os', 6, 424, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5532, 'IBM OS/400', 6, 424, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5533, 'IBMi', 6, 424, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5534, 'IBM i5/OS', 6, 424, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5535, 'I on Power', 6, 424, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5536, 'IBM i on Power', 6, 424, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5537, 'OS/400', 6, 424, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5538, 'I5/OS', 6, 424, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5539, 'IBM I5/OS', 6, 424, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5540, 'I-OS', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5541, 'OS X iPhone', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5542, 'IPhoneOS', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5543, 'IPhone Operating System', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5544, 'IPhone os', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5545, 'Mac OS X (iPhone)', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5546, 'IOS Apple', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5547, 'Ipod touch os', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5548, 'IPod Touch OS', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5549, 'IPhone OS', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5550, 'Apple iPhone OS', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5551, 'OS X Mobile', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5552, 'IOS (Apple Inc.)', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5553, 'Multitasking (iOS)', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5554, 'Apple iOS', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5555, 'Iphone os', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5556, 'IPhone operating system', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5557, 'AppleiOS', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5558, 'IOS (Apple)', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5559, 'IOS (operating system)', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5560, 'Ios (Apple)', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5561, 'Linux (operating system)', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5562, 'LINUX', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5563, 'Linuces', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5564, 'GNU/Linux/X11', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5565, 'LinuX', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5566, 'Linux-based GNU system', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5567, 'Gnu/Linux', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5568, 'Linux+GNU', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5569, 'Linux desktop', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5570, 'Lienucks', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5571, 'GNU-Linux', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5572, 'Linux/GNU', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5573, 'Desktop GNU/Linux', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5574, 'Desktop Linux', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5575, 'Linux Powered System', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5576, 'Linux/gnu', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5577, 'Linux server', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5578, 'GNU-linux', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5579, 'GNU/Linux', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5580, 'Linux box', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5581, 'GNULinux', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5582, 'Lynux', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5583, 'Linux OS', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5584, 'Linices', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5585, 'Linux-based GNU systems', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5586, 'GNU/Linux/X', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5587, 'Desktop linux', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5588, 'GNU–Linux', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5589, 'Gnu/linux', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5590, 'Linux on the desktop', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5591, 'GNU+Linux', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5592, 'GNU Linux', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5593, 'Linux (GNU/Linux)', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5594, 'Lineux', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5595, 'Linux/X11', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5596, 'Linix', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5597, 'Linux operating system', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5598, 'Linux/X', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5599, 'BlackRhino GNU/Linux', 6, 426, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5600, 'Centos', 6, 427, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5601, 'CentOs', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5602, 'Centos7', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5603, 'Centos Stream', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5604, 'CentOS Linux', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5605, 'Community Enterprise Operating System', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5606, 'CAOS Linux', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5607, 'Cent OS', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5608, 'CentOS Stream', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5609, 'CheckPoint INSPECT Code', 6, 428, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5610, 'VPN-1', 6, 428, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5611, 'FireWall-1', 6, 428, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5612, 'VPN-1 Power', 6, 428, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5613, 'FireWall-1/VPN-1', 6, 428, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5614, 'Debian Linux', 6, 429, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5615, 'Debian GNU/Linux', 6, 429, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5616, 'Debian Sid', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5617, 'Debian GNU Hurd', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5618, 'Debian Unstable', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5619, 'Debian GNU/kFreeBSD', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5620, 'Debian/sid', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5621, 'Debian GNU/FreeBSD', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5622, 'Debian Live', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5623, 'Embedded Debian', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5624, 'Debian Project', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5625, 'Debian stable', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5626, 'Kfreebsd-i386', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5627, 'Debian Multimedia Project', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5628, 'Debian repository', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5629, 'Debian GNU', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5630, 'Sid (Debian)', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5631, 'Debian LTS', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5632, 'GNU/Debian', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5633, 'Kfreebsd-amd64', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5634, 'Debian gnu/kfreebsd', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5635, 'Debian OS', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5636, 'Embedian', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5637, 'KFreeBSD', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5638, 'Debian Manifesto', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5639, 'Debian Hurd', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5640, 'Debian GNU/Hurd', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5641, 'Debian (operating system)', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5642, 'JunOS', 6, 430, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5643, 'Juniper JUNOS', 6, 430, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5644, 'Juniper OS', 6, 430, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5645, 'JUNOS', 6, 430, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5646, 'Juniper Junos', 6, 430, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5647, 'Junos SDK', 6, 430, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5648, 'Junos', 6, 430, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5649, 'OpenSuSE', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5650, 'SUSE Linux Professional', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5651, 'OpenSUSE 11', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5652, 'OpenSUSE Linux', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5653, 'Factory (openSUSE)', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5654, 'Factory (software)', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5655, 'OpenSuSe', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5656, 'Tumbleweed (software)', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5657, 'OpenSUSE Tumbleweed', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5658, 'Open SUSE', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5659, 'OpenSuse', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5660, 'Tumbleweed (operating system)', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5661, 'OPENSUSE', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5662, 'SUSEWatcher', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5663, 'Opensuse', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5664, 'Unbreakable Enterprise Kernel', 6, 432, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5665, 'Oracle Unbreakable Enterprise Kernel', 6, 432, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5666, 'Unbreakable Linux', 6, 432, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5667, 'Oracle linux', 6, 432, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5668, 'Unbreakable Linux Network', 6, 432, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5669, 'Red Hat Compatible Kernel', 6, 432, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5670, 'Oracle Unbreakable Linux', 6, 432, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5671, 'Oracle Enterprise Linux', 6, 432, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5672, 'Photon OS', 6, 433, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5673, 'RHEL', 6, 434, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5674, 'Red Hat Global Desktop', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5675, 'RedHat enterprise linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5676, 'Red hat enterprise linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5677, 'RedHat Enterprise Linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5678, 'Redhat Enterprise Linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5679, 'Redhat enterprise linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5680, 'Rhel', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5681, 'Red hat enterprise', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5682, 'Red Hat enterprise linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5683, 'Rhel4', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5684, 'Red Hat Global Desktop Linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5685, 'Red Hat Enterprise Linux (RHEL)', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5686, 'Red hat Enterprise Linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5687, 'Red Hat Enterprise Linux 3', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5688, 'Enterprise Linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5689, 'RedPatch', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5690, 'SUSE LINUX Enterprise Server', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5691, 'SuSE SLES', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5692, 'SLES (software)', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5693, 'SuSE Linux Enterprise Server', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5694, 'SUSE Linux Enterprise', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5695, 'SLES (operating system)', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5696, 'SuSE Enterprise Linux', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5697, 'SUSE SLES', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5698, 'Ubunt', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5699, 'Ubuntu (GNU/Linux distribution)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5700, 'Ubuntu Server Edition', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5701, 'Ubuntu Light', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5702, 'Ubuntu (linux)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5703, 'Ubuntu (Operating system)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5704, 'Ubuntulinux', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5705, 'Uboonto Linux', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5706, 'Easyubuntu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5707, 'Ubuntu (os)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5708, 'Ubuntu LTS', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5709, 'Linux ubuntu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5710, 'Ubuntu (software)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5711, 'Ubuntu desktop', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5712, 'Ubuntu (OS)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5713, 'Ubuntu (Operating System)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5714, 'Ubuntu operating system', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5715, 'Ubufox', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5716, 'Ubunto Linux', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5717, 'Ubuntu (O.S.)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5718, 'Ubuntu Business Desktop Remix', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5719, 'Ubuntu GNU/Linux', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5720, 'Ubuntu os', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5721, 'Ubuntu Server', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5722, 'Ubuntu (distribution)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5723, 'Ubuntu (operating system)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5724, 'Ubanto', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5725, 'Unbuntu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5726, 'Uboonto', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5727, 'Ubuntu Linux (operating system based on Debian)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5728, 'EasyUbuntu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5729, 'Ubuntu Linux os', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5730, 'Portable Ubuntu for Windows', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5731, 'Ubuntu distro', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5732, 'Ubuntu server', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5733, 'Ubuntu distribution', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5734, 'Ubuntu linux os', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5735, 'Ubuntu (Linux)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5736, 'Ubuntu (Linux distribution)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5737, 'Ubutnu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5738, 'Ubunut', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5739, 'Ubuntu Desktop', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5740, 'Ubuntu Linux Server Edition', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5741, 'Ubuntu Universe', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5742, 'Unbutu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5743, 'Ubuntu Foundation', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5744, 'Linux Ubuntu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5745, 'Universe ubuntu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5746, 'Ubuntu operatng system', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5747, 'Ubuntu (linux distribution)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5748, 'Ubununtu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5749, 'Ubuntu Linux distribution', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5750, 'Easy Ubuntu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5751, 'Ubunto', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5752, 'Ubuntu Enterprise Cloud', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5753, 'ShipIt', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5754, 'Ubuntu linux', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5755, 'Ubuntu Linux operating system', 6, 436, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5756, 'Ubuntu Linux', 6, 436, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5757, 'Ubuntu OS', 6, 436, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5758, 'Ubuntu Project', 6, 436, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5759, 'Ubuntu GNU/linux', 6, 436, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5760, 'Linux on zSeries', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5761, 'LinuxONE', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5762, 'ZLinux', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5763, 'Linux for zSeries', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5764, 'Linux on System z9', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5765, 'Linux on mainframe', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5766, 'S390x', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5767, 'Linux/390', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5768, 'IBM LinuxONE', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5769, 'Linux for mainframe', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5770, 'Linux on z Systems', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5771, 'Linux on System z', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5772, 'Linux on Z Systems', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5773, 'Linux for mainframes', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5774, 'Linux on zseries', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5775, 'Linux on mainframes', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5776, 'Mainframe Linux', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5777, 'Linux on z', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5778, 'Z/Linux', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5779, 'Apple OS X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5780, 'Marklar project', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5781, 'OS/X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5782, 'Max os x', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5783, 'Mac OS X 10', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5784, 'OS-X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5785, 'Mac os 10', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5786, 'Mac osx', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5787, 'MacOS X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5788, 'Macintosh OSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5789, 'Macos', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5790, 'Mac OSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5791, 'MacOSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5792, 'Macosx', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5793, 'Apple Macintosh OSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5794, 'Mac OS/OS X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5795, 'Macintosh OS-X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5796, 'Os x', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5797, 'Mac OS-X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5798, 'MacOS/X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5799, 'Mac Os X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5800, 'MAC OS X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5801, 'MacintoshOSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5802, 'Apple Macintosh OS X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5803, 'Os ten', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5804, 'Mac OS/X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5805, 'Osx', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5806, 'IBSD', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5807, 'Apple macOS', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5808, 'OSx', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5809, 'Mac os ten', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5810, 'OS X (operating system)', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5811, 'MacOs', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5812, 'Apple Mac OSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5813, 'Macos x', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5814, 'MAC OSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5815, 'Apple OSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5816, 'Apple Mac OS X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5817, 'Macintosh OS X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5818, 'MOSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5819, 'Mac os x', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5820, 'Apple MacOSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5821, 'MacOS 10', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5822, 'Apple os x', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5823, 'OSX', 6, 438, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5824, 'Mac OS 10', 6, 438, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5825, 'Mac OS X', 6, 438, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5826, 'OS X', 6, 438, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5827, 'MSP (operating system)', 6, 439, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5828, 'MVS/ESA', 6, 439, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5829, 'OS/MVS', 6, 439, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5830, 'MVS Operating System', 6, 439, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5831, 'Data Facility Product', 6, 439, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5832, 'MVS/XA', 6, 439, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5833, 'MVS/370', 6, 439, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5834, 'Fujitsu MSP', 6, 439, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5835, 'OS/VS2 (MVS)', 6, 439, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5836, 'Hitachi VOS3', 6, 439, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5837, 'MVS/SP', 6, 439, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5838, 'Multiple Virtual Storage', 6, 439, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5839, 'MVS|OS/390', 6, 440, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5840, 'ZOS', 6, 441, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5841, 'IBM z/OS', 6, 441, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5842, 'Virtual Memory System', 6, 442, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5843, 'VAX/VMS', 6, 442, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5844, 'Open vms', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5845, 'VMS operating system', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5846, 'OpenVMS 7.2', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5847, 'DECwindows', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5848, 'VMS (operating system)', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5849, 'VAX-VMS', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5850, 'DEC VMS', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5851, 'DECWindows', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5852, 'Vax/vms', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5853, 'Open VMS', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5854, 'Openvms', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5855, 'OS/2 Warp', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5856, 'Win-OS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5857, 'DOS/286 (OS/2)', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5858, 'NEWDOS (OS/2)', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5859, 'Microsoft Betriebssystem/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5860, 'Os2 warp', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5861, 'OS/2 Warp 3', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5862, 'OS/2 Warp 3J', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5863, 'Warp 3', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5864, 'IBM BS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5865, 'BS/2 1.1', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5866, 'Os2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5867, 'OS/2 1.21', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5868, 'BS/2 1.3', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5869, 'Advanced DOS', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5870, 'OS2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5871, 'BS/2 1.0', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5872, 'WINOS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5873, 'OS/2 Warp 4.5', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5874, 'IBM OS2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5875, 'OS/2 Special Edition for Windows', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5876, 'OS/2 2.1', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5877, 'OS/2 Warp 4', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5878, 'OS/2 1.3', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5879, 'WinOS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5880, 'OS/2 1.0', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5881, 'Warp Server', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5882, 'Microsoft OS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5883, 'WIN-OS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5884, 'OS/2 Warp Connect', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5885, 'Microsoft Operating System/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5886, 'IBM OS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5887, 'OS/2 for Windows', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5888, 'OS/2 2.0', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5889, 'IBM Operating System/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5890, 'OS 2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5891, 'Betriebssystem/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5892, 'DOS 5 (OS/2)', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5893, 'Microsoft BS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5894, 'IBM Betriebssystem/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5895, 'DOS 286 (OS/2)', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5896, 'OS/2 API', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5897, 'OS/2 1.1', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5898, 'BS/2 1.2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5899, 'Os/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5900, 'BS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5901, 'CP/DOS', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5902, 'ADOS (OS/2)', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5903, 'OS/2 1.2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5904, '0S/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5905, 'Operating System/2', 6, 443, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5906, 'Unixes', 6, 444, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5907, 'UNIX operating system', 6, 444, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5908, 'UNIX systems', 6, 444, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5909, 'Unix operating system', 6, 444, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5910, 'Truly Unix', 6, 444, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5911, 'UNIX system', 6, 444, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5912, 'Unix box', 6, 444, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5913, 'Unix system', 6, 444, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5914, 'Traditional Unix', 6, 444, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5915, 'UNIX', 6, 444, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5916, 'Advanced IBM UNIX', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5917, 'IBM-RT/AIX', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5918, 'IBM AIX (operating system)', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5919, 'Object Data Manager', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5920, 'AIX (operating system)', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5921, 'Aix os', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5922, 'IBM System AIX', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5923, 'Ibm lum', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5924, 'AIX for Apple Network Server', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5925, 'IBM AIX/370', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5926, 'Advanced Interactive eXecutive', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5927, 'AIX/RT', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5928, 'AIX/370', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5929, 'AIXv3', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5930, 'IBM370/AIX', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5931, 'IBM AIX/PS2', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5932, 'VM/IX', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5933, 'IX/370', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5934, 'AIX for ANS', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5935, 'IBM AIX/RT', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5936, 'AIX Operating System', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5937, 'AIX operating system', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5938, 'AIX for Apple Network Servers', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5939, 'IBM AIX/390', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5940, 'AIX/PS2', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5941, 'AIX/390', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5942, 'AIX', 6, 445, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5943, 'BSD operating system', 6, 446, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5944, 'Berkeley software distribution', 6, 446, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5945, '4.4BSD-Lite', 6, 446, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5946, 'Vmunix', 6, 446, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5947, 'BSD Unices', 6, 446, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5948, 'HPBSD', 6, 446, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5949, '4.4BSD-Encumbered', 6, 446, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5950, 'Berkeley UNIX', 6, 446, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5951, 'Berkley Software Distribution', 6, 446, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5952, 'Net/1', 6, 446, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5953, 'Berkeley UNIX 4.3BSD', 6, 446, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5954, 'BSD-based', 6, 446, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5955, 'Bsdgames', 6, 446, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5956, 'Net/2', 6, 446, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5957, 'Bsd', 6, 446, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5958, '*BSD', 6, 446, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5959, 'BSD Unix', 6, 446, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5960, 'BSD (operating system)', 6, 446, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5961, 'BSD', 6, 446, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5962, 'BSD UNIX', 6, 446, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5963, 'Berkeley System Distribution', 6, 446, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5964, 'Berkeley Unix', 6, 446, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5965, 'TrustedBSD', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5966, 'Freebsd', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5967, 'FBSD', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5968, 'Free BSD', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5969, 'FreeBSD 8', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5970, 'NanoBSD', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5971, 'Linuxulator', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5972, 'FreeBSD Project', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5973, 'FREEBSD', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5974, 'FreeBSD kernel', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5975, 'FreeBSD 5.0', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5976, 'Free bsd', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5977, 'SUN OS', 6, 448, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5978, 'Sun os', 6, 448, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5979, 'SunOS Unix', 6, 448, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5980, 'Sunos', 6, 448, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5981, 'SunOS 4.1', 6, 448, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5982, 'Sun OS', 6, 448, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5983, 'HPUX', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5984, 'Hewlett Packard Unix', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5985, 'HP/UX', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5986, 'Hewlett-Packard UniX', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5987, 'Hewlett Packard-Unix', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5988, 'Hpux', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5989, 'Hewlett-Packard Unix', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5990, 'HP Unix', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5991, 'Hewlett-Packard UNIX', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5992, 'Hewlett Packard UniX', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5993, 'Hewlett Packard UNIX', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5994, 'HP UX', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5995, 'MS Windows', 6, 450, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5996, 'Windows', 6, 450, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5997, 'Apptimum', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5998, 'Windows Operating System', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5999, 'Windows OS', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6000, 'Windows 365', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6001, 'Windows the operating system', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6002, 'Windows (Operating System)', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6003, 'WINDOWS', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6004, 'Windows (OS)', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6005, 'Microsoft windows', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6006, 'MS-Windows', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6007, 'Windows operating system', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6008, 'Windows PC', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6009, 'Mswin', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6010, 'Microsoft windows os', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6011, 'MICROSOFT WINDOWS', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6012, 'Widnows', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6013, 'Windwos', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6014, 'Windows (operating system)', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6015, 'MSWindows', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6016, 'Alliance OS', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6017, 'Windows®', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6018, 'PC Windows', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6019, 'Ms windows', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6020, 'Windows os', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6021, 'MsWindows', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6022, 'Windows (Operating system)', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6023, '32-bit Windows', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6024, 'Microsoft windows operating system', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6025, 'Windows Microsoft', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6026, 'Freedows OS', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6027, 'MSWin', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6028, 'Windows computers', 6, 450, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6029, 'MS Windows', 6, 451, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6030, 'Windows', 6, 451, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6031, 'Apptimum', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6032, 'Windows Operating System', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6033, 'Windows OS', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6034, 'Windows 365', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6035, 'Windows the operating system', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6036, 'Windows (Operating System)', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6037, 'WINDOWS', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6038, 'Windows (OS)', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6039, 'Microsoft windows', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6040, 'MS-Windows', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6041, 'Windows operating system', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6042, 'Windows PC', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6043, 'Mswin', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6044, 'Microsoft windows os', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6045, 'MICROSOFT WINDOWS', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6046, 'Widnows', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6047, 'Windwos', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6048, 'Windows (operating system)', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6049, 'MSWindows', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6050, 'Alliance OS', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6051, 'Windows®', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6052, 'PC Windows', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6053, 'Ms windows', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6054, 'Windows os', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6055, 'MsWindows', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6056, 'Windows (Operating system)', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6057, '32-bit Windows', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6058, 'Microsoft windows operating system', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6059, 'Windows Microsoft', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6060, 'Freedows OS', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6061, 'MSWin', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6062, 'Windows computers', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6063, 'Windows Storage Server', 6, 452, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6064, 'Microsoft Windows Server', 6, 452, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6065, 'Windows Web Edition', 6, 452, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6066, 'Windows server', 6, 452, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6067, 'Windows Server 200x', 6, 452, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6068, 'Windows Server 2022', 6, 452, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6069, 'Microsoft Windows server', 6, 452, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6070, 'Fedora Rawhide', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6071, 'Linux fedora', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6072, 'Fedora (OS)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6073, 'Fedora AOS', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6074, 'Fedora Extras', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6075, 'Fedora (GNU/Linux distribution)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6076, 'Fedora Core Linux', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6077, 'Fedora Workstation', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6078, 'Fedora OS', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6079, 'Fedora (linux distribution)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6080, 'COPR (Fedora)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6081, 'Rawhide (operating system)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6082, 'Fedora linux', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6083, 'Fedora Robotics', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6084, 'Cool Other Package Repositories', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6085, 'Fedora Linux', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6086, 'Fedomatix', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6087, 'Fedora (Operating System)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6088, 'Rawhide (software)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6089, 'Eeedora', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6090, 'Fedora operating system', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6091, 'Fedora (software)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6092, 'Fedora Core', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6093, 'Fedora Cloud', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6094, 'Rawhide (computing)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6095, 'Fedora IoT', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6096, 'Fedora Linux Swap', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6097, 'Fedora (Linux)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6098, 'Fedora Modular Server', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6099, 'Fedora (Linux distribution)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6100, 'Fedora CoreOS', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6101, 'Fedora 10', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6102, 'Fedora Silverblue', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6103, 'Fedora Atomic Host', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6104, 'Fedora spin', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6105, 'Fedora Server', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6106, 'EPEL', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6107, 'Fedora LXQt', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6108, 'Fedora core', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6109, 'Linux|Amazon Linux', 6, 454, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6110, 'ATLAS Transformation Language', 5, 456, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6111, 'Microsoft Exchange Server|Veeam Explorer', 5, 464, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6112, 'Data Transformation Service', 5, 466, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6113, 'DTS package', 5, 466, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6114, 'DTS Package', 5, 466, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6115, 'Data transformation service', 5, 466, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6116, 'DTS Packages', 5, 466, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6117, 'DTS Tasks', 5, 466, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6118, 'OLAP Services', 5, 468, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6119, 'ADOMD.NET', 5, 468, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6120, 'SQL Server Analysis Services', 5, 468, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6121, 'SSIS package', 5, 470, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6122, 'SSMS', 5, 471, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6123, 'SSMSE', 5, 471, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6124, 'Management studio', 5, 471, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6125, 'SQL Reporting Services', 5, 472, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6126, 'Sql server reporting services', 5, 472, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6127, 'SQL Reporting Services', 5, 473, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6128, 'Sql server reporting services', 5, 473, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6129, 'Spatial Data Option', 5, 475, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6130, 'GeoRaster', 5, 475, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6131, 'Oracle Spatial', 5, 475, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6132, 'SQLPlus', 5, 478, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6133, 'Sqlplus', 5, 478, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6134, 'SQL*Plus', 5, 478, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6135, 'Run-time library', 7, 482, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6136, '.NET Framework|log4net', 7, 483, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6137, 'Windows Communications Foundation', 7, 485, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6138, 'Indigo Application Server', 7, 485, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6139, 'Windows communication foundation', 7, 485, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6140, 'Windows Communication Foundation (WCF)', 7, 485, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6141, 'Windows Communication Framework', 7, 485, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6142, 'Indigo (messaging system)', 7, 485, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6143, 'Microsoft Indigo', 7, 485, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6144, 'WF4', 7, 486, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6145, 'Workflow Foundation', 7, 486, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6146, 'Windows Overflow Foundation', 7, 486, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6147, 'Windows.Forms', 7, 487, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6148, 'Winforms', 7, 487, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6149, 'Windows Forms control', 7, 487, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6150, 'WindowsForms', 7, 487, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6151, 'Windows Forms application', 7, 487, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6152, 'WinForms', 7, 487, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6153, 'ActiveX Data Object', 7, 488, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6154, 'Active X Data Objects', 7, 488, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6155, 'Msado', 7, 488, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6156, 'Jboss seam', 7, 492, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6157, 'JBoss SEAM', 7, 492, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6158, 'Seam framework', 7, 492, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6159, 'JBoss application server', 7, 493, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6160, 'Wildfly', 7, 493, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6161, 'JBoss AS', 7, 493, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6162, 'Jbossas', 7, 493, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6163, 'Jboss as', 7, 493, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6164, 'Jboss', 7, 493, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6165, 'JBossWS', 7, 493, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6166, 'JBoss', 7, 493, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6167, 'JBoss Application Server', 7, 493, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6168, 'ABAP Objects', 7, 496, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6169, 'SAP ABAP', 7, 496, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6170, 'Abap Objects', 7, 496, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6171, 'ABAP/4', 7, 496, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6172, 'Abap IV', 7, 496, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6173, 'Abap', 7, 496, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6174, '.NET SDK', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6175, 'Dot NET Framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6176, 'Microsoft net framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6177, 'Net Framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6178, 'Dotnet framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6179, 'Netfx', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6180, 'Dot Net Framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6181, 'Dot net framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6182, '.NET Enterprise Server', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6183, '.NET framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6184, 'NetFX', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6185, 'Microsoft .NET framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6186, 'Microsoft''s .NET Framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6187, '.NET Server', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6188, '.Net Framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6189, '.Net framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6190, '.NET Services', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6191, '.NET platform', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6192, '.Net (programming language)', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6193, 'Microsoft .NET Framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6194, '.net framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6195, 'NET Framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6196, 'Active Directory Services', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6197, 'Likewise Open', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6198, 'Active directory object', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6199, 'AD/LDS', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6200, 'Active Directory Schema', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6201, 'AD DS', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6202, 'Microsoft Active Directory', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6203, 'NT Directory Service', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6204, 'Active Directory Site', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6205, 'ActiveDirectory', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6206, 'Active directory authentication module', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6207, 'Active Directory Domain Services', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6208, 'Active directory objects', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6209, 'Active directory', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6210, 'Micorsoft Active Directory', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6211, 'Active Directory Service Interfaces', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6212, 'Active Directory Service', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6213, 'Active Directory Directory Services', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6214, 'Microsoft Active Direcory', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6215, 'Domain tree', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6216, 'Active Directory Application Mode', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6217, 'AD LDS', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6218, 'ASP programming language', 10, 499, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6219, 'Active Server Page', 10, 499, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6220, 'ASP3', 10, 499, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6221, 'Apache::ASP', 10, 499, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6222, 'Active server pages', 10, 499, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6223, 'Classic ASP', 10, 499, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6224, 'Asp Apache', 10, 499, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6225, 'Active X', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6226, 'ActiveX Control', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6227, 'Activex', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6228, 'ActiveX client', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6229, 'ActiveX Object', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6230, 'ActiveX control', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6231, 'ActiveX component', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6232, 'MFC ActiveX Control', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6233, 'Active x', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6234, 'ActiveX server', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6235, 'Active-x', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6236, 'Activex control', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6237, 'Apache Cordoba', 10, 501, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6238, 'Apache Callback', 10, 501, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6239, 'Customer Information Control System', 10, 502, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6240, 'CICS Transaction Server', 10, 502, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6241, 'Docker software', 10, 503, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6242, 'Docker (Linux container engine)', 10, 503, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6243, 'Libcontainer', 10, 503, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6244, 'Dockerfile', 10, 503, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6245, 'Docker Toolbox', 10, 503, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6246, 'Shockwave Flash', 10, 504, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6247, 'UIRA', 10, 504, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6248, 'Flash MX', 10, 504, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6249, 'Flash CS3', 10, 504, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6250, 'Futuresplash', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6251, 'Adobe Flash CS4', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6252, 'Flash 8', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6253, 'Flash mx 2004', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6254, 'Flash (software)', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6255, 'FutureSplash', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6256, 'Macromedia Flash Remoting', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6257, 'Macromedia flash', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6258, 'Flash programming', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6259, 'Adobe Flash animation', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6260, 'Flash 6', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6261, 'Adobe flash', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6262, 'Adobe Flash Platform', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6263, 'Macromedia Flash Professional 9', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6264, 'F4L', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6265, 'Flash components', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6266, 'Flash 10', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6267, 'F4l', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6268, 'Flash 9', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6269, 'Qflash', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6270, 'Flash mx', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6271, 'HTTP File Server', 10, 505, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6272, 'JRE', 10, 506, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6273, 'NodeJs', 10, 507, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6274, 'Node js', 10, 507, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6275, 'Node.JS', 10, 507, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6276, 'Nodejs', 10, 507, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6277, 'Iojs', 10, 507, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6278, 'Io.js', 10, 507, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6279, 'NodeJS', 10, 507, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6280, 'Action Web Service', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6281, 'Rubyonrails', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6282, 'Ruby on Яails', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6283, 'Ruby on rails', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6284, 'Action Mailer', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6285, 'Ruby on Iaails', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6286, 'Rails framework', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6287, 'Ruby on Rails (web framework)', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6288, 'Ruby On Rails', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6289, 'Ruby-on-rails', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6290, 'Ruby with rails', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6291, 'EMC Celerra', 11, 510, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6292, 'Application Lifecycle Management', 1, 511, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6293, 'Application management', 1, 511, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6294, 'Application life-cycle management', 1, 511, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6295, 'Integrated application lifecycle management', 1, 511, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6296, 'Software Lifecycle Management', 1, 511, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6297, 'Assembly Language', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6298, 'Assembler (computer programming)', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6299, 'Meta-assembler', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6300, 'Op code mnemonic', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6301, 'Cross-assembler', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6302, 'Assembly languages', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6303, 'Programming language/assembly', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6304, 'Assembly language assembler', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6305, 'Two-pass assembler', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6306, 'Cross assembler', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6307, 'Assembly code', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6308, 'Assembler code', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6309, 'Assembler language', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6310, 'Assembler program', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6311, 'Assembly language macros', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6312, 'Mnemonics (assembler)', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6313, 'ARM Assembly Language Programming', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6314, 'Extended mnemonics', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6315, 'Mnemonics (assembly language)', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6316, 'Symbolic machine code', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6317, 'Assembly programming language', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6318, 'Assembly Programming System', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6319, 'Assembler (programming language)', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6320, 'Symbolic Machine Code', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6321, 'Mnemonic (assembly language)', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6322, 'Macro assembler', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6323, 'Assembler (computing)', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6324, 'Assembly file', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6325, 'Mnemonic (assembler)', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6326, 'Assember language', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6327, 'Assembler for an assembly language', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6328, 'Assembler programming', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6329, 'Macroassembler', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6330, 'Assembler directive', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6331, 'Assembly programming', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6332, 'Opcode mnemonics', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6333, 'Assembly time', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6334, 'Common Gateway Interface (CGI)', 1, 515, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6335, 'Cgi script', 1, 515, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6336, 'CGI script', 1, 515, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6337, 'Common gateway interface', 1, 515, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6338, 'COM+', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6339, 'COM Plus', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6340, 'Interface ID', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6341, 'ActiveX application', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6342, 'COM/ActiveX', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6343, 'Multi Threaded Apartment', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6344, 'COM object', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6345, 'Neutral Apartment', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6346, 'COM server', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6347, 'Component object model', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6348, 'Single-Threaded Apartment', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6349, 'ActiveX script', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6350, 'Single Threaded Apartment', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6351, 'COM and OLE', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6352, 'Microsoft Component Object Model', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6353, 'Single-threaded apartment', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6354, 'COM plus', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6355, 'Apartment model', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6356, 'Multi-Threaded Apartment', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6357, 'COM+ Events', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6358, 'Portable Object Adapter', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6359, 'Object Management Architecture', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6360, 'Portable interceptors', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6361, 'OMG IDL', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6362, 'Common object request broker architecture', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6363, 'VMCID', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6364, 'Incarnation (CORBA)', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6365, 'CORBA IDL', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6366, 'Corbaloc', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6367, 'CORBA Component Model', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6368, 'Servant (CORBA)', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6369, 'Corba', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6370, 'CORBA architecture', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6371, 'CORBA', 1, 517, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6372, 'Data Control Language', 1, 519, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6373, 'DDBMS', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6374, 'Enterprise database management', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6375, 'Distributed data base', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6376, 'Database management system', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6377, 'Database Management', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6378, 'Database query', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6379, 'DBMSs', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6380, 'Research database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6381, 'Database management software', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6382, 'Database (computing)', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6383, 'Distributed Database Management System', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6384, 'Database instance', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6385, 'Database management program', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6386, 'DataBase', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6387, 'Library database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6388, 'Database system', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6389, 'Database management systems', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6390, 'Database/Applications', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6391, 'Data Base', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6392, 'Distributed database management system', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6393, 'Database Management System', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6394, 'Database manager', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6395, 'Database programming', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6396, 'Database software', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6397, 'Public database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6398, 'Distributed databases', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6399, 'Dbms', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6400, 'Forensic database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6401, 'Data base management system', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6402, 'Databases', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6403, 'Electronic data processing database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6404, 'Database management', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6405, 'Computer database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6406, 'Data-base', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6407, 'Data bases', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6408, 'DBMS', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6409, 'Computer Databases', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6410, 'Database System', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6411, 'Database development', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6412, 'Numeric database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6413, 'DB file', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6414, 'Scientific database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6415, 'Database Manager', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6416, 'Database systems', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6417, 'Database information system', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6418, 'Data base', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6419, 'D-base', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6420, 'Database backend', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6421, 'General-purpose DBMS', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6422, 'Public databases', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6423, 'Db management', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6424, 'EDI Translation Software', 1, 521, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6425, 'Electronic Data Interchange', 1, 521, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6426, 'ANSI ASC X.12', 1, 521, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6427, 'X.12', 1, 521, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6428, 'Web-servers', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6429, 'Web Servers', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6430, 'Webserver', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6431, 'HTTP Server', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6432, 'Www server', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6433, 'Web-server', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6434, 'HTTP web server', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6435, 'Web Server', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6436, 'Web servers', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6437, 'WWW server', 1, 522, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6438, 'HTTP server', 1, 522, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6439, 'Jdom', 1, 523, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6440, 'Java object model', 1, 523, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6441, 'JSR 102', 1, 523, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6442, 'Java Document Object Model', 1, 523, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6443, 'Ldap', 1, 524, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6444, 'Eldap', 1, 524, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6445, 'LDAPS', 1, 524, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6446, 'LDAP', 1, 524, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6447, 'Database driver', 1, 525, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6448, 'ODBC driver', 1, 525, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6449, 'ODBC Driver', 1, 525, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6450, 'Open DataBase Connectivity', 1, 525, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6451, 'OBDC', 1, 525, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6452, 'Odbc', 1, 525, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6453, 'Open database connectivity', 1, 525, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6454, 'ODBC', 1, 525, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6455, 'Order Management System', 1, 526, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6456, 'Order management', 1, 526, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6457, 'SQL Reporting Services', 1, 528, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6458, 'Sql server reporting services', 1, 528, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6459, 'REST API', 1, 529, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6460, 'REST', 1, 529, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6461, 'Representational State Transfer', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6462, 'REST Architecture', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6463, 'REST-SST', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6464, 'RESTful web service', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6465, 'REST interface', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6466, 'RESTFul', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6467, 'RESTfully', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6468, 'Rest interface', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6469, 'Restful interface', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6470, 'RESTful API', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6471, 'Restful web service', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6472, 'Restful', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6473, 'Restful application', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6474, 'RESTful', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6475, 'SOA Lifecycle', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6476, 'SOA environment', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6477, 'Service Oriented Architecture', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6478, 'Endpoint computing', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6479, 'Service orientated architecture', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6480, 'Soba (computing)', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6481, 'Broker (service-oriented architecture)', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6482, 'Service-Oriented Architecture', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6483, 'Service-oriented business application', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6484, 'Service Oriented Computing', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6485, 'Service-oriented Architecture', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6486, 'Service-oriented architectures', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6487, 'Service oriented architecture', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6488, 'Service Orientated Architecture', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6489, 'Service-orientated architecture', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6490, 'Service-Orientated Architecture', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6491, 'Service Oriented Architectures', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6492, 'Simple Object Access Protocol', 1, 531, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6493, 'SOAP request', 1, 531, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6494, 'SOAP (protocol)', 1, 531, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6495, 'Soap service', 1, 531, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6496, 'Structured Query Language', 9, 532, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6497, 'SQL script', 9, 532, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6498, 'ANSI SQL', 9, 532, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6499, 'SQL Servers', 9, 532, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6500, 'Procedural SQL', 9, 532, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6501, 'Structured query language', 9, 532, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6502, 'SQL language', 9, 532, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6503, 'Distributed SQL processing', 9, 532, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6504, 'SQL programming language', 9, 532, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6505, 'Transaction Control Language', 9, 532, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6506, 'SEQUEL', 9, 532, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6507, 'SQL (programming language)', 9, 532, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6508, 'SQL database', 9, 532, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6509, 'Structure Query Language', 9, 532, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6510, 'Sql', 9, 532, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6511, 'Yaml', 1, 533, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6512, 'Yet Another Markup Language', 1, 533, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6513, 'YAML Ain''t Markup Language', 1, 533, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6514, 'Model', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6515, 'Model-view', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6516, 'Model view controller triad', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6517, 'controller', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6518, 'view', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6519, 'Model-template-view', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6520, 'Model–View–Controller', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6521, 'Model View Controller', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6522, 'MVC controller', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6523, 'View (MVC)', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6524, 'Model-View-Controller', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6525, 'Controller (MVC)', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6526, 'MVC Design Pattern', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6527, 'MVC architecture', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6528, 'Model-view controller', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6529, 'Model-Template-View', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6530, 'MVC Pattern', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6531, 'Model-view-controller design pattern', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6532, 'Model-View-Controller paradigm', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6533, 'Model view controller', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6534, 'Model/View/Controller', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6535, 'MVC view', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6536, 'MVC model', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6537, 'Model (MVC)', 1, 534, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6538, 'Model-view-controller', 1, 534, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6539, 'Application server computing', 1, 535, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6540, 'Application Server', 1, 535, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6541, 'Mobile App Server', 1, 535, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6542, 'Application servers', 1, 535, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6543, 'Enterprise application server', 1, 535, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6544, 'Java application server', 1, 535, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6545, 'Appserver', 1, 535, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6546, 'App server', 1, 535, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6547, 'Web application server', 1, 535, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6548, 'Cloud hosting', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6549, 'Cloud architecture', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6550, 'Cloud service', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6551, 'IoT Cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6552, 'Cloud-hosted', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6553, 'Cloud vendor', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6554, 'Cloud Provider Interface', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6555, 'Cloud transformation', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6556, 'XaaS', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6557, 'Cloud computing platform', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6558, 'Cloud computing vendor', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6559, 'Cloud Computing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6560, 'Cloud-based', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6561, 'Cloud provider', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6562, 'Could computing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6563, 'Cloud computing provider', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6564, 'Computing cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6565, 'Computing in the cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6566, 'Communication as a service', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6567, 'Cloud infrastructure', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6568, 'Hybrid cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6569, 'Private cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6570, 'Cloud Technology', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6571, 'Cloud client', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6572, 'Cloud vendors', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6573, 'Cloud networking', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6574, 'Cloud Hosting', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6575, 'Remote computing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6576, 'Private Cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6577, 'Computing-in-the-cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6578, 'Cloud hardware', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6579, 'Cloud computer', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6580, 'Cloud technology', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6581, 'Public Cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6582, 'Cloud processing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6583, 'Burst computing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6584, 'Member Only Cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6585, 'Content Marketing Cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6586, 'Cloud computing user', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6587, 'Cloud Applications', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6588, 'Online software', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6589, 'Cloud Software', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6590, 'Cloud services provider', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6591, 'Computer cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6592, 'Cloud-computing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6593, 'Cloud distribution', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6594, 'Public cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6595, 'Cloud services', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6596, 'Cloud-based computing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6597, 'Cloud Service', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6598, 'Cloudware', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6599, 'EaaS', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6600, 'Cloud service provider', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6601, 'Cloud software', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6602, 'Cloud user', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6603, 'Cloud (computing)', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6604, 'Cross-Platform Hybrid Cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6605, 'Cloud Infrastructure', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6606, 'Cloud (computers)', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6607, 'Hybrid Cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6608, 'Cloud standards', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6609, 'Cloud users', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6610, 'Cloud clients', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6611, 'Cloud computing platforms', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6612, 'Enterprise Cloud Computing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6613, 'Dynamic Provisioning Environment', 1, 538, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6614, 'Enterprise Service Bus', 1, 540, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6615, 'Workgroup File server', 1, 541, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6616, 'Fileserver', 1, 541, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6617, 'File host', 1, 541, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6618, 'Storage server', 1, 541, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6619, 'File Server', 1, 541, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6620, 'Workgroup file server', 1, 541, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6621, 'File Server Solution', 1, 541, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6622, 'Nominal ledgers', 1, 542, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6623, 'General Ledger', 1, 542, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6624, 'Generalledger', 1, 542, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6625, 'General ledgers', 1, 542, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6626, 'Nominal ledger', 1, 542, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6627, 'HTTP client', 1, 543, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6628, 'Web-servers', 1, 544, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6629, 'Web Servers', 1, 544, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6630, 'Webserver', 1, 544, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6631, 'HTTP Server', 1, 544, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6632, 'Www server', 1, 544, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6633, 'Web-server', 1, 544, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6634, 'HTTP web server', 1, 544, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6635, 'HTTP daemon', 1, 544, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6636, 'Web Server', 1, 544, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6637, 'Web servers', 1, 544, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6638, 'WWW server', 1, 544, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6639, 'HTTP server', 1, 544, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6640, 'ISSOW', 1, 545, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6641, 'IXP', 1, 546, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6642, 'Internet Exchange', 1, 546, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6643, 'Internet exchange', 1, 546, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6644, 'Internet Exchange Point', 1, 546, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6645, 'IMAP server', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6646, 'DIMAP', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6647, 'Interactive Mail Access Protocol', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6648, 'IMAP4', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6649, 'IMAP3', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6650, 'Imapd', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6651, 'IMAPv4', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6652, 'Imaps', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6653, 'IMAPS', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6654, 'Internet message access protocol', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6655, 'IMAP', 1, 547, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6656, 'Javascript Object Notation', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6657, 'Json', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6658, 'JSONNP', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6659, 'Internet JSON', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6660, 'JSON Schema', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6661, 'JSON5', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6662, 'I-JSON', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6663, 'HJSON', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6664, 'JavaScript Object Notation', 1, 548, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6665, 'Mainframe computers', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6666, 'Mainframe', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6667, 'Main frame', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6668, 'Big-iron', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6669, 'MainFrame', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6670, 'Mainframe computing', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6671, 'Mainframe Computer', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6672, 'Main frame computer', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6673, 'Mainframes', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6674, 'Big iron (computing)', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6675, 'Main Frame Computer', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6676, 'Main-frame', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6677, 'Mainframe server', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6678, 'Manufacturing Execution System', 1, 553, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6679, 'Manufacturing execution systems', 1, 553, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6680, 'Manufacturing Execution Systems', 1, 553, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6681, 'NonSQL', 1, 555, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6682, 'Software as a secure service', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6683, 'Saasworld', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6684, 'Software as service', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6685, 'SasS', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6686, 'Software-As-A-Service', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6687, 'Software-as-a-service', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6688, 'OpenSaaS', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6689, 'Software plus services', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6690, 'Software-as-a-Service', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6691, 'Software As A Service', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6692, 'Software as a Service', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6693, 'Software as a sevice', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6694, 'Cloud application', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6695, 'SaaSS', 1, 556, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6696, 'SaaS', 1, 556, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6697, 'Storage area networks', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6698, 'Storage Area Networks', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6699, 'Storage network', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6700, 'Distributed storage area networks', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6701, 'Storage Area Network (SAN)', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6702, 'Sanoip', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6703, 'SANoIP', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6704, 'Storage area networking', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6705, 'San server', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6706, 'SAN (computing)', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6707, 'Storage Area Network(SAN)', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6708, 'Centralized storage area networks', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6709, 'Storage layer', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6710, 'Storage Area Network', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6711, 'Storage networking', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6712, 'Online desktop', 1, 560, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6713, 'WebTop', 1, 560, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6714, 'Cloud desktop', 1, 560, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6715, 'Webtop', 1, 560, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6716, 'Web Desktop', 1, 560, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6717, 'Anonymous Surfing', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6718, 'Proxy IP address', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6719, 'Application layer proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6720, 'Caching proxy server', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6721, 'Translation proxy server', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6722, 'Internet proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6723, 'Anonymous server', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6724, 'Anonymous Web surfing', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6725, 'Proxyserver', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6726, 'Web Proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6727, 'Proxy Bouncing', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6728, 'Proxifier', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6729, 'Http proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6730, 'Proxy chaining', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6731, 'Suffix proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6732, 'Anonymity network', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6733, 'Application-layer proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6734, 'CGI proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6735, 'HTTP proxy server', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6736, 'Free proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6737, 'Proxy Website', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6738, 'Intercepting proxy server', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6739, 'HTTPS Proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6740, 'Proxy chain', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6741, 'Proxy IP', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6742, 'Proxy gateway', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6743, 'Web proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6744, 'Proxy Server', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6745, 'Web proxies', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6746, 'Proxy servers', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6747, 'Proxy bypass', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6748, 'Anonymous proxy server', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6749, 'Bypass (computing)', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6750, 'Residential proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6751, 'Transparent proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6752, 'Myspace proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6753, 'Split proxies', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6754, 'Forward proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6755, 'P roxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6756, 'HTTP proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6757, 'Proxy Sites', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6758, 'SSL Proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6759, 'Anonymous Web proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6760, 'Server proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6761, 'Tproxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6762, 'Circumventor', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6763, 'Caching proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6764, 'Secure & Anonymous Internet Surfing', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6765, 'HTTP proxying', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6766, 'Proxy filter', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6767, 'Anonymous web proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6768, 'Utility (computer science)', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6769, 'Software utility', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6770, 'Utility program', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6771, 'Utility (software)', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6772, 'Software utilities', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6773, 'Utility Programs', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6774, 'Utility (computing)', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6775, 'Utility Software', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6776, 'NetScaler', 3, 563, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6777, 'Netscaler', 3, 563, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6778, 'Oracle virtual machine', 3, 567, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6779, 'Oracle VM', 3, 567, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6780, 'ESX Server', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6781, 'VMware ESXi Server', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6782, 'VMware ESX Server 2.0', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6783, 'VMWare ESX Server', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6784, 'ESX Server 3i', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6785, 'VMware ESX Server 3.0', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6786, 'VMware ESX', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6787, 'VMware ESXi (software)', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6788, 'VMWare ESX', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6789, 'VMWare ESXi', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6790, 'VMware ESX Server', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6791, 'ESXI', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6792, 'ESXi', 3, 568, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6793, 'VMware GSX Server', 3, 569, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6794, 'GSX Server', 3, 569, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6795, 'VMWare Server', 3, 569, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6796, 'Structured Query Language', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6797, 'SQL script', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6798, 'ANSI SQL', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6799, 'SQL Servers', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6800, 'Procedural SQL', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6801, 'Structured query language', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6802, 'SQL language', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6803, 'Distributed SQL processing', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6804, 'SQL programming language', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6805, 'Transaction Control Language', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6806, 'SEQUEL', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6807, 'SQL (programming language)', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6808, 'SQL database', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6809, 'Structure Query Language', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6810, 'Sql', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6811, 'Structured Programming Facility', 2, 573, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6812, 'System Productivity Facility', 2, 573, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6813, 'Program Development Facility', 2, 573, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6814, 'Interactive System Productivity Facility', 2, 573, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6815, 'Model', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6816, 'Model-view', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6817, 'Model view controller triad', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6818, 'controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6819, 'view', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6820, 'Model-template-view', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6821, 'Model–View–Controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6822, 'Model View Controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6823, 'MVC controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6824, 'View (MVC)', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6825, 'Model-View-Controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6826, 'Controller (MVC)', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6827, 'MVC Design Pattern', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6828, 'MVC architecture', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6829, 'Model-view controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6830, 'Model-Template-View', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6831, 'MVC Pattern', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6832, 'Model-view-controller design pattern', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6833, 'Model-View-Controller paradigm', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6834, 'Model view controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6835, 'Model/View/Controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6836, 'MVC view', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6837, 'MVC model', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6838, 'Model (MVC)', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6839, 'Model-view-controller', 1, 574, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6840, 'Linux (operating system)', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6841, 'LINUX', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6842, 'Linuces', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6843, 'GNU/Linux/X11', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6844, 'LinuX', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6845, 'Linux-based GNU system', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6846, 'Gnu/Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6847, 'Linux+GNU', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6848, 'Linux desktop', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6849, 'Lienucks', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6850, 'GNU-Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6851, 'Linux/GNU', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6852, 'Desktop GNU/Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6853, 'Desktop Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6854, 'Linux Powered System', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6855, 'Linux/gnu', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6856, 'Linux server', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6857, 'GNU-linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6858, 'GNU/Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6859, 'Linux box', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6860, 'GNULinux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6861, 'Lynux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6862, 'Linux OS', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6863, 'Linices', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6864, 'Linux-based GNU systems', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6865, 'GNU/Linux/X', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6866, 'Desktop linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6867, 'GNU–Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6868, 'Gnu/linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6869, 'GNU+Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6870, 'GNU Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6871, 'Linux (GNU/Linux)', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6872, 'Lineux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6873, 'Linux/X11', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6874, 'Linix', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6875, 'Linux operating system', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6876, 'Linux/X', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6877, 'BlackRhino GNU/Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6878, 'MSP (operating system)', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6879, 'MVS/ESA', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6880, 'OS/MVS', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6881, 'MVS Operating System', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6882, 'MVS/XA', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6883, 'MVS/370', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6884, 'Fujitsu MSP', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6885, 'OS/VS2 (MVS)', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6886, 'Hitachi VOS3', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6887, 'MVS/SP', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6888, 'Multiple Virtual Storage', 6, 577, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6889, 'Unixes', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6890, 'UNIX operating system', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6891, 'UNIX systems', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6892, 'Unix operating system', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6893, 'Truly Unix', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6894, 'UNIX system', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6895, 'Unix box', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6896, 'Unix system', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6897, 'Traditional Unix', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6898, 'UNIX', 6, 578, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6899, 'BSD operating system', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6900, 'Berkeley software distribution', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6901, '4.4BSD-Lite', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6902, 'Vmunix', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6903, 'BSD Unices', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6904, 'HPBSD', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6905, '4.4BSD-Encumbered', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6906, 'Berkeley UNIX', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6907, 'Berkley Software Distribution', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6908, 'Berkeley UNIX 4.3BSD', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6909, 'BSD-based', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6910, 'Bsd', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6911, '*BSD', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6912, 'BSD Unix', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6913, 'BSD (operating system)', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6914, 'BSD', 6, 579, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6915, 'BSD UNIX', 6, 579, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6916, 'Berkeley System Distribution', 6, 579, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6917, 'Berkeley Unix', 6, 579, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6918, 'MS Windows', 6, 580, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6919, 'Windows', 6, 580, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6920, 'Windows Operating System', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6921, 'Windows OS', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6922, 'Windows 365', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6923, 'Windows the operating system', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6924, 'Windows (Operating System)', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6925, 'WINDOWS', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6926, 'Windows (OS)', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6927, 'Microsoft windows', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6928, 'MS-Windows', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6929, 'Windows operating system', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6930, 'Windows PC', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6931, 'Mswin', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6932, 'Microsoft windows os', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6933, 'MICROSOFT WINDOWS', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6934, 'Widnows', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6935, 'Windwos', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6936, 'Windows (operating system)', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6937, 'MSWindows', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6938, 'Windows®', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6939, 'PC Windows', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6940, 'Ms windows', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6941, 'Windows os', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6942, 'MsWindows', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6943, 'Windows (Operating system)', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6944, '32-bit Windows', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6945, 'Microsoft windows operating system', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6946, 'Windows Microsoft', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6947, 'Freedows OS', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6948, 'MSWin', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6949, 'Windows computers', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6950, 'MS SQL', 2, 581, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6951, 'MS SQL Server', 2, 581, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6952, 'MSSQL', 2, 581, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6953, 'MS-SQL', 2, 581, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6954, 'Microsoft SQL Server 2005', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6955, 'Sql Server 2000', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6956, 'SQL Server 2017', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6957, 'SQL Server 2014 ISO', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6958, 'SQL Server 2000', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6959, 'SQL Server 2005', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6960, 'SQL Server 2014', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6961, 'Microsoft SQL Server 2008 R2', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6962, 'Microsoft SQL server', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6963, 'Microsoft SQL Server 2000', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6964, 'SQL Server 2014 CAB', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6965, 'SQL Server 2008 R2', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6966, 'Pubs (database)', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6967, 'SQL Server 2012', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6968, 'Microsoft SQL', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6969, 'Microsoft SQL Server 2008', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6970, 'Microsoft Sql Server', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6971, 'SQL 6.5', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6972, 'Ms sql server', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6973, 'SQL Server 2008', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6974, 'Data Source Views', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6975, 'Microsoft sql server', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6976, 'Mssql', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6977, 'SQL Server 2016', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6978, 'SQL 7.0', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6979, 'SQL Server 2019', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6980, 'C# (programming language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6981, 'C++++', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6982, 'Visual C Sharp .Net', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6983, 'Visual C Sharp Express Edition', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6984, 'C♯ (programming language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6985, 'Microsoft Visual C ♯', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6986, 'C Sharp language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6987, 'C# programming language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6988, 'ISO/IEC 23270', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6989, 'C Sharp Programming Language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6990, 'Microsoft Visual C Sharp', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6991, 'C-sharp programming language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6992, 'C ♯ (programming language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6993, 'C hash', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6994, 'C♯ (language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6995, 'C sharp (computing)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6996, 'CS (programming language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6997, 'C sharp (language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6998, 'C Sharp (language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6999, 'ECMA-334', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7000, 'C-hash', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7001, 'C sharp 6.0', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7002, 'C♯ programming language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7003, 'Visual C Sharp', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7004, 'C Sharp 5.0', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7005, 'C-Hash', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7006, 'C sharp programming language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7007, 'ISO 23270', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7008, 'C Sharp Programming language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7009, 'C Sharp (computing)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7010, 'C # (programming language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7011, 'C sharp (programming language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7012, 'C hashtag', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7013, 'C Pound', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7014, 'C Sharp programming language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7015, 'C plus plus', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7016, 'C++ 1.0', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7017, 'C plus plus programming language', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7018, 'ISO/IEC 14882:2003', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7019, 'C++ standard', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7020, 'Standard C++ Foundation', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7021, 'ISO/IEC 14882', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7022, 'Sepples', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7023, 'Cee plus plus', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7024, 'C++ program', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7025, 'C++ (Programming Language)', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7026, 'C+++', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7027, 'C++ syntax', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7028, 'ANSI C++', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7029, 'ISO C++', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7030, 'C++ (programming language)', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7031, 'C++ 2.0', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7032, 'ISO 14882', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7033, 'C++ language', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7034, 'Cee Plus Plus', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7035, 'C Plus Plus programming language', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7036, 'Core language', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7037, 'ISO C++ programming language', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7038, 'Cplusplus', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7039, 'C++ programming language', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7040, 'C++98', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7041, 'ISO/IEC 14882:2014', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7042, '++C', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7043, 'CPlusPlus', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7044, 'ISO/IEC 14882:2015', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7045, 'C-plus-plus programming language', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7046, 'C-plus-plus', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7047, 'C Plus Plus', 9, 583, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7048, 'Java programming language', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7049, 'Javax', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7050, 'Java Language Specification', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7051, 'Java (software)', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7052, 'Java (Programming language)', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7053, 'Javalang', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7054, 'Java Programming', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7055, 'JPD (file format)', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7056, 'Java (programming)', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7057, 'Java language specification', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7058, 'Java (langage)', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7059, 'Java language', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7060, 'Java technology', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7061, 'Flow Java', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7062, 'Java (language)', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7063, 'Java programming', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7064, 'Java (Programming Language)', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7065, 'Java prog', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7066, 'Java code', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7067, 'Java computer language', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7068, 'Java Programing Languge', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7069, 'Perl 7', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7070, 'Perl (programming language)', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7071, 'Practical Extraction and Report Language', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7072, 'Perl interpreter', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7073, 'Vanilla Perl', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7074, 'Practical Extraction And Report Language', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7075, 'Ponie', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7076, 'Embedded Perl', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7077, 'Perl language', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7078, 'X-perl', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7079, 'Perl programming language', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7080, 'Swiss army chainsaw', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7081, 'IndigoPerl', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7082, 'Perl code', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7083, 'Swiss-army chainsaw', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7084, 'Perl5', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7085, 'PONIE', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7086, 'PERL', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7087, 'Perl 5', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7088, 'Perl programming', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7089, 'Perl (language)', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7090, 'Python scripting language', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7091, 'Python program', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7092, 'PythonLanguage', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7093, 'Python computer language', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7094, 'Python code', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7095, 'Python3', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7096, 'Python (computing)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7097, 'Python programming language', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7098, 'Python programming', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7099, 'Pythonistas', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7100, 'Pyston', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7101, 'Python language', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7102, 'Python (lang)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7103, 'Python2', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7104, 'Python3000', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7105, 'Python 3k', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7106, 'Python (language)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7107, 'Coconut (programming language)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7108, 'Python (software)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7109, 'Pythonlang', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7110, 'Python prog', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7111, 'Python Programming', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7112, 'Python Programming Language', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7113, 'Python (scripting language)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7114, 'Pythonista', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7115, 'Python (programming)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7116, 'Python (Programming Language)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7117, 'Python (computer language)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7118, 'Python 3K', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7119, 'OpenRsync', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7120, 'Openbsd', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7121, 'OpenCVS', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7122, 'Opencvs', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7123, 'Open bsd', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7124, 'OpenBSD project', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7125, 'Open BSD', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7126, 'OpenBSD Project', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7127, 'Obsd', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7128, 'Openrsync', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7129, 'VSE/SP', 6, 591, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7130, 'Z/VSE (operating system)', 6, 591, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7131, 'VSE/ESA', 6, 591, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7132, 'Z/VSE', 6, 591, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7133, 'DOS/VSE', 6, 591, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7134, 'ASP programming language', 9, 592, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7135, 'Active Server Page', 9, 592, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7136, 'ASP3', 9, 592, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7137, 'Apache::ASP', 9, 592, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7138, 'Active server pages', 9, 592, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7139, 'Classic ASP', 9, 592, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7140, 'ASP Hints', 9, 592, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7141, 'Asp Apache', 9, 592, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7142, 'Microsoft Disk Operating System', 6, 593, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7143, 'MSDOS', 6, 593, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7144, 'Microsoft DOS', 6, 593, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7145, 'MS DOS', 6, 593, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7146, 'MS-DOS 1.51', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7147, 'Microsoft Arabic MS-DOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7148, 'HP MS-DOS 3.22R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7149, 'MS-DOS 3.31', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7150, 'MS-DOS 5.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7151, 'MS-DOS 3.3a', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7152, 'MS-DOS 3.3A', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7153, 'Ms-dos', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7154, 'TI MS-DOS 2.12', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7155, 'MS-DOS 3.30', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7156, 'MS-DOS 1.52', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7157, 'Ms-Dos', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7158, 'TeleVideo Personal Computer DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7159, 'MSN-DOS Prompt', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7160, 'MS-DOS 2.5', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7161, 'AST Premium Exec DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7162, 'Texas Instruments MS-DOS 2.12', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7163, 'MS-DOS 1.50', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7164, 'MS-DOS 1.20', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7165, 'Altos MS-DOS 2.11', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7166, 'Microsoft Hebrew MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7167, 'MS-DOS 3.22R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7168, 'MS-DOS 3.4', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7169, 'MSdos', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7170, 'HDOS (Microsoft)', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7171, 'MS-DOS 3.21R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7172, 'Microsoft MS-DOS 3.30A', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7173, 'Compaq MS-DOS 3.31', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7174, 'TeleVideo PC DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7175, 'AST Premium Exec MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7176, 'NCR-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7177, 'MS-DOS 7.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7178, 'Microsoft ADOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7179, 'MS-DOS 1.23', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7180, 'Hebrew MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7181, 'MS-DOS 2.25', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7182, 'MS-DOS 3.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7183, 'ADOS 5.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7184, 'Microsoft HDOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7185, 'MS-DOS 2.12', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7186, 'MS-DOS 2.11', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7187, 'MS-DOS Mobile', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7188, 'MS-DOS 2.10', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7189, 'Microsoft HDOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7190, 'MS-DOS 1.27', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7191, 'MS-DOS 5.01', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7192, 'MS-DOS 1.11', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7193, 'MS-DOS 8.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7194, 'Tandy MS-DOS 2.11R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7195, 'MS-DOS 6.x', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7196, 'MS-DOS 2.05', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7197, 'MS-DOS 3.30+', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7198, 'MS-DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7199, 'HDOS (MS-DOS)', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7200, 'MS/DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7201, 'MS-DOS 1.1', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7202, 'MS-DOS 2.50', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7203, 'Microsoft Arabic MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7204, 'MS-DOS 3.1', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7205, 'MS-DOS 1.14', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7206, 'MS-DOS 2.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7207, 'MS-DOS 3.3R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7208, 'TeleVideo Personal Computer DOS 2.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7209, 'ADOS (Microsoft)', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7210, 'MS-DOS 3.40', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7211, 'MS-DOS 2.13', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7212, 'TeleVideo PC DOS 2.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7213, 'Microsoft Arabic MS-DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7214, 'AST Premium Exec MS-DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7215, 'Access DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7216, 'MS-DOS 3.30a', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7217, 'MS-DOS 2.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7218, 'PC MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7219, 'MS-DOS 3.30A', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7220, 'TI MS-DOS 3.30R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7221, 'MS-DOS 6', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7222, 'MS-DOS 5', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7223, 'Microsoft MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7224, 'MS-DOS 1.2', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7225, 'MS-DOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7226, 'ADOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7227, 'Texas Instruments MS-DOS 3.3R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7228, 'AST MS-DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7229, 'Microsoft HDOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7230, 'TI MS-DOS 3.3R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7231, 'MS-DOS 4.00 (IBM-developed)', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7232, 'MS-DOS 1.22', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7233, 'MS-DOS 1.53', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7234, 'ADOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7235, 'MS-ROMDOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7236, 'MS-DOS 3.25', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7237, 'Hebrew MS-DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7238, 'MS-DOS 1.40', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7239, 'MS-DOS 3.30R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7240, 'AST Premium Exec DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7241, 'Texas Instruments MS-DOS 3.30R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7242, 'MS-DOS 1.25', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7243, 'MS-DOS 2.01', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7244, 'MS-DOS 1.26', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7245, 'MS-DOS 1.41', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7246, 'MS-DOS 1.29', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7247, 'TeleVideo Personal Computer DOS 2.11', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7248, 'MS-DOS 6.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7249, 'Microsoft MS-DOS 3.30a', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7250, 'TeleVideo PC DOS 2.11', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7251, 'SB-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7252, 'Microsoft Hebrew MS-DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7253, 'HDOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7254, 'Hewlett-Packard MS-DOS 3.22R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7255, 'MS-DOS 5.00A', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7256, 'MS-DOS 6.22', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7257, 'Microsoft ADOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7258, 'MS-DOS 3.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7259, 'MS-DOS 2.2', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7260, 'Hebrew MS-DOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7261, 'MS-DOS 1', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7262, 'COMPAQ-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7263, 'MS-DOS 3.21', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7264, 'MS-DOS 3.2', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7265, 'Microsoft MS-DOS 3.3A', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7266, 'MS-DOS 3.22', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7267, 'MS-DOS 6.21', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7268, 'MS-DOS 3.20', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7269, 'Microsoft ADOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7270, 'MS-DOS 1.30', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7271, 'MS-DOS 7.10', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7272, 'MS-DOS 3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7273, 'MS-DOS 4.01', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7274, 'Altos MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7275, 'Microsoft Hebrew MS-DOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7276, 'Arabic MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7277, 'MsDOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7278, 'MS-DOS 1.28', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7279, 'MS-DOS 2.20', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7280, 'MS-DOS 1.13', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7281, 'MS-DOS 1.24', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7282, 'HDOS 5.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7283, 'ADOS (MS-DOS)', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7284, 'MS-DOS 1.21', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7285, 'MS-DOS 2', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7286, 'HDOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7287, 'MS DOS Mobile', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7288, 'MS-DOS 6.2', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7289, 'MS-DOS 6.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7290, 'MS-DOS 2.11R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7291, 'MS-DOS 1.12', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7292, 'MS-DOS 6.20', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7293, 'Arabic MS-DOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7294, 'Arabic MS-DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7295, 'MS-DOS 4.0 (IBM-developed)', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7296, 'Microsoft MS-DOS 3.3a', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7297, 'MS-DOS 1.54', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7298, 'MS-DOS 3.10', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7299, 'CoBoL', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7300, 'COBOL-85', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7301, 'COBOL 20XX', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7302, 'COBOL 85', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7303, 'ISO/IEC 1989', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7304, 'MF-COBOL', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7305, 'O-O COBOL', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7306, 'COBOL programming language', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7307, 'COBOL-74', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7308, 'COBOL 60', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7309, 'ISO 1989', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7310, 'COBOL 74', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7311, 'COBOL74', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7312, 'COBOL-68', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7313, 'OO COBOL', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7314, 'COBOL language', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7315, 'COBOL 1985', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7316, 'Common Ordinary Business-Oriented Language', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7317, 'COBOL 1968', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7318, 'COBOL 2014', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7319, 'Object-oriented COBOL', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7320, 'Common Business Oriented Language', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7321, 'COBOL (programming language)', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7322, 'X3J4', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7323, 'COBOL68', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7324, 'COBOL 1974', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7325, 'COBOL85', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7326, 'OO-COBOL', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7327, 'COBOL-60', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7328, 'COmmon Business-Oriented Language', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7329, 'COBOL 1960', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7330, 'COBOL 2002', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7331, 'RM/COBOL', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7332, 'COBOL 68', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7333, 'Common Business-Oriented Language', 9, 594, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7334, 'Cobol', 9, 594, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7335, 'XML comment', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7336, 'Xml:lang', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7337, 'Well-formed XML', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7338, 'XML tag set', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7339, 'XML Specification', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7340, 'Dynamic XML', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7341, 'Extended Markup Language', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7342, 'XML vocabulary', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7343, 'XML feeds', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7344, 'Extended markup language', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7345, 'XML document', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7346, 'Valid XML document', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7347, 'EXtensible Markup Language', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7348, 'Web3S', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7349, 'Xml', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7350, 'Extensible Markup Language', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7351, 'XML feed', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7352, 'Xml parser', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7353, 'Extensible markup language', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7354, 'XML parser', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7355, 'Text/xml', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7356, 'DOS/VS', 6, 597, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7357, 'IBM TOS/360', 6, 597, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7358, 'DOS/360', 6, 597, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7359, 'Tape Operating System', 6, 597, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7360, 'TOS/360', 6, 597, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7361, 'SSX/VSE', 6, 597, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7362, 'Z/TPF', 6, 598, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7363, 'TPF/ESA', 6, 598, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7364, 'Pascal-SC', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7365, 'Pascal-P1', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7366, 'Pascal (language)', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7367, 'Pascal-P', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7368, 'Pascal programming language', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7369, 'PASCAL-XSC', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7370, 'Pascal-S', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7371, 'Pascal Programming Language', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7372, 'PASCAL-SC', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7373, 'PASCAL (Programming language)', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7374, 'Pascal-P2', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7375, 'Pascal-P3', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7376, 'Pascal-P system', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7377, 'Pascal-P System', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7378, 'Pascal-F', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7379, 'Pascal (command)', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7380, 'Pascal-P5', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7381, 'Pascal language', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7382, 'Pascal-p2', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7383, 'Pascal 86', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7384, 'Pascal-P4', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7385, 'Pascal-XSC', 9, 599, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7386, 'BEA-WebLogic', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7387, 'Bea Weblogic', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7388, 'Oracle Weblogic', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7389, 'Web Logic', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7390, 'BEA AS', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7391, 'BEA WebLogic', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7392, 'WebLogic', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7393, 'BEA Application Server', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7394, 'T3Server', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7395, 'DbKona', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7396, 'BEA Weblogic', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7397, 'Oracle WebLogic', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7398, 'Weblogic', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7399, 'Oracle Weblogic Server', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7400, 'WebLogic Application Server', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7401, 'Netbsd', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7402, 'NETBSD', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7403, 'Nbsd', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7404, 'The NetBSD Foundation', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7405, 'NBSD', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7406, 'Net bsd', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7407, 'Net BSD', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7408, 'NetBSD kernel', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7409, 'Windows Sharepoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7410, 'Microsoft SharePoint Server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7411, 'MOSS 2007', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7412, 'Microsoft Office SharePoint Server 2007', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7413, 'SharePoint 2007', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7414, 'Windows sharepoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7415, 'Microsoft SharePoint 2010', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7416, 'SharePoint 2010', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7417, 'Microsoft SharePoint 2007', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7418, 'Sharepoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7419, 'Share point server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7420, 'SharePoint Foundation', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7421, 'SharePoint services', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7422, 'SharePoint Server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7423, 'Sharepoint portal server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7424, 'Microsoft sharepoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7425, 'Windows SharePoint 2007', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7426, 'Microsoft SharePoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7427, 'Office SharePoint Server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7428, 'Windows SharePoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7429, 'MS Sharepoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7430, 'Windows SharePoint Server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7431, 'Sharepoint 2007', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7432, 'Windows SharePoint Services', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7433, 'Share Point', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7434, 'Microsoft Office Sharepoint Server 2007', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7435, 'Microsoft Windows SharePoint Services', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7436, 'Microsoft Office SharePoint Portal Server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7437, 'Microsoft Sharepoint Foundation', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7438, 'Web part packager', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7439, 'SharePoint Portal Server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7440, 'Sharepoint services', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7441, 'Sharepoint Services', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7442, 'Sharepoint 2010', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7443, 'Microsoft Sharepoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7444, 'Windows Sharepoint Services 3', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7445, 'Sharepoint server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7446, 'MS SharePoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7447, 'Microsoft Office SharePoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7448, 'SharePointCOE', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7449, 'Share point', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7450, 'Sharepoint collaboration', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7451, 'Microsoft SharePoint Foundation', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7452, 'SharePoint Services', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7453, 'Windows Sharepoint Services', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7454, 'Microsoft Office SharePoint Server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7455, 'Adstar Distributed Storage Manager', 2, 604, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7456, 'Tivoli Storage Manager', 2, 604, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7457, 'ADSM', 2, 604, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7458, 'ADSTAR Distributed Storage Manager', 2, 604, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7459, 'IBM Tivoli Storage Manager FastBack', 2, 604, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7460, 'Distributed Storage Manager Client', 2, 604, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7461, 'Spectrum Scale', 2, 605, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7462, 'IBM Spectrum Scale', 2, 605, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7463, 'General Parallel File System', 2, 605, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7464, 'IBM General Parallel File System', 2, 605, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7465, 'Vesta File System', 2, 605, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7466, 'Arbor Software', 2, 607, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7467, 'Hyperion Planning', 2, 607, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7468, 'z/VM', 6, 608, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7469, 'Microsoft IIS', 8, 609, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7470, 'Microsoft Internet Information Services', 8, 609, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7471, 'Internet Information Server', 8, 609, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7472, 'IIS 7', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7473, 'Microsoft Internet Information Server', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7474, 'IIS Media Services', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7475, 'Microsoft-IIS', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7476, 'MS IIS', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7477, 'IIS7', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7478, 'IIS Media Pack', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7479, 'Microsoft-iis', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7480, 'Microsoft IIS server', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7481, 'IIS Express', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7482, 'IIS server', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7483, 'Oracle OC4J', 8, 610, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7484, 'OC4J', 8, 610, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7485, 'Oracle Application Server 10g', 8, 610, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7486, 'credstash', 2, 612, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7487, 'Snyk', 2, 613, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7488, 'Akka', 2, 614, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7489, 'Akka (software)', 2, 614, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7490, 'Akka (toolkit)', 2, 614, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7491, 'Varnish', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7492, 'Varnish (Software)', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7493, 'Varinish (Software)', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7494, 'Varnish cache', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7495, 'Varnishd', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7496, 'Varnish cache server', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7497, 'Varnish-cache.org', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7498, 'Varnish (software)', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7499, 'Datadog', 10, 616, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7500, 'API', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7501, 'Application-programming interface', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7502, 'Application Programming Interfaces', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7503, 'Application-level interaction', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7504, 'Application Program Interface', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7505, 'Api', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7506, 'API documentation', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7507, 'API Documentation', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7508, 'Application Programming Interface (API)', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7509, 'Application program interface', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7510, 'Applications programming interface', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7511, 'API', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7512, 'Hazelcast', 10, 618, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7513, 'Nuxeo', 10, 620, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7514, 'ArangoDB', 2, 621, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7515, 'AQL (ArangoDB Query Language)', 2, 621, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7516, 'AvocadoDB', 2, 621, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7517, 'Eclipse Che', 2, 622, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7518, 'Codenvy', 2, 622, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7519, 'Amazon S3', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7520, 'Amazon Simple Storage Service', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7521, 'Simple Storage Service', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7522, 'S3.amazonaws.com', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7523, 'Amazon-s3', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7524, 'AWS S3', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7525, 'Applications that use S3 API', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7526, 'User:Leoinspace/Applications that use S3 API', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7527, 'Amazon S3 server', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7528, 'Amazon s3', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7529, 'Amazon Simple Storage Service', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7530, 'S3', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7531, 'ClickHouse', 2, 624, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7532, 'Clickhouse', 2, 624, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7533, 'MinIO', 2, 625, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7534, 'Minio', 2, 625, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7535, 'Elasticsearch', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7536, 'Compass Project', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7537, 'ElasticSearch', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7538, 'Shay Banon', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7539, 'Logstash', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7540, 'Elastic search', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7541, 'Elastic Search', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7542, 'Elasticsearch BV', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7543, 'Elastic stack', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7544, 'ELK stack', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7545, 'es', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7546, 'XtraDB', 2, 627, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7547, 'Xtradb', 2, 627, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7548, 'Xtra DB', 2, 627, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7549, 'Percona XtraDB', 2, 627, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7550, 'Keycloak', 2, 628, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7551, 'JBoss SSO', 2, 628, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7552, 'PicketLink (software)', 2, 628, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7553, 'Grafana', 2, 629, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7554, 'Mattermost', 10, 630, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7555, 'Mattermost.com', 10, 630, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7556, 'Cloud IAM', 2, 632, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7557, 'Knative', 10, 633, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7558, 'Apache Cassandra', 2, 634, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7559, 'Apache cassandra', 2, 634, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7560, 'Cassandra (database)', 2, 634, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7561, 'Cassandra (software)', 2, 634, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7562, 'Cassandra software', 2, 634, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7563, 'Cassandra', 2, 634, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7564, 'Kubeflow', 10, 635, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7565, 'Qiskit', 2, 636, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7566, 'QISKit', 2, 636, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7567, 'Microsoft Azure', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7568, 'Windows Strata', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7569, 'Windows Cloud', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7570, 'Windows azure', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7571, 'Windows Azure Fabric Controller', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7572, 'Microsoft Windows Azure', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7573, 'Azure Services Platform', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7574, 'Windows Azure', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7575, 'Azure machine learning studio', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7576, 'Microsoft azure', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7577, 'Ethereum Blockchain as a Service', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7578, 'Windows Azure', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7579, 'Azure', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7580, 'Strimzi', 10, 638, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7581, 'Sematext', 10, 639, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7582, 'Eclipse Ditto', 2, 641, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7583, 'Zadara', 2, 643, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7584, 'Zadara Storage', 2, 643, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7585, 'Istio', 2, 644, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7586, 'Vault', 2, 645, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7587, 'Vault overseer', 2, 645, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7588, 'Vault (disambiguation)', 2, 645, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7589, 'Vaults', 2, 645, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7590, 'Vault (software)', 2, 645, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7591, 'HashiCorp Vault', 2, 645, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7592, 'Apache Druid', 2, 646, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7593, 'Druid (open-source data store)', 2, 646, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7594, 'etcd', 2, 647, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7595, 'Traefik', 8, 648, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7596, 'IBM Cloud', 2, 649, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7597, 'Bluemix', 2, 649, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7598, 'IBM Bluemix', 2, 649, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7599, 'OpenWhisk', 2, 649, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7600, 'CockroachDB', 2, 651, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7601, 'Cockroach DB', 2, 651, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7602, 'User:Remote50/sandbox', 2, 651, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7603, 'Cockroachlabs', 2, 651, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7604, 'Cockroach Labs', 2, 651, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7605, 'Jaeger', 10, 652, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7606, 'NATURAL', 9, 653, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7607, 'NPL', 9, 653, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7608, 'Natural Programming Language', 9, 653, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7609, 'ACUCOBOL-GT', 9, 654, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7610, 'ACUCOBOL', 9, 654, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7611, 'AcuCOBOL', 9, 654, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7612, 'Ada', 9, 655, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7613, 'MIL-STD-1815', 9, 655, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7614, 'ISO/IEC 8652', 9, 655, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7615, 'Ada 95', 9, 655, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7616, 'Ada 83', 9, 655, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7617, 'Ada 80', 9, 655, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7618, 'Ada 2012', 9, 655, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7619, 'Adaptable DAta BAse System', 2, 656, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7620, 'ADABAS', 2, 656, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7621, 'Adabas database', 2, 656, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7622, 'Application Development System Online', 9, 657, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7623, 'ADS/O', 9, 657, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7624, 'ADS', 9, 657, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7625, 'ADS/Online', 9, 657, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7626, 'Ansible', 2, 5, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7627, 'Ansible Software', 2, 5, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7628, 'batch', 9, 659, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7629, 'BAT file', 9, 659, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7630, 'batch file', 9, 659, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7631, 'Windows PowerShell', 9, 660, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7632, 'PowerShell Core', 9, 660, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7633, 'PS', 9, 660, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7634, 'Power Shell', 9, 660, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7635, 'Monal Shell', 9, 660, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7636, 'Microsoft Shell', 9, 660, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7637, 'MSH', 9, 660, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7638, 'COM+', 9, 661, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7639, 'Microsoft Component Services', 9, 661, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7640, 'COM Services', 9, 661, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7641, 'DataFlex', 9, 662, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7642, 'Dataflex', 9, 662, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7643, 'Visual DataFlex', 9, 662, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7644, 'DDS', 9, 663, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7645, 'Data distribution service', 9, 663, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7646, 'Forte 4GL', 9, 664, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7647, 'Forte', 9, 664, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7648, 'FoxPro', 9, 665, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7649, 'Foxpro', 9, 665, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7650, 'FoxPro 2', 9, 665, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7651, 'FoxPro 26', 9, 665, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7652, 'FoxPro 2.6', 9, 665, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7653, 'FPU26', 9, 665, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7654, 'IBM DB2 Purescale', 2, 666, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7655, 'DB2 Purescale', 2, 666, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7656, 'IDMS DB', 2, 667, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7657, 'IDMS Database', 2, 667, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7658, 'IDMS/DB Database', 2, 667, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7659, 'IDMS/DB DML', 9, 668, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7660, 'IDMS/DB Data Manipulation Language', 9, 668, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7661, 'IDMS DML', 9, 668, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7662, 'Jaguar', 8, 669, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7663, 'EAServer', 8, 670, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7664, 'Enterprise Application Server', 8, 670, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7665, 'Sybase Enterprise Application Server', 8, 670, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7666, 'Apache Cassandra', 2, 634, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7667, 'Cassandra', 2, 634, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7668, 'Cassandra SGBD', 2, 634, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7669, 'Netezza', 4, 672, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7670, 'IBM Netezza', 4, 672, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7671, 'OpenEdge', 9, 673, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7672, 'Progress 4GL', 9, 673, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7673, 'Progress', 9, 673, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7674, 'OpenEdge Advanced Business Language', 9, 673, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7675, 'OpenEdge ABL', 9, 673, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7676, 'Open Rapid Object Application Development', 9, 674, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7677, 'Oracle Reports', 2, 675, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7678, 'Oracle RPT', 2, 675, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7679, 'Oracle Reports 1', 2, 675, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7680, 'Oracle Reports 2.0', 2, 675, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7681, 'Oracle Reports 2.5', 2, 675, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7682, 'Oracle Reports 6i', 2, 675, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7683, 'Oracle Reports 9i', 2, 675, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7684, 'Oracle Reports 10g', 2, 675, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7685, 'SAP Replication Server', 2, 676, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7686, 'content tracker', 2, 677, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7687, 'Git', 2, 677, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7688, 'the stupid content tracker', 2, 677, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7689, 'gitlab', 2, 678, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7690, 'Virtual Storage Access Method', 2, 679, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7691, 'VSAM', 2, 679, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7692, 'BMS Map', 9, 689, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7693, 'Basic Mapping Supprt', 9, 689, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7694, 'BMS', 9, 689, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7695, 'DB400', 2, 690, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7696, 'DB/400', 2, 690, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7697, 'Integrated Language Environment', 9, 691, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7698, 'ILE', 9, 691, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7699, 'indexed sequential access method', 2, 693, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7700, 'ISAM', 2, 693, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7701, 'IBM ISAM', 2, 693, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7702, 'Oracle RDS', 2, 694, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7703, 'RDS Oracle DB', 2, 694, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7704, 'Oracle RDS Database', 2, 694, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7705, 'SAP IQ', 2, 695, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7706, 'Sybase IQ', 2, 695, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7707, 'SAP Sybase IQ', 2, 695, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7708, 'z/Linux', 2, 437, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7709, 'Linux on IBM Z', 2, 437, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7710, 'Integrated Data Store (IDS)', 2, 692, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7711, 'IDS', 2, 692, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7712, 'IDS/I', 2, 692, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7713, 'Springboot', 12, 399, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7714, 'Apache Maven', 2, 697, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7715, 'Maven', 2, 697, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7716, 'BAL', 9, 698, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7717, 'Basic Assembler Language', 9, 698, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7718, 'Basic Assembly Language', 9, 698, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7719, 'IBM Basic assembly language', 9, 698, 'others'); + +-- Table: entity_relations CREATE TABLE entity_relations ( id integer PRIMARY KEY AUTOINCREMENT, entity_parent_type_id integer NOT NULL, @@ -8709,1400 +8743,4882 @@ CREATE TABLE entity_relations ( FOREIGN KEY (entity_parent_id) REFERENCES entities (id), FOREIGN KEY (entity_child_id) REFERENCES entities (id) ); -INSERT INTO entity_relations VALUES(1,6,580,10,497,''); -INSERT INTO entity_relations VALUES(2,6,580,10,498,''); -INSERT INTO entity_relations VALUES(3,6,580,10,592,''); -INSERT INTO entity_relations VALUES(4,6,580,10,500,''); -INSERT INTO entity_relations VALUES(5,6,418,10,501,''); -INSERT INTO entity_relations VALUES(6,6,425,10,501,''); -INSERT INTO entity_relations VALUES(7,6,438,10,501,''); -INSERT INTO entity_relations VALUES(8,6,580,10,501,''); -INSERT INTO entity_relations VALUES(9,6,441,10,502,''); -INSERT INTO entity_relations VALUES(10,6,591,10,502,''); -INSERT INTO entity_relations VALUES(11,6,576,10,503,''); -INSERT INTO entity_relations VALUES(12,6,438,10,503,''); -INSERT INTO entity_relations VALUES(13,6,580,10,503,''); -INSERT INTO entity_relations VALUES(14,6,418,10,504,''); -INSERT INTO entity_relations VALUES(15,6,425,10,504,''); -INSERT INTO entity_relations VALUES(16,6,576,10,504,''); -INSERT INTO entity_relations VALUES(17,6,438,10,504,''); -INSERT INTO entity_relations VALUES(18,6,448,10,504,''); -INSERT INTO entity_relations VALUES(19,6,580,10,504,''); -INSERT INTO entity_relations VALUES(20,6,580,10,505,''); -INSERT INTO entity_relations VALUES(21,6,575,10,506,''); -INSERT INTO entity_relations VALUES(22,6,576,10,507,''); -INSERT INTO entity_relations VALUES(23,6,438,10,507,''); -INSERT INTO entity_relations VALUES(24,6,445,10,507,''); -INSERT INTO entity_relations VALUES(25,6,447,10,507,''); -INSERT INTO entity_relations VALUES(26,6,590,10,507,''); -INSERT INTO entity_relations VALUES(27,6,580,10,507,''); -INSERT INTO entity_relations VALUES(28,6,576,10,508,''); -INSERT INTO entity_relations VALUES(29,6,438,10,508,''); -INSERT INTO entity_relations VALUES(30,6,580,10,508,''); -INSERT INTO entity_relations VALUES(31,6,575,10,509,''); -INSERT INTO entity_relations VALUES(32,8,266,7,490,''); -INSERT INTO entity_relations VALUES(33,8,266,7,489,''); -INSERT INTO entity_relations VALUES(34,8,266,7,491,''); -INSERT INTO entity_relations VALUES(35,8,267,7,492,''); -INSERT INTO entity_relations VALUES(36,8,275,7,494,''); -INSERT INTO entity_relations VALUES(37,8,276,7,495,''); -INSERT INTO entity_relations VALUES(38,8,279,7,496,''); -INSERT INTO entity_relations VALUES(39,10,497,7,482,''); -INSERT INTO entity_relations VALUES(40,10,497,7,483,''); -INSERT INTO entity_relations VALUES(41,10,497,7,484,''); -INSERT INTO entity_relations VALUES(42,10,497,7,485,''); -INSERT INTO entity_relations VALUES(43,10,497,7,486,''); -INSERT INTO entity_relations VALUES(44,10,497,7,487,''); -INSERT INTO entity_relations VALUES(45,10,500,7,488,''); -INSERT INTO entity_relations VALUES(46,2,33,5,455,''); -INSERT INTO entity_relations VALUES(47,2,46,5,456,''); -INSERT INTO entity_relations VALUES(48,2,62,5,457,''); -INSERT INTO entity_relations VALUES(49,2,68,5,458,''); -INSERT INTO entity_relations VALUES(50,2,75,5,459,''); -INSERT INTO entity_relations VALUES(51,2,78,5,460,''); -INSERT INTO entity_relations VALUES(52,2,78,5,461,''); -INSERT INTO entity_relations VALUES(53,2,78,5,462,''); -INSERT INTO entity_relations VALUES(54,2,78,5,463,''); -INSERT INTO entity_relations VALUES(55,2,104,5,464,''); -INSERT INTO entity_relations VALUES(56,2,581,5,466,''); -INSERT INTO entity_relations VALUES(57,2,581,5,467,''); -INSERT INTO entity_relations VALUES(58,2,581,5,468,''); -INSERT INTO entity_relations VALUES(59,2,581,5,469,''); -INSERT INTO entity_relations VALUES(60,2,581,5,470,''); -INSERT INTO entity_relations VALUES(61,2,581,5,471,''); -INSERT INTO entity_relations VALUES(62,2,581,5,473,''); -INSERT INTO entity_relations VALUES(63,2,581,5,465,''); -INSERT INTO entity_relations VALUES(64,2,581,5,472,''); -INSERT INTO entity_relations VALUES(65,2,134,5,474,''); -INSERT INTO entity_relations VALUES(66,2,134,5,475,''); -INSERT INTO entity_relations VALUES(67,2,134,5,478,''); -INSERT INTO entity_relations VALUES(68,2,174,5,476,''); -INSERT INTO entity_relations VALUES(69,2,174,5,477,''); -INSERT INTO entity_relations VALUES(70,2,190,5,479,''); -INSERT INTO entity_relations VALUES(71,2,190,5,480,''); -INSERT INTO entity_relations VALUES(72,2,217,5,481,''); -INSERT INTO entity_relations VALUES(73,9,582,12,375,''); -INSERT INTO entity_relations VALUES(74,9,583,12,375,''); -INSERT INTO entity_relations VALUES(75,9,584,12,375,''); -INSERT INTO entity_relations VALUES(76,9,346,12,375,''); -INSERT INTO entity_relations VALUES(77,9,585,12,375,''); -INSERT INTO entity_relations VALUES(78,9,586,12,375,''); -INSERT INTO entity_relations VALUES(79,9,587,12,375,''); -INSERT INTO entity_relations VALUES(80,9,588,12,375,''); -INSERT INTO entity_relations VALUES(81,9,583,12,376,''); -INSERT INTO entity_relations VALUES(82,9,584,12,376,''); -INSERT INTO entity_relations VALUES(83,9,585,12,376,''); -INSERT INTO entity_relations VALUES(84,9,307,12,377,''); -INSERT INTO entity_relations VALUES(85,9,584,12,378,''); -INSERT INTO entity_relations VALUES(86,9,584,12,379,''); -INSERT INTO entity_relations VALUES(87,9,584,12,380,''); -INSERT INTO entity_relations VALUES(88,9,584,12,381,''); -INSERT INTO entity_relations VALUES(89,9,584,12,382,''); -INSERT INTO entity_relations VALUES(90,9,584,12,383,''); -INSERT INTO entity_relations VALUES(91,9,584,12,384,''); -INSERT INTO entity_relations VALUES(92,9,584,12,385,''); -INSERT INTO entity_relations VALUES(93,9,584,12,386,''); -INSERT INTO entity_relations VALUES(94,9,584,12,387,''); -INSERT INTO entity_relations VALUES(95,9,584,12,388,''); -INSERT INTO entity_relations VALUES(96,9,584,12,389,''); -INSERT INTO entity_relations VALUES(97,9,584,12,390,''); -INSERT INTO entity_relations VALUES(98,9,584,12,391,''); -INSERT INTO entity_relations VALUES(99,9,584,12,392,''); -INSERT INTO entity_relations VALUES(100,9,584,12,393,''); -INSERT INTO entity_relations VALUES(101,9,584,12,394,''); -INSERT INTO entity_relations VALUES(102,9,584,12,395,''); -INSERT INTO entity_relations VALUES(103,9,584,12,396,''); -INSERT INTO entity_relations VALUES(104,9,584,12,397,''); -INSERT INTO entity_relations VALUES(105,9,584,12,398,''); -INSERT INTO entity_relations VALUES(106,9,584,12,399,''); -INSERT INTO entity_relations VALUES(107,9,584,12,400,''); -INSERT INTO entity_relations VALUES(108,9,584,12,401,''); -INSERT INTO entity_relations VALUES(109,9,584,12,402,''); -INSERT INTO entity_relations VALUES(110,9,584,12,403,''); -INSERT INTO entity_relations VALUES(111,9,584,12,404,''); -INSERT INTO entity_relations VALUES(112,9,589,12,405,''); -INSERT INTO entity_relations VALUES(113,9,589,12,406,''); -INSERT INTO entity_relations VALUES(114,9,589,12,407,''); -INSERT INTO entity_relations VALUES(115,9,589,12,408,''); -INSERT INTO entity_relations VALUES(116,9,589,12,409,''); -INSERT INTO entity_relations VALUES(117,9,589,12,410,''); -INSERT INTO entity_relations VALUES(118,9,589,12,411,''); -INSERT INTO entity_relations VALUES(119,9,589,12,412,''); -INSERT INTO entity_relations VALUES(120,9,589,12,413,''); -INSERT INTO entity_relations VALUES(121,9,589,12,414,''); -INSERT INTO entity_relations VALUES(122,9,589,12,415,''); -INSERT INTO entity_relations VALUES(123,9,311,12,416,''); -INSERT INTO entity_relations VALUES(124,9,584,12,416,''); -INSERT INTO entity_relations VALUES(125,9,589,12,416,''); -INSERT INTO entity_relations VALUES(126,9,586,12,416,''); -INSERT INTO entity_relations VALUES(127,9,587,12,416,''); -INSERT INTO entity_relations VALUES(128,9,585,12,417,''); -INSERT INTO entity_relations VALUES(129,6,580,9,299,''); -INSERT INTO entity_relations VALUES(130,6,576,9,300,''); -INSERT INTO entity_relations VALUES(131,6,578,9,300,''); -INSERT INTO entity_relations VALUES(132,6,575,9,301,''); -INSERT INTO entity_relations VALUES(133,6,580,9,302,''); -INSERT INTO entity_relations VALUES(134,6,575,9,303,''); -INSERT INTO entity_relations VALUES(135,6,580,9,304,''); -INSERT INTO entity_relations VALUES(136,6,575,9,583,''); -INSERT INTO entity_relations VALUES(137,6,575,9,307,''); -INSERT INTO entity_relations VALUES(138,6,593,9,308,''); -INSERT INTO entity_relations VALUES(139,6,577,9,309,''); -INSERT INTO entity_relations VALUES(140,6,441,9,594,''); -INSERT INTO entity_relations VALUES(141,6,442,9,594,''); -INSERT INTO entity_relations VALUES(142,6,578,9,594,''); -INSERT INTO entity_relations VALUES(143,6,576,9,594,''); -INSERT INTO entity_relations VALUES(144,6,595,9,594,''); -INSERT INTO entity_relations VALUES(145,6,580,9,594,''); -INSERT INTO entity_relations VALUES(146,6,591,9,594,''); -INSERT INTO entity_relations VALUES(147,6,580,9,311,''); -INSERT INTO entity_relations VALUES(148,6,575,9,312,''); -INSERT INTO entity_relations VALUES(149,6,418,9,313,''); -INSERT INTO entity_relations VALUES(150,6,425,9,313,''); -INSERT INTO entity_relations VALUES(151,6,576,9,313,''); -INSERT INTO entity_relations VALUES(152,6,438,9,313,''); -INSERT INTO entity_relations VALUES(153,6,580,9,313,''); -INSERT INTO entity_relations VALUES(154,6,576,9,314,''); -INSERT INTO entity_relations VALUES(155,6,441,9,314,''); -INSERT INTO entity_relations VALUES(156,6,578,9,314,''); -INSERT INTO entity_relations VALUES(157,6,580,9,314,''); -INSERT INTO entity_relations VALUES(158,6,608,9,314,''); -INSERT INTO entity_relations VALUES(159,6,591,9,314,''); -INSERT INTO entity_relations VALUES(160,6,575,9,315,''); -INSERT INTO entity_relations VALUES(161,6,575,9,316,''); -INSERT INTO entity_relations VALUES(162,6,575,9,596,''); -INSERT INTO entity_relations VALUES(163,6,575,9,319,''); -INSERT INTO entity_relations VALUES(164,6,575,9,320,''); -INSERT INTO entity_relations VALUES(165,6,597,9,321,''); -INSERT INTO entity_relations VALUES(166,6,577,9,321,''); -INSERT INTO entity_relations VALUES(167,6,442,9,321,''); -INSERT INTO entity_relations VALUES(168,6,443,9,321,''); -INSERT INTO entity_relations VALUES(169,6,578,9,321,''); -INSERT INTO entity_relations VALUES(170,6,608,9,321,''); -INSERT INTO entity_relations VALUES(171,6,575,9,322,''); -INSERT INTO entity_relations VALUES(172,6,576,9,323,''); -INSERT INTO entity_relations VALUES(173,6,438,9,323,''); -INSERT INTO entity_relations VALUES(174,6,579,9,323,''); -INSERT INTO entity_relations VALUES(175,6,580,9,323,''); -INSERT INTO entity_relations VALUES(176,6,575,9,324,''); -INSERT INTO entity_relations VALUES(177,6,575,9,325,''); -INSERT INTO entity_relations VALUES(178,6,575,9,326,''); -INSERT INTO entity_relations VALUES(179,6,575,9,327,''); -INSERT INTO entity_relations VALUES(180,6,441,9,328,''); -INSERT INTO entity_relations VALUES(181,6,598,9,328,''); -INSERT INTO entity_relations VALUES(182,6,608,9,328,''); -INSERT INTO entity_relations VALUES(183,6,591,9,328,''); -INSERT INTO entity_relations VALUES(184,6,424,9,329,''); -INSERT INTO entity_relations VALUES(185,6,575,9,330,''); -INSERT INTO entity_relations VALUES(186,6,575,9,584,''); -INSERT INTO entity_relations VALUES(187,6,575,9,589,''); -INSERT INTO entity_relations VALUES(188,6,597,9,338,''); -INSERT INTO entity_relations VALUES(189,6,577,9,338,''); -INSERT INTO entity_relations VALUES(190,6,591,9,338,''); -INSERT INTO entity_relations VALUES(191,6,576,9,339,''); -INSERT INTO entity_relations VALUES(192,6,578,9,339,''); -INSERT INTO entity_relations VALUES(193,6,580,9,339,''); -INSERT INTO entity_relations VALUES(194,6,580,9,340,''); -INSERT INTO entity_relations VALUES(195,6,575,9,341,''); -INSERT INTO entity_relations VALUES(196,6,431,9,342,''); -INSERT INTO entity_relations VALUES(197,6,442,9,342,''); -INSERT INTO entity_relations VALUES(198,6,445,9,342,''); -INSERT INTO entity_relations VALUES(199,6,448,9,342,''); -INSERT INTO entity_relations VALUES(200,6,449,9,342,''); -INSERT INTO entity_relations VALUES(201,6,580,9,342,''); -INSERT INTO entity_relations VALUES(202,6,575,9,343,''); -INSERT INTO entity_relations VALUES(203,6,575,9,344,''); -INSERT INTO entity_relations VALUES(204,6,575,9,599,''); -INSERT INTO entity_relations VALUES(205,6,576,9,585,''); -INSERT INTO entity_relations VALUES(206,6,438,9,585,''); -INSERT INTO entity_relations VALUES(207,6,578,9,585,''); -INSERT INTO entity_relations VALUES(208,6,580,9,585,''); -INSERT INTO entity_relations VALUES(209,6,576,9,350,''); -INSERT INTO entity_relations VALUES(210,6,438,9,350,''); -INSERT INTO entity_relations VALUES(211,6,578,9,350,''); -INSERT INTO entity_relations VALUES(212,6,580,9,350,''); -INSERT INTO entity_relations VALUES(213,6,439,9,351,''); -INSERT INTO entity_relations VALUES(214,6,445,9,351,''); -INSERT INTO entity_relations VALUES(215,6,580,9,351,''); -INSERT INTO entity_relations VALUES(216,6,608,9,351,''); -INSERT INTO entity_relations VALUES(217,6,575,9,352,''); -INSERT INTO entity_relations VALUES(218,6,575,9,353,''); -INSERT INTO entity_relations VALUES(219,6,575,9,587,''); -INSERT INTO entity_relations VALUES(220,6,575,9,355,''); -INSERT INTO entity_relations VALUES(221,6,424,9,356,''); -INSERT INTO entity_relations VALUES(222,6,577,9,356,''); -INSERT INTO entity_relations VALUES(223,6,443,9,356,''); -INSERT INTO entity_relations VALUES(224,6,445,9,356,''); -INSERT INTO entity_relations VALUES(225,6,608,9,356,''); -INSERT INTO entity_relations VALUES(226,6,591,9,356,''); -INSERT INTO entity_relations VALUES(227,6,424,9,357,''); -INSERT INTO entity_relations VALUES(228,6,441,9,357,''); -INSERT INTO entity_relations VALUES(229,6,442,9,357,''); -INSERT INTO entity_relations VALUES(230,6,580,9,357,''); -INSERT INTO entity_relations VALUES(231,6,591,9,357,''); -INSERT INTO entity_relations VALUES(232,6,575,9,358,''); -INSERT INTO entity_relations VALUES(233,6,575,9,359,''); -INSERT INTO entity_relations VALUES(234,6,575,9,360,''); -INSERT INTO entity_relations VALUES(235,6,575,9,361,''); -INSERT INTO entity_relations VALUES(236,6,576,9,362,''); -INSERT INTO entity_relations VALUES(237,6,438,9,362,''); -INSERT INTO entity_relations VALUES(238,6,578,9,362,''); -INSERT INTO entity_relations VALUES(239,6,580,9,362,''); -INSERT INTO entity_relations VALUES(240,6,576,9,363,''); -INSERT INTO entity_relations VALUES(241,6,438,9,363,''); -INSERT INTO entity_relations VALUES(242,6,578,9,363,''); -INSERT INTO entity_relations VALUES(243,6,580,9,363,''); -INSERT INTO entity_relations VALUES(244,6,576,9,364,''); -INSERT INTO entity_relations VALUES(245,6,438,9,364,''); -INSERT INTO entity_relations VALUES(246,6,441,9,364,''); -INSERT INTO entity_relations VALUES(247,6,447,9,364,''); -INSERT INTO entity_relations VALUES(248,6,580,9,364,''); -INSERT INTO entity_relations VALUES(249,6,576,9,365,''); -INSERT INTO entity_relations VALUES(250,6,438,9,365,''); -INSERT INTO entity_relations VALUES(251,6,578,9,365,''); -INSERT INTO entity_relations VALUES(252,6,580,9,365,''); -INSERT INTO entity_relations VALUES(253,6,575,9,366,''); -INSERT INTO entity_relations VALUES(254,6,575,9,367,''); -INSERT INTO entity_relations VALUES(255,6,418,9,368,''); -INSERT INTO entity_relations VALUES(256,6,425,9,368,''); -INSERT INTO entity_relations VALUES(257,6,576,9,368,''); -INSERT INTO entity_relations VALUES(258,6,438,9,368,''); -INSERT INTO entity_relations VALUES(259,6,578,9,368,''); -INSERT INTO entity_relations VALUES(260,6,579,9,368,''); -INSERT INTO entity_relations VALUES(261,6,580,9,368,''); -INSERT INTO entity_relations VALUES(262,6,580,9,369,''); -INSERT INTO entity_relations VALUES(263,6,593,9,370,''); -INSERT INTO entity_relations VALUES(264,6,580,9,370,''); -INSERT INTO entity_relations VALUES(265,6,438,9,371,''); -INSERT INTO entity_relations VALUES(266,6,580,9,371,''); -INSERT INTO entity_relations VALUES(267,6,580,9,372,''); -INSERT INTO entity_relations VALUES(268,6,575,9,373,''); -INSERT INTO entity_relations VALUES(269,6,580,9,374,''); -INSERT INTO entity_relations VALUES(270,6,576,8,259,''); -INSERT INTO entity_relations VALUES(271,6,445,8,259,''); -INSERT INTO entity_relations VALUES(272,6,448,8,259,''); -INSERT INTO entity_relations VALUES(273,6,449,8,259,''); -INSERT INTO entity_relations VALUES(274,6,580,8,259,''); -INSERT INTO entity_relations VALUES(275,6,434,8,260,''); -INSERT INTO entity_relations VALUES(276,6,436,8,260,''); -INSERT INTO entity_relations VALUES(277,6,448,8,260,''); -INSERT INTO entity_relations VALUES(278,6,580,8,260,''); -INSERT INTO entity_relations VALUES(279,6,576,8,260,''); -INSERT INTO entity_relations VALUES(280,6,578,8,260,''); -INSERT INTO entity_relations VALUES(281,6,438,8,260,''); -INSERT INTO entity_relations VALUES(282,6,576,8,261,''); -INSERT INTO entity_relations VALUES(283,6,580,8,261,''); -INSERT INTO entity_relations VALUES(284,6,432,8,600,''); -INSERT INTO entity_relations VALUES(285,6,434,8,600,''); -INSERT INTO entity_relations VALUES(286,6,435,8,600,''); -INSERT INTO entity_relations VALUES(287,6,445,8,600,''); -INSERT INTO entity_relations VALUES(288,6,448,8,600,''); -INSERT INTO entity_relations VALUES(289,6,449,8,600,''); -INSERT INTO entity_relations VALUES(290,6,580,8,600,''); -INSERT INTO entity_relations VALUES(291,6,434,8,263,''); -INSERT INTO entity_relations VALUES(292,6,435,8,263,''); -INSERT INTO entity_relations VALUES(293,6,436,8,263,''); -INSERT INTO entity_relations VALUES(294,6,438,8,263,''); -INSERT INTO entity_relations VALUES(295,6,445,8,263,''); -INSERT INTO entity_relations VALUES(296,6,448,8,263,''); -INSERT INTO entity_relations VALUES(297,6,580,8,263,''); -INSERT INTO entity_relations VALUES(298,6,576,8,264,''); -INSERT INTO entity_relations VALUES(299,6,438,8,264,''); -INSERT INTO entity_relations VALUES(300,6,445,8,264,''); -INSERT INTO entity_relations VALUES(301,6,447,8,264,''); -INSERT INTO entity_relations VALUES(302,6,590,8,264,''); -INSERT INTO entity_relations VALUES(303,6,448,8,264,''); -INSERT INTO entity_relations VALUES(304,6,580,8,609,''); -INSERT INTO entity_relations VALUES(305,6,576,8,267,''); -INSERT INTO entity_relations VALUES(306,6,434,8,267,''); -INSERT INTO entity_relations VALUES(307,6,578,8,267,''); -INSERT INTO entity_relations VALUES(308,6,448,8,267,''); -INSERT INTO entity_relations VALUES(309,6,580,8,267,''); -INSERT INTO entity_relations VALUES(310,6,580,8,267,''); -INSERT INTO entity_relations VALUES(311,6,425,8,269,''); -INSERT INTO entity_relations VALUES(312,6,576,8,269,''); -INSERT INTO entity_relations VALUES(313,6,438,8,269,''); -INSERT INTO entity_relations VALUES(314,6,576,8,270,''); -INSERT INTO entity_relations VALUES(315,6,438,8,270,''); -INSERT INTO entity_relations VALUES(316,6,580,8,270,''); -INSERT INTO entity_relations VALUES(317,6,576,8,271,''); -INSERT INTO entity_relations VALUES(318,6,438,8,271,''); -INSERT INTO entity_relations VALUES(319,6,578,8,271,''); -INSERT INTO entity_relations VALUES(320,6,580,8,271,''); -INSERT INTO entity_relations VALUES(321,6,448,8,272,''); -INSERT INTO entity_relations VALUES(322,6,580,8,272,''); -INSERT INTO entity_relations VALUES(323,6,576,8,273,''); -INSERT INTO entity_relations VALUES(324,6,445,8,273,''); -INSERT INTO entity_relations VALUES(325,6,448,8,273,''); -INSERT INTO entity_relations VALUES(326,6,449,8,273,''); -INSERT INTO entity_relations VALUES(327,6,580,8,273,''); -INSERT INTO entity_relations VALUES(328,6,576,8,274,''); -INSERT INTO entity_relations VALUES(329,6,438,8,274,''); -INSERT INTO entity_relations VALUES(330,6,445,8,274,''); -INSERT INTO entity_relations VALUES(331,6,579,8,274,''); -INSERT INTO entity_relations VALUES(332,6,449,8,274,''); -INSERT INTO entity_relations VALUES(333,6,580,8,274,''); -INSERT INTO entity_relations VALUES(334,6,580,8,610,''); -INSERT INTO entity_relations VALUES(335,6,432,8,610,''); -INSERT INTO entity_relations VALUES(336,6,434,8,610,''); -INSERT INTO entity_relations VALUES(337,6,435,8,610,''); -INSERT INTO entity_relations VALUES(338,6,438,8,610,''); -INSERT INTO entity_relations VALUES(339,6,445,8,610,''); -INSERT INTO entity_relations VALUES(340,6,448,8,610,''); -INSERT INTO entity_relations VALUES(341,6,449,8,610,''); -INSERT INTO entity_relations VALUES(342,6,432,8,276,''); -INSERT INTO entity_relations VALUES(343,6,434,8,276,''); -INSERT INTO entity_relations VALUES(344,6,435,8,276,''); -INSERT INTO entity_relations VALUES(345,6,445,8,276,''); -INSERT INTO entity_relations VALUES(346,6,448,8,276,''); -INSERT INTO entity_relations VALUES(347,6,449,8,276,''); -INSERT INTO entity_relations VALUES(348,6,580,8,276,''); -INSERT INTO entity_relations VALUES(349,6,576,8,278,''); -INSERT INTO entity_relations VALUES(350,6,438,8,278,''); -INSERT INTO entity_relations VALUES(351,6,578,8,278,''); -INSERT INTO entity_relations VALUES(352,6,580,8,278,''); -INSERT INTO entity_relations VALUES(353,6,576,8,280,''); -INSERT INTO entity_relations VALUES(354,6,438,8,280,''); -INSERT INTO entity_relations VALUES(355,6,580,8,280,''); -INSERT INTO entity_relations VALUES(356,6,580,8,282,''); -INSERT INTO entity_relations VALUES(357,6,432,8,262,''); -INSERT INTO entity_relations VALUES(358,6,434,8,262,''); -INSERT INTO entity_relations VALUES(359,6,435,8,262,''); -INSERT INTO entity_relations VALUES(360,6,445,8,262,''); -INSERT INTO entity_relations VALUES(361,6,448,8,262,''); -INSERT INTO entity_relations VALUES(362,6,449,8,262,''); -INSERT INTO entity_relations VALUES(363,6,580,8,262,''); -INSERT INTO entity_relations VALUES(364,6,424,8,283,''); -INSERT INTO entity_relations VALUES(365,6,576,8,283,''); -INSERT INTO entity_relations VALUES(366,6,445,8,283,''); -INSERT INTO entity_relations VALUES(367,6,448,8,283,''); -INSERT INTO entity_relations VALUES(368,6,449,8,283,''); -INSERT INTO entity_relations VALUES(369,6,580,8,283,''); -INSERT INTO entity_relations VALUES(370,6,424,8,284,''); -INSERT INTO entity_relations VALUES(371,6,576,8,284,''); -INSERT INTO entity_relations VALUES(372,6,441,8,284,''); -INSERT INTO entity_relations VALUES(373,6,445,8,284,''); -INSERT INTO entity_relations VALUES(374,6,448,8,284,''); -INSERT INTO entity_relations VALUES(375,6,449,8,284,''); -INSERT INTO entity_relations VALUES(376,6,580,8,284,''); -INSERT INTO entity_relations VALUES(377,6,580,8,285,''); -INSERT INTO entity_relations VALUES(378,6,424,8,285,''); -INSERT INTO entity_relations VALUES(379,6,576,8,285,''); -INSERT INTO entity_relations VALUES(380,6,441,8,285,''); -INSERT INTO entity_relations VALUES(381,6,445,8,285,''); -INSERT INTO entity_relations VALUES(382,6,448,8,285,''); -INSERT INTO entity_relations VALUES(383,6,449,8,285,''); -INSERT INTO entity_relations VALUES(384,6,580,8,285,''); -INSERT INTO entity_relations VALUES(385,6,424,8,286,''); -INSERT INTO entity_relations VALUES(386,6,576,8,286,''); -INSERT INTO entity_relations VALUES(387,6,441,8,286,''); -INSERT INTO entity_relations VALUES(388,6,445,8,286,''); -INSERT INTO entity_relations VALUES(389,6,448,8,286,''); -INSERT INTO entity_relations VALUES(390,6,449,8,286,''); -INSERT INTO entity_relations VALUES(391,6,580,8,286,''); -INSERT INTO entity_relations VALUES(392,6,424,8,287,''); -INSERT INTO entity_relations VALUES(393,6,576,8,287,''); -INSERT INTO entity_relations VALUES(394,6,441,8,287,''); -INSERT INTO entity_relations VALUES(395,6,445,8,287,''); -INSERT INTO entity_relations VALUES(396,6,448,8,287,''); -INSERT INTO entity_relations VALUES(397,6,449,8,287,''); -INSERT INTO entity_relations VALUES(398,6,580,8,287,''); -INSERT INTO entity_relations VALUES(399,6,445,8,265,''); -INSERT INTO entity_relations VALUES(400,6,449,8,265,''); -INSERT INTO entity_relations VALUES(401,6,576,8,265,''); -INSERT INTO entity_relations VALUES(402,6,448,8,265,''); -INSERT INTO entity_relations VALUES(403,6,580,8,265,''); -INSERT INTO entity_relations VALUES(404,6,424,8,265,''); -INSERT INTO entity_relations VALUES(405,6,441,8,265,''); -INSERT INTO entity_relations VALUES(406,6,434,8,277,''); -INSERT INTO entity_relations VALUES(407,6,432,8,277,''); -INSERT INTO entity_relations VALUES(408,6,427,8,277,''); -INSERT INTO entity_relations VALUES(409,6,435,8,277,''); -INSERT INTO entity_relations VALUES(410,6,436,8,277,''); -INSERT INTO entity_relations VALUES(411,6,448,8,277,''); -INSERT INTO entity_relations VALUES(412,6,580,8,277,''); -INSERT INTO entity_relations VALUES(413,6,438,8,277,''); -INSERT INTO entity_relations VALUES(414,6,445,8,279,''); -INSERT INTO entity_relations VALUES(415,6,449,8,279,''); -INSERT INTO entity_relations VALUES(416,6,576,8,279,''); -INSERT INTO entity_relations VALUES(417,6,448,8,279,''); -INSERT INTO entity_relations VALUES(418,6,580,8,281,''); -INSERT INTO entity_relations VALUES(419,6,445,8,281,''); -INSERT INTO entity_relations VALUES(420,6,449,8,281,''); -INSERT INTO entity_relations VALUES(421,6,445,8,281,''); -INSERT INTO entity_relations VALUES(422,6,449,8,281,''); -INSERT INTO entity_relations VALUES(423,6,580,8,281,''); -INSERT INTO entity_relations VALUES(424,6,448,8,281,''); -INSERT INTO entity_relations VALUES(425,6,434,8,281,''); -INSERT INTO entity_relations VALUES(426,6,576,8,267,''); -INSERT INTO entity_relations VALUES(427,6,580,8,267,''); -INSERT INTO entity_relations VALUES(428,6,578,8,267,''); -INSERT INTO entity_relations VALUES(429,6,441,2,1,''); -INSERT INTO entity_relations VALUES(430,6,575,2,3,''); -INSERT INTO entity_relations VALUES(431,6,576,2,5,''); -INSERT INTO entity_relations VALUES(432,6,438,2,5,''); -INSERT INTO entity_relations VALUES(433,6,578,2,5,''); -INSERT INTO entity_relations VALUES(434,6,580,2,5,''); -INSERT INTO entity_relations VALUES(435,6,576,2,6,''); -INSERT INTO entity_relations VALUES(436,6,438,2,6,''); -INSERT INTO entity_relations VALUES(437,6,578,2,6,''); -INSERT INTO entity_relations VALUES(438,6,580,2,6,''); -INSERT INTO entity_relations VALUES(439,6,576,2,8,''); -INSERT INTO entity_relations VALUES(440,6,438,2,8,''); -INSERT INTO entity_relations VALUES(441,6,578,2,8,''); -INSERT INTO entity_relations VALUES(442,6,580,2,8,''); -INSERT INTO entity_relations VALUES(443,6,576,2,9,''); -INSERT INTO entity_relations VALUES(444,6,438,2,9,''); -INSERT INTO entity_relations VALUES(445,6,580,2,9,''); -INSERT INTO entity_relations VALUES(446,6,578,2,9,''); -INSERT INTO entity_relations VALUES(447,6,576,2,10,''); -INSERT INTO entity_relations VALUES(448,6,438,2,10,''); -INSERT INTO entity_relations VALUES(449,6,578,2,10,''); -INSERT INTO entity_relations VALUES(450,6,580,2,10,''); -INSERT INTO entity_relations VALUES(451,6,576,2,11,''); -INSERT INTO entity_relations VALUES(452,6,438,2,11,''); -INSERT INTO entity_relations VALUES(453,6,580,2,11,''); -INSERT INTO entity_relations VALUES(454,6,419,2,12,''); -INSERT INTO entity_relations VALUES(455,6,427,2,12,''); -INSERT INTO entity_relations VALUES(456,6,429,2,12,''); -INSERT INTO entity_relations VALUES(457,6,431,2,12,''); -INSERT INTO entity_relations VALUES(458,6,434,2,12,''); -INSERT INTO entity_relations VALUES(459,6,435,2,12,''); -INSERT INTO entity_relations VALUES(460,6,436,2,12,''); -INSERT INTO entity_relations VALUES(461,6,438,2,12,''); -INSERT INTO entity_relations VALUES(462,6,443,2,12,''); -INSERT INTO entity_relations VALUES(463,6,579,2,12,''); -INSERT INTO entity_relations VALUES(464,6,449,2,12,''); -INSERT INTO entity_relations VALUES(465,6,580,2,12,''); -INSERT INTO entity_relations VALUES(466,6,575,2,13,''); -INSERT INTO entity_relations VALUES(467,6,576,2,14,''); -INSERT INTO entity_relations VALUES(468,6,438,2,14,''); -INSERT INTO entity_relations VALUES(469,6,579,2,14,''); -INSERT INTO entity_relations VALUES(470,6,580,2,14,''); -INSERT INTO entity_relations VALUES(471,6,427,2,15,''); -INSERT INTO entity_relations VALUES(472,6,434,2,15,''); -INSERT INTO entity_relations VALUES(473,6,580,2,15,''); -INSERT INTO entity_relations VALUES(474,6,576,2,16,''); -INSERT INTO entity_relations VALUES(475,6,445,2,16,''); -INSERT INTO entity_relations VALUES(476,6,448,2,16,''); -INSERT INTO entity_relations VALUES(477,6,449,2,16,''); -INSERT INTO entity_relations VALUES(478,6,580,2,16,''); -INSERT INTO entity_relations VALUES(479,6,576,2,19,''); -INSERT INTO entity_relations VALUES(480,6,445,2,19,''); -INSERT INTO entity_relations VALUES(481,6,448,2,19,''); -INSERT INTO entity_relations VALUES(482,6,449,2,19,''); -INSERT INTO entity_relations VALUES(483,6,580,2,19,''); -INSERT INTO entity_relations VALUES(484,6,427,2,21,''); -INSERT INTO entity_relations VALUES(485,6,431,2,21,''); -INSERT INTO entity_relations VALUES(486,6,432,2,21,''); -INSERT INTO entity_relations VALUES(487,6,434,2,21,''); -INSERT INTO entity_relations VALUES(488,6,435,2,21,''); -INSERT INTO entity_relations VALUES(489,6,580,2,21,''); -INSERT INTO entity_relations VALUES(490,6,576,2,23,''); -INSERT INTO entity_relations VALUES(491,6,445,2,23,''); -INSERT INTO entity_relations VALUES(492,6,448,2,23,''); -INSERT INTO entity_relations VALUES(493,6,580,2,23,''); -INSERT INTO entity_relations VALUES(494,6,424,2,25,''); -INSERT INTO entity_relations VALUES(495,6,593,2,25,''); -INSERT INTO entity_relations VALUES(496,6,439,2,25,''); -INSERT INTO entity_relations VALUES(497,6,443,2,25,''); -INSERT INTO entity_relations VALUES(498,6,578,2,25,''); -INSERT INTO entity_relations VALUES(499,6,580,2,25,''); -INSERT INTO entity_relations VALUES(500,6,591,2,25,''); -INSERT INTO entity_relations VALUES(501,6,575,2,26,''); -INSERT INTO entity_relations VALUES(502,6,427,2,27,''); -INSERT INTO entity_relations VALUES(503,6,429,2,27,''); -INSERT INTO entity_relations VALUES(504,6,432,2,27,''); -INSERT INTO entity_relations VALUES(505,6,434,2,27,''); -INSERT INTO entity_relations VALUES(506,6,435,2,27,''); -INSERT INTO entity_relations VALUES(507,6,436,2,27,''); -INSERT INTO entity_relations VALUES(508,6,438,2,27,''); -INSERT INTO entity_relations VALUES(509,6,445,2,27,''); -INSERT INTO entity_relations VALUES(510,6,447,2,27,''); -INSERT INTO entity_relations VALUES(511,6,448,2,27,''); -INSERT INTO entity_relations VALUES(512,6,580,2,27,''); -INSERT INTO entity_relations VALUES(513,6,448,2,29,''); -INSERT INTO entity_relations VALUES(514,6,580,2,29,''); -INSERT INTO entity_relations VALUES(515,6,576,2,31,''); -INSERT INTO entity_relations VALUES(516,6,580,2,32,''); -INSERT INTO entity_relations VALUES(517,6,576,2,32,''); -INSERT INTO entity_relations VALUES(518,6,575,2,33,''); -INSERT INTO entity_relations VALUES(519,6,418,2,36,''); -INSERT INTO entity_relations VALUES(520,6,425,2,36,''); -INSERT INTO entity_relations VALUES(521,6,434,2,36,''); -INSERT INTO entity_relations VALUES(522,6,435,2,36,''); -INSERT INTO entity_relations VALUES(523,6,436,2,36,''); -INSERT INTO entity_relations VALUES(524,6,445,2,36,''); -INSERT INTO entity_relations VALUES(525,6,448,2,36,''); -INSERT INTO entity_relations VALUES(526,6,580,2,36,''); -INSERT INTO entity_relations VALUES(527,6,427,2,37,''); -INSERT INTO entity_relations VALUES(528,6,434,2,37,''); -INSERT INTO entity_relations VALUES(529,6,435,2,37,''); -INSERT INTO entity_relations VALUES(530,6,436,2,37,''); -INSERT INTO entity_relations VALUES(531,6,438,2,37,''); -INSERT INTO entity_relations VALUES(532,6,580,2,37,''); -INSERT INTO entity_relations VALUES(533,6,575,2,38,''); -INSERT INTO entity_relations VALUES(534,6,580,2,39,''); -INSERT INTO entity_relations VALUES(535,6,434,2,40,''); -INSERT INTO entity_relations VALUES(536,6,435,2,40,''); -INSERT INTO entity_relations VALUES(537,6,441,2,40,''); -INSERT INTO entity_relations VALUES(538,6,445,2,40,''); -INSERT INTO entity_relations VALUES(539,6,448,2,40,''); -INSERT INTO entity_relations VALUES(540,6,449,2,40,''); -INSERT INTO entity_relations VALUES(541,6,580,2,40,''); -INSERT INTO entity_relations VALUES(542,6,580,2,41,''); -INSERT INTO entity_relations VALUES(543,6,580,2,42,''); -INSERT INTO entity_relations VALUES(544,6,576,2,43,''); -INSERT INTO entity_relations VALUES(545,6,438,2,43,''); -INSERT INTO entity_relations VALUES(546,6,445,2,43,''); -INSERT INTO entity_relations VALUES(547,6,580,2,43,''); -INSERT INTO entity_relations VALUES(548,6,576,2,44,''); -INSERT INTO entity_relations VALUES(549,6,578,2,44,''); -INSERT INTO entity_relations VALUES(550,6,580,2,44,''); -INSERT INTO entity_relations VALUES(551,6,576,2,45,''); -INSERT INTO entity_relations VALUES(552,6,438,2,45,''); -INSERT INTO entity_relations VALUES(553,6,578,2,45,''); -INSERT INTO entity_relations VALUES(554,6,580,2,45,''); -INSERT INTO entity_relations VALUES(555,6,576,2,46,''); -INSERT INTO entity_relations VALUES(556,6,438,2,46,''); -INSERT INTO entity_relations VALUES(557,6,448,2,46,''); -INSERT INTO entity_relations VALUES(558,6,580,2,46,''); -INSERT INTO entity_relations VALUES(559,6,427,2,47,''); -INSERT INTO entity_relations VALUES(560,6,429,2,47,''); -INSERT INTO entity_relations VALUES(561,6,431,2,47,''); -INSERT INTO entity_relations VALUES(562,6,432,2,47,''); -INSERT INTO entity_relations VALUES(563,6,434,2,47,''); -INSERT INTO entity_relations VALUES(564,6,435,2,47,''); -INSERT INTO entity_relations VALUES(565,6,436,2,47,''); -INSERT INTO entity_relations VALUES(566,6,580,2,47,''); -INSERT INTO entity_relations VALUES(567,6,575,2,50,''); -INSERT INTO entity_relations VALUES(568,6,425,2,51,''); -INSERT INTO entity_relations VALUES(569,6,438,2,51,''); -INSERT INTO entity_relations VALUES(570,6,580,2,51,''); -INSERT INTO entity_relations VALUES(571,6,418,2,54,''); -INSERT INTO entity_relations VALUES(572,6,425,2,54,''); -INSERT INTO entity_relations VALUES(573,6,438,2,54,''); -INSERT INTO entity_relations VALUES(574,6,580,2,54,''); -INSERT INTO entity_relations VALUES(575,6,427,2,57,''); -INSERT INTO entity_relations VALUES(576,6,429,2,57,''); -INSERT INTO entity_relations VALUES(577,6,432,2,57,''); -INSERT INTO entity_relations VALUES(578,6,434,2,57,''); -INSERT INTO entity_relations VALUES(579,6,435,2,57,''); -INSERT INTO entity_relations VALUES(580,6,436,2,57,''); -INSERT INTO entity_relations VALUES(581,6,580,2,57,''); -INSERT INTO entity_relations VALUES(582,6,449,2,58,''); -INSERT INTO entity_relations VALUES(583,6,449,2,59,''); -INSERT INTO entity_relations VALUES(584,6,434,2,60,''); -INSERT INTO entity_relations VALUES(585,6,435,2,60,''); -INSERT INTO entity_relations VALUES(586,6,447,2,60,''); -INSERT INTO entity_relations VALUES(587,6,448,2,60,''); -INSERT INTO entity_relations VALUES(588,6,580,2,60,''); -INSERT INTO entity_relations VALUES(589,6,575,2,61,''); -INSERT INTO entity_relations VALUES(590,6,434,2,65,''); -INSERT INTO entity_relations VALUES(591,6,435,2,65,''); -INSERT INTO entity_relations VALUES(592,6,437,2,65,''); -INSERT INTO entity_relations VALUES(593,6,445,2,65,''); -INSERT INTO entity_relations VALUES(594,6,448,2,65,''); -INSERT INTO entity_relations VALUES(595,6,449,2,65,''); -INSERT INTO entity_relations VALUES(596,6,580,2,65,''); -INSERT INTO entity_relations VALUES(597,6,576,2,66,''); -INSERT INTO entity_relations VALUES(598,6,445,2,66,''); -INSERT INTO entity_relations VALUES(599,6,448,2,66,''); -INSERT INTO entity_relations VALUES(600,6,449,2,66,''); -INSERT INTO entity_relations VALUES(601,6,580,2,66,''); -INSERT INTO entity_relations VALUES(602,6,576,2,67,''); -INSERT INTO entity_relations VALUES(603,6,445,2,67,''); -INSERT INTO entity_relations VALUES(604,6,580,2,67,''); -INSERT INTO entity_relations VALUES(605,6,576,2,68,''); -INSERT INTO entity_relations VALUES(606,6,441,2,68,''); -INSERT INTO entity_relations VALUES(607,6,445,2,68,''); -INSERT INTO entity_relations VALUES(608,6,448,2,68,''); -INSERT INTO entity_relations VALUES(609,6,449,2,68,''); -INSERT INTO entity_relations VALUES(610,6,580,2,68,''); -INSERT INTO entity_relations VALUES(611,6,580,2,71,''); -INSERT INTO entity_relations VALUES(612,6,418,2,72,''); -INSERT INTO entity_relations VALUES(613,6,425,2,72,''); -INSERT INTO entity_relations VALUES(614,6,576,2,72,''); -INSERT INTO entity_relations VALUES(615,6,438,2,72,''); -INSERT INTO entity_relations VALUES(616,6,445,2,72,''); -INSERT INTO entity_relations VALUES(617,6,448,2,72,''); -INSERT INTO entity_relations VALUES(618,6,449,2,72,''); -INSERT INTO entity_relations VALUES(619,6,580,2,72,''); -INSERT INTO entity_relations VALUES(620,6,424,2,79,''); -INSERT INTO entity_relations VALUES(621,6,576,2,79,''); -INSERT INTO entity_relations VALUES(622,6,445,2,79,''); -INSERT INTO entity_relations VALUES(623,6,448,2,79,''); -INSERT INTO entity_relations VALUES(624,6,449,2,79,''); -INSERT INTO entity_relations VALUES(625,6,580,2,79,''); -INSERT INTO entity_relations VALUES(626,6,424,2,81,''); -INSERT INTO entity_relations VALUES(627,6,576,2,81,''); -INSERT INTO entity_relations VALUES(628,6,441,2,81,''); -INSERT INTO entity_relations VALUES(629,6,445,2,81,''); -INSERT INTO entity_relations VALUES(630,6,448,2,81,''); -INSERT INTO entity_relations VALUES(631,6,449,2,81,''); -INSERT INTO entity_relations VALUES(632,6,580,2,81,''); -INSERT INTO entity_relations VALUES(633,6,591,2,81,''); -INSERT INTO entity_relations VALUES(634,6,434,2,82,''); -INSERT INTO entity_relations VALUES(635,6,435,2,82,''); -INSERT INTO entity_relations VALUES(636,6,445,2,82,''); -INSERT INTO entity_relations VALUES(637,6,580,2,82,''); -INSERT INTO entity_relations VALUES(638,6,576,2,83,''); -INSERT INTO entity_relations VALUES(639,6,441,2,83,''); -INSERT INTO entity_relations VALUES(640,6,445,2,83,''); -INSERT INTO entity_relations VALUES(641,6,448,2,83,''); -INSERT INTO entity_relations VALUES(642,6,449,2,83,''); -INSERT INTO entity_relations VALUES(643,6,580,2,83,''); -INSERT INTO entity_relations VALUES(644,6,576,2,601,''); -INSERT INTO entity_relations VALUES(645,6,441,2,601,''); -INSERT INTO entity_relations VALUES(646,6,445,2,601,''); -INSERT INTO entity_relations VALUES(647,6,448,2,601,''); -INSERT INTO entity_relations VALUES(648,6,449,2,601,''); -INSERT INTO entity_relations VALUES(649,6,580,2,601,''); -INSERT INTO entity_relations VALUES(650,6,441,2,84,''); -INSERT INTO entity_relations VALUES(651,6,576,2,86,''); -INSERT INTO entity_relations VALUES(652,6,580,2,86,''); -INSERT INTO entity_relations VALUES(653,6,434,2,87,''); -INSERT INTO entity_relations VALUES(654,6,435,2,87,''); -INSERT INTO entity_relations VALUES(655,6,445,2,87,''); -INSERT INTO entity_relations VALUES(656,6,448,2,87,''); -INSERT INTO entity_relations VALUES(657,6,580,2,87,''); -INSERT INTO entity_relations VALUES(658,6,576,2,88,''); -INSERT INTO entity_relations VALUES(659,6,442,2,88,''); -INSERT INTO entity_relations VALUES(660,6,445,2,88,''); -INSERT INTO entity_relations VALUES(661,6,448,2,88,''); -INSERT INTO entity_relations VALUES(662,6,449,2,88,''); -INSERT INTO entity_relations VALUES(663,6,580,2,88,''); -INSERT INTO entity_relations VALUES(664,6,427,2,90,''); -INSERT INTO entity_relations VALUES(665,6,429,2,90,''); -INSERT INTO entity_relations VALUES(666,6,453,2,90,''); -INSERT INTO entity_relations VALUES(667,6,431,2,90,''); -INSERT INTO entity_relations VALUES(668,6,434,2,90,''); -INSERT INTO entity_relations VALUES(669,6,436,2,90,''); -INSERT INTO entity_relations VALUES(670,6,438,2,90,''); -INSERT INTO entity_relations VALUES(671,6,447,2,90,''); -INSERT INTO entity_relations VALUES(672,6,590,2,90,''); -INSERT INTO entity_relations VALUES(673,6,580,2,90,''); -INSERT INTO entity_relations VALUES(674,6,576,2,93,''); -INSERT INTO entity_relations VALUES(675,6,438,2,93,''); -INSERT INTO entity_relations VALUES(676,6,580,2,93,''); -INSERT INTO entity_relations VALUES(677,6,418,2,94,''); -INSERT INTO entity_relations VALUES(678,6,425,2,94,''); -INSERT INTO entity_relations VALUES(679,6,438,2,94,''); -INSERT INTO entity_relations VALUES(680,6,580,2,94,''); -INSERT INTO entity_relations VALUES(681,6,580,2,96,''); -INSERT INTO entity_relations VALUES(682,6,580,2,99,''); -INSERT INTO entity_relations VALUES(683,6,580,2,100,''); -INSERT INTO entity_relations VALUES(684,6,580,2,101,''); -INSERT INTO entity_relations VALUES(685,6,580,2,102,''); -INSERT INTO entity_relations VALUES(686,6,580,2,104,''); -INSERT INTO entity_relations VALUES(687,6,580,2,106,''); -INSERT INTO entity_relations VALUES(688,6,580,2,109,''); -INSERT INTO entity_relations VALUES(689,6,580,2,112,''); -INSERT INTO entity_relations VALUES(690,6,580,2,113,''); -INSERT INTO entity_relations VALUES(691,6,580,2,114,''); -INSERT INTO entity_relations VALUES(692,6,576,2,115,''); -INSERT INTO entity_relations VALUES(693,6,438,2,115,''); -INSERT INTO entity_relations VALUES(694,6,580,2,115,''); -INSERT INTO entity_relations VALUES(695,6,576,2,116,''); -INSERT INTO entity_relations VALUES(696,6,438,2,116,''); -INSERT INTO entity_relations VALUES(697,6,447,2,116,''); -INSERT INTO entity_relations VALUES(698,6,448,2,116,''); -INSERT INTO entity_relations VALUES(699,6,580,2,116,''); -INSERT INTO entity_relations VALUES(700,6,424,2,118,''); -INSERT INTO entity_relations VALUES(701,6,576,2,118,''); -INSERT INTO entity_relations VALUES(702,6,441,2,118,''); -INSERT INTO entity_relations VALUES(703,6,445,2,118,''); -INSERT INTO entity_relations VALUES(704,6,448,2,118,''); -INSERT INTO entity_relations VALUES(705,6,449,2,118,''); -INSERT INTO entity_relations VALUES(706,6,580,2,118,''); -INSERT INTO entity_relations VALUES(707,6,576,2,581,''); -INSERT INTO entity_relations VALUES(708,6,580,2,581,''); -INSERT INTO entity_relations VALUES(709,6,578,2,581,''); -INSERT INTO entity_relations VALUES(710,6,580,2,121,''); -INSERT INTO entity_relations VALUES(711,6,576,2,122,''); -INSERT INTO entity_relations VALUES(712,6,438,2,122,''); -INSERT INTO entity_relations VALUES(713,6,445,2,122,''); -INSERT INTO entity_relations VALUES(714,6,447,2,122,''); -INSERT INTO entity_relations VALUES(715,6,448,2,122,''); -INSERT INTO entity_relations VALUES(716,6,449,2,122,''); -INSERT INTO entity_relations VALUES(717,6,580,2,122,''); -INSERT INTO entity_relations VALUES(718,6,427,2,123,''); -INSERT INTO entity_relations VALUES(719,6,429,2,123,''); -INSERT INTO entity_relations VALUES(720,6,453,2,123,''); -INSERT INTO entity_relations VALUES(721,6,434,2,123,''); -INSERT INTO entity_relations VALUES(722,6,435,2,123,''); -INSERT INTO entity_relations VALUES(723,6,436,2,123,''); -INSERT INTO entity_relations VALUES(724,6,438,2,123,''); -INSERT INTO entity_relations VALUES(725,6,580,2,123,''); -INSERT INTO entity_relations VALUES(726,6,575,2,124,''); -INSERT INTO entity_relations VALUES(727,6,576,2,125,''); -INSERT INTO entity_relations VALUES(728,6,438,2,125,''); -INSERT INTO entity_relations VALUES(729,6,418,2,126,''); -INSERT INTO entity_relations VALUES(730,6,438,2,126,''); -INSERT INTO entity_relations VALUES(731,6,441,2,126,''); -INSERT INTO entity_relations VALUES(732,6,445,2,126,''); -INSERT INTO entity_relations VALUES(733,6,579,2,126,''); -INSERT INTO entity_relations VALUES(734,6,448,2,126,''); -INSERT INTO entity_relations VALUES(735,6,449,2,126,''); -INSERT INTO entity_relations VALUES(736,6,580,2,126,''); -INSERT INTO entity_relations VALUES(737,6,575,2,127,''); -INSERT INTO entity_relations VALUES(738,6,576,2,128,''); -INSERT INTO entity_relations VALUES(739,6,438,2,128,''); -INSERT INTO entity_relations VALUES(740,6,447,2,128,''); -INSERT INTO entity_relations VALUES(741,6,602,2,128,''); -INSERT INTO entity_relations VALUES(742,6,590,2,128,''); -INSERT INTO entity_relations VALUES(743,6,448,2,128,''); -INSERT INTO entity_relations VALUES(744,6,580,2,128,''); -INSERT INTO entity_relations VALUES(745,6,575,2,129,''); -INSERT INTO entity_relations VALUES(746,6,432,2,130,''); -INSERT INTO entity_relations VALUES(747,6,434,2,130,''); -INSERT INTO entity_relations VALUES(748,6,435,2,130,''); -INSERT INTO entity_relations VALUES(749,6,438,2,130,''); -INSERT INTO entity_relations VALUES(750,6,580,2,130,''); -INSERT INTO entity_relations VALUES(751,6,576,2,131,''); -INSERT INTO entity_relations VALUES(752,6,445,2,131,''); -INSERT INTO entity_relations VALUES(753,6,448,2,131,''); -INSERT INTO entity_relations VALUES(754,6,449,2,131,''); -INSERT INTO entity_relations VALUES(755,6,580,2,131,''); -INSERT INTO entity_relations VALUES(756,6,432,2,132,''); -INSERT INTO entity_relations VALUES(757,6,434,2,132,''); -INSERT INTO entity_relations VALUES(758,6,435,2,132,''); -INSERT INTO entity_relations VALUES(759,6,580,2,132,''); -INSERT INTO entity_relations VALUES(760,6,432,2,133,''); -INSERT INTO entity_relations VALUES(761,6,434,2,133,''); -INSERT INTO entity_relations VALUES(762,6,435,2,133,''); -INSERT INTO entity_relations VALUES(763,6,445,2,133,''); -INSERT INTO entity_relations VALUES(764,6,448,2,133,''); -INSERT INTO entity_relations VALUES(765,6,449,2,133,''); -INSERT INTO entity_relations VALUES(766,6,580,2,133,''); -INSERT INTO entity_relations VALUES(767,6,432,2,134,''); -INSERT INTO entity_relations VALUES(768,6,434,2,134,''); -INSERT INTO entity_relations VALUES(769,6,445,2,134,''); -INSERT INTO entity_relations VALUES(770,6,448,2,134,''); -INSERT INTO entity_relations VALUES(771,6,449,2,134,''); -INSERT INTO entity_relations VALUES(772,6,580,2,134,''); -INSERT INTO entity_relations VALUES(773,6,424,2,134,''); -INSERT INTO entity_relations VALUES(774,6,441,2,134,''); -INSERT INTO entity_relations VALUES(775,6,575,2,135,''); -INSERT INTO entity_relations VALUES(776,6,576,2,136,''); -INSERT INTO entity_relations VALUES(777,6,445,2,136,''); -INSERT INTO entity_relations VALUES(778,6,448,2,136,''); -INSERT INTO entity_relations VALUES(779,6,449,2,136,''); -INSERT INTO entity_relations VALUES(780,6,580,2,136,''); -INSERT INTO entity_relations VALUES(781,6,432,2,137,''); -INSERT INTO entity_relations VALUES(782,6,434,2,137,''); -INSERT INTO entity_relations VALUES(783,6,435,2,137,''); -INSERT INTO entity_relations VALUES(784,6,445,2,137,''); -INSERT INTO entity_relations VALUES(785,6,448,2,137,''); -INSERT INTO entity_relations VALUES(786,6,449,2,137,''); -INSERT INTO entity_relations VALUES(787,6,580,2,137,''); -INSERT INTO entity_relations VALUES(788,6,575,2,140,''); -INSERT INTO entity_relations VALUES(789,6,575,2,141,''); -INSERT INTO entity_relations VALUES(790,6,432,2,143,''); -INSERT INTO entity_relations VALUES(791,6,434,2,143,''); -INSERT INTO entity_relations VALUES(792,6,435,2,143,''); -INSERT INTO entity_relations VALUES(793,6,445,2,143,''); -INSERT INTO entity_relations VALUES(794,6,448,2,143,''); -INSERT INTO entity_relations VALUES(795,6,449,2,143,''); -INSERT INTO entity_relations VALUES(796,6,580,2,143,''); -INSERT INTO entity_relations VALUES(797,6,432,2,147,''); -INSERT INTO entity_relations VALUES(798,6,434,2,147,''); -INSERT INTO entity_relations VALUES(799,6,435,2,147,''); -INSERT INTO entity_relations VALUES(800,6,438,2,147,''); -INSERT INTO entity_relations VALUES(801,6,445,2,147,''); -INSERT INTO entity_relations VALUES(802,6,448,2,147,''); -INSERT INTO entity_relations VALUES(803,6,580,2,147,''); -INSERT INTO entity_relations VALUES(804,6,432,2,148,''); -INSERT INTO entity_relations VALUES(805,6,434,2,148,''); -INSERT INTO entity_relations VALUES(806,6,445,2,148,''); -INSERT INTO entity_relations VALUES(807,6,448,2,148,''); -INSERT INTO entity_relations VALUES(808,6,449,2,148,''); -INSERT INTO entity_relations VALUES(809,6,580,2,148,''); -INSERT INTO entity_relations VALUES(810,6,577,2,149,''); -INSERT INTO entity_relations VALUES(811,6,443,2,149,''); -INSERT INTO entity_relations VALUES(812,6,445,2,149,''); -INSERT INTO entity_relations VALUES(813,6,448,2,149,''); -INSERT INTO entity_relations VALUES(814,6,449,2,149,''); -INSERT INTO entity_relations VALUES(815,6,580,2,149,''); -INSERT INTO entity_relations VALUES(816,6,576,2,150,''); -INSERT INTO entity_relations VALUES(817,6,438,2,150,''); -INSERT INTO entity_relations VALUES(818,6,580,2,150,''); -INSERT INTO entity_relations VALUES(819,6,575,2,151,''); -INSERT INTO entity_relations VALUES(820,6,575,2,152,''); -INSERT INTO entity_relations VALUES(821,6,576,2,157,''); -INSERT INTO entity_relations VALUES(822,6,438,2,157,''); -INSERT INTO entity_relations VALUES(823,6,447,2,157,''); -INSERT INTO entity_relations VALUES(824,6,590,2,157,''); -INSERT INTO entity_relations VALUES(825,6,580,2,157,''); -INSERT INTO entity_relations VALUES(826,6,580,2,158,''); -INSERT INTO entity_relations VALUES(827,6,576,2,160,''); -INSERT INTO entity_relations VALUES(828,6,448,2,160,''); -INSERT INTO entity_relations VALUES(829,6,580,2,160,''); -INSERT INTO entity_relations VALUES(830,6,434,2,163,''); -INSERT INTO entity_relations VALUES(831,6,445,2,163,''); -INSERT INTO entity_relations VALUES(832,6,448,2,163,''); -INSERT INTO entity_relations VALUES(833,6,580,2,163,''); -INSERT INTO entity_relations VALUES(834,6,576,2,165,''); -INSERT INTO entity_relations VALUES(835,6,438,2,165,''); -INSERT INTO entity_relations VALUES(836,6,447,2,165,''); -INSERT INTO entity_relations VALUES(837,6,448,2,165,''); -INSERT INTO entity_relations VALUES(838,6,580,2,165,''); -INSERT INTO entity_relations VALUES(839,6,454,2,168,''); -INSERT INTO entity_relations VALUES(840,6,427,2,168,''); -INSERT INTO entity_relations VALUES(841,6,432,2,168,''); -INSERT INTO entity_relations VALUES(842,6,434,2,168,''); -INSERT INTO entity_relations VALUES(843,6,427,2,169,''); -INSERT INTO entity_relations VALUES(844,6,434,2,169,''); -INSERT INTO entity_relations VALUES(845,6,435,2,169,''); -INSERT INTO entity_relations VALUES(846,6,448,2,169,''); -INSERT INTO entity_relations VALUES(847,6,580,2,169,''); -INSERT INTO entity_relations VALUES(848,6,576,2,170,''); -INSERT INTO entity_relations VALUES(849,6,438,2,170,''); -INSERT INTO entity_relations VALUES(850,6,579,2,170,''); -INSERT INTO entity_relations VALUES(851,6,448,2,170,''); -INSERT INTO entity_relations VALUES(852,6,580,2,171,''); -INSERT INTO entity_relations VALUES(853,6,580,2,172,''); -INSERT INTO entity_relations VALUES(854,6,580,2,173,''); -INSERT INTO entity_relations VALUES(855,6,575,2,179,''); -INSERT INTO entity_relations VALUES(856,6,575,2,180,''); -INSERT INTO entity_relations VALUES(857,6,580,2,603,''); -INSERT INTO entity_relations VALUES(858,6,432,2,182,''); -INSERT INTO entity_relations VALUES(859,6,434,2,182,''); -INSERT INTO entity_relations VALUES(860,6,435,2,182,''); -INSERT INTO entity_relations VALUES(861,6,445,2,182,''); -INSERT INTO entity_relations VALUES(862,6,448,2,182,''); -INSERT INTO entity_relations VALUES(863,6,449,2,182,''); -INSERT INTO entity_relations VALUES(864,6,580,2,182,''); -INSERT INTO entity_relations VALUES(865,6,580,2,183,''); -INSERT INTO entity_relations VALUES(866,6,576,2,188,''); -INSERT INTO entity_relations VALUES(867,6,438,2,188,''); -INSERT INTO entity_relations VALUES(868,6,445,2,188,''); -INSERT INTO entity_relations VALUES(869,6,447,2,188,''); -INSERT INTO entity_relations VALUES(870,6,448,2,188,''); -INSERT INTO entity_relations VALUES(871,6,580,2,188,''); -INSERT INTO entity_relations VALUES(872,6,580,2,189,''); -INSERT INTO entity_relations VALUES(873,6,575,2,190,''); -INSERT INTO entity_relations VALUES(874,6,441,2,191,''); -INSERT INTO entity_relations VALUES(875,6,435,2,215,''); -INSERT INTO entity_relations VALUES(876,6,580,2,216,''); -INSERT INTO entity_relations VALUES(877,6,434,2,217,''); -INSERT INTO entity_relations VALUES(878,6,435,2,217,''); -INSERT INTO entity_relations VALUES(879,6,445,2,217,''); -INSERT INTO entity_relations VALUES(880,6,448,2,217,''); -INSERT INTO entity_relations VALUES(881,6,449,2,217,''); -INSERT INTO entity_relations VALUES(882,6,580,2,217,''); -INSERT INTO entity_relations VALUES(883,6,575,2,218,''); -INSERT INTO entity_relations VALUES(884,6,424,2,219,''); -INSERT INTO entity_relations VALUES(885,6,434,2,219,''); -INSERT INTO entity_relations VALUES(886,6,435,2,219,''); -INSERT INTO entity_relations VALUES(887,6,438,2,219,''); -INSERT INTO entity_relations VALUES(888,6,442,2,219,''); -INSERT INTO entity_relations VALUES(889,6,445,2,219,''); -INSERT INTO entity_relations VALUES(890,6,448,2,219,''); -INSERT INTO entity_relations VALUES(891,6,449,2,219,''); -INSERT INTO entity_relations VALUES(892,6,580,2,219,''); -INSERT INTO entity_relations VALUES(893,6,434,2,220,''); -INSERT INTO entity_relations VALUES(894,6,435,2,220,''); -INSERT INTO entity_relations VALUES(895,6,437,2,220,''); -INSERT INTO entity_relations VALUES(896,6,445,2,220,''); -INSERT INTO entity_relations VALUES(897,6,448,2,220,''); -INSERT INTO entity_relations VALUES(898,6,580,2,220,''); -INSERT INTO entity_relations VALUES(899,6,441,2,223,''); -INSERT INTO entity_relations VALUES(900,6,441,2,224,''); -INSERT INTO entity_relations VALUES(901,6,580,2,226,''); -INSERT INTO entity_relations VALUES(902,6,424,2,227,''); -INSERT INTO entity_relations VALUES(903,6,434,2,227,''); -INSERT INTO entity_relations VALUES(904,6,435,2,227,''); -INSERT INTO entity_relations VALUES(905,6,445,2,227,''); -INSERT INTO entity_relations VALUES(906,6,434,2,228,''); -INSERT INTO entity_relations VALUES(907,6,435,2,228,''); -INSERT INTO entity_relations VALUES(908,6,445,2,228,''); -INSERT INTO entity_relations VALUES(909,6,448,2,228,''); -INSERT INTO entity_relations VALUES(910,6,449,2,228,''); -INSERT INTO entity_relations VALUES(911,6,580,2,228,''); -INSERT INTO entity_relations VALUES(912,6,580,2,228,''); -INSERT INTO entity_relations VALUES(913,6,424,2,232,''); -INSERT INTO entity_relations VALUES(914,6,434,2,232,''); -INSERT INTO entity_relations VALUES(915,6,437,2,232,''); -INSERT INTO entity_relations VALUES(916,6,445,2,232,''); -INSERT INTO entity_relations VALUES(917,6,448,2,232,''); -INSERT INTO entity_relations VALUES(918,6,449,2,232,''); -INSERT INTO entity_relations VALUES(919,6,580,2,232,''); -INSERT INTO entity_relations VALUES(920,6,432,2,233,''); -INSERT INTO entity_relations VALUES(921,6,434,2,233,''); -INSERT INTO entity_relations VALUES(922,6,435,2,233,''); -INSERT INTO entity_relations VALUES(923,6,445,2,233,''); -INSERT INTO entity_relations VALUES(924,6,448,2,233,''); -INSERT INTO entity_relations VALUES(925,6,449,2,233,''); -INSERT INTO entity_relations VALUES(926,6,580,2,233,''); -INSERT INTO entity_relations VALUES(927,6,576,2,235,''); -INSERT INTO entity_relations VALUES(928,6,441,2,235,''); -INSERT INTO entity_relations VALUES(929,6,445,2,235,''); -INSERT INTO entity_relations VALUES(930,6,448,2,235,''); -INSERT INTO entity_relations VALUES(931,6,449,2,235,''); -INSERT INTO entity_relations VALUES(932,6,580,2,235,''); -INSERT INTO entity_relations VALUES(933,6,576,2,236,''); -INSERT INTO entity_relations VALUES(934,6,578,2,236,''); -INSERT INTO entity_relations VALUES(935,6,580,2,236,''); -INSERT INTO entity_relations VALUES(936,6,580,2,237,''); -INSERT INTO entity_relations VALUES(937,6,580,2,244,''); -INSERT INTO entity_relations VALUES(938,6,576,2,245,''); -INSERT INTO entity_relations VALUES(939,6,578,2,245,''); -INSERT INTO entity_relations VALUES(940,6,580,2,245,''); -INSERT INTO entity_relations VALUES(941,6,576,2,246,''); -INSERT INTO entity_relations VALUES(942,6,438,2,246,''); -INSERT INTO entity_relations VALUES(943,6,580,2,246,''); -INSERT INTO entity_relations VALUES(944,6,427,2,248,''); -INSERT INTO entity_relations VALUES(945,6,429,2,248,''); -INSERT INTO entity_relations VALUES(946,6,453,2,248,''); -INSERT INTO entity_relations VALUES(947,6,434,2,248,''); -INSERT INTO entity_relations VALUES(948,6,435,2,248,''); -INSERT INTO entity_relations VALUES(949,6,436,2,248,''); -INSERT INTO entity_relations VALUES(950,6,438,2,248,''); -INSERT INTO entity_relations VALUES(951,6,580,2,248,''); -INSERT INTO entity_relations VALUES(952,6,441,2,2,''); -INSERT INTO entity_relations VALUES(953,6,578,2,2,''); -INSERT INTO entity_relations VALUES(954,6,576,2,2,''); -INSERT INTO entity_relations VALUES(955,6,580,2,2,''); -INSERT INTO entity_relations VALUES(956,6,580,2,4,''); -INSERT INTO entity_relations VALUES(957,6,438,2,4,''); -INSERT INTO entity_relations VALUES(958,6,418,2,4,''); -INSERT INTO entity_relations VALUES(959,6,425,2,4,''); -INSERT INTO entity_relations VALUES(960,6,576,2,4,''); -INSERT INTO entity_relations VALUES(961,6,448,2,4,''); -INSERT INTO entity_relations VALUES(962,6,449,2,4,''); -INSERT INTO entity_relations VALUES(963,6,445,2,4,''); -INSERT INTO entity_relations VALUES(964,6,575,2,7,''); -INSERT INTO entity_relations VALUES(965,6,580,2,17,''); -INSERT INTO entity_relations VALUES(966,6,454,2,18,''); -INSERT INTO entity_relations VALUES(967,6,427,2,18,''); -INSERT INTO entity_relations VALUES(968,6,445,2,18,''); -INSERT INTO entity_relations VALUES(969,6,580,2,18,''); -INSERT INTO entity_relations VALUES(970,6,432,2,18,''); -INSERT INTO entity_relations VALUES(971,6,448,2,18,''); -INSERT INTO entity_relations VALUES(972,6,434,2,18,''); -INSERT INTO entity_relations VALUES(973,6,435,2,18,''); -INSERT INTO entity_relations VALUES(974,6,580,2,20,''); -INSERT INTO entity_relations VALUES(975,6,449,2,22,''); -INSERT INTO entity_relations VALUES(976,6,445,2,22,''); -INSERT INTO entity_relations VALUES(977,6,448,2,22,''); -INSERT INTO entity_relations VALUES(978,6,576,2,22,''); -INSERT INTO entity_relations VALUES(979,6,441,2,24,''); -INSERT INTO entity_relations VALUES(980,6,591,2,24,''); -INSERT INTO entity_relations VALUES(981,6,580,2,193,''); -INSERT INTO entity_relations VALUES(982,6,580,2,213,''); -INSERT INTO entity_relations VALUES(983,6,438,2,213,''); -INSERT INTO entity_relations VALUES(984,6,576,2,213,''); -INSERT INTO entity_relations VALUES(985,6,445,2,604,''); -INSERT INTO entity_relations VALUES(986,6,449,2,604,''); -INSERT INTO entity_relations VALUES(987,6,576,2,604,''); -INSERT INTO entity_relations VALUES(988,6,448,2,604,''); -INSERT INTO entity_relations VALUES(989,6,580,2,604,''); -INSERT INTO entity_relations VALUES(990,6,580,2,103,''); -INSERT INTO entity_relations VALUES(991,6,438,2,103,''); -INSERT INTO entity_relations VALUES(992,6,418,2,103,''); -INSERT INTO entity_relations VALUES(993,6,425,2,103,''); -INSERT INTO entity_relations VALUES(994,6,434,2,77,''); -INSERT INTO entity_relations VALUES(995,6,435,2,77,''); -INSERT INTO entity_relations VALUES(996,6,580,2,77,''); -INSERT INTO entity_relations VALUES(997,6,580,2,77,''); -INSERT INTO entity_relations VALUES(998,6,576,2,77,''); -INSERT INTO entity_relations VALUES(999,6,578,2,77,''); -INSERT INTO entity_relations VALUES(1000,6,580,2,77,''); -INSERT INTO entity_relations VALUES(1001,6,418,2,117,''); -INSERT INTO entity_relations VALUES(1002,6,576,2,117,''); -INSERT INTO entity_relations VALUES(1003,6,438,2,117,''); -INSERT INTO entity_relations VALUES(1004,6,425,2,117,''); -INSERT INTO entity_relations VALUES(1005,6,580,2,117,''); -INSERT INTO entity_relations VALUES(1006,6,447,2,117,''); -INSERT INTO entity_relations VALUES(1007,6,602,2,117,''); -INSERT INTO entity_relations VALUES(1008,6,590,2,117,''); -INSERT INTO entity_relations VALUES(1009,6,448,2,117,''); -INSERT INTO entity_relations VALUES(1010,6,418,2,119,''); -INSERT INTO entity_relations VALUES(1011,6,425,2,119,''); -INSERT INTO entity_relations VALUES(1012,6,438,2,119,''); -INSERT INTO entity_relations VALUES(1013,6,580,2,119,''); -INSERT INTO entity_relations VALUES(1014,6,580,2,121,''); -INSERT INTO entity_relations VALUES(1015,6,580,2,30,''); -INSERT INTO entity_relations VALUES(1016,6,424,2,43,''); -INSERT INTO entity_relations VALUES(1017,6,418,2,55,''); -INSERT INTO entity_relations VALUES(1018,6,425,2,55,''); -INSERT INTO entity_relations VALUES(1019,6,576,2,55,''); -INSERT INTO entity_relations VALUES(1020,6,580,2,55,''); -INSERT INTO entity_relations VALUES(1021,6,438,2,55,''); -INSERT INTO entity_relations VALUES(1022,6,434,2,56,''); -INSERT INTO entity_relations VALUES(1023,6,427,2,56,''); -INSERT INTO entity_relations VALUES(1024,6,436,2,56,''); -INSERT INTO entity_relations VALUES(1025,6,445,2,63,''); -INSERT INTO entity_relations VALUES(1026,6,576,2,63,''); -INSERT INTO entity_relations VALUES(1027,6,448,2,63,''); -INSERT INTO entity_relations VALUES(1028,6,580,2,63,''); -INSERT INTO entity_relations VALUES(1029,6,418,2,28,''); -INSERT INTO entity_relations VALUES(1030,6,425,2,28,''); -INSERT INTO entity_relations VALUES(1031,6,434,2,28,''); -INSERT INTO entity_relations VALUES(1032,6,438,2,28,''); -INSERT INTO entity_relations VALUES(1033,6,580,2,28,''); -INSERT INTO entity_relations VALUES(1034,6,434,2,34,''); -INSERT INTO entity_relations VALUES(1035,6,427,2,34,''); -INSERT INTO entity_relations VALUES(1036,6,580,2,34,''); -INSERT INTO entity_relations VALUES(1037,6,438,2,34,''); -INSERT INTO entity_relations VALUES(1038,6,580,2,48,''); -INSERT INTO entity_relations VALUES(1039,6,580,2,49,''); -INSERT INTO entity_relations VALUES(1040,6,580,2,52,''); -INSERT INTO entity_relations VALUES(1041,6,445,2,52,''); -INSERT INTO entity_relations VALUES(1042,6,454,2,52,''); -INSERT INTO entity_relations VALUES(1043,6,427,2,52,''); -INSERT INTO entity_relations VALUES(1044,6,429,2,52,''); -INSERT INTO entity_relations VALUES(1045,6,580,2,53,''); -INSERT INTO entity_relations VALUES(1046,6,580,2,62,''); -INSERT INTO entity_relations VALUES(1047,6,576,2,62,''); -INSERT INTO entity_relations VALUES(1048,6,448,2,62,''); -INSERT INTO entity_relations VALUES(1049,6,445,2,62,''); -INSERT INTO entity_relations VALUES(1050,6,438,2,62,''); -INSERT INTO entity_relations VALUES(1051,6,418,2,62,''); -INSERT INTO entity_relations VALUES(1052,6,425,2,62,''); -INSERT INTO entity_relations VALUES(1053,6,445,2,64,''); -INSERT INTO entity_relations VALUES(1054,6,576,2,64,''); -INSERT INTO entity_relations VALUES(1055,6,448,2,64,''); -INSERT INTO entity_relations VALUES(1056,6,580,2,64,''); -INSERT INTO entity_relations VALUES(1057,6,445,2,69,''); -INSERT INTO entity_relations VALUES(1058,6,449,2,69,''); -INSERT INTO entity_relations VALUES(1059,6,424,2,69,''); -INSERT INTO entity_relations VALUES(1060,6,576,2,69,''); -INSERT INTO entity_relations VALUES(1061,6,448,2,69,''); -INSERT INTO entity_relations VALUES(1062,6,580,2,69,''); -INSERT INTO entity_relations VALUES(1063,6,445,2,70,''); -INSERT INTO entity_relations VALUES(1064,6,576,2,70,''); -INSERT INTO entity_relations VALUES(1065,6,580,2,70,''); -INSERT INTO entity_relations VALUES(1066,6,445,2,73,''); -INSERT INTO entity_relations VALUES(1067,6,576,2,73,''); -INSERT INTO entity_relations VALUES(1068,6,580,2,73,''); -INSERT INTO entity_relations VALUES(1069,6,441,2,73,''); -INSERT INTO entity_relations VALUES(1070,6,445,2,605,''); -INSERT INTO entity_relations VALUES(1071,6,576,2,605,''); -INSERT INTO entity_relations VALUES(1072,6,580,2,605,''); -INSERT INTO entity_relations VALUES(1073,6,580,2,606,''); -INSERT INTO entity_relations VALUES(1074,6,576,2,606,''); -INSERT INTO entity_relations VALUES(1075,6,445,2,606,''); -INSERT INTO entity_relations VALUES(1076,6,448,2,606,''); -INSERT INTO entity_relations VALUES(1077,6,449,2,606,''); -INSERT INTO entity_relations VALUES(1078,6,445,2,76,''); -INSERT INTO entity_relations VALUES(1079,6,434,2,76,''); -INSERT INTO entity_relations VALUES(1080,6,435,2,76,''); -INSERT INTO entity_relations VALUES(1081,6,448,2,76,''); -INSERT INTO entity_relations VALUES(1082,6,580,2,76,''); -INSERT INTO entity_relations VALUES(1083,6,445,2,80,''); -INSERT INTO entity_relations VALUES(1084,6,449,2,80,''); -INSERT INTO entity_relations VALUES(1085,6,576,2,80,''); -INSERT INTO entity_relations VALUES(1086,6,448,2,80,''); -INSERT INTO entity_relations VALUES(1087,6,580,2,80,''); -INSERT INTO entity_relations VALUES(1088,6,441,2,80,''); -INSERT INTO entity_relations VALUES(1089,6,438,2,85,''); -INSERT INTO entity_relations VALUES(1090,6,580,2,85,''); -INSERT INTO entity_relations VALUES(1091,6,577,2,91,''); -INSERT INTO entity_relations VALUES(1092,6,438,2,92,''); -INSERT INTO entity_relations VALUES(1093,6,580,2,92,''); -INSERT INTO entity_relations VALUES(1094,6,580,2,95,''); -INSERT INTO entity_relations VALUES(1095,6,438,2,95,''); -INSERT INTO entity_relations VALUES(1096,6,418,2,95,''); -INSERT INTO entity_relations VALUES(1097,6,425,2,95,''); -INSERT INTO entity_relations VALUES(1098,6,580,2,97,''); -INSERT INTO entity_relations VALUES(1099,6,448,2,97,''); -INSERT INTO entity_relations VALUES(1100,6,434,2,97,''); -INSERT INTO entity_relations VALUES(1101,6,435,2,97,''); -INSERT INTO entity_relations VALUES(1102,6,427,2,97,''); -INSERT INTO entity_relations VALUES(1103,6,454,2,97,''); -INSERT INTO entity_relations VALUES(1104,6,438,2,97,''); -INSERT INTO entity_relations VALUES(1105,6,576,2,98,''); -INSERT INTO entity_relations VALUES(1106,6,438,2,98,''); -INSERT INTO entity_relations VALUES(1107,6,580,2,98,''); -INSERT INTO entity_relations VALUES(1108,6,580,2,105,''); -INSERT INTO entity_relations VALUES(1109,6,580,2,107,''); -INSERT INTO entity_relations VALUES(1110,6,438,2,107,''); -INSERT INTO entity_relations VALUES(1111,6,448,2,107,''); -INSERT INTO entity_relations VALUES(1112,6,449,2,107,''); -INSERT INTO entity_relations VALUES(1113,6,580,2,108,''); -INSERT INTO entity_relations VALUES(1114,6,580,2,110,''); -INSERT INTO entity_relations VALUES(1115,6,576,2,110,''); -INSERT INTO entity_relations VALUES(1116,6,438,2,110,''); -INSERT INTO entity_relations VALUES(1117,6,580,2,111,''); -INSERT INTO entity_relations VALUES(1118,6,438,2,111,''); -INSERT INTO entity_relations VALUES(1119,6,580,2,607,''); -INSERT INTO entity_relations VALUES(1120,6,576,2,607,''); -INSERT INTO entity_relations VALUES(1121,6,448,2,607,''); -INSERT INTO entity_relations VALUES(1122,6,449,2,607,''); -INSERT INTO entity_relations VALUES(1123,6,445,2,607,''); -INSERT INTO entity_relations VALUES(1124,6,435,2,142,''); -INSERT INTO entity_relations VALUES(1125,6,580,2,144,''); -INSERT INTO entity_relations VALUES(1126,6,580,2,145,''); -INSERT INTO entity_relations VALUES(1127,6,432,2,145,''); -INSERT INTO entity_relations VALUES(1128,6,434,2,145,''); -INSERT INTO entity_relations VALUES(1129,6,435,2,145,''); -INSERT INTO entity_relations VALUES(1130,6,580,2,146,''); -INSERT INTO entity_relations VALUES(1131,6,434,2,146,''); -INSERT INTO entity_relations VALUES(1132,6,435,2,146,''); -INSERT INTO entity_relations VALUES(1133,6,436,2,146,''); -INSERT INTO entity_relations VALUES(1134,6,432,2,146,''); -INSERT INTO entity_relations VALUES(1135,6,580,2,153,''); -INSERT INTO entity_relations VALUES(1136,6,434,2,153,''); -INSERT INTO entity_relations VALUES(1137,6,435,2,153,''); -INSERT INTO entity_relations VALUES(1138,6,580,2,154,''); -INSERT INTO entity_relations VALUES(1139,6,593,2,155,''); -INSERT INTO entity_relations VALUES(1140,6,443,2,155,''); -INSERT INTO entity_relations VALUES(1141,6,580,2,155,''); -INSERT INTO entity_relations VALUES(1142,6,580,2,156,''); -INSERT INTO entity_relations VALUES(1143,6,438,2,156,''); -INSERT INTO entity_relations VALUES(1144,6,580,2,159,''); -INSERT INTO entity_relations VALUES(1145,6,438,2,159,''); -INSERT INTO entity_relations VALUES(1146,6,425,2,159,''); -INSERT INTO entity_relations VALUES(1147,6,418,2,159,''); -INSERT INTO entity_relations VALUES(1148,6,580,2,161,''); -INSERT INTO entity_relations VALUES(1149,6,580,2,162,''); -INSERT INTO entity_relations VALUES(1150,6,580,2,164,''); -INSERT INTO entity_relations VALUES(1151,6,445,2,166,''); -INSERT INTO entity_relations VALUES(1152,6,449,2,166,''); -INSERT INTO entity_relations VALUES(1153,6,576,2,166,''); -INSERT INTO entity_relations VALUES(1154,6,441,2,166,''); -INSERT INTO entity_relations VALUES(1155,6,438,2,166,''); -INSERT INTO entity_relations VALUES(1156,6,448,2,166,''); -INSERT INTO entity_relations VALUES(1157,6,580,2,166,''); -INSERT INTO entity_relations VALUES(1158,6,445,2,167,''); -INSERT INTO entity_relations VALUES(1159,6,449,2,167,''); -INSERT INTO entity_relations VALUES(1160,6,576,2,167,''); -INSERT INTO entity_relations VALUES(1161,6,448,2,167,''); -INSERT INTO entity_relations VALUES(1162,6,580,2,167,''); -INSERT INTO entity_relations VALUES(1163,6,580,2,174,''); -INSERT INTO entity_relations VALUES(1164,6,434,2,174,''); -INSERT INTO entity_relations VALUES(1165,6,435,2,174,''); -INSERT INTO entity_relations VALUES(1166,6,449,2,174,''); -INSERT INTO entity_relations VALUES(1167,6,445,2,174,''); -INSERT INTO entity_relations VALUES(1168,6,448,2,174,''); -INSERT INTO entity_relations VALUES(1169,6,434,2,175,''); -INSERT INTO entity_relations VALUES(1170,6,435,2,175,''); -INSERT INTO entity_relations VALUES(1171,6,445,2,176,''); -INSERT INTO entity_relations VALUES(1172,6,449,2,176,''); -INSERT INTO entity_relations VALUES(1173,6,434,2,176,''); -INSERT INTO entity_relations VALUES(1174,6,435,2,176,''); -INSERT INTO entity_relations VALUES(1175,6,448,2,176,''); -INSERT INTO entity_relations VALUES(1176,6,580,2,176,''); -INSERT INTO entity_relations VALUES(1177,6,434,2,177,''); -INSERT INTO entity_relations VALUES(1178,6,435,2,177,''); -INSERT INTO entity_relations VALUES(1179,6,580,2,177,''); -INSERT INTO entity_relations VALUES(1180,6,580,2,178,''); -INSERT INTO entity_relations VALUES(1181,6,438,2,178,''); -INSERT INTO entity_relations VALUES(1182,6,576,2,178,''); -INSERT INTO entity_relations VALUES(1183,6,445,2,178,''); -INSERT INTO entity_relations VALUES(1184,6,449,2,178,''); -INSERT INTO entity_relations VALUES(1185,6,448,2,178,''); -INSERT INTO entity_relations VALUES(1186,6,438,2,184,''); -INSERT INTO entity_relations VALUES(1187,6,580,2,184,''); -INSERT INTO entity_relations VALUES(1188,6,445,2,185,''); -INSERT INTO entity_relations VALUES(1189,6,434,2,185,''); -INSERT INTO entity_relations VALUES(1190,6,435,2,185,''); -INSERT INTO entity_relations VALUES(1191,6,437,2,185,''); -INSERT INTO entity_relations VALUES(1192,6,448,2,185,''); -INSERT INTO entity_relations VALUES(1193,6,580,2,185,''); -INSERT INTO entity_relations VALUES(1194,6,575,2,186,''); -INSERT INTO entity_relations VALUES(1195,6,580,2,187,''); -INSERT INTO entity_relations VALUES(1196,6,580,2,214,''); -INSERT INTO entity_relations VALUES(1197,6,580,2,221,''); -INSERT INTO entity_relations VALUES(1198,6,580,2,222,''); -INSERT INTO entity_relations VALUES(1199,6,580,2,225,''); -INSERT INTO entity_relations VALUES(1200,6,442,2,225,''); -INSERT INTO entity_relations VALUES(1201,6,424,2,225,''); -INSERT INTO entity_relations VALUES(1202,6,441,2,225,''); -INSERT INTO entity_relations VALUES(1203,6,578,2,225,''); -INSERT INTO entity_relations VALUES(1204,6,575,2,229,''); -INSERT INTO entity_relations VALUES(1205,6,580,2,230,''); -INSERT INTO entity_relations VALUES(1206,6,434,2,230,''); -INSERT INTO entity_relations VALUES(1207,6,435,2,230,''); -INSERT INTO entity_relations VALUES(1208,6,436,2,230,''); -INSERT INTO entity_relations VALUES(1209,6,438,2,230,''); -INSERT INTO entity_relations VALUES(1210,6,448,2,230,''); -INSERT INTO entity_relations VALUES(1211,6,580,2,231,''); -INSERT INTO entity_relations VALUES(1212,6,427,2,231,''); -INSERT INTO entity_relations VALUES(1213,6,434,2,231,''); -INSERT INTO entity_relations VALUES(1214,6,435,2,231,''); -INSERT INTO entity_relations VALUES(1215,6,436,2,231,''); -INSERT INTO entity_relations VALUES(1216,6,445,2,234,''); -INSERT INTO entity_relations VALUES(1217,6,437,2,234,''); -INSERT INTO entity_relations VALUES(1218,6,434,2,234,''); -INSERT INTO entity_relations VALUES(1219,6,435,2,234,''); -INSERT INTO entity_relations VALUES(1220,6,448,2,234,''); -INSERT INTO entity_relations VALUES(1221,6,580,2,234,''); -INSERT INTO entity_relations VALUES(1222,6,424,2,234,''); -INSERT INTO entity_relations VALUES(1223,6,580,2,238,''); -INSERT INTO entity_relations VALUES(1224,6,580,2,239,''); -INSERT INTO entity_relations VALUES(1225,6,580,2,240,''); -INSERT INTO entity_relations VALUES(1226,6,580,2,241,''); -INSERT INTO entity_relations VALUES(1227,6,580,2,242,''); -INSERT INTO entity_relations VALUES(1228,6,580,2,243,''); -INSERT INTO entity_relations VALUES(1229,6,580,2,247,''); -INSERT INTO entity_relations VALUES(1230,6,580,2,249,''); -INSERT INTO entity_relations VALUES(1231,6,434,2,249,''); -INSERT INTO entity_relations VALUES(1232,6,435,2,249,''); -INSERT INTO entity_relations VALUES(1233,6,427,2,249,''); -INSERT INTO entity_relations VALUES(1234,6,436,2,249,''); -INSERT INTO entity_relations VALUES(1235,6,432,2,249,''); -INSERT INTO entity_relations VALUES(1236,6,441,2,43,''); -INSERT INTO entity_relations VALUES(1237,6,576,2,224,''); -INSERT INTO entity_relations VALUES(1238,6,580,2,224,''); -INSERT INTO entity_relations VALUES(1239,6,576,8,289,''); -INSERT INTO entity_relations VALUES(1240,6,580,8,289,''); -INSERT INTO entity_relations VALUES(1241,6,578,8,289,''); -INSERT INTO entity_relations VALUES(1242,6,445,2,250,''); -INSERT INTO entity_relations VALUES(1243,6,424,2,250,''); -INSERT INTO entity_relations VALUES(1244,6,576,2,250,''); -INSERT INTO entity_relations VALUES(1245,6,445,2,251,''); -INSERT INTO entity_relations VALUES(1246,6,576,2,251,''); -INSERT INTO entity_relations VALUES(1247,6,580,2,252,''); -INSERT INTO entity_relations VALUES(1248,6,576,2,252,''); -INSERT INTO entity_relations VALUES(1249,6,580,2,253,''); -INSERT INTO entity_relations VALUES(1250,6,576,2,253,''); -INSERT INTO entity_relations VALUES(1251,6,580,2,254,''); -INSERT INTO entity_relations VALUES(1252,6,576,2,254,''); -INSERT INTO entity_relations VALUES(1253,6,580,2,255,''); -INSERT INTO entity_relations VALUES(1254,6,576,2,255,''); -INSERT INTO entity_relations VALUES(1255,6,580,2,256,''); -INSERT INTO entity_relations VALUES(1256,6,576,2,256,''); -INSERT INTO entity_relations VALUES(1257,6,580,2,257,''); -INSERT INTO entity_relations VALUES(1258,6,576,2,257,''); -INSERT INTO entity_relations VALUES(1259,6,580,2,258,''); -INSERT INTO entity_relations VALUES(1260,6,576,2,258,''); -INSERT INTO entity_relations VALUES(1261,6,576,2,322,''); -INSERT INTO entity_relations VALUES(1262,6,576,10,611,''); -INSERT INTO entity_relations VALUES(1263,6,576,2,612,''); -INSERT INTO entity_relations VALUES(1264,6,576,2,613,''); -INSERT INTO entity_relations VALUES(1265,6,576,2,614,''); -INSERT INTO entity_relations VALUES(1266,6,576,8,615,''); -INSERT INTO entity_relations VALUES(1267,6,576,10,616,''); -INSERT INTO entity_relations VALUES(1268,6,576,10,618,''); -INSERT INTO entity_relations VALUES(1269,6,576,2,619,''); -INSERT INTO entity_relations VALUES(1270,6,576,10,620,''); -INSERT INTO entity_relations VALUES(1271,6,576,2,621,''); -INSERT INTO entity_relations VALUES(1272,6,576,2,622,''); -INSERT INTO entity_relations VALUES(1273,6,576,2,623,''); -INSERT INTO entity_relations VALUES(1274,6,576,2,624,''); -INSERT INTO entity_relations VALUES(1275,6,576,2,625,''); -INSERT INTO entity_relations VALUES(1276,6,576,2,626,''); -INSERT INTO entity_relations VALUES(1277,6,576,2,627,''); -INSERT INTO entity_relations VALUES(1278,6,576,2,628,''); -INSERT INTO entity_relations VALUES(1279,6,576,2,629,''); -INSERT INTO entity_relations VALUES(1280,6,576,10,630,''); -INSERT INTO entity_relations VALUES(1281,6,576,2,631,''); -INSERT INTO entity_relations VALUES(1282,6,576,2,632,''); -INSERT INTO entity_relations VALUES(1283,6,576,10,633,''); -INSERT INTO entity_relations VALUES(1284,6,576,2,634,''); -INSERT INTO entity_relations VALUES(1285,6,576,10,635,''); -INSERT INTO entity_relations VALUES(1286,6,576,2,636,''); -INSERT INTO entity_relations VALUES(1287,6,576,2,637,''); -INSERT INTO entity_relations VALUES(1288,6,576,10,638,''); -INSERT INTO entity_relations VALUES(1289,6,576,10,639,''); -INSERT INTO entity_relations VALUES(1290,6,576,2,640,''); -INSERT INTO entity_relations VALUES(1291,6,576,2,641,''); -INSERT INTO entity_relations VALUES(1292,6,576,2,642,''); -INSERT INTO entity_relations VALUES(1293,6,576,2,643,''); -INSERT INTO entity_relations VALUES(1294,6,576,2,644,''); -INSERT INTO entity_relations VALUES(1295,6,576,2,645,''); -INSERT INTO entity_relations VALUES(1296,6,576,2,646,''); -INSERT INTO entity_relations VALUES(1297,6,576,2,647,''); -INSERT INTO entity_relations VALUES(1298,6,576,8,648,''); -INSERT INTO entity_relations VALUES(1299,6,576,2,649,''); -INSERT INTO entity_relations VALUES(1300,6,576,2,650,''); -INSERT INTO entity_relations VALUES(1301,6,576,2,651,''); -INSERT INTO entity_relations VALUES(1302,6,576,10,652,''); -INSERT INTO entity_relations VALUES(1303,6,580,9,660,''); -INSERT INTO entity_relations VALUES(1304,6,576,9,660,''); -INSERT INTO entity_relations VALUES(1305,6,438,9,660,''); -INSERT INTO entity_relations VALUES(1306,6,441,9,653,''); -INSERT INTO entity_relations VALUES(1307,6,437,9,653,''); -INSERT INTO entity_relations VALUES(1308,6,591,9,653,''); -INSERT INTO entity_relations VALUES(1309,6,580,9,654,''); -INSERT INTO entity_relations VALUES(1310,6,576,9,654,''); -INSERT INTO entity_relations VALUES(1311,6,578,9,654,''); -INSERT INTO entity_relations VALUES(1312,6,576,9,655,''); -INSERT INTO entity_relations VALUES(1313,6,576,2,656,''); -INSERT INTO entity_relations VALUES(1314,6,580,2,656,''); -INSERT INTO entity_relations VALUES(1315,6,578,2,656,''); -INSERT INTO entity_relations VALUES(1316,6,441,9,657,''); -INSERT INTO entity_relations VALUES(1317,6,576,2,5,''); -INSERT INTO entity_relations VALUES(1318,6,580,2,5,''); -INSERT INTO entity_relations VALUES(1319,6,578,2,5,''); -INSERT INTO entity_relations VALUES(1320,6,438,2,5,''); -INSERT INTO entity_relations VALUES(1321,6,593,9,659,''); -INSERT INTO entity_relations VALUES(1322,6,443,9,659,''); -INSERT INTO entity_relations VALUES(1323,6,580,9,659,''); -INSERT INTO entity_relations VALUES(1324,6,580,10,661,''); -INSERT INTO entity_relations VALUES(1325,6,443,9,662,''); -INSERT INTO entity_relations VALUES(1326,6,578,9,662,''); -INSERT INTO entity_relations VALUES(1327,6,593,9,662,''); -INSERT INTO entity_relations VALUES(1328,6,580,9,662,''); -INSERT INTO entity_relations VALUES(1329,6,580,9,663,''); -INSERT INTO entity_relations VALUES(1330,6,576,9,663,''); -INSERT INTO entity_relations VALUES(1331,6,580,9,664,''); -INSERT INTO entity_relations VALUES(1332,6,442,9,664,''); -INSERT INTO entity_relations VALUES(1333,6,578,9,664,''); -INSERT INTO entity_relations VALUES(1334,6,593,9,665,''); -INSERT INTO entity_relations VALUES(1335,6,580,9,665,''); -INSERT INTO entity_relations VALUES(1336,6,438,9,665,''); -INSERT INTO entity_relations VALUES(1337,6,578,9,665,''); -INSERT INTO entity_relations VALUES(1338,6,576,9,665,''); -INSERT INTO entity_relations VALUES(1339,6,576,2,666,''); -INSERT INTO entity_relations VALUES(1340,6,580,2,666,''); -INSERT INTO entity_relations VALUES(1341,6,578,2,666,''); -INSERT INTO entity_relations VALUES(1342,6,577,2,667,''); -INSERT INTO entity_relations VALUES(1343,6,577,2,668,''); -INSERT INTO entity_relations VALUES(1344,6,576,8,669,''); -INSERT INTO entity_relations VALUES(1345,6,580,8,669,''); -INSERT INTO entity_relations VALUES(1346,6,449,8,669,''); -INSERT INTO entity_relations VALUES(1347,6,576,8,670,''); -INSERT INTO entity_relations VALUES(1348,6,580,8,670,''); -INSERT INTO entity_relations VALUES(1349,6,449,8,670,''); -INSERT INTO entity_relations VALUES(1350,6,576,2,634,''); -INSERT INTO entity_relations VALUES(1351,6,576,4,672,''); -INSERT INTO entity_relations VALUES(1352,6,578,2,673,''); -INSERT INTO entity_relations VALUES(1353,6,580,2,673,''); -INSERT INTO entity_relations VALUES(1354,6,580,2,674,''); -INSERT INTO entity_relations VALUES(1355,6,576,2,674,''); -INSERT INTO entity_relations VALUES(1356,6,578,2,674,''); -INSERT INTO entity_relations VALUES(1357,6,580,2,675,''); -INSERT INTO entity_relations VALUES(1358,6,578,2,675,''); -INSERT INTO entity_relations VALUES(1359,6,576,2,676,''); -INSERT INTO entity_relations VALUES(1360,6,578,2,676,''); -INSERT INTO entity_relations VALUES(1361,6,578,2,677,''); -INSERT INTO entity_relations VALUES(1362,6,576,2,677,''); -INSERT INTO entity_relations VALUES(1363,6,580,2,677,''); -INSERT INTO entity_relations VALUES(1364,6,438,2,677,''); -INSERT INTO entity_relations VALUES(1365,6,576,2,678,''); -INSERT INTO entity_relations VALUES(1366,6,577,2,679,''); -INSERT INTO entity_relations VALUES(1367,6,577,9,689,''); -INSERT INTO entity_relations VALUES(1368,6,424,2,690,''); -INSERT INTO entity_relations VALUES(1369,6,424,2,691,''); -INSERT INTO entity_relations VALUES(1370,6,577,2,693,''); -INSERT INTO entity_relations VALUES(1371,6,576,2,695,''); -INSERT INTO entity_relations VALUES(1372,6,578,2,695,''); -INSERT INTO entity_relations VALUES(1373,6,580,2,695,''); -INSERT INTO entity_relations VALUES(1374,6,576,2,694,''); -INSERT INTO entity_relations VALUES(1375,6,578,2,694,''); -INSERT INTO entity_relations VALUES(1376,9,331,2,697,''); -INSERT INTO entity_relations VALUES(1377,6,576,2,697,''); -INSERT INTO entity_relations VALUES(1378,6,580,2,697,''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1, 6, 580, 10, 497, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (2, 6, 580, 10, 498, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (3, 6, 580, 10, 592, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (4, 6, 580, 10, 500, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (5, 6, 418, 10, 501, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (6, 6, 425, 10, 501, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (7, 6, 438, 10, 501, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (8, 6, 580, 10, 501, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (9, 6, 441, 10, 502, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (10, 6, 591, 10, 502, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (11, 6, 576, 10, 503, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (12, 6, 438, 10, 503, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (13, 6, 580, 10, 503, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (14, 6, 418, 10, 504, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (15, 6, 425, 10, 504, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (16, 6, 576, 10, 504, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (17, 6, 438, 10, 504, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (18, 6, 448, 10, 504, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (19, 6, 580, 10, 504, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (20, 6, 580, 10, 505, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (21, 6, 575, 10, 506, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (22, 6, 576, 10, 507, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (23, 6, 438, 10, 507, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (24, 6, 445, 10, 507, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (25, 6, 447, 10, 507, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (26, 6, 590, 10, 507, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (27, 6, 580, 10, 507, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (28, 6, 576, 10, 508, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (29, 6, 438, 10, 508, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (30, 6, 580, 10, 508, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (31, 6, 575, 10, 509, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (32, 8, 266, 7, 490, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (33, 8, 266, 7, 489, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (34, 8, 266, 7, 491, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (35, 8, 267, 7, 492, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (36, 8, 275, 7, 494, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (37, 8, 276, 7, 495, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (38, 8, 279, 7, 496, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (39, 10, 497, 7, 482, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (40, 10, 497, 7, 483, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (41, 10, 497, 7, 484, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (42, 10, 497, 7, 485, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (43, 10, 497, 7, 486, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (44, 10, 497, 7, 487, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (45, 10, 500, 7, 488, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (46, 2, 33, 5, 455, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (47, 2, 46, 5, 456, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (48, 2, 62, 5, 457, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (49, 2, 68, 5, 458, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (50, 2, 75, 5, 459, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (51, 2, 78, 5, 460, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (52, 2, 78, 5, 461, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (53, 2, 78, 5, 462, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (54, 2, 78, 5, 463, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (55, 2, 104, 5, 464, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (56, 2, 581, 5, 466, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (57, 2, 581, 5, 467, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (58, 2, 581, 5, 468, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (59, 2, 581, 5, 469, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (60, 2, 581, 5, 470, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (61, 2, 581, 5, 471, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (62, 2, 581, 5, 473, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (63, 2, 581, 5, 465, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (64, 2, 581, 5, 472, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (65, 2, 134, 5, 474, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (66, 2, 134, 5, 475, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (67, 2, 134, 5, 478, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (68, 2, 174, 5, 476, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (69, 2, 174, 5, 477, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (70, 2, 190, 5, 479, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (71, 2, 190, 5, 480, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (72, 2, 217, 5, 481, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (73, 9, 582, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (74, 9, 583, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (75, 9, 584, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (76, 9, 346, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (77, 9, 585, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (78, 9, 586, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (79, 9, 587, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (80, 9, 588, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (81, 9, 583, 12, 376, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (82, 9, 584, 12, 376, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (83, 9, 585, 12, 376, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (84, 9, 307, 12, 377, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (85, 9, 584, 12, 378, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (86, 9, 584, 12, 379, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (87, 9, 584, 12, 380, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (88, 9, 584, 12, 381, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (89, 9, 584, 12, 382, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (90, 9, 584, 12, 383, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (91, 9, 584, 12, 384, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (92, 9, 584, 12, 385, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (93, 9, 584, 12, 386, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (94, 9, 584, 12, 387, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (95, 9, 584, 12, 388, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (96, 9, 584, 12, 389, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (97, 9, 584, 12, 390, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (98, 9, 584, 12, 391, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (99, 9, 584, 12, 392, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (100, 9, 584, 12, 393, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (101, 9, 584, 12, 394, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (102, 9, 584, 12, 395, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (103, 9, 584, 12, 396, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (104, 9, 584, 12, 397, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (105, 9, 584, 12, 398, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (106, 9, 584, 12, 399, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (107, 9, 584, 12, 400, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (108, 9, 584, 12, 401, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (109, 9, 584, 12, 402, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (110, 9, 584, 12, 403, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (111, 9, 584, 12, 404, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (112, 9, 589, 12, 405, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (113, 9, 589, 12, 406, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (114, 9, 589, 12, 407, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (115, 9, 589, 12, 408, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (116, 9, 589, 12, 409, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (117, 9, 589, 12, 410, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (118, 9, 589, 12, 411, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (119, 9, 589, 12, 412, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (120, 9, 589, 12, 413, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (121, 9, 589, 12, 414, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (122, 9, 589, 12, 415, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (123, 9, 311, 12, 416, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (124, 9, 584, 12, 416, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (125, 9, 589, 12, 416, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (126, 9, 586, 12, 416, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (127, 9, 587, 12, 416, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (128, 9, 585, 12, 417, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (129, 6, 580, 9, 299, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (130, 6, 576, 9, 300, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (131, 6, 578, 9, 300, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (132, 6, 575, 9, 301, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (133, 6, 580, 9, 302, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (134, 6, 575, 9, 303, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (135, 6, 580, 9, 304, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (136, 6, 575, 9, 583, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (137, 6, 575, 9, 307, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (138, 6, 593, 9, 308, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (139, 6, 577, 9, 309, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (140, 6, 441, 9, 594, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (141, 6, 442, 9, 594, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (142, 6, 578, 9, 594, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (143, 6, 576, 9, 594, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (144, 6, 595, 9, 594, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (145, 6, 580, 9, 594, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (146, 6, 591, 9, 594, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (147, 6, 580, 9, 311, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (148, 6, 575, 9, 312, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (149, 6, 418, 9, 313, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (150, 6, 425, 9, 313, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (151, 6, 576, 9, 313, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (152, 6, 438, 9, 313, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (153, 6, 580, 9, 313, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (154, 6, 576, 9, 314, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (155, 6, 441, 9, 314, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (156, 6, 578, 9, 314, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (157, 6, 580, 9, 314, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (158, 6, 608, 9, 314, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (159, 6, 591, 9, 314, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (160, 6, 575, 9, 315, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (161, 6, 575, 9, 316, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (162, 6, 575, 9, 596, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (163, 6, 575, 9, 319, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (164, 6, 575, 9, 320, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (165, 6, 597, 9, 321, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (166, 6, 577, 9, 321, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (167, 6, 442, 9, 321, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (168, 6, 443, 9, 321, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (169, 6, 578, 9, 321, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (170, 6, 608, 9, 321, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (171, 6, 575, 9, 322, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (172, 6, 576, 9, 323, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (173, 6, 438, 9, 323, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (174, 6, 579, 9, 323, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (175, 6, 580, 9, 323, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (176, 6, 575, 9, 324, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (177, 6, 575, 9, 325, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (178, 6, 575, 9, 326, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (179, 6, 575, 9, 327, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (180, 6, 441, 9, 328, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (181, 6, 598, 9, 328, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (182, 6, 608, 9, 328, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (183, 6, 591, 9, 328, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (184, 6, 424, 9, 329, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (185, 6, 575, 9, 330, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (186, 6, 575, 9, 584, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (187, 6, 575, 9, 589, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (188, 6, 597, 9, 338, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (189, 6, 577, 9, 338, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (190, 6, 591, 9, 338, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (191, 6, 576, 9, 339, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (192, 6, 578, 9, 339, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (193, 6, 580, 9, 339, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (194, 6, 580, 9, 340, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (195, 6, 575, 9, 341, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (196, 6, 431, 9, 342, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (197, 6, 442, 9, 342, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (198, 6, 445, 9, 342, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (199, 6, 448, 9, 342, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (200, 6, 449, 9, 342, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (201, 6, 580, 9, 342, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (202, 6, 575, 9, 343, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (203, 6, 575, 9, 344, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (204, 6, 575, 9, 599, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (205, 6, 576, 9, 585, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (206, 6, 438, 9, 585, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (207, 6, 578, 9, 585, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (208, 6, 580, 9, 585, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (209, 6, 576, 9, 350, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (210, 6, 438, 9, 350, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (211, 6, 578, 9, 350, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (212, 6, 580, 9, 350, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (213, 6, 439, 9, 351, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (214, 6, 445, 9, 351, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (215, 6, 580, 9, 351, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (216, 6, 608, 9, 351, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (217, 6, 575, 9, 352, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (218, 6, 575, 9, 353, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (219, 6, 575, 9, 587, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (220, 6, 575, 9, 355, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (221, 6, 424, 9, 356, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (222, 6, 577, 9, 356, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (223, 6, 443, 9, 356, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (224, 6, 445, 9, 356, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (225, 6, 608, 9, 356, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (226, 6, 591, 9, 356, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (227, 6, 424, 9, 357, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (228, 6, 441, 9, 357, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (229, 6, 442, 9, 357, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (230, 6, 580, 9, 357, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (231, 6, 591, 9, 357, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (232, 6, 575, 9, 358, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (233, 6, 575, 9, 359, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (234, 6, 575, 9, 360, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (235, 6, 575, 9, 361, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (236, 6, 576, 9, 362, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (237, 6, 438, 9, 362, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (238, 6, 578, 9, 362, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (239, 6, 580, 9, 362, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (240, 6, 576, 9, 363, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (241, 6, 438, 9, 363, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (242, 6, 578, 9, 363, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (243, 6, 580, 9, 363, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (244, 6, 576, 9, 364, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (245, 6, 438, 9, 364, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (246, 6, 441, 9, 364, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (247, 6, 447, 9, 364, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (248, 6, 580, 9, 364, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (249, 6, 576, 9, 365, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (250, 6, 438, 9, 365, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (251, 6, 578, 9, 365, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (252, 6, 580, 9, 365, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (253, 6, 575, 9, 366, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (254, 6, 575, 9, 367, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (255, 6, 418, 9, 368, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (256, 6, 425, 9, 368, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (257, 6, 576, 9, 368, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (258, 6, 438, 9, 368, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (259, 6, 578, 9, 368, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (260, 6, 579, 9, 368, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (261, 6, 580, 9, 368, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (262, 6, 580, 9, 369, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (263, 6, 593, 9, 370, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (264, 6, 580, 9, 370, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (265, 6, 438, 9, 371, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (266, 6, 580, 9, 371, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (267, 6, 580, 9, 372, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (268, 6, 575, 9, 373, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (269, 6, 580, 9, 374, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (270, 6, 576, 8, 259, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (271, 6, 445, 8, 259, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (272, 6, 448, 8, 259, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (273, 6, 449, 8, 259, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (274, 6, 580, 8, 259, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (275, 6, 434, 8, 260, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (276, 6, 436, 8, 260, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (277, 6, 448, 8, 260, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (278, 6, 580, 8, 260, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (279, 6, 576, 8, 260, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (280, 6, 578, 8, 260, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (281, 6, 438, 8, 260, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (282, 6, 576, 8, 261, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (283, 6, 580, 8, 261, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (284, 6, 432, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (285, 6, 434, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (286, 6, 435, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (287, 6, 445, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (288, 6, 448, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (289, 6, 449, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (290, 6, 580, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (291, 6, 434, 8, 263, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (292, 6, 435, 8, 263, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (293, 6, 436, 8, 263, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (294, 6, 438, 8, 263, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (295, 6, 445, 8, 263, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (296, 6, 448, 8, 263, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (297, 6, 580, 8, 263, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (298, 6, 576, 8, 264, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (299, 6, 438, 8, 264, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (300, 6, 445, 8, 264, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (301, 6, 447, 8, 264, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (302, 6, 590, 8, 264, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (303, 6, 448, 8, 264, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (304, 6, 580, 8, 609, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (305, 6, 576, 8, 267, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (306, 6, 434, 8, 267, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (307, 6, 578, 8, 267, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (308, 6, 448, 8, 267, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (309, 6, 580, 8, 267, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (310, 6, 580, 8, 267, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (311, 6, 425, 8, 269, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (312, 6, 576, 8, 269, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (313, 6, 438, 8, 269, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (314, 6, 576, 8, 270, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (315, 6, 438, 8, 270, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (316, 6, 580, 8, 270, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (317, 6, 576, 8, 271, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (318, 6, 438, 8, 271, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (319, 6, 578, 8, 271, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (320, 6, 580, 8, 271, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (321, 6, 448, 8, 272, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (322, 6, 580, 8, 272, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (323, 6, 576, 8, 273, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (324, 6, 445, 8, 273, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (325, 6, 448, 8, 273, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (326, 6, 449, 8, 273, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (327, 6, 580, 8, 273, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (328, 6, 576, 8, 274, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (329, 6, 438, 8, 274, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (330, 6, 445, 8, 274, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (331, 6, 579, 8, 274, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (332, 6, 449, 8, 274, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (333, 6, 580, 8, 274, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (334, 6, 580, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (335, 6, 432, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (336, 6, 434, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (337, 6, 435, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (338, 6, 438, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (339, 6, 445, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (340, 6, 448, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (341, 6, 449, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (342, 6, 432, 8, 276, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (343, 6, 434, 8, 276, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (344, 6, 435, 8, 276, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (345, 6, 445, 8, 276, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (346, 6, 448, 8, 276, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (347, 6, 449, 8, 276, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (348, 6, 580, 8, 276, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (349, 6, 576, 8, 278, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (350, 6, 438, 8, 278, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (351, 6, 578, 8, 278, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (352, 6, 580, 8, 278, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (353, 6, 576, 8, 280, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (354, 6, 438, 8, 280, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (355, 6, 580, 8, 280, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (356, 6, 580, 8, 282, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (357, 6, 432, 8, 262, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (358, 6, 434, 8, 262, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (359, 6, 435, 8, 262, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (360, 6, 445, 8, 262, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (361, 6, 448, 8, 262, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (362, 6, 449, 8, 262, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (363, 6, 580, 8, 262, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (364, 6, 424, 8, 283, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (365, 6, 576, 8, 283, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (366, 6, 445, 8, 283, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (367, 6, 448, 8, 283, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (368, 6, 449, 8, 283, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (369, 6, 580, 8, 283, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (370, 6, 424, 8, 284, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (371, 6, 576, 8, 284, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (372, 6, 441, 8, 284, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (373, 6, 445, 8, 284, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (374, 6, 448, 8, 284, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (375, 6, 449, 8, 284, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (376, 6, 580, 8, 284, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (377, 6, 580, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (378, 6, 424, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (379, 6, 576, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (380, 6, 441, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (381, 6, 445, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (382, 6, 448, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (383, 6, 449, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (384, 6, 580, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (385, 6, 424, 8, 286, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (386, 6, 576, 8, 286, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (387, 6, 441, 8, 286, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (388, 6, 445, 8, 286, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (389, 6, 448, 8, 286, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (390, 6, 449, 8, 286, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (391, 6, 580, 8, 286, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (392, 6, 424, 8, 287, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (393, 6, 576, 8, 287, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (394, 6, 441, 8, 287, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (395, 6, 445, 8, 287, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (396, 6, 448, 8, 287, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (397, 6, 449, 8, 287, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (398, 6, 580, 8, 287, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (399, 6, 445, 8, 265, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (400, 6, 449, 8, 265, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (401, 6, 576, 8, 265, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (402, 6, 448, 8, 265, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (403, 6, 580, 8, 265, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (404, 6, 424, 8, 265, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (405, 6, 441, 8, 265, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (406, 6, 434, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (407, 6, 432, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (408, 6, 427, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (409, 6, 435, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (410, 6, 436, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (411, 6, 448, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (412, 6, 580, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (413, 6, 438, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (414, 6, 445, 8, 279, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (415, 6, 449, 8, 279, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (416, 6, 576, 8, 279, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (417, 6, 448, 8, 279, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (418, 6, 580, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (419, 6, 445, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (420, 6, 449, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (421, 6, 445, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (422, 6, 449, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (423, 6, 580, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (424, 6, 448, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (425, 6, 434, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (426, 6, 576, 8, 267, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (427, 6, 580, 8, 267, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (428, 6, 578, 8, 267, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (429, 6, 441, 2, 1, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (430, 6, 575, 2, 3, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (431, 6, 576, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (432, 6, 438, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (433, 6, 578, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (434, 6, 580, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (435, 6, 576, 2, 6, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (436, 6, 438, 2, 6, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (437, 6, 578, 2, 6, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (438, 6, 580, 2, 6, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (439, 6, 576, 2, 8, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (440, 6, 438, 2, 8, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (441, 6, 578, 2, 8, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (442, 6, 580, 2, 8, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (443, 6, 576, 2, 9, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (444, 6, 438, 2, 9, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (445, 6, 580, 2, 9, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (446, 6, 578, 2, 9, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (447, 6, 576, 2, 10, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (448, 6, 438, 2, 10, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (449, 6, 578, 2, 10, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (450, 6, 580, 2, 10, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (451, 6, 576, 2, 11, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (452, 6, 438, 2, 11, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (453, 6, 580, 2, 11, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (454, 6, 419, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (455, 6, 427, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (456, 6, 429, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (457, 6, 431, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (458, 6, 434, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (459, 6, 435, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (460, 6, 436, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (461, 6, 438, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (462, 6, 443, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (463, 6, 579, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (464, 6, 449, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (465, 6, 580, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (466, 6, 575, 2, 13, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (467, 6, 576, 2, 14, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (468, 6, 438, 2, 14, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (469, 6, 579, 2, 14, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (470, 6, 580, 2, 14, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (471, 6, 427, 2, 15, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (472, 6, 434, 2, 15, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (473, 6, 580, 2, 15, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (474, 6, 576, 2, 16, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (475, 6, 445, 2, 16, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (476, 6, 448, 2, 16, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (477, 6, 449, 2, 16, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (478, 6, 580, 2, 16, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (479, 6, 576, 2, 19, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (480, 6, 445, 2, 19, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (481, 6, 448, 2, 19, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (482, 6, 449, 2, 19, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (483, 6, 580, 2, 19, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (484, 6, 427, 2, 21, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (485, 6, 431, 2, 21, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (486, 6, 432, 2, 21, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (487, 6, 434, 2, 21, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (488, 6, 435, 2, 21, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (489, 6, 580, 2, 21, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (490, 6, 576, 2, 23, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (491, 6, 445, 2, 23, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (492, 6, 448, 2, 23, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (493, 6, 580, 2, 23, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (494, 6, 424, 2, 25, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (495, 6, 593, 2, 25, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (496, 6, 439, 2, 25, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (497, 6, 443, 2, 25, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (498, 6, 578, 2, 25, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (499, 6, 580, 2, 25, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (500, 6, 591, 2, 25, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (501, 6, 575, 2, 26, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (502, 6, 427, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (503, 6, 429, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (504, 6, 432, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (505, 6, 434, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (506, 6, 435, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (507, 6, 436, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (508, 6, 438, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (509, 6, 445, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (510, 6, 447, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (511, 6, 448, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (512, 6, 580, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (513, 6, 448, 2, 29, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (514, 6, 580, 2, 29, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (515, 6, 576, 2, 31, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (516, 6, 580, 2, 32, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (517, 6, 576, 2, 32, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (518, 6, 575, 2, 33, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (519, 6, 418, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (520, 6, 425, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (521, 6, 434, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (522, 6, 435, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (523, 6, 436, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (524, 6, 445, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (525, 6, 448, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (526, 6, 580, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (527, 6, 427, 2, 37, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (528, 6, 434, 2, 37, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (529, 6, 435, 2, 37, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (530, 6, 436, 2, 37, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (531, 6, 438, 2, 37, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (532, 6, 580, 2, 37, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (533, 6, 575, 2, 38, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (534, 6, 580, 2, 39, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (535, 6, 434, 2, 40, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (536, 6, 435, 2, 40, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (537, 6, 441, 2, 40, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (538, 6, 445, 2, 40, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (539, 6, 448, 2, 40, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (540, 6, 449, 2, 40, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (541, 6, 580, 2, 40, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (542, 6, 580, 2, 41, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (543, 6, 580, 2, 42, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (544, 6, 576, 2, 43, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (545, 6, 438, 2, 43, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (546, 6, 445, 2, 43, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (547, 6, 580, 2, 43, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (548, 6, 576, 2, 44, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (549, 6, 578, 2, 44, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (550, 6, 580, 2, 44, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (551, 6, 576, 2, 45, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (552, 6, 438, 2, 45, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (553, 6, 578, 2, 45, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (554, 6, 580, 2, 45, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (555, 6, 576, 2, 46, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (556, 6, 438, 2, 46, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (557, 6, 448, 2, 46, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (558, 6, 580, 2, 46, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (559, 6, 427, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (560, 6, 429, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (561, 6, 431, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (562, 6, 432, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (563, 6, 434, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (564, 6, 435, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (565, 6, 436, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (566, 6, 580, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (567, 6, 575, 2, 50, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (568, 6, 425, 2, 51, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (569, 6, 438, 2, 51, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (570, 6, 580, 2, 51, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (571, 6, 418, 2, 54, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (572, 6, 425, 2, 54, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (573, 6, 438, 2, 54, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (574, 6, 580, 2, 54, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (575, 6, 427, 2, 57, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (576, 6, 429, 2, 57, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (577, 6, 432, 2, 57, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (578, 6, 434, 2, 57, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (579, 6, 435, 2, 57, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (580, 6, 436, 2, 57, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (581, 6, 580, 2, 57, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (582, 6, 449, 2, 58, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (583, 6, 449, 2, 59, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (584, 6, 434, 2, 60, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (585, 6, 435, 2, 60, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (586, 6, 447, 2, 60, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (587, 6, 448, 2, 60, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (588, 6, 580, 2, 60, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (589, 6, 575, 2, 61, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (590, 6, 434, 2, 65, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (591, 6, 435, 2, 65, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (592, 6, 437, 2, 65, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (593, 6, 445, 2, 65, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (594, 6, 448, 2, 65, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (595, 6, 449, 2, 65, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (596, 6, 580, 2, 65, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (597, 6, 576, 2, 66, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (598, 6, 445, 2, 66, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (599, 6, 448, 2, 66, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (600, 6, 449, 2, 66, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (601, 6, 580, 2, 66, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (602, 6, 576, 2, 67, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (603, 6, 445, 2, 67, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (604, 6, 580, 2, 67, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (605, 6, 576, 2, 68, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (606, 6, 441, 2, 68, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (607, 6, 445, 2, 68, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (608, 6, 448, 2, 68, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (609, 6, 449, 2, 68, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (610, 6, 580, 2, 68, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (611, 6, 580, 2, 71, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (612, 6, 418, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (613, 6, 425, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (614, 6, 576, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (615, 6, 438, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (616, 6, 445, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (617, 6, 448, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (618, 6, 449, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (619, 6, 580, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (620, 6, 424, 2, 79, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (621, 6, 576, 2, 79, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (622, 6, 445, 2, 79, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (623, 6, 448, 2, 79, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (624, 6, 449, 2, 79, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (625, 6, 580, 2, 79, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (626, 6, 424, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (627, 6, 576, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (628, 6, 441, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (629, 6, 445, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (630, 6, 448, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (631, 6, 449, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (632, 6, 580, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (633, 6, 591, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (634, 6, 434, 2, 82, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (635, 6, 435, 2, 82, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (636, 6, 445, 2, 82, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (637, 6, 580, 2, 82, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (638, 6, 576, 2, 83, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (639, 6, 441, 2, 83, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (640, 6, 445, 2, 83, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (641, 6, 448, 2, 83, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (642, 6, 449, 2, 83, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (643, 6, 580, 2, 83, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (644, 6, 576, 2, 601, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (645, 6, 441, 2, 601, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (646, 6, 445, 2, 601, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (647, 6, 448, 2, 601, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (648, 6, 449, 2, 601, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (649, 6, 580, 2, 601, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (650, 6, 441, 2, 84, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (651, 6, 576, 2, 86, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (652, 6, 580, 2, 86, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (653, 6, 434, 2, 87, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (654, 6, 435, 2, 87, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (655, 6, 445, 2, 87, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (656, 6, 448, 2, 87, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (657, 6, 580, 2, 87, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (658, 6, 576, 2, 88, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (659, 6, 442, 2, 88, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (660, 6, 445, 2, 88, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (661, 6, 448, 2, 88, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (662, 6, 449, 2, 88, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (663, 6, 580, 2, 88, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (664, 6, 427, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (665, 6, 429, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (666, 6, 453, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (667, 6, 431, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (668, 6, 434, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (669, 6, 436, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (670, 6, 438, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (671, 6, 447, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (672, 6, 590, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (673, 6, 580, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (674, 6, 576, 2, 93, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (675, 6, 438, 2, 93, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (676, 6, 580, 2, 93, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (677, 6, 418, 2, 94, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (678, 6, 425, 2, 94, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (679, 6, 438, 2, 94, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (680, 6, 580, 2, 94, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (681, 6, 580, 2, 96, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (682, 6, 580, 2, 99, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (683, 6, 580, 2, 100, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (684, 6, 580, 2, 101, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (685, 6, 580, 2, 102, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (686, 6, 580, 2, 104, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (687, 6, 580, 2, 106, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (688, 6, 580, 2, 109, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (689, 6, 580, 2, 112, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (690, 6, 580, 2, 113, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (691, 6, 580, 2, 114, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (692, 6, 576, 2, 115, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (693, 6, 438, 2, 115, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (694, 6, 580, 2, 115, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (695, 6, 576, 2, 116, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (696, 6, 438, 2, 116, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (697, 6, 447, 2, 116, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (698, 6, 448, 2, 116, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (699, 6, 580, 2, 116, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (700, 6, 424, 2, 118, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (701, 6, 576, 2, 118, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (702, 6, 441, 2, 118, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (703, 6, 445, 2, 118, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (704, 6, 448, 2, 118, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (705, 6, 449, 2, 118, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (706, 6, 580, 2, 118, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (707, 6, 576, 2, 581, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (708, 6, 580, 2, 581, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (709, 6, 578, 2, 581, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (710, 6, 580, 2, 121, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (711, 6, 576, 2, 122, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (712, 6, 438, 2, 122, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (713, 6, 445, 2, 122, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (714, 6, 447, 2, 122, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (715, 6, 448, 2, 122, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (716, 6, 449, 2, 122, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (717, 6, 580, 2, 122, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (718, 6, 427, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (719, 6, 429, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (720, 6, 453, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (721, 6, 434, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (722, 6, 435, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (723, 6, 436, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (724, 6, 438, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (725, 6, 580, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (726, 6, 575, 2, 124, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (727, 6, 576, 2, 125, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (728, 6, 438, 2, 125, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (729, 6, 418, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (730, 6, 438, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (731, 6, 441, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (732, 6, 445, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (733, 6, 579, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (734, 6, 448, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (735, 6, 449, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (736, 6, 580, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (737, 6, 575, 2, 127, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (738, 6, 576, 2, 128, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (739, 6, 438, 2, 128, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (740, 6, 447, 2, 128, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (741, 6, 602, 2, 128, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (742, 6, 590, 2, 128, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (743, 6, 448, 2, 128, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (744, 6, 580, 2, 128, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (745, 6, 575, 2, 129, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (746, 6, 432, 2, 130, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (747, 6, 434, 2, 130, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (748, 6, 435, 2, 130, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (749, 6, 438, 2, 130, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (750, 6, 580, 2, 130, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (751, 6, 576, 2, 131, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (752, 6, 445, 2, 131, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (753, 6, 448, 2, 131, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (754, 6, 449, 2, 131, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (755, 6, 580, 2, 131, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (756, 6, 432, 2, 132, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (757, 6, 434, 2, 132, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (758, 6, 435, 2, 132, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (759, 6, 580, 2, 132, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (760, 6, 432, 2, 133, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (761, 6, 434, 2, 133, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (762, 6, 435, 2, 133, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (763, 6, 445, 2, 133, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (764, 6, 448, 2, 133, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (765, 6, 449, 2, 133, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (766, 6, 580, 2, 133, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (767, 6, 432, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (768, 6, 434, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (769, 6, 445, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (770, 6, 448, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (771, 6, 449, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (772, 6, 580, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (773, 6, 424, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (774, 6, 441, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (775, 6, 575, 2, 135, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (776, 6, 576, 2, 136, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (777, 6, 445, 2, 136, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (778, 6, 448, 2, 136, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (779, 6, 449, 2, 136, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (780, 6, 580, 2, 136, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (781, 6, 432, 2, 137, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (782, 6, 434, 2, 137, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (783, 6, 435, 2, 137, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (784, 6, 445, 2, 137, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (785, 6, 448, 2, 137, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (786, 6, 449, 2, 137, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (787, 6, 580, 2, 137, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (788, 6, 575, 2, 140, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (789, 6, 575, 2, 141, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (790, 6, 432, 2, 143, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (791, 6, 434, 2, 143, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (792, 6, 435, 2, 143, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (793, 6, 445, 2, 143, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (794, 6, 448, 2, 143, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (795, 6, 449, 2, 143, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (796, 6, 580, 2, 143, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (797, 6, 432, 2, 147, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (798, 6, 434, 2, 147, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (799, 6, 435, 2, 147, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (800, 6, 438, 2, 147, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (801, 6, 445, 2, 147, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (802, 6, 448, 2, 147, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (803, 6, 580, 2, 147, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (804, 6, 432, 2, 148, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (805, 6, 434, 2, 148, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (806, 6, 445, 2, 148, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (807, 6, 448, 2, 148, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (808, 6, 449, 2, 148, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (809, 6, 580, 2, 148, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (810, 6, 577, 2, 149, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (811, 6, 443, 2, 149, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (812, 6, 445, 2, 149, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (813, 6, 448, 2, 149, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (814, 6, 449, 2, 149, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (815, 6, 580, 2, 149, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (816, 6, 576, 2, 150, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (817, 6, 438, 2, 150, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (818, 6, 580, 2, 150, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (819, 6, 575, 2, 151, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (820, 6, 575, 2, 152, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (821, 6, 576, 2, 157, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (822, 6, 438, 2, 157, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (823, 6, 447, 2, 157, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (824, 6, 590, 2, 157, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (825, 6, 580, 2, 157, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (826, 6, 580, 2, 158, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (827, 6, 576, 2, 160, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (828, 6, 448, 2, 160, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (829, 6, 580, 2, 160, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (830, 6, 434, 2, 163, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (831, 6, 445, 2, 163, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (832, 6, 448, 2, 163, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (833, 6, 580, 2, 163, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (834, 6, 576, 2, 165, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (835, 6, 438, 2, 165, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (836, 6, 447, 2, 165, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (837, 6, 448, 2, 165, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (838, 6, 580, 2, 165, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (839, 6, 454, 2, 168, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (840, 6, 427, 2, 168, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (841, 6, 432, 2, 168, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (842, 6, 434, 2, 168, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (843, 6, 427, 2, 169, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (844, 6, 434, 2, 169, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (845, 6, 435, 2, 169, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (846, 6, 448, 2, 169, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (847, 6, 580, 2, 169, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (848, 6, 576, 2, 170, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (849, 6, 438, 2, 170, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (850, 6, 579, 2, 170, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (851, 6, 448, 2, 170, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (852, 6, 580, 2, 171, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (853, 6, 580, 2, 172, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (854, 6, 580, 2, 173, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (855, 6, 575, 2, 179, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (856, 6, 575, 2, 180, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (857, 6, 580, 2, 603, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (858, 6, 432, 2, 182, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (859, 6, 434, 2, 182, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (860, 6, 435, 2, 182, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (861, 6, 445, 2, 182, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (862, 6, 448, 2, 182, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (863, 6, 449, 2, 182, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (864, 6, 580, 2, 182, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (865, 6, 580, 2, 183, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (866, 6, 576, 2, 188, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (867, 6, 438, 2, 188, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (868, 6, 445, 2, 188, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (869, 6, 447, 2, 188, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (870, 6, 448, 2, 188, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (871, 6, 580, 2, 188, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (872, 6, 580, 2, 189, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (873, 6, 575, 2, 190, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (874, 6, 441, 2, 191, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (875, 6, 435, 2, 215, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (876, 6, 580, 2, 216, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (877, 6, 434, 2, 217, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (878, 6, 435, 2, 217, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (879, 6, 445, 2, 217, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (880, 6, 448, 2, 217, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (881, 6, 449, 2, 217, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (882, 6, 580, 2, 217, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (883, 6, 575, 2, 218, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (884, 6, 424, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (885, 6, 434, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (886, 6, 435, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (887, 6, 438, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (888, 6, 442, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (889, 6, 445, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (890, 6, 448, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (891, 6, 449, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (892, 6, 580, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (893, 6, 434, 2, 220, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (894, 6, 435, 2, 220, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (895, 6, 437, 2, 220, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (896, 6, 445, 2, 220, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (897, 6, 448, 2, 220, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (898, 6, 580, 2, 220, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (899, 6, 441, 2, 223, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (900, 6, 441, 2, 224, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (901, 6, 580, 2, 226, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (902, 6, 424, 2, 227, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (903, 6, 434, 2, 227, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (904, 6, 435, 2, 227, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (905, 6, 445, 2, 227, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (906, 6, 434, 2, 228, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (907, 6, 435, 2, 228, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (908, 6, 445, 2, 228, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (909, 6, 448, 2, 228, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (910, 6, 449, 2, 228, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (911, 6, 580, 2, 228, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (912, 6, 580, 2, 228, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (913, 6, 424, 2, 232, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (914, 6, 434, 2, 232, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (915, 6, 437, 2, 232, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (916, 6, 445, 2, 232, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (917, 6, 448, 2, 232, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (918, 6, 449, 2, 232, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (919, 6, 580, 2, 232, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (920, 6, 432, 2, 233, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (921, 6, 434, 2, 233, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (922, 6, 435, 2, 233, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (923, 6, 445, 2, 233, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (924, 6, 448, 2, 233, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (925, 6, 449, 2, 233, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (926, 6, 580, 2, 233, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (927, 6, 576, 2, 235, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (928, 6, 441, 2, 235, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (929, 6, 445, 2, 235, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (930, 6, 448, 2, 235, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (931, 6, 449, 2, 235, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (932, 6, 580, 2, 235, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (933, 6, 576, 2, 236, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (934, 6, 578, 2, 236, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (935, 6, 580, 2, 236, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (936, 6, 580, 2, 237, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (937, 6, 580, 2, 244, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (938, 6, 576, 2, 245, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (939, 6, 578, 2, 245, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (940, 6, 580, 2, 245, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (941, 6, 576, 2, 246, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (942, 6, 438, 2, 246, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (943, 6, 580, 2, 246, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (944, 6, 427, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (945, 6, 429, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (946, 6, 453, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (947, 6, 434, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (948, 6, 435, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (949, 6, 436, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (950, 6, 438, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (951, 6, 580, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (952, 6, 441, 2, 2, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (953, 6, 578, 2, 2, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (954, 6, 576, 2, 2, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (955, 6, 580, 2, 2, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (956, 6, 580, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (957, 6, 438, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (958, 6, 418, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (959, 6, 425, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (960, 6, 576, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (961, 6, 448, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (962, 6, 449, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (963, 6, 445, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (964, 6, 575, 2, 7, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (965, 6, 580, 2, 17, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (966, 6, 454, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (967, 6, 427, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (968, 6, 445, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (969, 6, 580, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (970, 6, 432, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (971, 6, 448, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (972, 6, 434, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (973, 6, 435, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (974, 6, 580, 2, 20, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (975, 6, 449, 2, 22, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (976, 6, 445, 2, 22, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (977, 6, 448, 2, 22, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (978, 6, 576, 2, 22, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (979, 6, 441, 2, 24, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (980, 6, 591, 2, 24, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (981, 6, 580, 2, 193, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (982, 6, 580, 2, 213, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (983, 6, 438, 2, 213, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (984, 6, 576, 2, 213, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (985, 6, 445, 2, 604, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (986, 6, 449, 2, 604, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (987, 6, 576, 2, 604, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (988, 6, 448, 2, 604, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (989, 6, 580, 2, 604, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (990, 6, 580, 2, 103, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (991, 6, 438, 2, 103, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (992, 6, 418, 2, 103, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (993, 6, 425, 2, 103, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (994, 6, 434, 2, 77, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (995, 6, 435, 2, 77, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (996, 6, 580, 2, 77, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (997, 6, 580, 2, 77, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (998, 6, 576, 2, 77, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (999, 6, 578, 2, 77, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1000, 6, 580, 2, 77, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1001, 6, 418, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1002, 6, 576, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1003, 6, 438, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1004, 6, 425, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1005, 6, 580, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1006, 6, 447, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1007, 6, 602, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1008, 6, 590, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1009, 6, 448, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1010, 6, 418, 2, 119, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1011, 6, 425, 2, 119, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1012, 6, 438, 2, 119, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1013, 6, 580, 2, 119, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1014, 6, 580, 2, 121, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1015, 6, 580, 2, 30, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1016, 6, 424, 2, 43, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1017, 6, 418, 2, 55, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1018, 6, 425, 2, 55, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1019, 6, 576, 2, 55, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1020, 6, 580, 2, 55, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1021, 6, 438, 2, 55, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1022, 6, 434, 2, 56, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1023, 6, 427, 2, 56, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1024, 6, 436, 2, 56, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1025, 6, 445, 2, 63, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1026, 6, 576, 2, 63, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1027, 6, 448, 2, 63, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1028, 6, 580, 2, 63, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1029, 6, 418, 2, 28, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1030, 6, 425, 2, 28, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1031, 6, 434, 2, 28, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1032, 6, 438, 2, 28, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1033, 6, 580, 2, 28, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1034, 6, 434, 2, 34, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1035, 6, 427, 2, 34, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1036, 6, 580, 2, 34, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1037, 6, 438, 2, 34, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1038, 6, 580, 2, 48, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1039, 6, 580, 2, 49, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1040, 6, 580, 2, 52, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1041, 6, 445, 2, 52, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1042, 6, 454, 2, 52, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1043, 6, 427, 2, 52, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1044, 6, 429, 2, 52, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1045, 6, 580, 2, 53, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1046, 6, 580, 2, 62, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1047, 6, 576, 2, 62, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1048, 6, 448, 2, 62, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1049, 6, 445, 2, 62, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1050, 6, 438, 2, 62, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1051, 6, 418, 2, 62, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1052, 6, 425, 2, 62, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1053, 6, 445, 2, 64, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1054, 6, 576, 2, 64, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1055, 6, 448, 2, 64, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1056, 6, 580, 2, 64, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1057, 6, 445, 2, 69, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1058, 6, 449, 2, 69, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1059, 6, 424, 2, 69, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1060, 6, 576, 2, 69, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1061, 6, 448, 2, 69, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1062, 6, 580, 2, 69, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1063, 6, 445, 2, 70, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1064, 6, 576, 2, 70, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1065, 6, 580, 2, 70, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1066, 6, 445, 2, 73, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1067, 6, 576, 2, 73, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1068, 6, 580, 2, 73, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1069, 6, 441, 2, 73, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1070, 6, 445, 2, 605, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1071, 6, 576, 2, 605, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1072, 6, 580, 2, 605, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1073, 6, 580, 2, 606, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1074, 6, 576, 2, 606, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1075, 6, 445, 2, 606, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1076, 6, 448, 2, 606, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1077, 6, 449, 2, 606, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1078, 6, 445, 2, 76, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1079, 6, 434, 2, 76, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1080, 6, 435, 2, 76, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1081, 6, 448, 2, 76, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1082, 6, 580, 2, 76, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1083, 6, 445, 2, 80, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1084, 6, 449, 2, 80, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1085, 6, 576, 2, 80, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1086, 6, 448, 2, 80, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1087, 6, 580, 2, 80, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1088, 6, 441, 2, 80, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1089, 6, 438, 2, 85, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1090, 6, 580, 2, 85, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1091, 6, 577, 2, 91, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1092, 6, 438, 2, 92, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1093, 6, 580, 2, 92, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1094, 6, 580, 2, 95, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1095, 6, 438, 2, 95, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1096, 6, 418, 2, 95, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1097, 6, 425, 2, 95, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1098, 6, 580, 2, 97, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1099, 6, 448, 2, 97, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1100, 6, 434, 2, 97, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1101, 6, 435, 2, 97, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1102, 6, 427, 2, 97, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1103, 6, 454, 2, 97, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1104, 6, 438, 2, 97, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1105, 6, 576, 2, 98, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1106, 6, 438, 2, 98, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1107, 6, 580, 2, 98, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1108, 6, 580, 2, 105, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1109, 6, 580, 2, 107, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1110, 6, 438, 2, 107, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1111, 6, 448, 2, 107, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1112, 6, 449, 2, 107, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1113, 6, 580, 2, 108, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1114, 6, 580, 2, 110, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1115, 6, 576, 2, 110, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1116, 6, 438, 2, 110, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1117, 6, 580, 2, 111, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1118, 6, 438, 2, 111, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1119, 6, 580, 2, 607, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1120, 6, 576, 2, 607, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1121, 6, 448, 2, 607, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1122, 6, 449, 2, 607, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1123, 6, 445, 2, 607, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1124, 6, 435, 2, 142, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1125, 6, 580, 2, 144, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1126, 6, 580, 2, 145, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1127, 6, 432, 2, 145, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1128, 6, 434, 2, 145, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1129, 6, 435, 2, 145, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1130, 6, 580, 2, 146, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1131, 6, 434, 2, 146, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1132, 6, 435, 2, 146, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1133, 6, 436, 2, 146, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1134, 6, 432, 2, 146, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1135, 6, 580, 2, 153, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1136, 6, 434, 2, 153, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1137, 6, 435, 2, 153, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1138, 6, 580, 2, 154, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1139, 6, 593, 2, 155, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1140, 6, 443, 2, 155, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1141, 6, 580, 2, 155, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1142, 6, 580, 2, 156, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1143, 6, 438, 2, 156, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1144, 6, 580, 2, 159, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1145, 6, 438, 2, 159, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1146, 6, 425, 2, 159, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1147, 6, 418, 2, 159, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1148, 6, 580, 2, 161, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1149, 6, 580, 2, 162, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1150, 6, 580, 2, 164, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1151, 6, 445, 2, 166, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1152, 6, 449, 2, 166, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1153, 6, 576, 2, 166, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1154, 6, 441, 2, 166, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1155, 6, 438, 2, 166, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1156, 6, 448, 2, 166, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1157, 6, 580, 2, 166, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1158, 6, 445, 2, 167, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1159, 6, 449, 2, 167, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1160, 6, 576, 2, 167, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1161, 6, 448, 2, 167, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1162, 6, 580, 2, 167, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1163, 6, 580, 2, 174, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1164, 6, 434, 2, 174, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1165, 6, 435, 2, 174, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1166, 6, 449, 2, 174, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1167, 6, 445, 2, 174, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1168, 6, 448, 2, 174, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1169, 6, 434, 2, 175, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1170, 6, 435, 2, 175, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1171, 6, 445, 2, 176, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1172, 6, 449, 2, 176, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1173, 6, 434, 2, 176, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1174, 6, 435, 2, 176, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1175, 6, 448, 2, 176, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1176, 6, 580, 2, 176, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1177, 6, 434, 2, 177, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1178, 6, 435, 2, 177, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1179, 6, 580, 2, 177, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1180, 6, 580, 2, 178, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1181, 6, 438, 2, 178, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1182, 6, 576, 2, 178, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1183, 6, 445, 2, 178, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1184, 6, 449, 2, 178, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1185, 6, 448, 2, 178, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1186, 6, 438, 2, 184, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1187, 6, 580, 2, 184, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1188, 6, 445, 2, 185, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1189, 6, 434, 2, 185, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1190, 6, 435, 2, 185, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1191, 6, 437, 2, 185, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1192, 6, 448, 2, 185, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1193, 6, 580, 2, 185, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1194, 6, 575, 2, 186, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1195, 6, 580, 2, 187, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1196, 6, 580, 2, 214, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1197, 6, 580, 2, 221, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1198, 6, 580, 2, 222, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1199, 6, 580, 2, 225, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1200, 6, 442, 2, 225, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1201, 6, 424, 2, 225, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1202, 6, 441, 2, 225, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1203, 6, 578, 2, 225, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1204, 6, 575, 2, 229, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1205, 6, 580, 2, 230, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1206, 6, 434, 2, 230, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1207, 6, 435, 2, 230, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1208, 6, 436, 2, 230, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1209, 6, 438, 2, 230, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1210, 6, 448, 2, 230, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1211, 6, 580, 2, 231, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1212, 6, 427, 2, 231, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1213, 6, 434, 2, 231, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1214, 6, 435, 2, 231, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1215, 6, 436, 2, 231, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1216, 6, 445, 2, 234, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1217, 6, 437, 2, 234, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1218, 6, 434, 2, 234, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1219, 6, 435, 2, 234, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1220, 6, 448, 2, 234, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1221, 6, 580, 2, 234, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1222, 6, 424, 2, 234, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1223, 6, 580, 2, 238, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1224, 6, 580, 2, 239, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1225, 6, 580, 2, 240, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1226, 6, 580, 2, 241, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1227, 6, 580, 2, 242, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1228, 6, 580, 2, 243, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1229, 6, 580, 2, 247, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1230, 6, 580, 2, 249, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1231, 6, 434, 2, 249, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1232, 6, 435, 2, 249, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1233, 6, 427, 2, 249, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1234, 6, 436, 2, 249, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1235, 6, 432, 2, 249, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1236, 6, 441, 2, 43, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1237, 6, 576, 2, 224, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1238, 6, 580, 2, 224, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1239, 6, 576, 8, 289, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1240, 6, 580, 8, 289, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1241, 6, 578, 8, 289, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1242, 6, 445, 2, 250, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1243, 6, 424, 2, 250, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1244, 6, 576, 2, 250, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1245, 6, 445, 2, 251, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1246, 6, 576, 2, 251, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1247, 6, 580, 2, 252, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1248, 6, 576, 2, 252, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1249, 6, 580, 2, 253, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1250, 6, 576, 2, 253, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1251, 6, 580, 2, 254, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1252, 6, 576, 2, 254, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1253, 6, 580, 2, 255, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1254, 6, 576, 2, 255, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1255, 6, 580, 2, 256, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1256, 6, 576, 2, 256, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1257, 6, 580, 2, 257, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1258, 6, 576, 2, 257, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1259, 6, 580, 2, 258, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1260, 6, 576, 2, 258, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1261, 6, 576, 2, 322, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1262, 6, 576, 10, 611, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1263, 6, 576, 2, 612, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1264, 6, 576, 2, 613, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1265, 6, 576, 2, 614, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1266, 6, 576, 8, 615, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1267, 6, 576, 10, 616, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1268, 6, 576, 10, 618, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1269, 6, 576, 2, 619, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1270, 6, 576, 10, 620, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1271, 6, 576, 2, 621, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1272, 6, 576, 2, 622, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1273, 6, 576, 2, 623, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1274, 6, 576, 2, 624, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1275, 6, 576, 2, 625, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1276, 6, 576, 2, 626, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1277, 6, 576, 2, 627, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1278, 6, 576, 2, 628, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1279, 6, 576, 2, 629, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1280, 6, 576, 10, 630, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1281, 6, 576, 2, 631, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1282, 6, 576, 2, 632, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1283, 6, 576, 10, 633, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1284, 6, 576, 2, 634, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1285, 6, 576, 10, 635, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1286, 6, 576, 2, 636, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1287, 6, 576, 2, 637, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1288, 6, 576, 10, 638, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1289, 6, 576, 10, 639, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1290, 6, 576, 2, 640, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1291, 6, 576, 2, 641, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1292, 6, 576, 2, 642, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1293, 6, 576, 2, 643, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1294, 6, 576, 2, 644, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1295, 6, 576, 2, 645, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1296, 6, 576, 2, 646, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1297, 6, 576, 2, 647, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1298, 6, 576, 8, 648, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1299, 6, 576, 2, 649, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1300, 6, 576, 2, 650, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1301, 6, 576, 2, 651, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1302, 6, 576, 10, 652, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1303, 6, 580, 9, 660, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1304, 6, 576, 9, 660, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1305, 6, 438, 9, 660, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1306, 6, 441, 9, 653, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1307, 6, 437, 9, 653, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1308, 6, 591, 9, 653, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1309, 6, 580, 9, 654, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1310, 6, 576, 9, 654, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1311, 6, 578, 9, 654, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1312, 6, 576, 9, 655, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1313, 6, 576, 2, 656, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1314, 6, 580, 2, 656, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1315, 6, 578, 2, 656, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1316, 6, 441, 9, 657, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1317, 6, 576, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1318, 6, 580, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1319, 6, 578, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1320, 6, 438, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1321, 6, 593, 9, 659, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1322, 6, 443, 9, 659, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1323, 6, 580, 9, 659, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1324, 6, 580, 10, 661, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1325, 6, 443, 9, 662, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1326, 6, 578, 9, 662, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1327, 6, 593, 9, 662, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1328, 6, 580, 9, 662, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1329, 6, 580, 9, 663, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1330, 6, 576, 9, 663, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1331, 6, 580, 9, 664, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1332, 6, 442, 9, 664, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1333, 6, 578, 9, 664, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1334, 6, 593, 9, 665, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1335, 6, 580, 9, 665, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1336, 6, 438, 9, 665, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1337, 6, 578, 9, 665, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1338, 6, 576, 9, 665, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1339, 6, 576, 2, 666, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1340, 6, 580, 2, 666, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1341, 6, 578, 2, 666, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1342, 6, 577, 2, 667, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1343, 6, 577, 2, 668, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1344, 6, 576, 8, 669, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1345, 6, 580, 8, 669, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1346, 6, 449, 8, 669, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1347, 6, 576, 8, 670, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1348, 6, 580, 8, 670, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1349, 6, 449, 8, 670, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1350, 6, 576, 2, 634, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1351, 6, 576, 4, 672, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1352, 6, 578, 2, 673, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1353, 6, 580, 2, 673, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1354, 6, 580, 2, 674, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1355, 6, 576, 2, 674, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1356, 6, 578, 2, 674, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1357, 6, 580, 2, 675, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1358, 6, 578, 2, 675, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1359, 6, 576, 2, 676, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1360, 6, 578, 2, 676, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1361, 6, 578, 2, 677, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1362, 6, 576, 2, 677, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1363, 6, 580, 2, 677, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1364, 6, 438, 2, 677, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1365, 6, 576, 2, 678, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1366, 6, 577, 2, 679, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1367, 6, 577, 9, 689, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1368, 6, 424, 2, 690, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1369, 6, 424, 2, 691, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1370, 6, 577, 2, 693, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1371, 6, 576, 2, 695, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1372, 6, 578, 2, 695, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1373, 6, 580, 2, 695, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1374, 6, 576, 2, 694, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1375, 6, 578, 2, 694, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1376, 9, 331, 2, 697, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1377, 6, 576, 2, 697, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1378, 6, 580, 2, 697, ''); + +-- Table: entity_types CREATE TABLE entity_types ( id integer PRIMARY KEY AUTOINCREMENT, entity_type_name text NOT NULL ); -INSERT INTO entity_types VALUES(1,'Technology'); -INSERT INTO entity_types VALUES(2,'App'); -INSERT INTO entity_types VALUES(3,'VM'); -INSERT INTO entity_types VALUES(4,'HW'); -INSERT INTO entity_types VALUES(5,'Plugin'); -INSERT INTO entity_types VALUES(6,'OS'); -INSERT INTO entity_types VALUES(7,'Runlib'); -INSERT INTO entity_types VALUES(8,'App Server'); -INSERT INTO entity_types VALUES(9,'Lang'); -INSERT INTO entity_types VALUES(10,'Runtime'); -INSERT INTO entity_types VALUES(11,'Storage'); -INSERT INTO entity_types VALUES(12,'Lib'); +INSERT INTO entity_types (id, entity_type_name) VALUES (1, 'Technology'); +INSERT INTO entity_types (id, entity_type_name) VALUES (2, 'App'); +INSERT INTO entity_types (id, entity_type_name) VALUES (3, 'VM'); +INSERT INTO entity_types (id, entity_type_name) VALUES (4, 'HW'); +INSERT INTO entity_types (id, entity_type_name) VALUES (5, 'Plugin'); +INSERT INTO entity_types (id, entity_type_name) VALUES (6, 'OS'); +INSERT INTO entity_types (id, entity_type_name) VALUES (7, 'Runlib'); +INSERT INTO entity_types (id, entity_type_name) VALUES (8, 'App Server'); +INSERT INTO entity_types (id, entity_type_name) VALUES (9, 'Lang'); +INSERT INTO entity_types (id, entity_type_name) VALUES (10, 'Runtime'); +INSERT INTO entity_types (id, entity_type_name) VALUES (11, 'Storage'); +INSERT INTO entity_types (id, entity_type_name) VALUES (12, 'Lib'); + +-- Table: entity_versions +CREATE TABLE entity_versions ( + id integer PRIMARY KEY AUTOINCREMENT, + entity_id integer NOT NULL, + version text, + release_date date, + end_date date, + FOREIGN KEY (entity_id) REFERENCES entities (id) + ); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1, 497, '1', '01/15/2002', '07/14/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2, 497, '1.1', '04/09/2003', '10/08/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3, 497, '2', '10/27/2005', '07/12/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (4, 497, '3', '11/06/2006', '07/12/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (5, 497, '3.5', '11/19/2007', '10/10/2028'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (6, 497, '4', '04/12/2010', '01/12/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (7, 497, '4.5', '08/15/2012', '01/12/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (8, 497, '4.5.1', '10/17/2013', '01/12/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (9, 497, '4.5.2', '05/05/2014', '04/26/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (10, 497, '4.6', '07/20/2015', '04/26/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (11, 497, '4.6.1', '11/30/2015', '04/26/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (12, 497, '4.6.2', '08/02/2016', '04/26/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (13, 497, '4.7', '04/05/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (14, 497, '4.7.1', '10/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (15, 497, '4.7.2', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (16, 497, '4.8', '09/04/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (17, 498, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (18, 499, '1', '12/01/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (19, 499, '2', '09/01/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (20, 499, '3', '11/01/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (21, 500, ' ', '01/01/1996', '08/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (22, 501, '6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (23, 501, '7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (24, 501, '8', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (25, 501, '9', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (26, 501, '10.0.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (27, 502, '5.6', '06/01/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (28, 502, '5.5', '12/01/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (29, 502, '5.4', '06/01/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (30, 502, '5.3', '12/01/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (31, 502, '5.2', '12/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (32, 502, '5.1', '12/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (33, 502, '4.2', '12/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (34, 502, '4.1', '12/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (35, 502, '3.2', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (36, 502, '3.1', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (37, 502, '2.2', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (38, 502, '2.1', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (39, 503, '20.10.8', '08/03/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (40, 503, '20.10.7', '06/02/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (41, 503, '20.10.6', '04/12/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (42, 503, '20.10.5', '03/02/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (43, 503, '20.10.4', '04/26/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (44, 503, '20.10.3', '02/01/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (45, 503, '20.10.2', '01/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (46, 503, '20.10.1', '12/14/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (47, 503, '20.10.0', '12/08/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (48, 504, '2', '12/31/1997', '12/31/1998'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (49, 504, '3', '12/31/1997', '12/31/1998'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (50, 504, '7.0.14.0', '12/31/1997', '12/31/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (51, 504, '9.0.289.0', '12/31/1998', '12/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (52, 504, '10.3.183.90', '12/31/1999', '12/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (53, 504, '11.1.102.55', '12/31/1999', '12/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (54, 504, '32.0.0.465', '12/31/2001', '12/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (55, 504, '5.0.41.0', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (56, 504, '32.0.0.465', '12/31/2014', '12/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (57, 504, '29.0.0.171', '12/31/2013', '12/31/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (58, 504, '22.0.0.209', '12/31/2009', '12/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (59, 504, '10.3.183.90', '12/31/2007', '12/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (60, 504, '10.1.102.64', '12/31/2005', '12/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (61, 504, '9.0.289.0', '12/31/2001', '12/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (62, 504, '7.0.14.0', '12/31/1997', '12/31/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (63, 504, '3', '12/31/1997', '12/31/1998'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (64, 504, '4.0r12', '12/31/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (65, 504, '32.0.0.465', '12/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (66, 504, '4.0r12', '12/31/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (67, 504, '4.0r12', '12/31/2004', '12/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (68, 504, '11.2.202.223', '12/31/2004', '12/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (69, 504, '10.3.183.90', '12/31/2004', '12/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (70, 505, '1', '12/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (71, 505, '2.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (72, 506, 'JDK Beta', '01/01/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (73, 506, '1.0', '01/01/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (74, 506, '1.1', '02/01/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (75, 506, '1.2', '12/01/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (76, 506, '1.3', '05/01/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (77, 506, '1.4', '02/01/2002', '08/31/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (78, 506, '5.0', '09/01/2004', '11/30/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (79, 506, '6', '12/01/2006', '04/30/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (80, 506, '7', '07/01/2011', '04/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (81, 506, '8', '03/01/2014', '12/31/2026'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (82, 506, '9', '09/01/2017', '03/31/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (83, 506, '10', '03/01/2018', '09/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (84, 506, '11', '09/01/2018', '12/31/2026'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (85, 506, '12', '03/31/2019', '09/30/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (86, 506, '13', '09/01/2019', '03/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (87, 506, '14', '03/01/2020', '09/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (88, 506, '15', '09/01/2020', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (89, 506, '16', '03/01/2021', '09/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (90, 506, '17', '09/30/2021', '12/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (91, 506, '18', '03/01/2022', '09/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (92, 506, '19', '09/01/2022', '03/31/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (93, 506, '20', '03/01/2023', '09/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (94, 506, '21', '09/01/2023', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (95, 507, '0.10', '03/01/2013', '10/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (96, 507, '0.12', '02/06/2015', '12/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (97, 507, '4', '09/08/2015', '04/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (98, 507, '5', '10/29/2015', '06/30/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (99, 507, '6', '04/26/2016', '04/30/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (100, 507, '7', '10/25/2016', '06/30/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (101, 507, '8', '05/30/2017', '12/31/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (102, 507, '9', '10/01/2017', '06/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (103, 507, '10', '04/24/2018', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (104, 507, '11', '10/23/2018', '06/01/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (105, 507, '12', '04/23/2019', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (106, 507, '13', '10/22/2019', '06/01/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (107, 507, '14', '04/21/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (108, 507, '15', '10/20/2020', '06/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (109, 507, '16', '04/20/2021', '04/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (110, 507, '17', '10/19/2021', '06/01/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (111, 507, '18', '04/19/2022', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (112, 508, '1', '12/13/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (113, 508, '1.2', '01/19/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (114, 508, '2', '12/07/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (115, 508, '2.1', '06/01/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (116, 508, '2.2', '11/21/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (117, 508, '2.3', '03/16/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (118, 508, '3', '08/29/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (119, 508, '3.1', '08/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (120, 508, '3.2', '01/20/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (121, 508, '4', '06/25/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (122, 508, '4.1', '04/08/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (123, 508, '4.2', '12/19/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (124, 508, '5', '06/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (125, 508, '5.1', '05/10/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (126, 508, '5.2', '04/09/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (127, 508, '6', '08/16/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (128, 508, '6.1', '12/09/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (129, 508, '7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (130, 509, '53.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (131, 263, '1', '12/16/2001', '12/30/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (132, 264, '1.1', '03/10/2002', '01/29/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (133, 264, '1.2', '11/09/2003', '08/06/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (134, 264, '1.3', '06/29/2006', '03/14/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (135, 264, '1.4', '02/26/2010', '02/08/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (136, 264, '1.5', '06/19/2014', '01/10/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (137, 264, '1.6', '10/13/2015', '12/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (138, 264, '1.7', '11/25/2016', '12/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (139, 264, '1.8', '11/26/2017', '12/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (140, 264, '1.9', '12/19/2018', '06/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (141, 264, '2', '06/16/2019', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (142, 264, '2.1', '11/25/2019', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (143, 264, '2.2', '07/07/2020', '06/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (144, 264, '2.3', '11/05/2020', '03/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (145, 264, '2.4', '05/14/2021', '06/30/2026'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (146, 264, '2.5', '11/01/2021', '03/31/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (147, 259, '1.3', '06/06/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (148, 259, '2', '04/06/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (149, 259, '2.2', '12/01/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (150, 259, '2.4', '02/21/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (151, 266, '1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (152, 266, '2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (153, 266, '3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (154, 266, '4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (155, 266, '5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (156, 266, '5.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (157, 266, '6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (158, 266, '7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (159, 266, '7.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (160, 266, '8', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (161, 266, '8.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (162, 266, '10', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (163, 274, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (164, 260, '3.3', '03/09/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (165, 260, '4.1', '06/25/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (166, 260, '5.5', '10/10/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (167, 260, '6.0', '04/07/2017', '12/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (168, 260, '7.0', '04/26/2021', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (169, 260, '8.0', '07/05/2018', '06/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (170, 260, '8.5', '09/13/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (171, 260, '9.0', '09/10/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (172, 260, '10.0', '09/10/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (173, 260, '10.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (174, 285, '8.5', '06/15/2012', '06/24/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (175, 280, '0.5', '10/07/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (176, 280, '0.6', '02/07/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (177, 280, '0.7', '07/16/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (178, 280, '0.8', '12/19/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (179, 280, '0.9', '07/23/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (180, 280, '1.0', '08/05/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (181, 280, '1.1', '11/26/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (182, 280, '1.2', '04/17/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (183, 280, '1.3', '04/17/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (184, 280, '1.4', '07/15/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (185, 280, '1.5', '11/09/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (186, 280, '1.6', '11/07/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (187, 280, '2.0', '11/14/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (188, 280, '2.1', '06/26/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (189, 280, '2.2', '01/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (190, 280, '2.3', '09/09/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (191, 280, '2.4', '05/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (192, 280, '3.0', '01/06/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (193, 280, '3.1', '01/06/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (194, 278, '3.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (195, 278, '4.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (196, 265, '6.0.1', '04/15/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (197, 265, '6.0.2', '07/29/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (198, 265, '6.1.0', '07/21/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (199, 265, '7.0.0', '03/15/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (200, 265, '8.0.0', '06/17/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (201, 265, '8.5.0', '06/15/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (202, 265, '9.0.0', '03/11/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (203, 269, '2.6', '02/09/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (204, 269, '2.9.1', '04/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (205, 286, '4.1', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (206, 286, '5', '07/01/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (207, 286, '6', '04/01/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (208, 286, '6.1', '03/01/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (209, 286, '6.1.5', '11/01/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (210, 286, '7', '09/01/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (211, 286, '8', '05/01/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (212, 286, '8.5', '06/01/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (213, 286, '9', '12/01/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (214, 286, '9.5', '07/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (215, 284, '9', '03/26/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (216, 284, '8.5.5', '02/15/2021', '06/24/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (217, 284, '8.5', '06/15/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (218, 284, '8', '06/17/2011', '04/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (219, 284, '7', '08/17/2008', '04/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (220, 284, '6.1', '06/30/2006', '09/30/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (221, 284, '6', '12/31/2004', '09/30/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (222, 284, '5.1', '01/16/2004', '09/30/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (223, 284, '5', '01/03/2003', '09/30/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (224, 284, '4', '08/15/2001', '04/30/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (225, 284, '3.5', '08/31/2000', '11/30/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (226, 267, '7.1.1', '03/09/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (227, 267, '7.1.0', '02/16/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (228, 267, '7.0.2', '09/22/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (229, 267, '7.0.1', '08/17/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (230, 267, '7.0.0', '07/12/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (231, 267, '6.1.0', '08/16/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (232, 267, '6.0.0', '12/22/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (233, 267, '5.1.0', '05/23/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (234, 267, '5.0.0', '12/05/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (235, 267, '4.2.3', '07/18/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (236, 267, '4.2.2', '10/22/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (237, 267, '4.2.1', '07/16/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (238, 267, '4.2.0', '05/11/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (239, 267, '4.0.5', '10/18/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (240, 267, '4.0.4', '05/15/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (241, 267, '4.0.3', '10/24/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (242, 267, '4.0.2', '05/02/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (243, 267, '4.0.1', '02/16/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (244, 267, '4.0.0', '09/20/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (245, 267, '3.2.8', '03/02/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (246, 267, '3.2.7', '01/28/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (247, 267, '3.2.6', '10/14/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (248, 267, '3.2.5', '06/25/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (249, 267, '3.2.4', '06/04/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (250, 267, '3.2.3', '11/30/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (251, 267, '3.2.2', '10/18/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (252, 267, '3.2.1', '06/02/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (253, 267, '3.0.8', '06/06/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (254, 267, '3.0.7', '04/08/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (255, 267, '3.0.6', '01/26/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (256, 267, '3.0.5', '01/13/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (257, 267, '3.0.4', '11/02/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (258, 267, '3.0.3', '09/29/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (259, 267, '3.0.2', '08/26/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (260, 267, '3.0.1', '08/05/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (261, 267, '3.0.0', '05/29/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (262, 493, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (263, 271, '4.5', '01/29/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (264, 271, '5', '04/07/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (265, 137, '2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (266, 137, '2.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (267, 137, '3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (268, 137, '4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (269, 137, '4.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (270, 137, '5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (271, 137, '6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (272, 137, '6i', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (273, 137, '9i', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (274, 137, '10g', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (275, 137, '10gR2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (276, 137, '11g', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (277, 137, '11gR2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (278, 137, '12c', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (279, 46, '3', '06/21/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (280, 46, '3.1', '06/28/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (281, 46, '3.2', '06/30/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (282, 46, '3.3', '06/29/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (283, 46, '3.4', '06/25/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (284, 46, '3.5', '06/24/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (285, 46, '3.6', '06/23/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (286, 46, '3.7', '06/22/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (287, 46, '3.8', '06/27/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (288, 46, '4.2', '06/27/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (289, 46, '4.3', '06/26/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (290, 46, '4.4', '06/25/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (291, 46, '4.5', '06/24/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (292, 46, '4.6', '06/22/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (293, 46, '4.7', '06/28/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (294, 46, '4.8', '06/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (295, 46, '4.9', '09/19/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (296, 46, '4.1', '12/19/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (297, 46, '4.11', '03/20/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (298, 46, '4.12', '06/19/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (299, 46, '4.13', '09/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (300, 46, '4.14', '12/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (301, 46, '4.15', '03/18/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (302, 46, '4.16', '06/17/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (303, 46, '4.17', '09/16/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (304, 46, '4.18', '12/16/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (305, 46, '4.19', '03/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (306, 46, '4.2', '06/16/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (307, 46, '4.21', '09/15/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (308, 46, '4.22', '12/08/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (309, 176, '7.6', '12/31/2006', '12/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (310, 176, '7.7', '12/31/2008', '12/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (311, 176, '7.8', '12/31/2010', '12/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (312, 176, '7.9', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (313, 70, '7.6.1.2', '07/24/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (314, 70, '7.6.0.10', '12/14/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (315, 70, '7.5.0.11', '10/28/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (316, 70, '7.1.1.13', '06/27/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (317, 70, '6.2.8', '06/10/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (318, 70, '6.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (319, 70, '5.2.9.1', '07/03/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (320, 70, '4.1.1 ', '06/28/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (321, 135, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (322, 141, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (323, 134, '2.3', '12/31/1979', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (324, 134, '3.1.3', '12/31/1983', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (325, 134, '4.1.4.0', '12/31/1984', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (326, 134, '5.0.22', '12/31/1985', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (327, 134, '6.0.17', '12/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (328, 134, '6.2.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (329, 134, '7.0.12', '06/30/1992', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (330, 134, '7.1.0', '05/31/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (331, 134, '7.2.0', '05/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (332, 134, '7.3.0', '02/28/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (333, 134, '8.0.3', '06/30/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (334, 134, '8.1.5.0', '12/31/1998', '08/31/2000'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (335, 134, '9.0.1.0', '12/31/2001', '12/31/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (336, 134, '9.2.0.1', '12/31/2002', '04/30/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (337, 134, '10.1.0.2', '12/31/2003', '02/28/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (338, 134, '10.2.0.1', '07/31/2005', '04/30/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (339, 134, '11.1.0.6', '09/30/2007', '09/30/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (340, 134, '11.2.0.1', '09/30/2009', '08/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (341, 134, '12.1.0.1', '07/31/2013', '07/31/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (342, 134, '12.2.0.1', '09/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (343, 134, '12.2.0.2', '02/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (344, 134, '12.2.0.3', '02/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (345, 134, '21.1', '12/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (346, 182, '1', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (347, 182, '2', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (348, 182, '3', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (349, 182, '98', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (350, 182, '99', '12/31/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (351, 182, '6', '12/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (352, 182, '7', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (353, 182, '7.5', '12/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (354, 182, '7.7', '12/31/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (355, 182, '7.8', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (356, 182, '8', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (357, 182, '8.1', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (358, 182, '8.2', '12/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (359, 182, '15', '05/11/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (360, 182, '16', '04/29/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (361, 182, '17', '07/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (362, 182, '18', '01/23/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (363, 182, '19', '01/21/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (364, 182, '20', '01/21/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (365, 126, '1', '08/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (366, 126, '1.1', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (367, 126, '1.2', '02/28/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (368, 126, '2', '08/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (369, 126, '2.1', '06/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (370, 126, '2.2', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (371, 126, '2.3', '06/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (372, 126, '2.4', '10/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (373, 126, '2.5', '04/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (374, 77, '1.1', '08/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (375, 77, '2.1', '04/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (376, 77, '2.2', '05/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (377, 77, '3.1', '07/12/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (378, 77, '3.2', '12/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (379, 77, '4.1', '01/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (380, 77, '4.2', '02/28/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (381, 77, '5.1', '01/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (382, 77, '6.1', '10/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (383, 77, '6.2', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (384, 77, '6.3', '08/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (385, 23, '10.7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (386, 45, '8.3', '04/05/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (387, 45, '8.2', '10/05/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (388, 45, '8.1', '04/20/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (389, 45, '8', '11/19/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (390, 45, '7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (391, 45, '6', '02/13/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (392, 45, '5', '01/15/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (393, 45, '4', '06/15/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (394, 45, '3', '09/15/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (395, 45, '2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (396, 45, '1', '01/15/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (397, 220, '4.4', '12/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (398, 220, '4.5.1', '09/30/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (399, 220, '4.6', '07/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (400, 220, '5', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (401, 220, '5.1', '06/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (402, 90, '2.285', '03/23/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (403, 90, '2.286', '03/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (404, 90, '2.287', '04/07/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (405, 90, '2.288', '04/11/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (406, 90, '2.289', '04/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (407, 90, '2.29', '04/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (408, 90, '2.291', '05/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (409, 90, '2.292', '05/11/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (410, 90, '2.293', '05/12/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (411, 90, '2.294', '05/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (412, 90, '2.295', '05/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (413, 90, '2.296', '06/01/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (414, 90, '2.297', '06/08/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (415, 90, '2.298', '06/15/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (416, 90, '2.299', '06/22/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (417, 90, '2.3', '06/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (418, 90, '2.301', '07/06/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (419, 90, '2.302', '07/13/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (420, 90, '2.303', '07/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (421, 90, '2.304', '07/27/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (422, 90, '2.305', '08/03/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (423, 90, '2.306', '08/10/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (424, 90, '2.307', '08/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (425, 90, '2.308', '08/24/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (426, 90, '2.309', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (427, 90, '2.31', '09/07/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (428, 90, '2.311', '09/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (429, 90, '2.312', '09/14/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (430, 90, '2.313', '09/21/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (431, 90, '2.314', '09/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (432, 97, '10', '05/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (433, 97, '9', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (434, 97, '8', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (435, 97, '7', '12/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (436, 97, '6', '12/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (437, 97, '5', '12/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (438, 97, '4.2', '12/31/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (439, 97, '4.1', '12/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (440, 97, '4', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (441, 97, '3.2', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (442, 97, '3.1', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (443, 97, '3', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (444, 97, '2', '12/31/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (445, 97, '1', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (446, 98, '1.6.12', '09/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (447, 98, '1.6.11', '09/27/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (448, 98, '1.6.10', '07/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (449, 98, '1.6.9', '11/20/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (450, 98, '1.6.8', '10/26/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (451, 98, '1.6.7', '09/04/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (452, 98, '1.6.6', '05/12/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (453, 98, '1.6.5', '04/13/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (454, 98, '1.6.4', '04/12/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (455, 98, '1.6.3', '03/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (456, 98, '1.6.2', '03/23/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (457, 98, '1.6.1', '03/16/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (458, 98, '1.6.0', '03/08/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (459, 98, '1.5.22', '02/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (460, 98, '1.5.21', '01/21/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (461, 98, '1.5.20', '11/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (462, 98, '1.5.19', '09/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (463, 98, '1.5.18', '09/17/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (464, 98, '1.5.17', '08/29/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (465, 98, '1.5.16', '05/24/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (466, 98, '1.5.15', '05/20/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (467, 98, '1.5.14', '04/27/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (468, 98, '1.5.13', '04/15/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (469, 98, '1.5.12', '11/03/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (470, 98, '1.5.11', '10/10/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (471, 98, '1.5.10', '08/10/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (472, 98, '1.5.9', '07/07/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (473, 98, '1.5.8', '05/25/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (474, 98, '1.5.7', '03/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (475, 98, '1.5.6', '02/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (476, 98, '1.5.5', '02/12/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (477, 98, '1.5.4', '12/20/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (478, 98, '1.5.3', '11/04/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (479, 98, '1.5.2', '09/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (480, 98, '1.5.1', '08/24/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (481, 98, '1.5.0', '07/21/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (482, 98, '1.4.39', '07/04/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (483, 98, '1.4.38', '06/24/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (484, 98, '1.4.37', '06/04/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (485, 98, '1.4.36', '03/19/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (486, 98, '1.4.35', '02/26/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (487, 98, '1.4.34', '01/07/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (488, 98, '1.4.33', '10/31/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (489, 98, '1.4.32', '10/12/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (490, 98, '1.4.31', '08/19/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (491, 98, '1.4.30', '08/11/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (492, 98, '1.4.29', '07/13/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (493, 98, '1.4.28', '07/01/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (494, 98, '1.4.27', '06/24/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (495, 98, '1.4.26', '06/17/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (496, 98, '1.4.25', '11/19/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (497, 98, '1.4.24', '04/24/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (498, 98, '1.4.23', '04/19/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (499, 98, '1.4.22', '12/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (500, 98, '1.4.21', '10/12/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (501, 98, '1.4.20', '05/11/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (502, 98, '1.4.19', '05/01/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (503, 98, '1.4.18', '04/17/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (504, 98, '1.4.17', '12/20/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (505, 98, '1.4.16', '12/09/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (506, 98, '1.4.15', '09/03/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (507, 98, '1.4.14', '07/30/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (508, 98, '1.4.13', '02/02/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (509, 98, '1.4.12', '02/01/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (510, 98, '1.4.11', '01/16/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (511, 98, '1.4.10', '11/09/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (512, 98, '1.4.9', '10/18/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (513, 98, '1.4.8', '10/04/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (514, 98, '1.4.7', '08/16/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (515, 98, '1.4.6', '07/15/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (516, 98, '1.4.5', '04/03/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (517, 98, '1.4.4', '11/26/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (518, 98, '1.4.3', '11/07/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (519, 98, '1.4.2', '10/11/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (520, 98, '1.4.1', '08/29/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (521, 98, '1.4.0', '07/09/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (522, 120, '1', '12/31/1989', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (523, 120, '1.1', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (524, 120, '4.2A', '12/31/1992', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (525, 120, '4.2B', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (526, 120, '4.21', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (527, 120, '6', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (528, 120, '6.5', '12/31/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (529, 120, '7', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (530, 120, '8', '12/31/2000', '04/08/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (531, 120, '9', '01/14/2006', '04/12/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (532, 120, '10', '11/06/2008', '07/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (533, 120, '10.25', '07/02/1905', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (534, 120, '10.5', '07/20/2010', '07/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (535, 120, '11', '05/20/2012', '07/11/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (536, 120, '12', '06/05/2014', '07/09/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (537, 120, '13', '06/01/2016', '07/13/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (538, 120, '14', '09/29/2017', '10/11/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (539, 120, '15', '11/04/2019', '01/07/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (540, 116, '4.4', '12/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (541, 116, '4.2', '12/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (542, 116, '4', '12/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (543, 116, '3.6', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (544, 116, '3.4', '12/31/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (545, 116, '3.2', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (546, 116, '3', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (547, 116, '2.6', '12/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (548, 122, '3.19', '12/31/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (549, 122, '3.2', '01/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (550, 122, '3.21', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (551, 122, '3.22', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (552, 122, '3.23', '06/30/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (553, 122, '4', '08/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (554, 122, '4.1', '06/30/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (555, 122, '5', '03/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (556, 122, '5.1', '11/27/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (557, 122, '5.5', '12/31/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (558, 122, '6', '05/22/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (559, 122, '5.6', '02/28/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (560, 122, '5.7', '10/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (561, 122, '8', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (562, 123, '4.3.5', '09/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (563, 123, '4.3.4', '09/22/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (564, 123, '4.3.3', '08/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (565, 123, '4.3.2', '07/01/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (566, 123, '4.3.1', '06/21/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (567, 123, '4.2.11', '09/06/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (568, 123, '4.2.10', '08/23/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (569, 123, '4.2.9', '07/02/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (570, 123, '4.2.8', '06/18/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (571, 123, '4.2.7', '05/27/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (572, 123, '4.2.6', '05/05/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (573, 245, '0.7', '05/27/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (574, 245, '1', '01/03/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (575, 245, '1.2', '05/22/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (576, 245, '1.5', '02/17/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (577, 245, '2', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (578, 245, '2.1', '01/22/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (579, 245, '2.2', '05/16/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (580, 245, '2.3', '09/24/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (581, 245, '2.5', '03/29/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (582, 245, '2.6', '07/15/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (583, 245, '2.7', '12/11/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (584, 245, '2.8', '06/10/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (585, 245, '2.9', '12/19/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (586, 245, '3', '06/17/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (587, 245, '3.1', '02/23/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (588, 245, '3.2', '07/04/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (589, 245, '3.3', '12/12/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (590, 245, '3.4', '06/13/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (591, 245, '3.5', '12/11/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (592, 245, '3.6', '08/01/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (593, 245, '3.7', '10/24/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (594, 245, '3.8', '12/12/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (595, 245, '3.9', '04/16/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (596, 245, '4', '09/04/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (597, 245, '4.1', '12/18/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (598, 245, '4.2', '04/23/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (599, 245, '4.3', '08/18/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (600, 245, '4.4', '12/08/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (601, 245, '4.5', '04/12/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (602, 245, '4.6', '08/16/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (603, 245, '4.7', '12/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (604, 245, '4.8', '06/08/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (605, 245, '4.9', '11/16/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (606, 245, '5', '12/06/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (607, 245, '5.1', '02/21/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (608, 245, '5.2', '05/07/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (609, 245, '5.3', '11/12/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (610, 245, '5.4', '03/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (611, 245, '5.5', '08/11/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (612, 245, '5.6', '12/08/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (613, 245, '5.7', '03/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (614, 245, '5.8', '07/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (615, 258, '3.37.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (616, 258, '3.36.0', '06/18/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (617, 258, '3.35.5', '04/19/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (618, 258, '3.35.4', '04/02/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (619, 258, '3.35.3', '03/26/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (620, 258, '3.35.2', '03/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (621, 258, '3.35.1', '03/15/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (622, 258, '3.35.0', '03/12/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (623, 258, '3.34.1', '01/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (624, 258, '3.34.0', '12/01/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (625, 258, '3.33.0', '08/14/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (626, 258, '3.32.3', '06/18/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (627, 258, '3.32.2', '06/04/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (628, 258, '3.32.1', '05/25/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (629, 258, '3.32.0', '05/22/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (630, 258, '3.31.1', '01/27/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (631, 258, '3.31.0', '01/22/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (632, 258, '3.30.1', '10/10/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (633, 258, '3.30.0', '10/04/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (634, 258, '3.29.0', '07/10/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (635, 258, '3.28.0', '04/16/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (636, 258, '3.27.2', '02/25/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (637, 258, '3.27.1', '02/08/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (638, 258, '3.27.0', '02/07/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (639, 258, '3.26.0', '12/01/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (640, 258, '3.25.3', '11/05/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (641, 258, '3.25.2', '09/25/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (642, 258, '3.25.1', '09/18/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (643, 258, '3.25.0', '09/15/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (644, 258, '3.24.0', '06/04/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (645, 258, '3.23.1', '04/10/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (646, 258, '3.23.0', '04/02/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (647, 258, '3.22.0', '01/22/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (648, 258, '3.21.0', '10/24/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (649, 258, '3.20.1', '08/24/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (650, 258, '3.20.0', '08/01/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (651, 258, '3.18.2', '06/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (652, 258, '3.18.1', '06/16/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (653, 258, '3.19.3', '06/08/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (654, 258, '3.19.2', '05/25/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (655, 258, '3.19.1', '05/24/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (656, 258, '3.19.0', '05/22/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (657, 258, '3.18.0', '03/28/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (658, 258, '3.17.0', '02/13/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (659, 258, '3.16.2', '01/06/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (660, 258, '3.16.1', '01/03/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (661, 258, '3.16.0', '01/02/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (662, 258, '3.15.2', '11/28/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (663, 258, '3.15.1', '11/04/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (664, 258, '3.15.0', '10/14/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (665, 258, '3.14.2', '09/12/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (666, 258, '3.14.1', '08/11/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (667, 258, '3.14', '08/08/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (668, 258, '3.13.0', '05/18/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (669, 258, '3.12.2', '04/18/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (670, 258, '3.12.1', '04/08/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (671, 258, '3.9.3', '03/31/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (672, 258, '3.12.0', '03/29/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (673, 258, '3.11.1', '03/03/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (674, 258, '3.11.0', '02/15/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (675, 258, '3.10.2', '01/20/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (676, 258, '3.10.1', '01/14/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (677, 258, '3.10.0', '01/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (678, 258, '3.9.2', '11/02/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (679, 258, '3.9.1', '10/16/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (680, 258, '3.9.0', '10/14/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (681, 258, '3.8.11.1', '07/29/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (682, 258, '3.8.11', '07/27/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (683, 258, '3.8.10.2', '05/20/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (684, 258, '3.8.10.1', '05/09/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (685, 258, '3.8.10', '05/07/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (686, 258, '3.8.9', '04/08/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (687, 258, '3.8.8.3', '02/25/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (688, 258, '3.8.8.2', '01/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (689, 258, '3.8.8.1', '01/20/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (690, 258, '3.8.8', '01/16/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (691, 258, '3.8.7.4', '12/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (692, 258, '3.8.7.3', '12/05/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (693, 258, '3.8.7.2', '11/18/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (694, 258, '3.8.7.1', '10/29/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (695, 258, '3.8.6.1', '10/22/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (696, 258, '3.8.7', '10/17/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (697, 258, '3.8.6', '08/15/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (698, 258, '3.8.5', '06/04/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (699, 258, '3.8.4.3', '04/03/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (700, 258, '3.8.4.2', '03/26/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (701, 258, '3.8.4.1', '03/11/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (702, 258, '3.8.4', '03/10/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (703, 258, '3.8.3.1', '02/11/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (704, 258, '3.8.3', '02/03/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (705, 258, '3.8.2', '12/06/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (706, 258, '3.8.1', '10/17/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (707, 258, '3.8.0.2', '09/03/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (708, 258, '3.8.0.1', '08/29/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (709, 258, '3.8.0', '08/26/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (710, 258, '3.7.17', '05/20/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (711, 258, '3.7.16.2', '04/12/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (712, 258, '3.7.16.1', '03/29/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (713, 258, '3.7.16', '03/18/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (714, 258, '3.7.15.2', '01/09/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (715, 258, '3.7.15.1', '12/19/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (716, 258, '3.7.15', '12/12/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (717, 258, '3.7.14.1', '10/04/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (718, 258, '3.7.14', '09/03/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (719, 258, '3.7.13', '06/11/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (720, 258, '3.7.12.1', '05/22/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (721, 258, '3.7.12', '05/14/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (722, 258, '3.7.12', '05/14/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (723, 258, '3.7.12', '05/14/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (724, 258, '3.7.11', '03/20/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (725, 258, '3.7.10', '01/16/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (726, 258, '3.7.9', '11/01/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (727, 258, '3.7.8', '09/19/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (728, 258, '3.7.7.1', '06/28/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (729, 258, '3.7.7', '06/23/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (730, 258, '3.7.6.3', '05/19/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (731, 258, '3.7.6.2', '04/17/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (732, 258, '3.7.6.1', '04/13/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (733, 258, '3.7.6', '04/12/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (734, 258, '3.7.5', '02/01/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (735, 258, '3.7.4', '12/07/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (736, 258, '3.7.3', '10/08/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (737, 258, '3.7.2', '08/24/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (738, 258, '3.7.1', '08/23/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (739, 258, '3.7.0.1', '08/04/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (740, 258, '3.7.0', '07/21/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (741, 258, '3.6.23.1', '03/26/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (742, 258, '3.6.23', '03/09/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (743, 258, '3.6.22', '01/06/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (744, 258, '3.6.21', '12/07/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (745, 258, '3.6.20', '11/04/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (746, 258, '3.6.16.1', '10/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (747, 258, '3.6.19', '10/14/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (748, 258, '3.6.18', '09/11/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (749, 258, '3.6.17', '08/10/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (750, 258, '3.6.16', '06/27/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (751, 258, '3.6.15', '06/15/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (752, 258, '3.6.14.2', '05/25/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (753, 258, '3.6.14.1', '05/19/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (754, 258, '3.6.14', '05/07/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (755, 258, '3.6.13', '04/13/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (756, 258, '3.6.12', '03/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (757, 258, '3.6.11', '02/18/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (758, 258, '3.6.10', '01/15/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (759, 258, '3.6.9', '01/14/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (760, 258, '3.6.8', '01/12/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (761, 258, '3.6.7', '12/16/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (762, 258, '3.6.6.2', '11/26/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (763, 258, '3.6.6.1', '11/22/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (764, 258, '3.6.6', '11/19/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (765, 258, '3.6.5', '11/12/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (766, 258, '3.6.4', '10/15/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (767, 258, '3.6.3', '09/22/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (768, 258, '3.6.2', '08/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (769, 258, '3.6.1', '08/06/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (770, 258, '3.6.0', '07/16/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (771, 258, '3.5.9', '05/14/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (772, 258, '3.5.8', '04/16/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (773, 258, '3.5.7', '03/17/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (774, 258, '3.5.6', '02/06/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (775, 258, '3.5.5', '01/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (776, 258, '3.5.4', '12/14/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (777, 258, '3.5.3', '11/27/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (778, 258, '3.5.2', '11/05/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (779, 258, '3.5.1', '10/04/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (780, 258, '3.5.0', '09/04/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (781, 258, '3.4.2', '08/13/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (782, 258, '3.4.1', '07/20/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (783, 258, '3.4.0', '06/18/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (784, 258, '3.3.17', '04/25/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (785, 258, '3.3.16', '04/18/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (786, 258, '3.3.15', '04/09/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (787, 258, '3.3.14', '04/02/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (788, 258, '3.3.13', '02/13/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (789, 258, '3.3.12', '01/27/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (790, 258, '3.3.11', '01/22/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (791, 258, '3.3.10', '01/10/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (792, 258, '3.3.9', '01/04/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (793, 258, '3.3.8', '10/09/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (794, 258, '3.3.7', '08/12/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (795, 258, '3.3.6', '06/06/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (796, 258, '3.3.5', '04/05/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (797, 258, '3.3.4', '02/11/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (798, 258, '3.3.3', '01/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (799, 258, '3.3.2', '01/24/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (800, 258, '3.3.1', '01/16/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (801, 258, '3.3.0', '01/11/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (802, 258, '2.8.17', '12/19/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (803, 258, '3.2.8', '12/19/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (804, 258, '3.2.7', '09/24/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (805, 258, '3.2.6', '09/17/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (806, 258, '3.2.5', '08/27/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (807, 258, '3.2.4', '08/24/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (808, 258, '3.2.3', '08/21/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (809, 258, '3.2.2', '06/12/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (810, 258, '3.2.1', '03/29/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (811, 258, '3.2.0', '03/21/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (812, 258, '3.1.6', '03/17/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (813, 258, '3.1.5', '03/11/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (814, 258, '3.1.4', '03/11/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (815, 258, '3.1.3.1', '02/28/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (816, 258, '3.1.3', '02/20/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (817, 258, '3.1.2', '02/15/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (818, 258, '2.8.16', '02/15/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (819, 258, '3.1.1', '02/01/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (820, 258, '3.1.0', '01/21/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (821, 258, '3.0.8', '10/12/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (822, 258, '3.0.7', '09/18/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (823, 258, '3.0.6', '09/02/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (824, 258, '3.0.5', '08/29/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (825, 258, '3.0.4', '08/09/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (826, 258, '3.0.3', '07/22/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (827, 258, '2.8.15', '07/22/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (828, 258, '3.0.2', '06/30/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (829, 258, '3.0.1', '06/22/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (830, 258, '3.0.0', '06/18/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (831, 258, '2.8.14', '06/09/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (832, 258, '2.8.13', '03/08/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (833, 258, '2.8.12', '02/08/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (834, 258, '2.8.11', '01/14/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (835, 258, '2.8.10', '01/14/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (836, 258, '2.8.9', '01/06/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (837, 258, '2.8.8', '12/18/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (838, 258, '2.8.7', '12/04/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (839, 258, '2.8.6', '08/22/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (840, 258, '2.8.5', '07/22/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (841, 258, '2.8.4', '06/29/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (842, 258, '2.8.3', '06/04/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (843, 258, '2.8.2', '05/17/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (844, 258, '2.8.1', '05/17/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (845, 258, '2.8.0', '02/16/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (846, 258, '2.7.6', '01/25/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (847, 258, '2.7.5', '12/28/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (848, 258, '2.7.4', '12/17/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (849, 258, '2.7.3', '10/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (850, 258, '2.7.2', '09/25/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (851, 258, '2.7.1', '08/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (852, 258, '2.7.0', '08/25/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (853, 258, '2.6.3', '08/13/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (854, 258, '2.6.2', '07/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (855, 258, '2.6.1', '07/19/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (856, 258, '2.6.0', '07/18/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (857, 258, '2.5.6', '07/07/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (858, 258, '2.5.5', '07/06/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (859, 258, '2.5.4', '07/01/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (860, 258, '2.5.3', '06/25/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (861, 258, '2.5.2', '06/25/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (862, 258, '2.5.1', '06/19/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (863, 258, '2.5.0', '06/17/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (864, 258, '2.4.12', '05/10/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (865, 258, '2.4.11', '05/08/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (866, 258, '2.4.10', '05/03/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (867, 258, '2.4.9', '04/22/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (868, 258, '2.4.8', '04/20/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (869, 258, '2.4.7', '04/12/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (870, 258, '2.4.6', '04/02/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (871, 258, '2.4.5', '04/02/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (872, 258, '2.4.4', '03/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (873, 258, '2.4.3', '03/23/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (874, 258, '2.4.2', '03/20/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (875, 258, '2.4.1', '03/13/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (876, 258, '2.4.1', '03/13/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (877, 258, '2.4.0', '03/11/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (878, 258, '2.3.3', '02/19/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (879, 258, '2.3.2', '02/14/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (880, 258, '2.3.1', '02/13/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (881, 258, '2.3.0', '02/03/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (882, 258, '2.2.5', '01/28/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (883, 258, '2.2.4', '01/22/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (884, 258, '2.2.3', '01/16/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (885, 258, '2.2.2', '01/14/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (886, 258, '2.2.1', '01/09/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (887, 258, '2.2.0', '12/22/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (888, 258, '2.1.7', '12/15/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (889, 258, '2.1.6', '12/14/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (890, 258, '2.1.5', '12/06/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (891, 258, '2.1.4', '12/05/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (892, 258, '2.1.3', '11/24/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (893, 258, '2.1.2', '11/23/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (894, 258, '2.1.1', '11/13/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (895, 258, '2.1.0', '11/12/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (896, 258, '2.0.8', '11/04/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (897, 258, '2.0.7', '10/22/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (898, 258, '2.0.6', '10/19/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (899, 258, '2.0.5', '10/15/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (900, 258, '2.0.4', '10/13/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (901, 258, '2.0.3', '10/13/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (902, 258, '2.0.2', '10/09/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (903, 258, '2.0.1', '10/02/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (904, 258, '2.0.0', '09/28/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (905, 258, '1.0.32', '07/23/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (906, 258, '1.0.31', '04/15/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (907, 258, '1.0.30', '04/06/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (908, 258, '1.0.29', '04/05/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (909, 258, '1.0.28', '04/04/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (910, 258, '1.0.27', '03/20/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (911, 258, '1.0.26', '03/20/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (912, 258, '1.0.25', '03/15/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (913, 258, '1.0.24', '03/14/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (914, 258, '1.0.23', '02/20/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (915, 258, '1.0.22', '02/19/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (916, 258, '1.0.21', '02/19/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (917, 258, '1.0.20', '02/11/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (918, 258, '1.0.19', '02/06/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (919, 258, '1.0.18', '01/04/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (920, 258, '1.0.17', '12/10/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (921, 258, '1.0.16', '11/28/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (922, 258, '1.0.15', '10/23/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (923, 258, '1.0.14', '10/19/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (924, 258, '1.0.13', '10/19/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (925, 258, '1.0.12', '10/17/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (926, 258, '1.0.10', '10/11/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (927, 258, '1.0.9', '10/09/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (928, 258, '1.0.8', '09/30/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (929, 258, '1.0.5', '09/14/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (930, 258, '1.0.4', '08/28/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (931, 258, '1.0.3', '08/22/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (932, 258, '1.0.1', '08/18/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (933, 258, '1', '08/17/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (934, 14, '18', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (935, 14, '17', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (936, 14, '16', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (937, 14, '13', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (938, 14, '1.2', '11/21/2005', '11/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (939, 14, '1.4', '12/23/2006', '04/21/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (940, 14, '1.6.0', '10/01/2008', '10/01/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (941, 14, '1.6.1', '04/27/2009', '04/27/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (942, 14, '1.6.2', '12/18/2009', '04/21/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (943, 14, '1.8', '10/21/2010', '10/21/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (944, 14, '10', '12/15/2011', '12/15/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (945, 14, '11', '10/25/2012', '10/25/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (946, 14, '12', '12/20/2013', '12/20/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (947, 14, '13', '10/24/2014', '10/24/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (948, 14, '14', '10/01/2015', '10/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (949, 14, '15', '10/01/2016', '10/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (950, 5, '1', '02/20/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (951, 5, '4.6.0', '09/21/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (952, 319, '1', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (953, 319, '3', '06/08/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (954, 131, '21.1', '05/12/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (955, 131, '20.2', '10/21/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (956, 131, '20.1', '04/23/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (957, 131, '19.2', '11/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (958, 131, '19.1', '03/21/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (959, 131, '18.2', '09/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (960, 131, '18.1', '05/24/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (961, 131, '5.1.4', '12/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (962, 131, '5.1', '12/21/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (963, 19, '9.1.04', '12/05/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (964, 19, '9.1.03', '06/09/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (965, 19, '9.1.02', '12/05/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (966, 19, '9.1.01', '06/23/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (967, 19, '9.1.00', '12/22/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (968, 170, '1.1', '02/21/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (969, 170, '1.4', '07/10/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (970, 170, '2', '09/02/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (971, 170, '2.1', '04/16/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (972, 170, '2.2', '11/17/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (973, 170, '2.2.5', '04/26/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (974, 8, '2.3.8', '01/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (975, 8, '2.3.7', '04/18/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (976, 8, '3.1.2', '08/26/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (977, 8, '2.3.6', '08/23/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (978, 8, '2.3.5', '05/14/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (979, 8, '2.3.4', '11/07/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (980, 8, '3.1.1', '11/01/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (981, 8, '3.1.0', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (982, 8, '3.0.0', '05/21/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (983, 8, '2.3.3', '04/03/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (984, 8, '2.3.2', '11/18/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (985, 8, '2.3.1', '08/24/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (986, 8, '2.2.0', '07/25/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (987, 8, '2.3.0', '07/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (988, 8, '1.2.2', '04/07/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (989, 8, '2.1.1', '12/08/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (990, 8, '2.1.0', '06/20/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (991, 8, '2.0.1', '05/25/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (992, 8, '2.0.0', '02/15/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (993, 8, '1.2.1', '06/27/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (994, 8, '1.1.1', '05/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (995, 8, '1.0.1', '05/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (996, 8, '0.14.0', '11/12/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (997, 8, '0.13.0', '04/21/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (998, 8, '0.12.0', '10/15/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (999, 8, '0.11.0', '05/15/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1000, 8, '0.10.0', '01/11/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1001, 175, '1', '07/02/1905', '06/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1002, 175, '2', '06/26/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1003, 180, '2.1.0', '07/06/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1004, 180, '2.0.1', '07/06/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1005, 180, '1.8.0', '07/06/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1006, 180, '1.7.1', '07/06/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1007, 180, '1.7.0', '10/04/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1008, 180, '1.6.0', '04/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1009, 180, '1.5.1', '04/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1010, 180, '1.4.0', '04/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1011, 180, '1.3.0', '04/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1012, 180, '1.2.0', '04/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1013, 186, '9.1', '07/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1014, 186, '9', '06/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1015, 186, '8.9', '05/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1016, 168, '6.2.4', '08/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1017, 168, '6.0.20', '04/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1018, 168, '6.0.12', '01/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1019, 168, '6.0.8', '09/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1020, 168, '6', '05/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1021, 168, '5.6.0', '04/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1022, 168, '5.5', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1023, 168, '5.4.14', '02/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1024, 168, '5.4.10', '12/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1025, 168, '5.4.6', '07/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1026, 168, '5.4.4', '06/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1027, 168, '5.4.2', '04/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1028, 168, '5.4', '12/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1029, 168, '5.2.2', '08/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1030, 168, '5.2', '07/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1031, 168, '5.0.2', '06/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1032, 168, '5', '03/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1033, 168, '4.5', '05/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1034, 168, '4.4', '12/31/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1035, 168, '4.3', '08/02/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1036, 168, '4.2.1', '10/18/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1037, 168, '4', '06/18/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1038, 165, '3.9.7', '09/24/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1039, 165, '3.8.23', '09/24/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1040, 165, '3.9.6', '09/16/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1041, 165, '3.9.5', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1042, 165, '3.8.22', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1043, 165, '3.9.4', '08/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1044, 165, '3.9.3', '08/12/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1045, 165, '3.8.21', '08/12/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1046, 165, '3.9.2', '08/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1047, 165, '3.8.20', '08/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1048, 165, '3.9.1', '07/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1049, 165, '3.9.0', '07/23/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1050, 165, '3.8.19', '07/05/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1051, 165, '3.8.18', '06/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1052, 165, '3.8.17', '06/08/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1053, 165, '3.8.16', '05/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1054, 165, '3.8.15', '05/03/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1055, 165, '3.8.14', '03/02/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1056, 165, '3.8.13', '02/27/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1057, 165, '3.8.12', '02/16/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1058, 165, '3.8.11', '01/22/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1059, 165, '3.8.10', '01/19/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1060, 165, '3.8.9', '09/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1061, 165, '3.8.8', '09/03/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1062, 165, '3.8.7', '08/17/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1063, 165, '3.7.28', '08/17/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1064, 165, '3.8.6', '08/04/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1065, 165, '3.7.27', '07/25/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1066, 165, '3.8.5', '06/15/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1067, 165, '3.8.4', '05/25/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1068, 165, '3.7.26', '05/04/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1069, 165, '3.7.25', '04/09/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1070, 165, '3.8.3', '03/10/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1071, 165, '3.7.24', '02/13/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1072, 165, '3.7.23', '12/05/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1073, 165, '3.8.2', '12/02/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1074, 165, '3.7.22', '11/27/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1075, 165, '3.8.1', '10/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1076, 165, '3.7.21', '10/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1077, 165, '3.7.20', '10/25/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1078, 165, '3.7.19', '10/02/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1079, 165, '3.8.0', '10/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1080, 165, '3.7.18', '09/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1081, 165, '3.7.17', '07/29/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1082, 165, '3.7.16', '07/08/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1083, 165, '3.7.15', '05/20/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1084, 165, '3.7.14', '03/29/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1085, 165, '3.7.13', '03/08/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1086, 165, '3.7.12', '02/15/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1087, 165, '3.7.11', '01/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1088, 165, '3.7.10', '01/07/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1089, 165, '3.7.9', '11/16/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1090, 165, '3.7.8', '09/20/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1091, 165, '3.7.7', '07/05/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1092, 165, '3.7.6', '06/13/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1093, 165, '3.6.16', '06/13/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1094, 165, '3.7.5', '05/09/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1095, 165, '3.7.4', '03/08/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1096, 165, '3.7.3', '01/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1097, 165, '3.6.15', '01/17/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1098, 165, '3.7.2', '12/23/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1099, 165, '3.7.1', '12/21/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1100, 165, '3.7.0', '11/29/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1101, 165, '3.6.14', '11/07/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1102, 165, '3.6.13', '11/06/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1103, 165, '3.6.12', '09/11/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1104, 165, '3.6.11', '08/16/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1105, 165, '3.6.10', '05/25/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1106, 165, '3.6.9', '03/29/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1107, 165, '3.6.8', '03/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1108, 165, '3.6.7', '03/15/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1109, 165, '3.6.6', '11/21/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1110, 165, '3.5.8', '11/21/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1111, 165, '3.6.5', '08/05/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1112, 165, '3.6.4', '07/29/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1113, 165, '3.6.3', '07/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1114, 165, '3.6.2', '05/19/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1115, 165, '3.6.1', '03/01/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1116, 165, '3.6.0', '12/22/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1117, 165, '3.5.7', '12/15/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1118, 165, '3.5.6', '10/07/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1119, 165, '3.5.5', '09/24/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1120, 165, '3.5.4', '07/22/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1121, 165, '3.5.3', '05/22/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1122, 165, '3.5.2', '05/12/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1123, 165, '3.5.1', '04/03/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1124, 165, '3.5.0', '03/11/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1125, 165, '3.4.4', '02/11/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1126, 165, '3.4.3', '01/07/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1127, 165, '3.4.2', '11/26/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1128, 165, '3.4.1', '10/29/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1129, 165, '3.4.0', '10/21/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1130, 165, '3.3.5', '08/11/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1131, 165, '3.3.4', '06/24/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1132, 165, '3.3.3', '06/17/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1133, 165, '3.3.2', '06/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1134, 165, '3.3.1', '04/29/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1135, 165, '3.3.0', '04/02/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1136, 165, '3.2.4', '03/04/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1137, 165, '3.2.3', '01/23/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1138, 165, '3.2.2', '12/11/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1139, 165, '3.2.1', '11/07/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1140, 165, '3.2.0', '10/23/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1141, 165, '3.1.5', '08/15/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1142, 165, '3.1.4', '08/07/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1143, 165, '3.1.3', '06/26/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1144, 165, '3.1.2', '06/24/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1145, 165, '3.1.1', '05/21/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1146, 165, '3.1.0', '05/01/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1147, 165, '3.0.4', '03/12/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1148, 165, '3.0.3', '03/06/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1149, 165, '3.0.2', '01/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1150, 165, '3.0.1', '12/11/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1151, 165, '3.0.0', '11/19/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1152, 165, '2.8.7', '09/27/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1153, 165, '2.8.6', '08/22/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1154, 165, '2.8.5', '08/02/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1155, 165, '2.8.4', '06/22/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1156, 165, '2.8.3', '06/21/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1157, 165, '2.8.2', '04/30/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1158, 165, '2.8.1', '03/22/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1159, 165, '2.8.0', '03/19/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1160, 165, '2.7.1', '12/20/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1161, 165, '2.7.0', '11/09/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1162, 165, '2.6.1', '09/12/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1163, 165, '2.6.0', '08/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1164, 165, '2.5.1', '06/27/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1165, 165, '2.5.0', '06/14/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1166, 165, '2.4.1', '04/07/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1167, 165, '2.4.0', '03/23/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1168, 165, '2.3.1', '02/03/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1169, 165, '2.3.0', '02/02/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1170, 165, '2.2.0', '11/30/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1171, 165, '2.1.1', '10/20/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1172, 165, '2.1.0', '09/15/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1173, 165, '2.0.0', '08/25/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1174, 165, '1.8.1', '07/15/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1175, 165, '1.8.0', '06/16/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1176, 165, '1.7.2', '02/16/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1177, 165, '1.7.1', '01/25/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1178, 165, '1.7.0', '10/07/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1179, 165, '1.6.0', '06/17/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1180, 165, '1.5.5', '05/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1181, 165, '1.5.4', '04/06/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1182, 165, '1.5.3', '02/24/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1183, 165, '1.5.1', '01/21/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1184, 165, '1.5.0', '12/18/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1185, 165, '1.4.0', '07/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1186, 165, '1.3.0', '04/01/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1187, 165, '1.2.0', '09/27/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1188, 165, '1.1.1', '08/29/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1189, 165, '1.1.0', '08/01/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1190, 165, '1.0.0', '02/08/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1191, 9, '3.0.0', '09/21/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1192, 9, '2.8.1', '09/18/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1193, 9, '2.8.0', '04/19/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1194, 9, '2.7.1', '05/10/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1195, 9, '2.7.0', '12/21/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1196, 9, '2.6.2', '04/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1197, 9, '2.6.1', '01/07/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1198, 9, '2.6.0', '08/03/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1199, 9, '2.5.1', '08/10/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1200, 9, '2.5.0', '04/15/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1201, 9, '2.4.1', '03/12/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1202, 9, '2.4.0', '12/16/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1203, 9, '2.3.1', '08/24/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1204, 9, '2.3.0', '06/25/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1205, 9, '2.2.2', '12/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1206, 9, '2.2.1', '06/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1207, 9, '2.2.0', '03/22/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1208, 9, '2.1.1', '02/15/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1209, 9, '2.1.0', '11/20/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1210, 9, '2.0.1', '11/09/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1211, 9, '2.0.0', '06/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1212, 9, '1.1.1', '07/19/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1213, 9, '1.1.0', '03/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1214, 9, '1.0.2', '07/08/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1215, 9, '1.0.1', '03/05/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1216, 9, '1.0.0', '11/01/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1217, 9, '0.11.0', '06/28/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1218, 9, '0.10.0', '05/22/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1219, 9, '0.9.0', '11/23/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1220, 9, '0.8.0', '03/12/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1221, 9, '0.7.0', '01/04/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1222, 157, '6', '01/29/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1223, 157, '6.1', '06/08/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1224, 157, '6.2', '10/02/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1225, 157, '6.3', '03/01/1998', '03/01/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1226, 157, '6.4', '10/30/1998', '10/30/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1227, 157, '6.5', '06/09/1999', '06/09/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1228, 157, '7', '05/08/2000', '05/08/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1229, 157, '7.1', '04/13/2001', '04/13/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1230, 157, '7.2', '02/04/2002', '02/04/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1231, 157, '7.3', '11/27/2002', '11/27/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1232, 157, '7.4', '11/17/2003', '10/01/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1233, 157, '8', '01/19/2005', '10/01/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1234, 157, '8.1', '11/08/2005', '11/08/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1235, 157, '8.2', '12/05/2006', '12/05/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1236, 157, '8.3', '02/04/2008', '02/07/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1237, 157, '8.4', '07/01/2009', '07/24/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1238, 157, '9', '09/20/2010', '10/08/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1239, 157, '9.1', '09/12/2011', '10/27/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1240, 157, '9.2', '09/10/2012', '11/09/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1241, 157, '9.3', '09/09/2013', '11/08/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1242, 157, '9.4', '12/18/2014', '02/13/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1243, 157, '9.5', '01/07/2016', '02/11/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1244, 157, '9.6', '09/29/2016', '11/11/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1245, 157, '10', '10/05/2017', '11/10/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1246, 157, '11', '10/18/2018', '11/09/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1247, 157, '12', '10/03/2019', '11/14/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1248, 157, '13', '09/24/2020', '11/13/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1249, 157, '14', '09/30/2021', '11/12/2026'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1250, 21, '1.0', '03/01/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1251, 21, '1', '06/06/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1252, 21, '1.0.1', '07/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1253, 21, '2', '01/23/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1254, 21, '2.0.1', '02/22/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1255, 21, '2.1', '06/28/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1256, 21, '2.0.2', '08/04/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1257, 21, '2.1.1', '09/26/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1258, 21, '2.1.2', '02/27/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1259, 21, '2.1.3', '07/05/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1260, 21, '2.2', '06/28/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1261, 21, '2.2.1', '10/02/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1262, 21, '2.2.1.1', '11/01/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1263, 21, '2.2.2', '02/27/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1264, 21, '2.3', '06/25/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1265, 21, '2.3.1', '09/24/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1266, 21, '2.3.2', '02/25/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1267, 21, '2.5', '06/24/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1268, 21, '2.5.1', '09/25/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1269, 21, '2.5.2', '02/28/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1270, 21, '2.6', '06/24/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1271, 21, '2.6.1', '09/17/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1272, 21, '2.6.2', '02/25/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1273, 21, '3.7', '06/22/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1274, 21, '3.7.1', '09/23/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1275, 21, '3.7.2', '02/24/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1276, 21, '4.2.0', '06/27/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1277, 21, '4.2.1', '09/28/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1278, 21, '4.2.2', '02/22/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1279, 21, '4.3', '06/26/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1280, 21, '4.3.1', '09/27/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1281, 21, '4.3.2', '02/28/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1282, 21, '4.4.0', '06/25/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1283, 21, '4.4.1', '09/26/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1284, 21, '4.4.2', '02/27/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1285, 21, '4.5.0', '06/24/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1286, 21, '4.6.0', '06/22/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1287, 21, '4.7.0', '06/28/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1288, 21, '4.8.0', '06/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1289, 21, '4.9.0', '06/16/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1290, 55, '94', '09/21/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1291, 55, '93', '08/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1292, 55, '92', '06/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1293, 55, '91', '05/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1294, 55, '90', '04/14/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1295, 55, '89', '03/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1296, 55, '88', '01/19/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1297, 55, '87', '11/17/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1298, 55, '86', '10/06/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1299, 55, '85', '08/25/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1300, 55, '84', '07/14/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1301, 55, '83', '05/19/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1302, 55, '81', '04/07/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1303, 55, '80', '02/04/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1304, 55, '79', '12/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1305, 55, '78', '10/22/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1306, 55, '77', '09/10/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1307, 55, '76', '06/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1308, 55, '75', '06/04/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1309, 55, '74', '04/23/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1310, 55, '73', '03/12/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1311, 55, '72', '01/29/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1312, 55, '71', '12/04/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1313, 55, '70', '10/16/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1314, 55, '69', '09/04/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1315, 55, '68', '07/24/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1316, 55, '67', '05/29/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1317, 55, '66', '04/17/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1318, 55, '65', '03/06/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1319, 55, '64', '01/23/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1320, 55, '63', '12/05/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1321, 55, '62', '10/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1322, 55, '61', '09/05/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1323, 55, '60', '07/25/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1324, 55, '59', '05/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1325, 55, '58', '04/18/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1326, 55, '57', '03/07/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1327, 150, '9.3', '12/31/2022', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1328, 150, '9.2', '08/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1329, 150, '9.1', '10/31/2020', '08/01/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1330, 150, '9.0', '02/28/2020', '10/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1331, 150, '8.3', '07/31/2019', '07/01/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1332, 150, '8.2', '11/30/2018', '02/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1333, 150, '8.1', '05/31/2018', '02/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1334, 150, '8.0', '11/30/2017', '02/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1335, 150, '7.1', '04/30/2017', '02/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1336, 27, '20210923171324', '09/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1337, 27, '20210907035717', '10/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1338, 27, '20210824134201', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1339, 27, '20210813114337', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1340, 27, '20210727104144', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1341, 27, '20210720135142', '07/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1342, 27, '20210713164523', '07/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1343, 27, '20210629161835', '07/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1344, 27, '20210616033549', '06/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1345, 27, '20210601124849', '06/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1346, 27, '20210526024943', '05/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1347, 27, '20210518074441', '05/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1348, 27, '20210504084406', '05/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1349, 27, '20210420090302', '04/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1350, 27, '20210406040048', '04/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1351, 27, '20210324172345', '03/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1352, 27, '20210309093358', '03/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1353, 27, '20210219171521', '03/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1354, 27, '20210129162733', '02/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1355, 27, '20210125155346', '01/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1356, 27, '20210112001354', '01/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1357, 27, '20201230192246', '01/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1358, 27, '20201127104018', '12/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1359, 27, '20201106153948', '11/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1360, 27, '20201020140427', '11/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1361, 27, '20201012185603', '10/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1362, 27, '20201005173827', '10/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1363, 27, '20200922182722', '09/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1364, 27, '20200908235050', '09/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1365, 27, '20200831163517', '09/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1366, 27, '20200816214709', '08/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1367, 27, '20200811175306', '08/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1368, 27, '20200807155122', '08/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1369, 27, '20200728181447', '07/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1370, 27, '20200707173044', '07/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1371, 27, '20200701215317', '07/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1372, 27, '20200617215626', '06/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1373, 27, '20200610173731', '06/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1374, 27, '20200603114954', '06/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1375, 27, '20200529133631', '06/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1376, 27, '20200520145933', '05/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1377, 27, '20200513205422', '05/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1378, 27, '20200506172513', '05/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1379, 27, '20200429153636', '05/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1380, 27, '20200420162758', '04/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1381, 27, '20200416222158', '04/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1382, 27, '20200408145843', '04/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1383, 27, '20200325163209', '03/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1384, 27, '20200316122114', '03/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1385, 27, '20200310163217', '03/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1386, 27, '20200303183409', '03/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1387, 27, '20200220011437', '02/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1388, 27, '20200131232134', '02/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1389, 27, '20200127203438', '02/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1390, 27, '20200123225613', '01/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1391, 27, '20200115001116', '01/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1392, 27, '20191211163405', '12/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1393, 27, '20191129172405', '12/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1394, 27, '20191104205453', '11/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1395, 27, '20191030224959', '11/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1396, 27, '20191024135531', '10/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1397, 27, '20191015190829', '10/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1398, 27, '20191007115919', '10/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1399, 27, '20191001203421', '10/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1400, 27, '20190904132002', '09/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1401, 27, '20190827222442', '09/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1402, 27, '20190820163418', '08/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1403, 27, '20190813170406', '08/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1404, 27, '20190806202030', '08/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1405, 27, '20190729085402', '08/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1406, 27, '20190722200451', '07/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1407, 27, '20190717161024', '07/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1408, 27, '20190711110747', '07/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1409, 27, '20190628200755', '07/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1410, 27, '20190617144820', '06/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1411, 27, '20190610211245', '06/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1412, 27, '20190605190944', '06/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1413, 27, '20190513175357', '05/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1414, 27, '20190506101326', '05/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1415, 27, '20190501153509', '05/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1416, 27, '20190422213145', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1417, 27, '20190415203801', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1418, 27, '20190410001346', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1419, 27, '20190325233053', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1420, 27, '20190304193624', '03/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1421, 27, '20190225235742', '03/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1422, 27, '20190207004055', '02/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1423, 27, '20190131011635', '02/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1424, 27, '20190124232144', '01/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1425, 27, '20190116225739', '01/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1426, 27, '20181212095204', '12/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1427, 27, '20181203095916', '12/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1428, 27, '20181126154627', '12/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1429, 27, '20181118185209', '11/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1430, 27, '20181112131523', '11/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1431, 27, '20181029174254', '11/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1432, 27, '20181020020209', '10/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1433, 27, '20181015112149', '10/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1434, 27, '20181011135231', '10/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1435, 27, '20181001090525', '10/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1436, 27, '20180920223835', '09/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1437, 27, '20180912124609', '09/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1438, 27, '20180831173550', '09/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1439, 27, '20180827132056', '08/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1440, 27, '20180817182829', '08/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1441, 27, '20180810152540', '08/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1442, 27, '20180807052402', '08/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1443, 27, '20180806202947', '08/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1444, 27, '20180803154514', '08/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1445, 27, '20180802181335', '08/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1446, 27, '20180728222031', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1447, 27, '20180720170058', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1448, 27, '20180717131009', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1449, 27, '20180714142423', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1450, 27, '20180706210448', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1451, 27, '20180629132035', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1452, 27, '20180621090851', '06/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1453, 27, '20180615105327', '06/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1454, 27, '20180608102534', '06/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1455, 27, '20180604124326', '06/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1456, 27, '20180519154949', '05/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1457, 27, '20180514204156', '05/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1458, 27, '20180504185246', '05/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1459, 27, '20180501212258', '05/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1460, 27, '20180430173459', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1461, 27, '20180424200344', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1462, 27, '20180424150704', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1463, 27, '20180420141712', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1464, 27, '20180416135645', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1465, 27, '20180406143035', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1466, 27, '20180403044658', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1467, 27, '20180326145220', '03/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1468, 27, '20180322085330', '03/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1469, 27, '20180319150121', '03/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1470, 249, '5', '11/15/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1471, 249, '4.5', '03/07/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1472, 249, '4', '05/05/2015', '05/08/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1473, 249, '3.5', '05/27/2014', '09/30/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1474, 249, '3.1', '12/19/2013', '06/10/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1475, 249, '3', '07/17/2013', '06/10/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1476, 249, '2', '12/16/2012', '06/10/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1477, 308, '5', '06/12/1905', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1478, 308, '5.01', '04/15/1991', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1479, 308, '5.2', '02/15/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1480, 308, '5.2a', '03/15/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1481, 308, '5.2b', '06/25/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1482, 308, '5.2c', '08/06/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1483, 308, '5.2d', '03/25/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1484, 308, '5.2e', '02/07/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1485, 308, '5.3', '06/26/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1486, 308, '5.3a', '05/20/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1487, 308, '5.3b', '05/20/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1488, 230, '10', '06/21/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1489, 230, '10.1', '03/20/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1490, 230, '10.2', '01/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1491, 230, '10.3', '08/23/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1492, 230, '11', '04/02/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1493, 230, '11.1', '05/07/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1494, 230, '11.2', '08/29/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1495, 230, '11.3', '06/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1496, 246, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1497, 3, '6', '05/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1498, 178, '3', '12/31/1992', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1499, 178, '4', '12/31/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1500, 178, '5', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1501, 178, '6', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1502, 178, '6.0.2', '12/31/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1503, 178, '7', '12/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1504, 178, '8', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1505, 178, '9', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1506, 178, '10', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1507, 178, '11', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1508, 178, '12', '12/31/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1509, 178, '16', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1510, 178, '17', '12/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1511, 232, '8.2.04', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1512, 10, '5', '02/21/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1513, 10, '6', '05/22/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1514, 10, '7', '05/22/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1515, 365, '8.1', '04/30/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1516, 365, '8.2', '08/18/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1517, 365, '8.3', '02/10/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1518, 365, '8.4', '09/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1519, 365, '8.5', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1520, 365, '8.6', '12/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1521, 365, '7.6', '10/16/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1522, 365, '7.5', '04/21/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1523, 365, '7.4', '07/01/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1524, 145, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1525, 7, '2.3.4', '01/22/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1526, 7, '2.4.2', '03/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1527, 7, '1.4.13', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1528, 7, '1.6.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1529, 7, '1.7.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1530, 7, '2.2.7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1531, 7, '2.3.6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1532, 7, '2.4.6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1533, 7, '3.0.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1534, 60, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1535, 12, '1.14.1', '02/10/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1536, 12, '1.10.7', '02/10/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1537, 12, '1.14.0', '05/27/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1538, 12, '1.13.0', '10/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1539, 12, '1.12.2', '07/24/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1540, 12, '1.10.6', '07/24/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1541, 12, '1.9.12', '07/24/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1542, 12, '1.12.0', '04/24/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1543, 12, '1.11.1', '01/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1544, 12, '1.10.4', '01/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1545, 12, '1.9.10', '01/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1546, 12, '1.11.0', '10/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1547, 12, '1.10.3', '10/10/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1548, 12, '1.10.2', '07/20/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1549, 12, '1.9.9', '07/20/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1550, 12, '1.10.0', '04/12/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1551, 12, '1.9.7', '08/10/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1552, 12, '1.8.19', '08/10/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1553, 12, '1.8.18', '07/07/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1554, 12, '1.9.6', '07/06/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1555, 12, '1.9.5', '11/29/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1556, 12, '1.8.17', '11/29/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1557, 12, '1.9.4', '04/28/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1558, 12, '1.8.16', '04/28/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1559, 12, '1.9.3', '09/15/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1560, 12, '1.8.15', '09/15/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1561, 12, '1.9.2', '09/23/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1562, 12, '1.9.1', '09/02/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1563, 12, '1.7.22', '08/14/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1564, 12, '1.9.0', '08/05/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1565, 12, '1.8.14', '08/05/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1566, 12, '1.7.21', '08/05/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1567, 12, '1.8.13', '03/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1568, 12, '1.7.20', '03/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1569, 12, '1.8.11', '12/15/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1570, 12, '1.7.19', '12/15/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1571, 12, '1.8.10', '08/11/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1572, 12, '1.7.18', '08/11/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1573, 12, '1.7.17', '05/19/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1574, 12, '1.8.9', '05/14/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1575, 12, '1.7.16', '02/26/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1576, 12, '1.8.8', '02/20/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1577, 12, '1.8.5', '11/25/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1578, 12, '1.7.14', '11/25/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1579, 12, '1.8.4', '10/29/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1580, 12, '1.8.3', '08/30/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1581, 12, '1.7.13', '08/30/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1582, 12, '1.8.1', '07/24/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1583, 12, '1.7.11', '07/24/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1584, 12, '1.8.0', '06/18/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1585, 12, '1.7.10', '05/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1586, 12, '1.6.23', '05/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1587, 12, '1.7.9', '04/04/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1588, 12, '1.6.21', '04/04/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1589, 12, '1.6.20', '01/08/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1590, 12, '1.7.8', '12/20/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1591, 12, '1.7.7', '10/09/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1592, 12, '1.6.19', '09/21/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1593, 12, '1.7.6', '08/15/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1594, 12, '1.7.5', '05/17/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1595, 12, '1.7.4', '03/08/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1596, 12, '1.7.3', '02/13/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1597, 12, '1.7.2', '12/05/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1598, 12, '1.7.1', '10/23/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1599, 12, '1.7.0', '10/11/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1600, 12, '1.6.18', '04/12/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1601, 12, '1.6.17', '06/01/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1602, 12, '1.6.16', '03/03/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1603, 12, '1.5.9', '12/22/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1604, 12, '1.6.15', '11/24/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1605, 12, '1.6.13', '10/01/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1606, 12, '1.6.12', '06/21/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1607, 12, '1.6.11', '04/16/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1608, 12, '1.6.9', '01/25/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1609, 12, '1.6.6', '10/22/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1610, 12, '1.6.5', '08/22/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1611, 12, '1.6.4', '08/06/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1612, 12, '1.6.3', '06/22/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1613, 12, '1.6.2', '05/11/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1614, 12, '1.6.1', '04/09/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1615, 12, '1.6.0', '03/20/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1616, 12, '1.5.7', '08/06/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1617, 12, '1.5.6', '02/26/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1618, 12, '1.5.5', '12/22/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1619, 12, '1.5.4', '10/24/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1620, 12, '1.5.3', '10/10/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1621, 12, '1.5.2', '08/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1622, 12, '1.5.1', '07/26/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1623, 12, '1.5.0', '06/19/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1624, 12, '1.4.6', '12/20/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1625, 12, '1.4.5', '08/28/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1626, 12, '1.4.4', '06/08/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1627, 12, '1.4.3', '01/25/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1628, 12, '1.4.2', '11/07/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1629, 12, '1.4.0', '09/10/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1630, 12, '1.3.2', '05/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1631, 12, '1.3.1', '04/03/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1632, 12, '1.3.0', '01/03/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1633, 12, '1.2.3', '08/25/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1634, 12, '1.2.1', '07/05/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1635, 12, '1.2.0', '05/23/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1636, 12, '1.1.4', '04/01/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1637, 12, '1.1.3', '01/14/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1638, 12, '1.1.2', '12/20/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1639, 12, '1.1.1', '10/22/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1640, 12, '1.0.9', '10/13/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1641, 12, '1.1.0', '09/29/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1642, 12, '1.0.8', '09/22/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1643, 12, '1.0.7', '09/17/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1644, 12, '1.0.6', '07/19/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1645, 12, '1.0.5', '06/10/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1646, 12, '1.0.4', '05/21/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1647, 12, '1.0.3', '05/19/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1648, 12, '1.0.2', '04/19/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1649, 12, '1.0.1', '03/12/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1650, 12, '1.0.0', '02/23/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1651, 12, '0.37', '01/25/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1652, 12, '0.36', '01/13/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1653, 12, '0.35.1', '12/20/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1654, 12, '0.35', '12/19/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1655, 12, '0.34', '12/03/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1656, 12, '0.33.1', '11/18/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1657, 12, '0.33', '11/13/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1658, 12, '0.32.1', '10/23/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1659, 12, '0.31', '10/07/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1660, 12, '0.30', '09/24/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1661, 12, '0.29', '09/05/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1662, 12, '0.28.2', '09/02/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1663, 12, '0.28.1', '08/28/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1664, 12, '0.28', '08/27/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1665, 12, '0.27', '08/10/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1666, 12, '0.26', '07/23/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1667, 12, '0.25', '07/10/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1668, 12, '0.24.2', '06/18/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1669, 12, '0.24.1', '06/16/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1670, 12, '0.24', '06/15/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1671, 12, '0.23', '05/17/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1672, 12, '0.22.2', '05/13/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1673, 12, '0.22.1', '05/09/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1674, 12, '0.22', '05/07/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1675, 12, '0.21', '04/15/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1676, 12, '0.20.1', '03/26/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1677, 12, '0.20', '03/20/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1678, 12, '0.19.1', '03/12/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1679, 12, '0.19', '03/10/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1680, 12, '0.18.1', '02/26/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1681, 12, '0.18', '02/19/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1682, 12, '0.17.1', '01/22/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1683, 12, '0.17', '01/20/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1684, 12, '0.16.1', '01/06/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1685, 12, '0.16', '12/03/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1686, 12, '0.15', '11/07/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1687, 12, '0.14.5', '10/29/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1688, 12, '0.14.4', '10/29/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1689, 12, '0.14.3', '09/20/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1690, 12, '0.14.2', '08/22/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1691, 12, '0.14.1', '08/09/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1692, 12, '0.13.2', '06/28/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1693, 12, '0.13.1', '06/20/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1694, 12, '0.13.0', '06/10/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1695, 12, '0.12', '05/03/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1696, 12, '0.11', '04/12/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1697, 12, '0.10', '03/08/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1698, 12, '0.9', '02/18/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1699, 12, '0.8', '01/14/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1700, 12, '0.7', '12/03/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1701, 422, '9', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1702, 422, '8', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1703, 422, '7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1704, 422, '6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1705, 422, '5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1706, 422, '4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1707, 422, '3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1708, 422, '2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1709, 43, '11.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1710, 43, '11.1', ' ', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1711, 43, '10.5', ' ', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1712, 43, '10.1', ' ', '09/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1713, 43, '9.8', ' ', '04/30/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1714, 43, '9.7', ' ', '09/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1715, 43, '9.5', ' ', '04/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1716, 43, '9.1', ' ', '04/30/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1717, 43, '8.1', ' ', '04/30/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1718, 68, '10', '03/27/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1719, 68, '9', '06/28/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1720, 330, '12.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1721, 330, '14.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1722, 81, '9.2', '07/23/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1723, 81, '9.1', '07/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1724, 81, 'IBM MQ on IBM Cloud', '03/13/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1725, 81, 'IBM MQ for HPE Nonstop 8.0', '06/23/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1726, 81, '9.0', '06/02/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1727, 81, '8.0', '05/23/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1728, 81, '7.5', '06/15/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1729, 81, '7.1', '11/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1730, 81, '7.0', '06/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1731, 81, '7.0', '05/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1732, 81, '6.0', '06/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1733, 81, 'WebSphere MQ 6.0 (Distributed, iSeries)', '05/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1734, 81, '5.3', '06/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1735, 81, 'WebSphere MQ 5.3 (Distributed, iSeries)', '11/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1736, 81, 'MQSeries 5.2 (Distributed)', '12/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1737, 81, '5.2', '11/30/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1738, 81, '5.1', '08/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1739, 81, '2.1', '02/28/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1740, 81, '5.1', '06/30/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1741, 81, '4.2', '02/28/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1742, 81, '5.0', '10/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1743, 81, '1.2', '08/29/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1744, 81, '1.1.4,', '06/30/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1745, 81, '2.2', '07/31/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1746, 81, '2.0', '06/30/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1747, 81, '2.2', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1748, 81, '1.1.3', '05/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1749, 81, '2.0', '02/28/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1750, 81, '3', '12/31/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1751, 81, '3.0', '07/01/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1752, 81, '1.1.2', '06/01/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1753, 81, '2.3', '04/30/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1754, 81, '1.1.1', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1755, 127, '9.5.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1756, 169, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1757, 36, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1758, 225, '3', '12/31/1986', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1759, 225, '4', '12/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1760, 225, '5', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1761, 225, '6', '12/31/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1762, 225, '7', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1763, 225, '8', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1764, 225, '9', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1765, 225, '9.4', '12/31/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1766, 225, '9.5', '12/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1767, 225, '9.6', '12/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1768, 225, '9.7', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1769, 225, '10', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1770, 225, '10.4', '12/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1771, 219, '8.5.0', '12/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1772, 128, '2.5.0', '10/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1773, 128, '2.5.1', '10/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1774, 128, '2.5.2', '10/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1775, 128, '2.5.3', '10/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1776, 128, '2.4.0', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1777, 128, '2.4.1', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1778, 128, '2.4.2', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1779, 128, '2.4.3', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1780, 128, '2.4.4', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1781, 128, '2.4.5', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1782, 128, '2.4.6', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1783, 128, '2.4.7', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1784, 128, '2.4.8', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1785, 128, '2.4.9', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1786, 128, '2.4.10', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1787, 128, '2.4.11', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1788, 128, '2.3.0', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1789, 128, '2.3.1', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1790, 128, '2.3.2', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1791, 128, '2.3.3', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1792, 128, '2.3.4', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1793, 128, '2.3.5', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1794, 128, '2.3.6', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1795, 128, '2.3.7', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1796, 128, '2.3.8', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1797, 128, '2.3.9', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1798, 128, '2.3.10', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1799, 128, '2.3.11', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1800, 128, '2.3.12', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1801, 128, '2.3.13', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1802, 128, '2.3.14', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1803, 128, '2.3.15', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1804, 128, '2.3.16', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1805, 128, '2.3.17', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1806, 128, '2.3.18', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1807, 128, '2.2.0', '04/21/2011', '11/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1808, 128, '2.2.1', '04/21/2011', '11/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1809, 128, '2.2.2', '04/21/2011', '11/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1810, 128, '2.2.3', '04/21/2011', '11/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1811, 128, '2.1.0', '12/11/2009', '11/30/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1812, 128, '2.1.1', '12/11/2009', '11/30/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1813, 128, '2.1.2', '12/11/2009', '11/30/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1814, 128, '2.1.3', '12/11/2009', '11/30/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1815, 128, '2.1.4', '12/11/2009', '11/30/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1816, 215, '15', '03/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1817, 215, '16', '11/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1818, 117, '1', '11/09/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1819, 117, '1.5', '11/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1820, 117, '2', '10/24/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1821, 117, '3', '06/17/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1822, 117, '3.5', '06/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1823, 117, '3.6', '01/21/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1824, 117, '4', '10/13/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1825, 146, '1', '03/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1826, 146, '1.1', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1827, 146, '1.2.1', '08/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1828, 146, '1.5', '04/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1829, 146, '1.5.1', '06/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1830, 146, '1.5.3', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1831, 146, '1.5.4', '03/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1832, 146, '1.5.5', '07/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1833, 146, '2.1', '12/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1834, 146, '3', '03/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1835, 146, '3.1', '02/28/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1836, 146, '3.2', '08/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1837, 146, '4', '12/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1838, 146, '4.0.1', '02/28/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1839, 146, '4.0.2', '05/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1840, 146, '4.0.3', '09/30/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1841, 146, '4.1.1', '06/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1842, 146, '4.1.2', '10/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1843, 146, '4.1.3', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1844, 146, '4.1.5', '09/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1845, 146, '4.2.0', '04/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1846, 146, '17.2', '07/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1847, 146, '17.4', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1848, 146, '18.1', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1849, 146, '18.2', '07/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1850, 146, '18.3', '10/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1851, 146, '18.4', '01/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1852, 146, '19.1', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1853, 146, '19.2', '08/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1854, 146, '19.4', '12/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1855, 146, '20.2', '06/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1856, 146, '20.4', '01/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1857, 146, '20.4.1', '02/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1858, 146, '21.2', '08/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1859, 241, '2.16.0', '11/23/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1860, 241, '2.15.2', '01/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1861, 241, '2.14.0', '02/02/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1862, 241, '2.13.20', '10/20/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1863, 241, '2.12.0', '03/05/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1864, 241, '2.11.1', '07/11/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1865, 241, '2.9.1', '04/23/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1866, 241, '2.8', '03/04/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1867, 241, '2.7.1', '11/16/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1868, 241, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1869, 115, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1870, 86, ' ', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1871, 4, '1', '06/15/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1872, 4, '2', '09/01/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1873, 4, '3', '11/01/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1874, 4, '4', '04/01/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1875, 4, '5', '05/01/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1876, 4, '6', '07/01/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1877, 4, '7', '12/28/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1878, 4, '8', '11/03/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1879, 4, '9', '06/02/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1880, 4, '10', '11/15/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1881, 4, '11', '10/15/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1882, 4, '2015', '04/06/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1883, 4, '2017', '06/06/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1884, 4, '2020', '06/01/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1885, 101, '1.5', '12/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1886, 101, '2012', '09/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1887, 101, '7 ', '02/28/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1888, 101, '7.0.4.17', '05/27/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1889, 88, '2.8', '09/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1890, 88, '2.81', '10/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1891, 125, '20.03', '03/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1892, 125, '21.05', '05/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1893, 234, '8.6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1894, 234, '8.5.1', '05/22/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1895, 231, '7.0.0', '04/02/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1896, 231, '6.7', '04/17/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1897, 231, '6.5', '11/15/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1898, 231, '6', '03/12/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1899, 231, '5.5', '09/22/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1900, 231, '5', '08/24/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1901, 56, '5', '09/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1902, 56, '6', '09/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1903, 57, '1', '04/30/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1904, 57, '2.7.7', '05/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1905, 57, '2.8.5', '09/15/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1906, 57, '2.9.2', '11/09/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1907, 57, '2.10.1', '09/21/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1908, 57, '3.1.4', '08/03/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1909, 57, '3.2.2', '01/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1910, 57, '3.3.1', '06/15/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1911, 124, '3.29.1', '12/24/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1912, 124, '3.29', '12/04/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1913, 124, '3.28.1', '10/19/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1914, 124, '3.28', '10/01/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1915, 124, '3.27', '09/03/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1916, 124, '3.26.1', '08/12/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1917, 124, '3.26', '08/10/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1918, 124, '3.25.1', '07/29/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1919, 124, '3.25', '07/13/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1920, 124, '3.24', '06/08/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1921, 124, '3.23', '05/05/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1922, 124, '3.22.1', '04/16/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1923, 124, '3.22.0', '03/27/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1924, 124, '3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1925, 188, '6', '10/01/2013', '10/22/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1926, 188, '6.1', '05/06/2014', '10/22/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1927, 188, '6.2', '10/07/2014', '10/22/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1928, 188, '6.3', '09/22/2015', '10/22/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1929, 188, '6.4', '04/05/2016', '10/22/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1930, 188, '6.5', '09/27/2016', '10/22/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1931, 188, '6.6', '05/02/2017', '01/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1932, 188, '7', '09/26/2017', '01/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1933, 188, '7.1', '04/24/2018', '10/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1934, 188, '7.2', '10/02/2018', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1935, 188, '7.3', '06/04/2019', '10/22/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1936, 188, '8', '10/22/2019', '10/22/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1937, 188, '8.1', '10/19/2020', '10/19/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1938, 188, '8.2', '05/12/2021', '05/12/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1939, 151, '7', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1940, 151, '7.5', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1941, 151, '9', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1942, 151, '9.1', '12/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1943, 151, '9.2', '12/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1944, 84, '12.1.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1945, 84, '13.1.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1946, 84, '14.1.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1947, 84, '15.1.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1948, 84, '15.2.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1949, 181, '2013', '08/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1950, 181, '2016', '04/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1951, 181, '2019', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1952, 192, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1953, 6, '5.16.3', '08/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1954, 6, '5.16.2', '04/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1955, 6, '5.16.1', '01/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1956, 6, '5.16.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1957, 6, '5.15.15', '04/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1958, 6, '5.15.14', '12/09/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1959, 6, '5.15.13', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1960, 6, '5.15.12', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1961, 6, '5.15.11', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1962, 6, '5.15.10', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1963, 6, '5.15.9', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1964, 6, '5.15.8', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1965, 6, '5.15.7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1966, 6, '5.15.6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1967, 6, '5.15.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1968, 6, '5.15.4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1969, 6, '5.15.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1970, 6, '5.15.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1971, 6, '5.15.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1972, 6, '5.15.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1973, 6, '5.14.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1974, 6, '5.14.4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1975, 6, '5.14.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1976, 6, '5.14.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1977, 6, '5.14.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1978, 6, '5.14.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1979, 6, '5.13.4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1980, 6, '5.13.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1981, 6, '5.13.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1982, 6, '5.13.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1983, 6, '5.13.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1984, 6, '5.12.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1985, 6, '5.12.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1986, 6, '5.12.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1987, 6, '5.11.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1988, 6, '5.11.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1989, 6, '5.11.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1990, 6, '5.11.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1991, 6, '5.10.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1992, 6, '5.10.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1993, 6, '5.10.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1994, 6, '5.9.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1995, 6, '5.9.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1996, 6, '5.8.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1997, 6, '5.7.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1998, 6, '5.6.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1999, 6, '5.5.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2000, 6, '5.5.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2001, 6, '5.4.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2002, 6, '5.4.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2003, 6, '5.4.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2004, 6, '5.4.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2005, 6, '5.3.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2006, 6, '5.3.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2007, 6, '5.3.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2008, 6, '5.2.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2009, 6, '5.1.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2010, 6, '5.0.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2011, 240, '10', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2012, 240, '9.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2013, 248, '0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2014, 248, '1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2015, 248, '2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2016, 248, '3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2017, 248, '4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2018, 79, '9.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2019, 79, '9.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2020, 79, '8.6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2021, 83, '8.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2022, 83, '8.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2023, 83, '9', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2024, 83, '10', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2025, 157, '14', '09/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2026, 157, '13', '09/24/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2027, 157, '12', '10/03/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2028, 157, '11', '10/18/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2029, 157, '10', '10/05/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2030, 157, '9.6', '09/29/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2031, 157, '9.5', '01/07/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2032, 157, '9.4', '12/18/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2033, 157, '9.3', '09/09/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2034, 157, '9.2', '09/10/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2035, 157, '9.1', '09/12/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2036, 157, '9', '09/20/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2037, 157, '8.4', '07/01/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2038, 157, '8.3', '02/04/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2039, 157, '8.2', '12/05/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2040, 157, '8.1', '11/08/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2041, 157, '8', '01/19/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2042, 157, '7.4', '11/17/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2043, 157, '7.3', '11/27/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2044, 157, '7.2', '02/04/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2045, 157, '7.1', '04/13/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2046, 157, '7', '05/08/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2047, 157, '6.5', '06/09/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2048, 157, '6.4', '10/30/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2049, 157, '6.3', '03/01/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2050, 11, '1', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2051, 11, '1.3', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2052, 11, '1.4', '12/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2053, 11, '4', '10/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2054, 11, '5', '10/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2055, 11, '6', '04/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2056, 11, '7', '09/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2057, 11, '8', '03/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2058, 73, '08.10.05', '12/18/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2059, 73, '08.10.02', '06/19/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2060, 73, '08.10.00', '12/07/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2061, 73, '08.09.02', '03/23/2018', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2062, 73, '08.09.01', '11/10/2017', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2063, 73, '08.09.00', '03/03/2017', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2064, 73, '08.08.01', '07/19/2016', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2065, 73, '08.08.00', '11/27/2015', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2066, 73, '08.07.01', '05/15/2015', '04/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2067, 73, '08.07.00', '12/05/2014', '04/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2068, 73, '08.06.00', '06/06/2014', '09/30/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2069, 73, '08.05.01', '11/29/2013', '09/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2070, 73, '08.05.00', '06/07/2013', '09/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2071, 73, '08.00.01', '12/30/2012', '09/30/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2072, 73, '08.00.00', '06/08/2012', '09/30/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2073, 73, '07.05.00', '11/18/2011', '04/30/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2074, 73, '07.01.00', '10/15/2010', '09/30/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2075, 176, '7.6', '12/31/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2076, 176, '7.7', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2077, 176, '7.8', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2078, 176, '7.9', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2079, 120, '1.0', '12/31/1989', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2080, 120, '1.1', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2081, 120, '4.2A', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2082, 120, '4.2B', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2083, 120, '4.21', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2084, 120, '6', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2085, 120, '6.5', '12/31/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2086, 120, '7', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2087, 120, '8', '12/31/2000', '04/08/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2088, 120, '9', '01/14/2006', '04/12/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2089, 120, '10', '11/06/2008', '07/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2090, 120, '10.25', '12/31/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2091, 120, '10.5', '07/20/2010', '07/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2092, 120, '11', '05/20/2012', '07/11/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2093, 120, '12', '06/05/2014', '07/09/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2094, 120, '13', '06/01/2016', '07/13/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2095, 120, '14', '09/29/2017', '10/11/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2096, 120, '15', '11/04/2019', '01/07/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2097, 121, '1.0', '10/26/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2098, 121, '2.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2099, 121, '3.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2100, 121, '3.1', '02/19/2007', '04/12/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2101, 121, '3.5', '02/19/2008', '04/10/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2102, 121, '4.0', '04/13/2011', '07/13/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2103, 31, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2104, 190, '3', '12/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2105, 190, '4', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2106, 190, '4.2', '12/31/1991', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2107, 190, '4.8', '12/31/1992', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2108, 190, '4.9', '12/31/1992', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2109, 190, '4.9.1', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2110, 190, '4.9.2', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2111, 190, '11', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2112, 190, '11.5', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2113, 190, '11.9', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2114, 190, '11.9.2', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2115, 190, '12', '12/31/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2116, 190, '12.5', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2117, 190, '12.5.0.1', '12/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2118, 190, '12.5.0.3', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2119, 190, '12.5.2', '12/31/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2120, 190, '12.5.3', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2121, 190, '12.5.4', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2122, 190, '15', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2123, 190, '15.0.1', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2124, 190, '15.0.2', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2125, 190, '15.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2126, 190, '16', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2127, 436, '12.04.5', '07/08/2014', '04/28/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2128, 436, '12.04.5', '07/08/2014', '04/28/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2129, 436, '12.04.5', '07/08/2014', '04/28/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2130, 436, '14.04.6', '03/07/2019', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2131, 436, '14.04.6', '03/07/2019', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2132, 436, '14.04.6', '03/07/2019', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2133, 436, '16.04.7', '08/18/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2134, 436, '16.04.7', '08/18/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2135, 436, '16.04.7', '08/18/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2136, 436, '16.04.7', '08/18/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2137, 436, '18.04.5', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2138, 436, '18.04.5', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2139, 436, '18.04.5', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2140, 436, '18.04.5', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2141, 436, '20.04.1', '08/06/2020', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2142, 436, '20.04.1', '08/06/2020', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2143, 436, '20.04.1', '08/06/2020', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2144, 436, '20.04.1', '08/06/2020', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2145, 436, '20.10', '10/22/2020', '07/22/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2146, 436, '20.10', '10/22/2020', '07/22/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2147, 436, '4.1', '10/26/2004', '04/30/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2148, 436, '5.04', '04/08/2005', '10/31/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2149, 436, '5.1', '10/12/2005', '04/13/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2150, 436, '6.06.0', '06/01/2006', '07/14/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2151, 436, '6.06.1', '08/10/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2152, 436, '6.06.2', '01/21/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2153, 436, '6.1', '10/26/2006', '04/26/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2154, 436, '7.04', '04/19/2007', '10/19/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2155, 436, '7.1', '10/18/2007', '04/18/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2156, 436, '8.04.0', '04/24/2008', '05/12/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2157, 436, '8.04.1', '07/03/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2158, 436, '8.04.2', '01/22/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2159, 436, '8.04.3', '07/16/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2160, 436, '8.04.4', '01/28/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2161, 436, '8.1', '10/30/2008', '04/30/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2162, 436, '9.04', '04/23/2009', '10/23/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2163, 436, '9.1', '08/23/2013', '04/30/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2164, 436, '10.04.0', '10/21/2015', '05/09/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2165, 436, '10.04.1', '10/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2166, 436, '10.04.2', '10/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2167, 436, '10.04.3', '10/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2168, 436, '10.04.4', '10/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2169, 436, '10.1', '08/23/2013', '04/10/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2170, 436, '11.04', '08/23/2013', '10/28/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2171, 436, '11.1', '08/23/2013', '05/09/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2172, 436, '12.04.0', '04/27/2018', '04/28/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2173, 436, '12.04.1', '04/27/2018', '04/28/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2174, 436, '12.04.2', '04/27/2018', '08/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2175, 436, '12.04.3', '04/27/2018', '08/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2176, 436, '12.04.4', '04/27/2018', '08/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2177, 436, '12.1', '04/22/2016', '05/16/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2178, 436, '13.04', '04/22/2016', '01/27/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2179, 436, '13.1', '04/22/2016', '07/17/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2180, 436, '14.04.0', '03/07/2019', '04/30/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2181, 436, '14.04.1', '03/07/2019', '04/30/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2182, 436, '14.04.2', '03/07/2019', '08/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2183, 436, '14.04.3', '03/07/2019', '08/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2184, 436, '14.04.4', '03/07/2019', '08/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2185, 436, '14.04.5', '03/07/2019', '04/30/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2186, 436, '14.1', '04/22/2016', '07/23/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2187, 436, '15.04', '04/28/2016', '02/04/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2188, 436, '15.1', '08/04/2016', '07/28/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2189, 436, '16.04.0', '08/13/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2190, 436, '16.04.1', '08/13/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2191, 436, '16.04.2', '08/13/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2192, 436, '16.04.3', '08/13/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2193, 436, '16.04.4', '08/13/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2194, 436, '16.04.5', '08/13/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2195, 436, '16.1', '07/21/2017', '07/20/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2196, 436, '17.04', '02/07/2018', '01/13/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2197, 436, '17.1', '08/02/2018', '07/19/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2198, 436, '18.04.0', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2199, 436, '18.04.1', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2200, 436, '18.04.2', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2201, 436, '18.04.3', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2202, 436, '18.04.4', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2203, 436, '18.1', '08/08/2019', '07/18/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2204, 436, '19.04', '08/18/2020', '04/18/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2205, 436, '19.1', '08/21/2020', '10/17/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2206, 436, '20.04.0', '02/11/2021', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2207, 436, '20.04.1', '02/11/2021', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2208, 436, '20.04', '02/11/2021', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2209, 436, '20.1', '10/22/2020', '01/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2210, 434, '8.3', '11/03/2020', '05/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2211, 434, '8.2', '04/28/2020', '05/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2212, 434, '8.1', '11/05/2019', '05/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2213, 434, '8', '05/07/2019', '05/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2214, 434, '7.9', '09/29/2020', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2215, 434, '7.8', '03/31/2020', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2216, 434, '7.7', '08/06/2019', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2217, 434, '7.6', '10/30/2018', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2218, 434, '7.5', '04/10/2018', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2219, 434, '7.4', '07/31/2017', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2220, 434, '7.3', '11/03/2016', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2221, 434, '7.2', '11/19/2015', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2222, 434, '7.1', '03/05/2015', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2223, 434, '7.0', '06/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2224, 434, '7.0', '12/11/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2225, 434, '6.10', '06/19/2018', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2226, 434, '6.9', '03/21/2017', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2227, 434, '6.8', '05/10/2016', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2228, 434, '6.7', '07/22/2015', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2229, 434, '6.6', '10/14/2014', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2230, 434, '6.5', '11/21/2013', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2231, 434, '6.4', '02/21/2013', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2232, 434, '6.3', '06/20/2012', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2233, 434, '6.2', '12/06/2011', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2234, 434, '6.1', '05/19/2011', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2235, 434, '6.0', '11/09/2010', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2236, 434, '5.11', '09/16/2014', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2237, 434, '5.10', '10/01/2013', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2238, 434, '5.9', '01/07/2013', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2239, 434, '5.8', '02/20/2012', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2240, 434, '5.7', '07/21/2011', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2241, 434, '5.6', '01/13/2011', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2242, 434, '5.5', '03/30/2010', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2243, 434, '5.4', '09/02/2009', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2244, 434, '5.3', '01/20/2009', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2245, 434, '5.2', '05/21/2008', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2246, 434, '5.1', '11/07/2007', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2247, 434, '5.0', '03/15/2007', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2248, 434, '4.9', '02/16/2011', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2249, 434, '4.8', '05/19/2009', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2250, 434, '4.7', '07/29/2008', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2251, 434, '4.6', '11/15/2007', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2252, 434, '4.5', '05/01/2007', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2253, 434, '4.4', '08/10/2006', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2254, 434, '4.3', '03/12/2006', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2255, 434, '4.2', '10/05/2005', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2256, 434, '4.1', '06/08/2005', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2257, 434, '4', '02/15/2005', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2258, 434, '3.9', '06/20/2007', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2259, 434, '3.8', '07/20/2006', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2260, 434, '3.7', '03/17/2006', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2261, 434, '3.6', '09/28/2005', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2262, 434, '3.5', '05/18/2005', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2263, 434, '3.4', '12/12/2004', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2264, 434, '3.3', '09/03/2004', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2265, 434, '3.2', '05/12/2004', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2266, 434, '3.1', '01/16/2004', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2267, 434, '3', '10/22/2003', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2268, 434, '2.1.7', '04/28/2005', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2269, 434, '2.1.6', '12/13/2004', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2270, 434, '2.1.5', '08/18/2004', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2271, 434, '2.1.4', '04/21/2004', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2272, 434, '2.1.3', '12/19/2004', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2273, 434, '2.1.2', '03/29/2003', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2274, 434, '2.1.1', '02/14/2003', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2275, 434, '2.1', '03/23/2002', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2276, 429, '0.9', '08/01/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2277, 429, '0.91', '01/01/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2278, 429, '0.93R5', '03/01/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2279, 429, '0.93R6', '11/01/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2280, 429, '1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2281, 429, '1.1', '06/17/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2282, 429, '1.2', '12/12/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2283, 429, '1.3', '06/05/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2284, 429, '2.0', '07/24/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2285, 429, '2.1', '03/09/1999', '09/30/2000'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2286, 429, '2.2', '08/15/2000', '06/30/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2287, 429, '3.0', '07/19/2002', '06/30/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2288, 429, '3.1', '06/06/2005', '03/31/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2289, 429, '4.0', '04/08/2007', '02/15/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2290, 429, '5.0', '02/14/2009', '02/06/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2291, 429, '6.0', '02/06/2011', '05/31/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2292, 429, '7', '05/04/2013', '04/26/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2293, 429, '8', '04/26/2015', '06/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2294, 429, '9', '06/17/2017', '01/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2295, 429, '10', '07/06/2019', '01/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2296, 429, '11', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2297, 429, '12', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2298, 429, '13', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2299, 427, '2.1', '08/19/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2300, 427, '3.1', '07/31/2005', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2301, 427, '3.3', '03/17/2005', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2302, 427, '3.4', '03/01/2005', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2303, 427, '3.5', '07/28/2005', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2304, 427, '3.6', '04/04/2006', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2305, 427, '3.7', '05/06/2006', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2306, 427, '3.8', '04/20/2012', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2307, 427, '3.9', '04/20/2012', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2308, 427, '4', '06/23/2005', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2309, 427, '4.0', '09/15/2005', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2310, 427, '4.1', '10/19/2005', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2311, 427, '4.2', '11/04/2006', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2312, 427, '4.2.0', '10/23/2005', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2313, 427, '4.3', '08/27/2006', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2314, 427, '4.4', '11/01/2006', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2315, 427, '4.5', '12/08/2007', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2316, 427, '4.6', '09/18/2008', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2317, 427, '4.7', '02/14/2010', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2318, 427, '4.8', '04/20/2012', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2319, 427, '4.9', '04/20/2012', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2320, 427, '5', '04/11/2007', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2321, 427, '5.1', '11/27/2007', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2322, 427, '5.2', '06/18/2008', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2323, 427, '5.3', '02/14/2010', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2324, 427, '5.4', '06/25/2010', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2325, 427, '5.5', '05/14/2010', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2326, 427, '5.6', '08/12/2011', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2327, 427, '5.7', '09/13/2011', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2328, 427, '5.8', '02/27/2012', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2329, 427, '5.9', '01/12/2013', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2330, 427, '5.1', '10/07/2014', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2331, 427, '5.11', '09/27/2014', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2332, 427, '6', '12/19/2011', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2333, 427, '6.1', '12/08/2011', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2334, 427, '6.2', '12/19/2011', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2335, 427, '6.3', '07/09/2012', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2336, 427, '6.4', '06/20/2013', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2337, 427, '6.5', '12/21/2013', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2338, 427, '6.6', '07/31/2015', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2339, 427, '6.7', '01/21/2016', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2340, 427, '6.8', '05/24/2016', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2341, 427, '6.9', '04/04/2017', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2342, 427, '6.1', '07/02/2018', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2343, 427, '7.0.1406', '04/07/2015', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2344, 427, '7.1.1503', '11/13/2015', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2345, 427, '7.2.1511', '05/18/2016', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2346, 427, '7.3.1611', '02/20/2017', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2347, 427, '7.4.1708', '02/26/2018', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2348, 427, '7.5.1804', '05/09/2018', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2349, 427, '7.6.1810', '12/02/2018', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2350, 427, '7.7.1908', '09/15/2019', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2351, 427, '7.8.2003', '06/17/2020', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2352, 427, '7.9.2009', '01/18/2021', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2353, 427, '8.0', '03/10/2021', '05/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2354, 427, '8.0.1905', '09/09/2020', '05/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2355, 427, '8.1.1911', '10/21/2020', '05/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2356, 427, '8.2.2004', '01/15/2021', '05/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2357, 427, '8.3.2011', '02/22/2021', '05/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2358, 453, '1', '11/05/2003', '09/20/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2359, 453, '2', '05/18/2004', '04/11/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2360, 453, '3', '11/08/2004', '01/16/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2361, 453, '4', '06/13/2005', '08/07/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2362, 453, '5', '03/20/2006', '07/02/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2363, 453, '6', '10/24/2006', '12/07/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2364, 453, '7', '05/31/2007', '06/13/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2365, 453, '8', '11/08/2007', '01/07/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2366, 453, '9', '05/13/2008', '07/10/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2367, 453, '10', '11/25/2008', '12/17/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2368, 453, '11', '06/09/2009', '06/25/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2369, 453, '12', '11/17/2009', '12/02/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2370, 453, '13', '05/25/2010', '06/24/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2371, 453, '14', '11/02/2010', '12/09/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2372, 453, '15', '05/24/2011', '06/26/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2373, 453, '16', '11/08/2011', '02/12/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2374, 453, '17', '05/29/2012', '07/30/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2375, 453, '18', '01/15/2013', '01/14/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2376, 453, '19', '07/02/2013', '01/06/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2377, 453, '20', '12/17/2013', '06/23/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2378, 453, '21', '12/09/2014', '01/12/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2379, 453, '22', '05/26/2015', '07/19/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2380, 453, '23', '11/03/2015', '12/20/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2381, 453, '24', '06/21/2016', '08/08/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2382, 453, '25', '11/22/2016', '12/12/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2383, 453, '26', '07/11/2017', '05/29/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2384, 453, '27', '11/14/2017', '11/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2385, 453, '28', '05/01/2018', '05/28/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2386, 453, '29', '10/30/2018', '11/26/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2387, 453, '30', '05/07/2019', '05/26/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2388, 453, '31', '10/29/2019', '11/24/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2389, 453, '32', '04/28/2020', '05/25/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2390, 453, '33', '10/27/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2391, 453, '34', '04/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2392, 453, '35', '10/19/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2393, 432, '4.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2394, 432, '4.6', '12/10/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2395, 432, '4.7', '08/05/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2396, 432, '4.8', '05/26/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2397, 432, '4.9', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2398, 432, '5', '06/26/2007', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2399, 432, '5.1', '11/26/2007', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2400, 432, '5.2', '06/02/2008', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2401, 432, '5.3', '01/28/2009', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2402, 432, '5.4', '09/09/2009', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2403, 432, '5.5', '04/07/2010', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2404, 432, '5.6', '01/22/2011', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2405, 432, '5.7', '08/16/2011', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2406, 432, '5.8', '03/02/2012', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2407, 432, '5.9', '01/16/2013', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2408, 432, '5.1', '10/08/2013', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2409, 432, '5.11', '09/23/2014', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2410, 432, '6', '02/11/2011', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2411, 432, '6.1', '06/01/2011', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2412, 432, '6.2', '12/15/2011', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2413, 432, '6.3', '06/28/2012', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2414, 432, '6.4', '02/28/2013', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2415, 432, '6.5', '11/27/2013', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2416, 432, '6.6', '10/21/2014', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2417, 432, '6.7', '07/31/2015', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2418, 432, ' ', '03/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2419, 432, '6.8', '05/16/2016', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2420, 432, '6.9', '03/28/2017', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2421, 432, '6.1', '07/02/2018', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2422, 432, '7', '07/23/2014', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2423, 432, '7.1', '03/12/2015', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2424, 432, '7.2', '11/25/2015', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2425, 432, '7.3', '11/10/2016', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2426, 432, '7.4', '08/08/2017', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2427, 432, '7.5', '04/17/2018', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2428, 432, '7.6', '11/07/2018', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2429, 432, '7.7', '08/15/2019', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2430, 432, '7.8', '04/08/2020', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2431, 432, '7.9', '10/07/2020', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2432, 432, '8', '07/18/2019', '07/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2433, 432, '8.1', '11/15/2019', '07/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2434, 432, '8.2', '05/06/2020', '07/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2435, 432, '8.3', '11/13/2020', '07/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2436, 454, '2011.09', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2437, 454, '2012.03.3', '06/27/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2438, 454, '2012.09.1', '02/19/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2439, 454, '2013.03', '05/13/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2440, 454, '2013.03.1', '05/13/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2441, 454, '2013.09.1', '11/11/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2442, 454, '2013.09.2', '12/12/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2443, 454, '2014.03.1', '04/14/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2444, 454, '2014.03.2', '06/16/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2445, 454, '2014.09.1', '10/14/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2446, 454, '2014.09.2', '01/29/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2447, 454, '2015.03.1', '08/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2448, 454, '2015.09.2', '02/16/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2449, 454, '2016.03.1', '05/04/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2450, 454, '2016.03.2', '06/09/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2451, 454, '2016.03.3', '06/28/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2452, 454, '2016.09.1', '12/22/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2453, 454, '2017.03', '06/19/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2454, 454, '2017.09', '11/06/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2455, 454, '2018.03', '05/14/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2456, 431, '10.2', '12/07/2006', '11/30/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2457, 431, '10.3', '10/04/2007', '10/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2458, 431, '11', '06/19/2008', '07/26/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2459, 431, '11.1', '12/18/2008', '01/14/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2460, 431, '11.2', '11/12/2009', '05/12/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2461, 431, '11.3', '07/15/2010', '01/20/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2462, 431, '11.4', '03/10/2011', '11/05/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2463, 431, '12.1', '11/16/2011', '05/15/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2464, 431, '12.2', '09/05/2012', '01/15/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2465, 431, '12.3', '03/13/2013', '01/29/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2466, 431, '13.1', '11/19/2013', '02/03/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2467, 431, '13.2', '11/04/2014', '01/17/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2468, 431, '42.1', '11/04/2015', '05/17/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2469, 431, '42.2', '11/16/2016', '01/26/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2470, 431, '42.3', '07/26/2017', '07/01/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2471, 431, '15', '05/25/2018', '12/03/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2472, 431, '15.1', '05/22/2019', '02/02/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2473, 431, '15.2', '07/02/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2474, 431, '15.3', '07/07/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2475, 435, 'SuSE Linux Enterprise Server S/390', '10/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2476, 435, 'Sparc', '04/01/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2477, 435, 'IAs32', '04/01/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2478, 435, '7', '10/13/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2479, 435, '8', '10/01/2002', '12/20/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2480, 435, '8 SP1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2481, 435, '8 SP2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2482, 435, '8 SP2a', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2483, 435, '8 SP3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2484, 435, '8 SP4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2485, 435, '9', '08/03/2004', '08/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2486, 435, '9 SP1', '01/19/2005', '08/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2487, 435, '9 SP2', '07/07/2005', '08/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2488, 435, '9 SP3', '12/22/2005', '08/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2489, 435, '9 SP4', '12/12/2007', '08/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2490, 435, '10', '06/17/2006', '07/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2491, 435, '10 SP1', '06/18/2007', '07/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2492, 435, '10 SP2', '05/19/2008', '07/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2493, 435, '10 SP3', '10/12/2009', '07/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2494, 435, '10 SP4', '04/12/2011', '07/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2495, 435, '11', '03/24/2009', '03/31/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2496, 435, '11 SP1', '06/02/2010', '03/31/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2497, 435, '11 SP2', '02/15/2012', '03/31/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2498, 435, '11 SP3', '07/01/2013', '03/31/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2499, 435, '11 SP4', '07/16/2015', '03/31/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2500, 435, '12', '10/27/2014', '08/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2501, 435, '12 SP1', '01/12/2016', '08/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2502, 435, '12 SP2', '11/11/2016', '08/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2503, 435, '12 SP3', '09/07/2017', '08/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2504, 435, '12 SP4', '12/11/2018', '08/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2505, 435, '12 SP5', '12/09/2019', '08/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2506, 435, '15', '07/16/2018', '07/31/2028'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2507, 435, '15 SP1', '06/24/2019', '07/31/2028'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2508, 435, '15 SP2', '07/21/2020', '07/31/2028'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2509, 430, '20.4', '12/25/2020', '06/25/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2510, 430, '20.3', '09/29/2020', '03/29/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2511, 430, '20.2', '06/30/2020', '12/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2512, 430, '20.1', '03/27/2020', '09/27/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2513, 430, '19.4', '12/26/2019', '06/26/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2514, 430, '19.3', '09/26/2019', '03/26/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2515, 430, '19.2', '06/26/2019', '12/26/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2516, 430, '19.1', '03/27/2019', '09/27/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2517, 430, '18.4', '12/22/2018', '06/22/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2518, 430, '18.3', '09/26/2018', '03/26/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2519, 430, '18.2', '06/29/2018', '12/29/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2520, 430, '18.1', '03/28/2018', '09/28/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2521, 430, '17.4', '12/21/2017', '06/21/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2522, 430, '17.3', '08/25/2017', '02/25/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2523, 430, '17.2', '06/06/2017', '12/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2524, 430, '17.1', '03/03/2017', '09/03/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2525, 430, '16.2', '11/29/2016', '05/29/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2526, 430, '16.1', '07/28/2016', '01/28/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2527, 430, '15.1X53', '06/05/2015', '12/05/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2528, 430, '15.1X49', '06/30/2015', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2529, 430, '15.1', '06/05/2015', '12/05/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2530, 430, '14.2', '11/05/2014', '05/05/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2531, 430, '14.1X53', '09/26/2014', '06/30/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2532, 430, '14.1', '06/13/2014', '06/13/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2533, 430, '13.3', '01/22/2014', '07/22/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2534, 430, '13.2X52', '07/06/2014', '06/30/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2535, 430, '13.2X51', '11/22/2013', '06/30/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2536, 430, '13.2X50', '06/28/2013', '12/28/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2537, 430, '13.2', '08/29/2013', '02/29/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2538, 430, '13.1X50', '07/25/2013', '12/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2539, 430, '13.1', '03/15/2013', '09/15/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2540, 430, '12.3X54', '07/18/2014', '07/18/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2541, 430, '12.3X52', '08/23/2013', '02/23/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2542, 430, '12.3X51', '03/15/2013', '09/15/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2543, 430, '12.3X50', '12/08/2012', '07/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2544, 430, '12.3X48', '03/06/2015', '06/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2545, 430, '12.3', '01/31/2013', '07/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2546, 430, '12.2X50', '07/05/2012', '07/31/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2547, 430, '12.2', '09/05/2012', '03/05/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2548, 430, '12.1X49', '04/19/2012', '10/19/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2549, 430, '12.1X48', '01/28/2013', '06/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2550, 430, '12.1X47', '08/18/2014', '02/18/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2551, 430, '12.1X46', '12/30/2013', '06/30/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2552, 430, '12.1X45', '07/17/2013', '01/17/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2553, 430, '12.1X44', '01/18/2013', '07/18/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2554, 430, '12.1', '03/28/2012', '09/28/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2555, 430, '11.4', '12/21/2011', '06/21/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2556, 430, '11.3', '08/15/2011', '03/15/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2557, 430, '11.2', '08/03/2011', '02/15/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2558, 430, '11.1', '03/29/2011', '05/15/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2559, 430, '10.41', '12/08/2010', '06/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2560, 430, '10.3', '08/15/2010', '12/21/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2561, 430, '10.2', '05/28/2010', '11/15/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2562, 430, '10.1', '02/15/2010', '05/15/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2563, 430, '10.0', '11/04/2009', '05/15/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2564, 430, '9.6', '08/06/2009', '11/06/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2565, 430, '9.5', '04/14/2009', '08/15/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2566, 430, '9.4', '02/11/2009', '05/11/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2567, 430, '9.3', '11/14/2008', '05/15/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2568, 430, '9.2', '08/12/2008', '11/12/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2569, 430, '9.1', '04/28/2008', '07/28/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2570, 430, '9.0', '02/15/2008', '05/15/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2571, 430, '8.5', '11/16/2007', '05/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2572, 430, '8.4', '08/09/2007', '11/09/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2573, 430, '8.3', '04/18/2007', '07/18/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2574, 430, '8.2', '02/15/2007', '05/15/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2575, 430, '8.11', '11/06/2006', '05/06/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2576, 430, '8.0', '08/15/2006', '11/15/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2577, 430, '7.6', '05/15/2006', '08/15/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2578, 430, '7.5', '02/08/2006', '05/08/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2579, 430, '7.4', '11/15/2005', '02/15/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2580, 430, '7.3', '08/16/2005', '11/16/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2581, 430, '7.2', '05/14/2005', '08/14/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2582, 430, '7.1', '02/14/2005', '05/14/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2583, 430, '7.0', '11/15/2004', '02/15/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2584, 430, '6.4', '08/12/2004', '11/12/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2585, 430, '6.3', '05/15/2004', '08/15/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2586, 430, '6.2', '02/15/2004', '05/15/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2587, 430, '6.1', '11/15/2003', '02/15/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2588, 430, '6.0', '08/15/2003', '11/15/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2589, 430, '5.7', '05/15/2003', '08/15/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2590, 430, '5.6', '02/15/2003', '05/15/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2591, 430, '5.5', '11/15/2002', '02/15/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2592, 430, '5.4', '08/12/2002', '11/15/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2593, 430, '5.3', '05/12/2002', '08/15/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2594, 430, '5.2', '02/12/2002', '05/15/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2595, 430, '5.1', '11/07/2001', '02/15/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2596, 430, '5.0', '08/17/2001', '11/15/2002'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2597, 430, '4.4', '04/30/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2598, 430, '4.3', '01/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2599, 430, '4.2', '10/16/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2600, 430, '4.1', '08/15/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2601, 430, '4.0', '03/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2602, 433, '1', '06/16/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2603, 433, '2', '10/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2604, 433, '3', '02/07/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2605, 433, '4', '03/05/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2606, 322, '1', '10/01/1956', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2607, 322, '2', '12/31/1958', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2608, 322, '3', '12/31/1958', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2609, 322, '4', '12/31/1961', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2610, 322, '5.0', '12/31/1968', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2611, 322, '5.1', '12/31/1980', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2612, 322, '6', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2613, 322, '66', '12/31/1966', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2614, 322, '77', '12/31/1978', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2615, 322, '90', '12/31/1991', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2616, 322, '95', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2617, 322, '2003', '12/31/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2618, 322, '2008', '09/01/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2619, 322, '2018', '11/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2620, 337, 'ES1', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2621, 337, 'ES2', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2622, 337, 'ES3', '12/31/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2623, 337, 'ES4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2624, 337, 'ES5', '12/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2625, 337, 'ES6', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2626, 343, '1', '12/31/1981', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2627, 343, '2', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2628, 345, 'pascal', '12/31/2070', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2629, 345, 'Object pascal', '12/31/1985', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2630, 345, 'extended pascal', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2631, 345, 'Free pascal', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2632, 345, 'smalltalk80', '12/31/1980', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2633, 363, 'ANSI smalltalk', '12/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2634, 363, 'Ambrai smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2635, 363, 'Dolphin smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2636, 363, 'GNU smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2637, 363, 'LSWsvision smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2638, 363, 'Little smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2639, 363, 'Resilient embedded smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2640, 363, 'Object studio smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2641, 363, 'Pocket smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2642, 363, 'Public Domain smalltalk (PDST)', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2643, 363, 'Slate smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2644, 363, 'Smalltalk Express', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2645, 363, 'smalltalk MT', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2646, 363, 'smalltalk X', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2647, 363, 'Squat smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2648, 363, 'Squeak smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2649, 363, 'Strong smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2650, 363, 'Susie smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2651, 363, 'Talks2 smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2652, 363, 'VisualWorks smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2653, 363, 'VisualAge smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2654, 363, 'Vmx Quicknet smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2655, 363, 'Zoku smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2656, 324, '0.1.1', '07/02/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2657, 324, '0.2.0', '07/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2658, 324, '0.3.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2659, 324, '0.4.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2660, 324, '0.5.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2661, 324, '0.6.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2662, 324, '0.7.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2663, 324, '0.8.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2664, 324, '0.9.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2665, 324, '0.10.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2666, 324, '0.11.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2667, 324, '0.12.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2668, 324, '0.13.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2669, 324, '14', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2670, 324, '14.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2671, 324, '14.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2672, 324, '14.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2673, 324, '14.4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2674, 324, '14.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2675, 324, '15', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2676, 360, '72', '01/31/1972', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2677, 360, '76', '07/31/1976', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2678, 360, '79.5', '04/30/1981', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2679, 360, '82.4', '01/31/1983', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2680, 360, '4.06', '03/31/1984', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2681, 360, '5.03', '07/31/1986', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2682, 360, '6.01', '01/31/1985', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2683, 360, '6.03', '03/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2684, 360, '6.06', '03/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2685, 360, '6.07', '04/30/1991', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2686, 360, '6.08', '03/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2687, 360, '6.09', '10/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2688, 360, '6.1', '10/31/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2689, 360, '6.11', '10/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2690, 360, '6.12', '11/30/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2691, 360, '7', '10/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2692, 360, '8', '11/30/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2693, 360, '8.1', '07/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2694, 360, '8.2', '03/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2695, 360, '9', '10/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2696, 360, '9.1', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2697, 360, '9.1.3', '08/31/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2698, 360, '9.2', '03/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2699, 360, '9.2M2', '04/30/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2700, 360, '9.3', '07/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2701, 360, '9.3M2', '08/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2702, 360, '9.4', '07/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2703, 360, '9.4M1', '12/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2704, 360, '9.4M2', '08/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2705, 360, '9.4M3', '07/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2706, 360, '9.4M4', '11/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2707, 360, '9.4M5', '09/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2708, 360, '9.4M6', '11/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2709, 360, '9.4M7', '08/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2710, 367, '0.8', '10/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2711, 367, '0.9', '06/18/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2712, 367, '1', '04/12/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2713, 367, '1.1', '10/06/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2714, 367, '1.3', '11/12/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2715, 367, '1.4', '01/20/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2716, 367, '1.5', '07/20/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2717, 367, '1.6', '09/16/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2718, 367, '1.7', '11/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2719, 367, '1.8', '02/22/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2720, 367, '2', '09/22/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2721, 367, '2.1', '11/08/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2722, 367, '2.2', '02/22/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2723, 367, '2.3', '04/27/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2724, 367, '2.4', '06/27/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2725, 367, '2.5', '08/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2726, 367, '2.6', '10/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2727, 367, '2.7', '01/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2728, 367, '2.8', '03/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2729, 367, '2.9', '05/14/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2730, 367, '3', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2731, 367, '3.1', '09/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2732, 367, '3.2', '11/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2733, 367, '3.3', '01/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2734, 367, '3.4', '03/29/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2735, 367, '3.5', '05/29/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2736, 367, '3.6', '08/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2737, 367, '3.7', '11/05/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2738, 367, '3.8', '02/20/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2739, 367, '3.9', '05/12/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2740, 367, '4', '08/20/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2741, 367, '4.1', '11/19/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2742, 367, '4.2', '02/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2743, 367, '4.3', '05/26/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2744, 367, '4.4', '08/26/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2745, 331, 'JDK Beta', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2746, 331, '1.0', '01/01/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2747, 331, '1.1', '02/01/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2748, 331, '1.2', '12/01/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2749, 331, '1.3', '05/01/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2750, 331, '1.4', '02/01/2002', '10/01/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2751, 331, '5.0', '09/01/2004', '11/01/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2752, 331, '6', '12/01/2006', '04/01/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2753, 331, '7', '07/01/2011', '04/01/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2754, 331, '8', '03/01/2014', '12/01/1930'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2755, 331, '9', '09/01/2017', '03/01/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2756, 331, '10', '03/01/2018', '09/01/2026'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2757, 331, '11', '09/01/2018', '10/01/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2758, 331, '12', '03/01/2019', '09/01/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2759, 331, '13', '09/01/2019', '03/01/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2760, 331, '14', '03/01/2020', '09/01/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2761, 331, '15', '09/01/2020', '03/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2762, 331, '16', '03/01/2021', '09/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2763, 331, '17', '09/01/2021', '09/01/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2764, 331, '18', '03/01/2022', '09/01/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2765, 331, '19', '09/01/2022', '03/01/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2766, 331, '20', '03/01/2023', '01/09/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2767, 331, '21', '09/01/2023', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2768, 347, '1', '12/18/1987', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2769, 347, '4', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2770, 347, '5', '10/17/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2771, 347, '5.001', '03/13/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2772, 347, '5.002', '02/29/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2773, 347, '5.003', '06/25/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2774, 347, '5.004', '05/15/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2775, 347, '5.005', '07/22/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2776, 347, '5.6', '03/22/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2777, 347, '5.8', '07/18/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2778, 347, '5.10.0', '12/18/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2779, 347, '5.11', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2780, 347, '5.12', '04/12/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2781, 347, '5.12.3', '01/21/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2782, 347, '5.12.4', '06/20/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2783, 347, '5.12.5', '11/10/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2784, 347, '5.14', '05/14/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2785, 347, '5.16', '05/20/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2786, 347, '5.18', '05/18/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2787, 347, '5.20.0', '05/27/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2788, 368, '7.0', '12/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2789, 368, '7.1', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2790, 368, '8.0', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2791, 368, '9.0', '11/19/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2792, 368, '10.0', '04/01/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2793, 368, '11.0', '12/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2794, 368, '12.0', '12/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2795, 368, '14.0', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2796, 368, '15.0', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2797, 368, '16.0', '12/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2798, 315, '1', '09/01/1987', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2799, 315, '2', '04/01/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2800, 315, '3', '10/01/1991', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2801, 315, '4', '01/01/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2802, 315, '5', '03/01/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2803, 315, '5.45.5', '02/04/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2804, 364, '1.0', '09/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2805, 364, '1.1', '10/22/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2806, 364, '1.2', '04/08/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2807, 364, '2.0', '09/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2808, 364, '2.1', '10/20/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2809, 364, '2.2', '03/21/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2810, 364, '2.2.1', '05/03/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2811, 364, '3.0', '09/13/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2812, 364, '3.0.1', '10/28/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2813, 364, '3.0.2', '12/13/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2814, 364, '3.1', '03/27/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2815, 364, '3.1.1', '04/21/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2816, 364, '4.0', '09/19/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2817, 364, '4.0.2', '11/01/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2818, 364, '4.0.3', '12/05/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2819, 364, '4.1', '03/29/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2820, 364, '4.1.1', '05/04/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2821, 364, '4.1.2', '05/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2822, 364, '4.1.3', '07/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2823, 364, '4.2', '09/17/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2824, 364, '4.2.1', '10/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2825, 364, '4.2.2', '02/04/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2826, 364, '4.2.3', '02/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2827, 364, '4.2.4', '03/29/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2828, 364, '5.0', '03/25/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2829, 364, '5.0.1', '04/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2830, 364, '5.0.2', '07/15/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2831, 364, '5.0.3', '08/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2832, 364, '5.1', '09/10/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2833, 364, '5.1.1', '10/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2834, 364, '5.1.2', '11/07/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2835, 364, '5.1.3', '12/13/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2836, 364, '5.1.4', '01/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2837, 364, '5.1.5', '03/09/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2838, 364, '5.2', '03/24/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2839, 364, '5.2.1', '03/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2840, 364, '5.2.2', '04/15/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2841, 364, '5.2.3', '04/29/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2842, 364, '5.2.4', '05/20/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2843, 364, '5.2.5', '08/05/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2844, 364, '5.3', '09/16/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2845, 364, '5.3.1', '11/13/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2846, 364, '5.3.2', '12/15/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2847, 364, '5.3.3', '01/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2848, 364, '5.4', '04/26/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2849, 364, '5.4.1', '05/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2850, 364, '5.4.2', '06/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2851, 364, '5.4.3', '09/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2852, 364, '5.5', '09/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2853, 341, 'ACL2', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2854, 341, 'Arc', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2855, 341, 'AutoLISP', '12/31/1986', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2856, 341, 'BBN LISP', '12/31/2066', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2857, 341, 'Chez Scheme', '12/31/1985', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2858, 341, 'Chicken', '12/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2859, 341, 'Clojure', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2860, 341, 'ANSI Common Lisp', '12/31/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2861, 341, 'Common Lisp', '12/31/1984', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2862, 341, 'Dylan', '12/31/1992', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2863, 341, 'Emacs Lisp', '12/31/1976', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2864, 341, 'EuLisp', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2865, 341, 'Franz Lisp', '12/31/1980', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2866, 341, 'Game Oriented Assembly Lisp (GOAL)', '12/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2867, 341, 'Hy', '12/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2868, 341, 'Ikarus', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2869, 341, 'Interlisp', '12/31/2067', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2870, 341, 'ISLISP', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2871, 341, 'Le Lisp', '12/31/1981', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2872, 341, 'Lisp Flavored Erlang (LFE)', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2873, 341, 'Lisp Machine Lisp', '12/31/1984', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2874, 341, 'Maclisp', '12/31/2066', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2875, 341, 'MultiLisp', '12/31/1980', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2876, 341, 'NIL', '12/31/2070', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2877, 341, 'OpenLisp', '12/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2878, 341, 'Owl Lisp', '12/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2879, 341, 'PicoLisp', '12/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2880, 341, 'Portable Standard Lisp', '12/31/1980', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2881, 341, 'Racket', '12/31/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2882, 341, 'Scheme', '12/31/2070', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2883, 341, 'Scheme In One Defun (SIOD)', '12/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2884, 341, 'SKILL', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2885, 341, 'TXR Lisp', '12/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2886, 354, '3.10.0', '10/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2887, 354, '3.9.7', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2888, 354, '3.9.6', '06/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2889, 354, '3.9.5', '05/03/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2890, 354, '3.9.4', '04/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2891, 354, '3.9.3', '04/02/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2892, 354, '3.9.2', '02/19/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2893, 354, '3.9.1', '12/08/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2894, 354, '3.9.0', '10/05/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2895, 354, '3.8.12', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2896, 354, '3.8.11', '06/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2897, 354, '3.8.10', '05/03/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2898, 354, '3.8.9', '04/02/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2899, 354, '3.8.8', '02/19/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2900, 354, '3.8.7', '12/21/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2901, 354, '3.8.6', '09/23/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2902, 354, '3.8.5', '07/20/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2903, 354, '3.8.4', '07/13/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2904, 354, '3.8.3', '05/13/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2905, 354, '3.8.2', '02/24/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2906, 354, '3.8.1', '12/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2907, 354, '3.8.0', '10/14/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2908, 354, '3.7.12', '09/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2909, 354, '3.7.11', '06/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2910, 354, '3.7.10', '02/15/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2911, 354, '3.7.9', '08/17/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2912, 354, '3.7.8', '06/27/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2913, 354, '3.7.7', '03/10/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2914, 354, '3.7.6', '12/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2915, 354, '3.7.5', '10/15/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2916, 354, '3.7.4', '07/08/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2917, 354, '3.7.3', '03/25/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2918, 354, '3.7.2', '12/24/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2919, 354, '3.7.1', '10/20/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2920, 354, '3.7.0', '06/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2921, 354, '3.6.15', '09/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2922, 354, '3.6.14', '06/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2923, 354, '3.6.13', '02/15/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2924, 354, '3.6.12', '08/17/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2925, 354, '3.6.11', '06/27/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2926, 354, '3.6.10', '12/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2927, 354, '3.6.9', '07/02/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2928, 354, '3.6.8', '12/24/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2929, 354, '3.6.7', '10/20/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2930, 354, '3.6.6', '06/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2931, 354, '3.6.5', '03/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2932, 354, '3.6.4', '12/19/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2933, 354, '3.6.3', '10/03/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2934, 354, '3.6.2', '07/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2935, 354, '3.6.1', '03/21/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2936, 354, '3.6.0', '12/23/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2937, 354, '3.5.10', '09/05/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2938, 354, '3.5.8', '11/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2939, 354, '3.5.7', '03/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2940, 354, '3.5.6', '08/08/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2941, 354, '3.5.5', '02/04/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2942, 354, '3.5.4', '07/25/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2943, 354, '3.5.3', '01/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2944, 354, '3.5.2', '06/27/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2945, 354, '3.5.1', '12/07/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2946, 354, '3.5.0', '09/13/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2947, 354, '3.4.10', '03/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2948, 354, '3.4.9', '08/08/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2949, 354, '3.4.8', '02/04/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2950, 354, '3.4.7', '07/25/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2951, 354, '3.4.6', '01/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2952, 354, '3.4.5', '06/26/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2953, 354, '3.4.4', '12/06/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2954, 354, '3.4.3', '02/25/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2955, 354, '3.4.2', '10/04/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2956, 354, '3.4.1', '05/18/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2957, 354, '3.4.0', '03/16/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2958, 354, '3.3.7', '09/19/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2959, 354, '3.3.6', '10/12/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2960, 354, '3.3.5', '03/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2961, 354, '3.3.4', '02/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2962, 354, '3.3.3', '11/17/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2963, 354, '3.3.2', '05/15/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2964, 354, '3.3.1', '04/07/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2965, 354, '3.3.0', '09/29/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2966, 354, '3.2.6', '10/11/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2967, 354, '3.2.5', '05/15/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2968, 354, '3.2.4', '04/07/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2969, 354, '3.2.3', '04/10/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2970, 354, '3.2.2', '09/04/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2971, 354, '3.2.1', '07/10/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2972, 354, '3.2', '02/20/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2973, 354, '3.1.5', '04/09/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2974, 354, '3.1.4', '06/11/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2975, 354, '3.1.3', '11/27/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2976, 354, '3.1.2', '03/21/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2977, 354, '3.1.1', '08/17/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2978, 354, '3.1', '06/27/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2979, 354, '3.0.1', '02/13/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2980, 354, '3', '12/03/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2981, 354, '2.7.18', '04/20/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2982, 354, '2.7.17', '10/19/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2983, 354, '2.7.16', '03/02/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2984, 354, '2.7.15', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2985, 354, '2.7.14', '09/16/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2986, 354, '2.7.13', '12/17/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2987, 354, '2.7.12', '06/26/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2988, 354, '2.7.11', '12/05/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2989, 354, '2.7.10', '05/23/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2990, 354, '2.7.9', '12/10/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2991, 354, '2.7.8', '07/01/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2992, 354, '2.7.7', '05/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2993, 354, '2.7.6', '11/10/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2994, 354, '2.7.5', '05/15/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2995, 354, '2.7.4', '04/06/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2996, 354, '2.7.3', '04/09/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2997, 354, '2.7.2', '06/11/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2998, 354, '2.7.1', '11/27/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2999, 354, '2.7', '07/04/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3000, 354, '2.6.9', '10/29/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3001, 354, '2.6.8', '04/10/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3002, 354, '2.6.7', '06/03/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3003, 354, '2.6.6', '08/24/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3004, 354, '2.6.5', '03/19/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3005, 354, '2.6.4', '10/25/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3006, 354, '2.6.3', '10/02/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3007, 354, '2.6.2', '04/14/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3008, 354, '2.6.1', '12/04/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3009, 354, '2.6', '10/01/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3010, 354, '2.5.4', '12/23/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3011, 354, '2.5.3', '12/19/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3012, 354, '2.5.2', '02/21/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3013, 354, '2.5.1', '04/18/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3014, 354, '2.5', '09/19/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3015, 354, '2.4.4', '10/18/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3016, 354, '2.4.3', '03/29/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3017, 354, '2.4.2', '09/28/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3018, 354, '2.4.1', '03/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3019, 354, '2.4', '11/30/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3020, 354, '2.3.5', '02/08/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3021, 354, '2.3.4', '05/27/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3022, 354, '2.3.3', '12/19/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3023, 354, '2.3.2', '10/03/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3024, 354, '2.3.1', '09/23/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3025, 354, '2.3', '07/29/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3026, 354, '2.2.3', '05/30/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3027, 354, '2.2.2', '10/14/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3028, 354, '2.2.1', '04/10/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3029, 354, '2.2.0', '03/29/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3030, 354, '2.2', '12/21/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3031, 354, '2.1.3', '04/08/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3032, 354, '2.1.2', '01/16/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3033, 354, '2.1.1', '07/20/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3034, 354, '2.1', '04/15/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3035, 354, '2.0.1', '06/22/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3036, 354, '2', '10/16/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3037, 354, '1.6', '09/05/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3038, 354, '1.5.2p2', '03/22/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3039, 354, '1.5.2p1', '07/06/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3040, 354, '1.5.2', '04/30/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3041, 354, '1.5.1p1', '08/06/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3042, 354, '1.5.1', '04/14/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3043, 354, '1.5', '02/17/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3044, 354, '1.4', '10/25/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3045, 354, '1', '01/01/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3046, 355, '4.1.1', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3047, 355, '4.1.0', '05/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3048, 355, '4.0.5', '03/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3049, 355, '4.0.4', '02/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3050, 355, '4.0.3', '10/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3051, 355, '4.0.2', '06/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3052, 355, '4.0.1', '06/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3053, 355, '4.0.0', '04/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3054, 355, '3.6.3', '02/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3055, 355, '3.6.2', '12/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3056, 355, '3.6.1', '07/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3057, 355, '3.6.0', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3058, 355, '3.5.3', '03/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3059, 355, '3.5.2', '12/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3060, 355, '3.5.1', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3061, 355, '3.5.0', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3062, 355, '3.4.4', '03/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3063, 355, '3.4.3', '11/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3064, 355, '3.4.2', '09/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3065, 355, '3.4.1', '06/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3066, 355, '3.4.0', '04/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3067, 355, '3.3.3', '03/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3068, 355, '3.3.2', '10/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3069, 355, '3.3.1', '06/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3070, 355, '3.3.0', '04/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3071, 355, '3.2.5', '04/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3072, 355, '3.2.4', '03/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3073, 355, '3.2.3', '12/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3074, 355, '3.2.2', '08/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3075, 355, '3.2.1', '06/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3076, 355, '3.2.0', '04/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3077, 355, '3.1.3', '03/30/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3078, 355, '3.1.2', '10/30/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3079, 355, '3.1.1', '07/30/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3080, 355, '3.1.0', '04/30/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3081, 355, '3.0.3', '03/30/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3082, 355, '3.0.2', '09/30/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3083, 355, '3.0.1', '05/30/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3084, 355, '3.0.0', '04/30/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3085, 355, '2.15.3', '03/30/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3086, 355, '2.15.2', '10/30/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3087, 355, '2.15.1', '06/30/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3088, 355, '2.15.0', '03/30/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3089, 355, '2.14.2', '02/28/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3090, 355, '2.14.1', '12/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3091, 355, '2.14.0', '11/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3092, 355, '2.13.2', '09/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3093, 355, '2.13.1', '07/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3094, 355, '2.13.0', '04/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3095, 355, '2.12.2', '02/28/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3096, 355, '2.12.1', '12/30/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3097, 355, '2.12.0', '10/30/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3098, 355, '2.11.1', '05/30/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3099, 355, '2.11.0', '04/30/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3100, 355, '2.10.1', '12/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3101, 355, '2.10.0', '10/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3102, 355, '2.9.2', '08/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3103, 355, '2.9.1', '06/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3104, 355, '2.9.0', '04/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3105, 355, '2.8.1', '12/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3106, 355, '2.8.0', '10/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3107, 355, '2.7.2', '08/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3108, 355, '2.7.1', '06/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3109, 355, '2.7.0', '04/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3110, 355, '2.6.2', '02/28/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3111, 355, '2.6.1', '11/30/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3112, 355, '2.6.0', '10/30/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3113, 355, '2.5.1', '07/30/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3114, 355, '2.5.0', '04/30/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3115, 355, '2.4.1', '12/30/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3116, 355, '2.4.0', '10/30/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3117, 355, '2.3.1', '06/30/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3118, 355, '2.3.0', '04/30/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3119, 355, '2.2.1', '12/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3120, 355, '2.2.0', '10/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3121, 355, '2.1.1', '06/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3122, 355, '2.1.0', '04/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3123, 355, '2.0.1', '11/30/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3124, 355, '2.0.0', '10/30/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3125, 355, '1.9.1', '06/30/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3126, 355, '1.8.1', '11/30/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3127, 355, '1.7.1', '06/30/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3128, 355, '1.6.2', '01/30/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3129, 355, '1.5.1', '06/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3130, 355, '1.4.1', '01/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3131, 355, '1.3.1', '09/30/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3132, 355, '1.2.2', '03/30/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3133, 355, '1.0.0', '02/28/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3134, 358, '3.0.2', '07/07/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3135, 358, '2.7.4', '07/07/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3136, 358, '2.6.8', '07/07/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3137, 358, '3.0.1', '04/05/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3138, 358, '2.7.3', '04/05/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3139, 358, '2.6.7', '04/05/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3140, 358, '2.5.9', '04/05/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3141, 358, '3.0.0', '12/25/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3142, 358, '3.0.0src1', '12/20/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3143, 358, '3.0.0spreview2', '12/08/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3144, 358, '2.7.2', '10/02/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3145, 358, '3.0.0spreview1', '09/25/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3146, 358, '2.7.1', '03/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3147, 358, '2.6.6', '03/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3148, 358, '2.5.8', '03/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3149, 358, '2.4.10', '03/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3150, 358, '2.7.0', '12/25/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3151, 358, '2.7.0src2', '12/21/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3152, 358, '2.7.0src1', '12/17/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3153, 358, '2.7.0spreview3', '11/23/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3154, 358, '2.7.0spreview2', '10/22/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3155, 358, '2.4.9', '10/02/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3156, 358, '2.6.5', '10/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3157, 358, '2.5.7', '10/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3158, 358, '2.4.8', '10/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3159, 358, '2.6.4', '08/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3160, 358, '2.5.6', '08/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3161, 358, '2.4.7', '08/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3162, 358, '2.7.0spreview1', '05/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3163, 358, '2.6.3', '04/17/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3164, 358, '2.4.6', '04/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3165, 358, '2.5.5', '03/15/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3166, 358, '2.6.2', '03/13/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3167, 358, '2.5.4', '03/13/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3168, 358, '2.6.1', '01/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3169, 358, '2.6.0', '12/25/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3170, 358, '2.6.0src2', '12/15/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3171, 358, '2.6.0src1', '12/06/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3172, 358, '2.6.0spreview3', '11/06/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3173, 358, '2.5.3', '10/18/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3174, 358, '2.5.2', '10/17/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3175, 358, '2.4.5', '10/17/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3176, 358, '2.3.8', '10/17/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3177, 358, '2.6.0spreview2', '05/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3178, 358, '2.5.1', '03/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3179, 358, '2.4.4', '03/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3180, 358, '2.3.7', '03/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3181, 358, '2.2.10', '03/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3182, 358, '2.6.0spreview1', '02/24/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3183, 358, '2.5.0', '12/25/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3184, 358, '2.5.0src1', '12/14/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3185, 358, '2.4.3', '12/14/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3186, 358, '2.3.6', '12/14/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3187, 358, '2.2.9', '12/14/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3188, 358, '2.5.0spreview1', '10/10/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3189, 358, '2.4.2', '09/14/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3190, 358, '2.3.5', '09/14/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3191, 358, '2.2.8', '09/14/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3192, 358, '2.3.4', '03/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3193, 358, '2.2.7', '03/28/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3194, 358, '2.4.1', '03/22/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3195, 358, '2.4.0', '12/25/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3196, 358, '2.4.0src1', '12/12/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3197, 358, '2.3.3', '11/21/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3198, 358, '2.3.2', '11/15/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3199, 358, '2.2.6', '11/15/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3200, 358, '2.4.0spreview3', '11/09/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3201, 358, '2.4.0spreview2', '09/08/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3202, 358, '2.4.0spreview1', '06/20/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3203, 358, '2.3.1', '04/26/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3204, 358, '2.2.5', '04/26/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3205, 358, '2.1.10', '04/01/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3206, 358, '2.1.9', '03/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3207, 358, '2.3.0', '12/25/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3208, 358, '2.2.4', '12/16/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3209, 358, '2.1.8', '12/16/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3210, 358, '2.0.0sp648', '12/16/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3211, 358, '2.3.0spreview2', '12/11/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3212, 358, '2.3.0spreview1', '11/11/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3213, 358, '2.2.3', '08/18/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3214, 358, '2.1.7', '08/18/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3215, 358, '2.0.0sp647', '08/18/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3216, 358, '2.2.2', '04/13/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3217, 358, '2.1.6', '04/13/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3218, 358, '2.0.0sp645', '04/13/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3219, 358, '2.2.1', '03/03/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3220, 358, '2.0.0sp643', '02/25/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3221, 358, '2.2.0', '12/25/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3222, 358, '2.2.0src1', '12/18/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3223, 358, '2.2.0spreview2', '11/28/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3224, 358, '2.1.5', '11/13/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3225, 358, '2.0.0sp598', '11/13/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3226, 358, '1.9.3sp551', '11/13/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3227, 358, '2.1.4', '10/27/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3228, 358, '2.0.0sp594', '10/27/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3229, 358, '1.9.3sp550', '10/27/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3230, 358, '2.1.3', '09/19/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3231, 358, '2.0.0sp576', '09/19/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3232, 358, '2.2.0spreview1', '09/18/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3233, 358, '1.9.2sp330', '08/19/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3234, 358, '1.9.3sp547', '05/16/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3235, 358, '2.1.2', '05/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3236, 358, '2.0.0sp481', '05/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3237, 358, '2.1.1', '02/24/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3238, 358, '2.0.0sp451', '02/24/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3239, 358, '1.9.3sp545', '02/24/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3240, 358, '2.1.0', '12/25/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3241, 358, '2.1.0src1', '12/20/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3242, 358, '2.1.0spreview2', '11/22/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3243, 358, '2.0.0sp353', '11/22/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3244, 358, '1.9.3sp484', '11/22/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3245, 358, '2.1.0spreview1', '09/23/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3246, 358, '2.0.0sp247', '06/27/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3247, 358, '1.9.3sp448', '06/27/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3248, 358, '1.8.7sp374', '06/27/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3249, 358, '2.0.0sp195', '05/14/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3250, 358, '1.9.3sp429', '05/14/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3251, 358, '2.0.0', '02/24/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3252, 358, '1.9.3sp392', '02/22/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3253, 358, '2.0.0src2', '02/08/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3254, 358, '1.9.3sp385', '02/06/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3255, 358, '1.9.3sp374', '01/17/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3256, 358, '1.9.3sp362', '12/25/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3257, 358, '1.9.3sp327', '11/09/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3258, 358, '1.9.3sp286', '10/12/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3259, 358, '1.8.7sp370', '06/29/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3260, 358, '1.9.2sp320', '04/21/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3261, 358, '1.9.3sp194', '04/20/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3262, 358, '1.9.3sp125', '02/16/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3263, 358, '1.9.3', '10/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3264, 358, '1.9.3src1', '09/24/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3265, 358, '1.9.3spreview1', '08/01/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3266, 358, '1.9.2sp290', '07/15/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3267, 358, '1.8.7sp352', '07/02/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3268, 358, '1.9.2sp136', '12/25/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3269, 358, '1.8.7sp330', '12/25/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3270, 358, '1.9.2', '08/18/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3271, 358, '1.9.1sp430', '08/16/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3272, 358, '1.8.7sp302', '08/16/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3273, 358, '1.9.2src2', '07/11/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3274, 358, '1.9.2src1', '07/02/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3275, 358, '1.9.1sp429', '07/02/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3276, 358, '1.8.7sp299', '06/23/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3277, 358, '1.8.7sp248', '12/25/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3278, 358, '1.9.1sp376', '12/07/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3279, 358, '1.9.2spreview1', '07/20/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3280, 358, '1.9.1sp243', '07/20/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3281, 358, '1.9.1sp129', '05/12/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3282, 358, '1.8.7sp160', '04/18/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3283, 358, '1.8.6sp368', '04/18/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3284, 358, '1.9.1', '01/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3285, 358, '1.9.1spreview1', '10/28/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3286, 358, '1.8.7sp72', '08/11/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3287, 358, '1.8.6sp287', '08/11/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3288, 358, '1.8.7', '05/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3289, 358, '1.9.0', '12/25/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3290, 358, '1.8.6', '03/12/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3291, 358, '1.8.5', '08/29/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3292, 358, '1.8.4', '12/24/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3293, 358, '1.8.4spreview2', '12/14/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3294, 358, '1.8.3', '09/21/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3295, 358, '1.8.2', '12/26/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3296, 358, '1.8.2spreview4', '12/22/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3297, 358, '1.8.2spreview3', '11/08/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3298, 358, '1.8.2spreview2', '07/30/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3299, 358, '1.8.2spreview1', '07/21/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3300, 358, '1.8.0', '08/04/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3301, 358, '1.6.7', '03/01/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3302, 323, '1', '03/28/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3303, 323, '1.1', '05/13/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3304, 323, '1.2', '12/01/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3305, 323, '1.3', '06/18/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3306, 323, '1.4', '12/10/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3307, 323, '1.5', '08/19/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3308, 323, '1.6', '02/17/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3309, 323, '1.7', '08/15/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3310, 323, '1.8', '02/16/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3311, 323, '1.9', '08/24/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3312, 323, '1.10', '02/16/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3313, 323, '1.11', '08/24/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3314, 323, '1.12.1', '02/25/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3315, 323, '1.13.1', '09/03/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3316, 323, '1.14', '02/25/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3317, 323, '1.15', '08/11/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3318, 323, '1.16', '02/16/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3319, 323, '1.17', '08/16/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3320, 325, '1', '01/02/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3321, 325, '1.2', '12/07/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3322, 325, '1.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3323, 325, '2', '07/02/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3324, 325, '3', '02/07/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3325, 325, '4.0', '09/01/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3326, 333, '1.2', '12/12/1999', '05/22/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3327, 333, '1.3', '09/24/2001', '06/28/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3328, 333, '1.4', '11/11/2003', '08/29/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3329, 333, '5', '05/11/2006', '08/11/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3330, 333, '6', '12/10/2009', '12/19/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3331, 333, '7', '05/28/2013', '04/30/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3332, 333, '8', '08/31/2017', '06/23/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3333, 333, '9', '11/22/2020', '12/10/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3334, 333, '9.1', '05/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3335, 305, '98', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3336, 305, '03', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3337, 305, '11', '12/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3338, 305, '14', '12/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3339, 305, '17', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3340, 305, '20', '12/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3341, 344, 'progress 4gl', '12/31/1981', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3342, 344, '10.1', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3343, 350, '3.0.0', '08/20/2020', '08/20/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3344, 350, '4', '05/22/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3345, 350, '4.1', '12/10/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3346, 350, '4.2', '04/22/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3347, 350, '4.3', '12/27/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3348, 350, '4.4', '07/11/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3349, 350, '5', '07/13/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3350, 350, '5.1', '11/24/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3351, 350, '5.2', '11/02/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3352, 350, '5.3', '06/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3353, 350, '5.4', '03/01/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3354, 350, '5.5', '06/20/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3355, 350, '5.6', '08/28/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3356, 350, '7', '12/03/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3357, 350, '7.1', '12/01/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3358, 350, '7.2', '11/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3359, 350, '7.3', '12/06/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3360, 350, '7.4', '11/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3361, 350, '8', '11/26/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3362, 311, '3', '06/30/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3363, 311, '4', '11/30/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3364, 311, '4.5', '11/30/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3365, 311, '5', '06/30/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3366, 311, '6', '06/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3367, 311, '7', '02/07/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3368, 311, '8', '06/30/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3369, 311, '9', '10/05/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3370, 311, '10', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3371, 311, '11', '04/29/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3372, 311, '2016', '02/16/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3373, 311, '2018', '07/12/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3374, 311, '2021', '11/11/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3375, 362, '1.0.0', '12/08/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3376, 362, '1.1.0', '02/19/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3377, 362, '1.1.1', '03/23/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3378, 362, '1.2.0', '06/09/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3379, 362, '1.3.0', '09/16/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3380, 362, '1.4.0', '06/20/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3381, 362, '2', '03/12/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3382, 362, '2.1.0', '03/17/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3383, 362, '2.1.8', '08/23/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3384, 362, '2.3.0', '11/23/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3385, 362, '2.4.0', '03/09/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3386, 362, '2.5.0', '05/02/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3387, 362, '2.6.0', '07/27/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3388, 362, '2.7.0', '02/07/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3389, 362, '2.8.0', '07/14/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3390, 362, '2.9.0', '05/12/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3391, 362, '2.1', '01/04/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3392, 313, '1', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3393, 313, '2', '12/31/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3394, 313, '3', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3395, 313, '4', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3396, 313, '5', '12/31/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3397, 313, '6', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3398, 313, '7', '08/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3399, 313, '8', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3400, 313, '2005', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3401, 313, '2006', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3402, 313, 'Turbo', '09/06/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3403, 313, 'Transfer', '02/08/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3404, 313, '2007', '03/16/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3405, 313, '2009', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3406, 313, '2010', '08/25/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3407, 313, 'XE', '08/30/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3408, 313, 'XE1', '01/27/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3409, 313, 'XE2', '09/01/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3410, 313, 'XE3', '09/01/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3411, 313, 'XE4', '04/22/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3412, 313, 'XE5', '09/12/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3413, 313, 'XE6', '04/15/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3414, 313, 'XE7', '09/02/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3415, 313, 'XE8', '04/07/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3416, 313, '10', '08/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3417, 313, '10.1', '04/20/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3418, 313, '10.1.1', '09/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3419, 313, '10.1.2', '12/31/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3420, 313, '10.2', '03/22/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3421, 313, '10.2.1', '08/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3422, 313, '10.2.2', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3423, 313, '10.2.3', '03/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3424, 313, '10.3', '11/21/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3425, 313, '10.3.1', '02/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3426, 313, '10.3.2', '07/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3427, 313, '10.3.3', '11/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3428, 313, '10.4', '05/26/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3429, 313, '10.4.1', '09/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3430, 313, '10.4.2', '02/24/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3431, 313, '11', '09/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3432, 310, '60', '05/29/1959', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3433, 310, '65', '12/31/1965', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3434, 310, '74', '12/31/1974', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3435, 310, '85', '12/31/1985', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3436, 310, '2002', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3437, 310, '2014', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3438, 450, '1.01', '11/20/1985', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3439, 450, '1.02', '05/14/1986', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3440, 450, '1.03', '08/21/1986', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3441, 450, '1.04', '04/10/1987', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3442, 450, '2.01', '12/09/1987', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3443, 450, '2.03', '12/09/1987', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3444, 450, '2.1', '05/27/1988', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3445, 450, '2.11', '03/13/1989', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3446, 450, '3', '05/22/1990', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3447, 450, '3.1', '04/06/1992', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3448, 450, ' NT 3.1', '07/27/1993', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3449, 450, '3.11', '11/08/1993', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3450, 450, '3.2', '11/22/1993', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3451, 450, 'NT 3.5', '09/21/1994', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3452, 450, 'NT 3.51', '08/24/1995', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3453, 450, '95', '08/24/1996', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3454, 450, 'NT 4.0', '06/25/1998', '06/30/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3455, 450, '98', '05/05/1999', '07/11/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3456, 450, '2000', '02/17/2000', '07/13/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3457, 450, 'Me', '09/14/2000', '07/11/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3458, 450, 'XP', '10/25/2001', '04/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3459, 450, 'Vista', '01/30/2007', '04/11/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3460, 450, '7', '10/22/2009', '01/14/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3461, 450, '8', '10/26/2012', '01/12/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3462, 450, '8.1', '10/17/2013', '01/10/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3463, 450, '10', '07/29/2015', '10/14/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3464, 450, '11', '10/05/2021', '10/10/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3465, 697, '3.8.5', '03/05/2022', ''); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3466, 697, '3.8.4', '11/12/2021', '03/05/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3467, 697, '3.8.3', '09/27/2021', '11/12/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3468, 697, '3.8.1', '04/04/2021', '09/27/2021'); + +-- Table: openshift_baseos_images CREATE TABLE openshift_baseos_images ( id integer PRIMARY KEY AUTOINCREMENT, container_name text NOT NULL, @@ -10113,7 +13629,9 @@ CREATE TABLE openshift_baseos_images ( DockerImageType text, FOREIGN KEY (OS) REFERENCES entity_types (id) ); -INSERT INTO openshift_baseos_images VALUES(1,'Red Hat Enterprise Linux',434,'https://catalog.redhat.com/software/containers/rhel7/57ea8cee9c624c035f96f3af','','',''); +INSERT INTO openshift_baseos_images (id, container_name, OS, OpenShift_Correspondent_Image_URL, Notes, OpenShiftStatus, DockerImageType) VALUES (1, 'Red Hat Enterprise Linux', 434, 'https://catalog.redhat.com/software/containers/rhel7/57ea8cee9c624c035f96f3af', '', '', ''); + +-- Table: openshift_images CREATE TABLE openshift_images ( id integer PRIMARY KEY AUTOINCREMENT, container_name text NOT NULL, @@ -10136,144 +13654,137 @@ CREATE TABLE openshift_images ( FOREIGN KEY (runlib) REFERENCES entity_types (id), FOREIGN KEY (runtime) REFERENCES entity_types (id) ); -INSERT INTO openshift_images VALUES(1,'IBM Maximo Asset Management',434,NULL,NULL,70,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/ema-maximo-integration/5d79b41f3d73db51b9ba7ea7','App'); -INSERT INTO openshift_images VALUES(2,'OpenLDAP',434,NULL,NULL,126,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/netcool-openldap-16/5d1a1e94702c56364a5d4101','App'); -INSERT INTO openshift_images VALUES(3,'gcc',426,305,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/gcc-toolset-10-toolchain/5ea311fd5a13466876a077ca','Lang'); -INSERT INTO openshift_images VALUES(4,'golang_Linux',434,323,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/go-toolset/5b9c810add19c70b45cbd666','Lang(OS specific)'); -INSERT INTO openshift_images VALUES(5,'haproxy',434,NULL,NULL,NULL,264,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/openshift4/ose-haproxy-router/5cd9b367bed8bd5717d4fdaa','App Server'); -INSERT INTO openshift_images VALUES(6,'httpd',434,NULL,NULL,NULL,259,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhscl/httpd-24-rhel7/57ea8d049c624c035f96f42e','App Server'); -INSERT INTO openshift_images VALUES(7,'jenkins',434,NULL,NULL,90,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/openshift3/jenkins-2-rhel7/581d2f4500e5d05639b6517b','App'); -INSERT INTO openshift_images VALUES(8,'MarkLogic',434,NULL,NULL,97,NULL,NULL,NULL,NULL,'https://access.redhat.com/containers/#/docker.io/store/marklogicdb/marklogic-server','App'); -INSERT INTO openshift_images VALUES(9,'memcached',434,NULL,NULL,98,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhacm2/memcached-rhel8/5f523955ee8349144fa8634a','App'); -INSERT INTO openshift_images VALUES(10,'Java SE JRE_Linux',434,NULL,NULL,NULL,NULL,NULL,NULL,506,'https://catalog.redhat.com/software/containers/ubi8/openjdk-11/5dd6a4b45a13461646f677f4','Runtime(OS specific)'); -INSERT INTO openshift_images VALUES(11,'Microsoft SQL Server',434,NULL,NULL,120,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/mssql/rhel/server/5ba50865f5a0de06555a2ee7','App'); -INSERT INTO openshift_images VALUES(12,'Mongo_Linux',434,NULL,NULL,116,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rh-marketplace/mongodb-enterprise-advanced-ibm-bundle/5f84ce93ecb524508951386d','App(OS specific)'); -INSERT INTO openshift_images VALUES(13,'mysql',434,NULL,NULL,122,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/mysql-80/5ba0ad4cdd19c70b45cbf48c','App'); -INSERT INTO openshift_images VALUES(14,'nginx',434,NULL,NULL,NULL,274,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/nginx-118/5f521a46e05bbcd88f128b64','App Server'); -INSERT INTO openshift_images VALUES(15,'node',426,NULL,NULL,NULL,NULL,NULL,NULL,507,'https://catalog.redhat.com/software/containers/rhel8/nodejs-14/5ed76a59d70cc50e69c2f891','Runtime'); -INSERT INTO openshift_images VALUES(16,'php',426,350,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ubi8/php-74/5f521244e05bbcd88f128b63','Lang'); -INSERT INTO openshift_images VALUES(17,'Python_Linux',434,354,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhscl/python-27-rhel7/57ea8d049c624c035f96f430','Lang(OS specific)'); -INSERT INTO openshift_images VALUES(18,'rabbitmq',426,NULL,NULL,165,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/jfrog/xray-rabbitmq/5ec6ef9eecb5246c0903f401','App'); -INSERT INTO openshift_images VALUES(19,'redis_Linux',434,NULL,NULL,168,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/redis-5/5c401b0cbed8bd75a2c4c287','App(OS specific)'); -INSERT INTO openshift_images VALUES(20,'ruby',434,358,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/ruby-26/5d3ffc6a5a13461f5fb862e6','Lang'); -INSERT INTO openshift_images VALUES(21,'swift',434,364,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhosp-beta/openstack-swift-base/5cdcbbcbdd19c778293be49f','Lang'); -INSERT INTO openshift_images VALUES(22,'tomcat',434,331,NULL,NULL,260,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3','App Server'); -INSERT INTO openshift_images VALUES(23,'websphere-liberty',434,331,NULL,NULL,285,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/websphere-liberty/5d0298c9f5a0de52d547adf7','App Server'); -INSERT INTO openshift_images VALUES(24,'ansible',434,NULL,NULL,5,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/openshift3/ose-ansible-service-broker/5989580dbed8bd284e93201e','App'); -INSERT INTO openshift_images VALUES(25,'hive',434,NULL,NULL,8,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/openshift4/ose-metering-hive/5d96f106d70cc50ebeaadb53','App'); -INSERT INTO openshift_images VALUES(26,'kafka',429,NULL,NULL,9,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/kafka2/5e8208a8ac3db903708fe0a5','App'); -INSERT INTO openshift_images VALUES(27,'postgresql',429,NULL,NULL,157,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/postgresql-12/5db133bd5a13461646df330b','App'); -INSERT INTO openshift_images VALUES(28,'spark',429,NULL,NULL,NULL,280,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/sdu-spark/5d695066d095e36f9d387421','App Server'); -INSERT INTO openshift_images VALUES(29,'vmware-tools',436,NULL,NULL,230,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel7/open-vm-tools/58ee4f6e4b339a32b5fb7bae','App'); -INSERT INTO openshift_images VALUES(30,'fabric-ca',426,NULL,NULL,422,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/ca-base/5d09538bf5a0de52d548efd3','App'); -INSERT INTO openshift_images VALUES(31,'db2',426,NULL,NULL,43,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/ibm-db2z-ui/5d8bd4bf69aea310b5373e17','App'); -INSERT INTO openshift_images VALUES(32,'mq',426,NULL,NULL,81,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/ibm-mqadvanced-server/5bacf2bf4841f1065681eb5f','App'); -INSERT INTO openshift_images VALUES(33,'websphere-traditional',434,331,NULL,NULL,284,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/r/ibmcom/websphere-traditional/5d77b2e4702c566f4cbf438b','App Server'); -INSERT INTO openshift_images VALUES(34,'base',426,NULL,NULL,NULL,267,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3','App Server'); -INSERT INTO openshift_images VALUES(35,'wildfly',426,NULL,NULL,NULL,493,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3','App Server'); -INSERT INTO openshift_images VALUES(36,'nginx-proxy',426,NULL,NULL,NULL,274,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/anaconda/nginx-proxy/5ea3014becb5246c0903c5da','App Server'); -INSERT INTO openshift_images VALUES(37,'javascript-node.js',426,337,NULL,NULL,NULL,NULL,NULL,507,'https://catalog.redhat.com/software/containers/rhel8/nodejs-12/5d3fff06d70cc5521d0009c2','Runtime'); -INSERT INTO openshift_images VALUES(38,'objectivec-gcc',426,343,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/gcc-toolset-10-perftools/5ea31291dd19c778961bf8da','Lang'); -INSERT INTO openshift_images VALUES(39,'nginx-ingress',426,NULL,NULL,88,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/nginx/nginx-ingress-operator/5e7ce1b8ecb5246c09fe03c7','App'); -INSERT INTO openshift_images VALUES(40,'node-red-docker',426,NULL,NULL,236,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm-edge/node-red/5ecf8c35ecb5246c0903fb58','App'); -INSERT INTO openshift_images VALUES(41,'sas',426,360,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/sas-base/5e2b5c69ac3db9037062d878','Lang'); -INSERT INTO openshift_images VALUES(42,'activemq',426,NULL,NULL,6,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/tremolosecurity/activemq/5cbbc19e293738790b2fc3d2','App'); -INSERT INTO openshift_images VALUES(43,'hadoop-docker',426,NULL,NULL,57,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/openshift4/ose-metering-hadoop/5d963124bed8bd2245d85da3','App'); -INSERT INTO openshift_images VALUES(44,'nexus3',426,NULL,NULL,124,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/sonatype/nexus-repository-manager/594c281c1fbe9847af657690','App'); -INSERT INTO openshift_images VALUES(45,'splunk',426,NULL,NULL,188,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/layers/splunk/splunk/7.3-redhat/images/sha256-55050c2097d994abc0e6d1c9f7fd0f0c2fb5f4019a9b1e094ffdf33a70a/5e162fab69aea316427f7947','App'); -INSERT INTO openshift_images VALUES(46,'IBM Transformation Extender',426,NULL,NULL,83,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibmcom/ibm-itx-rs-operator/5f9c27ddac3db90370a213a4','App'); -INSERT INTO openshift_images VALUES(47,'openjdk_Linux',426,331,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ubi8/openjdk-11/5dd6a4b45a13461646f677f4','Lang(OS specific)'); -INSERT INTO openshift_images VALUES(48,'perl',426,347,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ubi8/perl-526/5c83998abed8bd28d0e74c0f','Lang'); -INSERT INTO openshift_images VALUES(49,'postgres',426,NULL,NULL,157,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhscl/postgresql-13-rhel7/60af640142119b927780b520','App'); -INSERT INTO openshift_images VALUES(50,'solr',426,NULL,NULL,11,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/cp/cpd/solr-ubi/5db082ea69aea35a1c141026','App'); -INSERT INTO openshift_images VALUES(51,'odm',426,NULL,NULL,73,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/odm-dbserver/5d80f766702c566f4cbf46e6','App'); -INSERT INTO openshift_images VALUES(52,'Apache Cassandra',434,NULL,NULL,634,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/datastax/cassandra/5ee857c969aea31642b67910','App'); -INSERT INTO openshift_images VALUES(53,'Ansible Tower',434,NULL,NULL,5,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ansible-tower-38/ansible-tower-rhel7/5fa1c5d968d8b9a71232b1f7','App'); -INSERT INTO openshift_images VALUES (54, 'asterisk', 426, 'NULL', 'NULL', 14, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/citybaseinc/asterisk', 'App'); -INSERT INTO openshift_images VALUES (55, 'drupal', 426, 'NULL', 'NULL', 45, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/swsmirror/drupal', 'App'); -INSERT INTO openshift_images VALUES (56, 'elastic', 426, 'NULL', 'NULL', 47, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/kmamgain/elastic', 'App'); -INSERT INTO openshift_images VALUES (57, 'genymotion', 426, 'NULL', 'NULL', 54, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/alaska/genymotion', 'App'); -INSERT INTO openshift_images VALUES (58, 'hadoop', 426, 'NULL', 'NULL', 57, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/iguazio/hadoop', 'App'); -INSERT INTO openshift_images VALUES (59, 'neo4j', 426, 'NULL', 'NULL', 123, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/neo4j', 'App'); -INSERT INTO openshift_images VALUES (60, 'openldap', 426, 'NULL', 'NULL', 126, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/openldap', 'App'); -INSERT INTO openshift_images VALUES (61, 'openvpn', 426, 'NULL', 'NULL', 128, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/kubermatic/openvpn', 'App'); -INSERT INTO openshift_images VALUES (62, 'pentaho', 426, 'NULL', 'NULL', 150, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/hasni/pentaho', 'App'); -INSERT INTO openshift_images VALUES (63, 'redis', 426, 'NULL', 'NULL', 168, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/sameersbn/redis', 'App'); -INSERT INTO openshift_images VALUES (64, 'remedy', 426, 'NULL', 'NULL', 169, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/amosnl/remedy', 'App'); -INSERT INTO openshift_images VALUES (65, 'riak', 426, 'NULL', 'NULL', 170, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/dotabuff/riak', 'App'); -INSERT INTO openshift_images VALUES (66, 'sentry', 426, 'NULL', 'NULL', 180, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/app-sre/sentry', 'App'); -INSERT INTO openshift_images VALUES (67, 'sonarqube', 426, 'NULL', 'NULL', 186, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/gpte-devops-automation/sonarqube', 'App'); -INSERT INTO openshift_images VALUES (68, 'whois', 426, 'NULL', 'NULL', 212, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/westonsteimel/whois', 'App'); -INSERT INTO openshift_images VALUES (69, 'tableau', 426, 'NULL', 'NULL', 213, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/growthstack/tableau', 'App'); -INSERT INTO openshift_images VALUES (70, 'wordpress', 426, 'NULL', 'NULL', 245, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/redhattraining/wordpress', 'App'); -INSERT INTO openshift_images VALUES (71, 'sqlite', 426, 'NULL', 'NULL', 258, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/fale/sqlite', 'App'); -INSERT INTO openshift_images VALUES (72, 'glassfish', 426, 'NULL', 'NULL', 'NULL', 263, 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/mohamedf0/glassfish', 'App_Server'); -INSERT INTO openshift_images VALUES (73, 'lucee', 426, 'NULL', 'NULL', 'NULL', 271, 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/daemonite/lucee', 'App_Server'); -INSERT INTO openshift_images VALUES (74, 'awk', 426, 300, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/shenglai/awk', 'Lang'); -INSERT INTO openshift_images VALUES (75, 'basic', 426, 301, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/biocontainers/basic', 'Lang'); -INSERT INTO openshift_images VALUES (76, 'expect', 426, 315, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/baseimage/expect', 'Lang'); -INSERT INTO openshift_images VALUES (77, 'focus', 426, 321, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/biocontainers/focus', 'Lang'); -INSERT INTO openshift_images VALUES (78, 'fortran', 426, 322, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/eriktrent/fortran', 'Lang'); -INSERT INTO openshift_images VALUES (79, 'graphql', 426, 324, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/wasmoffload/graphql', 'Lang'); -INSERT INTO openshift_images VALUES (80, 'groovy', 426, 325, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/official-images/groovy', 'Lang'); -INSERT INTO openshift_images VALUES (81, 'jcl', 426, 338, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/jclaret/jcl', 'Lang'); -INSERT INTO openshift_images VALUES (82, 'scala', 426, 362, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/azavea/scala', 'Lang'); -INSERT INTO openshift_images VALUES (83, 'typescript', 426, 367, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/omnijarstudio/typescript', 'Lang'); -INSERT INTO openshift_images VALUES (84, 'bootstrap', 426, 'NULL', 377, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/kubevirtci/bootstrap', 'Lib'); -INSERT INTO openshift_images VALUES (85, 'log4j', 426, 'NULL', 394, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/crozzy/log4j', 'Lib'); -INSERT INTO openshift_images VALUES (86, 'struts', 426, 'NULL', 402, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/arifulhuq/struts', 'Lib'); -INSERT INTO openshift_images VALUES (87, 'angularjs', 426, 'NULL', 406, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/amaljose/angularjs', 'Lib'); -INSERT INTO openshift_images VALUES (88, 'react', 426, 'NULL', 413, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/profects/react', 'Lib'); -INSERT INTO openshift_images VALUES (89, 'android', 418, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/bitriseio/android', 'Os'); -INSERT INTO openshift_images VALUES (90, 'dart', 421, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/biocontainers/dart', 'Os'); -INSERT INTO openshift_images VALUES (91, 'centos', 427, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/centos/centos', 'Os'); -INSERT INTO openshift_images VALUES (92, 'debian', 429, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/official-images/debian', 'Os'); -INSERT INTO openshift_images VALUES (93, 'opensuse', 431, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/wstein/opensuse', 'Os'); -INSERT INTO openshift_images VALUES (94, 'ubuntu', 436, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/tamr/ubuntu', 'Os'); -INSERT INTO openshift_images VALUES (95, 'fedora', 453, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/fedora/fedora', 'Os'); -INSERT INTO openshift_images VALUES (96, 'ado', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 488, 'NULL', 'https://quay.io/repository/scottlezberg/ado', 'Runlib'); -INSERT INTO openshift_images VALUES (97, 'flash', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 504, 'https://quay.io/repository/biocontainers/flash', 'Runtime'); -INSERT INTO openshift_images VALUES (98, 'database', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/deisci/database', 'Technology'); -INSERT INTO openshift_images VALUES (99, 'webtop', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/linuxserver.io/webtop', 'Technology'); -INSERT INTO openshift_images VALUES (100, 'utility', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/theiagen/utility', 'Technology'); -INSERT INTO openshift_images VALUES (101, 'windows', 580, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/mhallin/windows', 'Os'); -INSERT INTO openshift_images VALUES (102, 'java', 426, 584, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/tamr/java', 'Lang'); -INSERT INTO openshift_images VALUES (103, 'python', 426, 587, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/python', 'Lang'); -INSERT INTO openshift_images VALUES (104, 'instana', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 611, 'https://quay.io/repository/yaoyao/instana', 'Runtime'); -INSERT INTO openshift_images VALUES (105, 'credstash', 426, 'NULL', 'NULL', 612, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/safesoftware/credstash', 'App'); -INSERT INTO openshift_images VALUES (106, 'snyk', 426, 'NULL', 'NULL', 613, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/exd_infra_plts_cip/snyk', 'App'); -INSERT INTO openshift_images VALUES (107, 'akka', 426, 'NULL', 'NULL', 614, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/j0zi/akka', 'App'); -INSERT INTO openshift_images VALUES (108, 'varnish', 426, 'NULL', 'NULL', 'NULL', 615, 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/api-platform/varnish', 'App_Server'); -INSERT INTO openshift_images VALUES (109, 'datadog', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 616, 'https://quay.io/repository/blondie/datadog', 'Runtime'); -INSERT INTO openshift_images VALUES (110, 'api', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/infrabox/api', 'Technology'); -INSERT INTO openshift_images VALUES (111, 'hazelcast', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 618, 'https://quay.io/repository/hazelcast_cloud/hazelcast', 'Runtime'); -INSERT INTO openshift_images VALUES (112, 'infinispan', 426, 'NULL', 'NULL', 619, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/operatorhubio/infinispan', 'App'); -INSERT INTO openshift_images VALUES (113, 'nuxeo', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 620, 'https://quay.io/repository/swsmirror/nuxeo', 'Runtime'); -INSERT INTO openshift_images VALUES (114, 'arangodb', 426, 'NULL', 'NULL', 621, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/swsmirror/arangodb', 'App'); -INSERT INTO openshift_images VALUES (115, 'clickhouse', 426, 'NULL', 'NULL', 624, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/operatorhubio/clickhouse', 'App'); -INSERT INTO openshift_images VALUES (116, 'minio', 426, 'NULL', 'NULL', 625, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/minio/minio', 'App'); -INSERT INTO openshift_images VALUES (117, 'elasticsearch', 426, 'NULL', 'NULL', 626, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/fluentd_elasticsearch/elasticsearch', 'App'); -INSERT INTO openshift_images VALUES (118, 'keycloak', 426, 'NULL', 'NULL', 628, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/keycloak/keycloak', 'App'); -INSERT INTO openshift_images VALUES (119, 'grafana', 426, 'NULL', 'NULL', 629, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/tamr/grafana', 'App'); -INSERT INTO openshift_images VALUES (120, 'mattermost', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 630, 'https://quay.io/repository/jostone/mattermost', 'Runtime'); -INSERT INTO openshift_images VALUES (121, 'synapse', 426, 'NULL', 'NULL', 631, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/dockernohub/synapse', 'App'); -INSERT INTO openshift_images VALUES (122, 'kubeflow', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 635, 'https://quay.io/repository/operatorhubio/kubeflow', 'Runtime'); -INSERT INTO openshift_images VALUES (123, 'sematext', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 639, 'https://quay.io/repository/operatorhubio/sematext', 'Runtime'); -INSERT INTO openshift_images VALUES (124, 'mariadb', 426, 'NULL', 'NULL', 642, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/metal3-io/mariadb', 'App'); -INSERT INTO openshift_images VALUES (125, 'istio', 426, 'NULL', 'NULL', 644, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/aspenmesh/istio', 'App'); -INSERT INTO openshift_images VALUES (126, 'vault', 426, 'NULL', 'NULL', 645, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/cybozu/vault', 'App'); -INSERT INTO openshift_images VALUES (127, 'etcd', 426, 'NULL', 'NULL', 647, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/coreos/etcd', 'App'); -INSERT INTO openshift_images VALUES (128, 'traefik', 426, 'NULL', 'NULL', 'NULL', 648, 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/widen/traefik', 'App_Server'); -INSERT INTO openshift_images VALUES (129, 'yugabytedb', 426, 'NULL', 'NULL', 650, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/marco_antonioni/yugabytedb', 'App'); -INSERT INTO openshift_images VALUES (130, 'cockroachdb', 426, 'NULL', 'NULL', 651, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/helmoperators/cockroachdb', 'App'); -INSERT INTO openshift_images VALUES (131, 'jaeger', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 652, 'https://quay.io/repository/operatorhubio/jaeger', 'Runtime'); -INSERT INTO openshift_images VALUES (132, 'powershell', 426, 660, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/powerdock/powershell', 'Lang'); -INSERT INTO openshift_images VALUES (133, 'dds', 426, 663, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/havoc/dds', 'Lang'); -INSERT INTO openshift_images VALUES (134, 'git', 426, 'NULL', 'NULL', 677, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/sisense/git', 'App'); -INSERT INTO openshift_images VALUES (135, 'gitlab', 426, 'NULL', 'NULL', 678, 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/sameersbn/gitlab', 'App'); -INSERT INTO openshift_images VALUES (136, 'freebsd', 447, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/uchida/freebsd', 'Os'); -INSERT INTO openshift_images VALUES (137, 'openedge', 426, 673, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'https://quay.io/repository/g_querret/openedge', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (1, 'IBM Maximo Asset Management', 434, NULL, NULL, 70, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/ema-maximo-integration/5d79b41f3d73db51b9ba7ea7', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (2, 'OpenLDAP', 434, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/netcool-openldap-16/5d1a1e94702c56364a5d4101', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (3, 'gcc', 426, 305, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/gcc-toolset-10-toolchain/5ea311fd5a13466876a077ca', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (4, 'golang_Linux', 434, 323, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/go-toolset/5b9c810add19c70b45cbd666', 'Lang(OS specific)'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (5, 'haproxy', 434, NULL, NULL, NULL, 264, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/openshift4/ose-haproxy-router/5cd9b367bed8bd5717d4fdaa', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (6, 'httpd', 434, NULL, NULL, NULL, 259, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhscl/httpd-24-rhel7/57ea8d049c624c035f96f42e', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (7, 'jenkins', 434, NULL, NULL, 90, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/openshift3/jenkins-2-rhel7/581d2f4500e5d05639b6517b', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (8, 'MarkLogic', 434, NULL, NULL, 97, NULL, NULL, NULL, NULL, 'https://access.redhat.com/containers/#/docker.io/store/marklogicdb/marklogic-server', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (9, 'memcached', 434, NULL, NULL, 98, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhacm2/memcached-rhel8/5f523955ee8349144fa8634a', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (10, 'Java SE JRE_Linux', 434, NULL, NULL, NULL, NULL, NULL, NULL, 506, 'https://catalog.redhat.com/software/containers/ubi8/openjdk-11/5dd6a4b45a13461646f677f4', 'Runtime(OS specific)'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (11, 'Microsoft SQL Server', 434, NULL, NULL, 120, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/mssql/rhel/server/5ba50865f5a0de06555a2ee7', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (12, 'Mongo_Linux', 434, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rh-marketplace/mongodb-enterprise-advanced-ibm-bundle/5f84ce93ecb524508951386d', 'App(OS specific)'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (13, 'mysql', 434, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/mysql-80/5ba0ad4cdd19c70b45cbf48c', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (14, 'nginx', 434, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/nginx-118/5f521a46e05bbcd88f128b64', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (15, 'node', 426, NULL, NULL, NULL, NULL, NULL, NULL, 507, 'https://catalog.redhat.com/software/containers/rhel8/nodejs-14/5ed76a59d70cc50e69c2f891', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (16, 'php', 426, 350, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ubi8/php-74/5f521244e05bbcd88f128b63', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (17, 'Python_Linux', 434, 354, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhscl/python-27-rhel7/57ea8d049c624c035f96f430', 'Lang(OS specific)'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (18, 'rabbitmq', 426, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/jfrog/xray-rabbitmq/5ec6ef9eecb5246c0903f401', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (19, 'redis_Linux', 434, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/redis-5/5c401b0cbed8bd75a2c4c287', 'App(OS specific)'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (20, 'ruby', 434, 358, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/ruby-26/5d3ffc6a5a13461f5fb862e6', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (21, 'swift', 434, 364, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhosp-beta/openstack-swift-base/5cdcbbcbdd19c778293be49f', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (22, 'tomcat', 434, 331, NULL, NULL, 260, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (23, 'websphere-liberty', 434, 331, NULL, NULL, 285, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/websphere-liberty/5d0298c9f5a0de52d547adf7', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (24, 'ansible', 434, NULL, NULL, 5, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/openshift3/ose-ansible-service-broker/5989580dbed8bd284e93201e', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (25, 'hive', 434, NULL, NULL, 8, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/openshift4/ose-metering-hive/5d96f106d70cc50ebeaadb53', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (26, 'kafka', 429, NULL, NULL, 9, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/kafka2/5e8208a8ac3db903708fe0a5', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (27, 'postgresql', 429, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/postgresql-12/5db133bd5a13461646df330b', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (28, 'spark', 429, NULL, NULL, NULL, 280, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/sdu-spark/5d695066d095e36f9d387421', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (29, 'vmware-tools', 436, NULL, NULL, 230, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel7/open-vm-tools/58ee4f6e4b339a32b5fb7bae', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (30, 'fabric-ca', 426, NULL, NULL, 422, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/ca-base/5d09538bf5a0de52d548efd3', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (31, 'db2', 426, NULL, NULL, 43, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/ibm-db2z-ui/5d8bd4bf69aea310b5373e17', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (32, 'mq', 426, NULL, NULL, 81, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/ibm-mqadvanced-server/5bacf2bf4841f1065681eb5f', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (33, 'websphere-traditional', 434, 331, NULL, NULL, 284, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/r/ibmcom/websphere-traditional/5d77b2e4702c566f4cbf438b', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (34, 'base', 426, NULL, NULL, NULL, 267, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (35, 'wildfly', 426, NULL, NULL, NULL, 493, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (36, 'nginx-proxy', 426, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/anaconda/nginx-proxy/5ea3014becb5246c0903c5da', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (37, 'javascript-node.js', 426, 337, NULL, NULL, NULL, NULL, NULL, 507, 'https://catalog.redhat.com/software/containers/rhel8/nodejs-12/5d3fff06d70cc5521d0009c2', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (38, 'objectivec-gcc', 426, 343, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/gcc-toolset-10-perftools/5ea31291dd19c778961bf8da', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (39, 'nginx-ingress', 426, NULL, NULL, 88, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/nginx/nginx-ingress-operator/5e7ce1b8ecb5246c09fe03c7', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (40, 'node-red-docker', 426, NULL, NULL, 236, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm-edge/node-red/5ecf8c35ecb5246c0903fb58', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (41, 'sas', 426, 360, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/sas-base/5e2b5c69ac3db9037062d878', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (42, 'activemq', 426, NULL, NULL, 6, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/tremolosecurity/activemq/5cbbc19e293738790b2fc3d2', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (43, 'hadoop-docker', 426, NULL, NULL, 57, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/openshift4/ose-metering-hadoop/5d963124bed8bd2245d85da3', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (44, 'nexus3', 426, NULL, NULL, 124, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/sonatype/nexus-repository-manager/594c281c1fbe9847af657690', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (45, 'splunk', 426, NULL, NULL, 188, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/layers/splunk/splunk/7.3-redhat/images/sha256-55050c2097d994abc0e6d1c9f7fd0f0c2fb5f4019a9b1e094ffdf33a70a/5e162fab69aea316427f7947', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (46, 'IBM Transformation Extender', 426, NULL, NULL, 83, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibmcom/ibm-itx-rs-operator/5f9c27ddac3db90370a213a4', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (47, 'openjdk_Linux', 426, 331, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ubi8/openjdk-11/5dd6a4b45a13461646f677f4', 'Lang(OS specific)'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (48, 'perl', 426, 347, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ubi8/perl-526/5c83998abed8bd28d0e74c0f', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (49, 'postgres', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhscl/postgresql-13-rhel7/60af640142119b927780b520', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (50, 'solr', 426, NULL, NULL, 11, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/cp/cpd/solr-ubi/5db082ea69aea35a1c141026', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (51, 'odm', 426, NULL, NULL, 73, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/odm-dbserver/5d80f766702c566f4cbf46e6', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (52, 'asterisk', 426, NULL, NULL, 14, NULL, NULL, NULL, NULL, 'https://quay.io/repository/citybaseinc/asterisk', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (53, 'drupal', 426, NULL, NULL, 45, NULL, NULL, NULL, NULL, 'https://quay.io/repository/swsmirror/drupal', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (54, 'elastic', 426, NULL, NULL, 47, NULL, NULL, NULL, NULL, 'https://quay.io/repository/kmamgain/elastic', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (55, 'genymotion', 426, NULL, NULL, 54, NULL, NULL, NULL, NULL, 'https://quay.io/repository/alaska/genymotion', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (56, 'hadoop', 426, NULL, NULL, 57, NULL, NULL, NULL, NULL, 'https://quay.io/repository/iguazio/hadoop', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (57, 'neo4j', 426, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/neo4j', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (58, 'openldap', 426, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/openldap', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (59, 'openvpn', 426, NULL, NULL, 128, NULL, NULL, NULL, NULL, 'https://quay.io/repository/kubermatic/openvpn', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (60, 'pentaho', 426, NULL, NULL, 150, NULL, NULL, NULL, NULL, 'https://quay.io/repository/hasni/pentaho', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (61, 'redis', 426, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sameersbn/redis', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (62, 'remedy', 426, NULL, NULL, 169, NULL, NULL, NULL, NULL, 'https://quay.io/repository/amosnl/remedy', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (63, 'riak', 426, NULL, NULL, 170, NULL, NULL, NULL, NULL, 'https://quay.io/repository/dotabuff/riak', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (64, 'sentry', 426, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://quay.io/repository/app-sre/sentry', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (65, 'sonarqube', 426, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/gpte-devops-automation/sonarqube', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (66, 'whois', 426, NULL, NULL, 212, NULL, NULL, NULL, NULL, 'https://quay.io/repository/westonsteimel/whois', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (67, 'tableau', 426, NULL, NULL, 213, NULL, NULL, NULL, NULL, 'https://quay.io/repository/growthstack/tableau', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (68, 'wordpress', 426, NULL, NULL, 245, NULL, NULL, NULL, NULL, 'https://quay.io/repository/redhattraining/wordpress', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (69, 'sqlite', 426, NULL, NULL, 258, NULL, NULL, NULL, NULL, 'https://quay.io/repository/fale/sqlite', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (70, 'glassfish', 426, NULL, NULL, NULL, 263, NULL, NULL, NULL, 'https://quay.io/repository/mohamedf0/glassfish', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (71, 'lucee', 426, NULL, NULL, NULL, 271, NULL, NULL, NULL, 'https://quay.io/repository/daemonite/lucee', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (72, 'awk', 426, 300, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/shenglai/awk', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (73, 'basic', 426, 301, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/biocontainers/basic', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (74, 'expect', 426, 315, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/baseimage/expect', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (75, 'focus', 426, 321, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/biocontainers/focus', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (76, 'fortran', 426, 322, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/eriktrent/fortran', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (77, 'graphql', 426, 324, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/wasmoffload/graphql', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (78, 'groovy', 426, 325, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/official-images/groovy', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (79, 'java', 426, 331, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/tamr/java', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (80, 'jcl', 426, 338, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/jclaret/jcl', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (81, 'python', 426, 354, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/python', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (82, 'scala', 426, 362, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/azavea/scala', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (83, 'typescript', 426, 367, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/ellerbrock/typescript', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (84, 'android', 418, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/bitriseio/android', 'Os'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (85, 'dart', 421, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/biocontainers/dart', 'Os'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (86, 'debian', 429, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/official-images/debian', 'Os'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (87, 'opensuse', 431, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/wstein/opensuse', 'Os'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (88, 'ubuntu', 436, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/tamr/ubuntu', 'Os'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (89, 'freebsd', 447, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/uchida/freebsd', 'Os'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (90, 'windows', 450, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/mhallin/windows', 'Os'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (91, 'fedora', 453, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/fedora/fedora', 'Os'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (92, 'ado', 426, NULL, NULL, NULL, NULL, NULL, 488, NULL, 'https://quay.io/repository/scottlezberg/ado', 'Runlib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (93, 'flash', 426, NULL, NULL, NULL, NULL, NULL, NULL, 504, 'https://quay.io/repository/biocontainers/flash', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (94, 'database', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/deisci/database', 'Technology'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (95, 'webtop', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/linuxserver.io/webtop', 'Technology'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (96, 'utility', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/theiagen/utility', 'Technology'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (97, 'instana', 426, NULL, NULL, NULL, NULL, NULL, NULL, 611, 'https://quay.io/repository/yaoyao/instana', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (98, 'credstash', 426, NULL, NULL, 612, NULL, NULL, NULL, NULL, 'https://quay.io/repository/safesoftware/credstash', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (99, 'snyk', 426, NULL, NULL, 613, NULL, NULL, NULL, NULL, 'https://quay.io/repository/exd_infra_plts_cip/snyk', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (100, 'akka', 426, NULL, NULL, 614, NULL, NULL, NULL, NULL, 'https://quay.io/repository/j0zi/akka', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (101, 'varnish', 426, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'https://quay.io/repository/api-platform/varnish', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (102, 'datadog', 426, NULL, NULL, NULL, NULL, NULL, NULL, 616, 'https://quay.io/repository/blondie/datadog', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (103, 'api', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/infrabox/api', 'Technology'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (104, 'hazelcast', 426, NULL, NULL, NULL, NULL, NULL, NULL, 618, 'https://quay.io/repository/hazelcast_cloud/hazelcast', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (105, 'infinispan', 426, NULL, NULL, 619, NULL, NULL, NULL, NULL, 'https://quay.io/repository/operatorhubio/infinispan', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (106, 'nuxeo', 426, NULL, NULL, NULL, NULL, NULL, NULL, 620, 'https://quay.io/repository/swsmirror/nuxeo', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (107, 'arangodb', 426, NULL, NULL, 621, NULL, NULL, NULL, NULL, 'https://quay.io/repository/swsmirror/arangodb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (108, 'clickhouse', 426, NULL, NULL, 624, NULL, NULL, NULL, NULL, 'https://quay.io/repository/operatorhubio/clickhouse', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (109, 'minio', 426, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://quay.io/repository/minio/minio', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (110, 'elasticsearch', 426, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'https://quay.io/repository/fluentd_elasticsearch/elasticsearch', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (111, 'keycloak', 426, NULL, NULL, 628, NULL, NULL, NULL, NULL, 'https://quay.io/repository/keycloak/keycloak', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (112, 'grafana', 426, NULL, NULL, 629, NULL, NULL, NULL, NULL, 'https://quay.io/repository/tamr/grafana', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (113, 'mattermost', 426, NULL, NULL, NULL, NULL, NULL, NULL, 630, 'https://quay.io/repository/jostone/mattermost', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (114, 'synapse', 426, NULL, NULL, 631, NULL, NULL, NULL, NULL, 'https://quay.io/repository/dockernohub/synapse', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (115, 'kubeflow', 426, NULL, NULL, NULL, NULL, NULL, NULL, 635, 'https://quay.io/repository/operatorhubio/kubeflow', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (116, 'sematext', 426, NULL, NULL, NULL, NULL, NULL, NULL, 639, 'https://quay.io/repository/operatorhubio/sematext', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (117, 'mariadb', 426, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'https://quay.io/repository/startx/mariadb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (118, 'istio', 426, NULL, NULL, 644, NULL, NULL, NULL, NULL, 'https://quay.io/repository/aspenmesh/istio', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (119, 'vault', 426, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'https://quay.io/repository/cybozu/vault', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (120, 'etcd', 426, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'https://quay.io/repository/coreos/etcd', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (121, 'traefik', 426, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://quay.io/repository/widen/traefik', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (122, 'yugabytedb', 426, NULL, NULL, 650, NULL, NULL, NULL, NULL, 'https://quay.io/repository/marco_antonioni/yugabytedb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (123, 'cockroachdb', 426, NULL, NULL, 651, NULL, NULL, NULL, NULL, 'https://quay.io/repository/helmoperators/cockroachdb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (124, 'jaeger', 426, NULL, NULL, NULL, NULL, NULL, NULL, 652, 'https://quay.io/repository/operatorhubio/jaeger', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (125, 'powershell', 426, 660, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/powerdock/powershell', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (126, 'dds', 426, 663, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/havoc/dds', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (127, 'openedge', 426, 673, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/g_querret/openedge', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (128, 'git', 426, NULL, NULL, 677, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sisense/git', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (129, 'gitlab', 426, NULL, NULL, 678, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sameersbn/gitlab', 'App'); +-- Table: operator_images CREATE TABLE operator_images ( id integer PRIMARY KEY AUTOINCREMENT, container_name text NOT NULL, @@ -10297,3716 +13808,193 @@ CREATE TABLE operator_images ( FOREIGN KEY (runlib) REFERENCES entities (id), FOREIGN KEY (runtime) REFERENCES entities (id) ); -INSERT INTO operator_images VALUES(1,'Apache Spark Operator',426,331,NULL,280,NULL,NULL,NULL,NULL,'quay.io/radanalyticsio/spark-operator:1.0.2','https://github.com/radanalyticsio/spark-operator','[[Spark Operator, gcr.io/spark-operator/spark-operator:v2.4.0-v1beta1-latest, https://github.com/GoogleCloudPlatform/spark-on-k8s-operator]]'); -INSERT INTO operator_images VALUES(2,'Banzai Cloud Kafka Operator',426,323,NULL,9,NULL,NULL,NULL,NULL,'banzaicloud/kafka-operator:0.3.1','https://github.com/banzaicloud/kafka-operator/tree/master',''); -INSERT INTO operator_images VALUES(3,'Camel K Operator',426,323,NULL,378,NULL,NULL,NULL,NULL,'docker.io/apache/camel-k:1.3.0','https://github.com/apache/camel-k',''); -INSERT INTO operator_images VALUES(4,'GrdsCloud MySQL for Kubernetes',426,NULL,NULL,122,NULL,NULL,NULL,NULL,'grds/mysql-operator:1.0.0','https://github.com/GrdsCloud',''); -INSERT INTO operator_images VALUES(5,'Hive for Red Hat OpenShift',426,323,NULL,8,NULL,NULL,NULL,NULL,'quay.io/openshift-hive/hive:v1.0.17','https://github.com/openshift/hive',''); -INSERT INTO operator_images VALUES(6,'IBM Spectrum Scale CSI Plugin Operator',426,323,NULL,74,NULL,NULL,NULL,NULL,'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0','https://github.com/IBM/ibm-spectrum-scale-csi/',''); -INSERT INTO operator_images VALUES(7,'Jenkins Operator',426,323,NULL,90,NULL,NULL,NULL,NULL,'virtuslab/jenkins-operator:v0.3.0','https://github.com/jenkinsci/kubernetes-operator',''); -INSERT INTO operator_images VALUES(8,'Postgresql Operator',426,NULL,NULL,157,NULL,NULL,NULL,NULL,'quay.io/deekshah86/postgresql-operator','https://github.com/janepelladinesh/postgresql-operator','[[Crunchy PostgreSQL for Kubernetes, registry.developers.crunchydata.com/crunchydata/postgres-operator:centos8-4.7.0, https://github.com/CrunchyData/postgres-operator], [Postgres-Operator, registry.opensource.zalan.do/acid/postgres-operator:v1.3.0, https://github.com/zalando/postgres-operator], [PostgreSQL Operator by Dev4Ddevs.com, quay.io/dev4devs-com/postgresql-operator:0.1.1, https://github.com/dev4devs-com/postgresql-operator]]'); -INSERT INTO operator_images VALUES(9,'Redis Operator',426,323,NULL,168,NULL,NULL,NULL,NULL,'quay.io/opstree/redis-operator:v0.3.0','https://github.com/ot-container-kit/redis-operator',''); -INSERT INTO operator_images VALUES(10,'WildFly',426,323,NULL,493,NULL,NULL,NULL,NULL,'quay.io/wildfly/wildfly-operator:0.3.0','https://github.com/wildfly/wildfly-operator',''); -INSERT INTO operator_images VALUES(11,'MongoDB Enterprise Operator',426,NULL,NULL,116,NULL,NULL,NULL,NULL,'quay.io/mongodb/mongodb-enterprise-operator:1.12.0','https://github.com/mongodb/mongodb-enterprise-kubernetes','[[Percona Distribution for MongoDB Operator, percona/percona-server-mongodb-operator:1.9.0, https://github.com/percona/percona-server-mongodb-operator ]]'); -INSERT INTO operator_images VALUES(12,'Apache Spark Operator',426,NULL,NULL,280,NULL,NULL,NULL,NULL,'quay.io/radanalyticsio/spark-operator:1.0.2','https://github.com/radanalyticsio/spark-operator','[[Spark Operator, gcr.io/spark-operator/spark-operator:v2.4.0-v1beta1-latest, https://github.com/GoogleCloudPlatform/spark-on-k8s-operator]]'); -INSERT INTO operator_images VALUES(13,'Banzai Cloud Kafka Operator',426,NULL,NULL,9,NULL,NULL,NULL,NULL,'banzaicloud/kafka-operator:0.3.1','https://github.com/banzaicloud/kafka-operator/tree/master',''); -INSERT INTO operator_images VALUES(14,'Camel K Operator',426,NULL,NULL,378,NULL,NULL,NULL,NULL,'docker.io/apache/camel-k:1.3.0','https://github.com/apache/camel-k',''); -INSERT INTO operator_images VALUES(15,'GrdsCloud MySQL for Kubernetes',426,NULL,NULL,122,NULL,NULL,NULL,NULL,'grds/mysql-operator:1.0.0','https://github.com/GrdsCloud',''); -INSERT INTO operator_images VALUES(16,'Hive for Red Hat OpenShift',426,NULL,NULL,8,NULL,NULL,NULL,NULL,'quay.io/openshift-hive/hive:v1.0.17','https://github.com/openshift/hive',''); -INSERT INTO operator_images VALUES(17,'IBM Spectrum Scale CSI Plugin Operator',426,NULL,NULL,74,NULL,NULL,NULL,NULL,'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0','https://github.com/IBM/ibm-spectrum-scale-csi/',''); -INSERT INTO operator_images VALUES(18,'Jenkins Operator',426,NULL,NULL,90,NULL,NULL,NULL,NULL,'virtuslab/jenkins-operator:v0.3.0','https://github.com/jenkinsci/kubernetes-operator',''); -INSERT INTO operator_images VALUES(19,'Postgresql Operator',426,NULL,NULL,157,NULL,NULL,NULL,NULL,'quay.io/deekshah86/postgresql-operator','https://github.com/janepelladinesh/postgresql-operator','[[Crunchy PostgreSQL for Kubernetes, registry.developers.crunchydata.com/crunchydata/postgres-operator:centos8-4.7.0, https://github.com/CrunchyData/postgres-operator], [Postgres-Operator, registry.opensource.zalan.do/acid/postgres-operator:v1.3.0, https://github.com/zalando/postgres-operator], [PostgreSQL Operator by Dev4Ddevs.com, quay.io/dev4devs-com/postgresql-operator:0.1.1, https://github.com/dev4devs-com/postgresql-operator]]'); -INSERT INTO operator_images VALUES(20,'Redis Operator',426,NULL,NULL,168,NULL,NULL,NULL,NULL,'quay.io/opstree/redis-operator:v0.3.0','https://github.com/ot-container-kit/redis-operator',''); -INSERT INTO operator_images VALUES(21,'WildFly',426,NULL,NULL,493,NULL,NULL,NULL,NULL,'quay.io/wildfly/wildfly-operator:0.3.0','https://github.com/wildfly/wildfly-operator',''); -INSERT INTO operator_images VALUES(22,'MongoDB Enterprise Operator',426,NULL,NULL,116,NULL,NULL,NULL,NULL,'quay.io/mongodb/mongodb-enterprise-operator:1.12.0','https://github.com/mongodb/mongodb-enterprise-kubernetes','[[Percona Distribution for MongoDB Operator, percona/percona-server-mongodb-operator:1.9.0, https://github.com/percona/percona-server-mongodb-operator ]]'); -INSERT INTO operator_images VALUES(23,'Instana Agent Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,611,'instana/instana-agent-operator:0.3.7','https://github.com/instana/instana-agent-operator',''); -INSERT INTO operator_images VALUES(24,'credstash-operator',426,NULL,NULL,612,NULL,NULL,NULL,NULL,'quay.io/ouzi/credstash-operator:v1.13.0','https://github.com/ouzi-dev/credstash-operator',''); -INSERT INTO operator_images VALUES(25,'Snyk Operator',426,NULL,NULL,613,NULL,NULL,NULL,NULL,'docker.io/snyk/kubernetes-operator:1.59.3','https://github.com/snyk/kubernetes-monitor',''); -INSERT INTO operator_images VALUES(26,'Akka Cluster Operator',426,NULL,NULL,614,NULL,NULL,NULL,NULL,'lightbend-docker-registry.bintray.io/lightbend/akkacluster-operator:v1.0.0','https://github.com/lightbend/akka-cluster-operator',''); -INSERT INTO operator_images VALUES(27,'Varnish Operator',426,NULL,NULL,NULL,615,NULL,NULL,NULL,'ibmcom/varnish-operator:0.27.2','https://github.com/IBM/varnish-operator',''); -INSERT INTO operator_images VALUES(28,'Datadog Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,616,'datadog/operator:0.3.0','https://github.com/DataDog/datadog-operator',''); -INSERT INTO operator_images VALUES(29,'Hazelcast Enterprise Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,618,'hazelcast/hazelcast-enterprise-operator:0.3.7','https://github.com/hazelcast/hazelcast-operator',''); -INSERT INTO operator_images VALUES(30,'infinispan',426,NULL,NULL,619,NULL,NULL,NULL,NULL,'docker.io/jboss/infinispan-operator:0.3.0','https://github.com/infinispan/infinispan-operator',''); -INSERT INTO operator_images VALUES(31,'Nuxeo Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,620,'docker.io/appzygy/nuxeo-operator:0.7.1','https://github.com/aceeric/nuxeo-operator',''); -INSERT INTO operator_images VALUES(32,'ArangoDB',426,NULL,NULL,621,NULL,NULL,NULL,NULL,'arangodb/kube-arangodb:1.0.2','https://github.com/arangodb/kube-arangodb',''); -INSERT INTO operator_images VALUES(33,'Eclipse Che',426,NULL,NULL,622,NULL,NULL,NULL,NULL,'quay.io/eclipse/che-operator@sha256:ea3641202e11ad00bd639b59809b6f4a6508f2c143d260b1683a9f36d74ed54f','https://github.com/eclipse-che/che-operator',''); -INSERT INTO operator_images VALUES(34,'AWS S3 Operator',426,NULL,NULL,623,NULL,NULL,NULL,NULL,'quay.io/screeley44/aws-s3-provisioner:v1.0.0','https://github.com/yard-turkey/aws-s3-provisioner',''); -INSERT INTO operator_images VALUES(35,'Altinity ClickHouse Operator',426,NULL,NULL,624,NULL,NULL,NULL,NULL,'altinity/clickhouse-operator:0.9.9','https://github.com/altinity/clickhouse-operator',''); -INSERT INTO operator_images VALUES(36,'MinIO Operator',426,NULL,NULL,625,NULL,NULL,NULL,NULL,'minio/k8s-operator:1.0.3','https://github.com/minio/minio-operator',''); -INSERT INTO operator_images VALUES(37,'Elastic Cloud on Kubernetes',426,NULL,NULL,626,NULL,NULL,NULL,NULL,'docker.elastic.co/eck/eck-operator:1.0.0-beta1','https://github.com/elastic/cloud-on-k8s',''); -INSERT INTO operator_images VALUES(38,'Percona XtraDB Cluster Operator',426,NULL,NULL,627,NULL,NULL,NULL,NULL,'percona/percona-xtradb-cluster-operator:1.7.0','https://github.com/percona/percona-xtradb-cluster-operator',''); -INSERT INTO operator_images VALUES(39,'Keycloak Operator',426,NULL,NULL,628,NULL,NULL,NULL,NULL,'quay.io/keycloak/keycloak-operator:9.0.2','https://github.com/keycloak/keycloak-operator',''); -INSERT INTO operator_images VALUES(40,'Grafana Operator',426,NULL,NULL,629,NULL,NULL,NULL,NULL,'quay.io/integreatly/grafana-operator:v3.10.1','https://github.com/integr8ly/grafana-operator',''); -INSERT INTO operator_images VALUES(41,'Mattermost Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,630,'docker.io/mattermost/mattermost-operator:v0.5.0','https://github.com/mattermost/mattermost-operator',''); -INSERT INTO operator_images VALUES(42,'synapse-helm',426,NULL,NULL,631,NULL,NULL,NULL,NULL,'quay.io/mgoerens/synapse-helm:v0.0.11','https://github.com/opdev/synapse-helm',''); -INSERT INTO operator_images VALUES(43,'IBM Cloud IAM Operator',426,NULL,NULL,632,NULL,NULL,NULL,NULL,'cloudoperators/ibmcloud-iam-operator:0.1.0','https://github.com/IBM/ibmcloud-iam-operator',''); -INSERT INTO operator_images VALUES(44,'Knative Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,633,'gcr.io/knative-releases/knative.dev/operator/cmd/operator:v0.20.0','https://github.com/knative/operator',''); -INSERT INTO operator_images VALUES(45,'Cassandra',426,NULL,NULL,634,NULL,NULL,NULL,NULL,'gcr.io/cassandra-operator/cassandra-operator:v2.0.0','https://github.com/instaclustr/cassandra-operator',''); -INSERT INTO operator_images VALUES(46,'Kubeflow',426,NULL,NULL,NULL,NULL,NULL,NULL,635,'aipipeline/kubeflow-operator:v1.0.0','https://github.com/kubeflow/kfctl',''); -INSERT INTO operator_images VALUES(47,'Openshift Qiskit Operator',426,NULL,NULL,636,NULL,NULL,NULL,NULL,'https://hub.docker.com/repository/docker/singhp11/openshift-qiskit-operator','https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/openshift-qiskit-operator',''); -INSERT INTO operator_images VALUES(48,'Azure Service Operator',426,NULL,NULL,637,NULL,NULL,NULL,NULL,'mcr.microsoft.com/k8s/azureserviceoperator:1.0.27207','https://github.com/Azure/azure-service-operator',''); -INSERT INTO operator_images VALUES(49,'Strimzi',426,NULL,NULL,NULL,NULL,NULL,NULL,638,'docker.io/strimzi/operator@sha256:62218aee7553b31db1f65bc30b3c6b6595c2fd631b2e1792e24e554a47080aa6','https://github.com/strimzi/strimzi-kafka-operator',''); -INSERT INTO operator_images VALUES(50,'Sematext Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,639,'docker.io/sematext/sematext-operator:1.0.33','https://github.com/sematext/sematext-operator',''); -INSERT INTO operator_images VALUES(51,'Eclipse Hawkbit',426,NULL,NULL,640,NULL,NULL,NULL,NULL,'docker.io/ctron/hawkbit-operator:0.1.4','https://github.com/ctron/hawkbit-operator',''); -INSERT INTO operator_images VALUES(52,'Eclipse Ditto',426,NULL,NULL,641,NULL,NULL,NULL,NULL,'docker.io/ctron/ditto-operator:0.1.0','https://github.com/ctron/ditto-operator',''); -INSERT INTO operator_images VALUES(53,'Mariadb Operator',426,NULL,NULL,642,NULL,NULL,NULL,NULL,'quay.io/manojdhanorkar/mariadb-operator:v0.0.1','https://github.com/abalki001/mariadb-operator',''); -INSERT INTO operator_images VALUES(54,'Zadara Operator',426,NULL,NULL,643,NULL,NULL,NULL,NULL,'zadara/zoperator:0.3.6','https://github.com/zadarastorage/zadara-operator',''); -INSERT INTO operator_images VALUES(55,'Istio',426,NULL,NULL,644,NULL,NULL,NULL,NULL,'banzaicloud/istio-operator:0.1.6','https://github.com/banzaicloud/istio-operator/tree/release-1.1',''); -INSERT INTO operator_images VALUES(56,'Vault Helm',426,NULL,NULL,645,NULL,NULL,NULL,NULL,'quay.io/brejohns/vault-helm:0.0.1','https://github.com/SDBrett/vault-helm',''); -INSERT INTO operator_images VALUES(57,'druid-operator',426,NULL,NULL,646,NULL,NULL,NULL,NULL,'druidio/druid-operator:0.0.6','https://github.com/druid-io/druid-operator',''); -INSERT INTO operator_images VALUES(58,'etcd',426,NULL,NULL,647,NULL,NULL,NULL,NULL,'quay.io/coreos/etcd-operator@sha256:66a37fd61a06a43969854ee6d3e21087a98b93838e284a6086b13917f96b0d9b','https://github.com/coreos/etcd-operator',''); -INSERT INTO operator_images VALUES(59,'Traefikee Operator',426,NULL,NULL,NULL,648,NULL,NULL,NULL,'containous/traefikee-operator:v0.3.0','https://github.com/containous/traefikee-operator',''); -INSERT INTO operator_images VALUES(60,'IBM Cloud Operator',426,NULL,NULL,649,NULL,NULL,NULL,NULL,'cloudoperators/ibmcloud-operator:0.1.10','https://github.com/IBM/cloud-operators',''); -INSERT INTO operator_images VALUES(61,'Yugabyte Operator',426,NULL,NULL,650,NULL,NULL,NULL,NULL,'quay.io/yugabyte/yugabytedb-operator','https://github.com/yugabyte/yugabyte-operator',''); -INSERT INTO operator_images VALUES(62,'CockroachDB',426,NULL,NULL,651,NULL,NULL,NULL,NULL,'quay.io/helmoperators/cockroachdb:v3.0.7','https://github.com/dmesser/cockroachdb-operator',''); -INSERT INTO operator_images VALUES(63,'Community Jaeger Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,652,'docker.io/jaegertracing/jaeger-operator:1.11.1','https://github.com/jaegertracing/jaeger-operator',''); -INSERT INTO operator_images VALUES (64, 'IoT simulator', 426, 'NULL', 'NULL', 46, 'NULL', 'NULL', 'NULL', 'NULL', '[''ctron/iot-simulator-operator:0.1'']', 'https://github.com/ctron/iot-simulator-operator', ''); -INSERT INTO operator_images VALUES (65, 'Elasticsearch (ECK) Operator', 426, 'NULL', 'NULL', 47, 'NULL', 'NULL', 'NULL', 'NULL', '[''docker.elastic.co/eck/eck-operator:2.2.0'']', 'https://github.com/elastic/cloud-on-k8s', ''); -INSERT INTO operator_images VALUES (66, 'Elasticsearch Phenix Operator', 426, 'NULL', 'NULL', 47, 'NULL', 'NULL', 'NULL', 'NULL', '[''carrefourphx/elastic-phenix-operator:0.1.0'']', 'https://github.com/Carrefour-Group/elastic-phenix-operator', ''); -INSERT INTO operator_images VALUES (67, 'Logging Operator', 426, 'NULL', 'NULL', 47, 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/opstree/logging-operator:v0.2.0'']', 'https://github.com/OT-CONTAINER-KIT/logging-operator', ''); -INSERT INTO operator_images VALUES (68, 'AWS Controllers for Kubernetes - Amazon ElastiCache', 426, 'NULL', 'NULL', 47, 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/elasticache-controller:v0.0.20'']', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images VALUES (69, 'Elasticsearch Index Operator', 426, 'NULL', 'NULL', 47, 'NULL', 'NULL', 'NULL', 'NULL', '[''cloudoperators/esindex-operator:0.1.0'']', 'https://github.com/IBM/esindex-operator', ''); -INSERT INTO operator_images VALUES (70, 'Prometheus Exporter Operator', 426, 'NULL', 'NULL', 47, 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/3scale/prometheus-exporter-operator:v0.2.4'']', 'https://github.com/3scale/prometheus-exporter-operator', ''); -INSERT INTO operator_images VALUES (71, 'Kong Operator', 426, 'NULL', 'NULL', 88, 'NULL', 'NULL', 'NULL', 'NULL', '[''kong/kong-operator:v0.9.0'']', 'https://github.com/kong/kong-operator', ''); -INSERT INTO operator_images VALUES (72, 'MongoDB Operator', 426, 'NULL', 'NULL', 116, 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/opstree/mongodb-operator:v0.3.0'']', 'https://github.com/ot-container-kit/mongodb-operator', ''); -INSERT INTO operator_images VALUES (73, 'MongoDB Atlas Operator', 426, 'NULL', 'NULL', 116, 'NULL', 'NULL', 'NULL', 'NULL', '[''mongodb/mongodb-atlas-kubernetes-operator:1.0.0'']', '', ''); -INSERT INTO operator_images VALUES (74, 'Percona Distribution for MongoDB Operator', 426, 'NULL', 'NULL', 116, 'NULL', 'NULL', 'NULL', 'NULL', '[''percona/percona-server-mongodb-operator:1.11.0'']', 'https://github.com/percona/percona-server-mongodb-operator', ''); -INSERT INTO operator_images VALUES (75, 'Percona Distribution for MySQL Operator', 426, 'NULL', 'NULL', 122, 'NULL', 'NULL', 'NULL', 'NULL', '[''percona/percona-xtradb-cluster-operator:1.10.0'']', 'https://github.com/percona/percona-xtradb-cluster-operator', ''); -INSERT INTO operator_images VALUES (76, 'PlanetScale Operator for Vitess', 426, 'NULL', 'NULL', 122, 'NULL', 'NULL', 'NULL', 'NULL', '[''registry.connect.redhat.com/planetscale/operator:0.1.8'']', '', ''); -INSERT INTO operator_images VALUES (77, 'Percona Operator for PostgreSQL', 426, 'NULL', 'NULL', 157, 'NULL', 'NULL', 'NULL', 'NULL', '[''percona/percona-postgresql-operator:1.2.0-postgres-operator'']', 'https://github.com/percona/percona-postgresql-operator', ''); -INSERT INTO operator_images VALUES (78, 'PostgreSQL Operator by Dev4Ddevs.com', 426, 'NULL', 'NULL', 157, 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/dev4devs-com/postgresql-operator:0.1.1'']', 'https://github.com/dev4devs-com/postgresql-operator', ''); -INSERT INTO operator_images VALUES (79, 'Crunchy Postgres for Kubernetes', 426, 'NULL', 'NULL', 157, 'NULL', 'NULL', 'NULL', 'NULL', '[''registry.developers.crunchydata.com/crunchydata/postgres-operator:ubi8-5.1.1-0'']', 'https://github.com/CrunchyData/postgres-operator', ''); -INSERT INTO operator_images VALUES (80, 'EDB Postgres for Kubernetes', 426, 'NULL', 'NULL', 157, 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/enterprisedb/cloud-native-postgresql@sha256:01bfdf40764c47db948c68dab2364b22c586f16a0300dac315c0e0e9af86fea4'']', '', ''); -INSERT INTO operator_images VALUES (81, 'Postgres-Operator', 426, 'NULL', 'NULL', 157, 'NULL', 'NULL', 'NULL', 'NULL', '[''registry.opensource.zalan.do/acid/postgres-operator:v1.4.0'']', 'https://github.com/zalando/postgres-operator', ''); -INSERT INTO operator_images VALUES (82, 'Ext Postgres Operator', 426, 'NULL', 'NULL', 157, 'NULL', 'NULL', 'NULL', 'NULL', '[''movetokube/postgres-operator:0.4.1'']', 'https://github.com/movetokube/postgres-operator', ''); -INSERT INTO operator_images VALUES (83, 'Robin Cloud Native Storage', 426, 'NULL', 'NULL', 157, 'NULL', 'NULL', 'NULL', 'NULL', '[''robinsys/robin-operator:5.3.2-59'']', '', ''); -INSERT INTO operator_images VALUES (84, 'Redis Enterprise', 426, 'NULL', 'NULL', 168, 'NULL', 'NULL', 'NULL', 'NULL', '[''redislabs/operator-internal:562_ee119ea'']', '', ''); -INSERT INTO operator_images VALUES (85, 'Splunk Operator', 426, 'NULL', 'NULL', 188, 'NULL', 'NULL', 'NULL', 'NULL', '[]', '', ''); -INSERT INTO operator_images VALUES (86, 'Encrypted Images Key Syncer Helm Operator', 426, 'NULL', 'NULL', 209, 'NULL', 'NULL', 'NULL', 'NULL', '[''docker.io/lumjjb/enc-key-sync-operator:v0.0.1'']', 'https://github.com/IBM/k8s-enc-image-operator', ''); -INSERT INTO operator_images VALUES (87, 'Joget DX on Apache Tomcat', 426, 'NULL', 'NULL', 'NULL', 260, 'NULL', 'NULL', 'NULL', '[''jogetworkflow/joget-tomcat-operator:latest'']', 'https://github.com/jogetworkflow/', ''); -INSERT INTO operator_images VALUES (88, 'APIcast', 426, 'NULL', 'NULL', 'NULL', 274, 'NULL', 'NULL', 'NULL', '[''quay.io/3scale/apicast-operator:v0.4.0'']', 'https://github.com/3scale/apicast-operator', ''); -INSERT INTO operator_images VALUES (89, 'Spark Operator', 426, 'NULL', 'NULL', 'NULL', 280, 'NULL', 'NULL', 'NULL', '[''gcr.io/spark-operator/spark-operator:v2.4.0-v1beta1-latest'']', 'https://github.com/GoogleCloudPlatform/spark-on-k8s-operator', ''); -INSERT INTO operator_images VALUES (90, 'Kubestone', 426, 'NULL', 'NULL', 'NULL', 280, 'NULL', 'NULL', 'NULL', '[''xridge/kubestone:v0.4.0'']', 'https://github.com/xridge/kubestone', ''); -INSERT INTO operator_images VALUES (91, 'Alvearie Imaging Ingestion Operator', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''alvearie/imaging-ingestion-operator:0.0.3'']', 'https://github.com/Alvearie/imaging-ingestion', ''); -INSERT INTO operator_images VALUES (92, 'DataStax Kubernetes Operator for Apache Cassandra', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''k8ssandra/cass-operator:v1.10.4'']', 'https://github.com/k8ssandra/cass-operator', ''); -INSERT INTO operator_images VALUES (93, 'Qserv operator', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''qserv/qserv-operator:2022.1.1-rc1'']', 'https://github.com/lsst/qserv-operator', ''); -INSERT INTO operator_images VALUES (94, 'Prometheus Operator', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/prometheus-operator/prometheus-operator:v0.47.0'']', 'https://github.com/prometheus-operator/prometheus-operator', ''); -INSERT INTO operator_images VALUES (95, 'Rook-Ceph', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''rook/ceph:v1.1.1'']', 'https://github.com/rook/rook', ''); -INSERT INTO operator_images VALUES (96, 'Argo CD', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/argoprojlabs/argocd-operator@sha256:f6fc8c310ff6c86d9e0b5acbc16de7dc14d0f5dd813094e380d636482bccb090'']', 'https://github.com/argoproj-labs/argocd-operator', ''); -INSERT INTO operator_images VALUES (97, 'Starboard Operator', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''docker.io/aquasec/starboard-operator:0.15.6'']', 'https://github.com/aquasecurity/starboard', ''); -INSERT INTO operator_images VALUES (98, 'TiDB Operator', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''pingcap/tidb-operator:v1.3.1'']', 'https://github.com/pingcap/tidb-operator', ''); -INSERT INTO operator_images VALUES (99, 'Altinity Operator for ClickHouse', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''altinity/clickhouse-operator:0.18.3'']', 'https://github.com/altinity/clickhouse-operator', ''); -INSERT INTO operator_images VALUES (100, 'Flux', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''ghcr.io/fluxcd/source-controller:v0.24.4'']', '', ''); -INSERT INTO operator_images VALUES (101, 'RocketMQ Operator', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''apacherocketmq/rocketmq-operator:0.2.1'']', 'https://github.com/apache/rocketmq-operator', ''); -INSERT INTO operator_images VALUES (102, 'Falco Operator', 426, 303, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''docker.io/falcosecurity/falco-operator-helm:0.7.6'']', 'https://github.com/falcosecurity/falco-operator/tree/helm-based-operator', ''); -INSERT INTO operator_images VALUES (103, 'Lightbend Console Operator', 426, 306, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''lightbend-docker-registry.bintray.io/lightbend/console-operator:1.2.3'']', 'https://github.com/lightbend/console-charts/tree/master/operator', ''); -INSERT INTO operator_images VALUES (104, 'External Secrets Operator', 426, 323, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''ghcr.io/external-secrets/external-secrets-helm-operator:v0.5.7'']', 'https://github.com/external-secrets/external-secrets-helm-operator', ''); -INSERT INTO operator_images VALUES (105, 'Intel Device Plugins Operator', 426, 323, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''intel/intel-deviceplugin-operator:0.24.0'']', 'https://github.com/intel/intel-device-plugins-for-kubernetes', ''); -INSERT INTO operator_images VALUES (106, 'silicom-sts-operator', 426, 323, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/silicom/sts-operator:v0.0.1'']', 'github.com/silicomdk/sts-operator', ''); -INSERT INTO operator_images VALUES (107, 'API Operator for Kubernetes', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''wso2/k8s-api-operator:2.0.0'']', 'https://github.com/wso2/k8s-api-operator', ''); -INSERT INTO operator_images VALUES (108, 'KEDA', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''ghcr.io/kedacore/keda-olm-operator:2.7.1'']', 'https://github.com/kedacore/keda-olm-operator', ''); -INSERT INTO operator_images VALUES (109, 'WSO2 API Manager Operator for Kubernetes', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''wso2/k8s-wso2am-operator:1.1.0'']', 'https://github.com/wso2/k8s-wso2am-operator', ''); -INSERT INTO operator_images VALUES (110, 'AWS Controllers for Kubernetes - Amazon API Gateway v2', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/apigatewayv2-controller:v0.1.2'']', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images VALUES (111, 'AWS Controllers for Kubernetes - Amazon Application Auto Scaling', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/applicationautoscaling-controller:v0.2.10'']', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images VALUES (112, 'AWS Controllers for Kubernetes - Amazon DynamoDB', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/dynamodb-controller:v0.1.1'']', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images VALUES (113, 'AWS Controllers for Kubernetes - Amazon EC2', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/ec2-controller:v0.0.15'']', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images VALUES (114, 'AWS Controllers for Kubernetes - Amazon ECR', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/ecr-controller:v0.1.4'']', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images VALUES (115, 'AWS Controllers for Kubernetes - Amazon EKS', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/eks-controller:v0.1.3'']', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images VALUES (116, 'AWS Controllers for Kubernetes - Amazon EMR on EKS', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/emrcontainers-controller:v0.0.4'']', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images VALUES (117, 'AWS Controllers for Kubernetes - Amazon IAM', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/iam-controller:v0.0.18'']', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images VALUES (118, 'AWS Controllers for Kubernetes - Amazon KMS', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/kms-controller:v0.0.18'']', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images VALUES (119, 'AWS Controllers for Kubernetes - Amazon Lambda', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/lambda-controller:v0.0.16'']', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images VALUES (120, 'AWS Controllers for Kubernetes - Amazon MQ', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/mq-controller:v0.0.19'']', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images VALUES (121, 'AWS Controllers for Kubernetes - Amazon OpenSearch Service', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/opensearchservice-controller:v0.0.13'']', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images VALUES (122, 'AWS Controllers for Kubernetes - Amazon RDS', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/rds-controller:v0.0.27'']', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images VALUES (123, 'AWS Controllers for Kubernetes - Amazon S3', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/s3-controller:v0.1.3'']', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images VALUES (124, 'AWS Controllers for Kubernetes - Amazon SageMaker', 426, 353, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''public.ecr.aws/aws-controllers-k8s/sagemaker-controller:v0.3.3'']', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images VALUES (125, 'Kubemq Enterprise Operator', 426, 355, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''docker.io/kubemq/kubemq-operator:latest'']', 'https://github.com/kubemq-io/kubemq-operator', ''); -INSERT INTO operator_images VALUES (126, 'Apicurio Registry Operator', 426, 355, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/apicurio/apicurio-registry-operator:1.0.0'']', 'https://github.com/Apicurio/apicurio-registry-operator', ''); -INSERT INTO operator_images VALUES (127, 'GitLab', 426, 360, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''registry.gitlab.com/gitlab-org/cloud-native/gitlab-operator:0.6.3'']', 'https://gitlab.com/gitlab-org/cloud-native/gitlab-operator', ''); -INSERT INTO operator_images VALUES (128, 'GitLab Runner', 426, 360, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''registry.gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator/gitlab-runner-operator:v1.9.0'']', 'https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator', ''); -INSERT INTO operator_images VALUES (129, 'nfd-operator', 426, 362, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''k8s.gcr.io/nfd/node-feature-discovery-operator:v0.5.0-minimal'']', 'https://github.com/kubernetes-sigs/node-feature-discovery-operator', ''); -INSERT INTO operator_images VALUES (130, 'Appsody Operator', 426, 364, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''appsody/application-operator:0.6.0'']', 'https://github.com/appsody/appsody-operator', ''); -INSERT INTO operator_images VALUES (131, 'Runtime Component Operator', 426, 364, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''applicationstacks/operator:0.7.0'']', 'https://github.com/application-stacks/runtime-component-operator', ''); -INSERT INTO operator_images VALUES (132, 'Open Liberty Operator', 426, 'NULL', 398, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''openliberty/operator:0.7.0'']', 'https://github.com/OpenLiberty/open-liberty-operator', ''); -INSERT INTO operator_images VALUES (133, 'Kogito', 426, 'NULL', 398, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/kiegroup/kogito-operator:1.23.0'']', 'https://github.com/kiegroup/kogito-operator', ''); -INSERT INTO operator_images VALUES (134, 'Operator for Apache CouchDB', 424, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''icr.io/cpopen/couchdb-operator@sha256:a99142f091fd9067d77a2690ab8363921fb721ea784449c73e302c559e0cbb18'', ''quay.io/opencloudio/couchdb3@sha256:f660ef65e9f42c19106931aefa194df7c4aebad4b1dd56cef8ce89acb2b7b2f4'', ''quay.io/opencloudio/couchdb-operator-mgmt@sha256:5dd8bd685e93ae657e3ca15052dc86aa0dc92a346e14c7804af394528a62ace6'']', '', ''); -INSERT INTO operator_images VALUES (135, 'Composable', 424, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''cloudoperators/composable-controller:0.1.3'']', 'https://github.com/IBM/composable', ''); -INSERT INTO operator_images VALUES (136, 'IBM COS Bucket Operator', 424, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''cloudoperators/cosbucket-operator:0.1.0'']', 'https://github.com/IBM/cos-bucket-operator', ''); -INSERT INTO operator_images VALUES (137, 'Event Streams Topic', 424, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''cloudoperators/event-streams-topic:0.1.1'']', 'https://github.com/IBM/event-streams-topic', ''); -INSERT INTO operator_images VALUES (138, 'Hybrid Application Model Operator', 424, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/hybridappio/ham-deploy:0.1.0'']', 'https://github.com/hybridapp-io/ham-deploy', ''); -INSERT INTO operator_images VALUES (139, 'IBM Application Gateway Operator', 424, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''ibmcom/ibm-application-gateway-operator:22.3.0'']', 'https://github.com/IBM-Security/ibm-application-gateway-operator', ''); -INSERT INTO operator_images VALUES (140, 'IBM block storage CSI driver operator', 424, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''ibmcom/ibm-block-csi-operator:1.9.0'']', 'https://github.com/IBM/ibm-block-csi-operator', ''); -INSERT INTO operator_images VALUES (141, 'Ibm Quantum Operator', 424, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/application/husky_parul/ibm-quantum-operator'']', 'https://github.com/redhat-et/ibm-quantum-operator', ''); -INSERT INTO operator_images VALUES (142, 'IBM Security Verify Access Operator', 424, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''ibmcom/verify-access-operator:21.10.0'']', 'https://github.com/IBM-Security/verify-access-operator', ''); -INSERT INTO operator_images VALUES (143, 'QiskitPlayground', 424, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''docker.io/qiskit/operator:0.1'']', 'https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/kubernetes-qiskit-operator', ''); -INSERT INTO operator_images VALUES (144, 'Nexus Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 481, 'NULL', 'NULL', '[''quay.io/m88i/nexus-operator:0.6.0'']', 'https://github.com/m88i/nexus-operator', ''); -INSERT INTO operator_images VALUES (145, 'Cluster Manager', 426, 'NULL', 'NULL', 'NULL', 'NULL', 481, 'NULL', 'NULL', '[''quay.io/open-cluster-management/registration-operator:v0.7.0'']', 'https://github.com/open-cluster-management-io/registration-operator', ''); -INSERT INTO operator_images VALUES (146, 'Submariner', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''quay.io/submariner/submariner-operator:0.11.0'']', 'https://github.com/submariner-io/submariner-operator', ''); -INSERT INTO operator_images VALUES (147, 'Upbound Universal Crossplane (UXP)', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''upbound/uxp-bootstrapper'']', 'https://github.com/upbound/universal-crossplane', ''); -INSERT INTO operator_images VALUES (148, 'BeeGFS CSI Driver', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''netapp/beegfs-csi-driver-operator:v1.2.2'']', 'https://github.com/netapp/beegfs-csi-driver', ''); -INSERT INTO operator_images VALUES (149, 'cluster-impairment-operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''quay.io/redhat-performance/cluster-impairment-operator:1.0.4'']', 'https://github.com/redhat-performance/cluster-impairment-operator', ''); -INSERT INTO operator_images VALUES (150, 'Kogito Knative Eventing Source', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''gcr.io/knative-releases/knative.dev/eventing-kogito/cmd/controller:v1.2.0'']', 'https://github.com/knative-sandbox/eventing-kogito', ''); -INSERT INTO operator_images VALUES (151, 'k8gb', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''absaoss/k8gb:v0.9.0'']', 'https://github.com/k8gb-io/k8gb', ''); -INSERT INTO operator_images VALUES (152, 'Kubernetes NMState Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''quay.io/nmstate/kubernetes-nmstate-operator:v0.47.0'']', 'https://github.com/nmstate/kubernetes-nmstate', ''); -INSERT INTO operator_images VALUES (153, 'MARIN3R', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''quay.io/3scale/marin3r'']', 'https://github.com/3scale-ops/marin3r', ''); -INSERT INTO operator_images VALUES (154, 'MetalLB Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''quay.io/metallb/metallb-operator'']', 'https://github.com/metallb/metallb-operator', ''); -INSERT INTO operator_images VALUES (155, 'NetObserv Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''quay.io/netobserv/network-observability-operator:0.1.2'']', 'https://github.com/netobserv/network-observability-operator', ''); -INSERT INTO operator_images VALUES (156, 'NeuVector Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''registry.neuvector.com/public/operator:0.1.2'']', 'https://github.com/neuvector/neuvector-operator', ''); -INSERT INTO operator_images VALUES (157, 'Network Service Mesh Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''quay.io/acmenezes/nsm-operator:v0.0.1'']', 'https://github.com/acmenezes/nsm-operator', ''); -INSERT INTO operator_images VALUES (158, 'Prisma Cloud Compute Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''quay.io/prismacloud/pcc-operator@sha256:b8fcfbd6c51286c874e00db1bd35523386cec406fa4050ef44c0a887730cf9b8'']', 'https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator', ''); -INSERT INTO operator_images VALUES (159, 'Routernetes', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''quay.io/routernetes/routernetes-operator:0.0.4'']', 'https://github.com/routernetes/routernetes-operator', ''); -INSERT INTO operator_images VALUES (160, 'skydive-operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''docker.io/skydive/skydive-operator:0.0.50'']', 'https://github.com/skydive-project/skydive-golang-operator', ''); -INSERT INTO operator_images VALUES (161, 'Tf Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 497, '[''docker.io/tungstenfabric/tf-operator:latest'']', 'https://github.com/tungstenfabric/tf-operator', ''); -INSERT INTO operator_images VALUES (162, 'Anchore Engine Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 503, '[''docker.io/anchore/engine-operator:v0.1.3'']', 'https://github.com/anchore/engine-operator', ''); -INSERT INTO operator_images VALUES (163, 'Carbonetes Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 503, '[''docker.io/carbonetes/operator:1.0.4'']', 'https://github.com/carbonetes/carbonetes-analyzer', ''); -INSERT INTO operator_images VALUES (164, 'Multi-Cluster Application Dispatcher', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[]', '', ''); -INSERT INTO operator_images VALUES (165, 'VerticaDB Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''docker.io/vertica/verticadb-operator:1.5.0'']', 'https://github.com/vertica/vertica-kubernetes', ''); -INSERT INTO operator_images VALUES (166, 'Couchbase Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''registry.hub.docker.com/couchbase/operator:2.3.0'']', '', ''); -INSERT INTO operator_images VALUES (167, 'Hazelcast Platform Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''docker.io/hazelcast/hazelcast-platform-operator:5.3'']', '', ''); -INSERT INTO operator_images VALUES (168, 'Sosivio Autonomuous Cloud Native', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/sosivio/sosivio-operator:v1.3.1-76'', ''quay.io/sosivio/sosivio-operator@sha256:54833c7fc78070e3215dafc4a90b44fb0191278f22f416fdda4ebb0b30baf3ca'', ''quay.io/sosivio/kube-rbac-proxy@sha256:34e8724e0f47e31eb2ec3279ac398b657db5f60f167426ee73138e2e84af6486'', ''release.sosiv.io/nsqd@sha256:1a87ae9876adea742b2b69a16e246c362992c47fd041185b7b00a9e27f95fedc'', ''release.sosiv.io/nsqadmin@sha256:62e82b3ed550bc9f417dd259b38add12e037b1c5b0d09e75e1d41eb30b00c16d'', ''release.sosiv.io/nsqlookupd@sha256:171556aa3c48acedf0ae7c0907943129ef9074d07c4dd8dec830c41770edad2a'', ''release.sosiv.io/crud-manager@sha256:a1252e44223fa5f5900c664a697e97d572965a8c5bafa65f4f0c48f74c371d54'', ''release.sosiv.io/sosivio-node-collector@sha256:b9da902efee437c7c96cfcb7c392b3777855d0fbab5a88249d16989bc146f194'', ''release.sosiv.io/sosivio-node-pinger@sha256:64a83d81d4e3e7adc730eea7ffdb626e3adaaed7780df8608dcd72101e8cec94'', ''release.sosiv.io/classifier@sha256:64492c8b0500194f8e76786723c676783b04aa2b8ebc30af7a79b8ad455edfc5'', ''release.sosiv.io/communicator@sha256:d7e2b6509a1d8117f1a2de6675ccf56672402c081a3095981e1ecd40225c461a'', ''release.sosiv.io/analyzer@sha256:62b44a2cbc7587b01603407f262527a67011816d42e89c6bebf7d9a3a28d46b5'', ''release.sosiv.io/sosivio-dashboard@sha256:a0bec736207be74ccaf118d75618fe0b33c7a0ac8543ce1aaf7ea0db875569cb'', ''release.sosiv.io/authentication@sha256:8334cca2058b91c69091d7fdcce46dfa9c09befdad40909d4ab16f6bd5d2f810'', ''release.sosiv.io/actuator@sha256:5cd94db305edfc5f79fd32b127993ae5a9be16ba917345a823417055f767ca98'', ''release.sosiv.io/sequence-recognition@sha256:05a4702937efa67bf71eb149ae2ecf59855b7503567902897410aff61401b9ee'', ''release.sosiv.io/correlation-entities@sha256:6064c9a80f504c87fb356278580523a31f61851ac353827fcb33dda360358b6e'', ''release.sosiv.io/contract-testing@sha256:a4baa361c1f63c67fabd9b394449ca24c27226bac920abcf64b00f251513126c'', ''release.sosiv.io/sosiviodb@sha256:ddde5ce59df6d68f9a7adf71d1e61132783c3cc4af2c7ccfc0941af35a4d0ad1'', ''release.sosiv.io/draingo@sha256:bdbd95c9ffd7cd7ee482992589944b6b078b838614b921a5b309664653ab1584'', ''release.sosiv.io/discovery-engine@sha256:2dad130ba5ad2e91d1b50b9668cceebde6bca4fd4d15b3933428b1c4f0d0f25d'', ''release.sosiv.io/notifier@sha256:a809f8fb046847c3fa91d984cc8162f0dd92245e3c0c0b6a847404a10f450214'']', 'https://github.com/Sosivio/operator', ''); -INSERT INTO operator_images VALUES (169, 'Chaosblade Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''chaosbladeio/chaosblade-operator:0.5.1'']', 'https://github.com/chaosblade-io/chaosblade-operator', ''); -INSERT INTO operator_images VALUES (170, 'clever-operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''clevercloud/clever-operator:e7ad0b4cfee00dd526f0e1b9aec90d79ee2ed123'']', 'https://github.com/CleverCloud/clever-operator', ''); -INSERT INTO operator_images VALUES (171, 'Kubefed Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/openshift/kubefed-operator:v0.1.0-rc3'']', 'https://github.com/openshift/kubefed-operator', ''); -INSERT INTO operator_images VALUES (172, 'AtlasMap Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/atlasmap/atlasmap-operator:0.4.1'']', 'https://github.com/atlasmap/atlasmap-operator', ''); -INSERT INTO operator_images VALUES (173, 'Cryostat Operator', 426, 584, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/cryostat/cryostat-operator:2.1.1'']', 'github.com/cryostatio/cryostat-operator', ''); -INSERT INTO operator_images VALUES (174, 'APIMatic Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''docker.io/apimaticio/apimatic-kubernetes-operator:v0.0.1'']', 'https://github.com/apimatic/apimatic-kubernetes-operator', ''); -INSERT INTO operator_images VALUES (175, 'Microcks Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/microcks/microcks-ansible-operator:1.5.2'']', 'https://github.com/microcks/microcks-ansible-operator', ''); -INSERT INTO operator_images VALUES (176, 'Minio Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/minio/operator@sha256:22daae696181273ff3a024367db3bed159f4977325ed16e46225418328521a07'']', 'https://github.com/minio/operator', ''); -INSERT INTO operator_images VALUES (177, 'DataTrucker.IO', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''docker.io/datatruckerio/datatrucker-operator:2.0.0'']', 'hhttps://gitlab.com/datatruckerio/datatrucker-server.git', ''); -INSERT INTO operator_images VALUES (178, 'SAP BTP Service Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', '[''ghcr.io/sap/sap-btp-service-operator/controller:v0.1.6'']', 'https://github.com/SAP/sap-btp-service-operator', ''); -INSERT INTO operator_images VALUES (179, 'Infinispan Operator', 426, 'NULL', 'NULL', 619, 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/infinispan/operator:2.2.4.Final'']', 'https://github.com/infinispan/infinispan-operator', ''); -INSERT INTO operator_images VALUES (180, 'YAKS Operator', 426, 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 'NULL', 633, '[''docker.io/citrusframework/yaks:0.10.0'']', 'https://github.com/citrusframework/yaks', ''); -INSERT INTO operator_images VALUES (181, 'Istio Workspace', 426, 'NULL', 'NULL', 644, 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/maistra/istio-workspace:v0.4.0'']', 'https://github.com/maistra/istio-workspace', ''); -INSERT INTO operator_images VALUES (182, 'Kiali Operator', 426, 'NULL', 'NULL', 644, 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/kiali/kiali-operator:v1.52.0'']', 'https://github.com/kiali/kiali', ''); -INSERT INTO operator_images VALUES (183, 'Vault Operator', 426, 'NULL', 'NULL', 645, 'NULL', 'NULL', 'NULL', 'NULL', '[''banzaicloud/vault-operator:0.4.10'']', 'https://github.com/banzaicloud/bank-vaults/tree/master/operator', ''); -INSERT INTO operator_images VALUES (184, 'ks-releaser', 426, 'NULL', 'NULL', 677, 'NULL', 'NULL', 'NULL', 'NULL', '[''ghcr.io/kubesphere-sigs/ks-releaser-operator:v0.0.1'']', 'https://github.com/kubesphere-sigs/ks-releaser-operator', ''); -INSERT INTO operator_images VALUES (185, 'Argo CD Operator (Helm)', 426, 'NULL', 'NULL', 677, 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/disposab1e/argocd-operator-helm@sha256:c74e73d7cdc6e571ba2a69d59b4ec68549b2ea4563763771be80f2d55f0b4524'']', 'https://github.com/disposab1e/argocd-operator-helm.git', ''); -INSERT INTO operator_images VALUES (186, 'Multicluster Subscription Operator', 426, 'NULL', 'NULL', 677, 'NULL', 'NULL', 'NULL', 'NULL', '[''quay.io/open-cluster-management/multicluster-operators-subscription:2.3.0'']', 'https://github.com/open-cluster-management/multicloud-operators-subscription', ''); -INSERT INTO operator_images VALUES (187, 'Weave GitOps Terraform Controller', 426, 'NULL', 'NULL', 677, 'NULL', 'NULL', 'NULL', 'NULL', '[''ghcr.io/weaveworks/tf-controller:v0.9.0-rc.8'']', '', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (1, 'Apache Spark Operator', 426, 331, NULL, 280, NULL, NULL, NULL, NULL, 'quay.io/radanalyticsio/spark-operator:1.0.2', 'https://github.com/radanalyticsio/spark-operator', '[[Spark Operator, gcr.io/spark-operator/spark-operator:v2.4.0-v1beta1-latest, https://github.com/GoogleCloudPlatform/spark-on-k8s-operator]]'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (2, 'Banzai Cloud Kafka Operator', 426, 323, NULL, 9, NULL, NULL, NULL, NULL, 'banzaicloud/kafka-operator:0.3.1', 'https://github.com/banzaicloud/kafka-operator/tree/master', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (3, 'Camel K Operator', 426, 323, NULL, 378, NULL, NULL, NULL, NULL, 'docker.io/apache/camel-k:1.3.0', 'https://github.com/apache/camel-k', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (4, 'GrdsCloud MySQL for Kubernetes', 426, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'grds/mysql-operator:1.0.0', 'https://github.com/GrdsCloud', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (5, 'Hive for Red Hat OpenShift', 426, 323, NULL, 8, NULL, NULL, NULL, NULL, 'quay.io/openshift-hive/hive:v1.0.17', 'https://github.com/openshift/hive', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (6, 'IBM Spectrum Scale CSI Plugin Operator', 426, 323, NULL, 74, NULL, NULL, NULL, NULL, 'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0', 'https://github.com/IBM/ibm-spectrum-scale-csi/', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (7, 'Jenkins Operator', 426, 323, NULL, 90, NULL, NULL, NULL, NULL, 'virtuslab/jenkins-operator:v0.3.0', 'https://github.com/jenkinsci/kubernetes-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (8, 'Postgresql Operator', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'quay.io/deekshah86/postgresql-operator', 'https://github.com/janepelladinesh/postgresql-operator', '[[Crunchy PostgreSQL for Kubernetes, registry.developers.crunchydata.com/crunchydata/postgres-operator:centos8-4.7.0, https://github.com/CrunchyData/postgres-operator], [Postgres-Operator, registry.opensource.zalan.do/acid/postgres-operator:v1.3.0, https://github.com/zalando/postgres-operator], [PostgreSQL Operator by Dev4Ddevs.com, quay.io/dev4devs-com/postgresql-operator:0.1.1, https://github.com/dev4devs-com/postgresql-operator]]'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (9, 'Redis Operator', 426, 323, NULL, 168, NULL, NULL, NULL, NULL, 'quay.io/opstree/redis-operator:v0.3.0', 'https://github.com/ot-container-kit/redis-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (10, 'WildFly', 426, 323, NULL, 493, NULL, NULL, NULL, NULL, 'quay.io/wildfly/wildfly-operator:0.3.0', 'https://github.com/wildfly/wildfly-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (11, 'MongoDB Enterprise Operator', 426, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'quay.io/mongodb/mongodb-enterprise-operator:1.12.0', 'https://github.com/mongodb/mongodb-enterprise-kubernetes', '[[Percona Distribution for MongoDB Operator, percona/percona-server-mongodb-operator:1.9.0, https://github.com/percona/percona-server-mongodb-operator ]]'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (12, 'Apache Spark Operator', 426, NULL, NULL, 280, NULL, NULL, NULL, NULL, 'quay.io/radanalyticsio/spark-operator:1.0.2', 'https://github.com/radanalyticsio/spark-operator', '[[Spark Operator, gcr.io/spark-operator/spark-operator:v2.4.0-v1beta1-latest, https://github.com/GoogleCloudPlatform/spark-on-k8s-operator]]'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (13, 'Banzai Cloud Kafka Operator', 426, NULL, NULL, 9, NULL, NULL, NULL, NULL, 'banzaicloud/kafka-operator:0.3.1', 'https://github.com/banzaicloud/kafka-operator/tree/master', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (14, 'Camel K Operator', 426, NULL, NULL, 378, NULL, NULL, NULL, NULL, 'docker.io/apache/camel-k:1.3.0', 'https://github.com/apache/camel-k', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (15, 'GrdsCloud MySQL for Kubernetes', 426, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'grds/mysql-operator:1.0.0', 'https://github.com/GrdsCloud', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (16, 'Hive for Red Hat OpenShift', 426, NULL, NULL, 8, NULL, NULL, NULL, NULL, 'quay.io/openshift-hive/hive:v1.0.17', 'https://github.com/openshift/hive', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (17, 'IBM Spectrum Scale CSI Plugin Operator', 426, NULL, NULL, 74, NULL, NULL, NULL, NULL, 'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0', 'https://github.com/IBM/ibm-spectrum-scale-csi/', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (18, 'Jenkins Operator', 426, NULL, NULL, 90, NULL, NULL, NULL, NULL, 'virtuslab/jenkins-operator:v0.3.0', 'https://github.com/jenkinsci/kubernetes-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (19, 'Postgresql Operator', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'quay.io/deekshah86/postgresql-operator', 'https://github.com/janepelladinesh/postgresql-operator', '[[Crunchy PostgreSQL for Kubernetes, registry.developers.crunchydata.com/crunchydata/postgres-operator:centos8-4.7.0, https://github.com/CrunchyData/postgres-operator], [Postgres-Operator, registry.opensource.zalan.do/acid/postgres-operator:v1.3.0, https://github.com/zalando/postgres-operator], [PostgreSQL Operator by Dev4Ddevs.com, quay.io/dev4devs-com/postgresql-operator:0.1.1, https://github.com/dev4devs-com/postgresql-operator]]'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (20, 'Redis Operator', 426, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'quay.io/opstree/redis-operator:v0.3.0', 'https://github.com/ot-container-kit/redis-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (21, 'WildFly', 426, NULL, NULL, 493, NULL, NULL, NULL, NULL, 'quay.io/wildfly/wildfly-operator:0.3.0', 'https://github.com/wildfly/wildfly-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (22, 'MongoDB Enterprise Operator', 426, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'quay.io/mongodb/mongodb-enterprise-operator:1.12.0', 'https://github.com/mongodb/mongodb-enterprise-kubernetes', '[[Percona Distribution for MongoDB Operator, percona/percona-server-mongodb-operator:1.9.0, https://github.com/percona/percona-server-mongodb-operator ]]'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (23, 'Instana Agent Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 611, 'instana/instana-agent-operator:0.3.7', 'https://github.com/instana/instana-agent-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (24, 'credstash-operator', 426, NULL, NULL, 612, NULL, NULL, NULL, NULL, 'quay.io/ouzi/credstash-operator:v1.13.0', 'https://github.com/ouzi-dev/credstash-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (25, 'Snyk Operator', 426, NULL, NULL, 613, NULL, NULL, NULL, NULL, 'docker.io/snyk/kubernetes-operator:1.59.3', 'https://github.com/snyk/kubernetes-monitor', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (26, 'Akka Cluster Operator', 426, NULL, NULL, 614, NULL, NULL, NULL, NULL, 'lightbend-docker-registry.bintray.io/lightbend/akkacluster-operator:v1.0.0', 'https://github.com/lightbend/akka-cluster-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (27, 'Varnish Operator', 426, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'ibmcom/varnish-operator:0.27.2', 'https://github.com/IBM/varnish-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (28, 'Datadog Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 616, 'datadog/operator:0.3.0', 'https://github.com/DataDog/datadog-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (29, 'Hazelcast Enterprise Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 618, 'hazelcast/hazelcast-enterprise-operator:0.3.7', 'https://github.com/hazelcast/hazelcast-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (30, 'infinispan', 426, NULL, NULL, 619, NULL, NULL, NULL, NULL, 'docker.io/jboss/infinispan-operator:0.3.0', 'https://github.com/infinispan/infinispan-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (31, 'Nuxeo Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 620, 'docker.io/appzygy/nuxeo-operator:0.7.1', 'https://github.com/aceeric/nuxeo-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (32, 'ArangoDB', 426, NULL, NULL, 621, NULL, NULL, NULL, NULL, 'arangodb/kube-arangodb:1.0.2', 'https://github.com/arangodb/kube-arangodb', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (33, 'Eclipse Che', 426, NULL, NULL, 622, NULL, NULL, NULL, NULL, 'quay.io/eclipse/che-operator@sha256:ea3641202e11ad00bd639b59809b6f4a6508f2c143d260b1683a9f36d74ed54f', 'https://github.com/eclipse-che/che-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (34, 'AWS S3 Operator', 426, NULL, NULL, 623, NULL, NULL, NULL, NULL, 'quay.io/screeley44/aws-s3-provisioner:v1.0.0', 'https://github.com/yard-turkey/aws-s3-provisioner', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (35, 'Altinity ClickHouse Operator', 426, NULL, NULL, 624, NULL, NULL, NULL, NULL, 'altinity/clickhouse-operator:0.9.9', 'https://github.com/altinity/clickhouse-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (36, 'MinIO Operator', 426, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'minio/k8s-operator:1.0.3', 'https://github.com/minio/minio-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (37, 'Elastic Cloud on Kubernetes', 426, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'docker.elastic.co/eck/eck-operator:1.0.0-beta1', 'https://github.com/elastic/cloud-on-k8s', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (38, 'Percona XtraDB Cluster Operator', 426, NULL, NULL, 627, NULL, NULL, NULL, NULL, 'percona/percona-xtradb-cluster-operator:1.7.0', 'https://github.com/percona/percona-xtradb-cluster-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (39, 'Keycloak Operator', 426, NULL, NULL, 628, NULL, NULL, NULL, NULL, 'quay.io/keycloak/keycloak-operator:9.0.2', 'https://github.com/keycloak/keycloak-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (40, 'Grafana Operator', 426, NULL, NULL, 629, NULL, NULL, NULL, NULL, 'quay.io/integreatly/grafana-operator:v3.10.1', 'https://github.com/integr8ly/grafana-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (41, 'Mattermost Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 630, 'docker.io/mattermost/mattermost-operator:v0.5.0', 'https://github.com/mattermost/mattermost-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (42, 'synapse-helm', 426, NULL, NULL, 631, NULL, NULL, NULL, NULL, 'quay.io/mgoerens/synapse-helm:v0.0.11', 'https://github.com/opdev/synapse-helm', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (43, 'IBM Cloud IAM Operator', 426, NULL, NULL, 632, NULL, NULL, NULL, NULL, 'cloudoperators/ibmcloud-iam-operator:0.1.0', 'https://github.com/IBM/ibmcloud-iam-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (44, 'Knative Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 633, 'gcr.io/knative-releases/knative.dev/operator/cmd/operator:v0.20.0', 'https://github.com/knative/operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (45, 'Cassandra', 426, NULL, NULL, 634, NULL, NULL, NULL, NULL, 'gcr.io/cassandra-operator/cassandra-operator:v2.0.0', 'https://github.com/instaclustr/cassandra-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (46, 'Kubeflow', 426, NULL, NULL, NULL, NULL, NULL, NULL, 635, 'aipipeline/kubeflow-operator:v1.0.0', 'https://github.com/kubeflow/kfctl', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (47, 'Openshift Qiskit Operator', 426, NULL, NULL, 636, NULL, NULL, NULL, NULL, 'https://hub.docker.com/repository/docker/singhp11/openshift-qiskit-operator', 'https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/openshift-qiskit-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (48, 'Azure Service Operator', 426, NULL, NULL, 637, NULL, NULL, NULL, NULL, 'mcr.microsoft.com/k8s/azureserviceoperator:1.0.27207', 'https://github.com/Azure/azure-service-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (49, 'Strimzi', 426, NULL, NULL, NULL, NULL, NULL, NULL, 638, 'docker.io/strimzi/operator@sha256:62218aee7553b31db1f65bc30b3c6b6595c2fd631b2e1792e24e554a47080aa6', 'https://github.com/strimzi/strimzi-kafka-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (50, 'Sematext Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 639, 'docker.io/sematext/sematext-operator:1.0.33', 'https://github.com/sematext/sematext-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (51, 'Eclipse Hawkbit', 426, NULL, NULL, 640, NULL, NULL, NULL, NULL, 'docker.io/ctron/hawkbit-operator:0.1.4', 'https://github.com/ctron/hawkbit-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (52, 'Eclipse Ditto', 426, NULL, NULL, 641, NULL, NULL, NULL, NULL, 'docker.io/ctron/ditto-operator:0.1.0', 'https://github.com/ctron/ditto-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (53, 'Mariadb Operator', 426, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'quay.io/manojdhanorkar/mariadb-operator:v0.0.1', 'https://github.com/abalki001/mariadb-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (54, 'Zadara Operator', 426, NULL, NULL, 643, NULL, NULL, NULL, NULL, 'zadara/zoperator:0.3.6', 'https://github.com/zadarastorage/zadara-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (55, 'Istio', 426, NULL, NULL, 644, NULL, NULL, NULL, NULL, 'banzaicloud/istio-operator:0.1.6', 'https://github.com/banzaicloud/istio-operator/tree/release-1.1', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (56, 'Vault Helm', 426, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'quay.io/brejohns/vault-helm:0.0.1', 'https://github.com/SDBrett/vault-helm', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (57, 'druid-operator', 426, NULL, NULL, 646, NULL, NULL, NULL, NULL, 'druidio/druid-operator:0.0.6', 'https://github.com/druid-io/druid-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (58, 'etcd', 426, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'quay.io/coreos/etcd-operator@sha256:66a37fd61a06a43969854ee6d3e21087a98b93838e284a6086b13917f96b0d9b', 'https://github.com/coreos/etcd-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (59, 'Traefikee Operator', 426, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'containous/traefikee-operator:v0.3.0', 'https://github.com/containous/traefikee-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (60, 'IBM Cloud Operator', 426, NULL, NULL, 649, NULL, NULL, NULL, NULL, 'cloudoperators/ibmcloud-operator:0.1.10', 'https://github.com/IBM/cloud-operators', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (61, 'Yugabyte Operator', 426, NULL, NULL, 650, NULL, NULL, NULL, NULL, 'quay.io/yugabyte/yugabytedb-operator', 'https://github.com/yugabyte/yugabyte-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (62, 'CockroachDB', 426, NULL, NULL, 651, NULL, NULL, NULL, NULL, 'quay.io/helmoperators/cockroachdb:v3.0.7', 'https://github.com/dmesser/cockroachdb-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (63, 'Community Jaeger Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 652, 'docker.io/jaegertracing/jaeger-operator:1.11.1', 'https://github.com/jaegertracing/jaeger-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (64, 'IoT simulator', 426, NULL, NULL, 46, NULL, NULL, NULL, NULL, '[]', 'https://github.com/ctron/iot-simulator-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (65, 'Elasticsearch (ECK) Operator', 426, NULL, NULL, 47, NULL, NULL, NULL, NULL, '[]', 'https://github.com/elastic/cloud-on-k8s', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (66, 'Elasticsearch Phenix Operator', 426, NULL, NULL, 47, NULL, NULL, NULL, NULL, '[]', 'https://github.com/Carrefour-Group/elastic-phenix-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (67, 'Logging Operator', 426, NULL, NULL, 47, NULL, NULL, NULL, NULL, '["''quay.io/opstree/logging-operator:v0.3.0''"]', 'https://github.com/ot-container-kit/logging-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (68, 'AWS Controllers for Kubernetes - Amazon ElastiCache', 426, NULL, NULL, 47, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (69, 'Elasticsearch Index Operator', 426, NULL, NULL, 47, NULL, NULL, NULL, NULL, '[]', 'https://github.com/IBM/esindex-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (70, 'Prometheus Exporter Operator', 426, NULL, NULL, 47, NULL, NULL, NULL, NULL, '["''quay.io/3scale/prometheus-exporter-operator:v0.2.4''"]', 'https://github.com/3scale/prometheus-exporter-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (71, 'Kong Operator', 426, NULL, NULL, 88, NULL, NULL, NULL, NULL, '[]', 'https://github.com/kong/kong-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (72, 'MongoDB Operator', 426, NULL, NULL, 116, NULL, NULL, NULL, NULL, '["''quay.io/opstree/mongodb-operator:v0.3.0''"]', 'https://github.com/ot-container-kit/mongodb-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (73, 'MongoDB Atlas Operator', 426, NULL, NULL, 116, NULL, NULL, NULL, NULL, '[]', '', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (74, 'Percona Distribution for MongoDB Operator', 426, NULL, NULL, 116, NULL, NULL, NULL, NULL, '[]', 'https://github.com/percona/percona-server-mongodb-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (75, 'Percona Distribution for MySQL Operator', 426, NULL, NULL, 122, NULL, NULL, NULL, NULL, '[]', 'https://github.com/percona/percona-xtradb-cluster-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (76, 'PlanetScale Operator for Vitess', 426, NULL, NULL, 122, NULL, NULL, NULL, NULL, '[]', '', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (77, 'Percona Operator for PostgreSQL', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, '[]', 'https://github.com/percona/percona-postgresql-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (78, 'PostgreSQL Operator by Dev4Ddevs.com', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, '["''quay.io/dev4devs-com/postgresql-operator:0.1.1''"]', 'https://github.com/dev4devs-com/postgresql-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (79, 'Crunchy Postgres for Kubernetes', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, '[]', 'https://github.com/CrunchyData/postgres-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (80, 'EDB Postgres for Kubernetes', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, '["''quay.io/enterprisedb/cloud-native-postgresql''"]', '', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (81, 'Postgres-Operator', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, '[]', 'https://github.com/zalando/postgres-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (82, 'Ext Postgres Operator', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, '[]', 'https://github.com/movetokube/postgres-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (83, 'Robin Cloud Native Storage', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, '[]', '', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (84, 'Redis Enterprise', 426, NULL, NULL, 168, NULL, NULL, NULL, NULL, '[]', '', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (85, 'Splunk Operator', 426, NULL, NULL, 188, NULL, NULL, NULL, NULL, '[]', '', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (86, 'Encrypted Images Key Syncer Helm Operator', 426, NULL, NULL, 209, NULL, NULL, NULL, NULL, '["''docker.io/lumjjb/enc-key-sync-operator:v0.0.1''"]', 'https://github.com/IBM/k8s-enc-image-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (87, 'Joget DX on Apache Tomcat', 426, NULL, NULL, NULL, 260, NULL, NULL, NULL, '[]', 'https://github.com/jogetworkflow/', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (88, 'APIcast', 426, NULL, NULL, NULL, 274, NULL, NULL, NULL, '["''quay.io/3scale/apicast-operator:v0.4.0''"]', 'https://github.com/3scale/apicast-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (89, 'Spark Operator', 426, NULL, NULL, NULL, 280, NULL, NULL, NULL, '[]', 'https://github.com/GoogleCloudPlatform/spark-on-k8s-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (90, 'Kubestone', 426, NULL, NULL, NULL, 280, NULL, NULL, NULL, '[]', 'https://github.com/xridge/kubestone', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (91, 'Flink Kubernetes Operator', 426, 301, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/apache/flink-kubernetes-operator:1.0.1''"]', 'https://github.com/apache/flink-kubernetes-operator.git', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (92, 'Alvearie Imaging Ingestion Operator', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/Alvearie/imaging-ingestion', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (93, 'DataStax Kubernetes Operator for Apache Cassandra', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/k8ssandra/cass-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (94, 'Qserv operator', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/lsst/qserv-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (95, 'Prometheus Operator', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/prometheus-operator/prometheus-operator:v0.47.0''"]', 'https://github.com/prometheus-operator/prometheus-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (96, 'Rook-Ceph', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/rook/rook', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (97, 'Argo CD', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/argoprojlabs/argocd-operator''"]', 'https://github.com/argoproj-labs/argocd-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (98, 'Starboard Operator', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/aquasec/starboard-operator:0.15.6''"]', 'https://github.com/aquasecurity/starboard', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (99, 'TiDB Operator', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/pingcap/tidb-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (100, 'Altinity Operator for ClickHouse', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/altinity/clickhouse-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (101, 'Flux', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '[]', '', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (102, 'RocketMQ Operator', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/apache/rocketmq-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (103, 'StorageOS', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/storageos/operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (104, 'Lightbend Console Operator', 426, 306, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/lightbend/console-charts/tree/master/operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (105, 'External Secrets Operator', 426, 323, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/external-secrets/external-secrets-helm-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (106, 'Intel Device Plugins Operator', 426, 323, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/intel/intel-device-plugins-for-kubernetes', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (107, 'silicom-sts-operator', 426, 323, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/silicom/sts-operator:v0.0.1''"]', 'github.com/silicomdk/sts-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (108, 'AtlasMap Operator', 426, 331, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/atlasmap/atlasmap-operator:0.4.1''"]', 'https://github.com/atlasmap/atlasmap-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (109, 'Appsody Operator', 426, 331, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/appsody/appsody-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (110, 'Cryostat Operator', 426, 331, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/cryostat/cryostat-operator:2.1.1''"]', 'github.com/cryostatio/cryostat-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (111, 'Open Liberty Operator', 426, 331, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/OpenLiberty/open-liberty-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (112, 'Runtime Component Operator', 426, 331, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/application-stacks/runtime-component-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (113, 'API Operator for Kubernetes', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/wso2/k8s-api-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (114, 'KEDA', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/kedacore/keda-olm-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (115, 'WSO2 API Manager Operator for Kubernetes', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/wso2/k8s-wso2am-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (116, 'AWS Controllers for Kubernetes - Amazon API Gateway v2', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (117, 'AWS Controllers for Kubernetes - Amazon Application Auto Scaling', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (118, 'AWS Controllers for Kubernetes - Amazon DynamoDB', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (119, 'AWS Controllers for Kubernetes - Amazon EC2', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (120, 'AWS Controllers for Kubernetes - Amazon ECR', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (121, 'AWS Controllers for Kubernetes - Amazon EKS', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (122, 'AWS Controllers for Kubernetes - Amazon EMR on EKS', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (123, 'AWS Controllers for Kubernetes - Amazon IAM', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (124, 'AWS Controllers for Kubernetes - Amazon KMS', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (125, 'AWS Controllers for Kubernetes - Amazon Lambda', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (126, 'AWS Controllers for Kubernetes - Amazon MQ', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (127, 'AWS Controllers for Kubernetes - Amazon OpenSearch Service', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (128, 'AWS Controllers for Kubernetes - Amazon RDS', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (129, 'AWS Controllers for Kubernetes - Amazon S3', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (130, 'AWS Controllers for Kubernetes - Amazon SageMaker', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (131, 'Falco Operator', 426, 355, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/falcosecurity/falco-operator-helm:0.7.6''"]', 'https://github.com/falcosecurity/falco-operator/tree/helm-based-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (132, 'Kubemq Enterprise Operator', 426, 355, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/kubemq/kubemq-operator:latest''"]', 'https://github.com/kubemq-io/kubemq-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (133, 'Apicurio Registry Operator', 426, 355, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/apicurio/apicurio-registry-operator:1.0.0''"]', 'https://github.com/Apicurio/apicurio-registry-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (134, 'GitLab', 426, 360, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://gitlab.com/gitlab-org/cloud-native/gitlab-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (135, 'GitLab Runner', 426, 360, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (136, 'nfd-operator', 426, 362, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/kubernetes-sigs/node-feature-discovery-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (137, 'Kogito', 426, NULL, 398, NULL, NULL, NULL, NULL, NULL, '["''quay.io/kiegroup/kogito-operator:1.24.0''"]', 'https://github.com/kiegroup/kogito-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (138, 'Composable', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/IBM/composable', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (139, 'IBM COS Bucket Operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/IBM/cos-bucket-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (140, 'Event Streams Topic', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/IBM/event-streams-topic', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (141, 'Hybrid Application Model Operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/hybridappio/ham-deploy:0.1.0''"]', 'https://github.com/hybridapp-io/ham-deploy', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (142, 'IBM Application Gateway Operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/IBM-Security/ibm-application-gateway-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (143, 'IBM block storage CSI driver operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/IBM/ibm-block-csi-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (144, 'Ibm Quantum Operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/application/husky_parul/ibm-quantum-operator''"]', 'https://github.com/redhat-et/ibm-quantum-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (145, 'IBM Security Verify Access Operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/IBM-Security/verify-access-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (146, 'QiskitPlayground', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/qiskit/operator:0.1''"]', 'https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/kubernetes-qiskit-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (147, 'Submariner', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/submariner/submariner-operator:0.11.0''"]', 'https://github.com/submariner-io/submariner-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (148, 'Upbound Universal Crossplane (UXP)', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '[]', 'https://github.com/upbound/universal-crossplane', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (149, 'BeeGFS CSI Driver', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '[]', 'https://github.com/netapp/beegfs-csi-driver', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (150, 'cluster-impairment-operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/redhat-performance/cluster-impairment-operator:1.0.4''"]', 'https://github.com/redhat-performance/cluster-impairment-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (151, 'Kogito Knative Eventing Source', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '[]', 'https://github.com/knative-sandbox/eventing-kogito', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (152, 'k8gb', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '[]', 'https://github.com/k8gb-io/k8gb', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (153, 'Kubernetes NMState Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/nmstate/kubernetes-nmstate-operator:v0.47.0''"]', 'https://github.com/nmstate/kubernetes-nmstate', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (154, 'MARIN3R', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/3scale/marin3r''"]', 'https://github.com/3scale-ops/marin3r', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (155, 'MetalLB Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/metallb/metallb-operator''"]', 'https://github.com/metallb/metallb-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (156, 'NetObserv Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/netobserv/network-observability-operator:0.1.3''"]', 'https://github.com/netobserv/network-observability-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (157, 'NeuVector Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '[]', 'https://github.com/neuvector/neuvector-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (158, 'Network Service Mesh Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/acmenezes/nsm-operator:v0.0.1''"]', 'https://github.com/acmenezes/nsm-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (159, 'Prisma Cloud Compute Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/prismacloud/pcc-operator''"]', 'https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (160, 'Routernetes', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/routernetes/routernetes-operator:0.0.4''"]', 'https://github.com/routernetes/routernetes-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (161, 'skydive-operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''docker.io/skydive/skydive-operator:0.0.50''"]', 'https://github.com/skydive-project/skydive-golang-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (162, 'Tf Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''docker.io/tungstenfabric/tf-operator:latest''"]', 'https://github.com/tungstenfabric/tf-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (163, 'Nexus Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 503, '["''quay.io/m88i/nexus-operator:0.6.0''"]', 'https://github.com/m88i/nexus-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (164, 'Anchore Engine Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 503, '["''docker.io/anchore/engine-operator:v0.1.3''"]', 'https://github.com/anchore/engine-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (165, 'Carbonetes Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 503, '["''docker.io/carbonetes/operator:1.0.4''"]', 'https://github.com/carbonetes/carbonetes-analyzer', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (166, 'Multi-Cluster Application Dispatcher', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', '', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (167, 'VerticaDB Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/vertica/verticadb-operator:1.6.0''"]', 'https://github.com/vertica/vertica-kubernetes', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (168, 'Couchbase Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''registry.hub.docker.com/couchbase/operator:2.3.0''"]', '', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (169, 'Hazelcast Platform Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/hazelcast/hazelcast-platform-operator:5.3''"]', '', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (170, 'Infinispan Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/infinispan/operator:2.2.4.Final''"]', 'https://github.com/infinispan/infinispan-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (171, 'Sosivio Autonomuous Cloud Native', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/sosivio/sosivio-operator:v1.4.1-78''", "''quay.io/sosivio/sosivio-operator''", "''quay.io/sosivio/kube-rbac-proxy''", "''quay.io/sosivio/nsq''", "''quay.io/sosivio/crud-manager''", "''quay.io/sosivio/sosivio-node-collector''", "''quay.io/sosivio/sosivio-node-pinger''", "''quay.io/sosivio/classifier''", "''quay.io/sosivio/communicator''", "''quay.io/sosivio/analyzer''", "''quay.io/sosivio/sosivio-dashboard''", "''quay.io/sosivio/authentication''", "''quay.io/sosivio/actuator''", "''quay.io/sosivio/sequence-recognition''", "''quay.io/sosivio/correlation-entities''", "''quay.io/sosivio/contract-testing''", "''quay.io/sosivio/sosiviodb''", "''quay.io/sosivio/draingo''", "''quay.io/sosivio/discovery-engine''", "''quay.io/sosivio/notifier''"]', 'https://github.com/Sosivio/operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (172, 'Chaosblade Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/chaosblade-io/chaosblade-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (173, 'clever-operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/clevercloud/clever-operator:e7cfe6efc4c4da80c722416fe1de373b789612f6''"]', 'https://github.com/CleverCloud/clever-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (174, 'Kubefed Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/openshift/kubefed-operator:v0.1.0-rc3''"]', 'https://github.com/openshift/kubefed-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (175, 'APIMatic Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/apimaticio/apimatic-kubernetes-operator:v0.0.1''"]', 'https://github.com/apimatic/apimatic-kubernetes-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (176, 'Microcks Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/microcks/microcks-ansible-operator:1.5.2''"]', 'https://github.com/microcks/microcks-ansible-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (177, 'Minio Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/minio/operator''"]', 'https://github.com/minio/operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (178, 'DataTrucker.IO', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/datatruckerio/datatrucker-operator:2.0.0''"]', 'hhttps://gitlab.com/datatruckerio/datatrucker-server.git', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (179, 'SAP BTP Service Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/SAP/sap-btp-service-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (180, 'YAKS Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 633, '["''docker.io/citrusframework/yaks:0.10.0''"]', 'https://github.com/citrusframework/yaks', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (181, 'Istio Workspace', 426, NULL, NULL, 644, NULL, NULL, NULL, NULL, '["''quay.io/maistra/istio-workspace:v0.5.0''"]', 'https://github.com/maistra/istio-workspace', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (182, 'Kiali Operator', 426, NULL, NULL, 644, NULL, NULL, NULL, NULL, '["''quay.io/kiali/kiali-operator:v1.53.0''"]', 'https://github.com/kiali/kiali', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (183, 'Vault Operator', 426, NULL, NULL, 645, NULL, NULL, NULL, NULL, '[]', 'https://github.com/banzaicloud/bank-vaults/tree/master/operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (184, 'ks-releaser', 426, NULL, NULL, 677, NULL, NULL, NULL, NULL, '[]', 'https://github.com/kubesphere-sigs/ks-releaser-operator', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (185, 'Argo CD Operator (Helm)', 426, NULL, NULL, 677, NULL, NULL, NULL, NULL, '["''quay.io/disposab1e/argocd-operator-helm''"]', 'https://github.com/disposab1e/argocd-operator-helm.git', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (186, 'Multicluster Subscription Operator', 426, NULL, NULL, 677, NULL, NULL, NULL, NULL, '["''quay.io/open-cluster-management/multicluster-operators-subscription:2.3.0''"]', 'https://github.com/open-cluster-management/multicloud-operators-subscription', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (187, 'Weave GitOps Terraform Controller', 426, NULL, NULL, 677, NULL, NULL, NULL, NULL, '[]', '', ''); -CREATE TABLE docker_environment_variables( - id integer NOT NULL PRIMARY KEY AUTOINCREMENT, - Environment_Variables text, - Container_Name text, - Required text, - Default_Values text, - FOREIGN KEY (Container_Name) REFERENCES docker_images (id) - ); -INSERT INTO docker_environment_variables VALUES(1,'DB2INSTANCE','db2','Y',''); -INSERT INTO docker_environment_variables VALUES(2,'DB2INST1_PASSWORD','db2','Y',''); -INSERT INTO docker_environment_variables VALUES(3,'DBNAME','db2','Y',''); -INSERT INTO docker_environment_variables VALUES(4,'BLU','db2','N','True'); -INSERT INTO docker_environment_variables VALUES(5,'ENABLE_ORACLE_COMPATIBILITY','db2','',''); -INSERT INTO docker_environment_variables VALUES(6,'SAMPLEDB','db2','',''); -INSERT INTO docker_environment_variables VALUES(7,'PERSISTENT_HOME','db2','',''); -INSERT INTO docker_environment_variables VALUES(8,'HADR_ENABLED','db2','',''); -INSERT INTO docker_environment_variables VALUES(9,'ETCD_ENDPOINT','db2','',''); -INSERT INTO docker_environment_variables VALUES(10,'ETCD_USERNAME','db2','',''); -INSERT INTO docker_environment_variables VALUES(11,'ETCD_PASSWORD','db2','',''); -INSERT INTO docker_environment_variables VALUES(12,'TEXT_SEARCH','db2','N',''); -INSERT INTO docker_environment_variables VALUES(13,'ARCHIVE_LOGS','db2','N','True'); -INSERT INTO docker_environment_variables VALUES(14,'AUTOCONFIG','db2','N','True'); -INSERT INTO docker_environment_variables VALUES(15,'MYSQL_HOST','mysql','',''); -INSERT INTO docker_environment_variables VALUES(16,'MYSQL_ROOT_PASSWORD','mysql','',''); -INSERT INTO docker_environment_variables VALUES(17,'MYSQL_DATABASE','mysql','',''); -INSERT INTO docker_environment_variables VALUES(18,'MYSQL_USER','mysql','',''); -INSERT INTO docker_environment_variables VALUES(19,'MYSQL_PASSWORD','mysql','',''); -INSERT INTO docker_environment_variables VALUES(20,'MYSQL_ALLOW_EMPTY_PASSWORD','mysql','',''); -INSERT INTO docker_environment_variables VALUES(21,'MYSQL_RANDOM_ROOT_PASSWORD','mysql','',''); -INSERT INTO docker_environment_variables VALUES(22,'MYSQL_ONETIME_PASSWORD','mysql','',''); -INSERT INTO docker_environment_variables VALUES(23,'MYSQL_INITDB_SKIP_TZINFO','mysql','',''); -INSERT INTO docker_environment_variables VALUES(24,'CATALINA_BASE','tomcat','',''); -INSERT INTO docker_environment_variables VALUES(25,'CATALINA_HOME','tomcat','',''); -INSERT INTO docker_environment_variables VALUES(26,'CATALINA_TMPDIR','tomcat','',''); -INSERT INTO docker_environment_variables VALUES(27,'JRE_HOME','tomcat','',''); -INSERT INTO docker_environment_variables VALUES(28,'CLASSPATH','tomcat','',''); -CREATE TABLE entity_versions ( - id integer PRIMARY KEY AUTOINCREMENT, - entity_id integer NOT NULL, - version text, - release_date date, - end_date date, - FOREIGN KEY (entity_id) REFERENCES entities (id) - ); -INSERT INTO entity_versions VALUES(1,497,'1','01/15/2002','07/14/2009'); -INSERT INTO entity_versions VALUES(2,497,'1.1','04/09/2003','10/08/2013'); -INSERT INTO entity_versions VALUES(3,497,'2','10/27/2005','07/12/2011'); -INSERT INTO entity_versions VALUES(4,497,'3','11/06/2006','07/12/2011'); -INSERT INTO entity_versions VALUES(5,497,'3.5','11/19/2007','10/10/2028'); -INSERT INTO entity_versions VALUES(6,497,'4','04/12/2010','01/12/2016'); -INSERT INTO entity_versions VALUES(7,497,'4.5','08/15/2012','01/12/2016'); -INSERT INTO entity_versions VALUES(8,497,'4.5.1','10/17/2013','01/12/2016'); -INSERT INTO entity_versions VALUES(9,497,'4.5.2','05/05/2014','04/26/2022'); -INSERT INTO entity_versions VALUES(10,497,'4.6','07/20/2015','04/26/2022'); -INSERT INTO entity_versions VALUES(11,497,'4.6.1','11/30/2015','04/26/2022'); -INSERT INTO entity_versions VALUES(12,497,'4.6.2','08/02/2016','04/26/2022'); -INSERT INTO entity_versions VALUES(13,497,'4.7','04/05/2017',' '); -INSERT INTO entity_versions VALUES(14,497,'4.7.1','10/17/2017',' '); -INSERT INTO entity_versions VALUES(15,497,'4.7.2','04/30/2018',' '); -INSERT INTO entity_versions VALUES(16,497,'4.8','09/04/2019',' '); -INSERT INTO entity_versions VALUES(17,498,' ',' ',' '); -INSERT INTO entity_versions VALUES(18,499,'1','12/01/1996',' '); -INSERT INTO entity_versions VALUES(19,499,'2','09/01/1997',' '); -INSERT INTO entity_versions VALUES(20,499,'3','11/01/2000',' '); -INSERT INTO entity_versions VALUES(21,500,' ','01/01/1996','08/31/2020'); -INSERT INTO entity_versions VALUES(22,501,'6',' ',' '); -INSERT INTO entity_versions VALUES(23,501,'7',' ',' '); -INSERT INTO entity_versions VALUES(24,501,'8',' ',' '); -INSERT INTO entity_versions VALUES(25,501,'9',' ',' '); -INSERT INTO entity_versions VALUES(26,501,'10.0.0',' ',' '); -INSERT INTO entity_versions VALUES(27,502,'5.6','06/01/2020',' '); -INSERT INTO entity_versions VALUES(28,502,'5.5','12/01/2018',' '); -INSERT INTO entity_versions VALUES(29,502,'5.4','06/01/2017',' '); -INSERT INTO entity_versions VALUES(30,502,'5.3','12/01/2015',' '); -INSERT INTO entity_versions VALUES(31,502,'5.2','12/31/2014',' '); -INSERT INTO entity_versions VALUES(32,502,'5.1','12/31/2012',' '); -INSERT INTO entity_versions VALUES(33,502,'4.2','12/31/2011',' '); -INSERT INTO entity_versions VALUES(34,502,'4.1','12/31/2009',' '); -INSERT INTO entity_versions VALUES(35,502,'3.2','12/31/2007',' '); -INSERT INTO entity_versions VALUES(36,502,'3.1','12/31/2005',' '); -INSERT INTO entity_versions VALUES(37,502,'2.2','12/31/2003',' '); -INSERT INTO entity_versions VALUES(38,502,'2.1','12/31/2001',' '); -INSERT INTO entity_versions VALUES(39,503,'20.10.8','08/03/2021',' '); -INSERT INTO entity_versions VALUES(40,503,'20.10.7','06/02/2021',' '); -INSERT INTO entity_versions VALUES(41,503,'20.10.6','04/12/2021',' '); -INSERT INTO entity_versions VALUES(42,503,'20.10.5','03/02/2021',' '); -INSERT INTO entity_versions VALUES(43,503,'20.10.4','04/26/2021',' '); -INSERT INTO entity_versions VALUES(44,503,'20.10.3','02/01/2021',' '); -INSERT INTO entity_versions VALUES(45,503,'20.10.2','01/04/2021',' '); -INSERT INTO entity_versions VALUES(46,503,'20.10.1','12/14/2020',' '); -INSERT INTO entity_versions VALUES(47,503,'20.10.0','12/08/2020',' '); -INSERT INTO entity_versions VALUES(48,504,'2','12/31/1997','12/31/1998'); -INSERT INTO entity_versions VALUES(49,504,'3','12/31/1997','12/31/1998'); -INSERT INTO entity_versions VALUES(50,504,'7.0.14.0','12/31/1997','12/31/2005'); -INSERT INTO entity_versions VALUES(51,504,'9.0.289.0','12/31/1998','12/31/2011'); -INSERT INTO entity_versions VALUES(52,504,'10.3.183.90','12/31/1999','12/31/2013'); -INSERT INTO entity_versions VALUES(53,504,'11.1.102.55','12/31/1999','12/31/2013'); -INSERT INTO entity_versions VALUES(54,504,'32.0.0.465','12/31/2001','12/31/2020'); -INSERT INTO entity_versions VALUES(55,504,'5.0.41.0','12/31/1997',' '); -INSERT INTO entity_versions VALUES(56,504,'32.0.0.465','12/31/2014','12/31/2020'); -INSERT INTO entity_versions VALUES(57,504,'29.0.0.171','12/31/2013','12/31/2018'); -INSERT INTO entity_versions VALUES(58,504,'22.0.0.209','12/31/2009','12/31/2016'); -INSERT INTO entity_versions VALUES(59,504,'10.3.183.90','12/31/2007','12/31/2013'); -INSERT INTO entity_versions VALUES(60,504,'10.1.102.64','12/31/2005','12/31/2011'); -INSERT INTO entity_versions VALUES(61,504,'9.0.289.0','12/31/2001','12/31/2011'); -INSERT INTO entity_versions VALUES(62,504,'7.0.14.0','12/31/1997','12/31/2005'); -INSERT INTO entity_versions VALUES(63,504,'3','12/31/1997','12/31/1998'); -INSERT INTO entity_versions VALUES(64,504,'4.0r12','12/31/1999',' '); -INSERT INTO entity_versions VALUES(65,504,'32.0.0.465','12/31/2020',' '); -INSERT INTO entity_versions VALUES(66,504,'4.0r12','12/31/1999',' '); -INSERT INTO entity_versions VALUES(67,504,'4.0r12','12/31/2004','12/31/2013'); -INSERT INTO entity_versions VALUES(68,504,'11.2.202.223','12/31/2004','12/31/2013'); -INSERT INTO entity_versions VALUES(69,504,'10.3.183.90','12/31/2004','12/31/2013'); -INSERT INTO entity_versions VALUES(70,505,'1','12/31/2002',' '); -INSERT INTO entity_versions VALUES(71,505,'2.3',' ',' '); -INSERT INTO entity_versions VALUES(72,506,'JDK Beta','01/01/1995',' '); -INSERT INTO entity_versions VALUES(73,506,'1.0','01/01/1996',' '); -INSERT INTO entity_versions VALUES(74,506,'1.1','02/01/1997',' '); -INSERT INTO entity_versions VALUES(75,506,'1.2','12/01/1998',' '); -INSERT INTO entity_versions VALUES(76,506,'1.3','05/01/2000',' '); -INSERT INTO entity_versions VALUES(77,506,'1.4','02/01/2002','08/31/2008'); -INSERT INTO entity_versions VALUES(78,506,'5.0','09/01/2004','11/30/2009'); -INSERT INTO entity_versions VALUES(79,506,'6','12/01/2006','04/30/2013'); -INSERT INTO entity_versions VALUES(80,506,'7','07/01/2011','04/30/2015'); -INSERT INTO entity_versions VALUES(81,506,'8','03/01/2014','12/31/2026'); -INSERT INTO entity_versions VALUES(82,506,'9','09/01/2017','03/31/2018'); -INSERT INTO entity_versions VALUES(83,506,'10','03/01/2018','09/30/2018'); -INSERT INTO entity_versions VALUES(84,506,'11','09/01/2018','12/31/2026'); -INSERT INTO entity_versions VALUES(85,506,'12','03/31/2019','09/30/2019'); -INSERT INTO entity_versions VALUES(86,506,'13','09/01/2019','03/31/2020'); -INSERT INTO entity_versions VALUES(87,506,'14','03/01/2020','09/30/2020'); -INSERT INTO entity_versions VALUES(88,506,'15','09/01/2020','03/31/2021'); -INSERT INTO entity_versions VALUES(89,506,'16','03/01/2021','09/30/2021'); -INSERT INTO entity_versions VALUES(90,506,'17','09/30/2021','12/31/2029'); -INSERT INTO entity_versions VALUES(91,506,'18','03/01/2022','09/30/2022'); -INSERT INTO entity_versions VALUES(92,506,'19','09/01/2022','03/31/2023'); -INSERT INTO entity_versions VALUES(93,506,'20','03/01/2023','09/30/2023'); -INSERT INTO entity_versions VALUES(94,506,'21','09/01/2023',' '); -INSERT INTO entity_versions VALUES(95,507,'0.10','03/01/2013','10/31/2016'); -INSERT INTO entity_versions VALUES(96,507,'0.12','02/06/2015','12/31/2016'); -INSERT INTO entity_versions VALUES(97,507,'4','09/08/2015','04/30/2018'); -INSERT INTO entity_versions VALUES(98,507,'5','10/29/2015','06/30/2016'); -INSERT INTO entity_versions VALUES(99,507,'6','04/26/2016','04/30/2019'); -INSERT INTO entity_versions VALUES(100,507,'7','10/25/2016','06/30/2017'); -INSERT INTO entity_versions VALUES(101,507,'8','05/30/2017','12/31/2019'); -INSERT INTO entity_versions VALUES(102,507,'9','10/01/2017','06/30/2018'); -INSERT INTO entity_versions VALUES(103,507,'10','04/24/2018','04/30/2021'); -INSERT INTO entity_versions VALUES(104,507,'11','10/23/2018','06/01/2019'); -INSERT INTO entity_versions VALUES(105,507,'12','04/23/2019','04/30/2022'); -INSERT INTO entity_versions VALUES(106,507,'13','10/22/2019','06/01/2020'); -INSERT INTO entity_versions VALUES(107,507,'14','04/21/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(108,507,'15','10/20/2020','06/01/2021'); -INSERT INTO entity_versions VALUES(109,507,'16','04/20/2021','04/30/2024'); -INSERT INTO entity_versions VALUES(110,507,'17','10/19/2021','06/01/2022'); -INSERT INTO entity_versions VALUES(111,507,'18','04/19/2022','04/30/2025'); -INSERT INTO entity_versions VALUES(112,508,'1','12/13/2005',' '); -INSERT INTO entity_versions VALUES(113,508,'1.2','01/19/2007',' '); -INSERT INTO entity_versions VALUES(114,508,'2','12/07/2007',' '); -INSERT INTO entity_versions VALUES(115,508,'2.1','06/01/2008',' '); -INSERT INTO entity_versions VALUES(116,508,'2.2','11/21/2008',' '); -INSERT INTO entity_versions VALUES(117,508,'2.3','03/16/2009',' '); -INSERT INTO entity_versions VALUES(118,508,'3','08/29/2010',' '); -INSERT INTO entity_versions VALUES(119,508,'3.1','08/31/2011',' '); -INSERT INTO entity_versions VALUES(120,508,'3.2','01/20/2012',' '); -INSERT INTO entity_versions VALUES(121,508,'4','06/25/2013',' '); -INSERT INTO entity_versions VALUES(122,508,'4.1','04/08/2014',' '); -INSERT INTO entity_versions VALUES(123,508,'4.2','12/19/2014',' '); -INSERT INTO entity_versions VALUES(124,508,'5','06/30/2016',' '); -INSERT INTO entity_versions VALUES(125,508,'5.1','05/10/2017',' '); -INSERT INTO entity_versions VALUES(126,508,'5.2','04/09/2018',' '); -INSERT INTO entity_versions VALUES(127,508,'6','08/16/2019',' '); -INSERT INTO entity_versions VALUES(128,508,'6.1','12/09/2020',' '); -INSERT INTO entity_versions VALUES(129,508,'7',' ',' '); -INSERT INTO entity_versions VALUES(130,509,'53.0',' ',' '); -INSERT INTO entity_versions VALUES(131,263,'1','12/16/2001','12/30/2001'); -INSERT INTO entity_versions VALUES(132,264,'1.1','03/10/2002','01/29/2006'); -INSERT INTO entity_versions VALUES(133,264,'1.2','11/09/2003','08/06/2011'); -INSERT INTO entity_versions VALUES(134,264,'1.3','06/29/2006','03/14/2016'); -INSERT INTO entity_versions VALUES(135,264,'1.4','02/26/2010','02/08/2018'); -INSERT INTO entity_versions VALUES(136,264,'1.5','06/19/2014','01/10/2020'); -INSERT INTO entity_versions VALUES(137,264,'1.6','10/13/2015','12/31/2020'); -INSERT INTO entity_versions VALUES(138,264,'1.7','11/25/2016','12/31/2021'); -INSERT INTO entity_versions VALUES(139,264,'1.8','11/26/2017','12/31/2022'); -INSERT INTO entity_versions VALUES(140,264,'1.9','12/19/2018','06/30/2020'); -INSERT INTO entity_versions VALUES(141,264,'2','06/16/2019','06/30/2024'); -INSERT INTO entity_versions VALUES(142,264,'2.1','11/25/2019','03/31/2021'); -INSERT INTO entity_versions VALUES(143,264,'2.2','07/07/2020','06/30/2025'); -INSERT INTO entity_versions VALUES(144,264,'2.3','11/05/2020','03/31/2022'); -INSERT INTO entity_versions VALUES(145,264,'2.4','05/14/2021','06/30/2026'); -INSERT INTO entity_versions VALUES(146,264,'2.5','11/01/2021','03/31/2023'); -INSERT INTO entity_versions VALUES(147,259,'1.3','06/06/1998',' '); -INSERT INTO entity_versions VALUES(148,259,'2','04/06/2002',' '); -INSERT INTO entity_versions VALUES(149,259,'2.2','12/01/2005',' '); -INSERT INTO entity_versions VALUES(150,259,'2.4','02/21/2012',' '); -INSERT INTO entity_versions VALUES(151,266,'1',' ',' '); -INSERT INTO entity_versions VALUES(152,266,'2',' ',' '); -INSERT INTO entity_versions VALUES(153,266,'3',' ',' '); -INSERT INTO entity_versions VALUES(154,266,'4',' ',' '); -INSERT INTO entity_versions VALUES(155,266,'5',' ',' '); -INSERT INTO entity_versions VALUES(156,266,'5.1',' ',' '); -INSERT INTO entity_versions VALUES(157,266,'6',' ',' '); -INSERT INTO entity_versions VALUES(158,266,'7',' ',' '); -INSERT INTO entity_versions VALUES(159,266,'7.5',' ',' '); -INSERT INTO entity_versions VALUES(160,266,'8',' ',' '); -INSERT INTO entity_versions VALUES(161,266,'8.5',' ',' '); -INSERT INTO entity_versions VALUES(162,266,'10',' ',' '); -INSERT INTO entity_versions VALUES(163,274,' ',' ',' '); -INSERT INTO entity_versions VALUES(164,260,'3.3','03/09/2004',' '); -INSERT INTO entity_versions VALUES(165,260,'4.1','06/25/2009',' '); -INSERT INTO entity_versions VALUES(166,260,'5.5','10/10/2012',' '); -INSERT INTO entity_versions VALUES(167,260,'6.0','04/07/2017','12/31/2016'); -INSERT INTO entity_versions VALUES(168,260,'7.0','04/26/2021','03/31/2021'); -INSERT INTO entity_versions VALUES(169,260,'8.0','07/05/2018','06/30/2018'); -INSERT INTO entity_versions VALUES(170,260,'8.5','09/13/2021',' '); -INSERT INTO entity_versions VALUES(171,260,'9.0','09/10/2021',' '); -INSERT INTO entity_versions VALUES(172,260,'10.0','09/10/2021',' '); -INSERT INTO entity_versions VALUES(173,260,'10.1',' ',' '); -INSERT INTO entity_versions VALUES(174,285,'8.5','06/15/2012','06/24/2016'); -INSERT INTO entity_versions VALUES(175,280,'0.5','10/07/2012',' '); -INSERT INTO entity_versions VALUES(176,280,'0.6','02/07/2013',' '); -INSERT INTO entity_versions VALUES(177,280,'0.7','07/16/2013',' '); -INSERT INTO entity_versions VALUES(178,280,'0.8','12/19/2013',' '); -INSERT INTO entity_versions VALUES(179,280,'0.9','07/23/2014',' '); -INSERT INTO entity_versions VALUES(180,280,'1.0','08/05/2014',' '); -INSERT INTO entity_versions VALUES(181,280,'1.1','11/26/2014',' '); -INSERT INTO entity_versions VALUES(182,280,'1.2','04/17/2015',' '); -INSERT INTO entity_versions VALUES(183,280,'1.3','04/17/2015',' '); -INSERT INTO entity_versions VALUES(184,280,'1.4','07/15/2015',' '); -INSERT INTO entity_versions VALUES(185,280,'1.5','11/09/2015',' '); -INSERT INTO entity_versions VALUES(186,280,'1.6','11/07/2016',' '); -INSERT INTO entity_versions VALUES(187,280,'2.0','11/14/2016',' '); -INSERT INTO entity_versions VALUES(188,280,'2.1','06/26/2018',' '); -INSERT INTO entity_versions VALUES(189,280,'2.2','01/11/2019',' '); -INSERT INTO entity_versions VALUES(190,280,'2.3','09/09/2019',' '); -INSERT INTO entity_versions VALUES(191,280,'2.4','05/17/2021',' '); -INSERT INTO entity_versions VALUES(192,280,'3.0','01/06/2021',' '); -INSERT INTO entity_versions VALUES(193,280,'3.1','01/06/2021',' '); -INSERT INTO entity_versions VALUES(194,278,'3.1',' ',' '); -INSERT INTO entity_versions VALUES(195,278,'4.0',' ',' '); -INSERT INTO entity_versions VALUES(196,265,'6.0.1','04/15/2005',' '); -INSERT INTO entity_versions VALUES(197,265,'6.0.2','07/29/2005',' '); -INSERT INTO entity_versions VALUES(198,265,'6.1.0','07/21/2006',' '); -INSERT INTO entity_versions VALUES(199,265,'7.0.0','03/15/2009',' '); -INSERT INTO entity_versions VALUES(200,265,'8.0.0','06/17/2011',' '); -INSERT INTO entity_versions VALUES(201,265,'8.5.0','06/15/2012',' '); -INSERT INTO entity_versions VALUES(202,265,'9.0.0','03/11/2016',' '); -INSERT INTO entity_versions VALUES(203,269,'2.6','02/09/2016',' '); -INSERT INTO entity_versions VALUES(204,269,'2.9.1','04/11/2019',' '); -INSERT INTO entity_versions VALUES(205,286,'4.1','12/31/2001',' '); -INSERT INTO entity_versions VALUES(206,286,'5','07/01/2002',' '); -INSERT INTO entity_versions VALUES(207,286,'6','04/01/2006',' '); -INSERT INTO entity_versions VALUES(208,286,'6.1','03/01/2009',' '); -INSERT INTO entity_versions VALUES(209,286,'6.1.5','11/01/2009',' '); -INSERT INTO entity_versions VALUES(210,286,'7','09/01/2010',' '); -INSERT INTO entity_versions VALUES(211,286,'8','05/01/2012',' '); -INSERT INTO entity_versions VALUES(212,286,'8.5','06/01/2014',' '); -INSERT INTO entity_versions VALUES(213,286,'9','12/01/2016',' '); -INSERT INTO entity_versions VALUES(214,286,'9.5','07/01/2019',' '); -INSERT INTO entity_versions VALUES(215,284,'9','03/26/2021',' '); -INSERT INTO entity_versions VALUES(216,284,'8.5.5','02/15/2021','06/24/2016'); -INSERT INTO entity_versions VALUES(217,284,'8.5','06/15/2012',' '); -INSERT INTO entity_versions VALUES(218,284,'8','06/17/2011','04/30/2018'); -INSERT INTO entity_versions VALUES(219,284,'7','08/17/2008','04/30/2018'); -INSERT INTO entity_versions VALUES(220,284,'6.1','06/30/2006','09/30/2013'); -INSERT INTO entity_versions VALUES(221,284,'6','12/31/2004','09/30/2010'); -INSERT INTO entity_versions VALUES(222,284,'5.1','01/16/2004','09/30/2008'); -INSERT INTO entity_versions VALUES(223,284,'5','01/03/2003','09/30/2006'); -INSERT INTO entity_versions VALUES(224,284,'4','08/15/2001','04/30/2005'); -INSERT INTO entity_versions VALUES(225,284,'3.5','08/31/2000','11/30/2003'); -INSERT INTO entity_versions VALUES(226,267,'7.1.1','03/09/2012',' '); -INSERT INTO entity_versions VALUES(227,267,'7.1.0','02/16/2012',' '); -INSERT INTO entity_versions VALUES(228,267,'7.0.2','09/22/2011',' '); -INSERT INTO entity_versions VALUES(229,267,'7.0.1','08/17/2011',' '); -INSERT INTO entity_versions VALUES(230,267,'7.0.0','07/12/2011',' '); -INSERT INTO entity_versions VALUES(231,267,'6.1.0','08/16/2011',' '); -INSERT INTO entity_versions VALUES(232,267,'6.0.0','12/22/2010',' '); -INSERT INTO entity_versions VALUES(233,267,'5.1.0','05/23/2009',' '); -INSERT INTO entity_versions VALUES(234,267,'5.0.0','12/05/2008',' '); -INSERT INTO entity_versions VALUES(235,267,'4.2.3','07/18/2008',' '); -INSERT INTO entity_versions VALUES(236,267,'4.2.2','10/22/2007',' '); -INSERT INTO entity_versions VALUES(237,267,'4.2.1','07/16/2006',' '); -INSERT INTO entity_versions VALUES(238,267,'4.2.0','05/11/2007',' '); -INSERT INTO entity_versions VALUES(239,267,'4.0.5','10/18/2006',' '); -INSERT INTO entity_versions VALUES(240,267,'4.0.4','05/15/2006',' '); -INSERT INTO entity_versions VALUES(241,267,'4.0.3','10/24/2005',' '); -INSERT INTO entity_versions VALUES(242,267,'4.0.2','05/02/2005',' '); -INSERT INTO entity_versions VALUES(243,267,'4.0.1','02/16/2005',' '); -INSERT INTO entity_versions VALUES(244,267,'4.0.0','09/20/2004',' '); -INSERT INTO entity_versions VALUES(245,267,'3.2.8','03/02/2006',' '); -INSERT INTO entity_versions VALUES(246,267,'3.2.7','01/28/2005',' '); -INSERT INTO entity_versions VALUES(247,267,'3.2.6','10/14/2004',' '); -INSERT INTO entity_versions VALUES(248,267,'3.2.5','06/25/2004',' '); -INSERT INTO entity_versions VALUES(249,267,'3.2.4','06/04/2004',' '); -INSERT INTO entity_versions VALUES(250,267,'3.2.3','11/30/2003',' '); -INSERT INTO entity_versions VALUES(251,267,'3.2.2','10/18/2003',' '); -INSERT INTO entity_versions VALUES(252,267,'3.2.1','06/02/2003',' '); -INSERT INTO entity_versions VALUES(253,267,'3.0.8','06/06/2003',' '); -INSERT INTO entity_versions VALUES(254,267,'3.0.7','04/08/2003',' '); -INSERT INTO entity_versions VALUES(255,267,'3.0.6','01/26/2003',' '); -INSERT INTO entity_versions VALUES(256,267,'3.0.5','01/13/2003',' '); -INSERT INTO entity_versions VALUES(257,267,'3.0.4','11/02/2002',' '); -INSERT INTO entity_versions VALUES(258,267,'3.0.3','09/29/2002',' '); -INSERT INTO entity_versions VALUES(259,267,'3.0.2','08/26/2002',' '); -INSERT INTO entity_versions VALUES(260,267,'3.0.1','08/05/2002',' '); -INSERT INTO entity_versions VALUES(261,267,'3.0.0','05/29/2002',' '); -INSERT INTO entity_versions VALUES(262,493,' ',' ',' '); -INSERT INTO entity_versions VALUES(263,271,'4.5','01/29/2015',' '); -INSERT INTO entity_versions VALUES(264,271,'5','04/07/2015',' '); -INSERT INTO entity_versions VALUES(265,137,'2',' ',' '); -INSERT INTO entity_versions VALUES(266,137,'2.3',' ',' '); -INSERT INTO entity_versions VALUES(267,137,'3',' ',' '); -INSERT INTO entity_versions VALUES(268,137,'4',' ',' '); -INSERT INTO entity_versions VALUES(269,137,'4.5',' ',' '); -INSERT INTO entity_versions VALUES(270,137,'5',' ',' '); -INSERT INTO entity_versions VALUES(271,137,'6',' ',' '); -INSERT INTO entity_versions VALUES(272,137,'6i',' ',' '); -INSERT INTO entity_versions VALUES(273,137,'9i',' ',' '); -INSERT INTO entity_versions VALUES(274,137,'10g',' ',' '); -INSERT INTO entity_versions VALUES(275,137,'10gR2',' ',' '); -INSERT INTO entity_versions VALUES(276,137,'11g',' ',' '); -INSERT INTO entity_versions VALUES(277,137,'11gR2',' ',' '); -INSERT INTO entity_versions VALUES(278,137,'12c',' ',' '); -INSERT INTO entity_versions VALUES(279,46,'3','06/21/2004',' '); -INSERT INTO entity_versions VALUES(280,46,'3.1','06/28/2005',' '); -INSERT INTO entity_versions VALUES(281,46,'3.2','06/30/2006',' '); -INSERT INTO entity_versions VALUES(282,46,'3.3','06/29/2007',' '); -INSERT INTO entity_versions VALUES(283,46,'3.4','06/25/2008',' '); -INSERT INTO entity_versions VALUES(284,46,'3.5','06/24/2009',' '); -INSERT INTO entity_versions VALUES(285,46,'3.6','06/23/2010',' '); -INSERT INTO entity_versions VALUES(286,46,'3.7','06/22/2011',' '); -INSERT INTO entity_versions VALUES(287,46,'3.8','06/27/2012',' '); -INSERT INTO entity_versions VALUES(288,46,'4.2','06/27/2012',' '); -INSERT INTO entity_versions VALUES(289,46,'4.3','06/26/2013',' '); -INSERT INTO entity_versions VALUES(290,46,'4.4','06/25/2014',' '); -INSERT INTO entity_versions VALUES(291,46,'4.5','06/24/2015',' '); -INSERT INTO entity_versions VALUES(292,46,'4.6','06/22/2016',' '); -INSERT INTO entity_versions VALUES(293,46,'4.7','06/28/2017',' '); -INSERT INTO entity_versions VALUES(294,46,'4.8','06/27/2018',' '); -INSERT INTO entity_versions VALUES(295,46,'4.9','09/19/2018',' '); -INSERT INTO entity_versions VALUES(296,46,'4.1','12/19/2018',' '); -INSERT INTO entity_versions VALUES(297,46,'4.11','03/20/2019',' '); -INSERT INTO entity_versions VALUES(298,46,'4.12','06/19/2019',' '); -INSERT INTO entity_versions VALUES(299,46,'4.13','09/18/2019',' '); -INSERT INTO entity_versions VALUES(300,46,'4.14','12/18/2019',' '); -INSERT INTO entity_versions VALUES(301,46,'4.15','03/18/2020',' '); -INSERT INTO entity_versions VALUES(302,46,'4.16','06/17/2020',' '); -INSERT INTO entity_versions VALUES(303,46,'4.17','09/16/2020',' '); -INSERT INTO entity_versions VALUES(304,46,'4.18','12/16/2020',' '); -INSERT INTO entity_versions VALUES(305,46,'4.19','03/17/2021',' '); -INSERT INTO entity_versions VALUES(306,46,'4.2','06/16/2021',' '); -INSERT INTO entity_versions VALUES(307,46,'4.21','09/15/2021',' '); -INSERT INTO entity_versions VALUES(308,46,'4.22','12/08/2021',' '); -INSERT INTO entity_versions VALUES(309,176,'7.6','12/31/2006','12/31/2016'); -INSERT INTO entity_versions VALUES(310,176,'7.7','12/31/2008','12/31/2017'); -INSERT INTO entity_versions VALUES(311,176,'7.8','12/31/2010','12/31/2017'); -INSERT INTO entity_versions VALUES(312,176,'7.9',' ',' '); -INSERT INTO entity_versions VALUES(313,70,'7.6.1.2','07/24/2020',' '); -INSERT INTO entity_versions VALUES(314,70,'7.6.0.10','12/14/2018',' '); -INSERT INTO entity_versions VALUES(315,70,'7.5.0.11','10/28/2016',' '); -INSERT INTO entity_versions VALUES(316,70,'7.1.1.13','06/27/2014',' '); -INSERT INTO entity_versions VALUES(317,70,'6.2.8','06/10/2011',' '); -INSERT INTO entity_versions VALUES(318,70,'6.1',' ',' '); -INSERT INTO entity_versions VALUES(319,70,'5.2.9.1','07/03/2009',' '); -INSERT INTO entity_versions VALUES(320,70,'4.1.1 ','06/28/2007',' '); -INSERT INTO entity_versions VALUES(321,135,' ',' ',' '); -INSERT INTO entity_versions VALUES(322,141,' ',' ',' '); -INSERT INTO entity_versions VALUES(323,134,'2.3','12/31/1979',' '); -INSERT INTO entity_versions VALUES(324,134,'3.1.3','12/31/1983',' '); -INSERT INTO entity_versions VALUES(325,134,'4.1.4.0','12/31/1984',' '); -INSERT INTO entity_versions VALUES(326,134,'5.0.22','12/31/1985',' '); -INSERT INTO entity_versions VALUES(327,134,'6.0.17','12/31/1988',' '); -INSERT INTO entity_versions VALUES(328,134,'6.2.0',' ',' '); -INSERT INTO entity_versions VALUES(329,134,'7.0.12','06/30/1992',' '); -INSERT INTO entity_versions VALUES(330,134,'7.1.0','05/31/1994',' '); -INSERT INTO entity_versions VALUES(331,134,'7.2.0','05/31/1995',' '); -INSERT INTO entity_versions VALUES(332,134,'7.3.0','02/28/1996',' '); -INSERT INTO entity_versions VALUES(333,134,'8.0.3','06/30/1997',' '); -INSERT INTO entity_versions VALUES(334,134,'8.1.5.0','12/31/1998','08/31/2000'); -INSERT INTO entity_versions VALUES(335,134,'9.0.1.0','12/31/2001','12/31/2003'); -INSERT INTO entity_versions VALUES(336,134,'9.2.0.1','12/31/2002','04/30/2007'); -INSERT INTO entity_versions VALUES(337,134,'10.1.0.2','12/31/2003','02/28/2006'); -INSERT INTO entity_versions VALUES(338,134,'10.2.0.1','07/31/2005','04/30/2010'); -INSERT INTO entity_versions VALUES(339,134,'11.1.0.6','09/30/2007','09/30/2008'); -INSERT INTO entity_versions VALUES(340,134,'11.2.0.1','09/30/2009','08/31/2013'); -INSERT INTO entity_versions VALUES(341,134,'12.1.0.1','07/31/2013','07/31/2014'); -INSERT INTO entity_versions VALUES(342,134,'12.2.0.1','09/30/2016',' '); -INSERT INTO entity_versions VALUES(343,134,'12.2.0.2','02/28/2018',' '); -INSERT INTO entity_versions VALUES(344,134,'12.2.0.3','02/28/2019',' '); -INSERT INTO entity_versions VALUES(345,134,'21.1','12/31/2020',' '); -INSERT INTO entity_versions VALUES(346,182,'1','12/31/1993',' '); -INSERT INTO entity_versions VALUES(347,182,'2','12/31/1995',' '); -INSERT INTO entity_versions VALUES(348,182,'3','12/31/1997',' '); -INSERT INTO entity_versions VALUES(349,182,'98','12/31/1998',' '); -INSERT INTO entity_versions VALUES(350,182,'99','12/31/1999',' '); -INSERT INTO entity_versions VALUES(351,182,'6','12/31/2000',' '); -INSERT INTO entity_versions VALUES(352,182,'7','12/31/2001',' '); -INSERT INTO entity_versions VALUES(353,182,'7.5','12/31/2002',' '); -INSERT INTO entity_versions VALUES(354,182,'7.7','12/31/2004',' '); -INSERT INTO entity_versions VALUES(355,182,'7.8','12/31/2005',' '); -INSERT INTO entity_versions VALUES(356,182,'8','12/31/2007',' '); -INSERT INTO entity_versions VALUES(357,182,'8.1','12/31/2008',' '); -INSERT INTO entity_versions VALUES(358,182,'8.2','12/31/2011',' '); -INSERT INTO entity_versions VALUES(359,182,'15','05/11/2015',' '); -INSERT INTO entity_versions VALUES(360,182,'16','04/29/2016',' '); -INSERT INTO entity_versions VALUES(361,182,'17','07/31/2017',' '); -INSERT INTO entity_versions VALUES(362,182,'18','01/23/2018',' '); -INSERT INTO entity_versions VALUES(363,182,'19','01/21/2019',' '); -INSERT INTO entity_versions VALUES(364,182,'20','01/21/2020',' '); -INSERT INTO entity_versions VALUES(365,126,'1','08/31/1998',' '); -INSERT INTO entity_versions VALUES(366,126,'1.1','12/31/1998',' '); -INSERT INTO entity_versions VALUES(367,126,'1.2','02/28/1999',' '); -INSERT INTO entity_versions VALUES(368,126,'2','08/31/2000',' '); -INSERT INTO entity_versions VALUES(369,126,'2.1','06/30/2002',' '); -INSERT INTO entity_versions VALUES(370,126,'2.2','12/31/2003',' '); -INSERT INTO entity_versions VALUES(371,126,'2.3','06/30/2005',' '); -INSERT INTO entity_versions VALUES(372,126,'2.4','10/31/2007',' '); -INSERT INTO entity_versions VALUES(373,126,'2.5','04/30/2021',' '); -INSERT INTO entity_versions VALUES(374,77,'1.1','08/31/2009',' '); -INSERT INTO entity_versions VALUES(375,77,'2.1','04/30/2011',' '); -INSERT INTO entity_versions VALUES(376,77,'2.2','05/31/2011',' '); -INSERT INTO entity_versions VALUES(377,77,'3.1','07/12/2021',' '); -INSERT INTO entity_versions VALUES(378,77,'3.2','12/31/2012',' '); -INSERT INTO entity_versions VALUES(379,77,'4.1','01/31/2014',' '); -INSERT INTO entity_versions VALUES(380,77,'4.2','02/28/2014',' '); -INSERT INTO entity_versions VALUES(381,77,'5.1','01/31/2015',' '); -INSERT INTO entity_versions VALUES(382,77,'6.1','10/31/2017',' '); -INSERT INTO entity_versions VALUES(383,77,'6.2','04/30/2019',' '); -INSERT INTO entity_versions VALUES(384,77,'6.3','08/30/2019',' '); -INSERT INTO entity_versions VALUES(385,23,'10.7',' ',' '); -INSERT INTO entity_versions VALUES(386,45,'8.3','04/05/2017',' '); -INSERT INTO entity_versions VALUES(387,45,'8.2','10/05/2016',' '); -INSERT INTO entity_versions VALUES(388,45,'8.1','04/20/2016',' '); -INSERT INTO entity_versions VALUES(389,45,'8','11/19/2015',' '); -INSERT INTO entity_versions VALUES(390,45,'7',' ',' '); -INSERT INTO entity_versions VALUES(391,45,'6','02/13/2008',' '); -INSERT INTO entity_versions VALUES(392,45,'5','01/15/2007',' '); -INSERT INTO entity_versions VALUES(393,45,'4','06/15/2002',' '); -INSERT INTO entity_versions VALUES(394,45,'3','09/15/2001',' '); -INSERT INTO entity_versions VALUES(395,45,'2',' ',' '); -INSERT INTO entity_versions VALUES(396,45,'1','01/15/2001',' '); -INSERT INTO entity_versions VALUES(397,220,'4.4','12/31/2002',' '); -INSERT INTO entity_versions VALUES(398,220,'4.5.1','09/30/2003',' '); -INSERT INTO entity_versions VALUES(399,220,'4.6','07/31/2005',' '); -INSERT INTO entity_versions VALUES(400,220,'5','12/31/2007',' '); -INSERT INTO entity_versions VALUES(401,220,'5.1','06/30/2009',' '); -INSERT INTO entity_versions VALUES(402,90,'2.285','03/23/2021',' '); -INSERT INTO entity_versions VALUES(403,90,'2.286','03/30/2021',' '); -INSERT INTO entity_versions VALUES(404,90,'2.287','04/07/2021',' '); -INSERT INTO entity_versions VALUES(405,90,'2.288','04/11/2021',' '); -INSERT INTO entity_versions VALUES(406,90,'2.289','04/20/2021',' '); -INSERT INTO entity_versions VALUES(407,90,'2.29','04/28/2021',' '); -INSERT INTO entity_versions VALUES(408,90,'2.291','05/04/2021',' '); -INSERT INTO entity_versions VALUES(409,90,'2.292','05/11/2021',' '); -INSERT INTO entity_versions VALUES(410,90,'2.293','05/12/2021',' '); -INSERT INTO entity_versions VALUES(411,90,'2.294','05/25/2021',' '); -INSERT INTO entity_versions VALUES(412,90,'2.295','05/25/2021',' '); -INSERT INTO entity_versions VALUES(413,90,'2.296','06/01/2021',' '); -INSERT INTO entity_versions VALUES(414,90,'2.297','06/08/2021',' '); -INSERT INTO entity_versions VALUES(415,90,'2.298','06/15/2021',' '); -INSERT INTO entity_versions VALUES(416,90,'2.299','06/22/2021',' '); -INSERT INTO entity_versions VALUES(417,90,'2.3','06/30/2021',' '); -INSERT INTO entity_versions VALUES(418,90,'2.301','07/06/2021',' '); -INSERT INTO entity_versions VALUES(419,90,'2.302','07/13/2021',' '); -INSERT INTO entity_versions VALUES(420,90,'2.303','07/20/2021',' '); -INSERT INTO entity_versions VALUES(421,90,'2.304','07/27/2021',' '); -INSERT INTO entity_versions VALUES(422,90,'2.305','08/03/2021',' '); -INSERT INTO entity_versions VALUES(423,90,'2.306','08/10/2021',' '); -INSERT INTO entity_versions VALUES(424,90,'2.307','08/17/2021',' '); -INSERT INTO entity_versions VALUES(425,90,'2.308','08/24/2021',' '); -INSERT INTO entity_versions VALUES(426,90,'2.309','08/30/2021',' '); -INSERT INTO entity_versions VALUES(427,90,'2.31','09/07/2021',' '); -INSERT INTO entity_versions VALUES(428,90,'2.311','09/09/2021',' '); -INSERT INTO entity_versions VALUES(429,90,'2.312','09/14/2021',' '); -INSERT INTO entity_versions VALUES(430,90,'2.313','09/21/2021',' '); -INSERT INTO entity_versions VALUES(431,90,'2.314','09/28/2021',' '); -INSERT INTO entity_versions VALUES(432,97,'10','05/31/2019',' '); -INSERT INTO entity_versions VALUES(433,97,'9','12/31/2017',' '); -INSERT INTO entity_versions VALUES(434,97,'8','12/31/2015',' '); -INSERT INTO entity_versions VALUES(435,97,'7','12/31/2013',' '); -INSERT INTO entity_versions VALUES(436,97,'6','12/31/2012',' '); -INSERT INTO entity_versions VALUES(437,97,'5','12/31/2011',' '); -INSERT INTO entity_versions VALUES(438,97,'4.2','12/31/2010',' '); -INSERT INTO entity_versions VALUES(439,97,'4.1','12/31/2009',' '); -INSERT INTO entity_versions VALUES(440,97,'4','12/31/2008',' '); -INSERT INTO entity_versions VALUES(441,97,'3.2','12/31/2007',' '); -INSERT INTO entity_versions VALUES(442,97,'3.1','12/31/2006',' '); -INSERT INTO entity_versions VALUES(443,97,'3','12/31/2005',' '); -INSERT INTO entity_versions VALUES(444,97,'2','12/31/2004',' '); -INSERT INTO entity_versions VALUES(445,97,'1','12/31/2001',' '); -INSERT INTO entity_versions VALUES(446,98,'1.6.12','09/28/2021',' '); -INSERT INTO entity_versions VALUES(447,98,'1.6.11','09/27/2021',' '); -INSERT INTO entity_versions VALUES(448,98,'1.6.10','07/25/2021',' '); -INSERT INTO entity_versions VALUES(449,98,'1.6.9','11/20/2020',' '); -INSERT INTO entity_versions VALUES(450,98,'1.6.8','10/26/2020',' '); -INSERT INTO entity_versions VALUES(451,98,'1.6.7','09/04/2020',' '); -INSERT INTO entity_versions VALUES(452,98,'1.6.6','05/12/2020',' '); -INSERT INTO entity_versions VALUES(453,98,'1.6.5','04/13/2020',' '); -INSERT INTO entity_versions VALUES(454,98,'1.6.4','04/12/2020',' '); -INSERT INTO entity_versions VALUES(455,98,'1.6.3','03/28/2020',' '); -INSERT INTO entity_versions VALUES(456,98,'1.6.2','03/23/2020',' '); -INSERT INTO entity_versions VALUES(457,98,'1.6.1','03/16/2020',' '); -INSERT INTO entity_versions VALUES(458,98,'1.6.0','03/08/2020',' '); -INSERT INTO entity_versions VALUES(459,98,'1.5.22','02/28/2020',' '); -INSERT INTO entity_versions VALUES(460,98,'1.5.21','01/21/2020',' '); -INSERT INTO entity_versions VALUES(461,98,'1.5.20','11/11/2019',' '); -INSERT INTO entity_versions VALUES(462,98,'1.5.19','09/30/2019',' '); -INSERT INTO entity_versions VALUES(463,98,'1.5.18','09/17/2019',' '); -INSERT INTO entity_versions VALUES(464,98,'1.5.17','08/29/2019',' '); -INSERT INTO entity_versions VALUES(465,98,'1.5.16','05/24/2019',' '); -INSERT INTO entity_versions VALUES(466,98,'1.5.15','05/20/2019',' '); -INSERT INTO entity_versions VALUES(467,98,'1.5.14','04/27/2019',' '); -INSERT INTO entity_versions VALUES(468,98,'1.5.13','04/15/2019',' '); -INSERT INTO entity_versions VALUES(469,98,'1.5.12','11/03/2018',' '); -INSERT INTO entity_versions VALUES(470,98,'1.5.11','10/10/2018',' '); -INSERT INTO entity_versions VALUES(471,98,'1.5.10','08/10/2018',' '); -INSERT INTO entity_versions VALUES(472,98,'1.5.9','07/07/2018',' '); -INSERT INTO entity_versions VALUES(473,98,'1.5.8','05/25/2018',' '); -INSERT INTO entity_versions VALUES(474,98,'1.5.7','03/28/2018',' '); -INSERT INTO entity_versions VALUES(475,98,'1.5.6','02/27/2018',' '); -INSERT INTO entity_versions VALUES(476,98,'1.5.5','02/12/2018',' '); -INSERT INTO entity_versions VALUES(477,98,'1.5.4','12/20/2017',' '); -INSERT INTO entity_versions VALUES(478,98,'1.5.3','11/04/2017',' '); -INSERT INTO entity_versions VALUES(479,98,'1.5.2','09/30/2017',' '); -INSERT INTO entity_versions VALUES(480,98,'1.5.1','08/24/2017',' '); -INSERT INTO entity_versions VALUES(481,98,'1.5.0','07/21/2017',' '); -INSERT INTO entity_versions VALUES(482,98,'1.4.39','07/04/2017',' '); -INSERT INTO entity_versions VALUES(483,98,'1.4.38','06/24/2017',' '); -INSERT INTO entity_versions VALUES(484,98,'1.4.37','06/04/2017',' '); -INSERT INTO entity_versions VALUES(485,98,'1.4.36','03/19/2017',' '); -INSERT INTO entity_versions VALUES(486,98,'1.4.35','02/26/2017',' '); -INSERT INTO entity_versions VALUES(487,98,'1.4.34','01/07/2017',' '); -INSERT INTO entity_versions VALUES(488,98,'1.4.33','10/31/2016',' '); -INSERT INTO entity_versions VALUES(489,98,'1.4.32','10/12/2016',' '); -INSERT INTO entity_versions VALUES(490,98,'1.4.31','08/19/2016',' '); -INSERT INTO entity_versions VALUES(491,98,'1.4.30','08/11/2016',' '); -INSERT INTO entity_versions VALUES(492,98,'1.4.29','07/13/2016',' '); -INSERT INTO entity_versions VALUES(493,98,'1.4.28','07/01/2016',' '); -INSERT INTO entity_versions VALUES(494,98,'1.4.27','06/24/2016',' '); -INSERT INTO entity_versions VALUES(495,98,'1.4.26','06/17/2016',' '); -INSERT INTO entity_versions VALUES(496,98,'1.4.25','11/19/2015',' '); -INSERT INTO entity_versions VALUES(497,98,'1.4.24','04/24/2015',' '); -INSERT INTO entity_versions VALUES(498,98,'1.4.23','04/19/2015',' '); -INSERT INTO entity_versions VALUES(499,98,'1.4.22','12/31/2014',' '); -INSERT INTO entity_versions VALUES(500,98,'1.4.21','10/12/2014',' '); -INSERT INTO entity_versions VALUES(501,98,'1.4.20','05/11/2014',' '); -INSERT INTO entity_versions VALUES(502,98,'1.4.19','05/01/2014',' '); -INSERT INTO entity_versions VALUES(503,98,'1.4.18','04/17/2014',' '); -INSERT INTO entity_versions VALUES(504,98,'1.4.17','12/20/2013',' '); -INSERT INTO entity_versions VALUES(505,98,'1.4.16','12/09/2013',' '); -INSERT INTO entity_versions VALUES(506,98,'1.4.15','09/03/2012',' '); -INSERT INTO entity_versions VALUES(507,98,'1.4.14','07/30/2012',' '); -INSERT INTO entity_versions VALUES(508,98,'1.4.13','02/02/2012',' '); -INSERT INTO entity_versions VALUES(509,98,'1.4.12','02/01/2012',' '); -INSERT INTO entity_versions VALUES(510,98,'1.4.11','01/16/2012',' '); -INSERT INTO entity_versions VALUES(511,98,'1.4.10','11/09/2011',' '); -INSERT INTO entity_versions VALUES(512,98,'1.4.9','10/18/2011',' '); -INSERT INTO entity_versions VALUES(513,98,'1.4.8','10/04/2011',' '); -INSERT INTO entity_versions VALUES(514,98,'1.4.7','08/16/2011',' '); -INSERT INTO entity_versions VALUES(515,98,'1.4.6','07/15/2011',' '); -INSERT INTO entity_versions VALUES(516,98,'1.4.5','04/03/2010',' '); -INSERT INTO entity_versions VALUES(517,98,'1.4.4','11/26/2009',' '); -INSERT INTO entity_versions VALUES(518,98,'1.4.3','11/07/2009',' '); -INSERT INTO entity_versions VALUES(519,98,'1.4.2','10/11/2009',' '); -INSERT INTO entity_versions VALUES(520,98,'1.4.1','08/29/2009',' '); -INSERT INTO entity_versions VALUES(521,98,'1.4.0','07/09/2009',' '); -INSERT INTO entity_versions VALUES(522,120,'1','12/31/1989',' '); -INSERT INTO entity_versions VALUES(523,120,'1.1','12/31/1990',' '); -INSERT INTO entity_versions VALUES(524,120,'4.2A','12/31/1992',' '); -INSERT INTO entity_versions VALUES(525,120,'4.2B','12/31/1993',' '); -INSERT INTO entity_versions VALUES(526,120,'4.21','12/31/1993',' '); -INSERT INTO entity_versions VALUES(527,120,'6','12/31/1995',' '); -INSERT INTO entity_versions VALUES(528,120,'6.5','12/31/1996',' '); -INSERT INTO entity_versions VALUES(529,120,'7','12/31/1998',' '); -INSERT INTO entity_versions VALUES(530,120,'8','12/31/2000','04/08/2008'); -INSERT INTO entity_versions VALUES(531,120,'9','01/14/2006','04/12/2011'); -INSERT INTO entity_versions VALUES(532,120,'10','11/06/2008','07/08/2014'); -INSERT INTO entity_versions VALUES(533,120,'10.25','07/02/1905',' '); -INSERT INTO entity_versions VALUES(534,120,'10.5','07/20/2010','07/08/2014'); -INSERT INTO entity_versions VALUES(535,120,'11','05/20/2012','07/11/2017'); -INSERT INTO entity_versions VALUES(536,120,'12','06/05/2014','07/09/2019'); -INSERT INTO entity_versions VALUES(537,120,'13','06/01/2016','07/13/2021'); -INSERT INTO entity_versions VALUES(538,120,'14','09/29/2017','10/11/2022'); -INSERT INTO entity_versions VALUES(539,120,'15','11/04/2019','01/07/2025'); -INSERT INTO entity_versions VALUES(540,116,'4.4','12/31/2020',' '); -INSERT INTO entity_versions VALUES(541,116,'4.2','12/31/2019',' '); -INSERT INTO entity_versions VALUES(542,116,'4','12/31/2018',' '); -INSERT INTO entity_versions VALUES(543,116,'3.6','12/31/2017',' '); -INSERT INTO entity_versions VALUES(544,116,'3.4','12/31/2016',' '); -INSERT INTO entity_versions VALUES(545,116,'3.2','12/31/2015',' '); -INSERT INTO entity_versions VALUES(546,116,'3','12/31/2015',' '); -INSERT INTO entity_versions VALUES(547,116,'2.6','12/31/2014',' '); -INSERT INTO entity_versions VALUES(548,122,'3.19','12/31/1996',' '); -INSERT INTO entity_versions VALUES(549,122,'3.2','01/31/1997',' '); -INSERT INTO entity_versions VALUES(550,122,'3.21','12/31/1998',' '); -INSERT INTO entity_versions VALUES(551,122,'3.22','12/31/1998',' '); -INSERT INTO entity_versions VALUES(552,122,'3.23','06/30/2000',' '); -INSERT INTO entity_versions VALUES(553,122,'4','08/30/2002',' '); -INSERT INTO entity_versions VALUES(554,122,'4.1','06/30/2004',' '); -INSERT INTO entity_versions VALUES(555,122,'5','03/31/2005',' '); -INSERT INTO entity_versions VALUES(556,122,'5.1','11/27/2008',' '); -INSERT INTO entity_versions VALUES(557,122,'5.5','12/31/2010',' '); -INSERT INTO entity_versions VALUES(558,122,'6','05/22/2009',' '); -INSERT INTO entity_versions VALUES(559,122,'5.6','02/28/2013',' '); -INSERT INTO entity_versions VALUES(560,122,'5.7','10/31/2015',' '); -INSERT INTO entity_versions VALUES(561,122,'8','04/30/2018',' '); -INSERT INTO entity_versions VALUES(562,123,'4.3.5','09/30/2021',' '); -INSERT INTO entity_versions VALUES(563,123,'4.3.4','09/22/2021',' '); -INSERT INTO entity_versions VALUES(564,123,'4.3.3','08/09/2021',' '); -INSERT INTO entity_versions VALUES(565,123,'4.3.2','07/01/2021',' '); -INSERT INTO entity_versions VALUES(566,123,'4.3.1','06/21/2021',' '); -INSERT INTO entity_versions VALUES(567,123,'4.2.11','09/06/2021',' '); -INSERT INTO entity_versions VALUES(568,123,'4.2.10','08/23/2020',' '); -INSERT INTO entity_versions VALUES(569,123,'4.2.9','07/02/2021',' '); -INSERT INTO entity_versions VALUES(570,123,'4.2.8','06/18/2021',' '); -INSERT INTO entity_versions VALUES(571,123,'4.2.7','05/27/2021',' '); -INSERT INTO entity_versions VALUES(572,123,'4.2.6','05/05/2021',' '); -INSERT INTO entity_versions VALUES(573,245,'0.7','05/27/2003',' '); -INSERT INTO entity_versions VALUES(574,245,'1','01/03/2004',' '); -INSERT INTO entity_versions VALUES(575,245,'1.2','05/22/2004',' '); -INSERT INTO entity_versions VALUES(576,245,'1.5','02/17/2005',' '); -INSERT INTO entity_versions VALUES(577,245,'2','12/31/2005',' '); -INSERT INTO entity_versions VALUES(578,245,'2.1','01/22/2007',' '); -INSERT INTO entity_versions VALUES(579,245,'2.2','05/16/2007',' '); -INSERT INTO entity_versions VALUES(580,245,'2.3','09/24/2007',' '); -INSERT INTO entity_versions VALUES(581,245,'2.5','03/29/2008',' '); -INSERT INTO entity_versions VALUES(582,245,'2.6','07/15/2008',' '); -INSERT INTO entity_versions VALUES(583,245,'2.7','12/11/2008',' '); -INSERT INTO entity_versions VALUES(584,245,'2.8','06/10/2009',' '); -INSERT INTO entity_versions VALUES(585,245,'2.9','12/19/2009',' '); -INSERT INTO entity_versions VALUES(586,245,'3','06/17/2010',' '); -INSERT INTO entity_versions VALUES(587,245,'3.1','02/23/2011',' '); -INSERT INTO entity_versions VALUES(588,245,'3.2','07/04/2011',' '); -INSERT INTO entity_versions VALUES(589,245,'3.3','12/12/2011',' '); -INSERT INTO entity_versions VALUES(590,245,'3.4','06/13/2012',' '); -INSERT INTO entity_versions VALUES(591,245,'3.5','12/11/2012',' '); -INSERT INTO entity_versions VALUES(592,245,'3.6','08/01/2013',' '); -INSERT INTO entity_versions VALUES(593,245,'3.7','10/24/2013',' '); -INSERT INTO entity_versions VALUES(594,245,'3.8','12/12/2013',' '); -INSERT INTO entity_versions VALUES(595,245,'3.9','04/16/2014',' '); -INSERT INTO entity_versions VALUES(596,245,'4','09/04/2014',' '); -INSERT INTO entity_versions VALUES(597,245,'4.1','12/18/2014',' '); -INSERT INTO entity_versions VALUES(598,245,'4.2','04/23/2015',' '); -INSERT INTO entity_versions VALUES(599,245,'4.3','08/18/2015',' '); -INSERT INTO entity_versions VALUES(600,245,'4.4','12/08/2015',' '); -INSERT INTO entity_versions VALUES(601,245,'4.5','04/12/2016',' '); -INSERT INTO entity_versions VALUES(602,245,'4.6','08/16/2016',' '); -INSERT INTO entity_versions VALUES(603,245,'4.7','12/06/2016',' '); -INSERT INTO entity_versions VALUES(604,245,'4.8','06/08/2017',' '); -INSERT INTO entity_versions VALUES(605,245,'4.9','11/16/2017',' '); -INSERT INTO entity_versions VALUES(606,245,'5','12/06/2018',' '); -INSERT INTO entity_versions VALUES(607,245,'5.1','02/21/2019',' '); -INSERT INTO entity_versions VALUES(608,245,'5.2','05/07/2019',' '); -INSERT INTO entity_versions VALUES(609,245,'5.3','11/12/2019',' '); -INSERT INTO entity_versions VALUES(610,245,'5.4','03/31/2020',' '); -INSERT INTO entity_versions VALUES(611,245,'5.5','08/11/2020',' '); -INSERT INTO entity_versions VALUES(612,245,'5.6','12/08/2020',' '); -INSERT INTO entity_versions VALUES(613,245,'5.7','03/09/2021',' '); -INSERT INTO entity_versions VALUES(614,245,'5.8','07/20/2021',' '); -INSERT INTO entity_versions VALUES(615,258,'3.37.0',' ',' '); -INSERT INTO entity_versions VALUES(616,258,'3.36.0','06/18/2021',' '); -INSERT INTO entity_versions VALUES(617,258,'3.35.5','04/19/2021',' '); -INSERT INTO entity_versions VALUES(618,258,'3.35.4','04/02/2021',' '); -INSERT INTO entity_versions VALUES(619,258,'3.35.3','03/26/2021',' '); -INSERT INTO entity_versions VALUES(620,258,'3.35.2','03/17/2021',' '); -INSERT INTO entity_versions VALUES(621,258,'3.35.1','03/15/2021',' '); -INSERT INTO entity_versions VALUES(622,258,'3.35.0','03/12/2021',' '); -INSERT INTO entity_versions VALUES(623,258,'3.34.1','01/20/2021',' '); -INSERT INTO entity_versions VALUES(624,258,'3.34.0','12/01/2020',' '); -INSERT INTO entity_versions VALUES(625,258,'3.33.0','08/14/2020',' '); -INSERT INTO entity_versions VALUES(626,258,'3.32.3','06/18/2020',' '); -INSERT INTO entity_versions VALUES(627,258,'3.32.2','06/04/2020',' '); -INSERT INTO entity_versions VALUES(628,258,'3.32.1','05/25/2020',' '); -INSERT INTO entity_versions VALUES(629,258,'3.32.0','05/22/2020',' '); -INSERT INTO entity_versions VALUES(630,258,'3.31.1','01/27/2020',' '); -INSERT INTO entity_versions VALUES(631,258,'3.31.0','01/22/2020',' '); -INSERT INTO entity_versions VALUES(632,258,'3.30.1','10/10/2019',' '); -INSERT INTO entity_versions VALUES(633,258,'3.30.0','10/04/2019',' '); -INSERT INTO entity_versions VALUES(634,258,'3.29.0','07/10/2019',' '); -INSERT INTO entity_versions VALUES(635,258,'3.28.0','04/16/2019',' '); -INSERT INTO entity_versions VALUES(636,258,'3.27.2','02/25/2019',' '); -INSERT INTO entity_versions VALUES(637,258,'3.27.1','02/08/2019',' '); -INSERT INTO entity_versions VALUES(638,258,'3.27.0','02/07/2019',' '); -INSERT INTO entity_versions VALUES(639,258,'3.26.0','12/01/2018',' '); -INSERT INTO entity_versions VALUES(640,258,'3.25.3','11/05/2018',' '); -INSERT INTO entity_versions VALUES(641,258,'3.25.2','09/25/2018',' '); -INSERT INTO entity_versions VALUES(642,258,'3.25.1','09/18/2018',' '); -INSERT INTO entity_versions VALUES(643,258,'3.25.0','09/15/2018',' '); -INSERT INTO entity_versions VALUES(644,258,'3.24.0','06/04/2018',' '); -INSERT INTO entity_versions VALUES(645,258,'3.23.1','04/10/2018',' '); -INSERT INTO entity_versions VALUES(646,258,'3.23.0','04/02/2018',' '); -INSERT INTO entity_versions VALUES(647,258,'3.22.0','01/22/2018',' '); -INSERT INTO entity_versions VALUES(648,258,'3.21.0','10/24/2017',' '); -INSERT INTO entity_versions VALUES(649,258,'3.20.1','08/24/2017',' '); -INSERT INTO entity_versions VALUES(650,258,'3.20.0','08/01/2017',' '); -INSERT INTO entity_versions VALUES(651,258,'3.18.2','06/17/2017',' '); -INSERT INTO entity_versions VALUES(652,258,'3.18.1','06/16/2017',' '); -INSERT INTO entity_versions VALUES(653,258,'3.19.3','06/08/2017',' '); -INSERT INTO entity_versions VALUES(654,258,'3.19.2','05/25/2017',' '); -INSERT INTO entity_versions VALUES(655,258,'3.19.1','05/24/2017',' '); -INSERT INTO entity_versions VALUES(656,258,'3.19.0','05/22/2017',' '); -INSERT INTO entity_versions VALUES(657,258,'3.18.0','03/28/2017',' '); -INSERT INTO entity_versions VALUES(658,258,'3.17.0','02/13/2017',' '); -INSERT INTO entity_versions VALUES(659,258,'3.16.2','01/06/2017',' '); -INSERT INTO entity_versions VALUES(660,258,'3.16.1','01/03/2017',' '); -INSERT INTO entity_versions VALUES(661,258,'3.16.0','01/02/2017',' '); -INSERT INTO entity_versions VALUES(662,258,'3.15.2','11/28/2016',' '); -INSERT INTO entity_versions VALUES(663,258,'3.15.1','11/04/2016',' '); -INSERT INTO entity_versions VALUES(664,258,'3.15.0','10/14/2016',' '); -INSERT INTO entity_versions VALUES(665,258,'3.14.2','09/12/2016',' '); -INSERT INTO entity_versions VALUES(666,258,'3.14.1','08/11/2016',' '); -INSERT INTO entity_versions VALUES(667,258,'3.14','08/08/2016',' '); -INSERT INTO entity_versions VALUES(668,258,'3.13.0','05/18/2016',' '); -INSERT INTO entity_versions VALUES(669,258,'3.12.2','04/18/2016',' '); -INSERT INTO entity_versions VALUES(670,258,'3.12.1','04/08/2016',' '); -INSERT INTO entity_versions VALUES(671,258,'3.9.3','03/31/2016',' '); -INSERT INTO entity_versions VALUES(672,258,'3.12.0','03/29/2016',' '); -INSERT INTO entity_versions VALUES(673,258,'3.11.1','03/03/2016',' '); -INSERT INTO entity_versions VALUES(674,258,'3.11.0','02/15/2016',' '); -INSERT INTO entity_versions VALUES(675,258,'3.10.2','01/20/2016',' '); -INSERT INTO entity_versions VALUES(676,258,'3.10.1','01/14/2016',' '); -INSERT INTO entity_versions VALUES(677,258,'3.10.0','01/06/2016',' '); -INSERT INTO entity_versions VALUES(678,258,'3.9.2','11/02/2015',' '); -INSERT INTO entity_versions VALUES(679,258,'3.9.1','10/16/2015',' '); -INSERT INTO entity_versions VALUES(680,258,'3.9.0','10/14/2015',' '); -INSERT INTO entity_versions VALUES(681,258,'3.8.11.1','07/29/2015',' '); -INSERT INTO entity_versions VALUES(682,258,'3.8.11','07/27/2015',' '); -INSERT INTO entity_versions VALUES(683,258,'3.8.10.2','05/20/2015',' '); -INSERT INTO entity_versions VALUES(684,258,'3.8.10.1','05/09/2015',' '); -INSERT INTO entity_versions VALUES(685,258,'3.8.10','05/07/2015',' '); -INSERT INTO entity_versions VALUES(686,258,'3.8.9','04/08/2015',' '); -INSERT INTO entity_versions VALUES(687,258,'3.8.8.3','02/25/2015',' '); -INSERT INTO entity_versions VALUES(688,258,'3.8.8.2','01/30/2015',' '); -INSERT INTO entity_versions VALUES(689,258,'3.8.8.1','01/20/2015',' '); -INSERT INTO entity_versions VALUES(690,258,'3.8.8','01/16/2015',' '); -INSERT INTO entity_versions VALUES(691,258,'3.8.7.4','12/09/2014',' '); -INSERT INTO entity_versions VALUES(692,258,'3.8.7.3','12/05/2014',' '); -INSERT INTO entity_versions VALUES(693,258,'3.8.7.2','11/18/2014',' '); -INSERT INTO entity_versions VALUES(694,258,'3.8.7.1','10/29/2014',' '); -INSERT INTO entity_versions VALUES(695,258,'3.8.6.1','10/22/2014',' '); -INSERT INTO entity_versions VALUES(696,258,'3.8.7','10/17/2014',' '); -INSERT INTO entity_versions VALUES(697,258,'3.8.6','08/15/2014',' '); -INSERT INTO entity_versions VALUES(698,258,'3.8.5','06/04/2014',' '); -INSERT INTO entity_versions VALUES(699,258,'3.8.4.3','04/03/2014',' '); -INSERT INTO entity_versions VALUES(700,258,'3.8.4.2','03/26/2014',' '); -INSERT INTO entity_versions VALUES(701,258,'3.8.4.1','03/11/2014',' '); -INSERT INTO entity_versions VALUES(702,258,'3.8.4','03/10/2014',' '); -INSERT INTO entity_versions VALUES(703,258,'3.8.3.1','02/11/2014',' '); -INSERT INTO entity_versions VALUES(704,258,'3.8.3','02/03/2014',' '); -INSERT INTO entity_versions VALUES(705,258,'3.8.2','12/06/2013',' '); -INSERT INTO entity_versions VALUES(706,258,'3.8.1','10/17/2013',' '); -INSERT INTO entity_versions VALUES(707,258,'3.8.0.2','09/03/2013',' '); -INSERT INTO entity_versions VALUES(708,258,'3.8.0.1','08/29/2013',' '); -INSERT INTO entity_versions VALUES(709,258,'3.8.0','08/26/2013',' '); -INSERT INTO entity_versions VALUES(710,258,'3.7.17','05/20/2013',' '); -INSERT INTO entity_versions VALUES(711,258,'3.7.16.2','04/12/2013',' '); -INSERT INTO entity_versions VALUES(712,258,'3.7.16.1','03/29/2013',' '); -INSERT INTO entity_versions VALUES(713,258,'3.7.16','03/18/2013',' '); -INSERT INTO entity_versions VALUES(714,258,'3.7.15.2','01/09/2013',' '); -INSERT INTO entity_versions VALUES(715,258,'3.7.15.1','12/19/2012',' '); -INSERT INTO entity_versions VALUES(716,258,'3.7.15','12/12/2012',' '); -INSERT INTO entity_versions VALUES(717,258,'3.7.14.1','10/04/2012',' '); -INSERT INTO entity_versions VALUES(718,258,'3.7.14','09/03/2012',' '); -INSERT INTO entity_versions VALUES(719,258,'3.7.13','06/11/2012',' '); -INSERT INTO entity_versions VALUES(720,258,'3.7.12.1','05/22/2012',' '); -INSERT INTO entity_versions VALUES(721,258,'3.7.12','05/14/2012',' '); -INSERT INTO entity_versions VALUES(722,258,'3.7.12','05/14/2012',' '); -INSERT INTO entity_versions VALUES(723,258,'3.7.12','05/14/2012',' '); -INSERT INTO entity_versions VALUES(724,258,'3.7.11','03/20/2012',' '); -INSERT INTO entity_versions VALUES(725,258,'3.7.10','01/16/2012',' '); -INSERT INTO entity_versions VALUES(726,258,'3.7.9','11/01/2011',' '); -INSERT INTO entity_versions VALUES(727,258,'3.7.8','09/19/2011',' '); -INSERT INTO entity_versions VALUES(728,258,'3.7.7.1','06/28/2011',' '); -INSERT INTO entity_versions VALUES(729,258,'3.7.7','06/23/2011',' '); -INSERT INTO entity_versions VALUES(730,258,'3.7.6.3','05/19/2011',' '); -INSERT INTO entity_versions VALUES(731,258,'3.7.6.2','04/17/2011',' '); -INSERT INTO entity_versions VALUES(732,258,'3.7.6.1','04/13/2011',' '); -INSERT INTO entity_versions VALUES(733,258,'3.7.6','04/12/2011',' '); -INSERT INTO entity_versions VALUES(734,258,'3.7.5','02/01/2011',' '); -INSERT INTO entity_versions VALUES(735,258,'3.7.4','12/07/2010',' '); -INSERT INTO entity_versions VALUES(736,258,'3.7.3','10/08/2010',' '); -INSERT INTO entity_versions VALUES(737,258,'3.7.2','08/24/2010',' '); -INSERT INTO entity_versions VALUES(738,258,'3.7.1','08/23/2010',' '); -INSERT INTO entity_versions VALUES(739,258,'3.7.0.1','08/04/2010',' '); -INSERT INTO entity_versions VALUES(740,258,'3.7.0','07/21/2010',' '); -INSERT INTO entity_versions VALUES(741,258,'3.6.23.1','03/26/2010',' '); -INSERT INTO entity_versions VALUES(742,258,'3.6.23','03/09/2010',' '); -INSERT INTO entity_versions VALUES(743,258,'3.6.22','01/06/2010',' '); -INSERT INTO entity_versions VALUES(744,258,'3.6.21','12/07/2009',' '); -INSERT INTO entity_versions VALUES(745,258,'3.6.20','11/04/2009',' '); -INSERT INTO entity_versions VALUES(746,258,'3.6.16.1','10/30/2009',' '); -INSERT INTO entity_versions VALUES(747,258,'3.6.19','10/14/2009',' '); -INSERT INTO entity_versions VALUES(748,258,'3.6.18','09/11/2009',' '); -INSERT INTO entity_versions VALUES(749,258,'3.6.17','08/10/2009',' '); -INSERT INTO entity_versions VALUES(750,258,'3.6.16','06/27/2009',' '); -INSERT INTO entity_versions VALUES(751,258,'3.6.15','06/15/2009',' '); -INSERT INTO entity_versions VALUES(752,258,'3.6.14.2','05/25/2009',' '); -INSERT INTO entity_versions VALUES(753,258,'3.6.14.1','05/19/2009',' '); -INSERT INTO entity_versions VALUES(754,258,'3.6.14','05/07/2009',' '); -INSERT INTO entity_versions VALUES(755,258,'3.6.13','04/13/2009',' '); -INSERT INTO entity_versions VALUES(756,258,'3.6.12','03/31/2009',' '); -INSERT INTO entity_versions VALUES(757,258,'3.6.11','02/18/2009',' '); -INSERT INTO entity_versions VALUES(758,258,'3.6.10','01/15/2009',' '); -INSERT INTO entity_versions VALUES(759,258,'3.6.9','01/14/2009',' '); -INSERT INTO entity_versions VALUES(760,258,'3.6.8','01/12/2009',' '); -INSERT INTO entity_versions VALUES(761,258,'3.6.7','12/16/2008',' '); -INSERT INTO entity_versions VALUES(762,258,'3.6.6.2','11/26/2008',' '); -INSERT INTO entity_versions VALUES(763,258,'3.6.6.1','11/22/2008',' '); -INSERT INTO entity_versions VALUES(764,258,'3.6.6','11/19/2008',' '); -INSERT INTO entity_versions VALUES(765,258,'3.6.5','11/12/2008',' '); -INSERT INTO entity_versions VALUES(766,258,'3.6.4','10/15/2008',' '); -INSERT INTO entity_versions VALUES(767,258,'3.6.3','09/22/2008',' '); -INSERT INTO entity_versions VALUES(768,258,'3.6.2','08/30/2008',' '); -INSERT INTO entity_versions VALUES(769,258,'3.6.1','08/06/2008',' '); -INSERT INTO entity_versions VALUES(770,258,'3.6.0','07/16/2008',' '); -INSERT INTO entity_versions VALUES(771,258,'3.5.9','05/14/2008',' '); -INSERT INTO entity_versions VALUES(772,258,'3.5.8','04/16/2008',' '); -INSERT INTO entity_versions VALUES(773,258,'3.5.7','03/17/2008',' '); -INSERT INTO entity_versions VALUES(774,258,'3.5.6','02/06/2008',' '); -INSERT INTO entity_versions VALUES(775,258,'3.5.5','01/31/2008',' '); -INSERT INTO entity_versions VALUES(776,258,'3.5.4','12/14/2007',' '); -INSERT INTO entity_versions VALUES(777,258,'3.5.3','11/27/2007',' '); -INSERT INTO entity_versions VALUES(778,258,'3.5.2','11/05/2007',' '); -INSERT INTO entity_versions VALUES(779,258,'3.5.1','10/04/2007',' '); -INSERT INTO entity_versions VALUES(780,258,'3.5.0','09/04/2007',' '); -INSERT INTO entity_versions VALUES(781,258,'3.4.2','08/13/2007',' '); -INSERT INTO entity_versions VALUES(782,258,'3.4.1','07/20/2007',' '); -INSERT INTO entity_versions VALUES(783,258,'3.4.0','06/18/2007',' '); -INSERT INTO entity_versions VALUES(784,258,'3.3.17','04/25/2007',' '); -INSERT INTO entity_versions VALUES(785,258,'3.3.16','04/18/2007',' '); -INSERT INTO entity_versions VALUES(786,258,'3.3.15','04/09/2007',' '); -INSERT INTO entity_versions VALUES(787,258,'3.3.14','04/02/2007',' '); -INSERT INTO entity_versions VALUES(788,258,'3.3.13','02/13/2007',' '); -INSERT INTO entity_versions VALUES(789,258,'3.3.12','01/27/2007',' '); -INSERT INTO entity_versions VALUES(790,258,'3.3.11','01/22/2007',' '); -INSERT INTO entity_versions VALUES(791,258,'3.3.10','01/10/2007',' '); -INSERT INTO entity_versions VALUES(792,258,'3.3.9','01/04/2007',' '); -INSERT INTO entity_versions VALUES(793,258,'3.3.8','10/09/2006',' '); -INSERT INTO entity_versions VALUES(794,258,'3.3.7','08/12/2006',' '); -INSERT INTO entity_versions VALUES(795,258,'3.3.6','06/06/2006',' '); -INSERT INTO entity_versions VALUES(796,258,'3.3.5','04/05/2006',' '); -INSERT INTO entity_versions VALUES(797,258,'3.3.4','02/11/2006',' '); -INSERT INTO entity_versions VALUES(798,258,'3.3.3','01/31/2006',' '); -INSERT INTO entity_versions VALUES(799,258,'3.3.2','01/24/2006',' '); -INSERT INTO entity_versions VALUES(800,258,'3.3.1','01/16/2006',' '); -INSERT INTO entity_versions VALUES(801,258,'3.3.0','01/11/2006',' '); -INSERT INTO entity_versions VALUES(802,258,'2.8.17','12/19/2005',' '); -INSERT INTO entity_versions VALUES(803,258,'3.2.8','12/19/2005',' '); -INSERT INTO entity_versions VALUES(804,258,'3.2.7','09/24/2005',' '); -INSERT INTO entity_versions VALUES(805,258,'3.2.6','09/17/2005',' '); -INSERT INTO entity_versions VALUES(806,258,'3.2.5','08/27/2005',' '); -INSERT INTO entity_versions VALUES(807,258,'3.2.4','08/24/2005',' '); -INSERT INTO entity_versions VALUES(808,258,'3.2.3','08/21/2005',' '); -INSERT INTO entity_versions VALUES(809,258,'3.2.2','06/12/2005',' '); -INSERT INTO entity_versions VALUES(810,258,'3.2.1','03/29/2005',' '); -INSERT INTO entity_versions VALUES(811,258,'3.2.0','03/21/2005',' '); -INSERT INTO entity_versions VALUES(812,258,'3.1.6','03/17/2005',' '); -INSERT INTO entity_versions VALUES(813,258,'3.1.5','03/11/2005',' '); -INSERT INTO entity_versions VALUES(814,258,'3.1.4','03/11/2005',' '); -INSERT INTO entity_versions VALUES(815,258,'3.1.3.1','02/28/2005',' '); -INSERT INTO entity_versions VALUES(816,258,'3.1.3','02/20/2005',' '); -INSERT INTO entity_versions VALUES(817,258,'3.1.2','02/15/2005',' '); -INSERT INTO entity_versions VALUES(818,258,'2.8.16','02/15/2005',' '); -INSERT INTO entity_versions VALUES(819,258,'3.1.1','02/01/2005',' '); -INSERT INTO entity_versions VALUES(820,258,'3.1.0','01/21/2005',' '); -INSERT INTO entity_versions VALUES(821,258,'3.0.8','10/12/2004',' '); -INSERT INTO entity_versions VALUES(822,258,'3.0.7','09/18/2004',' '); -INSERT INTO entity_versions VALUES(823,258,'3.0.6','09/02/2004',' '); -INSERT INTO entity_versions VALUES(824,258,'3.0.5','08/29/2004',' '); -INSERT INTO entity_versions VALUES(825,258,'3.0.4','08/09/2004',' '); -INSERT INTO entity_versions VALUES(826,258,'3.0.3','07/22/2004',' '); -INSERT INTO entity_versions VALUES(827,258,'2.8.15','07/22/2004',' '); -INSERT INTO entity_versions VALUES(828,258,'3.0.2','06/30/2004',' '); -INSERT INTO entity_versions VALUES(829,258,'3.0.1','06/22/2004',' '); -INSERT INTO entity_versions VALUES(830,258,'3.0.0','06/18/2004',' '); -INSERT INTO entity_versions VALUES(831,258,'2.8.14','06/09/2004',' '); -INSERT INTO entity_versions VALUES(832,258,'2.8.13','03/08/2004',' '); -INSERT INTO entity_versions VALUES(833,258,'2.8.12','02/08/2004',' '); -INSERT INTO entity_versions VALUES(834,258,'2.8.11','01/14/2004',' '); -INSERT INTO entity_versions VALUES(835,258,'2.8.10','01/14/2004',' '); -INSERT INTO entity_versions VALUES(836,258,'2.8.9','01/06/2004',' '); -INSERT INTO entity_versions VALUES(837,258,'2.8.8','12/18/2003',' '); -INSERT INTO entity_versions VALUES(838,258,'2.8.7','12/04/2003',' '); -INSERT INTO entity_versions VALUES(839,258,'2.8.6','08/22/2003',' '); -INSERT INTO entity_versions VALUES(840,258,'2.8.5','07/22/2003',' '); -INSERT INTO entity_versions VALUES(841,258,'2.8.4','06/29/2003',' '); -INSERT INTO entity_versions VALUES(842,258,'2.8.3','06/04/2003',' '); -INSERT INTO entity_versions VALUES(843,258,'2.8.2','05/17/2003',' '); -INSERT INTO entity_versions VALUES(844,258,'2.8.1','05/17/2003',' '); -INSERT INTO entity_versions VALUES(845,258,'2.8.0','02/16/2003',' '); -INSERT INTO entity_versions VALUES(846,258,'2.7.6','01/25/2003',' '); -INSERT INTO entity_versions VALUES(847,258,'2.7.5','12/28/2002',' '); -INSERT INTO entity_versions VALUES(848,258,'2.7.4','12/17/2002',' '); -INSERT INTO entity_versions VALUES(849,258,'2.7.3','10/31/2002',' '); -INSERT INTO entity_versions VALUES(850,258,'2.7.2','09/25/2002',' '); -INSERT INTO entity_versions VALUES(851,258,'2.7.1','08/31/2002',' '); -INSERT INTO entity_versions VALUES(852,258,'2.7.0','08/25/2002',' '); -INSERT INTO entity_versions VALUES(853,258,'2.6.3','08/13/2002',' '); -INSERT INTO entity_versions VALUES(854,258,'2.6.2','07/31/2002',' '); -INSERT INTO entity_versions VALUES(855,258,'2.6.1','07/19/2002',' '); -INSERT INTO entity_versions VALUES(856,258,'2.6.0','07/18/2002',' '); -INSERT INTO entity_versions VALUES(857,258,'2.5.6','07/07/2002',' '); -INSERT INTO entity_versions VALUES(858,258,'2.5.5','07/06/2002',' '); -INSERT INTO entity_versions VALUES(859,258,'2.5.4','07/01/2002',' '); -INSERT INTO entity_versions VALUES(860,258,'2.5.3','06/25/2002',' '); -INSERT INTO entity_versions VALUES(861,258,'2.5.2','06/25/2002',' '); -INSERT INTO entity_versions VALUES(862,258,'2.5.1','06/19/2002',' '); -INSERT INTO entity_versions VALUES(863,258,'2.5.0','06/17/2002',' '); -INSERT INTO entity_versions VALUES(864,258,'2.4.12','05/10/2002',' '); -INSERT INTO entity_versions VALUES(865,258,'2.4.11','05/08/2002',' '); -INSERT INTO entity_versions VALUES(866,258,'2.4.10','05/03/2002',' '); -INSERT INTO entity_versions VALUES(867,258,'2.4.9','04/22/2002',' '); -INSERT INTO entity_versions VALUES(868,258,'2.4.8','04/20/2002',' '); -INSERT INTO entity_versions VALUES(869,258,'2.4.7','04/12/2002',' '); -INSERT INTO entity_versions VALUES(870,258,'2.4.6','04/02/2002',' '); -INSERT INTO entity_versions VALUES(871,258,'2.4.5','04/02/2002',' '); -INSERT INTO entity_versions VALUES(872,258,'2.4.4','03/30/2002',' '); -INSERT INTO entity_versions VALUES(873,258,'2.4.3','03/23/2002',' '); -INSERT INTO entity_versions VALUES(874,258,'2.4.2','03/20/2002',' '); -INSERT INTO entity_versions VALUES(875,258,'2.4.1','03/13/2002',' '); -INSERT INTO entity_versions VALUES(876,258,'2.4.1','03/13/2002',' '); -INSERT INTO entity_versions VALUES(877,258,'2.4.0','03/11/2002',' '); -INSERT INTO entity_versions VALUES(878,258,'2.3.3','02/19/2002',' '); -INSERT INTO entity_versions VALUES(879,258,'2.3.2','02/14/2002',' '); -INSERT INTO entity_versions VALUES(880,258,'2.3.1','02/13/2002',' '); -INSERT INTO entity_versions VALUES(881,258,'2.3.0','02/03/2002',' '); -INSERT INTO entity_versions VALUES(882,258,'2.2.5','01/28/2002',' '); -INSERT INTO entity_versions VALUES(883,258,'2.2.4','01/22/2002',' '); -INSERT INTO entity_versions VALUES(884,258,'2.2.3','01/16/2002',' '); -INSERT INTO entity_versions VALUES(885,258,'2.2.2','01/14/2002',' '); -INSERT INTO entity_versions VALUES(886,258,'2.2.1','01/09/2002',' '); -INSERT INTO entity_versions VALUES(887,258,'2.2.0','12/22/2001',' '); -INSERT INTO entity_versions VALUES(888,258,'2.1.7','12/15/2001',' '); -INSERT INTO entity_versions VALUES(889,258,'2.1.6','12/14/2001',' '); -INSERT INTO entity_versions VALUES(890,258,'2.1.5','12/06/2001',' '); -INSERT INTO entity_versions VALUES(891,258,'2.1.4','12/05/2001',' '); -INSERT INTO entity_versions VALUES(892,258,'2.1.3','11/24/2001',' '); -INSERT INTO entity_versions VALUES(893,258,'2.1.2','11/23/2001',' '); -INSERT INTO entity_versions VALUES(894,258,'2.1.1','11/13/2001',' '); -INSERT INTO entity_versions VALUES(895,258,'2.1.0','11/12/2001',' '); -INSERT INTO entity_versions VALUES(896,258,'2.0.8','11/04/2001',' '); -INSERT INTO entity_versions VALUES(897,258,'2.0.7','10/22/2001',' '); -INSERT INTO entity_versions VALUES(898,258,'2.0.6','10/19/2001',' '); -INSERT INTO entity_versions VALUES(899,258,'2.0.5','10/15/2001',' '); -INSERT INTO entity_versions VALUES(900,258,'2.0.4','10/13/2001',' '); -INSERT INTO entity_versions VALUES(901,258,'2.0.3','10/13/2001',' '); -INSERT INTO entity_versions VALUES(902,258,'2.0.2','10/09/2001',' '); -INSERT INTO entity_versions VALUES(903,258,'2.0.1','10/02/2001',' '); -INSERT INTO entity_versions VALUES(904,258,'2.0.0','09/28/2001',' '); -INSERT INTO entity_versions VALUES(905,258,'1.0.32','07/23/2001',' '); -INSERT INTO entity_versions VALUES(906,258,'1.0.31','04/15/2001',' '); -INSERT INTO entity_versions VALUES(907,258,'1.0.30','04/06/2001',' '); -INSERT INTO entity_versions VALUES(908,258,'1.0.29','04/05/2001',' '); -INSERT INTO entity_versions VALUES(909,258,'1.0.28','04/04/2001',' '); -INSERT INTO entity_versions VALUES(910,258,'1.0.27','03/20/2001',' '); -INSERT INTO entity_versions VALUES(911,258,'1.0.26','03/20/2001',' '); -INSERT INTO entity_versions VALUES(912,258,'1.0.25','03/15/2001',' '); -INSERT INTO entity_versions VALUES(913,258,'1.0.24','03/14/2001',' '); -INSERT INTO entity_versions VALUES(914,258,'1.0.23','02/20/2001',' '); -INSERT INTO entity_versions VALUES(915,258,'1.0.22','02/19/2001',' '); -INSERT INTO entity_versions VALUES(916,258,'1.0.21','02/19/2001',' '); -INSERT INTO entity_versions VALUES(917,258,'1.0.20','02/11/2001',' '); -INSERT INTO entity_versions VALUES(918,258,'1.0.19','02/06/2001',' '); -INSERT INTO entity_versions VALUES(919,258,'1.0.18','01/04/2001',' '); -INSERT INTO entity_versions VALUES(920,258,'1.0.17','12/10/2000',' '); -INSERT INTO entity_versions VALUES(921,258,'1.0.16','11/28/2000',' '); -INSERT INTO entity_versions VALUES(922,258,'1.0.15','10/23/2000',' '); -INSERT INTO entity_versions VALUES(923,258,'1.0.14','10/19/2000',' '); -INSERT INTO entity_versions VALUES(924,258,'1.0.13','10/19/2000',' '); -INSERT INTO entity_versions VALUES(925,258,'1.0.12','10/17/2000',' '); -INSERT INTO entity_versions VALUES(926,258,'1.0.10','10/11/2000',' '); -INSERT INTO entity_versions VALUES(927,258,'1.0.9','10/09/2000',' '); -INSERT INTO entity_versions VALUES(928,258,'1.0.8','09/30/2000',' '); -INSERT INTO entity_versions VALUES(929,258,'1.0.5','09/14/2000',' '); -INSERT INTO entity_versions VALUES(930,258,'1.0.4','08/28/2000',' '); -INSERT INTO entity_versions VALUES(931,258,'1.0.3','08/22/2000',' '); -INSERT INTO entity_versions VALUES(932,258,'1.0.1','08/18/2000',' '); -INSERT INTO entity_versions VALUES(933,258,'1','08/17/2000',' '); -INSERT INTO entity_versions VALUES(934,14,'18',' ',' '); -INSERT INTO entity_versions VALUES(935,14,'17',' ',' '); -INSERT INTO entity_versions VALUES(936,14,'16',' ',' '); -INSERT INTO entity_versions VALUES(937,14,'13',' ',' '); -INSERT INTO entity_versions VALUES(938,14,'1.2','11/21/2005','11/21/2010'); -INSERT INTO entity_versions VALUES(939,14,'1.4','12/23/2006','04/21/2012'); -INSERT INTO entity_versions VALUES(940,14,'1.6.0','10/01/2008','10/01/2010'); -INSERT INTO entity_versions VALUES(941,14,'1.6.1','04/27/2009','04/27/2011'); -INSERT INTO entity_versions VALUES(942,14,'1.6.2','12/18/2009','04/21/2012'); -INSERT INTO entity_versions VALUES(943,14,'1.8','10/21/2010','10/21/2015'); -INSERT INTO entity_versions VALUES(944,14,'10','12/15/2011','12/15/2013'); -INSERT INTO entity_versions VALUES(945,14,'11','10/25/2012','10/25/2017'); -INSERT INTO entity_versions VALUES(946,14,'12','12/20/2013','12/20/2015'); -INSERT INTO entity_versions VALUES(947,14,'13','10/24/2014','10/24/2019'); -INSERT INTO entity_versions VALUES(948,14,'14','10/01/2015','10/31/2017'); -INSERT INTO entity_versions VALUES(949,14,'15','10/01/2016','10/31/2021'); -INSERT INTO entity_versions VALUES(950,5,'1','02/20/2012',' '); -INSERT INTO entity_versions VALUES(951,5,'4.6.0','09/21/2021',' '); -INSERT INTO entity_versions VALUES(952,319,'1','12/31/1998',' '); -INSERT INTO entity_versions VALUES(953,319,'3','06/08/2017',' '); -INSERT INTO entity_versions VALUES(954,131,'21.1','05/12/2021',' '); -INSERT INTO entity_versions VALUES(955,131,'20.2','10/21/2020',' '); -INSERT INTO entity_versions VALUES(956,131,'20.1','04/23/2020',' '); -INSERT INTO entity_versions VALUES(957,131,'19.2','11/01/2019',' '); -INSERT INTO entity_versions VALUES(958,131,'19.1','03/21/2019',' '); -INSERT INTO entity_versions VALUES(959,131,'18.2','09/28/2018',' '); -INSERT INTO entity_versions VALUES(960,131,'18.1','05/24/2018',' '); -INSERT INTO entity_versions VALUES(961,131,'5.1.4','12/17/2017',' '); -INSERT INTO entity_versions VALUES(962,131,'5.1','12/21/2016',' '); -INSERT INTO entity_versions VALUES(963,19,'9.1.04','12/05/2017',' '); -INSERT INTO entity_versions VALUES(964,19,'9.1.03','06/09/2017',' '); -INSERT INTO entity_versions VALUES(965,19,'9.1.02','12/05/2016',' '); -INSERT INTO entity_versions VALUES(966,19,'9.1.01','06/23/2016',' '); -INSERT INTO entity_versions VALUES(967,19,'9.1.00','12/22/2015',' '); -INSERT INTO entity_versions VALUES(968,170,'1.1','02/21/2012',' '); -INSERT INTO entity_versions VALUES(969,170,'1.4','07/10/2013',' '); -INSERT INTO entity_versions VALUES(970,170,'2','09/02/2014',' '); -INSERT INTO entity_versions VALUES(971,170,'2.1','04/16/2015',' '); -INSERT INTO entity_versions VALUES(972,170,'2.2','11/17/2016',' '); -INSERT INTO entity_versions VALUES(973,170,'2.2.5','04/26/2018',' '); -INSERT INTO entity_versions VALUES(974,8,'2.3.8','01/17/2021',' '); -INSERT INTO entity_versions VALUES(975,8,'2.3.7','04/18/2020',' '); -INSERT INTO entity_versions VALUES(976,8,'3.1.2','08/26/2019',' '); -INSERT INTO entity_versions VALUES(977,8,'2.3.6','08/23/2019',' '); -INSERT INTO entity_versions VALUES(978,8,'2.3.5','05/14/2019',' '); -INSERT INTO entity_versions VALUES(979,8,'2.3.4','11/07/2018',' '); -INSERT INTO entity_versions VALUES(980,8,'3.1.1','11/01/2018',' '); -INSERT INTO entity_versions VALUES(981,8,'3.1.0','07/30/2018',' '); -INSERT INTO entity_versions VALUES(982,8,'3.0.0','05/21/2018',' '); -INSERT INTO entity_versions VALUES(983,8,'2.3.3','04/03/2018',' '); -INSERT INTO entity_versions VALUES(984,8,'2.3.2','11/18/2017',' '); -INSERT INTO entity_versions VALUES(985,8,'2.3.1','08/24/2017',' '); -INSERT INTO entity_versions VALUES(986,8,'2.2.0','07/25/2017',' '); -INSERT INTO entity_versions VALUES(987,8,'2.3.0','07/17/2017',' '); -INSERT INTO entity_versions VALUES(988,8,'1.2.2','04/07/2017',' '); -INSERT INTO entity_versions VALUES(989,8,'2.1.1','12/08/2016',' '); -INSERT INTO entity_versions VALUES(990,8,'2.1.0','06/20/2016',' '); -INSERT INTO entity_versions VALUES(991,8,'2.0.1','05/25/2016',' '); -INSERT INTO entity_versions VALUES(992,8,'2.0.0','02/15/2016',' '); -INSERT INTO entity_versions VALUES(993,8,'1.2.1','06/27/2015',' '); -INSERT INTO entity_versions VALUES(994,8,'1.1.1','05/21/2015',' '); -INSERT INTO entity_versions VALUES(995,8,'1.0.1','05/21/2015',' '); -INSERT INTO entity_versions VALUES(996,8,'0.14.0','11/12/2014',' '); -INSERT INTO entity_versions VALUES(997,8,'0.13.0','04/21/2014',' '); -INSERT INTO entity_versions VALUES(998,8,'0.12.0','10/15/2013',' '); -INSERT INTO entity_versions VALUES(999,8,'0.11.0','05/15/2013',' '); -INSERT INTO entity_versions VALUES(1000,8,'0.10.0','01/11/2013',' '); -INSERT INTO entity_versions VALUES(1001,175,'1','07/02/1905','06/01/2021'); -INSERT INTO entity_versions VALUES(1002,175,'2','06/26/2020',' '); -INSERT INTO entity_versions VALUES(1003,180,'2.1.0','07/06/2020',' '); -INSERT INTO entity_versions VALUES(1004,180,'2.0.1','07/06/2020',' '); -INSERT INTO entity_versions VALUES(1005,180,'1.8.0','07/06/2020',' '); -INSERT INTO entity_versions VALUES(1006,180,'1.7.1','07/06/2020',' '); -INSERT INTO entity_versions VALUES(1007,180,'1.7.0','10/04/2017',' '); -INSERT INTO entity_versions VALUES(1008,180,'1.6.0','04/06/2016',' '); -INSERT INTO entity_versions VALUES(1009,180,'1.5.1','04/06/2016',' '); -INSERT INTO entity_versions VALUES(1010,180,'1.4.0','04/06/2016',' '); -INSERT INTO entity_versions VALUES(1011,180,'1.3.0','04/06/2016',' '); -INSERT INTO entity_versions VALUES(1012,180,'1.2.0','04/06/2016',' '); -INSERT INTO entity_versions VALUES(1013,186,'9.1','07/31/2021',' '); -INSERT INTO entity_versions VALUES(1014,186,'9','06/30/2021',' '); -INSERT INTO entity_versions VALUES(1015,186,'8.9','05/04/2021',' '); -INSERT INTO entity_versions VALUES(1016,168,'6.2.4','08/31/2021',' '); -INSERT INTO entity_versions VALUES(1017,168,'6.0.20','04/30/2021',' '); -INSERT INTO entity_versions VALUES(1018,168,'6.0.12','01/31/2021',' '); -INSERT INTO entity_versions VALUES(1019,168,'6.0.8','09/30/2020',' '); -INSERT INTO entity_versions VALUES(1020,168,'6','05/31/2020',' '); -INSERT INTO entity_versions VALUES(1021,168,'5.6.0','04/30/2020',' '); -INSERT INTO entity_versions VALUES(1022,168,'5.5','04/30/2019',' '); -INSERT INTO entity_versions VALUES(1023,168,'5.4.14','02/28/2020',' '); -INSERT INTO entity_versions VALUES(1024,168,'5.4.10','12/31/2019',' '); -INSERT INTO entity_versions VALUES(1025,168,'5.4.6','07/31/2019',' '); -INSERT INTO entity_versions VALUES(1026,168,'5.4.4','06/30/2019',' '); -INSERT INTO entity_versions VALUES(1027,168,'5.4.2','04/28/2019',' '); -INSERT INTO entity_versions VALUES(1028,168,'5.4','12/31/2018',' '); -INSERT INTO entity_versions VALUES(1029,168,'5.2.2','08/31/2018',' '); -INSERT INTO entity_versions VALUES(1030,168,'5.2','07/31/2018',' '); -INSERT INTO entity_versions VALUES(1031,168,'5.0.2','06/30/2018',' '); -INSERT INTO entity_versions VALUES(1032,168,'5','03/31/2018',' '); -INSERT INTO entity_versions VALUES(1033,168,'4.5','05/31/2017',' '); -INSERT INTO entity_versions VALUES(1034,168,'4.4','12/31/2016',' '); -INSERT INTO entity_versions VALUES(1035,168,'4.3','08/02/2016',' '); -INSERT INTO entity_versions VALUES(1036,168,'4.2.1','10/18/2015',' '); -INSERT INTO entity_versions VALUES(1037,168,'4','06/18/2015',' '); -INSERT INTO entity_versions VALUES(1038,165,'3.9.7','09/24/2021',' '); -INSERT INTO entity_versions VALUES(1039,165,'3.8.23','09/24/2021',' '); -INSERT INTO entity_versions VALUES(1040,165,'3.9.6','09/16/2021',' '); -INSERT INTO entity_versions VALUES(1041,165,'3.9.5','08/30/2021',' '); -INSERT INTO entity_versions VALUES(1042,165,'3.8.22','08/30/2021',' '); -INSERT INTO entity_versions VALUES(1043,165,'3.9.4','08/17/2021',' '); -INSERT INTO entity_versions VALUES(1044,165,'3.9.3','08/12/2021',' '); -INSERT INTO entity_versions VALUES(1045,165,'3.8.21','08/12/2021',' '); -INSERT INTO entity_versions VALUES(1046,165,'3.9.2','08/09/2021',' '); -INSERT INTO entity_versions VALUES(1047,165,'3.8.20','08/09/2021',' '); -INSERT INTO entity_versions VALUES(1048,165,'3.9.1','07/30/2021',' '); -INSERT INTO entity_versions VALUES(1049,165,'3.9.0','07/23/2021',' '); -INSERT INTO entity_versions VALUES(1050,165,'3.8.19','07/05/2021',' '); -INSERT INTO entity_versions VALUES(1051,165,'3.8.18','06/25/2021',' '); -INSERT INTO entity_versions VALUES(1052,165,'3.8.17','06/08/2021',' '); -INSERT INTO entity_versions VALUES(1053,165,'3.8.16','05/04/2021',' '); -INSERT INTO entity_versions VALUES(1054,165,'3.8.15','05/03/2021',' '); -INSERT INTO entity_versions VALUES(1055,165,'3.8.14','03/02/2021',' '); -INSERT INTO entity_versions VALUES(1056,165,'3.8.13','02/27/2021',' '); -INSERT INTO entity_versions VALUES(1057,165,'3.8.12','02/16/2021',' '); -INSERT INTO entity_versions VALUES(1058,165,'3.8.11','01/22/2021',' '); -INSERT INTO entity_versions VALUES(1059,165,'3.8.10','01/19/2021',' '); -INSERT INTO entity_versions VALUES(1060,165,'3.8.9','09/28/2020',' '); -INSERT INTO entity_versions VALUES(1061,165,'3.8.8','09/03/2020',' '); -INSERT INTO entity_versions VALUES(1062,165,'3.8.7','08/17/2020',' '); -INSERT INTO entity_versions VALUES(1063,165,'3.7.28','08/17/2020',' '); -INSERT INTO entity_versions VALUES(1064,165,'3.8.6','08/04/2020',' '); -INSERT INTO entity_versions VALUES(1065,165,'3.7.27','07/25/2020',' '); -INSERT INTO entity_versions VALUES(1066,165,'3.8.5','06/15/2020',' '); -INSERT INTO entity_versions VALUES(1067,165,'3.8.4','05/25/2020',' '); -INSERT INTO entity_versions VALUES(1068,165,'3.7.26','05/04/2020',' '); -INSERT INTO entity_versions VALUES(1069,165,'3.7.25','04/09/2020',' '); -INSERT INTO entity_versions VALUES(1070,165,'3.8.3','03/10/2020',' '); -INSERT INTO entity_versions VALUES(1071,165,'3.7.24','02/13/2020',' '); -INSERT INTO entity_versions VALUES(1072,165,'3.7.23','12/05/2019',' '); -INSERT INTO entity_versions VALUES(1073,165,'3.8.2','12/02/2019',' '); -INSERT INTO entity_versions VALUES(1074,165,'3.7.22','11/27/2019',' '); -INSERT INTO entity_versions VALUES(1075,165,'3.8.1','10/31/2019',' '); -INSERT INTO entity_versions VALUES(1076,165,'3.7.21','10/31/2019',' '); -INSERT INTO entity_versions VALUES(1077,165,'3.7.20','10/25/2019',' '); -INSERT INTO entity_versions VALUES(1078,165,'3.7.19','10/02/2019',' '); -INSERT INTO entity_versions VALUES(1079,165,'3.8.0','10/01/2019',' '); -INSERT INTO entity_versions VALUES(1080,165,'3.7.18','09/18/2019',' '); -INSERT INTO entity_versions VALUES(1081,165,'3.7.17','07/29/2019',' '); -INSERT INTO entity_versions VALUES(1082,165,'3.7.16','07/08/2019',' '); -INSERT INTO entity_versions VALUES(1083,165,'3.7.15','05/20/2019',' '); -INSERT INTO entity_versions VALUES(1084,165,'3.7.14','03/29/2019',' '); -INSERT INTO entity_versions VALUES(1085,165,'3.7.13','03/08/2019',' '); -INSERT INTO entity_versions VALUES(1086,165,'3.7.12','02/15/2019',' '); -INSERT INTO entity_versions VALUES(1087,165,'3.7.11','01/31/2019',' '); -INSERT INTO entity_versions VALUES(1088,165,'3.7.10','01/07/2019',' '); -INSERT INTO entity_versions VALUES(1089,165,'3.7.9','11/16/2018',' '); -INSERT INTO entity_versions VALUES(1090,165,'3.7.8','09/20/2018',' '); -INSERT INTO entity_versions VALUES(1091,165,'3.7.7','07/05/2018',' '); -INSERT INTO entity_versions VALUES(1092,165,'3.7.6','06/13/2018',' '); -INSERT INTO entity_versions VALUES(1093,165,'3.6.16','06/13/2018',' '); -INSERT INTO entity_versions VALUES(1094,165,'3.7.5','05/09/2018',' '); -INSERT INTO entity_versions VALUES(1095,165,'3.7.4','03/08/2018',' '); -INSERT INTO entity_versions VALUES(1096,165,'3.7.3','01/30/2018',' '); -INSERT INTO entity_versions VALUES(1097,165,'3.6.15','01/17/2018',' '); -INSERT INTO entity_versions VALUES(1098,165,'3.7.2','12/23/2017',' '); -INSERT INTO entity_versions VALUES(1099,165,'3.7.1','12/21/2017',' '); -INSERT INTO entity_versions VALUES(1100,165,'3.7.0','11/29/2017',' '); -INSERT INTO entity_versions VALUES(1101,165,'3.6.14','11/07/2017',' '); -INSERT INTO entity_versions VALUES(1102,165,'3.6.13','11/06/2017',' '); -INSERT INTO entity_versions VALUES(1103,165,'3.6.12','09/11/2017',' '); -INSERT INTO entity_versions VALUES(1104,165,'3.6.11','08/16/2017',' '); -INSERT INTO entity_versions VALUES(1105,165,'3.6.10','05/25/2017',' '); -INSERT INTO entity_versions VALUES(1106,165,'3.6.9','03/29/2017',' '); -INSERT INTO entity_versions VALUES(1107,165,'3.6.8','03/17/2017',' '); -INSERT INTO entity_versions VALUES(1108,165,'3.6.7','03/15/2017',' '); -INSERT INTO entity_versions VALUES(1109,165,'3.6.6','11/21/2016',' '); -INSERT INTO entity_versions VALUES(1110,165,'3.5.8','11/21/2016',' '); -INSERT INTO entity_versions VALUES(1111,165,'3.6.5','08/05/2016',' '); -INSERT INTO entity_versions VALUES(1112,165,'3.6.4','07/29/2016',' '); -INSERT INTO entity_versions VALUES(1113,165,'3.6.3','07/06/2016',' '); -INSERT INTO entity_versions VALUES(1114,165,'3.6.2','05/19/2016',' '); -INSERT INTO entity_versions VALUES(1115,165,'3.6.1','03/01/2016',' '); -INSERT INTO entity_versions VALUES(1116,165,'3.6.0','12/22/2015',' '); -INSERT INTO entity_versions VALUES(1117,165,'3.5.7','12/15/2015',' '); -INSERT INTO entity_versions VALUES(1118,165,'3.5.6','10/07/2015',' '); -INSERT INTO entity_versions VALUES(1119,165,'3.5.5','09/24/2015',' '); -INSERT INTO entity_versions VALUES(1120,165,'3.5.4','07/22/2015',' '); -INSERT INTO entity_versions VALUES(1121,165,'3.5.3','05/22/2015',' '); -INSERT INTO entity_versions VALUES(1122,165,'3.5.2','05/12/2015',' '); -INSERT INTO entity_versions VALUES(1123,165,'3.5.1','04/03/2015',' '); -INSERT INTO entity_versions VALUES(1124,165,'3.5.0','03/11/2015',' '); -INSERT INTO entity_versions VALUES(1125,165,'3.4.4','02/11/2015',' '); -INSERT INTO entity_versions VALUES(1126,165,'3.4.3','01/07/2015',' '); -INSERT INTO entity_versions VALUES(1127,165,'3.4.2','11/26/2014',' '); -INSERT INTO entity_versions VALUES(1128,165,'3.4.1','10/29/2014',' '); -INSERT INTO entity_versions VALUES(1129,165,'3.4.0','10/21/2014',' '); -INSERT INTO entity_versions VALUES(1130,165,'3.3.5','08/11/2014',' '); -INSERT INTO entity_versions VALUES(1131,165,'3.3.4','06/24/2014',' '); -INSERT INTO entity_versions VALUES(1132,165,'3.3.3','06/17/2014',' '); -INSERT INTO entity_versions VALUES(1133,165,'3.3.2','06/09/2014',' '); -INSERT INTO entity_versions VALUES(1134,165,'3.3.1','04/29/2014',' '); -INSERT INTO entity_versions VALUES(1135,165,'3.3.0','04/02/2014',' '); -INSERT INTO entity_versions VALUES(1136,165,'3.2.4','03/04/2014',' '); -INSERT INTO entity_versions VALUES(1137,165,'3.2.3','01/23/2014',' '); -INSERT INTO entity_versions VALUES(1138,165,'3.2.2','12/11/2013',' '); -INSERT INTO entity_versions VALUES(1139,165,'3.2.1','11/07/2013',' '); -INSERT INTO entity_versions VALUES(1140,165,'3.2.0','10/23/2013',' '); -INSERT INTO entity_versions VALUES(1141,165,'3.1.5','08/15/2013',' '); -INSERT INTO entity_versions VALUES(1142,165,'3.1.4','08/07/2013',' '); -INSERT INTO entity_versions VALUES(1143,165,'3.1.3','06/26/2013',' '); -INSERT INTO entity_versions VALUES(1144,165,'3.1.2','06/24/2013',' '); -INSERT INTO entity_versions VALUES(1145,165,'3.1.1','05/21/2013',' '); -INSERT INTO entity_versions VALUES(1146,165,'3.1.0','05/01/2013',' '); -INSERT INTO entity_versions VALUES(1147,165,'3.0.4','03/12/2013',' '); -INSERT INTO entity_versions VALUES(1148,165,'3.0.3','03/06/2013',' '); -INSERT INTO entity_versions VALUES(1149,165,'3.0.2','01/31/2013',' '); -INSERT INTO entity_versions VALUES(1150,165,'3.0.1','12/11/2012',' '); -INSERT INTO entity_versions VALUES(1151,165,'3.0.0','11/19/2012',' '); -INSERT INTO entity_versions VALUES(1152,165,'2.8.7','09/27/2012',' '); -INSERT INTO entity_versions VALUES(1153,165,'2.8.6','08/22/2012',' '); -INSERT INTO entity_versions VALUES(1154,165,'2.8.5','08/02/2012',' '); -INSERT INTO entity_versions VALUES(1155,165,'2.8.4','06/22/2012',' '); -INSERT INTO entity_versions VALUES(1156,165,'2.8.3','06/21/2012',' '); -INSERT INTO entity_versions VALUES(1157,165,'2.8.2','04/30/2012',' '); -INSERT INTO entity_versions VALUES(1158,165,'2.8.1','03/22/2012',' '); -INSERT INTO entity_versions VALUES(1159,165,'2.8.0','03/19/2012',' '); -INSERT INTO entity_versions VALUES(1160,165,'2.7.1','12/20/2011',' '); -INSERT INTO entity_versions VALUES(1161,165,'2.7.0','11/09/2011',' '); -INSERT INTO entity_versions VALUES(1162,165,'2.6.1','09/12/2011',' '); -INSERT INTO entity_versions VALUES(1163,165,'2.6.0','08/31/2011',' '); -INSERT INTO entity_versions VALUES(1164,165,'2.5.1','06/27/2011',' '); -INSERT INTO entity_versions VALUES(1165,165,'2.5.0','06/14/2011',' '); -INSERT INTO entity_versions VALUES(1166,165,'2.4.1','04/07/2011',' '); -INSERT INTO entity_versions VALUES(1167,165,'2.4.0','03/23/2011',' '); -INSERT INTO entity_versions VALUES(1168,165,'2.3.1','02/03/2011',' '); -INSERT INTO entity_versions VALUES(1169,165,'2.3.0','02/02/2011',' '); -INSERT INTO entity_versions VALUES(1170,165,'2.2.0','11/30/2010',' '); -INSERT INTO entity_versions VALUES(1171,165,'2.1.1','10/20/2010',' '); -INSERT INTO entity_versions VALUES(1172,165,'2.1.0','09/15/2010',' '); -INSERT INTO entity_versions VALUES(1173,165,'2.0.0','08/25/2010',' '); -INSERT INTO entity_versions VALUES(1174,165,'1.8.1','07/15/2010',' '); -INSERT INTO entity_versions VALUES(1175,165,'1.8.0','06/16/2010',' '); -INSERT INTO entity_versions VALUES(1176,165,'1.7.2','02/16/2010',' '); -INSERT INTO entity_versions VALUES(1177,165,'1.7.1','01/25/2010',' '); -INSERT INTO entity_versions VALUES(1178,165,'1.7.0','10/07/2009',' '); -INSERT INTO entity_versions VALUES(1179,165,'1.6.0','06/17/2009',' '); -INSERT INTO entity_versions VALUES(1180,165,'1.5.5','05/30/2009',' '); -INSERT INTO entity_versions VALUES(1181,165,'1.5.4','04/06/2009',' '); -INSERT INTO entity_versions VALUES(1182,165,'1.5.3','02/24/2009',' '); -INSERT INTO entity_versions VALUES(1183,165,'1.5.1','01/21/2009',' '); -INSERT INTO entity_versions VALUES(1184,165,'1.5.0','12/18/2008',' '); -INSERT INTO entity_versions VALUES(1185,165,'1.4.0','07/30/2008',' '); -INSERT INTO entity_versions VALUES(1186,165,'1.3.0','04/01/2008',' '); -INSERT INTO entity_versions VALUES(1187,165,'1.2.0','09/27/2007',' '); -INSERT INTO entity_versions VALUES(1188,165,'1.1.1','08/29/2007',' '); -INSERT INTO entity_versions VALUES(1189,165,'1.1.0','08/01/2007',' '); -INSERT INTO entity_versions VALUES(1190,165,'1.0.0','02/08/2007',' '); -INSERT INTO entity_versions VALUES(1191,9,'3.0.0','09/21/2021',' '); -INSERT INTO entity_versions VALUES(1192,9,'2.8.1','09/18/2021',' '); -INSERT INTO entity_versions VALUES(1193,9,'2.8.0','04/19/2021',' '); -INSERT INTO entity_versions VALUES(1194,9,'2.7.1','05/10/2020',' '); -INSERT INTO entity_versions VALUES(1195,9,'2.7.0','12/21/2020',' '); -INSERT INTO entity_versions VALUES(1196,9,'2.6.2','04/20/2021',' '); -INSERT INTO entity_versions VALUES(1197,9,'2.6.1','01/07/2021',' '); -INSERT INTO entity_versions VALUES(1198,9,'2.6.0','08/03/2020',' '); -INSERT INTO entity_versions VALUES(1199,9,'2.5.1','08/10/2020',' '); -INSERT INTO entity_versions VALUES(1200,9,'2.5.0','04/15/2020',' '); -INSERT INTO entity_versions VALUES(1201,9,'2.4.1','03/12/2020',' '); -INSERT INTO entity_versions VALUES(1202,9,'2.4.0','12/16/2019',' '); -INSERT INTO entity_versions VALUES(1203,9,'2.3.1','08/24/2019',' '); -INSERT INTO entity_versions VALUES(1204,9,'2.3.0','06/25/2019',' '); -INSERT INTO entity_versions VALUES(1205,9,'2.2.2','12/01/2019',' '); -INSERT INTO entity_versions VALUES(1206,9,'2.2.1','06/01/2019',' '); -INSERT INTO entity_versions VALUES(1207,9,'2.2.0','03/22/2019',' '); -INSERT INTO entity_versions VALUES(1208,9,'2.1.1','02/15/2019',' '); -INSERT INTO entity_versions VALUES(1209,9,'2.1.0','11/20/2018',' '); -INSERT INTO entity_versions VALUES(1210,9,'2.0.1','11/09/2018',' '); -INSERT INTO entity_versions VALUES(1211,9,'2.0.0','06/30/2018',' '); -INSERT INTO entity_versions VALUES(1212,9,'1.1.1','07/19/2018',' '); -INSERT INTO entity_versions VALUES(1213,9,'1.1.0','03/28/2018',' '); -INSERT INTO entity_versions VALUES(1214,9,'1.0.2','07/08/2018',' '); -INSERT INTO entity_versions VALUES(1215,9,'1.0.1','03/05/2018',' '); -INSERT INTO entity_versions VALUES(1216,9,'1.0.0','11/01/2017',' '); -INSERT INTO entity_versions VALUES(1217,9,'0.11.0','06/28/2017',' '); -INSERT INTO entity_versions VALUES(1218,9,'0.10.0','05/22/2016',' '); -INSERT INTO entity_versions VALUES(1219,9,'0.9.0','11/23/2015',' '); -INSERT INTO entity_versions VALUES(1220,9,'0.8.0','03/12/2014',' '); -INSERT INTO entity_versions VALUES(1221,9,'0.7.0','01/04/2012',' '); -INSERT INTO entity_versions VALUES(1222,157,'6','01/29/1997',' '); -INSERT INTO entity_versions VALUES(1223,157,'6.1','06/08/1997',' '); -INSERT INTO entity_versions VALUES(1224,157,'6.2','10/02/1997',' '); -INSERT INTO entity_versions VALUES(1225,157,'6.3','03/01/1998','03/01/2003'); -INSERT INTO entity_versions VALUES(1226,157,'6.4','10/30/1998','10/30/2003'); -INSERT INTO entity_versions VALUES(1227,157,'6.5','06/09/1999','06/09/2004'); -INSERT INTO entity_versions VALUES(1228,157,'7','05/08/2000','05/08/2004'); -INSERT INTO entity_versions VALUES(1229,157,'7.1','04/13/2001','04/13/2006'); -INSERT INTO entity_versions VALUES(1230,157,'7.2','02/04/2002','02/04/2007'); -INSERT INTO entity_versions VALUES(1231,157,'7.3','11/27/2002','11/27/2007'); -INSERT INTO entity_versions VALUES(1232,157,'7.4','11/17/2003','10/01/2010'); -INSERT INTO entity_versions VALUES(1233,157,'8','01/19/2005','10/01/2010'); -INSERT INTO entity_versions VALUES(1234,157,'8.1','11/08/2005','11/08/2010'); -INSERT INTO entity_versions VALUES(1235,157,'8.2','12/05/2006','12/05/2011'); -INSERT INTO entity_versions VALUES(1236,157,'8.3','02/04/2008','02/07/2013'); -INSERT INTO entity_versions VALUES(1237,157,'8.4','07/01/2009','07/24/2014'); -INSERT INTO entity_versions VALUES(1238,157,'9','09/20/2010','10/08/2015'); -INSERT INTO entity_versions VALUES(1239,157,'9.1','09/12/2011','10/27/2016'); -INSERT INTO entity_versions VALUES(1240,157,'9.2','09/10/2012','11/09/2017'); -INSERT INTO entity_versions VALUES(1241,157,'9.3','09/09/2013','11/08/2018'); -INSERT INTO entity_versions VALUES(1242,157,'9.4','12/18/2014','02/13/2020'); -INSERT INTO entity_versions VALUES(1243,157,'9.5','01/07/2016','02/11/2021'); -INSERT INTO entity_versions VALUES(1244,157,'9.6','09/29/2016','11/11/2021'); -INSERT INTO entity_versions VALUES(1245,157,'10','10/05/2017','11/10/2022'); -INSERT INTO entity_versions VALUES(1246,157,'11','10/18/2018','11/09/2023'); -INSERT INTO entity_versions VALUES(1247,157,'12','10/03/2019','11/14/2024'); -INSERT INTO entity_versions VALUES(1248,157,'13','09/24/2020','11/13/2025'); -INSERT INTO entity_versions VALUES(1249,157,'14','09/30/2021','11/12/2026'); -INSERT INTO entity_versions VALUES(1250,21,'1.0','03/01/2005',' '); -INSERT INTO entity_versions VALUES(1251,21,'1','06/06/2005',' '); -INSERT INTO entity_versions VALUES(1252,21,'1.0.1','07/31/2005',' '); -INSERT INTO entity_versions VALUES(1253,21,'2','01/23/2006',' '); -INSERT INTO entity_versions VALUES(1254,21,'2.0.1','02/22/2006',' '); -INSERT INTO entity_versions VALUES(1255,21,'2.1','06/28/2006',' '); -INSERT INTO entity_versions VALUES(1256,21,'2.0.2','08/04/2006',' '); -INSERT INTO entity_versions VALUES(1257,21,'2.1.1','09/26/2006',' '); -INSERT INTO entity_versions VALUES(1258,21,'2.1.2','02/27/2007',' '); -INSERT INTO entity_versions VALUES(1259,21,'2.1.3','07/05/2007',' '); -INSERT INTO entity_versions VALUES(1260,21,'2.2','06/28/2007',' '); -INSERT INTO entity_versions VALUES(1261,21,'2.2.1','10/02/2007',' '); -INSERT INTO entity_versions VALUES(1262,21,'2.2.1.1','11/01/2007',' '); -INSERT INTO entity_versions VALUES(1263,21,'2.2.2','02/27/2008',' '); -INSERT INTO entity_versions VALUES(1264,21,'2.3','06/25/2008',' '); -INSERT INTO entity_versions VALUES(1265,21,'2.3.1','09/24/2008',' '); -INSERT INTO entity_versions VALUES(1266,21,'2.3.2','02/25/2009',' '); -INSERT INTO entity_versions VALUES(1267,21,'2.5','06/24/2009',' '); -INSERT INTO entity_versions VALUES(1268,21,'2.5.1','09/25/2009',' '); -INSERT INTO entity_versions VALUES(1269,21,'2.5.2','02/28/2010',' '); -INSERT INTO entity_versions VALUES(1270,21,'2.6','06/24/2010',' '); -INSERT INTO entity_versions VALUES(1271,21,'2.6.1','09/17/2010',' '); -INSERT INTO entity_versions VALUES(1272,21,'2.6.2','02/25/2011',' '); -INSERT INTO entity_versions VALUES(1273,21,'3.7','06/22/2011',' '); -INSERT INTO entity_versions VALUES(1274,21,'3.7.1','09/23/2011',' '); -INSERT INTO entity_versions VALUES(1275,21,'3.7.2','02/24/2012',' '); -INSERT INTO entity_versions VALUES(1276,21,'4.2.0','06/27/2012',' '); -INSERT INTO entity_versions VALUES(1277,21,'4.2.1','09/28/2012',' '); -INSERT INTO entity_versions VALUES(1278,21,'4.2.2','02/22/2013',' '); -INSERT INTO entity_versions VALUES(1279,21,'4.3','06/26/2013',' '); -INSERT INTO entity_versions VALUES(1280,21,'4.3.1','09/27/2013',' '); -INSERT INTO entity_versions VALUES(1281,21,'4.3.2','02/28/2014',' '); -INSERT INTO entity_versions VALUES(1282,21,'4.4.0','06/25/2014',' '); -INSERT INTO entity_versions VALUES(1283,21,'4.4.1','09/26/2014',' '); -INSERT INTO entity_versions VALUES(1284,21,'4.4.2','02/27/2015',' '); -INSERT INTO entity_versions VALUES(1285,21,'4.5.0','06/24/2015',' '); -INSERT INTO entity_versions VALUES(1286,21,'4.6.0','06/22/2016',' '); -INSERT INTO entity_versions VALUES(1287,21,'4.7.0','06/28/2017',' '); -INSERT INTO entity_versions VALUES(1288,21,'4.8.0','06/27/2018',' '); -INSERT INTO entity_versions VALUES(1289,21,'4.9.0','06/16/2021',' '); -INSERT INTO entity_versions VALUES(1290,55,'94','09/21/2021',' '); -INSERT INTO entity_versions VALUES(1291,55,'93','08/31/2021',' '); -INSERT INTO entity_versions VALUES(1292,55,'92','06/20/2021',' '); -INSERT INTO entity_versions VALUES(1293,55,'91','05/25/2021',' '); -INSERT INTO entity_versions VALUES(1294,55,'90','04/14/2021',' '); -INSERT INTO entity_versions VALUES(1295,55,'89','03/09/2021',' '); -INSERT INTO entity_versions VALUES(1296,55,'88','01/19/2021',' '); -INSERT INTO entity_versions VALUES(1297,55,'87','11/17/2020',' '); -INSERT INTO entity_versions VALUES(1298,55,'86','10/06/2020',' '); -INSERT INTO entity_versions VALUES(1299,55,'85','08/25/2020',' '); -INSERT INTO entity_versions VALUES(1300,55,'84','07/14/2020',' '); -INSERT INTO entity_versions VALUES(1301,55,'83','05/19/2020',' '); -INSERT INTO entity_versions VALUES(1302,55,'81','04/07/2020',' '); -INSERT INTO entity_versions VALUES(1303,55,'80','02/04/2020',' '); -INSERT INTO entity_versions VALUES(1304,55,'79','12/11/2019',' '); -INSERT INTO entity_versions VALUES(1305,55,'78','10/22/2019',' '); -INSERT INTO entity_versions VALUES(1306,55,'77','09/10/2019',' '); -INSERT INTO entity_versions VALUES(1307,55,'76','06/30/2019',' '); -INSERT INTO entity_versions VALUES(1308,55,'75','06/04/2019',' '); -INSERT INTO entity_versions VALUES(1309,55,'74','04/23/2019',' '); -INSERT INTO entity_versions VALUES(1310,55,'73','03/12/2019',' '); -INSERT INTO entity_versions VALUES(1311,55,'72','01/29/2019',' '); -INSERT INTO entity_versions VALUES(1312,55,'71','12/04/2018',' '); -INSERT INTO entity_versions VALUES(1313,55,'70','10/16/2018',' '); -INSERT INTO entity_versions VALUES(1314,55,'69','09/04/2018',' '); -INSERT INTO entity_versions VALUES(1315,55,'68','07/24/2018',' '); -INSERT INTO entity_versions VALUES(1316,55,'67','05/29/2018',' '); -INSERT INTO entity_versions VALUES(1317,55,'66','04/17/2018',' '); -INSERT INTO entity_versions VALUES(1318,55,'65','03/06/2018',' '); -INSERT INTO entity_versions VALUES(1319,55,'64','01/23/2018',' '); -INSERT INTO entity_versions VALUES(1320,55,'63','12/05/2017',' '); -INSERT INTO entity_versions VALUES(1321,55,'62','10/17/2017',' '); -INSERT INTO entity_versions VALUES(1322,55,'61','09/05/2017',' '); -INSERT INTO entity_versions VALUES(1323,55,'60','07/25/2017',' '); -INSERT INTO entity_versions VALUES(1324,55,'59','05/30/2017',' '); -INSERT INTO entity_versions VALUES(1325,55,'58','04/18/2017',' '); -INSERT INTO entity_versions VALUES(1326,55,'57','03/07/2017',' '); -INSERT INTO entity_versions VALUES(1327,150,'9.3','12/31/2022',' '); -INSERT INTO entity_versions VALUES(1328,150,'9.2','08/31/2021',' '); -INSERT INTO entity_versions VALUES(1329,150,'9.1','10/31/2020','08/01/2022'); -INSERT INTO entity_versions VALUES(1330,150,'9.0','02/28/2020','10/01/2021'); -INSERT INTO entity_versions VALUES(1331,150,'8.3','07/31/2019','07/01/2023'); -INSERT INTO entity_versions VALUES(1332,150,'8.2','11/30/2018','02/01/2021'); -INSERT INTO entity_versions VALUES(1333,150,'8.1','05/31/2018','02/01/2021'); -INSERT INTO entity_versions VALUES(1334,150,'8.0','11/30/2017','02/01/2021'); -INSERT INTO entity_versions VALUES(1335,150,'7.1','04/30/2017','02/01/2021'); -INSERT INTO entity_versions VALUES(1336,27,'20210923171324','09/30/2021',' '); -INSERT INTO entity_versions VALUES(1337,27,'20210907035717','10/30/2021',' '); -INSERT INTO entity_versions VALUES(1338,27,'20210824134201','08/30/2021',' '); -INSERT INTO entity_versions VALUES(1339,27,'20210813114337','08/30/2021',' '); -INSERT INTO entity_versions VALUES(1340,27,'20210727104144','08/30/2021',' '); -INSERT INTO entity_versions VALUES(1341,27,'20210720135142','07/30/2021',' '); -INSERT INTO entity_versions VALUES(1342,27,'20210713164523','07/30/2021',' '); -INSERT INTO entity_versions VALUES(1343,27,'20210629161835','07/30/2021',' '); -INSERT INTO entity_versions VALUES(1344,27,'20210616033549','06/30/2021',' '); -INSERT INTO entity_versions VALUES(1345,27,'20210601124849','06/30/2021',' '); -INSERT INTO entity_versions VALUES(1346,27,'20210526024943','05/30/2021',' '); -INSERT INTO entity_versions VALUES(1347,27,'20210518074441','05/30/2021',' '); -INSERT INTO entity_versions VALUES(1348,27,'20210504084406','05/30/2021',' '); -INSERT INTO entity_versions VALUES(1349,27,'20210420090302','04/30/2021',' '); -INSERT INTO entity_versions VALUES(1350,27,'20210406040048','04/30/2021',' '); -INSERT INTO entity_versions VALUES(1351,27,'20210324172345','03/30/2021',' '); -INSERT INTO entity_versions VALUES(1352,27,'20210309093358','03/30/2021',' '); -INSERT INTO entity_versions VALUES(1353,27,'20210219171521','03/30/2021',' '); -INSERT INTO entity_versions VALUES(1354,27,'20210129162733','02/28/2021',' '); -INSERT INTO entity_versions VALUES(1355,27,'20210125155346','01/30/2021',' '); -INSERT INTO entity_versions VALUES(1356,27,'20210112001354','01/30/2021',' '); -INSERT INTO entity_versions VALUES(1357,27,'20201230192246','01/30/2021',' '); -INSERT INTO entity_versions VALUES(1358,27,'20201127104018','12/30/2020',' '); -INSERT INTO entity_versions VALUES(1359,27,'20201106153948','11/30/2020',' '); -INSERT INTO entity_versions VALUES(1360,27,'20201020140427','11/30/2020',' '); -INSERT INTO entity_versions VALUES(1361,27,'20201012185603','10/30/2020',' '); -INSERT INTO entity_versions VALUES(1362,27,'20201005173827','10/30/2020',' '); -INSERT INTO entity_versions VALUES(1363,27,'20200922182722','09/30/2020',' '); -INSERT INTO entity_versions VALUES(1364,27,'20200908235050','09/30/2020',' '); -INSERT INTO entity_versions VALUES(1365,27,'20200831163517','09/30/2020',' '); -INSERT INTO entity_versions VALUES(1366,27,'20200816214709','08/30/2020',' '); -INSERT INTO entity_versions VALUES(1367,27,'20200811175306','08/30/2020',' '); -INSERT INTO entity_versions VALUES(1368,27,'20200807155122','08/30/2020',' '); -INSERT INTO entity_versions VALUES(1369,27,'20200728181447','07/30/2020',' '); -INSERT INTO entity_versions VALUES(1370,27,'20200707173044','07/30/2020',' '); -INSERT INTO entity_versions VALUES(1371,27,'20200701215317','07/30/2020',' '); -INSERT INTO entity_versions VALUES(1372,27,'20200617215626','06/30/2020',' '); -INSERT INTO entity_versions VALUES(1373,27,'20200610173731','06/30/2020',' '); -INSERT INTO entity_versions VALUES(1374,27,'20200603114954','06/30/2020',' '); -INSERT INTO entity_versions VALUES(1375,27,'20200529133631','06/30/2020',' '); -INSERT INTO entity_versions VALUES(1376,27,'20200520145933','05/30/2020',' '); -INSERT INTO entity_versions VALUES(1377,27,'20200513205422','05/30/2020',' '); -INSERT INTO entity_versions VALUES(1378,27,'20200506172513','05/30/2020',' '); -INSERT INTO entity_versions VALUES(1379,27,'20200429153636','05/30/2020',' '); -INSERT INTO entity_versions VALUES(1380,27,'20200420162758','04/30/2020',' '); -INSERT INTO entity_versions VALUES(1381,27,'20200416222158','04/30/2020',' '); -INSERT INTO entity_versions VALUES(1382,27,'20200408145843','04/30/2020',' '); -INSERT INTO entity_versions VALUES(1383,27,'20200325163209','03/30/2020',' '); -INSERT INTO entity_versions VALUES(1384,27,'20200316122114','03/30/2020',' '); -INSERT INTO entity_versions VALUES(1385,27,'20200310163217','03/30/2020',' '); -INSERT INTO entity_versions VALUES(1386,27,'20200303183409','03/30/2020',' '); -INSERT INTO entity_versions VALUES(1387,27,'20200220011437','02/28/2020',' '); -INSERT INTO entity_versions VALUES(1388,27,'20200131232134','02/28/2020',' '); -INSERT INTO entity_versions VALUES(1389,27,'20200127203438','02/28/2020',' '); -INSERT INTO entity_versions VALUES(1390,27,'20200123225613','01/30/2020',' '); -INSERT INTO entity_versions VALUES(1391,27,'20200115001116','01/30/2020',' '); -INSERT INTO entity_versions VALUES(1392,27,'20191211163405','12/30/2019',' '); -INSERT INTO entity_versions VALUES(1393,27,'20191129172405','12/30/2019',' '); -INSERT INTO entity_versions VALUES(1394,27,'20191104205453','11/30/2019',' '); -INSERT INTO entity_versions VALUES(1395,27,'20191030224959','11/30/2019',' '); -INSERT INTO entity_versions VALUES(1396,27,'20191024135531','10/30/2019',' '); -INSERT INTO entity_versions VALUES(1397,27,'20191015190829','10/30/2019',' '); -INSERT INTO entity_versions VALUES(1398,27,'20191007115919','10/30/2019',' '); -INSERT INTO entity_versions VALUES(1399,27,'20191001203421','10/30/2019',' '); -INSERT INTO entity_versions VALUES(1400,27,'20190904132002','09/30/2019',' '); -INSERT INTO entity_versions VALUES(1401,27,'20190827222442','09/30/2019',' '); -INSERT INTO entity_versions VALUES(1402,27,'20190820163418','08/30/2019',' '); -INSERT INTO entity_versions VALUES(1403,27,'20190813170406','08/30/2019',' '); -INSERT INTO entity_versions VALUES(1404,27,'20190806202030','08/30/2019',' '); -INSERT INTO entity_versions VALUES(1405,27,'20190729085402','08/30/2019',' '); -INSERT INTO entity_versions VALUES(1406,27,'20190722200451','07/30/2019',' '); -INSERT INTO entity_versions VALUES(1407,27,'20190717161024','07/30/2019',' '); -INSERT INTO entity_versions VALUES(1408,27,'20190711110747','07/30/2019',' '); -INSERT INTO entity_versions VALUES(1409,27,'20190628200755','07/30/2019',' '); -INSERT INTO entity_versions VALUES(1410,27,'20190617144820','06/30/2019',' '); -INSERT INTO entity_versions VALUES(1411,27,'20190610211245','06/30/2019',' '); -INSERT INTO entity_versions VALUES(1412,27,'20190605190944','06/30/2019',' '); -INSERT INTO entity_versions VALUES(1413,27,'20190513175357','05/30/2019',' '); -INSERT INTO entity_versions VALUES(1414,27,'20190506101326','05/30/2019',' '); -INSERT INTO entity_versions VALUES(1415,27,'20190501153509','05/30/2019',' '); -INSERT INTO entity_versions VALUES(1416,27,'20190422213145','04/30/2019',' '); -INSERT INTO entity_versions VALUES(1417,27,'20190415203801','04/30/2019',' '); -INSERT INTO entity_versions VALUES(1418,27,'20190410001346','04/30/2019',' '); -INSERT INTO entity_versions VALUES(1419,27,'20190325233053','04/30/2019',' '); -INSERT INTO entity_versions VALUES(1420,27,'20190304193624','03/30/2019',' '); -INSERT INTO entity_versions VALUES(1421,27,'20190225235742','03/30/2019',' '); -INSERT INTO entity_versions VALUES(1422,27,'20190207004055','02/28/2019',' '); -INSERT INTO entity_versions VALUES(1423,27,'20190131011635','02/28/2019',' '); -INSERT INTO entity_versions VALUES(1424,27,'20190124232144','01/30/2019',' '); -INSERT INTO entity_versions VALUES(1425,27,'20190116225739','01/30/2019',' '); -INSERT INTO entity_versions VALUES(1426,27,'20181212095204','12/30/2018',' '); -INSERT INTO entity_versions VALUES(1427,27,'20181203095916','12/30/2018',' '); -INSERT INTO entity_versions VALUES(1428,27,'20181126154627','12/30/2018',' '); -INSERT INTO entity_versions VALUES(1429,27,'20181118185209','11/30/2018',' '); -INSERT INTO entity_versions VALUES(1430,27,'20181112131523','11/30/2018',' '); -INSERT INTO entity_versions VALUES(1431,27,'20181029174254','11/30/2018',' '); -INSERT INTO entity_versions VALUES(1432,27,'20181020020209','10/30/2018',' '); -INSERT INTO entity_versions VALUES(1433,27,'20181015112149','10/30/2018',' '); -INSERT INTO entity_versions VALUES(1434,27,'20181011135231','10/30/2018',' '); -INSERT INTO entity_versions VALUES(1435,27,'20181001090525','10/30/2018',' '); -INSERT INTO entity_versions VALUES(1436,27,'20180920223835','09/30/2018',' '); -INSERT INTO entity_versions VALUES(1437,27,'20180912124609','09/30/2018',' '); -INSERT INTO entity_versions VALUES(1438,27,'20180831173550','09/30/2018',' '); -INSERT INTO entity_versions VALUES(1439,27,'20180827132056','08/30/2018',' '); -INSERT INTO entity_versions VALUES(1440,27,'20180817182829','08/30/2018',' '); -INSERT INTO entity_versions VALUES(1441,27,'20180810152540','08/30/2018',' '); -INSERT INTO entity_versions VALUES(1442,27,'20180807052402','08/30/2018',' '); -INSERT INTO entity_versions VALUES(1443,27,'20180806202947','08/30/2018',' '); -INSERT INTO entity_versions VALUES(1444,27,'20180803154514','08/30/2018',' '); -INSERT INTO entity_versions VALUES(1445,27,'20180802181335','08/30/2018',' '); -INSERT INTO entity_versions VALUES(1446,27,'20180728222031','07/30/2018',' '); -INSERT INTO entity_versions VALUES(1447,27,'20180720170058','07/30/2018',' '); -INSERT INTO entity_versions VALUES(1448,27,'20180717131009','07/30/2018',' '); -INSERT INTO entity_versions VALUES(1449,27,'20180714142423','07/30/2018',' '); -INSERT INTO entity_versions VALUES(1450,27,'20180706210448','07/30/2018',' '); -INSERT INTO entity_versions VALUES(1451,27,'20180629132035','07/30/2018',' '); -INSERT INTO entity_versions VALUES(1452,27,'20180621090851','06/30/2018',' '); -INSERT INTO entity_versions VALUES(1453,27,'20180615105327','06/30/2018',' '); -INSERT INTO entity_versions VALUES(1454,27,'20180608102534','06/30/2018',' '); -INSERT INTO entity_versions VALUES(1455,27,'20180604124326','06/30/2018',' '); -INSERT INTO entity_versions VALUES(1456,27,'20180519154949','05/30/2018',' '); -INSERT INTO entity_versions VALUES(1457,27,'20180514204156','05/30/2018',' '); -INSERT INTO entity_versions VALUES(1458,27,'20180504185246','05/30/2018',' '); -INSERT INTO entity_versions VALUES(1459,27,'20180501212258','05/30/2018',' '); -INSERT INTO entity_versions VALUES(1460,27,'20180430173459','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1461,27,'20180424200344','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1462,27,'20180424150704','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1463,27,'20180420141712','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1464,27,'20180416135645','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1465,27,'20180406143035','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1466,27,'20180403044658','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1467,27,'20180326145220','03/30/2018',' '); -INSERT INTO entity_versions VALUES(1468,27,'20180322085330','03/30/2018',' '); -INSERT INTO entity_versions VALUES(1469,27,'20180319150121','03/30/2018',' '); -INSERT INTO entity_versions VALUES(1470,249,'5','11/15/2016',' '); -INSERT INTO entity_versions VALUES(1471,249,'4.5','03/07/2016',' '); -INSERT INTO entity_versions VALUES(1472,249,'4','05/05/2015','05/08/2017'); -INSERT INTO entity_versions VALUES(1473,249,'3.5','05/27/2014','09/30/2016'); -INSERT INTO entity_versions VALUES(1474,249,'3.1','12/19/2013','06/10/2016'); -INSERT INTO entity_versions VALUES(1475,249,'3','07/17/2013','06/10/2016'); -INSERT INTO entity_versions VALUES(1476,249,'2','12/16/2012','06/10/2016'); -INSERT INTO entity_versions VALUES(1477,308,'5','06/12/1905',' '); -INSERT INTO entity_versions VALUES(1478,308,'5.01','04/15/1991',' '); -INSERT INTO entity_versions VALUES(1479,308,'5.2','02/15/1993',' '); -INSERT INTO entity_versions VALUES(1480,308,'5.2a','03/15/1993',' '); -INSERT INTO entity_versions VALUES(1481,308,'5.2b','06/25/1993',' '); -INSERT INTO entity_versions VALUES(1482,308,'5.2c','08/06/1993',' '); -INSERT INTO entity_versions VALUES(1483,308,'5.2d','03/25/1994',' '); -INSERT INTO entity_versions VALUES(1484,308,'5.2e','02/07/1995',' '); -INSERT INTO entity_versions VALUES(1485,308,'5.3','06/26/1995',' '); -INSERT INTO entity_versions VALUES(1486,308,'5.3a','05/20/1996',' '); -INSERT INTO entity_versions VALUES(1487,308,'5.3b','05/20/1997',' '); -INSERT INTO entity_versions VALUES(1488,230,'10','06/21/2017',' '); -INSERT INTO entity_versions VALUES(1489,230,'10.1','03/20/2019',' '); -INSERT INTO entity_versions VALUES(1490,230,'10.2','01/30/2019',' '); -INSERT INTO entity_versions VALUES(1491,230,'10.3','08/23/2019',' '); -INSERT INTO entity_versions VALUES(1492,230,'11','04/02/2020',' '); -INSERT INTO entity_versions VALUES(1493,230,'11.1','05/07/2020',' '); -INSERT INTO entity_versions VALUES(1494,230,'11.2','08/29/2020',' '); -INSERT INTO entity_versions VALUES(1495,230,'11.3','06/17/2021',' '); -INSERT INTO entity_versions VALUES(1496,246,' ',' ',' '); -INSERT INTO entity_versions VALUES(1497,3,'6','05/31/2017',' '); -INSERT INTO entity_versions VALUES(1498,178,'3','12/31/1992',' '); -INSERT INTO entity_versions VALUES(1499,178,'4','12/31/1994',' '); -INSERT INTO entity_versions VALUES(1500,178,'5','12/31/1995',' '); -INSERT INTO entity_versions VALUES(1501,178,'6','12/31/1998',' '); -INSERT INTO entity_versions VALUES(1502,178,'6.0.2','12/31/1999',' '); -INSERT INTO entity_versions VALUES(1503,178,'7','12/31/2000',' '); -INSERT INTO entity_versions VALUES(1504,178,'8','12/31/2001',' '); -INSERT INTO entity_versions VALUES(1505,178,'9','12/31/2003',' '); -INSERT INTO entity_versions VALUES(1506,178,'10','12/31/2006',' '); -INSERT INTO entity_versions VALUES(1507,178,'11','12/31/2008',' '); -INSERT INTO entity_versions VALUES(1508,178,'12','12/31/2010',' '); -INSERT INTO entity_versions VALUES(1509,178,'16','12/31/2015',' '); -INSERT INTO entity_versions VALUES(1510,178,'17','12/31/2021',' '); -INSERT INTO entity_versions VALUES(1511,232,'8.2.04',' ',' '); -INSERT INTO entity_versions VALUES(1512,10,'5','02/21/2017',' '); -INSERT INTO entity_versions VALUES(1513,10,'6','05/22/2017',' '); -INSERT INTO entity_versions VALUES(1514,10,'7','05/22/2017',' '); -INSERT INTO entity_versions VALUES(1515,365,'8.1','04/30/1999',' '); -INSERT INTO entity_versions VALUES(1516,365,'8.2','08/18/1999',' '); -INSERT INTO entity_versions VALUES(1517,365,'8.3','02/10/2000',' '); -INSERT INTO entity_versions VALUES(1518,365,'8.4','09/30/2002',' '); -INSERT INTO entity_versions VALUES(1519,365,'8.5','12/31/2007',' '); -INSERT INTO entity_versions VALUES(1520,365,'8.6','12/31/2012',' '); -INSERT INTO entity_versions VALUES(1521,365,'7.6','10/16/1996',' '); -INSERT INTO entity_versions VALUES(1522,365,'7.5','04/21/1996',' '); -INSERT INTO entity_versions VALUES(1523,365,'7.4','07/01/1995',' '); -INSERT INTO entity_versions VALUES(1524,145,' ',' ',' '); -INSERT INTO entity_versions VALUES(1525,7,'2.3.4','01/22/2021',' '); -INSERT INTO entity_versions VALUES(1526,7,'2.4.2','03/17/2021',' '); -INSERT INTO entity_versions VALUES(1527,7,'1.4.13',' ',' '); -INSERT INTO entity_versions VALUES(1528,7,'1.6.0',' ',' '); -INSERT INTO entity_versions VALUES(1529,7,'1.7.1',' ',' '); -INSERT INTO entity_versions VALUES(1530,7,'2.2.7',' ',' '); -INSERT INTO entity_versions VALUES(1531,7,'2.3.6',' ',' '); -INSERT INTO entity_versions VALUES(1532,7,'2.4.6',' ',' '); -INSERT INTO entity_versions VALUES(1533,7,'3.0.0',' ',' '); -INSERT INTO entity_versions VALUES(1534,60,' ',' ',' '); -INSERT INTO entity_versions VALUES(1535,12,'1.14.1','02/10/2021',' '); -INSERT INTO entity_versions VALUES(1536,12,'1.10.7','02/10/2021',' '); -INSERT INTO entity_versions VALUES(1537,12,'1.14.0','05/27/2020',' '); -INSERT INTO entity_versions VALUES(1538,12,'1.13.0','10/30/2019',' '); -INSERT INTO entity_versions VALUES(1539,12,'1.12.2','07/24/2019',' '); -INSERT INTO entity_versions VALUES(1540,12,'1.10.6','07/24/2019',' '); -INSERT INTO entity_versions VALUES(1541,12,'1.9.12','07/24/2019',' '); -INSERT INTO entity_versions VALUES(1542,12,'1.12.0','04/24/2019',' '); -INSERT INTO entity_versions VALUES(1543,12,'1.11.1','01/11/2019',' '); -INSERT INTO entity_versions VALUES(1544,12,'1.10.4','01/11/2019',' '); -INSERT INTO entity_versions VALUES(1545,12,'1.9.10','01/11/2019',' '); -INSERT INTO entity_versions VALUES(1546,12,'1.11.0','10/30/2018',' '); -INSERT INTO entity_versions VALUES(1547,12,'1.10.3','10/10/2018',' '); -INSERT INTO entity_versions VALUES(1548,12,'1.10.2','07/20/2018',' '); -INSERT INTO entity_versions VALUES(1549,12,'1.9.9','07/20/2018',' '); -INSERT INTO entity_versions VALUES(1550,12,'1.10.0','04/12/2018',' '); -INSERT INTO entity_versions VALUES(1551,12,'1.9.7','08/10/2017',' '); -INSERT INTO entity_versions VALUES(1552,12,'1.8.19','08/10/2017',' '); -INSERT INTO entity_versions VALUES(1553,12,'1.8.18','07/07/2017',' '); -INSERT INTO entity_versions VALUES(1554,12,'1.9.6','07/06/2017',' '); -INSERT INTO entity_versions VALUES(1555,12,'1.9.5','11/29/2016',' '); -INSERT INTO entity_versions VALUES(1556,12,'1.8.17','11/29/2016',' '); -INSERT INTO entity_versions VALUES(1557,12,'1.9.4','04/28/2016',' '); -INSERT INTO entity_versions VALUES(1558,12,'1.8.16','04/28/2016',' '); -INSERT INTO entity_versions VALUES(1559,12,'1.9.3','09/15/2015',' '); -INSERT INTO entity_versions VALUES(1560,12,'1.8.15','09/15/2015',' '); -INSERT INTO entity_versions VALUES(1561,12,'1.9.2','09/23/2015',' '); -INSERT INTO entity_versions VALUES(1562,12,'1.9.1','09/02/2015',' '); -INSERT INTO entity_versions VALUES(1563,12,'1.7.22','08/14/2015',' '); -INSERT INTO entity_versions VALUES(1564,12,'1.9.0','08/05/2015',' '); -INSERT INTO entity_versions VALUES(1565,12,'1.8.14','08/05/2015',' '); -INSERT INTO entity_versions VALUES(1566,12,'1.7.21','08/05/2015',' '); -INSERT INTO entity_versions VALUES(1567,12,'1.8.13','03/31/2015',' '); -INSERT INTO entity_versions VALUES(1568,12,'1.7.20','03/31/2015',' '); -INSERT INTO entity_versions VALUES(1569,12,'1.8.11','12/15/2014',' '); -INSERT INTO entity_versions VALUES(1570,12,'1.7.19','12/15/2014',' '); -INSERT INTO entity_versions VALUES(1571,12,'1.8.10','08/11/2014',' '); -INSERT INTO entity_versions VALUES(1572,12,'1.7.18','08/11/2014',' '); -INSERT INTO entity_versions VALUES(1573,12,'1.7.17','05/19/2014',' '); -INSERT INTO entity_versions VALUES(1574,12,'1.8.9','05/14/2014',' '); -INSERT INTO entity_versions VALUES(1575,12,'1.7.16','02/26/2014',' '); -INSERT INTO entity_versions VALUES(1576,12,'1.8.8','02/20/2014',' '); -INSERT INTO entity_versions VALUES(1577,12,'1.8.5','11/25/2013',' '); -INSERT INTO entity_versions VALUES(1578,12,'1.7.14','11/25/2013',' '); -INSERT INTO entity_versions VALUES(1579,12,'1.8.4','10/29/2013',' '); -INSERT INTO entity_versions VALUES(1580,12,'1.8.3','08/30/2013',' '); -INSERT INTO entity_versions VALUES(1581,12,'1.7.13','08/30/2013',' '); -INSERT INTO entity_versions VALUES(1582,12,'1.8.1','07/24/2013',' '); -INSERT INTO entity_versions VALUES(1583,12,'1.7.11','07/24/2013',' '); -INSERT INTO entity_versions VALUES(1584,12,'1.8.0','06/18/2013',' '); -INSERT INTO entity_versions VALUES(1585,12,'1.7.10','05/31/2013',' '); -INSERT INTO entity_versions VALUES(1586,12,'1.6.23','05/31/2013',' '); -INSERT INTO entity_versions VALUES(1587,12,'1.7.9','04/04/2013',' '); -INSERT INTO entity_versions VALUES(1588,12,'1.6.21','04/04/2013',' '); -INSERT INTO entity_versions VALUES(1589,12,'1.6.20','01/08/2013',' '); -INSERT INTO entity_versions VALUES(1590,12,'1.7.8','12/20/2012',' '); -INSERT INTO entity_versions VALUES(1591,12,'1.7.7','10/09/2012',' '); -INSERT INTO entity_versions VALUES(1592,12,'1.6.19','09/21/2012',' '); -INSERT INTO entity_versions VALUES(1593,12,'1.7.6','08/15/2012',' '); -INSERT INTO entity_versions VALUES(1594,12,'1.7.5','05/17/2012',' '); -INSERT INTO entity_versions VALUES(1595,12,'1.7.4','03/08/2012',' '); -INSERT INTO entity_versions VALUES(1596,12,'1.7.3','02/13/2012',' '); -INSERT INTO entity_versions VALUES(1597,12,'1.7.2','12/05/2011',' '); -INSERT INTO entity_versions VALUES(1598,12,'1.7.1','10/23/2011',' '); -INSERT INTO entity_versions VALUES(1599,12,'1.7.0','10/11/2011',' '); -INSERT INTO entity_versions VALUES(1600,12,'1.6.18','04/12/2012',' '); -INSERT INTO entity_versions VALUES(1601,12,'1.6.17','06/01/2011',' '); -INSERT INTO entity_versions VALUES(1602,12,'1.6.16','03/03/2011',' '); -INSERT INTO entity_versions VALUES(1603,12,'1.5.9','12/22/2010',' '); -INSERT INTO entity_versions VALUES(1604,12,'1.6.15','11/24/2010',' '); -INSERT INTO entity_versions VALUES(1605,12,'1.6.13','10/01/2010',' '); -INSERT INTO entity_versions VALUES(1606,12,'1.6.12','06/21/2010',' '); -INSERT INTO entity_versions VALUES(1607,12,'1.6.11','04/16/2010',' '); -INSERT INTO entity_versions VALUES(1608,12,'1.6.9','01/25/2010',' '); -INSERT INTO entity_versions VALUES(1609,12,'1.6.6','10/22/2009',' '); -INSERT INTO entity_versions VALUES(1610,12,'1.6.5','08/22/2009',' '); -INSERT INTO entity_versions VALUES(1611,12,'1.6.4','08/06/2009',' '); -INSERT INTO entity_versions VALUES(1612,12,'1.6.3','06/22/2009',' '); -INSERT INTO entity_versions VALUES(1613,12,'1.6.2','05/11/2009',' '); -INSERT INTO entity_versions VALUES(1614,12,'1.6.1','04/09/2009',' '); -INSERT INTO entity_versions VALUES(1615,12,'1.6.0','03/20/2009',' '); -INSERT INTO entity_versions VALUES(1616,12,'1.5.7','08/06/2009',' '); -INSERT INTO entity_versions VALUES(1617,12,'1.5.6','02/26/2009',' '); -INSERT INTO entity_versions VALUES(1618,12,'1.5.5','12/22/2008',' '); -INSERT INTO entity_versions VALUES(1619,12,'1.5.4','10/24/2008',' '); -INSERT INTO entity_versions VALUES(1620,12,'1.5.3','10/10/2008',' '); -INSERT INTO entity_versions VALUES(1621,12,'1.5.2','08/30/2008',' '); -INSERT INTO entity_versions VALUES(1622,12,'1.5.1','07/26/2008',' '); -INSERT INTO entity_versions VALUES(1623,12,'1.5.0','06/19/2008',' '); -INSERT INTO entity_versions VALUES(1624,12,'1.4.6','12/20/2007',' '); -INSERT INTO entity_versions VALUES(1625,12,'1.4.5','08/28/2007',' '); -INSERT INTO entity_versions VALUES(1626,12,'1.4.4','06/08/2007',' '); -INSERT INTO entity_versions VALUES(1627,12,'1.4.3','01/25/2007',' '); -INSERT INTO entity_versions VALUES(1628,12,'1.4.2','11/07/2006',' '); -INSERT INTO entity_versions VALUES(1629,12,'1.4.0','09/10/2006',' '); -INSERT INTO entity_versions VALUES(1630,12,'1.3.2','05/31/2006',' '); -INSERT INTO entity_versions VALUES(1631,12,'1.3.1','04/03/2006',' '); -INSERT INTO entity_versions VALUES(1632,12,'1.3.0','01/03/2006',' '); -INSERT INTO entity_versions VALUES(1633,12,'1.2.3','08/25/2005',' '); -INSERT INTO entity_versions VALUES(1634,12,'1.2.1','07/05/2005',' '); -INSERT INTO entity_versions VALUES(1635,12,'1.2.0','05/23/2005',' '); -INSERT INTO entity_versions VALUES(1636,12,'1.1.4','04/01/2005',' '); -INSERT INTO entity_versions VALUES(1637,12,'1.1.3','01/14/2005',' '); -INSERT INTO entity_versions VALUES(1638,12,'1.1.2','12/20/2004',' '); -INSERT INTO entity_versions VALUES(1639,12,'1.1.1','10/22/2004',' '); -INSERT INTO entity_versions VALUES(1640,12,'1.0.9','10/13/2004',' '); -INSERT INTO entity_versions VALUES(1641,12,'1.1.0','09/29/2004',' '); -INSERT INTO entity_versions VALUES(1642,12,'1.0.8','09/22/2004',' '); -INSERT INTO entity_versions VALUES(1643,12,'1.0.7','09/17/2004',' '); -INSERT INTO entity_versions VALUES(1644,12,'1.0.6','07/19/2004',' '); -INSERT INTO entity_versions VALUES(1645,12,'1.0.5','06/10/2004',' '); -INSERT INTO entity_versions VALUES(1646,12,'1.0.4','05/21/2004',' '); -INSERT INTO entity_versions VALUES(1647,12,'1.0.3','05/19/2004',' '); -INSERT INTO entity_versions VALUES(1648,12,'1.0.2','04/19/2004',' '); -INSERT INTO entity_versions VALUES(1649,12,'1.0.1','03/12/2004',' '); -INSERT INTO entity_versions VALUES(1650,12,'1.0.0','02/23/2004',' '); -INSERT INTO entity_versions VALUES(1651,12,'0.37','01/25/2004',' '); -INSERT INTO entity_versions VALUES(1652,12,'0.36','01/13/2004',' '); -INSERT INTO entity_versions VALUES(1653,12,'0.35.1','12/20/2003',' '); -INSERT INTO entity_versions VALUES(1654,12,'0.35','12/19/2003',' '); -INSERT INTO entity_versions VALUES(1655,12,'0.34','12/03/2003',' '); -INSERT INTO entity_versions VALUES(1656,12,'0.33.1','11/18/2003',' '); -INSERT INTO entity_versions VALUES(1657,12,'0.33','11/13/2003',' '); -INSERT INTO entity_versions VALUES(1658,12,'0.32.1','10/23/2003',' '); -INSERT INTO entity_versions VALUES(1659,12,'0.31','10/07/2003',' '); -INSERT INTO entity_versions VALUES(1660,12,'0.30','09/24/2003',' '); -INSERT INTO entity_versions VALUES(1661,12,'0.29','09/05/2003',' '); -INSERT INTO entity_versions VALUES(1662,12,'0.28.2','09/02/2003',' '); -INSERT INTO entity_versions VALUES(1663,12,'0.28.1','08/28/2003',' '); -INSERT INTO entity_versions VALUES(1664,12,'0.28','08/27/2003',' '); -INSERT INTO entity_versions VALUES(1665,12,'0.27','08/10/2003',' '); -INSERT INTO entity_versions VALUES(1666,12,'0.26','07/23/2003',' '); -INSERT INTO entity_versions VALUES(1667,12,'0.25','07/10/2003',' '); -INSERT INTO entity_versions VALUES(1668,12,'0.24.2','06/18/2003',' '); -INSERT INTO entity_versions VALUES(1669,12,'0.24.1','06/16/2003',' '); -INSERT INTO entity_versions VALUES(1670,12,'0.24','06/15/2003',' '); -INSERT INTO entity_versions VALUES(1671,12,'0.23','05/17/2003',' '); -INSERT INTO entity_versions VALUES(1672,12,'0.22.2','05/13/2003',' '); -INSERT INTO entity_versions VALUES(1673,12,'0.22.1','05/09/2003',' '); -INSERT INTO entity_versions VALUES(1674,12,'0.22','05/07/2003',' '); -INSERT INTO entity_versions VALUES(1675,12,'0.21','04/15/2003',' '); -INSERT INTO entity_versions VALUES(1676,12,'0.20.1','03/26/2003',' '); -INSERT INTO entity_versions VALUES(1677,12,'0.20','03/20/2003',' '); -INSERT INTO entity_versions VALUES(1678,12,'0.19.1','03/12/2003',' '); -INSERT INTO entity_versions VALUES(1679,12,'0.19','03/10/2003',' '); -INSERT INTO entity_versions VALUES(1680,12,'0.18.1','02/26/2003',' '); -INSERT INTO entity_versions VALUES(1681,12,'0.18','02/19/2003',' '); -INSERT INTO entity_versions VALUES(1682,12,'0.17.1','01/22/2003',' '); -INSERT INTO entity_versions VALUES(1683,12,'0.17','01/20/2003',' '); -INSERT INTO entity_versions VALUES(1684,12,'0.16.1','01/06/2003',' '); -INSERT INTO entity_versions VALUES(1685,12,'0.16','12/03/2002',' '); -INSERT INTO entity_versions VALUES(1686,12,'0.15','11/07/2002',' '); -INSERT INTO entity_versions VALUES(1687,12,'0.14.5','10/29/2002',' '); -INSERT INTO entity_versions VALUES(1688,12,'0.14.4','10/29/2002',' '); -INSERT INTO entity_versions VALUES(1689,12,'0.14.3','09/20/2002',' '); -INSERT INTO entity_versions VALUES(1690,12,'0.14.2','08/22/2002',' '); -INSERT INTO entity_versions VALUES(1691,12,'0.14.1','08/09/2002',' '); -INSERT INTO entity_versions VALUES(1692,12,'0.13.2','06/28/2002',' '); -INSERT INTO entity_versions VALUES(1693,12,'0.13.1','06/20/2002',' '); -INSERT INTO entity_versions VALUES(1694,12,'0.13.0','06/10/2002',' '); -INSERT INTO entity_versions VALUES(1695,12,'0.12','05/03/2002',' '); -INSERT INTO entity_versions VALUES(1696,12,'0.11','04/12/2002',' '); -INSERT INTO entity_versions VALUES(1697,12,'0.10','03/08/2002',' '); -INSERT INTO entity_versions VALUES(1698,12,'0.9','02/18/2002',' '); -INSERT INTO entity_versions VALUES(1699,12,'0.8','01/14/2002',' '); -INSERT INTO entity_versions VALUES(1700,12,'0.7','12/03/2001',' '); -INSERT INTO entity_versions VALUES(1701,422,'9',' ',' '); -INSERT INTO entity_versions VALUES(1702,422,'8',' ',' '); -INSERT INTO entity_versions VALUES(1703,422,'7',' ',' '); -INSERT INTO entity_versions VALUES(1704,422,'6',' ',' '); -INSERT INTO entity_versions VALUES(1705,422,'5',' ',' '); -INSERT INTO entity_versions VALUES(1706,422,'4',' ',' '); -INSERT INTO entity_versions VALUES(1707,422,'3',' ',' '); -INSERT INTO entity_versions VALUES(1708,422,'2',' ',' '); -INSERT INTO entity_versions VALUES(1709,43,'11.5',' ',' '); -INSERT INTO entity_versions VALUES(1710,43,'11.1',' ','04/30/2022'); -INSERT INTO entity_versions VALUES(1711,43,'10.5',' ','04/30/2023'); -INSERT INTO entity_versions VALUES(1712,43,'10.1',' ','09/30/2020'); -INSERT INTO entity_versions VALUES(1713,43,'9.8',' ','04/30/2016'); -INSERT INTO entity_versions VALUES(1714,43,'9.7',' ','09/30/2020'); -INSERT INTO entity_versions VALUES(1715,43,'9.5',' ','04/30/2015'); -INSERT INTO entity_versions VALUES(1716,43,'9.1',' ','04/30/2012'); -INSERT INTO entity_versions VALUES(1717,43,'8.1',' ','04/30/2009'); -INSERT INTO entity_versions VALUES(1718,68,'10','03/27/2015',' '); -INSERT INTO entity_versions VALUES(1719,68,'9','06/28/2013',' '); -INSERT INTO entity_versions VALUES(1720,330,'12.1',' ',' '); -INSERT INTO entity_versions VALUES(1721,330,'14.1',' ',' '); -INSERT INTO entity_versions VALUES(1722,81,'9.2','07/23/2020',' '); -INSERT INTO entity_versions VALUES(1723,81,'9.1','07/27/2018',' '); -INSERT INTO entity_versions VALUES(1724,81,'IBM MQ on IBM Cloud','03/13/2018',' '); -INSERT INTO entity_versions VALUES(1725,81,'IBM MQ for HPE Nonstop 8.0','06/23/2017',' '); -INSERT INTO entity_versions VALUES(1726,81,'9.0','06/02/2016',' '); -INSERT INTO entity_versions VALUES(1727,81,'8.0','05/23/2014',' '); -INSERT INTO entity_versions VALUES(1728,81,'7.5','06/15/2012',' '); -INSERT INTO entity_versions VALUES(1729,81,'7.1','11/30/2011',' '); -INSERT INTO entity_versions VALUES(1730,81,'7.0','06/30/2008',' '); -INSERT INTO entity_versions VALUES(1731,81,'7.0','05/31/2008',' '); -INSERT INTO entity_versions VALUES(1732,81,'6.0','06/30/2005',' '); -INSERT INTO entity_versions VALUES(1733,81,'WebSphere MQ 6.0 (Distributed, iSeries)','05/31/2005',' '); -INSERT INTO entity_versions VALUES(1734,81,'5.3','06/30/2002',' '); -INSERT INTO entity_versions VALUES(1735,81,'WebSphere MQ 5.3 (Distributed, iSeries)','11/30/2002',' '); -INSERT INTO entity_versions VALUES(1736,81,'MQSeries 5.2 (Distributed)','12/31/2000',' '); -INSERT INTO entity_versions VALUES(1737,81,'5.2','11/30/2000',' '); -INSERT INTO entity_versions VALUES(1738,81,'5.1','08/31/2000',' '); -INSERT INTO entity_versions VALUES(1739,81,'2.1','02/28/1999',' '); -INSERT INTO entity_versions VALUES(1740,81,'5.1','06/30/1999',' '); -INSERT INTO entity_versions VALUES(1741,81,'4.2','02/28/1998',' '); -INSERT INTO entity_versions VALUES(1742,81,'5.0','10/31/1997',' '); -INSERT INTO entity_versions VALUES(1743,81,'1.2','08/29/1997',' '); -INSERT INTO entity_versions VALUES(1744,81,'1.1.4,','06/30/1996',' '); -INSERT INTO entity_versions VALUES(1745,81,'2.2','07/31/1996',' '); -INSERT INTO entity_versions VALUES(1746,81,'2.0','06/30/1996',' '); -INSERT INTO entity_versions VALUES(1747,81,'2.2','12/31/1995',' '); -INSERT INTO entity_versions VALUES(1748,81,'1.1.3','05/31/1995',' '); -INSERT INTO entity_versions VALUES(1749,81,'2.0','02/28/1995',' '); -INSERT INTO entity_versions VALUES(1750,81,'3','12/31/1994',' '); -INSERT INTO entity_versions VALUES(1751,81,'3.0','07/01/1994',' '); -INSERT INTO entity_versions VALUES(1752,81,'1.1.2','06/01/1994',' '); -INSERT INTO entity_versions VALUES(1753,81,'2.3','04/30/1994',' '); -INSERT INTO entity_versions VALUES(1754,81,'1.1.1','12/31/1993',' '); -INSERT INTO entity_versions VALUES(1755,127,'9.5.3',' ',' '); -INSERT INTO entity_versions VALUES(1756,169,' ',' ',' '); -INSERT INTO entity_versions VALUES(1757,36,' ',' ',' '); -INSERT INTO entity_versions VALUES(1758,225,'3','12/31/1986',' '); -INSERT INTO entity_versions VALUES(1759,225,'4','12/31/1988',' '); -INSERT INTO entity_versions VALUES(1760,225,'5','12/31/1990',' '); -INSERT INTO entity_versions VALUES(1761,225,'6','12/31/1994',' '); -INSERT INTO entity_versions VALUES(1762,225,'7','12/31/1997',' '); -INSERT INTO entity_versions VALUES(1763,225,'8','12/31/2001',' '); -INSERT INTO entity_versions VALUES(1764,225,'9','12/31/2006',' '); -INSERT INTO entity_versions VALUES(1765,225,'9.4','12/31/2010',' '); -INSERT INTO entity_versions VALUES(1766,225,'9.5','12/31/2011',' '); -INSERT INTO entity_versions VALUES(1767,225,'9.6','12/31/2012',' '); -INSERT INTO entity_versions VALUES(1768,225,'9.7','12/31/2015',' '); -INSERT INTO entity_versions VALUES(1769,225,'10','12/31/2015',' '); -INSERT INTO entity_versions VALUES(1770,225,'10.4','12/31/2021',' '); -INSERT INTO entity_versions VALUES(1771,219,'8.5.0','12/31/2019',' '); -INSERT INTO entity_versions VALUES(1772,128,'2.5.0','10/31/2020',' '); -INSERT INTO entity_versions VALUES(1773,128,'2.5.1','10/31/2020',' '); -INSERT INTO entity_versions VALUES(1774,128,'2.5.2','10/31/2020',' '); -INSERT INTO entity_versions VALUES(1775,128,'2.5.3','10/31/2020',' '); -INSERT INTO entity_versions VALUES(1776,128,'2.4.0','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1777,128,'2.4.1','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1778,128,'2.4.2','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1779,128,'2.4.3','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1780,128,'2.4.4','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1781,128,'2.4.5','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1782,128,'2.4.6','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1783,128,'2.4.7','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1784,128,'2.4.8','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1785,128,'2.4.9','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1786,128,'2.4.10','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1787,128,'2.4.11','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1788,128,'2.3.0','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1789,128,'2.3.1','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1790,128,'2.3.2','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1791,128,'2.3.3','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1792,128,'2.3.4','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1793,128,'2.3.5','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1794,128,'2.3.6','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1795,128,'2.3.7','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1796,128,'2.3.8','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1797,128,'2.3.9','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1798,128,'2.3.10','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1799,128,'2.3.11','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1800,128,'2.3.12','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1801,128,'2.3.13','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1802,128,'2.3.14','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1803,128,'2.3.15','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1804,128,'2.3.16','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1805,128,'2.3.17','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1806,128,'2.3.18','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1807,128,'2.2.0','04/21/2011','11/30/2015'); -INSERT INTO entity_versions VALUES(1808,128,'2.2.1','04/21/2011','11/30/2015'); -INSERT INTO entity_versions VALUES(1809,128,'2.2.2','04/21/2011','11/30/2015'); -INSERT INTO entity_versions VALUES(1810,128,'2.2.3','04/21/2011','11/30/2015'); -INSERT INTO entity_versions VALUES(1811,128,'2.1.0','12/11/2009','11/30/2011'); -INSERT INTO entity_versions VALUES(1812,128,'2.1.1','12/11/2009','11/30/2011'); -INSERT INTO entity_versions VALUES(1813,128,'2.1.2','12/11/2009','11/30/2011'); -INSERT INTO entity_versions VALUES(1814,128,'2.1.3','12/11/2009','11/30/2011'); -INSERT INTO entity_versions VALUES(1815,128,'2.1.4','12/11/2009','11/30/2011'); -INSERT INTO entity_versions VALUES(1816,215,'15','03/31/2014',' '); -INSERT INTO entity_versions VALUES(1817,215,'16','11/30/2016',' '); -INSERT INTO entity_versions VALUES(1818,117,'1','11/09/2006',' '); -INSERT INTO entity_versions VALUES(1819,117,'1.5','11/30/2005',' '); -INSERT INTO entity_versions VALUES(1820,117,'2','10/24/2006',' '); -INSERT INTO entity_versions VALUES(1821,117,'3','06/17/2008',' '); -INSERT INTO entity_versions VALUES(1822,117,'3.5','06/30/2009',' '); -INSERT INTO entity_versions VALUES(1823,117,'3.6','01/21/2010',' '); -INSERT INTO entity_versions VALUES(1824,117,'4','10/13/2006',' '); -INSERT INTO entity_versions VALUES(1825,146,'1','03/31/2006',' '); -INSERT INTO entity_versions VALUES(1826,146,'1.1','12/31/2006',' '); -INSERT INTO entity_versions VALUES(1827,146,'1.2.1','08/31/2007',' '); -INSERT INTO entity_versions VALUES(1828,146,'1.5','04/30/2008',' '); -INSERT INTO entity_versions VALUES(1829,146,'1.5.1','06/30/2008',' '); -INSERT INTO entity_versions VALUES(1830,146,'1.5.3','12/31/2008',' '); -INSERT INTO entity_versions VALUES(1831,146,'1.5.4','03/31/2009',' '); -INSERT INTO entity_versions VALUES(1832,146,'1.5.5','07/31/2009',' '); -INSERT INTO entity_versions VALUES(1833,146,'2.1','12/31/2009',' '); -INSERT INTO entity_versions VALUES(1834,146,'3','03/31/2011',' '); -INSERT INTO entity_versions VALUES(1835,146,'3.1','02/28/2012',' '); -INSERT INTO entity_versions VALUES(1836,146,'3.2','08/31/2012',' '); -INSERT INTO entity_versions VALUES(1837,146,'4','12/31/2013',' '); -INSERT INTO entity_versions VALUES(1838,146,'4.0.1','02/28/2014',' '); -INSERT INTO entity_versions VALUES(1839,146,'4.0.2','05/31/2014',' '); -INSERT INTO entity_versions VALUES(1840,146,'4.0.3','09/30/2014',' '); -INSERT INTO entity_versions VALUES(1841,146,'4.1.1','06/30/2015',' '); -INSERT INTO entity_versions VALUES(1842,146,'4.1.2','10/31/2015',' '); -INSERT INTO entity_versions VALUES(1843,146,'4.1.3','12/31/2015',' '); -INSERT INTO entity_versions VALUES(1844,146,'4.1.5','09/30/2016',' '); -INSERT INTO entity_versions VALUES(1845,146,'4.2.0','04/30/2017',' '); -INSERT INTO entity_versions VALUES(1846,146,'17.2','07/31/2017',' '); -INSERT INTO entity_versions VALUES(1847,146,'17.4','12/31/2017',' '); -INSERT INTO entity_versions VALUES(1848,146,'18.1','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1849,146,'18.2','07/31/2018',' '); -INSERT INTO entity_versions VALUES(1850,146,'18.3','10/31/2018',' '); -INSERT INTO entity_versions VALUES(1851,146,'18.4','01/31/2019',' '); -INSERT INTO entity_versions VALUES(1852,146,'19.1','04/30/2019',' '); -INSERT INTO entity_versions VALUES(1853,146,'19.2','08/31/2019',' '); -INSERT INTO entity_versions VALUES(1854,146,'19.4','12/31/2019',' '); -INSERT INTO entity_versions VALUES(1855,146,'20.2','06/30/2020',' '); -INSERT INTO entity_versions VALUES(1856,146,'20.4','01/31/2021',' '); -INSERT INTO entity_versions VALUES(1857,146,'20.4.1','02/28/2021',' '); -INSERT INTO entity_versions VALUES(1858,146,'21.2','08/31/2021',' '); -INSERT INTO entity_versions VALUES(1859,241,'2.16.0','11/23/2018',' '); -INSERT INTO entity_versions VALUES(1860,241,'2.15.2','01/28/2018',' '); -INSERT INTO entity_versions VALUES(1861,241,'2.14.0','02/02/2013',' '); -INSERT INTO entity_versions VALUES(1862,241,'2.13.20','10/20/2013',' '); -INSERT INTO entity_versions VALUES(1863,241,'2.12.0','03/05/2009',' '); -INSERT INTO entity_versions VALUES(1864,241,'2.11.1','07/11/2008',' '); -INSERT INTO entity_versions VALUES(1865,241,'2.9.1','04/23/2008',' '); -INSERT INTO entity_versions VALUES(1866,241,'2.8','03/04/2008',' '); -INSERT INTO entity_versions VALUES(1867,241,'2.7.1','11/16/2006',' '); -INSERT INTO entity_versions VALUES(1868,241,' ',' ',' '); -INSERT INTO entity_versions VALUES(1869,115,' ',' ',' '); -INSERT INTO entity_versions VALUES(1870,86,' ','12/31/2008',' '); -INSERT INTO entity_versions VALUES(1871,4,'1','06/15/1993',' '); -INSERT INTO entity_versions VALUES(1872,4,'2','09/01/1994',' '); -INSERT INTO entity_versions VALUES(1873,4,'3','11/01/1996',' '); -INSERT INTO entity_versions VALUES(1874,4,'4','04/01/1999',' '); -INSERT INTO entity_versions VALUES(1875,4,'5','05/01/2001',' '); -INSERT INTO entity_versions VALUES(1876,4,'6','07/01/2003',' '); -INSERT INTO entity_versions VALUES(1877,4,'7','12/28/2004',' '); -INSERT INTO entity_versions VALUES(1878,4,'8','11/03/2006',' '); -INSERT INTO entity_versions VALUES(1879,4,'9','06/02/2008',' '); -INSERT INTO entity_versions VALUES(1880,4,'10','11/15/2010',' '); -INSERT INTO entity_versions VALUES(1881,4,'11','10/15/2012',' '); -INSERT INTO entity_versions VALUES(1882,4,'2015','04/06/2015',' '); -INSERT INTO entity_versions VALUES(1883,4,'2017','06/06/2017',' '); -INSERT INTO entity_versions VALUES(1884,4,'2020','06/01/2020',' '); -INSERT INTO entity_versions VALUES(1885,101,'1.5','12/31/2000',' '); -INSERT INTO entity_versions VALUES(1886,101,'2012','09/30/2011',' '); -INSERT INTO entity_versions VALUES(1887,101,'7 ','02/28/2016',' '); -INSERT INTO entity_versions VALUES(1888,101,'7.0.4.17','05/27/2016',' '); -INSERT INTO entity_versions VALUES(1889,88,'2.8','09/30/2020',' '); -INSERT INTO entity_versions VALUES(1890,88,'2.81','10/31/2020',' '); -INSERT INTO entity_versions VALUES(1891,125,'20.03','03/31/2020',' '); -INSERT INTO entity_versions VALUES(1892,125,'21.05','05/31/2021',' '); -INSERT INTO entity_versions VALUES(1893,234,'8.6',' ',' '); -INSERT INTO entity_versions VALUES(1894,234,'8.5.1','05/22/2020',' '); -INSERT INTO entity_versions VALUES(1895,231,'7.0.0','04/02/2020',' '); -INSERT INTO entity_versions VALUES(1896,231,'6.7','04/17/2018',' '); -INSERT INTO entity_versions VALUES(1897,231,'6.5','11/15/2016',' '); -INSERT INTO entity_versions VALUES(1898,231,'6','03/12/2015',' '); -INSERT INTO entity_versions VALUES(1899,231,'5.5','09/22/2013',' '); -INSERT INTO entity_versions VALUES(1900,231,'5','08/24/2011',' '); -INSERT INTO entity_versions VALUES(1901,56,'5','09/30/2017',' '); -INSERT INTO entity_versions VALUES(1902,56,'6','09/30/2019',' '); -INSERT INTO entity_versions VALUES(1903,57,'1','04/30/2006',' '); -INSERT INTO entity_versions VALUES(1904,57,'2.7.7','05/31/2018',' '); -INSERT INTO entity_versions VALUES(1905,57,'2.8.5','09/15/2018',' '); -INSERT INTO entity_versions VALUES(1906,57,'2.9.2','11/09/2018',' '); -INSERT INTO entity_versions VALUES(1907,57,'2.10.1','09/21/2020',' '); -INSERT INTO entity_versions VALUES(1908,57,'3.1.4','08/03/2020',' '); -INSERT INTO entity_versions VALUES(1909,57,'3.2.2','01/09/2021',' '); -INSERT INTO entity_versions VALUES(1910,57,'3.3.1','06/15/2021',' '); -INSERT INTO entity_versions VALUES(1911,124,'3.29.1','12/24/2020',' '); -INSERT INTO entity_versions VALUES(1912,124,'3.29','12/04/2020',' '); -INSERT INTO entity_versions VALUES(1913,124,'3.28.1','10/19/2020',' '); -INSERT INTO entity_versions VALUES(1914,124,'3.28','10/01/2020',' '); -INSERT INTO entity_versions VALUES(1915,124,'3.27','09/03/2020',' '); -INSERT INTO entity_versions VALUES(1916,124,'3.26.1','08/12/2020',' '); -INSERT INTO entity_versions VALUES(1917,124,'3.26','08/10/2020',' '); -INSERT INTO entity_versions VALUES(1918,124,'3.25.1','07/29/2020',' '); -INSERT INTO entity_versions VALUES(1919,124,'3.25','07/13/2020',' '); -INSERT INTO entity_versions VALUES(1920,124,'3.24','06/08/2020',' '); -INSERT INTO entity_versions VALUES(1921,124,'3.23','05/05/2020',' '); -INSERT INTO entity_versions VALUES(1922,124,'3.22.1','04/16/2020',' '); -INSERT INTO entity_versions VALUES(1923,124,'3.22.0','03/27/2020',' '); -INSERT INTO entity_versions VALUES(1924,124,'3',' ',' '); -INSERT INTO entity_versions VALUES(1925,188,'6','10/01/2013','10/22/2019'); -INSERT INTO entity_versions VALUES(1926,188,'6.1','05/06/2014','10/22/2019'); -INSERT INTO entity_versions VALUES(1927,188,'6.2','10/07/2014','10/22/2019'); -INSERT INTO entity_versions VALUES(1928,188,'6.3','09/22/2015','10/22/2019'); -INSERT INTO entity_versions VALUES(1929,188,'6.4','04/05/2016','10/22/2019'); -INSERT INTO entity_versions VALUES(1930,188,'6.5','09/27/2016','10/22/2019'); -INSERT INTO entity_versions VALUES(1931,188,'6.6','05/02/2017','01/31/2020'); -INSERT INTO entity_versions VALUES(1932,188,'7','09/26/2017','01/31/2020'); -INSERT INTO entity_versions VALUES(1933,188,'7.1','04/24/2018','10/31/2020'); -INSERT INTO entity_versions VALUES(1934,188,'7.2','10/02/2018','04/30/2021'); -INSERT INTO entity_versions VALUES(1935,188,'7.3','06/04/2019','10/22/2021'); -INSERT INTO entity_versions VALUES(1936,188,'8','10/22/2019','10/22/2021'); -INSERT INTO entity_versions VALUES(1937,188,'8.1','10/19/2020','10/19/2022'); -INSERT INTO entity_versions VALUES(1938,188,'8.2','05/12/2021','05/12/2023'); -INSERT INTO entity_versions VALUES(1939,151,'7','12/31/1997',' '); -INSERT INTO entity_versions VALUES(1940,151,'7.5','12/31/1998',' '); -INSERT INTO entity_versions VALUES(1941,151,'9','12/31/2006',' '); -INSERT INTO entity_versions VALUES(1942,151,'9.1','12/31/2009',' '); -INSERT INTO entity_versions VALUES(1943,151,'9.2','12/31/2013',' '); -INSERT INTO entity_versions VALUES(1944,84,'12.1.0',' ',' '); -INSERT INTO entity_versions VALUES(1945,84,'13.1.0',' ',' '); -INSERT INTO entity_versions VALUES(1946,84,'14.1.0',' ',' '); -INSERT INTO entity_versions VALUES(1947,84,'15.1.0',' ',' '); -INSERT INTO entity_versions VALUES(1948,84,'15.2.0',' ',' '); -INSERT INTO entity_versions VALUES(1949,181,'2013','08/31/2013',' '); -INSERT INTO entity_versions VALUES(1950,181,'2016','04/30/2016',' '); -INSERT INTO entity_versions VALUES(1951,181,'2019',' ',' '); -INSERT INTO entity_versions VALUES(1952,192,' ',' ',' '); -INSERT INTO entity_versions VALUES(1953,6,'5.16.3','08/17/2021',' '); -INSERT INTO entity_versions VALUES(1954,6,'5.16.2','04/28/2021',' '); -INSERT INTO entity_versions VALUES(1955,6,'5.16.1','01/20/2021',' '); -INSERT INTO entity_versions VALUES(1956,6,'5.16.0',' ',' '); -INSERT INTO entity_versions VALUES(1957,6,'5.15.15','04/28/2021',' '); -INSERT INTO entity_versions VALUES(1958,6,'5.15.14','12/09/2020',' '); -INSERT INTO entity_versions VALUES(1959,6,'5.15.13',' ',' '); -INSERT INTO entity_versions VALUES(1960,6,'5.15.12',' ',' '); -INSERT INTO entity_versions VALUES(1961,6,'5.15.11',' ',' '); -INSERT INTO entity_versions VALUES(1962,6,'5.15.10',' ',' '); -INSERT INTO entity_versions VALUES(1963,6,'5.15.9',' ',' '); -INSERT INTO entity_versions VALUES(1964,6,'5.15.8',' ',' '); -INSERT INTO entity_versions VALUES(1965,6,'5.15.7',' ',' '); -INSERT INTO entity_versions VALUES(1966,6,'5.15.6',' ',' '); -INSERT INTO entity_versions VALUES(1967,6,'5.15.5',' ',' '); -INSERT INTO entity_versions VALUES(1968,6,'5.15.4',' ',' '); -INSERT INTO entity_versions VALUES(1969,6,'5.15.3',' ',' '); -INSERT INTO entity_versions VALUES(1970,6,'5.15.2',' ',' '); -INSERT INTO entity_versions VALUES(1971,6,'5.15.1',' ',' '); -INSERT INTO entity_versions VALUES(1972,6,'5.15.0',' ',' '); -INSERT INTO entity_versions VALUES(1973,6,'5.14.5',' ',' '); -INSERT INTO entity_versions VALUES(1974,6,'5.14.4',' ',' '); -INSERT INTO entity_versions VALUES(1975,6,'5.14.3',' ',' '); -INSERT INTO entity_versions VALUES(1976,6,'5.14.2',' ',' '); -INSERT INTO entity_versions VALUES(1977,6,'5.14.1',' ',' '); -INSERT INTO entity_versions VALUES(1978,6,'5.14.0',' ',' '); -INSERT INTO entity_versions VALUES(1979,6,'5.13.4',' ',' '); -INSERT INTO entity_versions VALUES(1980,6,'5.13.3',' ',' '); -INSERT INTO entity_versions VALUES(1981,6,'5.13.2',' ',' '); -INSERT INTO entity_versions VALUES(1982,6,'5.13.1',' ',' '); -INSERT INTO entity_versions VALUES(1983,6,'5.13.0',' ',' '); -INSERT INTO entity_versions VALUES(1984,6,'5.12.2',' ',' '); -INSERT INTO entity_versions VALUES(1985,6,'5.12.1',' ',' '); -INSERT INTO entity_versions VALUES(1986,6,'5.12.0',' ',' '); -INSERT INTO entity_versions VALUES(1987,6,'5.11.3',' ',' '); -INSERT INTO entity_versions VALUES(1988,6,'5.11.2',' ',' '); -INSERT INTO entity_versions VALUES(1989,6,'5.11.1',' ',' '); -INSERT INTO entity_versions VALUES(1990,6,'5.11.0',' ',' '); -INSERT INTO entity_versions VALUES(1991,6,'5.10.2',' ',' '); -INSERT INTO entity_versions VALUES(1992,6,'5.10.1',' ',' '); -INSERT INTO entity_versions VALUES(1993,6,'5.10.0',' ',' '); -INSERT INTO entity_versions VALUES(1994,6,'5.9.1',' ',' '); -INSERT INTO entity_versions VALUES(1995,6,'5.9.0',' ',' '); -INSERT INTO entity_versions VALUES(1996,6,'5.8.0',' ',' '); -INSERT INTO entity_versions VALUES(1997,6,'5.7.0',' ',' '); -INSERT INTO entity_versions VALUES(1998,6,'5.6.0',' ',' '); -INSERT INTO entity_versions VALUES(1999,6,'5.5.1',' ',' '); -INSERT INTO entity_versions VALUES(2000,6,'5.5.0',' ',' '); -INSERT INTO entity_versions VALUES(2001,6,'5.4.3',' ',' '); -INSERT INTO entity_versions VALUES(2002,6,'5.4.2',' ',' '); -INSERT INTO entity_versions VALUES(2003,6,'5.4.1',' ',' '); -INSERT INTO entity_versions VALUES(2004,6,'5.4.0',' ',' '); -INSERT INTO entity_versions VALUES(2005,6,'5.3.2',' ',' '); -INSERT INTO entity_versions VALUES(2006,6,'5.3.1',' ',' '); -INSERT INTO entity_versions VALUES(2007,6,'5.3.0',' ',' '); -INSERT INTO entity_versions VALUES(2008,6,'5.2.0',' ',' '); -INSERT INTO entity_versions VALUES(2009,6,'5.1.0',' ',' '); -INSERT INTO entity_versions VALUES(2010,6,'5.0.0',' ',' '); -INSERT INTO entity_versions VALUES(2011,240,'10',' ',' '); -INSERT INTO entity_versions VALUES(2012,240,'9.2',' ',' '); -INSERT INTO entity_versions VALUES(2013,248,'0',' ',' '); -INSERT INTO entity_versions VALUES(2014,248,'1',' ',' '); -INSERT INTO entity_versions VALUES(2015,248,'2',' ',' '); -INSERT INTO entity_versions VALUES(2016,248,'3',' ',' '); -INSERT INTO entity_versions VALUES(2017,248,'4',' ',' '); -INSERT INTO entity_versions VALUES(2018,79,'9.2',' ',' '); -INSERT INTO entity_versions VALUES(2019,79,'9.1',' ',' '); -INSERT INTO entity_versions VALUES(2020,79,'8.6',' ',' '); -INSERT INTO entity_versions VALUES(2021,83,'8.2',' ',' '); -INSERT INTO entity_versions VALUES(2022,83,'8.3',' ',' '); -INSERT INTO entity_versions VALUES(2023,83,'9',' ',' '); -INSERT INTO entity_versions VALUES(2024,83,'10',' ',' '); -INSERT INTO entity_versions VALUES(2025,157,'14','09/30/2021',' '); -INSERT INTO entity_versions VALUES(2026,157,'13','09/24/2020',' '); -INSERT INTO entity_versions VALUES(2027,157,'12','10/03/2019',' '); -INSERT INTO entity_versions VALUES(2028,157,'11','10/18/2018',' '); -INSERT INTO entity_versions VALUES(2029,157,'10','10/05/2017',' '); -INSERT INTO entity_versions VALUES(2030,157,'9.6','09/29/2016',' '); -INSERT INTO entity_versions VALUES(2031,157,'9.5','01/07/2016',' '); -INSERT INTO entity_versions VALUES(2032,157,'9.4','12/18/2014',' '); -INSERT INTO entity_versions VALUES(2033,157,'9.3','09/09/2013',' '); -INSERT INTO entity_versions VALUES(2034,157,'9.2','09/10/2012',' '); -INSERT INTO entity_versions VALUES(2035,157,'9.1','09/12/2011',' '); -INSERT INTO entity_versions VALUES(2036,157,'9','09/20/2010',' '); -INSERT INTO entity_versions VALUES(2037,157,'8.4','07/01/2009',' '); -INSERT INTO entity_versions VALUES(2038,157,'8.3','02/04/2008',' '); -INSERT INTO entity_versions VALUES(2039,157,'8.2','12/05/2006',' '); -INSERT INTO entity_versions VALUES(2040,157,'8.1','11/08/2005',' '); -INSERT INTO entity_versions VALUES(2041,157,'8','01/19/2005',' '); -INSERT INTO entity_versions VALUES(2042,157,'7.4','11/17/2003',' '); -INSERT INTO entity_versions VALUES(2043,157,'7.3','11/27/2002',' '); -INSERT INTO entity_versions VALUES(2044,157,'7.2','02/04/2002',' '); -INSERT INTO entity_versions VALUES(2045,157,'7.1','04/13/2001',' '); -INSERT INTO entity_versions VALUES(2046,157,'7','05/08/2000',' '); -INSERT INTO entity_versions VALUES(2047,157,'6.5','06/09/1999',' '); -INSERT INTO entity_versions VALUES(2048,157,'6.4','10/30/1998',' '); -INSERT INTO entity_versions VALUES(2049,157,'6.3','03/01/1998',' '); -INSERT INTO entity_versions VALUES(2050,11,'1','12/31/2007',' '); -INSERT INTO entity_versions VALUES(2051,11,'1.3','12/31/2008',' '); -INSERT INTO entity_versions VALUES(2052,11,'1.4','12/31/2009',' '); -INSERT INTO entity_versions VALUES(2053,11,'4','10/31/2012',' '); -INSERT INTO entity_versions VALUES(2054,11,'5','10/31/2015',' '); -INSERT INTO entity_versions VALUES(2055,11,'6','04/30/2016',' '); -INSERT INTO entity_versions VALUES(2056,11,'7','09/30/2017',' '); -INSERT INTO entity_versions VALUES(2057,11,'8','03/31/2019',' '); -INSERT INTO entity_versions VALUES(2058,73,'08.10.05','12/18/2020',' '); -INSERT INTO entity_versions VALUES(2059,73,'08.10.02','06/19/2019',' '); -INSERT INTO entity_versions VALUES(2060,73,'08.10.00','12/07/2018',' '); -INSERT INTO entity_versions VALUES(2061,73,'08.09.02','03/23/2018','04/30/2022'); -INSERT INTO entity_versions VALUES(2062,73,'08.09.01','11/10/2017','04/30/2022'); -INSERT INTO entity_versions VALUES(2063,73,'08.09.00','03/03/2017','04/30/2022'); -INSERT INTO entity_versions VALUES(2064,73,'08.08.01','07/19/2016','04/30/2021'); -INSERT INTO entity_versions VALUES(2065,73,'08.08.00','11/27/2015','04/30/2021'); -INSERT INTO entity_versions VALUES(2066,73,'08.07.01','05/15/2015','04/30/2020'); -INSERT INTO entity_versions VALUES(2067,73,'08.07.00','12/05/2014','04/30/2020'); -INSERT INTO entity_versions VALUES(2068,73,'08.06.00','06/06/2014','09/30/2019'); -INSERT INTO entity_versions VALUES(2069,73,'08.05.01','11/29/2013','09/30/2018'); -INSERT INTO entity_versions VALUES(2070,73,'08.05.00','06/07/2013','09/30/2018'); -INSERT INTO entity_versions VALUES(2071,73,'08.00.01','12/30/2012','09/30/2017'); -INSERT INTO entity_versions VALUES(2072,73,'08.00.00','06/08/2012','09/30/2017'); -INSERT INTO entity_versions VALUES(2073,73,'07.05.00','11/18/2011','04/30/2017'); -INSERT INTO entity_versions VALUES(2074,73,'07.01.00','10/15/2010','09/30/2017'); -INSERT INTO entity_versions VALUES(2075,176,'7.6','12/31/2016',' '); -INSERT INTO entity_versions VALUES(2076,176,'7.7','12/31/2017',' '); -INSERT INTO entity_versions VALUES(2077,176,'7.8','12/31/2017',' '); -INSERT INTO entity_versions VALUES(2078,176,'7.9',' ',' '); -INSERT INTO entity_versions VALUES(2079,120,'1.0','12/31/1989',' '); -INSERT INTO entity_versions VALUES(2080,120,'1.1','12/31/1990',' '); -INSERT INTO entity_versions VALUES(2081,120,'4.2A','12/31/1990',' '); -INSERT INTO entity_versions VALUES(2082,120,'4.2B','12/31/1993',' '); -INSERT INTO entity_versions VALUES(2083,120,'4.21','12/31/1993',' '); -INSERT INTO entity_versions VALUES(2084,120,'6','12/31/1995',' '); -INSERT INTO entity_versions VALUES(2085,120,'6.5','12/31/1996',' '); -INSERT INTO entity_versions VALUES(2086,120,'7','12/31/1998',' '); -INSERT INTO entity_versions VALUES(2087,120,'8','12/31/2000','04/08/2008'); -INSERT INTO entity_versions VALUES(2088,120,'9','01/14/2006','04/12/2011'); -INSERT INTO entity_versions VALUES(2089,120,'10','11/06/2008','07/08/2014'); -INSERT INTO entity_versions VALUES(2090,120,'10.25','12/31/2010',' '); -INSERT INTO entity_versions VALUES(2091,120,'10.5','07/20/2010','07/08/2014'); -INSERT INTO entity_versions VALUES(2092,120,'11','05/20/2012','07/11/2017'); -INSERT INTO entity_versions VALUES(2093,120,'12','06/05/2014','07/09/2019'); -INSERT INTO entity_versions VALUES(2094,120,'13','06/01/2016','07/13/2021'); -INSERT INTO entity_versions VALUES(2095,120,'14','09/29/2017','10/11/2022'); -INSERT INTO entity_versions VALUES(2096,120,'15','11/04/2019','01/07/2025'); -INSERT INTO entity_versions VALUES(2097,121,'1.0','10/26/2000',' '); -INSERT INTO entity_versions VALUES(2098,121,'2.0',' ',' '); -INSERT INTO entity_versions VALUES(2099,121,'3.0',' ',' '); -INSERT INTO entity_versions VALUES(2100,121,'3.1','02/19/2007','04/12/2016'); -INSERT INTO entity_versions VALUES(2101,121,'3.5','02/19/2008','04/10/2018'); -INSERT INTO entity_versions VALUES(2102,121,'4.0','04/13/2011','07/13/2021'); -INSERT INTO entity_versions VALUES(2103,31,' ',' ',' '); -INSERT INTO entity_versions VALUES(2104,190,'3','12/31/1988',' '); -INSERT INTO entity_versions VALUES(2105,190,'4','12/31/1990',' '); -INSERT INTO entity_versions VALUES(2106,190,'4.2','12/31/1991',' '); -INSERT INTO entity_versions VALUES(2107,190,'4.8','12/31/1992',' '); -INSERT INTO entity_versions VALUES(2108,190,'4.9','12/31/1992',' '); -INSERT INTO entity_versions VALUES(2109,190,'4.9.1','12/31/1993',' '); -INSERT INTO entity_versions VALUES(2110,190,'4.9.2','12/31/1993',' '); -INSERT INTO entity_versions VALUES(2111,190,'11','12/31/1995',' '); -INSERT INTO entity_versions VALUES(2112,190,'11.5','12/31/1997',' '); -INSERT INTO entity_versions VALUES(2113,190,'11.9','12/31/1998',' '); -INSERT INTO entity_versions VALUES(2114,190,'11.9.2','12/31/1998',' '); -INSERT INTO entity_versions VALUES(2115,190,'12','12/31/1999',' '); -INSERT INTO entity_versions VALUES(2116,190,'12.5','12/31/2001',' '); -INSERT INTO entity_versions VALUES(2117,190,'12.5.0.1','12/31/2002',' '); -INSERT INTO entity_versions VALUES(2118,190,'12.5.0.3','12/31/2003',' '); -INSERT INTO entity_versions VALUES(2119,190,'12.5.2','12/31/2004',' '); -INSERT INTO entity_versions VALUES(2120,190,'12.5.3','12/31/2005',' '); -INSERT INTO entity_versions VALUES(2121,190,'12.5.4','12/31/2006',' '); -INSERT INTO entity_versions VALUES(2122,190,'15','12/31/2005',' '); -INSERT INTO entity_versions VALUES(2123,190,'15.0.1','12/31/2006',' '); -INSERT INTO entity_versions VALUES(2124,190,'15.0.2','12/31/2007',' '); -INSERT INTO entity_versions VALUES(2125,190,'15.5',' ',' '); -INSERT INTO entity_versions VALUES(2126,190,'16',' ',' '); -INSERT INTO entity_versions VALUES(2127,436,'12.04.5','07/08/2014','04/28/2017'); -INSERT INTO entity_versions VALUES(2128,436,'12.04.5','07/08/2014','04/28/2017'); -INSERT INTO entity_versions VALUES(2129,436,'12.04.5','07/08/2014','04/28/2017'); -INSERT INTO entity_versions VALUES(2130,436,'14.04.6','03/07/2019','04/30/2022'); -INSERT INTO entity_versions VALUES(2131,436,'14.04.6','03/07/2019','04/30/2022'); -INSERT INTO entity_versions VALUES(2132,436,'14.04.6','03/07/2019','04/30/2022'); -INSERT INTO entity_versions VALUES(2133,436,'16.04.7','08/18/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2134,436,'16.04.7','08/18/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2135,436,'16.04.7','08/18/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2136,436,'16.04.7','08/18/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2137,436,'18.04.5','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2138,436,'18.04.5','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2139,436,'18.04.5','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2140,436,'18.04.5','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2141,436,'20.04.1','08/06/2020','04/30/2025'); -INSERT INTO entity_versions VALUES(2142,436,'20.04.1','08/06/2020','04/30/2025'); -INSERT INTO entity_versions VALUES(2143,436,'20.04.1','08/06/2020','04/30/2025'); -INSERT INTO entity_versions VALUES(2144,436,'20.04.1','08/06/2020','04/30/2025'); -INSERT INTO entity_versions VALUES(2145,436,'20.10','10/22/2020','07/22/2021'); -INSERT INTO entity_versions VALUES(2146,436,'20.10','10/22/2020','07/22/2021'); -INSERT INTO entity_versions VALUES(2147,436,'4.1','10/26/2004','04/30/2006'); -INSERT INTO entity_versions VALUES(2148,436,'5.04','04/08/2005','10/31/2006'); -INSERT INTO entity_versions VALUES(2149,436,'5.1','10/12/2005','04/13/2007'); -INSERT INTO entity_versions VALUES(2150,436,'6.06.0','06/01/2006','07/14/2009'); -INSERT INTO entity_versions VALUES(2151,436,'6.06.1','08/10/2006',' '); -INSERT INTO entity_versions VALUES(2152,436,'6.06.2','01/21/2008',' '); -INSERT INTO entity_versions VALUES(2153,436,'6.1','10/26/2006','04/26/2008'); -INSERT INTO entity_versions VALUES(2154,436,'7.04','04/19/2007','10/19/2008'); -INSERT INTO entity_versions VALUES(2155,436,'7.1','10/18/2007','04/18/2009'); -INSERT INTO entity_versions VALUES(2156,436,'8.04.0','04/24/2008','05/12/2011'); -INSERT INTO entity_versions VALUES(2157,436,'8.04.1','07/03/2008',' '); -INSERT INTO entity_versions VALUES(2158,436,'8.04.2','01/22/2009',' '); -INSERT INTO entity_versions VALUES(2159,436,'8.04.3','07/16/2009',' '); -INSERT INTO entity_versions VALUES(2160,436,'8.04.4','01/28/2010',' '); -INSERT INTO entity_versions VALUES(2161,436,'8.1','10/30/2008','04/30/2010'); -INSERT INTO entity_versions VALUES(2162,436,'9.04','04/23/2009','10/23/2010'); -INSERT INTO entity_versions VALUES(2163,436,'9.1','08/23/2013','04/30/2011'); -INSERT INTO entity_versions VALUES(2164,436,'10.04.0','10/21/2015','05/09/2013'); -INSERT INTO entity_versions VALUES(2165,436,'10.04.1','10/21/2015',' '); -INSERT INTO entity_versions VALUES(2166,436,'10.04.2','10/21/2015',' '); -INSERT INTO entity_versions VALUES(2167,436,'10.04.3','10/21/2015',' '); -INSERT INTO entity_versions VALUES(2168,436,'10.04.4','10/21/2015',' '); -INSERT INTO entity_versions VALUES(2169,436,'10.1','08/23/2013','04/10/2012'); -INSERT INTO entity_versions VALUES(2170,436,'11.04','08/23/2013','10/28/2012'); -INSERT INTO entity_versions VALUES(2171,436,'11.1','08/23/2013','05/09/2013'); -INSERT INTO entity_versions VALUES(2172,436,'12.04.0','04/27/2018','04/28/2017'); -INSERT INTO entity_versions VALUES(2173,436,'12.04.1','04/27/2018','04/28/2017'); -INSERT INTO entity_versions VALUES(2174,436,'12.04.2','04/27/2018','08/08/2014'); -INSERT INTO entity_versions VALUES(2175,436,'12.04.3','04/27/2018','08/08/2014'); -INSERT INTO entity_versions VALUES(2176,436,'12.04.4','04/27/2018','08/08/2014'); -INSERT INTO entity_versions VALUES(2177,436,'12.1','04/22/2016','05/16/2014'); -INSERT INTO entity_versions VALUES(2178,436,'13.04','04/22/2016','01/27/2014'); -INSERT INTO entity_versions VALUES(2179,436,'13.1','04/22/2016','07/17/2014'); -INSERT INTO entity_versions VALUES(2180,436,'14.04.0','03/07/2019','04/30/2019'); -INSERT INTO entity_versions VALUES(2181,436,'14.04.1','03/07/2019','04/30/2019'); -INSERT INTO entity_versions VALUES(2182,436,'14.04.2','03/07/2019','08/31/2016'); -INSERT INTO entity_versions VALUES(2183,436,'14.04.3','03/07/2019','08/31/2016'); -INSERT INTO entity_versions VALUES(2184,436,'14.04.4','03/07/2019','08/31/2016'); -INSERT INTO entity_versions VALUES(2185,436,'14.04.5','03/07/2019','04/30/2019'); -INSERT INTO entity_versions VALUES(2186,436,'14.1','04/22/2016','07/23/2015'); -INSERT INTO entity_versions VALUES(2187,436,'15.04','04/28/2016','02/04/2016'); -INSERT INTO entity_versions VALUES(2188,436,'15.1','08/04/2016','07/28/2016'); -INSERT INTO entity_versions VALUES(2189,436,'16.04.0','08/13/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2190,436,'16.04.1','08/13/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2191,436,'16.04.2','08/13/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2192,436,'16.04.3','08/13/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2193,436,'16.04.4','08/13/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2194,436,'16.04.5','08/13/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2195,436,'16.1','07/21/2017','07/20/2017'); -INSERT INTO entity_versions VALUES(2196,436,'17.04','02/07/2018','01/13/2018'); -INSERT INTO entity_versions VALUES(2197,436,'17.1','08/02/2018','07/19/2018'); -INSERT INTO entity_versions VALUES(2198,436,'18.04.0','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2199,436,'18.04.1','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2200,436,'18.04.2','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2201,436,'18.04.3','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2202,436,'18.04.4','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2203,436,'18.1','08/08/2019','07/18/2019'); -INSERT INTO entity_versions VALUES(2204,436,'19.04','08/18/2020','04/18/2019'); -INSERT INTO entity_versions VALUES(2205,436,'19.1','08/21/2020','10/17/2019'); -INSERT INTO entity_versions VALUES(2206,436,'20.04.0','02/11/2021','04/30/2025'); -INSERT INTO entity_versions VALUES(2207,436,'20.04.1','02/11/2021','04/30/2025'); -INSERT INTO entity_versions VALUES(2208,436,'20.04','02/11/2021','04/30/2025'); -INSERT INTO entity_versions VALUES(2209,436,'20.1','10/22/2020','01/31/2022'); -INSERT INTO entity_versions VALUES(2210,434,'8.3','11/03/2020','05/31/2029'); -INSERT INTO entity_versions VALUES(2211,434,'8.2','04/28/2020','05/31/2029'); -INSERT INTO entity_versions VALUES(2212,434,'8.1','11/05/2019','05/31/2029'); -INSERT INTO entity_versions VALUES(2213,434,'8','05/07/2019','05/31/2029'); -INSERT INTO entity_versions VALUES(2214,434,'7.9','09/29/2020','06/30/2024'); -INSERT INTO entity_versions VALUES(2215,434,'7.8','03/31/2020','06/30/2024'); -INSERT INTO entity_versions VALUES(2216,434,'7.7','08/06/2019','06/30/2024'); -INSERT INTO entity_versions VALUES(2217,434,'7.6','10/30/2018','06/30/2024'); -INSERT INTO entity_versions VALUES(2218,434,'7.5','04/10/2018','06/30/2024'); -INSERT INTO entity_versions VALUES(2219,434,'7.4','07/31/2017','06/30/2024'); -INSERT INTO entity_versions VALUES(2220,434,'7.3','11/03/2016','06/30/2024'); -INSERT INTO entity_versions VALUES(2221,434,'7.2','11/19/2015','06/30/2024'); -INSERT INTO entity_versions VALUES(2222,434,'7.1','03/05/2015','06/30/2024'); -INSERT INTO entity_versions VALUES(2223,434,'7.0','06/09/2014',' '); -INSERT INTO entity_versions VALUES(2224,434,'7.0','12/11/2013',' '); -INSERT INTO entity_versions VALUES(2225,434,'6.10','06/19/2018','11/30/2020'); -INSERT INTO entity_versions VALUES(2226,434,'6.9','03/21/2017','11/30/2020'); -INSERT INTO entity_versions VALUES(2227,434,'6.8','05/10/2016','11/30/2020'); -INSERT INTO entity_versions VALUES(2228,434,'6.7','07/22/2015','11/30/2020'); -INSERT INTO entity_versions VALUES(2229,434,'6.6','10/14/2014','11/30/2020'); -INSERT INTO entity_versions VALUES(2230,434,'6.5','11/21/2013','11/30/2020'); -INSERT INTO entity_versions VALUES(2231,434,'6.4','02/21/2013','11/30/2020'); -INSERT INTO entity_versions VALUES(2232,434,'6.3','06/20/2012','11/30/2020'); -INSERT INTO entity_versions VALUES(2233,434,'6.2','12/06/2011','11/30/2020'); -INSERT INTO entity_versions VALUES(2234,434,'6.1','05/19/2011','11/30/2020'); -INSERT INTO entity_versions VALUES(2235,434,'6.0','11/09/2010','11/30/2020'); -INSERT INTO entity_versions VALUES(2236,434,'5.11','09/16/2014','03/31/2017'); -INSERT INTO entity_versions VALUES(2237,434,'5.10','10/01/2013','03/31/2017'); -INSERT INTO entity_versions VALUES(2238,434,'5.9','01/07/2013','03/31/2017'); -INSERT INTO entity_versions VALUES(2239,434,'5.8','02/20/2012','03/31/2017'); -INSERT INTO entity_versions VALUES(2240,434,'5.7','07/21/2011','03/31/2017'); -INSERT INTO entity_versions VALUES(2241,434,'5.6','01/13/2011','03/31/2017'); -INSERT INTO entity_versions VALUES(2242,434,'5.5','03/30/2010','03/31/2017'); -INSERT INTO entity_versions VALUES(2243,434,'5.4','09/02/2009','03/31/2017'); -INSERT INTO entity_versions VALUES(2244,434,'5.3','01/20/2009','03/31/2017'); -INSERT INTO entity_versions VALUES(2245,434,'5.2','05/21/2008','03/31/2017'); -INSERT INTO entity_versions VALUES(2246,434,'5.1','11/07/2007','03/31/2017'); -INSERT INTO entity_versions VALUES(2247,434,'5.0','03/15/2007','03/31/2017'); -INSERT INTO entity_versions VALUES(2248,434,'4.9','02/16/2011','02/16/2011'); -INSERT INTO entity_versions VALUES(2249,434,'4.8','05/19/2009','02/16/2011'); -INSERT INTO entity_versions VALUES(2250,434,'4.7','07/29/2008','02/16/2011'); -INSERT INTO entity_versions VALUES(2251,434,'4.6','11/15/2007','02/16/2011'); -INSERT INTO entity_versions VALUES(2252,434,'4.5','05/01/2007','02/16/2011'); -INSERT INTO entity_versions VALUES(2253,434,'4.4','08/10/2006','02/16/2011'); -INSERT INTO entity_versions VALUES(2254,434,'4.3','03/12/2006','02/16/2011'); -INSERT INTO entity_versions VALUES(2255,434,'4.2','10/05/2005','02/16/2011'); -INSERT INTO entity_versions VALUES(2256,434,'4.1','06/08/2005','02/16/2011'); -INSERT INTO entity_versions VALUES(2257,434,'4','02/15/2005','02/16/2011'); -INSERT INTO entity_versions VALUES(2258,434,'3.9','06/20/2007','10/21/2010'); -INSERT INTO entity_versions VALUES(2259,434,'3.8','07/20/2006','10/21/2010'); -INSERT INTO entity_versions VALUES(2260,434,'3.7','03/17/2006','10/21/2010'); -INSERT INTO entity_versions VALUES(2261,434,'3.6','09/28/2005','10/21/2010'); -INSERT INTO entity_versions VALUES(2262,434,'3.5','05/18/2005','10/21/2010'); -INSERT INTO entity_versions VALUES(2263,434,'3.4','12/12/2004','10/21/2010'); -INSERT INTO entity_versions VALUES(2264,434,'3.3','09/03/2004','10/21/2010'); -INSERT INTO entity_versions VALUES(2265,434,'3.2','05/12/2004','10/21/2010'); -INSERT INTO entity_versions VALUES(2266,434,'3.1','01/16/2004','10/21/2010'); -INSERT INTO entity_versions VALUES(2267,434,'3','10/22/2003','10/21/2010'); -INSERT INTO entity_versions VALUES(2268,434,'2.1.7','04/28/2005','05/31/2009'); -INSERT INTO entity_versions VALUES(2269,434,'2.1.6','12/13/2004','05/31/2009'); -INSERT INTO entity_versions VALUES(2270,434,'2.1.5','08/18/2004','05/31/2009'); -INSERT INTO entity_versions VALUES(2271,434,'2.1.4','04/21/2004','05/31/2009'); -INSERT INTO entity_versions VALUES(2272,434,'2.1.3','12/19/2004','05/31/2009'); -INSERT INTO entity_versions VALUES(2273,434,'2.1.2','03/29/2003','05/31/2009'); -INSERT INTO entity_versions VALUES(2274,434,'2.1.1','02/14/2003','05/31/2009'); -INSERT INTO entity_versions VALUES(2275,434,'2.1','03/23/2002','05/31/2009'); -INSERT INTO entity_versions VALUES(2276,429,'0.9','08/01/1993',' '); -INSERT INTO entity_versions VALUES(2277,429,'0.91','01/01/1994',' '); -INSERT INTO entity_versions VALUES(2278,429,'0.93R5','03/01/1995',' '); -INSERT INTO entity_versions VALUES(2279,429,'0.93R6','11/01/1995',' '); -INSERT INTO entity_versions VALUES(2280,429,'1',' ',' '); -INSERT INTO entity_versions VALUES(2281,429,'1.1','06/17/1996',' '); -INSERT INTO entity_versions VALUES(2282,429,'1.2','12/12/1996',' '); -INSERT INTO entity_versions VALUES(2283,429,'1.3','06/05/1997',' '); -INSERT INTO entity_versions VALUES(2284,429,'2.0','07/24/1998',' '); -INSERT INTO entity_versions VALUES(2285,429,'2.1','03/09/1999','09/30/2000'); -INSERT INTO entity_versions VALUES(2286,429,'2.2','08/15/2000','06/30/2003'); -INSERT INTO entity_versions VALUES(2287,429,'3.0','07/19/2002','06/30/2006'); -INSERT INTO entity_versions VALUES(2288,429,'3.1','06/06/2005','03/31/2008'); -INSERT INTO entity_versions VALUES(2289,429,'4.0','04/08/2007','02/15/2010'); -INSERT INTO entity_versions VALUES(2290,429,'5.0','02/14/2009','02/06/2012'); -INSERT INTO entity_versions VALUES(2291,429,'6.0','02/06/2011','05/31/2015'); -INSERT INTO entity_versions VALUES(2292,429,'7','05/04/2013','04/26/2016'); -INSERT INTO entity_versions VALUES(2293,429,'8','04/26/2015','06/30/2020'); -INSERT INTO entity_versions VALUES(2294,429,'9','06/17/2017','01/31/2020'); -INSERT INTO entity_versions VALUES(2295,429,'10','07/06/2019','01/31/2022'); -INSERT INTO entity_versions VALUES(2296,429,'11',' ',' '); -INSERT INTO entity_versions VALUES(2297,429,'12',' ',' '); -INSERT INTO entity_versions VALUES(2298,429,'13',' ',' '); -INSERT INTO entity_versions VALUES(2299,427,'2.1','08/19/2009',' '); -INSERT INTO entity_versions VALUES(2300,427,'3.1','07/31/2005','10/31/2010'); -INSERT INTO entity_versions VALUES(2301,427,'3.3','03/17/2005','10/31/2010'); -INSERT INTO entity_versions VALUES(2302,427,'3.4','03/01/2005','10/31/2010'); -INSERT INTO entity_versions VALUES(2303,427,'3.5','07/28/2005','10/31/2010'); -INSERT INTO entity_versions VALUES(2304,427,'3.6','04/04/2006','10/31/2010'); -INSERT INTO entity_versions VALUES(2305,427,'3.7','05/06/2006','10/31/2010'); -INSERT INTO entity_versions VALUES(2306,427,'3.8','04/20/2012','10/31/2010'); -INSERT INTO entity_versions VALUES(2307,427,'3.9','04/20/2012','10/31/2010'); -INSERT INTO entity_versions VALUES(2308,427,'4','06/23/2005','02/29/2012'); -INSERT INTO entity_versions VALUES(2309,427,'4.0','09/15/2005','02/29/2012'); -INSERT INTO entity_versions VALUES(2310,427,'4.1','10/19/2005','02/29/2012'); -INSERT INTO entity_versions VALUES(2311,427,'4.2','11/04/2006','02/29/2012'); -INSERT INTO entity_versions VALUES(2312,427,'4.2.0','10/23/2005','02/29/2012'); -INSERT INTO entity_versions VALUES(2313,427,'4.3','08/27/2006','02/29/2012'); -INSERT INTO entity_versions VALUES(2314,427,'4.4','11/01/2006','02/29/2012'); -INSERT INTO entity_versions VALUES(2315,427,'4.5','12/08/2007','02/29/2012'); -INSERT INTO entity_versions VALUES(2316,427,'4.6','09/18/2008','02/29/2012'); -INSERT INTO entity_versions VALUES(2317,427,'4.7','02/14/2010','02/29/2012'); -INSERT INTO entity_versions VALUES(2318,427,'4.8','04/20/2012','02/29/2012'); -INSERT INTO entity_versions VALUES(2319,427,'4.9','04/20/2012','02/29/2012'); -INSERT INTO entity_versions VALUES(2320,427,'5','04/11/2007','03/31/2017'); -INSERT INTO entity_versions VALUES(2321,427,'5.1','11/27/2007','03/31/2017'); -INSERT INTO entity_versions VALUES(2322,427,'5.2','06/18/2008','03/31/2017'); -INSERT INTO entity_versions VALUES(2323,427,'5.3','02/14/2010','03/31/2017'); -INSERT INTO entity_versions VALUES(2324,427,'5.4','06/25/2010','03/31/2017'); -INSERT INTO entity_versions VALUES(2325,427,'5.5','05/14/2010','03/31/2017'); -INSERT INTO entity_versions VALUES(2326,427,'5.6','08/12/2011','03/31/2017'); -INSERT INTO entity_versions VALUES(2327,427,'5.7','09/13/2011','03/31/2017'); -INSERT INTO entity_versions VALUES(2328,427,'5.8','02/27/2012','03/31/2017'); -INSERT INTO entity_versions VALUES(2329,427,'5.9','01/12/2013','03/31/2017'); -INSERT INTO entity_versions VALUES(2330,427,'5.1','10/07/2014','03/31/2017'); -INSERT INTO entity_versions VALUES(2331,427,'5.11','09/27/2014','03/31/2017'); -INSERT INTO entity_versions VALUES(2332,427,'6','12/19/2011','05/10/2017'); -INSERT INTO entity_versions VALUES(2333,427,'6.1','12/08/2011','05/10/2017'); -INSERT INTO entity_versions VALUES(2334,427,'6.2','12/19/2011','05/10/2017'); -INSERT INTO entity_versions VALUES(2335,427,'6.3','07/09/2012','05/10/2017'); -INSERT INTO entity_versions VALUES(2336,427,'6.4','06/20/2013','05/10/2017'); -INSERT INTO entity_versions VALUES(2337,427,'6.5','12/21/2013','05/10/2017'); -INSERT INTO entity_versions VALUES(2338,427,'6.6','07/31/2015','05/10/2017'); -INSERT INTO entity_versions VALUES(2339,427,'6.7','01/21/2016','05/10/2017'); -INSERT INTO entity_versions VALUES(2340,427,'6.8','05/24/2016','05/10/2017'); -INSERT INTO entity_versions VALUES(2341,427,'6.9','04/04/2017','05/10/2017'); -INSERT INTO entity_versions VALUES(2342,427,'6.1','07/02/2018','05/10/2017'); -INSERT INTO entity_versions VALUES(2343,427,'7.0.1406','04/07/2015','08/06/2020'); -INSERT INTO entity_versions VALUES(2344,427,'7.1.1503','11/13/2015','08/06/2020'); -INSERT INTO entity_versions VALUES(2345,427,'7.2.1511','05/18/2016','08/06/2020'); -INSERT INTO entity_versions VALUES(2346,427,'7.3.1611','02/20/2017','08/06/2020'); -INSERT INTO entity_versions VALUES(2347,427,'7.4.1708','02/26/2018','08/06/2020'); -INSERT INTO entity_versions VALUES(2348,427,'7.5.1804','05/09/2018','08/06/2020'); -INSERT INTO entity_versions VALUES(2349,427,'7.6.1810','12/02/2018','08/06/2020'); -INSERT INTO entity_versions VALUES(2350,427,'7.7.1908','09/15/2019','08/06/2020'); -INSERT INTO entity_versions VALUES(2351,427,'7.8.2003','06/17/2020','08/06/2020'); -INSERT INTO entity_versions VALUES(2352,427,'7.9.2009','01/18/2021','08/06/2020'); -INSERT INTO entity_versions VALUES(2353,427,'8.0','03/10/2021','05/31/2024'); -INSERT INTO entity_versions VALUES(2354,427,'8.0.1905','09/09/2020','05/31/2024'); -INSERT INTO entity_versions VALUES(2355,427,'8.1.1911','10/21/2020','05/31/2024'); -INSERT INTO entity_versions VALUES(2356,427,'8.2.2004','01/15/2021','05/31/2024'); -INSERT INTO entity_versions VALUES(2357,427,'8.3.2011','02/22/2021','05/31/2024'); -INSERT INTO entity_versions VALUES(2358,453,'1','11/05/2003','09/20/2004'); -INSERT INTO entity_versions VALUES(2359,453,'2','05/18/2004','04/11/2005'); -INSERT INTO entity_versions VALUES(2360,453,'3','11/08/2004','01/16/2006'); -INSERT INTO entity_versions VALUES(2361,453,'4','06/13/2005','08/07/2006'); -INSERT INTO entity_versions VALUES(2362,453,'5','03/20/2006','07/02/2007'); -INSERT INTO entity_versions VALUES(2363,453,'6','10/24/2006','12/07/2007'); -INSERT INTO entity_versions VALUES(2364,453,'7','05/31/2007','06/13/2008'); -INSERT INTO entity_versions VALUES(2365,453,'8','11/08/2007','01/07/2009'); -INSERT INTO entity_versions VALUES(2366,453,'9','05/13/2008','07/10/2009'); -INSERT INTO entity_versions VALUES(2367,453,'10','11/25/2008','12/17/2009'); -INSERT INTO entity_versions VALUES(2368,453,'11','06/09/2009','06/25/2010'); -INSERT INTO entity_versions VALUES(2369,453,'12','11/17/2009','12/02/2010'); -INSERT INTO entity_versions VALUES(2370,453,'13','05/25/2010','06/24/2011'); -INSERT INTO entity_versions VALUES(2371,453,'14','11/02/2010','12/09/2011'); -INSERT INTO entity_versions VALUES(2372,453,'15','05/24/2011','06/26/2012'); -INSERT INTO entity_versions VALUES(2373,453,'16','11/08/2011','02/12/2013'); -INSERT INTO entity_versions VALUES(2374,453,'17','05/29/2012','07/30/2013'); -INSERT INTO entity_versions VALUES(2375,453,'18','01/15/2013','01/14/2014'); -INSERT INTO entity_versions VALUES(2376,453,'19','07/02/2013','01/06/2015'); -INSERT INTO entity_versions VALUES(2377,453,'20','12/17/2013','06/23/2015'); -INSERT INTO entity_versions VALUES(2378,453,'21','12/09/2014','01/12/2015'); -INSERT INTO entity_versions VALUES(2379,453,'22','05/26/2015','07/19/2016'); -INSERT INTO entity_versions VALUES(2380,453,'23','11/03/2015','12/20/2016'); -INSERT INTO entity_versions VALUES(2381,453,'24','06/21/2016','08/08/2017'); -INSERT INTO entity_versions VALUES(2382,453,'25','11/22/2016','12/12/2017'); -INSERT INTO entity_versions VALUES(2383,453,'26','07/11/2017','05/29/2018'); -INSERT INTO entity_versions VALUES(2384,453,'27','11/14/2017','11/30/2018'); -INSERT INTO entity_versions VALUES(2385,453,'28','05/01/2018','05/28/2019'); -INSERT INTO entity_versions VALUES(2386,453,'29','10/30/2018','11/26/2019'); -INSERT INTO entity_versions VALUES(2387,453,'30','05/07/2019','05/26/2020'); -INSERT INTO entity_versions VALUES(2388,453,'31','10/29/2019','11/24/2020'); -INSERT INTO entity_versions VALUES(2389,453,'32','04/28/2020','05/25/2021'); -INSERT INTO entity_versions VALUES(2390,453,'33','10/27/2020',' '); -INSERT INTO entity_versions VALUES(2391,453,'34','04/20/2021',' '); -INSERT INTO entity_versions VALUES(2392,453,'35','10/19/2021',' '); -INSERT INTO entity_versions VALUES(2393,432,'4.5',' ',' '); -INSERT INTO entity_versions VALUES(2394,432,'4.6','12/10/2007',' '); -INSERT INTO entity_versions VALUES(2395,432,'4.7','08/05/2008',' '); -INSERT INTO entity_versions VALUES(2396,432,'4.8','05/26/2009',' '); -INSERT INTO entity_versions VALUES(2397,432,'4.9',' ',' '); -INSERT INTO entity_versions VALUES(2398,432,'5','06/26/2007','03/31/2017'); -INSERT INTO entity_versions VALUES(2399,432,'5.1','11/26/2007','03/31/2017'); -INSERT INTO entity_versions VALUES(2400,432,'5.2','06/02/2008','03/31/2017'); -INSERT INTO entity_versions VALUES(2401,432,'5.3','01/28/2009','03/31/2017'); -INSERT INTO entity_versions VALUES(2402,432,'5.4','09/09/2009','03/31/2017'); -INSERT INTO entity_versions VALUES(2403,432,'5.5','04/07/2010','03/31/2017'); -INSERT INTO entity_versions VALUES(2404,432,'5.6','01/22/2011','03/31/2017'); -INSERT INTO entity_versions VALUES(2405,432,'5.7','08/16/2011','03/31/2017'); -INSERT INTO entity_versions VALUES(2406,432,'5.8','03/02/2012','03/31/2017'); -INSERT INTO entity_versions VALUES(2407,432,'5.9','01/16/2013','03/31/2017'); -INSERT INTO entity_versions VALUES(2408,432,'5.1','10/08/2013','03/31/2017'); -INSERT INTO entity_versions VALUES(2409,432,'5.11','09/23/2014','03/31/2017'); -INSERT INTO entity_versions VALUES(2410,432,'6','02/11/2011','03/31/2021'); -INSERT INTO entity_versions VALUES(2411,432,'6.1','06/01/2011','03/31/2021'); -INSERT INTO entity_versions VALUES(2412,432,'6.2','12/15/2011','03/31/2021'); -INSERT INTO entity_versions VALUES(2413,432,'6.3','06/28/2012','03/31/2021'); -INSERT INTO entity_versions VALUES(2414,432,'6.4','02/28/2013','03/31/2021'); -INSERT INTO entity_versions VALUES(2415,432,'6.5','11/27/2013','03/31/2021'); -INSERT INTO entity_versions VALUES(2416,432,'6.6','10/21/2014','03/31/2021'); -INSERT INTO entity_versions VALUES(2417,432,'6.7','07/31/2015','03/31/2021'); -INSERT INTO entity_versions VALUES(2418,432,' ','03/31/2017',' '); -INSERT INTO entity_versions VALUES(2419,432,'6.8','05/16/2016','03/31/2021'); -INSERT INTO entity_versions VALUES(2420,432,'6.9','03/28/2017','03/31/2021'); -INSERT INTO entity_versions VALUES(2421,432,'6.1','07/02/2018','03/31/2021'); -INSERT INTO entity_versions VALUES(2422,432,'7','07/23/2014','07/31/2024'); -INSERT INTO entity_versions VALUES(2423,432,'7.1','03/12/2015','07/31/2024'); -INSERT INTO entity_versions VALUES(2424,432,'7.2','11/25/2015','07/31/2024'); -INSERT INTO entity_versions VALUES(2425,432,'7.3','11/10/2016','07/31/2024'); -INSERT INTO entity_versions VALUES(2426,432,'7.4','08/08/2017','07/31/2024'); -INSERT INTO entity_versions VALUES(2427,432,'7.5','04/17/2018','07/31/2024'); -INSERT INTO entity_versions VALUES(2428,432,'7.6','11/07/2018','07/31/2024'); -INSERT INTO entity_versions VALUES(2429,432,'7.7','08/15/2019','07/31/2024'); -INSERT INTO entity_versions VALUES(2430,432,'7.8','04/08/2020','07/31/2024'); -INSERT INTO entity_versions VALUES(2431,432,'7.9','10/07/2020','07/31/2024'); -INSERT INTO entity_versions VALUES(2432,432,'8','07/18/2019','07/31/2029'); -INSERT INTO entity_versions VALUES(2433,432,'8.1','11/15/2019','07/31/2029'); -INSERT INTO entity_versions VALUES(2434,432,'8.2','05/06/2020','07/31/2029'); -INSERT INTO entity_versions VALUES(2435,432,'8.3','11/13/2020','07/31/2029'); -INSERT INTO entity_versions VALUES(2436,454,'2011.09',' ',' '); -INSERT INTO entity_versions VALUES(2437,454,'2012.03.3','06/27/2012',' '); -INSERT INTO entity_versions VALUES(2438,454,'2012.09.1','02/19/2013',' '); -INSERT INTO entity_versions VALUES(2439,454,'2013.03','05/13/2013',' '); -INSERT INTO entity_versions VALUES(2440,454,'2013.03.1','05/13/2013',' '); -INSERT INTO entity_versions VALUES(2441,454,'2013.09.1','11/11/2013',' '); -INSERT INTO entity_versions VALUES(2442,454,'2013.09.2','12/12/2013',' '); -INSERT INTO entity_versions VALUES(2443,454,'2014.03.1','04/14/2014',' '); -INSERT INTO entity_versions VALUES(2444,454,'2014.03.2','06/16/2014',' '); -INSERT INTO entity_versions VALUES(2445,454,'2014.09.1','10/14/2014',' '); -INSERT INTO entity_versions VALUES(2446,454,'2014.09.2','01/29/2015',' '); -INSERT INTO entity_versions VALUES(2447,454,'2015.03.1','08/21/2015',' '); -INSERT INTO entity_versions VALUES(2448,454,'2015.09.2','02/16/2016',' '); -INSERT INTO entity_versions VALUES(2449,454,'2016.03.1','05/04/2016',' '); -INSERT INTO entity_versions VALUES(2450,454,'2016.03.2','06/09/2016',' '); -INSERT INTO entity_versions VALUES(2451,454,'2016.03.3','06/28/2016',' '); -INSERT INTO entity_versions VALUES(2452,454,'2016.09.1','12/22/2016',' '); -INSERT INTO entity_versions VALUES(2453,454,'2017.03','06/19/2017',' '); -INSERT INTO entity_versions VALUES(2454,454,'2017.09','11/06/2017',' '); -INSERT INTO entity_versions VALUES(2455,454,'2018.03','05/14/2018',' '); -INSERT INTO entity_versions VALUES(2456,431,'10.2','12/07/2006','11/30/2008'); -INSERT INTO entity_versions VALUES(2457,431,'10.3','10/04/2007','10/31/2009'); -INSERT INTO entity_versions VALUES(2458,431,'11','06/19/2008','07/26/2010'); -INSERT INTO entity_versions VALUES(2459,431,'11.1','12/18/2008','01/14/2011'); -INSERT INTO entity_versions VALUES(2460,431,'11.2','11/12/2009','05/12/2011'); -INSERT INTO entity_versions VALUES(2461,431,'11.3','07/15/2010','01/20/2012'); -INSERT INTO entity_versions VALUES(2462,431,'11.4','03/10/2011','11/05/2012'); -INSERT INTO entity_versions VALUES(2463,431,'12.1','11/16/2011','05/15/2013'); -INSERT INTO entity_versions VALUES(2464,431,'12.2','09/05/2012','01/15/2014'); -INSERT INTO entity_versions VALUES(2465,431,'12.3','03/13/2013','01/29/2015'); -INSERT INTO entity_versions VALUES(2466,431,'13.1','11/19/2013','02/03/2016'); -INSERT INTO entity_versions VALUES(2467,431,'13.2','11/04/2014','01/17/2017'); -INSERT INTO entity_versions VALUES(2468,431,'42.1','11/04/2015','05/17/2017'); -INSERT INTO entity_versions VALUES(2469,431,'42.2','11/16/2016','01/26/2018'); -INSERT INTO entity_versions VALUES(2470,431,'42.3','07/26/2017','07/01/2019'); -INSERT INTO entity_versions VALUES(2471,431,'15','05/25/2018','12/03/2019'); -INSERT INTO entity_versions VALUES(2472,431,'15.1','05/22/2019','02/02/2021'); -INSERT INTO entity_versions VALUES(2473,431,'15.2','07/02/2020',' '); -INSERT INTO entity_versions VALUES(2474,431,'15.3','07/07/2021',' '); -INSERT INTO entity_versions VALUES(2475,435,'SuSE Linux Enterprise Server S/390','10/31/2000',' '); -INSERT INTO entity_versions VALUES(2476,435,'Sparc','04/01/2001',' '); -INSERT INTO entity_versions VALUES(2477,435,'IAs32','04/01/2001',' '); -INSERT INTO entity_versions VALUES(2478,435,'7','10/13/2001',' '); -INSERT INTO entity_versions VALUES(2479,435,'8','10/01/2002','12/20/2007'); -INSERT INTO entity_versions VALUES(2480,435,'8 SP1',' ',' '); -INSERT INTO entity_versions VALUES(2481,435,'8 SP2',' ',' '); -INSERT INTO entity_versions VALUES(2482,435,'8 SP2a',' ',' '); -INSERT INTO entity_versions VALUES(2483,435,'8 SP3',' ',' '); -INSERT INTO entity_versions VALUES(2484,435,'8 SP4',' ',' '); -INSERT INTO entity_versions VALUES(2485,435,'9','08/03/2004','08/31/2011'); -INSERT INTO entity_versions VALUES(2486,435,'9 SP1','01/19/2005','08/31/2011'); -INSERT INTO entity_versions VALUES(2487,435,'9 SP2','07/07/2005','08/31/2011'); -INSERT INTO entity_versions VALUES(2488,435,'9 SP3','12/22/2005','08/31/2011'); -INSERT INTO entity_versions VALUES(2489,435,'9 SP4','12/12/2007','08/31/2011'); -INSERT INTO entity_versions VALUES(2490,435,'10','06/17/2006','07/31/2013'); -INSERT INTO entity_versions VALUES(2491,435,'10 SP1','06/18/2007','07/31/2013'); -INSERT INTO entity_versions VALUES(2492,435,'10 SP2','05/19/2008','07/31/2013'); -INSERT INTO entity_versions VALUES(2493,435,'10 SP3','10/12/2009','07/31/2013'); -INSERT INTO entity_versions VALUES(2494,435,'10 SP4','04/12/2011','07/31/2013'); -INSERT INTO entity_versions VALUES(2495,435,'11','03/24/2009','03/31/2019'); -INSERT INTO entity_versions VALUES(2496,435,'11 SP1','06/02/2010','03/31/2019'); -INSERT INTO entity_versions VALUES(2497,435,'11 SP2','02/15/2012','03/31/2019'); -INSERT INTO entity_versions VALUES(2498,435,'11 SP3','07/01/2013','03/31/2019'); -INSERT INTO entity_versions VALUES(2499,435,'11 SP4','07/16/2015','03/31/2019'); -INSERT INTO entity_versions VALUES(2500,435,'12','10/27/2014','08/31/2024'); -INSERT INTO entity_versions VALUES(2501,435,'12 SP1','01/12/2016','08/31/2024'); -INSERT INTO entity_versions VALUES(2502,435,'12 SP2','11/11/2016','08/31/2024'); -INSERT INTO entity_versions VALUES(2503,435,'12 SP3','09/07/2017','08/31/2024'); -INSERT INTO entity_versions VALUES(2504,435,'12 SP4','12/11/2018','08/31/2024'); -INSERT INTO entity_versions VALUES(2505,435,'12 SP5','12/09/2019','08/31/2024'); -INSERT INTO entity_versions VALUES(2506,435,'15','07/16/2018','07/31/2028'); -INSERT INTO entity_versions VALUES(2507,435,'15 SP1','06/24/2019','07/31/2028'); -INSERT INTO entity_versions VALUES(2508,435,'15 SP2','07/21/2020','07/31/2028'); -INSERT INTO entity_versions VALUES(2509,430,'20.4','12/25/2020','06/25/2024'); -INSERT INTO entity_versions VALUES(2510,430,'20.3','09/29/2020','03/29/2023'); -INSERT INTO entity_versions VALUES(2511,430,'20.2','06/30/2020','12/30/2023'); -INSERT INTO entity_versions VALUES(2512,430,'20.1','03/27/2020','09/27/2022'); -INSERT INTO entity_versions VALUES(2513,430,'19.4','12/26/2019','06/26/2023'); -INSERT INTO entity_versions VALUES(2514,430,'19.3','09/26/2019','03/26/2023'); -INSERT INTO entity_versions VALUES(2515,430,'19.2','06/26/2019','12/26/2022'); -INSERT INTO entity_versions VALUES(2516,430,'19.1','03/27/2019','09/27/2022'); -INSERT INTO entity_versions VALUES(2517,430,'18.4','12/22/2018','06/22/2022'); -INSERT INTO entity_versions VALUES(2518,430,'18.3','09/26/2018','03/26/2022'); -INSERT INTO entity_versions VALUES(2519,430,'18.2','06/29/2018','12/29/2021'); -INSERT INTO entity_versions VALUES(2520,430,'18.1','03/28/2018','09/28/2021'); -INSERT INTO entity_versions VALUES(2521,430,'17.4','12/21/2017','06/21/2021'); -INSERT INTO entity_versions VALUES(2522,430,'17.3','08/25/2017','02/25/2021'); -INSERT INTO entity_versions VALUES(2523,430,'17.2','06/06/2017','12/06/2020'); -INSERT INTO entity_versions VALUES(2524,430,'17.1','03/03/2017','09/03/2020'); -INSERT INTO entity_versions VALUES(2525,430,'16.2','11/29/2016','05/29/2020'); -INSERT INTO entity_versions VALUES(2526,430,'16.1','07/28/2016','01/28/2020'); -INSERT INTO entity_versions VALUES(2527,430,'15.1X53','06/05/2015','12/05/2018'); -INSERT INTO entity_versions VALUES(2528,430,'15.1X49','06/30/2015','06/30/2021'); -INSERT INTO entity_versions VALUES(2529,430,'15.1','06/05/2015','12/05/2018'); -INSERT INTO entity_versions VALUES(2530,430,'14.2','11/05/2014','05/05/2018'); -INSERT INTO entity_versions VALUES(2531,430,'14.1X53','09/26/2014','06/30/2019'); -INSERT INTO entity_versions VALUES(2532,430,'14.1','06/13/2014','06/13/2018'); -INSERT INTO entity_versions VALUES(2533,430,'13.3','01/22/2014','07/22/2017'); -INSERT INTO entity_versions VALUES(2534,430,'13.2X52','07/06/2014','06/30/2017'); -INSERT INTO entity_versions VALUES(2535,430,'13.2X51','11/22/2013','06/30/2016'); -INSERT INTO entity_versions VALUES(2536,430,'13.2X50','06/28/2013','12/28/2014'); -INSERT INTO entity_versions VALUES(2537,430,'13.2','08/29/2013','02/29/2016'); -INSERT INTO entity_versions VALUES(2538,430,'13.1X50','07/25/2013','12/30/2015'); -INSERT INTO entity_versions VALUES(2539,430,'13.1','03/15/2013','09/15/2015'); -INSERT INTO entity_versions VALUES(2540,430,'12.3X54','07/18/2014','07/18/2018'); -INSERT INTO entity_versions VALUES(2541,430,'12.3X52','08/23/2013','02/23/2016'); -INSERT INTO entity_versions VALUES(2542,430,'12.3X51','03/15/2013','09/15/2015'); -INSERT INTO entity_versions VALUES(2543,430,'12.3X50','12/08/2012','07/31/2016'); -INSERT INTO entity_versions VALUES(2544,430,'12.3X48','03/06/2015','06/30/2022'); -INSERT INTO entity_versions VALUES(2545,430,'12.3','01/31/2013','07/31/2016'); -INSERT INTO entity_versions VALUES(2546,430,'12.2X50','07/05/2012','07/31/2015'); -INSERT INTO entity_versions VALUES(2547,430,'12.2','09/05/2012','03/05/2015'); -INSERT INTO entity_versions VALUES(2548,430,'12.1X49','04/19/2012','10/19/2014'); -INSERT INTO entity_versions VALUES(2549,430,'12.1X48','01/28/2013','06/30/2015'); -INSERT INTO entity_versions VALUES(2550,430,'12.1X47','08/18/2014','02/18/2017'); -INSERT INTO entity_versions VALUES(2551,430,'12.1X46','12/30/2013','06/30/2017'); -INSERT INTO entity_versions VALUES(2552,430,'12.1X45','07/17/2013','01/17/2015'); -INSERT INTO entity_versions VALUES(2553,430,'12.1X44','01/18/2013','07/18/2016'); -INSERT INTO entity_versions VALUES(2554,430,'12.1','03/28/2012','09/28/2014'); -INSERT INTO entity_versions VALUES(2555,430,'11.4','12/21/2011','06/21/2015'); -INSERT INTO entity_versions VALUES(2556,430,'11.3','08/15/2011','03/15/2013'); -INSERT INTO entity_versions VALUES(2557,430,'11.2','08/03/2011','02/15/2013'); -INSERT INTO entity_versions VALUES(2558,430,'11.1','03/29/2011','05/15/2012'); -INSERT INTO entity_versions VALUES(2559,430,'10.41','12/08/2010','06/08/2014'); -INSERT INTO entity_versions VALUES(2560,430,'10.3','08/15/2010','12/21/2011'); -INSERT INTO entity_versions VALUES(2561,430,'10.2','05/28/2010','11/15/2011'); -INSERT INTO entity_versions VALUES(2562,430,'10.1','02/15/2010','05/15/2011'); -INSERT INTO entity_versions VALUES(2563,430,'10.0','11/04/2009','05/15/2013'); -INSERT INTO entity_versions VALUES(2564,430,'9.6','08/06/2009','11/06/2010'); -INSERT INTO entity_versions VALUES(2565,430,'9.5','04/14/2009','08/15/2010'); -INSERT INTO entity_versions VALUES(2566,430,'9.4','02/11/2009','05/11/2010'); -INSERT INTO entity_versions VALUES(2567,430,'9.3','11/14/2008','05/15/2012'); -INSERT INTO entity_versions VALUES(2568,430,'9.2','08/12/2008','11/12/2009'); -INSERT INTO entity_versions VALUES(2569,430,'9.1','04/28/2008','07/28/2009'); -INSERT INTO entity_versions VALUES(2570,430,'9.0','02/15/2008','05/15/2009'); -INSERT INTO entity_versions VALUES(2571,430,'8.5','11/16/2007','05/16/2011'); -INSERT INTO entity_versions VALUES(2572,430,'8.4','08/09/2007','11/09/2008'); -INSERT INTO entity_versions VALUES(2573,430,'8.3','04/18/2007','07/18/2008'); -INSERT INTO entity_versions VALUES(2574,430,'8.2','02/15/2007','05/15/2008'); -INSERT INTO entity_versions VALUES(2575,430,'8.11','11/06/2006','05/06/2010'); -INSERT INTO entity_versions VALUES(2576,430,'8.0','08/15/2006','11/15/2007'); -INSERT INTO entity_versions VALUES(2577,430,'7.6','05/15/2006','08/15/2007'); -INSERT INTO entity_versions VALUES(2578,430,'7.5','02/08/2006','05/08/2007'); -INSERT INTO entity_versions VALUES(2579,430,'7.4','11/15/2005','02/15/2007'); -INSERT INTO entity_versions VALUES(2580,430,'7.3','08/16/2005','11/16/2006'); -INSERT INTO entity_versions VALUES(2581,430,'7.2','05/14/2005','08/14/2006'); -INSERT INTO entity_versions VALUES(2582,430,'7.1','02/14/2005','05/14/2006'); -INSERT INTO entity_versions VALUES(2583,430,'7.0','11/15/2004','02/15/2006'); -INSERT INTO entity_versions VALUES(2584,430,'6.4','08/12/2004','11/12/2005'); -INSERT INTO entity_versions VALUES(2585,430,'6.3','05/15/2004','08/15/2005'); -INSERT INTO entity_versions VALUES(2586,430,'6.2','02/15/2004','05/15/2005'); -INSERT INTO entity_versions VALUES(2587,430,'6.1','11/15/2003','02/15/2005'); -INSERT INTO entity_versions VALUES(2588,430,'6.0','08/15/2003','11/15/2004'); -INSERT INTO entity_versions VALUES(2589,430,'5.7','05/15/2003','08/15/2004'); -INSERT INTO entity_versions VALUES(2590,430,'5.6','02/15/2003','05/15/2004'); -INSERT INTO entity_versions VALUES(2591,430,'5.5','11/15/2002','02/15/2004'); -INSERT INTO entity_versions VALUES(2592,430,'5.4','08/12/2002','11/15/2003'); -INSERT INTO entity_versions VALUES(2593,430,'5.3','05/12/2002','08/15/2003'); -INSERT INTO entity_versions VALUES(2594,430,'5.2','02/12/2002','05/15/2003'); -INSERT INTO entity_versions VALUES(2595,430,'5.1','11/07/2001','02/15/2003'); -INSERT INTO entity_versions VALUES(2596,430,'5.0','08/17/2001','11/15/2002'); -INSERT INTO entity_versions VALUES(2597,430,'4.4','04/30/2001',' '); -INSERT INTO entity_versions VALUES(2598,430,'4.3','01/31/2001',' '); -INSERT INTO entity_versions VALUES(2599,430,'4.2','10/16/2000',' '); -INSERT INTO entity_versions VALUES(2600,430,'4.1','08/15/2000',' '); -INSERT INTO entity_versions VALUES(2601,430,'4.0','03/31/2000',' '); -INSERT INTO entity_versions VALUES(2602,433,'1','06/16/2016',' '); -INSERT INTO entity_versions VALUES(2603,433,'2','10/31/2017',' '); -INSERT INTO entity_versions VALUES(2604,433,'3','02/07/2019',' '); -INSERT INTO entity_versions VALUES(2605,433,'4','03/05/2021',' '); -INSERT INTO entity_versions VALUES(2606,322,'1','10/01/1956',' '); -INSERT INTO entity_versions VALUES(2607,322,'2','12/31/1958',' '); -INSERT INTO entity_versions VALUES(2608,322,'3','12/31/1958',' '); -INSERT INTO entity_versions VALUES(2609,322,'4','12/31/1961',' '); -INSERT INTO entity_versions VALUES(2610,322,'5.0','12/31/1968',' '); -INSERT INTO entity_versions VALUES(2611,322,'5.1','12/31/1980',' '); -INSERT INTO entity_versions VALUES(2612,322,'6','12/31/2001',' '); -INSERT INTO entity_versions VALUES(2613,322,'66','12/31/1966',' '); -INSERT INTO entity_versions VALUES(2614,322,'77','12/31/1978',' '); -INSERT INTO entity_versions VALUES(2615,322,'90','12/31/1991',' '); -INSERT INTO entity_versions VALUES(2616,322,'95','12/31/1997',' '); -INSERT INTO entity_versions VALUES(2617,322,'2003','12/31/2004',' '); -INSERT INTO entity_versions VALUES(2618,322,'2008','09/01/2010',' '); -INSERT INTO entity_versions VALUES(2619,322,'2018','11/28/2018',' '); -INSERT INTO entity_versions VALUES(2620,337,'ES1','12/31/1997',' '); -INSERT INTO entity_versions VALUES(2621,337,'ES2','12/31/1998',' '); -INSERT INTO entity_versions VALUES(2622,337,'ES3','12/31/1999',' '); -INSERT INTO entity_versions VALUES(2623,337,'ES4',' ',' '); -INSERT INTO entity_versions VALUES(2624,337,'ES5','12/31/2009',' '); -INSERT INTO entity_versions VALUES(2625,337,'ES6','12/31/2015',' '); -INSERT INTO entity_versions VALUES(2626,343,'1','12/31/1981',' '); -INSERT INTO entity_versions VALUES(2627,343,'2','12/31/2006',' '); -INSERT INTO entity_versions VALUES(2628,345,'pascal','12/31/2070',' '); -INSERT INTO entity_versions VALUES(2629,345,'Object pascal','12/31/1985',' '); -INSERT INTO entity_versions VALUES(2630,345,'extended pascal','12/31/1990',' '); -INSERT INTO entity_versions VALUES(2631,345,'Free pascal','12/31/1997',' '); -INSERT INTO entity_versions VALUES(2632,345,'smalltalk80','12/31/1980',' '); -INSERT INTO entity_versions VALUES(2633,363,'ANSI smalltalk','12/31/1988',' '); -INSERT INTO entity_versions VALUES(2634,363,'Ambrai smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2635,363,'Dolphin smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2636,363,'GNU smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2637,363,'LSWsvision smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2638,363,'Little smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2639,363,'Resilient embedded smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2640,363,'Object studio smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2641,363,'Pocket smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2642,363,'Public Domain smalltalk (PDST)',' ',' '); -INSERT INTO entity_versions VALUES(2643,363,'Slate smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2644,363,'Smalltalk Express',' ',' '); -INSERT INTO entity_versions VALUES(2645,363,'smalltalk MT',' ',' '); -INSERT INTO entity_versions VALUES(2646,363,'smalltalk X',' ',' '); -INSERT INTO entity_versions VALUES(2647,363,'Squat smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2648,363,'Squeak smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2649,363,'Strong smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2650,363,'Susie smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2651,363,'Talks2 smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2652,363,'VisualWorks smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2653,363,'VisualAge smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2654,363,'Vmx Quicknet smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2655,363,'Zoku smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2656,324,'0.1.1','07/02/2015',' '); -INSERT INTO entity_versions VALUES(2657,324,'0.2.0','07/30/2015',' '); -INSERT INTO entity_versions VALUES(2658,324,'0.3.0',' ',' '); -INSERT INTO entity_versions VALUES(2659,324,'0.4.0',' ',' '); -INSERT INTO entity_versions VALUES(2660,324,'0.5.0',' ',' '); -INSERT INTO entity_versions VALUES(2661,324,'0.6.0',' ',' '); -INSERT INTO entity_versions VALUES(2662,324,'0.7.0',' ',' '); -INSERT INTO entity_versions VALUES(2663,324,'0.8.0',' ',' '); -INSERT INTO entity_versions VALUES(2664,324,'0.9.0',' ',' '); -INSERT INTO entity_versions VALUES(2665,324,'0.10.0',' ',' '); -INSERT INTO entity_versions VALUES(2666,324,'0.11.0',' ',' '); -INSERT INTO entity_versions VALUES(2667,324,'0.12.0',' ',' '); -INSERT INTO entity_versions VALUES(2668,324,'0.13.0',' ',' '); -INSERT INTO entity_versions VALUES(2669,324,'14',' ',' '); -INSERT INTO entity_versions VALUES(2670,324,'14.1',' ',' '); -INSERT INTO entity_versions VALUES(2671,324,'14.2',' ',' '); -INSERT INTO entity_versions VALUES(2672,324,'14.3',' ',' '); -INSERT INTO entity_versions VALUES(2673,324,'14.4',' ',' '); -INSERT INTO entity_versions VALUES(2674,324,'14.5',' ',' '); -INSERT INTO entity_versions VALUES(2675,324,'15',' ',' '); -INSERT INTO entity_versions VALUES(2676,360,'72','01/31/1972',' '); -INSERT INTO entity_versions VALUES(2677,360,'76','07/31/1976',' '); -INSERT INTO entity_versions VALUES(2678,360,'79.5','04/30/1981',' '); -INSERT INTO entity_versions VALUES(2679,360,'82.4','01/31/1983',' '); -INSERT INTO entity_versions VALUES(2680,360,'4.06','03/31/1984',' '); -INSERT INTO entity_versions VALUES(2681,360,'5.03','07/31/1986',' '); -INSERT INTO entity_versions VALUES(2682,360,'6.01','01/31/1985',' '); -INSERT INTO entity_versions VALUES(2683,360,'6.03','03/31/1988',' '); -INSERT INTO entity_versions VALUES(2684,360,'6.06','03/31/1990',' '); -INSERT INTO entity_versions VALUES(2685,360,'6.07','04/30/1991',' '); -INSERT INTO entity_versions VALUES(2686,360,'6.08','03/31/1993',' '); -INSERT INTO entity_versions VALUES(2687,360,'6.09','10/31/1993',' '); -INSERT INTO entity_versions VALUES(2688,360,'6.1','10/31/1994',' '); -INSERT INTO entity_versions VALUES(2689,360,'6.11','10/31/1995',' '); -INSERT INTO entity_versions VALUES(2690,360,'6.12','11/30/1996',' '); -INSERT INTO entity_versions VALUES(2691,360,'7','10/31/1998',' '); -INSERT INTO entity_versions VALUES(2692,360,'8','11/30/1999',' '); -INSERT INTO entity_versions VALUES(2693,360,'8.1','07/31/2000',' '); -INSERT INTO entity_versions VALUES(2694,360,'8.2','03/31/2001',' '); -INSERT INTO entity_versions VALUES(2695,360,'9','10/31/2002',' '); -INSERT INTO entity_versions VALUES(2696,360,'9.1','12/31/2003',' '); -INSERT INTO entity_versions VALUES(2697,360,'9.1.3','08/31/2004',' '); -INSERT INTO entity_versions VALUES(2698,360,'9.2','03/31/2008',' '); -INSERT INTO entity_versions VALUES(2699,360,'9.2M2','04/30/2010',' '); -INSERT INTO entity_versions VALUES(2700,360,'9.3','07/31/2011',' '); -INSERT INTO entity_versions VALUES(2701,360,'9.3M2','08/31/2012',' '); -INSERT INTO entity_versions VALUES(2702,360,'9.4','07/31/2013',' '); -INSERT INTO entity_versions VALUES(2703,360,'9.4M1','12/31/2013',' '); -INSERT INTO entity_versions VALUES(2704,360,'9.4M2','08/31/2014',' '); -INSERT INTO entity_versions VALUES(2705,360,'9.4M3','07/31/2015',' '); -INSERT INTO entity_versions VALUES(2706,360,'9.4M4','11/30/2016',' '); -INSERT INTO entity_versions VALUES(2707,360,'9.4M5','09/30/2017',' '); -INSERT INTO entity_versions VALUES(2708,360,'9.4M6','11/30/2018',' '); -INSERT INTO entity_versions VALUES(2709,360,'9.4M7','08/31/2020',' '); -INSERT INTO entity_versions VALUES(2710,367,'0.8','10/31/2012',' '); -INSERT INTO entity_versions VALUES(2711,367,'0.9','06/18/2013',' '); -INSERT INTO entity_versions VALUES(2712,367,'1','04/12/2014',' '); -INSERT INTO entity_versions VALUES(2713,367,'1.1','10/06/2014',' '); -INSERT INTO entity_versions VALUES(2714,367,'1.3','11/12/2014',' '); -INSERT INTO entity_versions VALUES(2715,367,'1.4','01/20/2015',' '); -INSERT INTO entity_versions VALUES(2716,367,'1.5','07/20/2015',' '); -INSERT INTO entity_versions VALUES(2717,367,'1.6','09/16/2015',' '); -INSERT INTO entity_versions VALUES(2718,367,'1.7','11/30/2015',' '); -INSERT INTO entity_versions VALUES(2719,367,'1.8','02/22/2016',' '); -INSERT INTO entity_versions VALUES(2720,367,'2','09/22/2016',' '); -INSERT INTO entity_versions VALUES(2721,367,'2.1','11/08/2016',' '); -INSERT INTO entity_versions VALUES(2722,367,'2.2','02/22/2017',' '); -INSERT INTO entity_versions VALUES(2723,367,'2.3','04/27/2017',' '); -INSERT INTO entity_versions VALUES(2724,367,'2.4','06/27/2017',' '); -INSERT INTO entity_versions VALUES(2725,367,'2.5','08/31/2017',' '); -INSERT INTO entity_versions VALUES(2726,367,'2.6','10/31/2017',' '); -INSERT INTO entity_versions VALUES(2727,367,'2.7','01/31/2018',' '); -INSERT INTO entity_versions VALUES(2728,367,'2.8','03/27/2018',' '); -INSERT INTO entity_versions VALUES(2729,367,'2.9','05/14/2018',' '); -INSERT INTO entity_versions VALUES(2730,367,'3','07/30/2018',' '); -INSERT INTO entity_versions VALUES(2731,367,'3.1','09/27/2018',' '); -INSERT INTO entity_versions VALUES(2732,367,'3.2','11/30/2018',' '); -INSERT INTO entity_versions VALUES(2733,367,'3.3','01/31/2019',' '); -INSERT INTO entity_versions VALUES(2734,367,'3.4','03/29/2019',' '); -INSERT INTO entity_versions VALUES(2735,367,'3.5','05/29/2019',' '); -INSERT INTO entity_versions VALUES(2736,367,'3.6','08/28/2019',' '); -INSERT INTO entity_versions VALUES(2737,367,'3.7','11/05/2019',' '); -INSERT INTO entity_versions VALUES(2738,367,'3.8','02/20/2020',' '); -INSERT INTO entity_versions VALUES(2739,367,'3.9','05/12/2020',' '); -INSERT INTO entity_versions VALUES(2740,367,'4','08/20/2020',' '); -INSERT INTO entity_versions VALUES(2741,367,'4.1','11/19/2020',' '); -INSERT INTO entity_versions VALUES(2742,367,'4.2','02/25/2021',' '); -INSERT INTO entity_versions VALUES(2743,367,'4.3','05/26/2021',' '); -INSERT INTO entity_versions VALUES(2744,367,'4.4','08/26/2021',' '); -INSERT INTO entity_versions VALUES(2745,331,'JDK Beta','12/31/1995',' '); -INSERT INTO entity_versions VALUES(2746,331,'1.0','01/01/1996',' '); -INSERT INTO entity_versions VALUES(2747,331,'1.1','02/01/1997',' '); -INSERT INTO entity_versions VALUES(2748,331,'1.2','12/01/1998',' '); -INSERT INTO entity_versions VALUES(2749,331,'1.3','05/01/2000',' '); -INSERT INTO entity_versions VALUES(2750,331,'1.4','02/01/2002','10/01/2008'); -INSERT INTO entity_versions VALUES(2751,331,'5.0','09/01/2004','11/01/2009'); -INSERT INTO entity_versions VALUES(2752,331,'6','12/01/2006','04/01/2013'); -INSERT INTO entity_versions VALUES(2753,331,'7','07/01/2011','04/01/2015'); -INSERT INTO entity_versions VALUES(2754,331,'8','03/01/2014','12/01/1930'); -INSERT INTO entity_versions VALUES(2755,331,'9','09/01/2017','03/01/2018'); -INSERT INTO entity_versions VALUES(2756,331,'10','03/01/2018','09/01/2026'); -INSERT INTO entity_versions VALUES(2757,331,'11','09/01/2018','10/01/2024'); -INSERT INTO entity_versions VALUES(2758,331,'12','03/01/2019','09/01/2019'); -INSERT INTO entity_versions VALUES(2759,331,'13','09/01/2019','03/01/2020'); -INSERT INTO entity_versions VALUES(2760,331,'14','03/01/2020','09/01/2020'); -INSERT INTO entity_versions VALUES(2761,331,'15','09/01/2020','03/01/2021'); -INSERT INTO entity_versions VALUES(2762,331,'16','03/01/2021','09/01/2021'); -INSERT INTO entity_versions VALUES(2763,331,'17','09/01/2021','09/01/2029'); -INSERT INTO entity_versions VALUES(2764,331,'18','03/01/2022','09/01/2022'); -INSERT INTO entity_versions VALUES(2765,331,'19','09/01/2022','03/01/2023'); -INSERT INTO entity_versions VALUES(2766,331,'20','03/01/2023','01/09/2023'); -INSERT INTO entity_versions VALUES(2767,331,'21','09/01/2023',' '); -INSERT INTO entity_versions VALUES(2768,347,'1','12/18/1987',' '); -INSERT INTO entity_versions VALUES(2769,347,'4','12/31/1993',' '); -INSERT INTO entity_versions VALUES(2770,347,'5','10/17/1994',' '); -INSERT INTO entity_versions VALUES(2771,347,'5.001','03/13/1995',' '); -INSERT INTO entity_versions VALUES(2772,347,'5.002','02/29/1996',' '); -INSERT INTO entity_versions VALUES(2773,347,'5.003','06/25/1996',' '); -INSERT INTO entity_versions VALUES(2774,347,'5.004','05/15/1997',' '); -INSERT INTO entity_versions VALUES(2775,347,'5.005','07/22/1998',' '); -INSERT INTO entity_versions VALUES(2776,347,'5.6','03/22/2020',' '); -INSERT INTO entity_versions VALUES(2777,347,'5.8','07/18/2002',' '); -INSERT INTO entity_versions VALUES(2778,347,'5.10.0','12/18/2007',' '); -INSERT INTO entity_versions VALUES(2779,347,'5.11',' ',' '); -INSERT INTO entity_versions VALUES(2780,347,'5.12','04/12/2010',' '); -INSERT INTO entity_versions VALUES(2781,347,'5.12.3','01/21/2011',' '); -INSERT INTO entity_versions VALUES(2782,347,'5.12.4','06/20/2011',' '); -INSERT INTO entity_versions VALUES(2783,347,'5.12.5','11/10/2012',' '); -INSERT INTO entity_versions VALUES(2784,347,'5.14','05/14/2011',' '); -INSERT INTO entity_versions VALUES(2785,347,'5.16','05/20/2012',' '); -INSERT INTO entity_versions VALUES(2786,347,'5.18','05/18/2013',' '); -INSERT INTO entity_versions VALUES(2787,347,'5.20.0','05/27/2014',' '); -INSERT INTO entity_versions VALUES(2788,368,'7.0','12/31/2002',' '); -INSERT INTO entity_versions VALUES(2789,368,'7.1','12/31/2003',' '); -INSERT INTO entity_versions VALUES(2790,368,'8.0','12/31/2005',' '); -INSERT INTO entity_versions VALUES(2791,368,'9.0','11/19/2007',' '); -INSERT INTO entity_versions VALUES(2792,368,'10.0','04/01/2010',' '); -INSERT INTO entity_versions VALUES(2793,368,'11.0','12/31/2012',' '); -INSERT INTO entity_versions VALUES(2794,368,'12.0','12/31/2013',' '); -INSERT INTO entity_versions VALUES(2795,368,'14.0','12/31/2015',' '); -INSERT INTO entity_versions VALUES(2796,368,'15.0','12/31/2017',' '); -INSERT INTO entity_versions VALUES(2797,368,'16.0','12/31/2019',' '); -INSERT INTO entity_versions VALUES(2798,315,'1','09/01/1987',' '); -INSERT INTO entity_versions VALUES(2799,315,'2','04/01/1990',' '); -INSERT INTO entity_versions VALUES(2800,315,'3','10/01/1991',' '); -INSERT INTO entity_versions VALUES(2801,315,'4','01/01/1993',' '); -INSERT INTO entity_versions VALUES(2802,315,'5','03/01/1994',' '); -INSERT INTO entity_versions VALUES(2803,315,'5.45.5','02/04/2018',' '); -INSERT INTO entity_versions VALUES(2804,364,'1.0','09/09/2014',' '); -INSERT INTO entity_versions VALUES(2805,364,'1.1','10/22/2014',' '); -INSERT INTO entity_versions VALUES(2806,364,'1.2','04/08/2015',' '); -INSERT INTO entity_versions VALUES(2807,364,'2.0','09/21/2015',' '); -INSERT INTO entity_versions VALUES(2808,364,'2.1','10/20/2015',' '); -INSERT INTO entity_versions VALUES(2809,364,'2.2','03/21/2016',' '); -INSERT INTO entity_versions VALUES(2810,364,'2.2.1','05/03/2016',' '); -INSERT INTO entity_versions VALUES(2811,364,'3.0','09/13/2016',' '); -INSERT INTO entity_versions VALUES(2812,364,'3.0.1','10/28/2016',' '); -INSERT INTO entity_versions VALUES(2813,364,'3.0.2','12/13/2016',' '); -INSERT INTO entity_versions VALUES(2814,364,'3.1','03/27/2017',' '); -INSERT INTO entity_versions VALUES(2815,364,'3.1.1','04/21/2017',' '); -INSERT INTO entity_versions VALUES(2816,364,'4.0','09/19/2017',' '); -INSERT INTO entity_versions VALUES(2817,364,'4.0.2','11/01/2017',' '); -INSERT INTO entity_versions VALUES(2818,364,'4.0.3','12/05/2017',' '); -INSERT INTO entity_versions VALUES(2819,364,'4.1','03/29/2018',' '); -INSERT INTO entity_versions VALUES(2820,364,'4.1.1','05/04/2018',' '); -INSERT INTO entity_versions VALUES(2821,364,'4.1.2','05/31/2018',' '); -INSERT INTO entity_versions VALUES(2822,364,'4.1.3','07/27/2018',' '); -INSERT INTO entity_versions VALUES(2823,364,'4.2','09/17/2018',' '); -INSERT INTO entity_versions VALUES(2824,364,'4.2.1','10/30/2018',' '); -INSERT INTO entity_versions VALUES(2825,364,'4.2.2','02/04/2019',' '); -INSERT INTO entity_versions VALUES(2826,364,'4.2.3','02/28/2019',' '); -INSERT INTO entity_versions VALUES(2827,364,'4.2.4','03/29/2019',' '); -INSERT INTO entity_versions VALUES(2828,364,'5.0','03/25/2019',' '); -INSERT INTO entity_versions VALUES(2829,364,'5.0.1','04/18/2019',' '); -INSERT INTO entity_versions VALUES(2830,364,'5.0.2','07/15/2019',' '); -INSERT INTO entity_versions VALUES(2831,364,'5.0.3','08/30/2019',' '); -INSERT INTO entity_versions VALUES(2832,364,'5.1','09/10/2019',' '); -INSERT INTO entity_versions VALUES(2833,364,'5.1.1','10/11/2019',' '); -INSERT INTO entity_versions VALUES(2834,364,'5.1.2','11/07/2019',' '); -INSERT INTO entity_versions VALUES(2835,364,'5.1.3','12/13/2019',' '); -INSERT INTO entity_versions VALUES(2836,364,'5.1.4','01/31/2020',' '); -INSERT INTO entity_versions VALUES(2837,364,'5.1.5','03/09/2020',' '); -INSERT INTO entity_versions VALUES(2838,364,'5.2','03/24/2020',' '); -INSERT INTO entity_versions VALUES(2839,364,'5.2.1','03/30/2020',' '); -INSERT INTO entity_versions VALUES(2840,364,'5.2.2','04/15/2020',' '); -INSERT INTO entity_versions VALUES(2841,364,'5.2.3','04/29/2020',' '); -INSERT INTO entity_versions VALUES(2842,364,'5.2.4','05/20/2020',' '); -INSERT INTO entity_versions VALUES(2843,364,'5.2.5','08/05/2020',' '); -INSERT INTO entity_versions VALUES(2844,364,'5.3','09/16/2020',' '); -INSERT INTO entity_versions VALUES(2845,364,'5.3.1','11/13/2020',' '); -INSERT INTO entity_versions VALUES(2846,364,'5.3.2','12/15/2020',' '); -INSERT INTO entity_versions VALUES(2847,364,'5.3.3','01/25/2021',' '); -INSERT INTO entity_versions VALUES(2848,364,'5.4','04/26/2021',' '); -INSERT INTO entity_versions VALUES(2849,364,'5.4.1','05/25/2021',' '); -INSERT INTO entity_versions VALUES(2850,364,'5.4.2','06/28/2021',' '); -INSERT INTO entity_versions VALUES(2851,364,'5.4.3','09/09/2021',' '); -INSERT INTO entity_versions VALUES(2852,364,'5.5','09/20/2021',' '); -INSERT INTO entity_versions VALUES(2853,341,'ACL2','12/31/1990',' '); -INSERT INTO entity_versions VALUES(2854,341,'Arc','12/31/2008',' '); -INSERT INTO entity_versions VALUES(2855,341,'AutoLISP','12/31/1986',' '); -INSERT INTO entity_versions VALUES(2856,341,'BBN LISP','12/31/2066',' '); -INSERT INTO entity_versions VALUES(2857,341,'Chez Scheme','12/31/1985',' '); -INSERT INTO entity_versions VALUES(2858,341,'Chicken','12/31/2000',' '); -INSERT INTO entity_versions VALUES(2859,341,'Clojure','12/31/2007',' '); -INSERT INTO entity_versions VALUES(2860,341,'ANSI Common Lisp','12/31/1994',' '); -INSERT INTO entity_versions VALUES(2861,341,'Common Lisp','12/31/1984',' '); -INSERT INTO entity_versions VALUES(2862,341,'Dylan','12/31/1992',' '); -INSERT INTO entity_versions VALUES(2863,341,'Emacs Lisp','12/31/1976',' '); -INSERT INTO entity_versions VALUES(2864,341,'EuLisp','12/31/1990',' '); -INSERT INTO entity_versions VALUES(2865,341,'Franz Lisp','12/31/1980',' '); -INSERT INTO entity_versions VALUES(2866,341,'Game Oriented Assembly Lisp (GOAL)','12/31/2000',' '); -INSERT INTO entity_versions VALUES(2867,341,'Hy','12/31/2013',' '); -INSERT INTO entity_versions VALUES(2868,341,'Ikarus','12/31/2007',' '); -INSERT INTO entity_versions VALUES(2869,341,'Interlisp','12/31/2067',' '); -INSERT INTO entity_versions VALUES(2870,341,'ISLISP','12/31/1997',' '); -INSERT INTO entity_versions VALUES(2871,341,'Le Lisp','12/31/1981',' '); -INSERT INTO entity_versions VALUES(2872,341,'Lisp Flavored Erlang (LFE)','12/31/2008',' '); -INSERT INTO entity_versions VALUES(2873,341,'Lisp Machine Lisp','12/31/1984',' '); -INSERT INTO entity_versions VALUES(2874,341,'Maclisp','12/31/2066',' '); -INSERT INTO entity_versions VALUES(2875,341,'MultiLisp','12/31/1980',' '); -INSERT INTO entity_versions VALUES(2876,341,'NIL','12/31/2070',' '); -INSERT INTO entity_versions VALUES(2877,341,'OpenLisp','12/31/1988',' '); -INSERT INTO entity_versions VALUES(2878,341,'Owl Lisp','12/31/2012',' '); -INSERT INTO entity_versions VALUES(2879,341,'PicoLisp','12/31/1988',' '); -INSERT INTO entity_versions VALUES(2880,341,'Portable Standard Lisp','12/31/1980',' '); -INSERT INTO entity_versions VALUES(2881,341,'Racket','12/31/1994',' '); -INSERT INTO entity_versions VALUES(2882,341,'Scheme','12/31/2070',' '); -INSERT INTO entity_versions VALUES(2883,341,'Scheme In One Defun (SIOD)','12/31/1988',' '); -INSERT INTO entity_versions VALUES(2884,341,'SKILL','12/31/1990',' '); -INSERT INTO entity_versions VALUES(2885,341,'TXR Lisp','12/31/2009',' '); -INSERT INTO entity_versions VALUES(2886,354,'3.10.0','10/04/2021',' '); -INSERT INTO entity_versions VALUES(2887,354,'3.9.7','08/30/2021',' '); -INSERT INTO entity_versions VALUES(2888,354,'3.9.6','06/28/2021',' '); -INSERT INTO entity_versions VALUES(2889,354,'3.9.5','05/03/2021',' '); -INSERT INTO entity_versions VALUES(2890,354,'3.9.4','04/04/2021',' '); -INSERT INTO entity_versions VALUES(2891,354,'3.9.3','04/02/2021',' '); -INSERT INTO entity_versions VALUES(2892,354,'3.9.2','02/19/2021',' '); -INSERT INTO entity_versions VALUES(2893,354,'3.9.1','12/08/2020',' '); -INSERT INTO entity_versions VALUES(2894,354,'3.9.0','10/05/2020',' '); -INSERT INTO entity_versions VALUES(2895,354,'3.8.12','08/30/2021',' '); -INSERT INTO entity_versions VALUES(2896,354,'3.8.11','06/28/2021',' '); -INSERT INTO entity_versions VALUES(2897,354,'3.8.10','05/03/2021',' '); -INSERT INTO entity_versions VALUES(2898,354,'3.8.9','04/02/2021',' '); -INSERT INTO entity_versions VALUES(2899,354,'3.8.8','02/19/2021',' '); -INSERT INTO entity_versions VALUES(2900,354,'3.8.7','12/21/2020',' '); -INSERT INTO entity_versions VALUES(2901,354,'3.8.6','09/23/2020',' '); -INSERT INTO entity_versions VALUES(2902,354,'3.8.5','07/20/2020',' '); -INSERT INTO entity_versions VALUES(2903,354,'3.8.4','07/13/2020',' '); -INSERT INTO entity_versions VALUES(2904,354,'3.8.3','05/13/2020',' '); -INSERT INTO entity_versions VALUES(2905,354,'3.8.2','02/24/2020',' '); -INSERT INTO entity_versions VALUES(2906,354,'3.8.1','12/18/2019',' '); -INSERT INTO entity_versions VALUES(2907,354,'3.8.0','10/14/2019',' '); -INSERT INTO entity_versions VALUES(2908,354,'3.7.12','09/04/2021',' '); -INSERT INTO entity_versions VALUES(2909,354,'3.7.11','06/28/2021',' '); -INSERT INTO entity_versions VALUES(2910,354,'3.7.10','02/15/2021',' '); -INSERT INTO entity_versions VALUES(2911,354,'3.7.9','08/17/2020',' '); -INSERT INTO entity_versions VALUES(2912,354,'3.7.8','06/27/2020',' '); -INSERT INTO entity_versions VALUES(2913,354,'3.7.7','03/10/2020',' '); -INSERT INTO entity_versions VALUES(2914,354,'3.7.6','12/18/2019',' '); -INSERT INTO entity_versions VALUES(2915,354,'3.7.5','10/15/2019',' '); -INSERT INTO entity_versions VALUES(2916,354,'3.7.4','07/08/2019',' '); -INSERT INTO entity_versions VALUES(2917,354,'3.7.3','03/25/2019',' '); -INSERT INTO entity_versions VALUES(2918,354,'3.7.2','12/24/2018',' '); -INSERT INTO entity_versions VALUES(2919,354,'3.7.1','10/20/2018',' '); -INSERT INTO entity_versions VALUES(2920,354,'3.7.0','06/27/2018',' '); -INSERT INTO entity_versions VALUES(2921,354,'3.6.15','09/04/2021',' '); -INSERT INTO entity_versions VALUES(2922,354,'3.6.14','06/28/2021',' '); -INSERT INTO entity_versions VALUES(2923,354,'3.6.13','02/15/2021',' '); -INSERT INTO entity_versions VALUES(2924,354,'3.6.12','08/17/2020',' '); -INSERT INTO entity_versions VALUES(2925,354,'3.6.11','06/27/2020',' '); -INSERT INTO entity_versions VALUES(2926,354,'3.6.10','12/18/2019',' '); -INSERT INTO entity_versions VALUES(2927,354,'3.6.9','07/02/2019',' '); -INSERT INTO entity_versions VALUES(2928,354,'3.6.8','12/24/2018',' '); -INSERT INTO entity_versions VALUES(2929,354,'3.6.7','10/20/2018',' '); -INSERT INTO entity_versions VALUES(2930,354,'3.6.6','06/27/2018',' '); -INSERT INTO entity_versions VALUES(2931,354,'3.6.5','03/28/2018',' '); -INSERT INTO entity_versions VALUES(2932,354,'3.6.4','12/19/2017',' '); -INSERT INTO entity_versions VALUES(2933,354,'3.6.3','10/03/2017',' '); -INSERT INTO entity_versions VALUES(2934,354,'3.6.2','07/17/2017',' '); -INSERT INTO entity_versions VALUES(2935,354,'3.6.1','03/21/2017',' '); -INSERT INTO entity_versions VALUES(2936,354,'3.6.0','12/23/2016',' '); -INSERT INTO entity_versions VALUES(2937,354,'3.5.10','09/05/2020',' '); -INSERT INTO entity_versions VALUES(2938,354,'3.5.8','11/01/2019',' '); -INSERT INTO entity_versions VALUES(2939,354,'3.5.7','03/18/2019',' '); -INSERT INTO entity_versions VALUES(2940,354,'3.5.6','08/08/2018',' '); -INSERT INTO entity_versions VALUES(2941,354,'3.5.5','02/04/2018',' '); -INSERT INTO entity_versions VALUES(2942,354,'3.5.4','07/25/2017',' '); -INSERT INTO entity_versions VALUES(2943,354,'3.5.3','01/17/2017',' '); -INSERT INTO entity_versions VALUES(2944,354,'3.5.2','06/27/2016',' '); -INSERT INTO entity_versions VALUES(2945,354,'3.5.1','12/07/2015',' '); -INSERT INTO entity_versions VALUES(2946,354,'3.5.0','09/13/2015',' '); -INSERT INTO entity_versions VALUES(2947,354,'3.4.10','03/18/2019',' '); -INSERT INTO entity_versions VALUES(2948,354,'3.4.9','08/08/2018',' '); -INSERT INTO entity_versions VALUES(2949,354,'3.4.8','02/04/2018',' '); -INSERT INTO entity_versions VALUES(2950,354,'3.4.7','07/25/2017',' '); -INSERT INTO entity_versions VALUES(2951,354,'3.4.6','01/17/2017',' '); -INSERT INTO entity_versions VALUES(2952,354,'3.4.5','06/26/2016',' '); -INSERT INTO entity_versions VALUES(2953,354,'3.4.4','12/06/2015',' '); -INSERT INTO entity_versions VALUES(2954,354,'3.4.3','02/25/2015',' '); -INSERT INTO entity_versions VALUES(2955,354,'3.4.2','10/04/2014',' '); -INSERT INTO entity_versions VALUES(2956,354,'3.4.1','05/18/2014',' '); -INSERT INTO entity_versions VALUES(2957,354,'3.4.0','03/16/2014',' '); -INSERT INTO entity_versions VALUES(2958,354,'3.3.7','09/19/2017',' '); -INSERT INTO entity_versions VALUES(2959,354,'3.3.6','10/12/2014',' '); -INSERT INTO entity_versions VALUES(2960,354,'3.3.5','03/09/2014',' '); -INSERT INTO entity_versions VALUES(2961,354,'3.3.4','02/09/2014',' '); -INSERT INTO entity_versions VALUES(2962,354,'3.3.3','11/17/2013',' '); -INSERT INTO entity_versions VALUES(2963,354,'3.3.2','05/15/2013',' '); -INSERT INTO entity_versions VALUES(2964,354,'3.3.1','04/07/2013',' '); -INSERT INTO entity_versions VALUES(2965,354,'3.3.0','09/29/2012',' '); -INSERT INTO entity_versions VALUES(2966,354,'3.2.6','10/11/2014',' '); -INSERT INTO entity_versions VALUES(2967,354,'3.2.5','05/15/2013',' '); -INSERT INTO entity_versions VALUES(2968,354,'3.2.4','04/07/2013',' '); -INSERT INTO entity_versions VALUES(2969,354,'3.2.3','04/10/2012',' '); -INSERT INTO entity_versions VALUES(2970,354,'3.2.2','09/04/2011',' '); -INSERT INTO entity_versions VALUES(2971,354,'3.2.1','07/10/2011',' '); -INSERT INTO entity_versions VALUES(2972,354,'3.2','02/20/2011',' '); -INSERT INTO entity_versions VALUES(2973,354,'3.1.5','04/09/2012',' '); -INSERT INTO entity_versions VALUES(2974,354,'3.1.4','06/11/2011',' '); -INSERT INTO entity_versions VALUES(2975,354,'3.1.3','11/27/2010',' '); -INSERT INTO entity_versions VALUES(2976,354,'3.1.2','03/21/2010',' '); -INSERT INTO entity_versions VALUES(2977,354,'3.1.1','08/17/2009',' '); -INSERT INTO entity_versions VALUES(2978,354,'3.1','06/27/2009',' '); -INSERT INTO entity_versions VALUES(2979,354,'3.0.1','02/13/2009',' '); -INSERT INTO entity_versions VALUES(2980,354,'3','12/03/2008',' '); -INSERT INTO entity_versions VALUES(2981,354,'2.7.18','04/20/2020',' '); -INSERT INTO entity_versions VALUES(2982,354,'2.7.17','10/19/2019',' '); -INSERT INTO entity_versions VALUES(2983,354,'2.7.16','03/02/2019',' '); -INSERT INTO entity_versions VALUES(2984,354,'2.7.15','04/30/2018',' '); -INSERT INTO entity_versions VALUES(2985,354,'2.7.14','09/16/2017',' '); -INSERT INTO entity_versions VALUES(2986,354,'2.7.13','12/17/2016',' '); -INSERT INTO entity_versions VALUES(2987,354,'2.7.12','06/26/2016',' '); -INSERT INTO entity_versions VALUES(2988,354,'2.7.11','12/05/2015',' '); -INSERT INTO entity_versions VALUES(2989,354,'2.7.10','05/23/2015',' '); -INSERT INTO entity_versions VALUES(2990,354,'2.7.9','12/10/2014',' '); -INSERT INTO entity_versions VALUES(2991,354,'2.7.8','07/01/2014',' '); -INSERT INTO entity_versions VALUES(2992,354,'2.7.7','05/31/2014',' '); -INSERT INTO entity_versions VALUES(2993,354,'2.7.6','11/10/2013',' '); -INSERT INTO entity_versions VALUES(2994,354,'2.7.5','05/15/2013',' '); -INSERT INTO entity_versions VALUES(2995,354,'2.7.4','04/06/2013',' '); -INSERT INTO entity_versions VALUES(2996,354,'2.7.3','04/09/2012',' '); -INSERT INTO entity_versions VALUES(2997,354,'2.7.2','06/11/2011',' '); -INSERT INTO entity_versions VALUES(2998,354,'2.7.1','11/27/2010',' '); -INSERT INTO entity_versions VALUES(2999,354,'2.7','07/04/2010',' '); -INSERT INTO entity_versions VALUES(3000,354,'2.6.9','10/29/2013',' '); -INSERT INTO entity_versions VALUES(3001,354,'2.6.8','04/10/2012',' '); -INSERT INTO entity_versions VALUES(3002,354,'2.6.7','06/03/2011',' '); -INSERT INTO entity_versions VALUES(3003,354,'2.6.6','08/24/2010',' '); -INSERT INTO entity_versions VALUES(3004,354,'2.6.5','03/19/2010',' '); -INSERT INTO entity_versions VALUES(3005,354,'2.6.4','10/25/2009',' '); -INSERT INTO entity_versions VALUES(3006,354,'2.6.3','10/02/2009',' '); -INSERT INTO entity_versions VALUES(3007,354,'2.6.2','04/14/2009',' '); -INSERT INTO entity_versions VALUES(3008,354,'2.6.1','12/04/2008',' '); -INSERT INTO entity_versions VALUES(3009,354,'2.6','10/01/2008',' '); -INSERT INTO entity_versions VALUES(3010,354,'2.5.4','12/23/2008',' '); -INSERT INTO entity_versions VALUES(3011,354,'2.5.3','12/19/2008',' '); -INSERT INTO entity_versions VALUES(3012,354,'2.5.2','02/21/2008',' '); -INSERT INTO entity_versions VALUES(3013,354,'2.5.1','04/18/2007',' '); -INSERT INTO entity_versions VALUES(3014,354,'2.5','09/19/2006',' '); -INSERT INTO entity_versions VALUES(3015,354,'2.4.4','10/18/2006',' '); -INSERT INTO entity_versions VALUES(3016,354,'2.4.3','03/29/2006',' '); -INSERT INTO entity_versions VALUES(3017,354,'2.4.2','09/28/2005',' '); -INSERT INTO entity_versions VALUES(3018,354,'2.4.1','03/30/2005',' '); -INSERT INTO entity_versions VALUES(3019,354,'2.4','11/30/2004',' '); -INSERT INTO entity_versions VALUES(3020,354,'2.3.5','02/08/2005',' '); -INSERT INTO entity_versions VALUES(3021,354,'2.3.4','05/27/2004',' '); -INSERT INTO entity_versions VALUES(3022,354,'2.3.3','12/19/2003',' '); -INSERT INTO entity_versions VALUES(3023,354,'2.3.2','10/03/2003',' '); -INSERT INTO entity_versions VALUES(3024,354,'2.3.1','09/23/2003',' '); -INSERT INTO entity_versions VALUES(3025,354,'2.3','07/29/2003',' '); -INSERT INTO entity_versions VALUES(3026,354,'2.2.3','05/30/2003',' '); -INSERT INTO entity_versions VALUES(3027,354,'2.2.2','10/14/2002',' '); -INSERT INTO entity_versions VALUES(3028,354,'2.2.1','04/10/2002',' '); -INSERT INTO entity_versions VALUES(3029,354,'2.2.0','03/29/2002',' '); -INSERT INTO entity_versions VALUES(3030,354,'2.2','12/21/2001',' '); -INSERT INTO entity_versions VALUES(3031,354,'2.1.3','04/08/2002',' '); -INSERT INTO entity_versions VALUES(3032,354,'2.1.2','01/16/2002',' '); -INSERT INTO entity_versions VALUES(3033,354,'2.1.1','07/20/2001',' '); -INSERT INTO entity_versions VALUES(3034,354,'2.1','04/15/2001',' '); -INSERT INTO entity_versions VALUES(3035,354,'2.0.1','06/22/2001',' '); -INSERT INTO entity_versions VALUES(3036,354,'2','10/16/2000',' '); -INSERT INTO entity_versions VALUES(3037,354,'1.6','09/05/2000',' '); -INSERT INTO entity_versions VALUES(3038,354,'1.5.2p2','03/22/2000',' '); -INSERT INTO entity_versions VALUES(3039,354,'1.5.2p1','07/06/1999',' '); -INSERT INTO entity_versions VALUES(3040,354,'1.5.2','04/30/1999',' '); -INSERT INTO entity_versions VALUES(3041,354,'1.5.1p1','08/06/1998',' '); -INSERT INTO entity_versions VALUES(3042,354,'1.5.1','04/14/1998',' '); -INSERT INTO entity_versions VALUES(3043,354,'1.5','02/17/1998',' '); -INSERT INTO entity_versions VALUES(3044,354,'1.4','10/25/1996',' '); -INSERT INTO entity_versions VALUES(3045,354,'1','01/01/1994',' '); -INSERT INTO entity_versions VALUES(3046,355,'4.1.1','08/30/2021',' '); -INSERT INTO entity_versions VALUES(3047,355,'4.1.0','05/30/2021',' '); -INSERT INTO entity_versions VALUES(3048,355,'4.0.5','03/30/2021',' '); -INSERT INTO entity_versions VALUES(3049,355,'4.0.4','02/28/2020',' '); -INSERT INTO entity_versions VALUES(3050,355,'4.0.3','10/30/2020',' '); -INSERT INTO entity_versions VALUES(3051,355,'4.0.2','06/30/2020',' '); -INSERT INTO entity_versions VALUES(3052,355,'4.0.1','06/30/2020',' '); -INSERT INTO entity_versions VALUES(3053,355,'4.0.0','04/30/2020',' '); -INSERT INTO entity_versions VALUES(3054,355,'3.6.3','02/28/2019',' '); -INSERT INTO entity_versions VALUES(3055,355,'3.6.2','12/30/2019',' '); -INSERT INTO entity_versions VALUES(3056,355,'3.6.1','07/30/2019',' '); -INSERT INTO entity_versions VALUES(3057,355,'3.6.0','04/30/2019',' '); -INSERT INTO entity_versions VALUES(3058,355,'3.5.3','03/30/2018',' '); -INSERT INTO entity_versions VALUES(3059,355,'3.5.2','12/30/2018',' '); -INSERT INTO entity_versions VALUES(3060,355,'3.5.1','07/30/2018',' '); -INSERT INTO entity_versions VALUES(3061,355,'3.5.0','04/30/2018',' '); -INSERT INTO entity_versions VALUES(3062,355,'3.4.4','03/30/2017',' '); -INSERT INTO entity_versions VALUES(3063,355,'3.4.3','11/30/2017',' '); -INSERT INTO entity_versions VALUES(3064,355,'3.4.2','09/30/2017',' '); -INSERT INTO entity_versions VALUES(3065,355,'3.4.1','06/30/2017',' '); -INSERT INTO entity_versions VALUES(3066,355,'3.4.0','04/30/2017',' '); -INSERT INTO entity_versions VALUES(3067,355,'3.3.3','03/30/2016',' '); -INSERT INTO entity_versions VALUES(3068,355,'3.3.2','10/30/2016',' '); -INSERT INTO entity_versions VALUES(3069,355,'3.3.1','06/30/2016',' '); -INSERT INTO entity_versions VALUES(3070,355,'3.3.0','04/30/2016',' '); -INSERT INTO entity_versions VALUES(3071,355,'3.2.5','04/30/2016',' '); -INSERT INTO entity_versions VALUES(3072,355,'3.2.4','03/30/2015',' '); -INSERT INTO entity_versions VALUES(3073,355,'3.2.3','12/30/2015',' '); -INSERT INTO entity_versions VALUES(3074,355,'3.2.2','08/30/2015',' '); -INSERT INTO entity_versions VALUES(3075,355,'3.2.1','06/30/2015',' '); -INSERT INTO entity_versions VALUES(3076,355,'3.2.0','04/30/2015',' '); -INSERT INTO entity_versions VALUES(3077,355,'3.1.3','03/30/2014',' '); -INSERT INTO entity_versions VALUES(3078,355,'3.1.2','10/30/2014',' '); -INSERT INTO entity_versions VALUES(3079,355,'3.1.1','07/30/2014',' '); -INSERT INTO entity_versions VALUES(3080,355,'3.1.0','04/30/2014',' '); -INSERT INTO entity_versions VALUES(3081,355,'3.0.3','03/30/2014',' '); -INSERT INTO entity_versions VALUES(3082,355,'3.0.2','09/30/2013',' '); -INSERT INTO entity_versions VALUES(3083,355,'3.0.1','05/30/2013',' '); -INSERT INTO entity_versions VALUES(3084,355,'3.0.0','04/30/2013',' '); -INSERT INTO entity_versions VALUES(3085,355,'2.15.3','03/30/2013',' '); -INSERT INTO entity_versions VALUES(3086,355,'2.15.2','10/30/2012',' '); -INSERT INTO entity_versions VALUES(3087,355,'2.15.1','06/30/2012',' '); -INSERT INTO entity_versions VALUES(3088,355,'2.15.0','03/30/2012',' '); -INSERT INTO entity_versions VALUES(3089,355,'2.14.2','02/28/2012',' '); -INSERT INTO entity_versions VALUES(3090,355,'2.14.1','12/30/2011',' '); -INSERT INTO entity_versions VALUES(3091,355,'2.14.0','11/30/2011',' '); -INSERT INTO entity_versions VALUES(3092,355,'2.13.2','09/30/2011',' '); -INSERT INTO entity_versions VALUES(3093,355,'2.13.1','07/30/2011',' '); -INSERT INTO entity_versions VALUES(3094,355,'2.13.0','04/30/2011',' '); -INSERT INTO entity_versions VALUES(3095,355,'2.12.2','02/28/2011',' '); -INSERT INTO entity_versions VALUES(3096,355,'2.12.1','12/30/2010',' '); -INSERT INTO entity_versions VALUES(3097,355,'2.12.0','10/30/2010',' '); -INSERT INTO entity_versions VALUES(3098,355,'2.11.1','05/30/2010',' '); -INSERT INTO entity_versions VALUES(3099,355,'2.11.0','04/30/2010',' '); -INSERT INTO entity_versions VALUES(3100,355,'2.10.1','12/30/2009',' '); -INSERT INTO entity_versions VALUES(3101,355,'2.10.0','10/30/2009',' '); -INSERT INTO entity_versions VALUES(3102,355,'2.9.2','08/30/2009',' '); -INSERT INTO entity_versions VALUES(3103,355,'2.9.1','06/30/2009',' '); -INSERT INTO entity_versions VALUES(3104,355,'2.9.0','04/30/2009',' '); -INSERT INTO entity_versions VALUES(3105,355,'2.8.1','12/30/2008',' '); -INSERT INTO entity_versions VALUES(3106,355,'2.8.0','10/30/2008',' '); -INSERT INTO entity_versions VALUES(3107,355,'2.7.2','08/30/2008',' '); -INSERT INTO entity_versions VALUES(3108,355,'2.7.1','06/30/2008',' '); -INSERT INTO entity_versions VALUES(3109,355,'2.7.0','04/30/2008',' '); -INSERT INTO entity_versions VALUES(3110,355,'2.6.2','02/28/2008',' '); -INSERT INTO entity_versions VALUES(3111,355,'2.6.1','11/30/2007',' '); -INSERT INTO entity_versions VALUES(3112,355,'2.6.0','10/30/2007',' '); -INSERT INTO entity_versions VALUES(3113,355,'2.5.1','07/30/2007',' '); -INSERT INTO entity_versions VALUES(3114,355,'2.5.0','04/30/2007',' '); -INSERT INTO entity_versions VALUES(3115,355,'2.4.1','12/30/2006',' '); -INSERT INTO entity_versions VALUES(3116,355,'2.4.0','10/30/2006',' '); -INSERT INTO entity_versions VALUES(3117,355,'2.3.1','06/30/2006',' '); -INSERT INTO entity_versions VALUES(3118,355,'2.3.0','04/30/2006',' '); -INSERT INTO entity_versions VALUES(3119,355,'2.2.1','12/30/2005',' '); -INSERT INTO entity_versions VALUES(3120,355,'2.2.0','10/30/2005',' '); -INSERT INTO entity_versions VALUES(3121,355,'2.1.1','06/30/2005',' '); -INSERT INTO entity_versions VALUES(3122,355,'2.1.0','04/30/2005',' '); -INSERT INTO entity_versions VALUES(3123,355,'2.0.1','11/30/2004',' '); -INSERT INTO entity_versions VALUES(3124,355,'2.0.0','10/30/2004',' '); -INSERT INTO entity_versions VALUES(3125,355,'1.9.1','06/30/2004',' '); -INSERT INTO entity_versions VALUES(3126,355,'1.8.1','11/30/2003',' '); -INSERT INTO entity_versions VALUES(3127,355,'1.7.1','06/30/2003',' '); -INSERT INTO entity_versions VALUES(3128,355,'1.6.2','01/30/2003',' '); -INSERT INTO entity_versions VALUES(3129,355,'1.5.1','06/30/2002',' '); -INSERT INTO entity_versions VALUES(3130,355,'1.4.1','01/30/2002',' '); -INSERT INTO entity_versions VALUES(3131,355,'1.3.1','09/30/2001',' '); -INSERT INTO entity_versions VALUES(3132,355,'1.2.2','03/30/2001',' '); -INSERT INTO entity_versions VALUES(3133,355,'1.0.0','02/28/2000',' '); -INSERT INTO entity_versions VALUES(3134,358,'3.0.2','07/07/2021',' '); -INSERT INTO entity_versions VALUES(3135,358,'2.7.4','07/07/2021',' '); -INSERT INTO entity_versions VALUES(3136,358,'2.6.8','07/07/2021',' '); -INSERT INTO entity_versions VALUES(3137,358,'3.0.1','04/05/2021',' '); -INSERT INTO entity_versions VALUES(3138,358,'2.7.3','04/05/2021',' '); -INSERT INTO entity_versions VALUES(3139,358,'2.6.7','04/05/2021',' '); -INSERT INTO entity_versions VALUES(3140,358,'2.5.9','04/05/2021',' '); -INSERT INTO entity_versions VALUES(3141,358,'3.0.0','12/25/2020',' '); -INSERT INTO entity_versions VALUES(3142,358,'3.0.0src1','12/20/2020',' '); -INSERT INTO entity_versions VALUES(3143,358,'3.0.0spreview2','12/08/2020',' '); -INSERT INTO entity_versions VALUES(3144,358,'2.7.2','10/02/2020',' '); -INSERT INTO entity_versions VALUES(3145,358,'3.0.0spreview1','09/25/2020',' '); -INSERT INTO entity_versions VALUES(3146,358,'2.7.1','03/31/2020',' '); -INSERT INTO entity_versions VALUES(3147,358,'2.6.6','03/31/2020',' '); -INSERT INTO entity_versions VALUES(3148,358,'2.5.8','03/31/2020',' '); -INSERT INTO entity_versions VALUES(3149,358,'2.4.10','03/31/2020',' '); -INSERT INTO entity_versions VALUES(3150,358,'2.7.0','12/25/2019',' '); -INSERT INTO entity_versions VALUES(3151,358,'2.7.0src2','12/21/2019',' '); -INSERT INTO entity_versions VALUES(3152,358,'2.7.0src1','12/17/2019',' '); -INSERT INTO entity_versions VALUES(3153,358,'2.7.0spreview3','11/23/2019',' '); -INSERT INTO entity_versions VALUES(3154,358,'2.7.0spreview2','10/22/2019',' '); -INSERT INTO entity_versions VALUES(3155,358,'2.4.9','10/02/2019',' '); -INSERT INTO entity_versions VALUES(3156,358,'2.6.5','10/01/2019',' '); -INSERT INTO entity_versions VALUES(3157,358,'2.5.7','10/01/2019',' '); -INSERT INTO entity_versions VALUES(3158,358,'2.4.8','10/01/2019',' '); -INSERT INTO entity_versions VALUES(3159,358,'2.6.4','08/28/2019',' '); -INSERT INTO entity_versions VALUES(3160,358,'2.5.6','08/28/2019',' '); -INSERT INTO entity_versions VALUES(3161,358,'2.4.7','08/28/2019',' '); -INSERT INTO entity_versions VALUES(3162,358,'2.7.0spreview1','05/30/2019',' '); -INSERT INTO entity_versions VALUES(3163,358,'2.6.3','04/17/2019',' '); -INSERT INTO entity_versions VALUES(3164,358,'2.4.6','04/01/2019',' '); -INSERT INTO entity_versions VALUES(3165,358,'2.5.5','03/15/2019',' '); -INSERT INTO entity_versions VALUES(3166,358,'2.6.2','03/13/2019',' '); -INSERT INTO entity_versions VALUES(3167,358,'2.5.4','03/13/2019',' '); -INSERT INTO entity_versions VALUES(3168,358,'2.6.1','01/30/2019',' '); -INSERT INTO entity_versions VALUES(3169,358,'2.6.0','12/25/2018',' '); -INSERT INTO entity_versions VALUES(3170,358,'2.6.0src2','12/15/2018',' '); -INSERT INTO entity_versions VALUES(3171,358,'2.6.0src1','12/06/2018',' '); -INSERT INTO entity_versions VALUES(3172,358,'2.6.0spreview3','11/06/2018',' '); -INSERT INTO entity_versions VALUES(3173,358,'2.5.3','10/18/2018',' '); -INSERT INTO entity_versions VALUES(3174,358,'2.5.2','10/17/2018',' '); -INSERT INTO entity_versions VALUES(3175,358,'2.4.5','10/17/2018',' '); -INSERT INTO entity_versions VALUES(3176,358,'2.3.8','10/17/2018',' '); -INSERT INTO entity_versions VALUES(3177,358,'2.6.0spreview2','05/31/2018',' '); -INSERT INTO entity_versions VALUES(3178,358,'2.5.1','03/28/2018',' '); -INSERT INTO entity_versions VALUES(3179,358,'2.4.4','03/28/2018',' '); -INSERT INTO entity_versions VALUES(3180,358,'2.3.7','03/28/2018',' '); -INSERT INTO entity_versions VALUES(3181,358,'2.2.10','03/28/2018',' '); -INSERT INTO entity_versions VALUES(3182,358,'2.6.0spreview1','02/24/2018',' '); -INSERT INTO entity_versions VALUES(3183,358,'2.5.0','12/25/2017',' '); -INSERT INTO entity_versions VALUES(3184,358,'2.5.0src1','12/14/2017',' '); -INSERT INTO entity_versions VALUES(3185,358,'2.4.3','12/14/2017',' '); -INSERT INTO entity_versions VALUES(3186,358,'2.3.6','12/14/2017',' '); -INSERT INTO entity_versions VALUES(3187,358,'2.2.9','12/14/2017',' '); -INSERT INTO entity_versions VALUES(3188,358,'2.5.0spreview1','10/10/2017',' '); -INSERT INTO entity_versions VALUES(3189,358,'2.4.2','09/14/2017',' '); -INSERT INTO entity_versions VALUES(3190,358,'2.3.5','09/14/2017',' '); -INSERT INTO entity_versions VALUES(3191,358,'2.2.8','09/14/2017',' '); -INSERT INTO entity_versions VALUES(3192,358,'2.3.4','03/30/2017',' '); -INSERT INTO entity_versions VALUES(3193,358,'2.2.7','03/28/2017',' '); -INSERT INTO entity_versions VALUES(3194,358,'2.4.1','03/22/2017',' '); -INSERT INTO entity_versions VALUES(3195,358,'2.4.0','12/25/2016',' '); -INSERT INTO entity_versions VALUES(3196,358,'2.4.0src1','12/12/2016',' '); -INSERT INTO entity_versions VALUES(3197,358,'2.3.3','11/21/2016',' '); -INSERT INTO entity_versions VALUES(3198,358,'2.3.2','11/15/2016',' '); -INSERT INTO entity_versions VALUES(3199,358,'2.2.6','11/15/2016',' '); -INSERT INTO entity_versions VALUES(3200,358,'2.4.0spreview3','11/09/2016',' '); -INSERT INTO entity_versions VALUES(3201,358,'2.4.0spreview2','09/08/2016',' '); -INSERT INTO entity_versions VALUES(3202,358,'2.4.0spreview1','06/20/2016',' '); -INSERT INTO entity_versions VALUES(3203,358,'2.3.1','04/26/2016',' '); -INSERT INTO entity_versions VALUES(3204,358,'2.2.5','04/26/2016',' '); -INSERT INTO entity_versions VALUES(3205,358,'2.1.10','04/01/2016',' '); -INSERT INTO entity_versions VALUES(3206,358,'2.1.9','03/30/2016',' '); -INSERT INTO entity_versions VALUES(3207,358,'2.3.0','12/25/2015',' '); -INSERT INTO entity_versions VALUES(3208,358,'2.2.4','12/16/2015',' '); -INSERT INTO entity_versions VALUES(3209,358,'2.1.8','12/16/2015',' '); -INSERT INTO entity_versions VALUES(3210,358,'2.0.0sp648','12/16/2015',' '); -INSERT INTO entity_versions VALUES(3211,358,'2.3.0spreview2','12/11/2015',' '); -INSERT INTO entity_versions VALUES(3212,358,'2.3.0spreview1','11/11/2015',' '); -INSERT INTO entity_versions VALUES(3213,358,'2.2.3','08/18/2015',' '); -INSERT INTO entity_versions VALUES(3214,358,'2.1.7','08/18/2015',' '); -INSERT INTO entity_versions VALUES(3215,358,'2.0.0sp647','08/18/2015',' '); -INSERT INTO entity_versions VALUES(3216,358,'2.2.2','04/13/2015',' '); -INSERT INTO entity_versions VALUES(3217,358,'2.1.6','04/13/2015',' '); -INSERT INTO entity_versions VALUES(3218,358,'2.0.0sp645','04/13/2015',' '); -INSERT INTO entity_versions VALUES(3219,358,'2.2.1','03/03/2015',' '); -INSERT INTO entity_versions VALUES(3220,358,'2.0.0sp643','02/25/2015',' '); -INSERT INTO entity_versions VALUES(3221,358,'2.2.0','12/25/2014',' '); -INSERT INTO entity_versions VALUES(3222,358,'2.2.0src1','12/18/2014',' '); -INSERT INTO entity_versions VALUES(3223,358,'2.2.0spreview2','11/28/2014',' '); -INSERT INTO entity_versions VALUES(3224,358,'2.1.5','11/13/2014',' '); -INSERT INTO entity_versions VALUES(3225,358,'2.0.0sp598','11/13/2014',' '); -INSERT INTO entity_versions VALUES(3226,358,'1.9.3sp551','11/13/2014',' '); -INSERT INTO entity_versions VALUES(3227,358,'2.1.4','10/27/2014',' '); -INSERT INTO entity_versions VALUES(3228,358,'2.0.0sp594','10/27/2014',' '); -INSERT INTO entity_versions VALUES(3229,358,'1.9.3sp550','10/27/2014',' '); -INSERT INTO entity_versions VALUES(3230,358,'2.1.3','09/19/2014',' '); -INSERT INTO entity_versions VALUES(3231,358,'2.0.0sp576','09/19/2014',' '); -INSERT INTO entity_versions VALUES(3232,358,'2.2.0spreview1','09/18/2014',' '); -INSERT INTO entity_versions VALUES(3233,358,'1.9.2sp330','08/19/2014',' '); -INSERT INTO entity_versions VALUES(3234,358,'1.9.3sp547','05/16/2014',' '); -INSERT INTO entity_versions VALUES(3235,358,'2.1.2','05/09/2014',' '); -INSERT INTO entity_versions VALUES(3236,358,'2.0.0sp481','05/09/2014',' '); -INSERT INTO entity_versions VALUES(3237,358,'2.1.1','02/24/2014',' '); -INSERT INTO entity_versions VALUES(3238,358,'2.0.0sp451','02/24/2014',' '); -INSERT INTO entity_versions VALUES(3239,358,'1.9.3sp545','02/24/2014',' '); -INSERT INTO entity_versions VALUES(3240,358,'2.1.0','12/25/2013',' '); -INSERT INTO entity_versions VALUES(3241,358,'2.1.0src1','12/20/2013',' '); -INSERT INTO entity_versions VALUES(3242,358,'2.1.0spreview2','11/22/2013',' '); -INSERT INTO entity_versions VALUES(3243,358,'2.0.0sp353','11/22/2013',' '); -INSERT INTO entity_versions VALUES(3244,358,'1.9.3sp484','11/22/2013',' '); -INSERT INTO entity_versions VALUES(3245,358,'2.1.0spreview1','09/23/2013',' '); -INSERT INTO entity_versions VALUES(3246,358,'2.0.0sp247','06/27/2013',' '); -INSERT INTO entity_versions VALUES(3247,358,'1.9.3sp448','06/27/2013',' '); -INSERT INTO entity_versions VALUES(3248,358,'1.8.7sp374','06/27/2013',' '); -INSERT INTO entity_versions VALUES(3249,358,'2.0.0sp195','05/14/2013',' '); -INSERT INTO entity_versions VALUES(3250,358,'1.9.3sp429','05/14/2013',' '); -INSERT INTO entity_versions VALUES(3251,358,'2.0.0','02/24/2013',' '); -INSERT INTO entity_versions VALUES(3252,358,'1.9.3sp392','02/22/2013',' '); -INSERT INTO entity_versions VALUES(3253,358,'2.0.0src2','02/08/2013',' '); -INSERT INTO entity_versions VALUES(3254,358,'1.9.3sp385','02/06/2013',' '); -INSERT INTO entity_versions VALUES(3255,358,'1.9.3sp374','01/17/2013',' '); -INSERT INTO entity_versions VALUES(3256,358,'1.9.3sp362','12/25/2012',' '); -INSERT INTO entity_versions VALUES(3257,358,'1.9.3sp327','11/09/2012',' '); -INSERT INTO entity_versions VALUES(3258,358,'1.9.3sp286','10/12/2012',' '); -INSERT INTO entity_versions VALUES(3259,358,'1.8.7sp370','06/29/2012',' '); -INSERT INTO entity_versions VALUES(3260,358,'1.9.2sp320','04/21/2012',' '); -INSERT INTO entity_versions VALUES(3261,358,'1.9.3sp194','04/20/2012',' '); -INSERT INTO entity_versions VALUES(3262,358,'1.9.3sp125','02/16/2012',' '); -INSERT INTO entity_versions VALUES(3263,358,'1.9.3','10/31/2011',' '); -INSERT INTO entity_versions VALUES(3264,358,'1.9.3src1','09/24/2011',' '); -INSERT INTO entity_versions VALUES(3265,358,'1.9.3spreview1','08/01/2011',' '); -INSERT INTO entity_versions VALUES(3266,358,'1.9.2sp290','07/15/2011',' '); -INSERT INTO entity_versions VALUES(3267,358,'1.8.7sp352','07/02/2011',' '); -INSERT INTO entity_versions VALUES(3268,358,'1.9.2sp136','12/25/2010',' '); -INSERT INTO entity_versions VALUES(3269,358,'1.8.7sp330','12/25/2010',' '); -INSERT INTO entity_versions VALUES(3270,358,'1.9.2','08/18/2010',' '); -INSERT INTO entity_versions VALUES(3271,358,'1.9.1sp430','08/16/2010',' '); -INSERT INTO entity_versions VALUES(3272,358,'1.8.7sp302','08/16/2010',' '); -INSERT INTO entity_versions VALUES(3273,358,'1.9.2src2','07/11/2010',' '); -INSERT INTO entity_versions VALUES(3274,358,'1.9.2src1','07/02/2010',' '); -INSERT INTO entity_versions VALUES(3275,358,'1.9.1sp429','07/02/2010',' '); -INSERT INTO entity_versions VALUES(3276,358,'1.8.7sp299','06/23/2010',' '); -INSERT INTO entity_versions VALUES(3277,358,'1.8.7sp248','12/25/2009',' '); -INSERT INTO entity_versions VALUES(3278,358,'1.9.1sp376','12/07/2009',' '); -INSERT INTO entity_versions VALUES(3279,358,'1.9.2spreview1','07/20/2009',' '); -INSERT INTO entity_versions VALUES(3280,358,'1.9.1sp243','07/20/2009',' '); -INSERT INTO entity_versions VALUES(3281,358,'1.9.1sp129','05/12/2009',' '); -INSERT INTO entity_versions VALUES(3282,358,'1.8.7sp160','04/18/2009',' '); -INSERT INTO entity_versions VALUES(3283,358,'1.8.6sp368','04/18/2009',' '); -INSERT INTO entity_versions VALUES(3284,358,'1.9.1','01/30/2009',' '); -INSERT INTO entity_versions VALUES(3285,358,'1.9.1spreview1','10/28/2008',' '); -INSERT INTO entity_versions VALUES(3286,358,'1.8.7sp72','08/11/2008',' '); -INSERT INTO entity_versions VALUES(3287,358,'1.8.6sp287','08/11/2008',' '); -INSERT INTO entity_versions VALUES(3288,358,'1.8.7','05/31/2008',' '); -INSERT INTO entity_versions VALUES(3289,358,'1.9.0','12/25/2007',' '); -INSERT INTO entity_versions VALUES(3290,358,'1.8.6','03/12/2007',' '); -INSERT INTO entity_versions VALUES(3291,358,'1.8.5','08/29/2006',' '); -INSERT INTO entity_versions VALUES(3292,358,'1.8.4','12/24/2005',' '); -INSERT INTO entity_versions VALUES(3293,358,'1.8.4spreview2','12/14/2005',' '); -INSERT INTO entity_versions VALUES(3294,358,'1.8.3','09/21/2005',' '); -INSERT INTO entity_versions VALUES(3295,358,'1.8.2','12/26/2004',' '); -INSERT INTO entity_versions VALUES(3296,358,'1.8.2spreview4','12/22/2004',' '); -INSERT INTO entity_versions VALUES(3297,358,'1.8.2spreview3','11/08/2004',' '); -INSERT INTO entity_versions VALUES(3298,358,'1.8.2spreview2','07/30/2004',' '); -INSERT INTO entity_versions VALUES(3299,358,'1.8.2spreview1','07/21/2004',' '); -INSERT INTO entity_versions VALUES(3300,358,'1.8.0','08/04/2003',' '); -INSERT INTO entity_versions VALUES(3301,358,'1.6.7','03/01/2002',' '); -INSERT INTO entity_versions VALUES(3302,323,'1','03/28/2012',' '); -INSERT INTO entity_versions VALUES(3303,323,'1.1','05/13/2013',' '); -INSERT INTO entity_versions VALUES(3304,323,'1.2','12/01/2013',' '); -INSERT INTO entity_versions VALUES(3305,323,'1.3','06/18/2014',' '); -INSERT INTO entity_versions VALUES(3306,323,'1.4','12/10/2014',' '); -INSERT INTO entity_versions VALUES(3307,323,'1.5','08/19/2015',' '); -INSERT INTO entity_versions VALUES(3308,323,'1.6','02/17/2016',' '); -INSERT INTO entity_versions VALUES(3309,323,'1.7','08/15/2016',' '); -INSERT INTO entity_versions VALUES(3310,323,'1.8','02/16/2017',' '); -INSERT INTO entity_versions VALUES(3311,323,'1.9','08/24/2017',' '); -INSERT INTO entity_versions VALUES(3312,323,'1.10','02/16/2018',' '); -INSERT INTO entity_versions VALUES(3313,323,'1.11','08/24/2018',' '); -INSERT INTO entity_versions VALUES(3314,323,'1.12.1','02/25/2019',' '); -INSERT INTO entity_versions VALUES(3315,323,'1.13.1','09/03/2019',' '); -INSERT INTO entity_versions VALUES(3316,323,'1.14','02/25/2020',' '); -INSERT INTO entity_versions VALUES(3317,323,'1.15','08/11/2020',' '); -INSERT INTO entity_versions VALUES(3318,323,'1.16','02/16/2021',' '); -INSERT INTO entity_versions VALUES(3319,323,'1.17','08/16/2021',' '); -INSERT INTO entity_versions VALUES(3320,325,'1','01/02/2007',' '); -INSERT INTO entity_versions VALUES(3321,325,'1.2','12/07/2007',' '); -INSERT INTO entity_versions VALUES(3322,325,'1.5',' ',' '); -INSERT INTO entity_versions VALUES(3323,325,'2','07/02/2012',' '); -INSERT INTO entity_versions VALUES(3324,325,'3','02/07/2020',' '); -INSERT INTO entity_versions VALUES(3325,325,'4.0','09/01/2021',' '); -INSERT INTO entity_versions VALUES(3326,333,'1.2','12/12/1999','05/22/2020'); -INSERT INTO entity_versions VALUES(3327,333,'1.3','09/24/2001','06/28/2020'); -INSERT INTO entity_versions VALUES(3328,333,'1.4','11/11/2003','08/29/2020'); -INSERT INTO entity_versions VALUES(3329,333,'5','05/11/2006','08/11/2020'); -INSERT INTO entity_versions VALUES(3330,333,'6','12/10/2009','12/19/2020'); -INSERT INTO entity_versions VALUES(3331,333,'7','05/28/2013','04/30/2001'); -INSERT INTO entity_versions VALUES(3332,333,'8','08/31/2017','06/23/2001'); -INSERT INTO entity_versions VALUES(3333,333,'9','11/22/2020','12/10/2001'); -INSERT INTO entity_versions VALUES(3334,333,'9.1','05/25/2021',' '); -INSERT INTO entity_versions VALUES(3335,305,'98','12/31/1998',' '); -INSERT INTO entity_versions VALUES(3336,305,'03','12/31/2003',' '); -INSERT INTO entity_versions VALUES(3337,305,'11','12/31/2011',' '); -INSERT INTO entity_versions VALUES(3338,305,'14','12/31/2014',' '); -INSERT INTO entity_versions VALUES(3339,305,'17','12/31/2017',' '); -INSERT INTO entity_versions VALUES(3340,305,'20','12/31/2020',' '); -INSERT INTO entity_versions VALUES(3341,344,'progress 4gl','12/31/1981',' '); -INSERT INTO entity_versions VALUES(3342,344,'10.1','12/31/2006',' '); -INSERT INTO entity_versions VALUES(3343,350,'3.0.0','08/20/2020','08/20/2020'); -INSERT INTO entity_versions VALUES(3344,350,'4','05/22/2020',' '); -INSERT INTO entity_versions VALUES(3345,350,'4.1','12/10/2001',' '); -INSERT INTO entity_versions VALUES(3346,350,'4.2','04/22/2002',' '); -INSERT INTO entity_versions VALUES(3347,350,'4.3','12/27/2002',' '); -INSERT INTO entity_versions VALUES(3348,350,'4.4','07/11/2005',' '); -INSERT INTO entity_versions VALUES(3349,350,'5','07/13/2004',' '); -INSERT INTO entity_versions VALUES(3350,350,'5.1','11/24/2005',' '); -INSERT INTO entity_versions VALUES(3351,350,'5.2','11/02/2006',' '); -INSERT INTO entity_versions VALUES(3352,350,'5.3','06/30/2009',' '); -INSERT INTO entity_versions VALUES(3353,350,'5.4','03/01/2012',' '); -INSERT INTO entity_versions VALUES(3354,350,'5.5','06/20/2013',' '); -INSERT INTO entity_versions VALUES(3355,350,'5.6','08/28/2014',' '); -INSERT INTO entity_versions VALUES(3356,350,'7','12/03/2015',' '); -INSERT INTO entity_versions VALUES(3357,350,'7.1','12/01/2016',' '); -INSERT INTO entity_versions VALUES(3358,350,'7.2','11/30/2017',' '); -INSERT INTO entity_versions VALUES(3359,350,'7.3','12/06/2018',' '); -INSERT INTO entity_versions VALUES(3360,350,'7.4','11/28/2019',' '); -INSERT INTO entity_versions VALUES(3361,350,'8','11/26/2020',' '); -INSERT INTO entity_versions VALUES(3362,311,'3','06/30/1997',' '); -INSERT INTO entity_versions VALUES(3363,311,'4','11/30/1998',' '); -INSERT INTO entity_versions VALUES(3364,311,'4.5','11/30/1999',' '); -INSERT INTO entity_versions VALUES(3365,311,'5','06/30/2001',' '); -INSERT INTO entity_versions VALUES(3366,311,'6','06/30/2002',' '); -INSERT INTO entity_versions VALUES(3367,311,'7','02/07/2005',' '); -INSERT INTO entity_versions VALUES(3368,311,'8','06/30/2007',' '); -INSERT INTO entity_versions VALUES(3369,311,'9','10/05/2009',' '); -INSERT INTO entity_versions VALUES(3370,311,'10',' ',' '); -INSERT INTO entity_versions VALUES(3371,311,'11','04/29/2014',' '); -INSERT INTO entity_versions VALUES(3372,311,'2016','02/16/2016',' '); -INSERT INTO entity_versions VALUES(3373,311,'2018','07/12/2018',' '); -INSERT INTO entity_versions VALUES(3374,311,'2021','11/11/2020',' '); -INSERT INTO entity_versions VALUES(3375,362,'1.0.0','12/08/2003',' '); -INSERT INTO entity_versions VALUES(3376,362,'1.1.0','02/19/2004',' '); -INSERT INTO entity_versions VALUES(3377,362,'1.1.1','03/23/2004',' '); -INSERT INTO entity_versions VALUES(3378,362,'1.2.0','06/09/2004',' '); -INSERT INTO entity_versions VALUES(3379,362,'1.3.0','09/16/2004',' '); -INSERT INTO entity_versions VALUES(3380,362,'1.4.0','06/20/2005',' '); -INSERT INTO entity_versions VALUES(3381,362,'2','03/12/2006',' '); -INSERT INTO entity_versions VALUES(3382,362,'2.1.0','03/17/2006',' '); -INSERT INTO entity_versions VALUES(3383,362,'2.1.8','08/23/2006',' '); -INSERT INTO entity_versions VALUES(3384,362,'2.3.0','11/23/2006',' '); -INSERT INTO entity_versions VALUES(3385,362,'2.4.0','03/09/2007',' '); -INSERT INTO entity_versions VALUES(3386,362,'2.5.0','05/02/2007',' '); -INSERT INTO entity_versions VALUES(3387,362,'2.6.0','07/27/2007',' '); -INSERT INTO entity_versions VALUES(3388,362,'2.7.0','02/07/2008',' '); -INSERT INTO entity_versions VALUES(3389,362,'2.8.0','07/14/2010',' '); -INSERT INTO entity_versions VALUES(3390,362,'2.9.0','05/12/2011',' '); -INSERT INTO entity_versions VALUES(3391,362,'2.1','01/04/2013',' '); -INSERT INTO entity_versions VALUES(3392,313,'1','12/31/1995',' '); -INSERT INTO entity_versions VALUES(3393,313,'2','12/31/1996',' '); -INSERT INTO entity_versions VALUES(3394,313,'3','12/31/1997',' '); -INSERT INTO entity_versions VALUES(3395,313,'4','12/31/1998',' '); -INSERT INTO entity_versions VALUES(3396,313,'5','12/31/1999',' '); -INSERT INTO entity_versions VALUES(3397,313,'6','12/31/2001',' '); -INSERT INTO entity_versions VALUES(3398,313,'7','08/31/2002',' '); -INSERT INTO entity_versions VALUES(3399,313,'8','12/31/2003',' '); -INSERT INTO entity_versions VALUES(3400,313,'2005','12/31/2005',' '); -INSERT INTO entity_versions VALUES(3401,313,'2006','12/31/2005',' '); -INSERT INTO entity_versions VALUES(3402,313,'Turbo','09/06/2006',' '); -INSERT INTO entity_versions VALUES(3403,313,'Transfer','02/08/2006',' '); -INSERT INTO entity_versions VALUES(3404,313,'2007','03/16/2007',' '); -INSERT INTO entity_versions VALUES(3405,313,'2009',' ',' '); -INSERT INTO entity_versions VALUES(3406,313,'2010','08/25/2009',' '); -INSERT INTO entity_versions VALUES(3407,313,'XE','08/30/2010',' '); -INSERT INTO entity_versions VALUES(3408,313,'XE1','01/27/2011',' '); -INSERT INTO entity_versions VALUES(3409,313,'XE2','09/01/2011',' '); -INSERT INTO entity_versions VALUES(3410,313,'XE3','09/01/2012',' '); -INSERT INTO entity_versions VALUES(3411,313,'XE4','04/22/2013',' '); -INSERT INTO entity_versions VALUES(3412,313,'XE5','09/12/2013',' '); -INSERT INTO entity_versions VALUES(3413,313,'XE6','04/15/2014',' '); -INSERT INTO entity_versions VALUES(3414,313,'XE7','09/02/2014',' '); -INSERT INTO entity_versions VALUES(3415,313,'XE8','04/07/2015',' '); -INSERT INTO entity_versions VALUES(3416,313,'10','08/31/2015',' '); -INSERT INTO entity_versions VALUES(3417,313,'10.1','04/20/2016',' '); -INSERT INTO entity_versions VALUES(3418,313,'10.1.1','09/30/2016',' '); -INSERT INTO entity_versions VALUES(3419,313,'10.1.2','12/31/2016',' '); -INSERT INTO entity_versions VALUES(3420,313,'10.2','03/22/2017',' '); -INSERT INTO entity_versions VALUES(3421,313,'10.2.1','08/30/2017',' '); -INSERT INTO entity_versions VALUES(3422,313,'10.2.2','12/31/2017',' '); -INSERT INTO entity_versions VALUES(3423,313,'10.2.3','03/31/2018',' '); -INSERT INTO entity_versions VALUES(3424,313,'10.3','11/21/2018',' '); -INSERT INTO entity_versions VALUES(3425,313,'10.3.1','02/28/2019',' '); -INSERT INTO entity_versions VALUES(3426,313,'10.3.2','07/31/2019',' '); -INSERT INTO entity_versions VALUES(3427,313,'10.3.3','11/30/2019',' '); -INSERT INTO entity_versions VALUES(3428,313,'10.4','05/26/2020',' '); -INSERT INTO entity_versions VALUES(3429,313,'10.4.1','09/30/2020',' '); -INSERT INTO entity_versions VALUES(3430,313,'10.4.2','02/24/2021',' '); -INSERT INTO entity_versions VALUES(3431,313,'11','09/09/2021',' '); -INSERT INTO entity_versions VALUES(3432,310,'60','05/29/1959',' '); -INSERT INTO entity_versions VALUES(3433,310,'65','12/31/1965',' '); -INSERT INTO entity_versions VALUES(3434,310,'74','12/31/1974',' '); -INSERT INTO entity_versions VALUES(3435,310,'85','12/31/1985',' '); -INSERT INTO entity_versions VALUES(3436,310,'2002',' ',' '); -INSERT INTO entity_versions VALUES(3437,310,'2014',' ',' '); -INSERT INTO entity_versions VALUES(3438,450,'1.01','11/20/1985','12/31/2001'); -INSERT INTO entity_versions VALUES(3439,450,'1.02','05/14/1986','12/31/2001'); -INSERT INTO entity_versions VALUES(3440,450,'1.03','08/21/1986','12/31/2001'); -INSERT INTO entity_versions VALUES(3441,450,'1.04','04/10/1987','12/31/2001'); -INSERT INTO entity_versions VALUES(3442,450,'2.01','12/09/1987','12/31/2001'); -INSERT INTO entity_versions VALUES(3443,450,'2.03','12/09/1987','12/31/2001'); -INSERT INTO entity_versions VALUES(3444,450,'2.1','05/27/1988','12/31/2001'); -INSERT INTO entity_versions VALUES(3445,450,'2.11','03/13/1989','12/31/2001'); -INSERT INTO entity_versions VALUES(3446,450,'3','05/22/1990','12/31/2001'); -INSERT INTO entity_versions VALUES(3447,450,'3.1','04/06/1992','12/31/2001'); -INSERT INTO entity_versions VALUES(3448,450,' NT 3.1','07/27/1993','12/31/2001'); -INSERT INTO entity_versions VALUES(3449,450,'3.11','11/08/1993','12/31/2001'); -INSERT INTO entity_versions VALUES(3450,450,'3.2','11/22/1993','12/31/2001'); -INSERT INTO entity_versions VALUES(3451,450,'NT 3.5','09/21/1994','12/31/2001'); -INSERT INTO entity_versions VALUES(3452,450,'NT 3.51','08/24/1995','12/31/2001'); -INSERT INTO entity_versions VALUES(3453,450,'95','08/24/1996','12/31/2001'); -INSERT INTO entity_versions VALUES(3454,450,'NT 4.0','06/25/1998','06/30/2004'); -INSERT INTO entity_versions VALUES(3455,450,'98','05/05/1999','07/11/2006'); -INSERT INTO entity_versions VALUES(3456,450,'2000','02/17/2000','07/13/2010'); -INSERT INTO entity_versions VALUES(3457,450,'Me','09/14/2000','07/11/2006'); -INSERT INTO entity_versions VALUES(3458,450,'XP','10/25/2001','04/08/2014'); -INSERT INTO entity_versions VALUES(3459,450,'Vista','01/30/2007','04/11/2017'); -INSERT INTO entity_versions VALUES(3460,450,'7','10/22/2009','01/14/2020'); -INSERT INTO entity_versions VALUES(3461,450,'8','10/26/2012','01/12/2016'); -INSERT INTO entity_versions VALUES(3462,450,'8.1','10/17/2013','01/10/2023'); -INSERT INTO entity_versions VALUES(3463,450,'10','07/29/2015','10/14/2025'); -INSERT INTO entity_versions VALUES(3464,450,'11','10/05/2021','10/10/2023'); -INSERT INTO entity_versions VALUES(3465,697,'3.8.5','03/05/2022',''); -INSERT INTO entity_versions VALUES(3466,697,'3.8.4','11/12/2021','03/05/2022'); -INSERT INTO entity_versions VALUES(3467,697,'3.8.3','09/27/2021','11/12/2021'); -INSERT INTO entity_versions VALUES(3468,697,'3.8.1','04/04/2021','09/27/2021'); -DELETE FROM sqlite_sequence; -INSERT INTO sqlite_sequence VALUES('docker_baseos_images',13); -INSERT INTO sqlite_sequence VALUES('docker_images',171); -INSERT INTO sqlite_sequence VALUES('entities',698); -INSERT INTO sqlite_sequence VALUES('entity_mentions',7719); -INSERT INTO sqlite_sequence VALUES('entity_relations',1378); -INSERT INTO sqlite_sequence VALUES('entity_types',12); -INSERT INTO sqlite_sequence VALUES('openshift_baseos_images',1); -INSERT INTO sqlite_sequence VALUES('openshift_images',53); -INSERT INTO sqlite_sequence VALUES('operator_images',63); -INSERT INTO sqlite_sequence VALUES('docker_environment_variables',28); -INSERT INTO sqlite_sequence VALUES('entity_versions',3468); -COMMIT; +COMMIT TRANSACTION; +PRAGMA foreign_keys = on; diff --git a/service/requirements.txt b/service/requirements.txt index 949d81d..5d40fb7 100644 --- a/service/requirements.txt +++ b/service/requirements.txt @@ -4,11 +4,11 @@ Flask==1.1.1 Flask-API==1.1 flask-restplus==0.13.0 Werkzeug==0.16.1 -scikit-learn==1.0.2 -joblib==0.15.1 +scikit-learn==1.1.1 #1.0.2 +joblib>= 1.0.0 #0.15.1 scipy==1.8.0 scikit-multilearn==0.2.0 -requests==2.27.1 +requests==2.28.1 #2.27.1 packaging==21.0 Jinja2==2.11.3 MarkupSafe==2.0.1 @@ -24,18 +24,15 @@ Flask-Nav==0.6 Flask-WTF==0.15.1 python-dotenv==0.10.3 xlrd==1.2.0 -pandas==1.3.0 -scikit-learn==0.24.2 -openpyxl==3.0.9 +pandas==1.4.3 +openpyxl==3.0.10 xlutils==2.0.0 bs4==0.0.1 -requests==2.26.0 requests-html==0.10.0 PyGithub==1.55 networkx==2.6. -requests -furl -csv +furl==2.1.3 + # Runtime From 567afff3e067da3e3f0dffeedd80244b9c02a159 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Wed, 13 Jul 2022 10:10:33 -0400 Subject: [PATCH 09/30] removed print statements --- kg_utils/kg_utils.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kg_utils/kg_utils.py b/kg_utils/kg_utils.py index 6533f7b..0a25288 100644 --- a/kg_utils/kg_utils.py +++ b/kg_utils/kg_utils.py @@ -31,7 +31,6 @@ config.read([common, kg]) - def cleanStrValue(value): """ Clean input strings @@ -90,7 +89,7 @@ def load_docker_openshift_urls(connect): openshift_container_name, open_url = img[1], img[10] openshift_urls[openshift_container_name] = open_url - print(json.dumps(docker_urls, indent=4)) + #print(json.dumps(docker_urls, indent=4)) def type_mapper(db_connection): @@ -590,14 +589,15 @@ def create_openshift_image_kg(db_connect): openshift_image_kg["KG Version"] = config["general"]["version"] openshift_image_kg["Container Images"] = {} + for image in openshift_cursor.fetchall(): container_name, os_entity_id, lang_id, lib_id, app_id, app_server_id, plugin_id, runlib_id, runtime_id, Docker_URL, _ = image[ 1:] - + openshift_image_kg["Container Images"][container_name] = {} openshift_image_kg["Container Images"][container_name]["OS"] = [ {"Class": entities[str(os_entity_id)], "Variants": "", "Versions": "", "Type": "OS", "Subtype": ""}] - + if lang_id == None: openshift_image_kg["Container Images"][container_name]["Lang"] = [] else: From 45a79ecb62f533c6ca87911d93ff595aa262bcb8 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Thu, 14 Jul 2022 10:21:34 -0400 Subject: [PATCH 10/30] latest image search. Fixed False/True for docker_images --- kg_utils/image_search_kg/docker_images.csv | 61 + kg_utils/image_search_kg/images.json | 69632 ++++++++++++++++ kg_utils/image_search_kg/openshift_images.csv | 109 + kg_utils/image_search_kg/operator_images.csv | 441 + .../verified_publisher_names.json | 6 + kg_utils/search_images.py | 772 + kg_utils/search_utils/dockerhub_api.py | 917 + kg_utils/search_utils/load_entities.py | 149 + kg_utils/search_utils/save_to_csv.py | 296 + kg_utils/search_utils/utils.py | 166 + 10 files changed, 72549 insertions(+) create mode 100644 kg_utils/image_search_kg/docker_images.csv create mode 100644 kg_utils/image_search_kg/images.json create mode 100644 kg_utils/image_search_kg/openshift_images.csv create mode 100644 kg_utils/image_search_kg/operator_images.csv create mode 100644 kg_utils/image_search_kg/verified_publisher_names.json create mode 100644 kg_utils/search_images.py create mode 100644 kg_utils/search_utils/dockerhub_api.py create mode 100644 kg_utils/search_utils/load_entities.py create mode 100644 kg_utils/search_utils/save_to_csv.py create mode 100644 kg_utils/search_utils/utils.py diff --git a/kg_utils/image_search_kg/docker_images.csv b/kg_utils/image_search_kg/docker_images.csv new file mode 100644 index 0000000..b5208d2 --- /dev/null +++ b/kg_utils/image_search_kg/docker_images.csv @@ -0,0 +1,61 @@ +docker_images,container_name,OS,lang,lib,app,app_server,plugin,runlib,runtime,Docker_Url,Notes,CertOfImageAndPublisher +docker_images,adobecoldfusion/coldfusion,426,,,37,,,,,https://hub.docker.com/r/adobecoldfusion/coldfusion,,Verified Publisher +docker_images,ibmcom/db2,426,,,43,,,,,https://hub.docker.com/r/ibmcom/db2,,Verified Publisher +docker_images,drupal,426,,,45,,,,,https://hub.docker.com/_/drupal,,Official Image +docker_images,jenkins,426,,,90,,,,,https://hub.docker.com/_/jenkins,,Official Image +docker_images,memcached,426,,,98,,,,,https://hub.docker.com/_/memcached,,Official Image +docker_images,bitnami/mongodb,426,,,116,,,,,https://hub.docker.com/r/bitnami/mongodb,,Verified Publisher +docker_images,mysql,426,,,122,,,,,https://hub.docker.com/_/mysql,,Official Image +docker_images,neo4j,426,,,123,,,,,https://hub.docker.com/_/neo4j,,Official Image +docker_images,bitnami/openldap,426,,,126,,,,,https://hub.docker.com/r/bitnami/openldap,,Verified Publisher +docker_images,bitnami/postgresql,426,,,157,,,,,https://hub.docker.com/r/bitnami/postgresql,,Verified Publisher +docker_images,rabbitmq,426,,,165,,,,,https://hub.docker.com/_/rabbitmq,,Official Image +docker_images,redis,426,,,168,,,,,https://hub.docker.com/_/redis,,Official Image +docker_images,sentry,426,,,180,,,,,https://hub.docker.com/_/sentry,,Official Image +docker_images,sonarqube,426,,,186,,,,,https://hub.docker.com/_/sonarqube,,Official Image +docker_images,wordpress,426,,,245,,,,,https://hub.docker.com/_/wordpress,,Official Image +docker_images,ibmcom/zeromq,426,,,248,,,,,https://hub.docker.com/r/ibmcom/zeromq,,Verified Publisher +docker_images,glassfish,426,,,,263,,,,https://hub.docker.com/_/glassfish,,Official Image +docker_images,haproxy,426,,,,264,,,,https://hub.docker.com/_/haproxy,,Official Image +docker_images,nginx,426,,,,274,,,,https://hub.docker.com/_/nginx,,Official Image +docker_images,bitnami/spark,426,,,,280,,,,https://hub.docker.com/r/bitnami/spark,,Verified Publisher +docker_images,groovy,426,325,,,,,,,https://hub.docker.com/_/groovy,,Official Image +docker_images,java,426,331,,,,,,,https://hub.docker.com/_/java,,Official Image +docker_images,perl,426,347,,,,,,,https://hub.docker.com/_/perl,,Official Image +docker_images,php,426,350,,,,,,,https://hub.docker.com/_/php,,Official Image +docker_images,python,426,354,,,,,,,https://hub.docker.com/_/python,,Official Image +docker_images,ruby,426,358,,,,,,,https://hub.docker.com/_/ruby,,Official Image +docker_images,swift,426,364,,,,,,,https://hub.docker.com/_/swift,,Official Image +docker_images,ibmcom/react,426,,413,,,,,,https://hub.docker.com/r/ibmcom/react,,Verified Publisher +docker_images,circleci/android,418,,,,,,,,https://hub.docker.com/r/circleci/android,,Verified Publisher +docker_images,dart,421,,,,,,,,https://hub.docker.com/_/dart,,Official Image +docker_images,centos,427,,,,,,,,https://hub.docker.com/_/centos,,Official Image +docker_images,debian,429,,,,,,,,https://hub.docker.com/_/debian,,Official Image +docker_images,opensuse,431,,,,,,,,https://hub.docker.com/_/opensuse,,Official Image +docker_images,ubuntu,436,,,,,,,,https://hub.docker.com/_/ubuntu,,Official Image +docker_images,fedora,453,,,,,,,,https://hub.docker.com/_/fedora,,Official Image +docker_images,bitnami/wildfly,426,,,,,,493,,https://hub.docker.com/r/bitnami/wildfly,,Verified Publisher +docker_images,docker,426,,,,,,,503,https://hub.docker.com/_/docker,,Official Image +docker_images,ibmcom/json,426,,,,,,,,https://hub.docker.com/r/ibmcom/json,,Verified Publisher +docker_images,java,426,584,,,,,,,https://hub.docker.com/_/java,,Official Image +docker_images,perl,426,585,,,,,,,https://hub.docker.com/_/perl,,Official Image +docker_images,php,426,586,,,,,,,https://hub.docker.com/_/php,,Official Image +docker_images,python,426,587,,,,,,,https://hub.docker.com/_/python,,Official Image +docker_images,ruby,426,588,,,,,,,https://hub.docker.com/_/ruby,,Official Image +docker_images,snyk/snyk,426,,,613,,,,,https://hub.docker.com/r/snyk/snyk,,Verified Publisher +docker_images,varnish,426,,,,615,,,,https://hub.docker.com/_/varnish,,Official Image +docker_images,kasmweb/api,426,,,,,,,,https://hub.docker.com/r/kasmweb/api,,Verified Publisher +docker_images,nuxeo,426,,,,,,,620,https://hub.docker.com/_/nuxeo,,Official Image +docker_images,arangodb,426,,,621,,,,,https://hub.docker.com/_/arangodb,,Official Image +docker_images,bitnami/minio,426,,,625,,,,,https://hub.docker.com/r/bitnami/minio,,Verified Publisher +docker_images,elasticsearch,426,,,626,,,,,https://hub.docker.com/_/elasticsearch,,Official Image +docker_images,bitnami/keycloak,426,,,628,,,,,https://hub.docker.com/r/bitnami/keycloak,,Verified Publisher +docker_images,grafana/grafana,426,,,629,,,,,https://hub.docker.com/r/grafana/grafana,,Verified Publisher +docker_images,mariadb,426,,,642,,,,,https://hub.docker.com/_/mariadb,,Official Image +docker_images,vault,426,,,645,,,,,https://hub.docker.com/_/vault,,Official Image +docker_images,bitnami/etcd,426,,,647,,,,,https://hub.docker.com/r/bitnami/etcd,,Verified Publisher +docker_images,traefik,426,,,,648,,,,https://hub.docker.com/_/traefik,,Official Image +docker_images,bitnami/git,426,,,677,,,,,https://hub.docker.com/r/bitnami/git,,Verified Publisher +docker_images,mysql,426,,,684,,,,,https://hub.docker.com/_/mysql,,Official Image +docker_images,bitnami/postgresql,426,,,686,,,,,https://hub.docker.com/r/bitnami/postgresql,,Verified Publisher +docker_images,ibmcom/isam,426,,,693,,,,,https://hub.docker.com/r/ibmcom/isam,,Verified Publisher diff --git a/kg_utils/image_search_kg/images.json b/kg_utils/image_search_kg/images.json new file mode 100644 index 0000000..3038a24 --- /dev/null +++ b/kg_utils/image_search_kg/images.json @@ -0,0 +1,69632 @@ +[ + { + "(E)JES": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 1 + }, + { + "A-Auto Job Scheduling Software": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "atlassian/jira-software", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 266, + "Docker_Url": "https://hub.docker.com/r/atlassian/jira-software", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "pachyderm/job-shim", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/pachyderm/job-shim", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-management-ingress-operator", + "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", + "popularity": 111760.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 117024.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 2 + }, + { + "Activiti": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 3 + }, + { + "Adobe Acrobat Reader": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "giant-chatops-slack-reader", + "url": "https://quay.io/repository/giantswarm/giant-chatops-slack-reader", + "popularity": 10.0 + }, + { + "name": "mig-log-reader", + "url": "https://quay.io/repository/konveyor/mig-log-reader", + "popularity": 102.0 + }, + { + "name": "perl-fastx-reader", + "url": "https://quay.io/repository/biocontainers/perl-fastx-reader", + "popularity": 0.0 + }, + { + "name": "gaia-reader", + "url": "https://quay.io/repository/blockstack/gaia-reader", + "popularity": 0.0 + }, + { + "name": "event-reader", + "url": "https://quay.io/repository/instrumentation/event-reader", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 4 + }, + { + "Ansible": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ansible-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ansible-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/ansible-runner", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/rancher/ansible-runner", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibp-ansible", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibp-ansible", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ansible-s390x", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ansible-s390x", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "ansible", + "url": "https://quay.io/repository/cloudctl/ansible", + "popularity": 589.0 + }, + { + "name": "ansible", + "url": "https://quay.io/repository/containercraft/ansible", + "popularity": 5.0 + }, + { + "name": "ansible", + "url": "https://quay.io/repository/osbuild/ansible", + "popularity": 735.0 + } + ], + "quay_top_images": [ + { + "name": "ansible-operator", + "url": "https://quay.io/repository/operator-framework/ansible-operator", + "popularity": 20473.0 + }, + { + "name": "origin-ansible", + "url": "https://quay.io/repository/openshift/origin-ansible", + "popularity": 11569.0 + }, + { + "name": "ansible-runner", + "url": "https://quay.io/repository/ansible/ansible-runner", + "popularity": 11749.0 + }, + { + "name": "ansible-core-test-container", + "url": "https://quay.io/repository/ansible/ansible-core-test-container", + "popularity": 8601.0 + }, + { + "name": "gitlab-ansible-runner", + "url": "https://quay.io/repository/sheogorath/gitlab-ansible-runner", + "popularity": 20160.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 5 + }, + { + "Apache ActiveMQ": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/apache", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 81, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/activemq-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/activemq-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "pingidentity/apache-jmeter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/apache-exporter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/activemq-cpp-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/activemq-cpp-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 826844.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/strimzi/operator", + "popularity": 412398.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 6 + }, + { + "Apache Hbase": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/apache", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 81, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "pingidentity/apache-jmeter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/apache-exporter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 826844.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/strimzi/operator", + "popularity": 412398.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 7 + }, + { + "Apache Hive": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/apache", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 81, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "pingidentity/apache-jmeter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/apache-exporter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "hive", + "url": "https://quay.io/repository/openshift-hive/hive", + "popularity": 108677.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 826844.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/strimzi/operator", + "popularity": 412398.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 8 + }, + { + "Apache Kafka": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/apache", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 81, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/kafka", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 503, + "Docker_Url": "https://hub.docker.com/r/bitnami/kafka", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ubuntu/kafka", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/ubuntu/kafka", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/kafka", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/kafka", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/apache-exporter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 826844.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/strimzi/operator", + "popularity": 412398.0 + } + ] + }, + { + "operators": [ + { + "package_id": "614a5896-0b60-4e2b-a5b7-3b694658ab2a", + "name": "strimzi-kafka-operator", + "normalized_name": "strimzi-kafka-operator", + "logo_image_id": "83c34ef5-d2f7-4282-94ab-468dea859677", + "stars": 18, + "display_name": "Strimzi", + "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", + "version": "0.29.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 412, + "high": 38, + "medium": 473, + "unknown": 7, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1652572867, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/strimzi/strimzi-kafka-operator", + "container_images": [ + "quay.io/strimzi/operator", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka-bridge", + "quay.io/strimzi/jmxtrans", + "quay.io/strimzi/kaniko-executor", + "quay.io/strimzi/maven-builder" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 9 + }, + { + "Apache ServiceMix": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/apache", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 81, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "pingidentity/apache-jmeter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/apache-exporter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 826844.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/strimzi/operator", + "popularity": 412398.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 10 + }, + { + "Apache Solr": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/solr", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 12, + "Docker_Url": "https://hub.docker.com/r/bitnami/solr", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "solr", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 913, + "Docker_Url": "https://hub.docker.com/_/solr", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/apache", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 81, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "pingidentity/apache-jmeter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/apache-exporter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 826844.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/strimzi/operator", + "popularity": 412398.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 11 + }, + { + "Apache Subversion": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/apache", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 81, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "pingidentity/apache-jmeter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/apache-exporter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 826844.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/strimzi/operator", + "popularity": 412398.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 12 + }, + { + "Application Development Facility": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "operator-generic", + "url": "https://quay.io/repository/cilium/operator-generic", + "popularity": 159557.0 + }, + { + "name": "billing-sidecar", + "url": "https://quay.io/repository/sdase/billing-sidecar", + "popularity": 183418.0 + }, + { + "name": "hubble-relay", + "url": "https://quay.io/repository/cilium/hubble-relay", + "popularity": 135390.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 13 + }, + { + "Asterisk": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "asterisk", + "url": "https://quay.io/repository/citybaseinc/asterisk", + "popularity": 0.0 + }, + { + "name": "asterisk", + "url": "https://quay.io/repository/jorti/asterisk", + "popularity": 23.0 + }, + { + "name": "asterisk", + "url": "https://quay.io/repository/mak73kur/asterisk", + "popularity": 0.0 + }, + { + "name": "asterisk", + "url": "https://quay.io/repository/gabibbo97/asterisk", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "asterisk", + "url": "https://quay.io/repository/citybaseinc/asterisk", + "popularity": 0.0 + }, + { + "name": "asterisk-base", + "url": "https://quay.io/repository/cycore/asterisk-base", + "popularity": 0.0 + }, + { + "name": "openshift-asterisk", + "url": "https://quay.io/repository/alpha_weepee_io/openshift-asterisk", + "popularity": 0.0 + }, + { + "name": "docker-asterisk-freepbx", + "url": "https://quay.io/repository/shaposhnikov/docker-asterisk-freepbx", + "popularity": 1.0 + }, + { + "name": "asterisk", + "url": "https://quay.io/repository/jorti/asterisk", + "popularity": 23.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 14 + }, + { + "Automic Job Scheduler": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/scheduler", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/rancher/scheduler", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "pachyderm/job-shim", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/pachyderm/job-shim", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/airflow-scheduler", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 7, + "Docker_Url": "https://hub.docker.com/r/bitnami/airflow-scheduler", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "k8s-job-cleaner", + "url": "https://quay.io/repository/dtan4/k8s-job-cleaner", + "popularity": 84111.0 + }, + { + "name": "event-scheduler", + "url": "https://quay.io/repository/grworth_analytics/event-scheduler", + "popularity": 10440.0 + }, + { + "name": "origin-cluster-kube-scheduler-operator", + "url": "https://quay.io/repository/openshift/origin-cluster-kube-scheduler-operator", + "popularity": 4172.0 + }, + { + "name": "multicluster-scheduler-scheduler", + "url": "https://quay.io/repository/admiralty/multicluster-scheduler-scheduler", + "popularity": 4874.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 15 + }, + { + "Autosys": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 16 + }, + { + "Bluebeam Q": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 17 + }, + { + "BMC Control-M": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "kubernetes-control-panel", + "url": "https://quay.io/repository/rackspace/kubernetes-control-panel", + "popularity": 3514.0 + }, + { + "name": "ceph", + "url": "https://quay.io/repository/ceph/ceph", + "popularity": 335511.0 + }, + { + "name": "origin-control-plane", + "url": "https://quay.io/repository/openshift/origin-control-plane", + "popularity": 2606.0 + }, + { + "name": "bmc-reverse-proxy", + "url": "https://quay.io/repository/cybozu/bmc-reverse-proxy", + "popularity": 1580.0 + }, + { + "name": "fastqc", + "url": "https://quay.io/repository/biocontainers/fastqc", + "popularity": 11779.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 18 + }, + { + "BMC Identity Management": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/identity-brokerage", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/identity-brokerage", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/icp-identity-provider", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-identity-provider", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/icp-identity-manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-identity-manager", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "icp-identity-manager", + "url": "https://quay.io/repository/opencloudio/icp-identity-manager", + "popularity": 234348.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 255406.0 + }, + { + "name": "node-disk-manager-amd64", + "url": "https://quay.io/repository/openebs/node-disk-manager-amd64", + "popularity": 159434.0 + }, + { + "name": "postgresql-10-centos7", + "url": "https://quay.io/repository/centos7/postgresql-10-centos7", + "popularity": 189232.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 19 + }, + { + "Borland Database Engine": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/informix-developer-database", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 46, + "Docker_Url": "https://hub.docker.com/r/ibmcom/informix-developer-database", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "docker/engine-community", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/docker/engine-community", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "mongodb-enterprise-database", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", + "popularity": 118389.0 + }, + { + "name": "engine", + "url": "https://quay.io/repository/codefresh/engine", + "popularity": 334883.0 + }, + { + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 255406.0 + }, + { + "name": "mariadb-103-centos7", + "url": "https://quay.io/repository/centos7/mariadb-103-centos7", + "popularity": 241707.0 + }, + { + "name": "postgresql-10-centos7", + "url": "https://quay.io/repository/centos7/postgresql-10-centos7", + "popularity": 189232.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 20 + }, + { + "Business Intelligence and Reporting Tools": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ocp-release", + "url": "https://quay.io/repository/openshift-release-dev/ocp-release", + "popularity": 39354632.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "thanos", + "url": "https://quay.io/repository/thanos/thanos", + "popularity": 2534311.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 21 + }, + { + "CA Gen": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "vault-next-gen", + "url": "https://quay.io/repository/codefreshplugins/vault-next-gen", + "popularity": 28875.0 + }, + { + "name": "doc-gen-container", + "url": "https://quay.io/repository/spearow/doc-gen-container", + "popularity": 4831.0 + }, + { + "name": "origin-crd-schema-gen", + "url": "https://quay.io/repository/openshift/origin-crd-schema-gen", + "popularity": 3199.0 + }, + { + "name": "thrift-gen", + "url": "https://quay.io/repository/m3db/thrift-gen", + "popularity": 290.0 + }, + { + "name": "drone-gen-tags", + "url": "https://quay.io/repository/natlibfi/drone-gen-tags", + "popularity": 133.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 22 + }, + { + "CA Introscope": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 23 + }, + { + "CA-Panvalet": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 24 + }, + { + "CA-TELON": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 25 + }, + { + "Casegen": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 26 + }, + { + "Chef Automate": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/chef-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/chef-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "fmeserver-engine", + "url": "https://quay.io/repository/safesoftware/fmeserver-engine", + "popularity": 155.0 + }, + { + "name": "fmeserver-core", + "url": "https://quay.io/repository/safesoftware/fmeserver-core", + "popularity": 64.0 + }, + { + "name": "fmeserver-queue", + "url": "https://quay.io/repository/safesoftware/fmeserver-queue", + "popularity": 57.0 + }, + { + "name": "fmeserver-web", + "url": "https://quay.io/repository/safesoftware/fmeserver-web", + "popularity": 57.0 + }, + { + "name": "git-batch", + "url": "https://quay.io/repository/thegeeklab/git-batch", + "popularity": 27.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 27 + }, + { + "Cisco AMP for Endpoints": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "machines-endpoints", + "url": "https://quay.io/repository/cybozu/machines-endpoints", + "popularity": 3500.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "statsd-exporter", + "url": "https://quay.io/repository/prometheus/statsd-exporter", + "popularity": 8725.0 + }, + { + "name": "gluster-recycler", + "url": "https://quay.io/repository/appuio/gluster-recycler", + "popularity": 2691.0 + }, + { + "name": "sentinel-snapshot", + "url": "https://quay.io/repository/gatblau/sentinel-snapshot", + "popularity": 668.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 28 + }, + { + "CiscoWorks LAN Management Solution": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 255406.0 + }, + { + "name": "node-disk-manager-amd64", + "url": "https://quay.io/repository/openebs/node-disk-manager-amd64", + "popularity": 159434.0 + }, + { + "name": "postgresql-10-centos7", + "url": "https://quay.io/repository/centos7/postgresql-10-centos7", + "popularity": 189232.0 + }, + { + "name": "postgresql-13-centos7", + "url": "https://quay.io/repository/centos7/postgresql-13-centos7", + "popularity": 140143.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 29 + }, + { + "Citrix Virtual Apps and Desktops": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ocp-release", + "url": "https://quay.io/repository/openshift-release-dev/ocp-release", + "popularity": 39354632.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "thanos", + "url": "https://quay.io/repository/thanos/thanos", + "popularity": 2534311.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 30 + }, + { + "Citrix ADC CPX": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/citrix-workspace", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/kasmweb/citrix-workspace", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "citrix-k8s-ingress-controller", + "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", + "popularity": 137872.0 + }, + { + "name": "citrix-k8s-node-controller", + "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", + "popularity": 41494.0 + }, + { + "name": "citrix-adc-metrics-exporter", + "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", + "popularity": 39011.0 + }, + { + "name": "citrix-observability-exporter", + "url": "https://quay.io/repository/citrix/citrix-observability-exporter", + "popularity": 1975.0 + }, + { + "name": "citrix-k8s-cpx-ingress", + "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", + "popularity": 460.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 31 + }, + { + "Citrix Provisioning": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/citrix-workspace", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/kasmweb/citrix-workspace", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "citrix-k8s-ingress-controller", + "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", + "popularity": 137872.0 + }, + { + "name": "citrix-k8s-node-controller", + "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", + "popularity": 41494.0 + }, + { + "name": "citrix-adc-metrics-exporter", + "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", + "popularity": 39011.0 + }, + { + "name": "mongodb-enterprise-operator", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", + "popularity": 74259.0 + }, + { + "name": "redis-operator", + "url": "https://quay.io/repository/opstree/redis-operator", + "popularity": 70825.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 32 + }, + { + "Clarify": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "freyagarcia969", + "url": "https://quay.io/repository/freyagarcia969/freyagarcia969", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 33 + }, + { + "Clarity LIMS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "baobab-lims", + "url": "https://quay.io/repository/sanbi-sa/baobab-lims", + "popularity": 0.0 + }, + { + "name": "baobab-lims", + "url": "https://quay.io/repository/baobab-lims/baobab-lims", + "popularity": 39.0 + }, + { + "name": "lims-backend", + "url": "https://quay.io/repository/tamu_cpt/lims-backend", + "popularity": 0.0 + }, + { + "name": "lims-frontend", + "url": "https://quay.io/repository/tamu_cpt/lims-frontend", + "popularity": 0.0 + }, + { + "name": "clarity-dex", + "url": "https://quay.io/repository/hhoover/clarity-dex", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 34 + }, + { + "LabWare LIMS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "baobab-lims", + "url": "https://quay.io/repository/sanbi-sa/baobab-lims", + "popularity": 0.0 + }, + { + "name": "baobab-lims", + "url": "https://quay.io/repository/baobab-lims/baobab-lims", + "popularity": 39.0 + }, + { + "name": "lims-backend", + "url": "https://quay.io/repository/tamu_cpt/lims-backend", + "popularity": 0.0 + }, + { + "name": "lims-frontend", + "url": "https://quay.io/repository/tamu_cpt/lims-frontend", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 35 + }, + { + "Cognos": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "sgad-back-cognos", + "url": "https://quay.io/repository/andres_mareca_ibm/sgad-back-cognos", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 36 + }, + { + "Coldfusion": [ + { + "dockerhub_exact_images": [ + { + "name": "adobecoldfusion/coldfusion", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/adobecoldfusion/coldfusion", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "adobecoldfusion/coldfusion", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/adobecoldfusion/coldfusion", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 37 + }, + { + "ConceptWave": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 38 + }, + { + "CONNAPI": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 39 + }, + { + "Connect Direct": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/connect-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/connect-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "my-kafka-connect", + "url": "https://quay.io/repository/pminkows/my-kafka-connect", + "popularity": 21792.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "billing-sidecar", + "url": "https://quay.io/repository/sdase/billing-sidecar", + "popularity": 183418.0 + }, + { + "name": "memcached", + "url": "https://quay.io/repository/jitesoft/memcached", + "popularity": 52903.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 40 + }, + { + "Cornerstone software": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "atlassian/jira-software", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 266, + "Docker_Url": "https://hub.docker.com/r/atlassian/jira-software", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "operator-generic", + "url": "https://quay.io/repository/cilium/operator-generic", + "popularity": 159557.0 + }, + { + "name": "hubble-relay", + "url": "https://quay.io/repository/cilium/hubble-relay", + "popularity": 135390.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 41 + }, + { + "Crystal Reports": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "teleport", + "url": "https://quay.io/repository/gravitational/teleport", + "popularity": 157544.0 + }, + { + "name": "invidious", + "url": "https://quay.io/repository/invidious/invidious", + "popularity": 38116.0 + }, + { + "name": "teleport-ent", + "url": "https://quay.io/repository/gravitational/teleport-ent", + "popularity": 38658.0 + }, + { + "name": "multiqc", + "url": "https://quay.io/repository/biocontainers/multiqc", + "popularity": 9969.0 + }, + { + "name": "dep-scan", + "url": "https://quay.io/repository/appthreat/dep-scan", + "popularity": 606.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 42 + }, + { + "DB2": [ + { + "dockerhub_exact_images": [ + { + "name": "ibmcom/db2", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 129, + "Docker_Url": "https://hub.docker.com/r/ibmcom/db2", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "ibmcom/db2", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 129, + "Docker_Url": "https://hub.docker.com/r/ibmcom/db2", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/db2-s390x", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/db2-s390x", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/db2-amd64", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/ibmcom/db2-amd64", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/db2-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/db2-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "db2", + "url": "https://quay.io/repository/quarkusqeteam/db2", + "popularity": 263.0 + }, + { + "name": "db2", + "url": "https://quay.io/repository/pjgg/db2", + "popularity": 52.0 + }, + { + "name": "db2", + "url": "https://quay.io/repository/luisarizmendi/db2", + "popularity": 0.0 + }, + { + "name": "db2", + "url": "https://quay.io/repository/rhoar_qe/db2", + "popularity": 3.0 + }, + { + "name": "db2", + "url": "https://quay.io/repository/klausulrich/db2", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "db2", + "url": "https://quay.io/repository/quarkusqeteam/db2", + "popularity": 263.0 + }, + { + "name": "db2", + "url": "https://quay.io/repository/pjgg/db2", + "popularity": 52.0 + }, + { + "name": "elm-db2", + "url": "https://quay.io/repository/dominik_jergus/elm-db2", + "popularity": 37.0 + }, + { + "name": "ibm-db2-sfg", + "url": "https://quay.io/repository/hollisc/ibm-db2-sfg", + "popularity": 15.0 + }, + { + "name": "db2-pem", + "url": "https://quay.io/repository/vbudi/db2-pem", + "popularity": 16.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 43 + }, + { + "Documentum Content Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "okd-content", + "url": "https://quay.io/repository/openshift/okd-content", + "popularity": 9422045.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 44 + }, + { + "Drupal": [ + { + "dockerhub_exact_images": [ + { + "name": "drupal", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 930, + "Docker_Url": "https://hub.docker.com/_/drupal", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v6", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/drupal", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 27, + "Docker_Url": "https://hub.docker.com/r/bitnami/drupal", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "bitnami/drupal", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 27, + "Docker_Url": "https://hub.docker.com/r/bitnami/drupal", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "drupal", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 930, + "Docker_Url": "https://hub.docker.com/_/drupal", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v6", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/drupal-nginx", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 8, + "Docker_Url": "https://hub.docker.com/r/bitnami/drupal-nginx", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "drupal", + "url": "https://quay.io/repository/swsmirror/drupal", + "popularity": 1.0 + }, + { + "name": "drupal", + "url": "https://quay.io/repository/official-images/drupal", + "popularity": 0.0 + }, + { + "name": "drupal", + "url": "https://quay.io/repository/damagehead/drupal", + "popularity": 0.0 + }, + { + "name": "drupal", + "url": "https://quay.io/repository/dockerlibrary/drupal", + "popularity": 0.0 + }, + { + "name": "drupal", + "url": "https://quay.io/repository/dperez_mulet/drupal", + "popularity": 4.0 + }, + { + "name": "drupal", + "url": "https://quay.io/repository/brunofar/drupal", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "drupal", + "url": "https://quay.io/repository/swsmirror/drupal", + "popularity": 1.0 + }, + { + "name": "drupal", + "url": "https://quay.io/repository/official-images/drupal", + "popularity": 0.0 + }, + { + "name": "drupal-php5.6-apache", + "url": "https://quay.io/repository/continuouspipe/drupal-php5.6-apache", + "popularity": 0.0 + }, + { + "name": "drupal-php7.1-apache", + "url": "https://quay.io/repository/continuouspipe/drupal-php7.1-apache", + "popularity": 0.0 + }, + { + "name": "drupal", + "url": "https://quay.io/repository/dperez_mulet/drupal", + "popularity": 4.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 45 + }, + { + "Eclipse": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "che-plugin-artifacts-broker", + "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", + "popularity": 20225.0 + }, + { + "name": "che-operator", + "url": "https://quay.io/repository/eclipse/che-operator", + "popularity": 36094.0 + }, + { + "name": "che-plugin-sidecar", + "url": "https://quay.io/repository/eclipse/che-plugin-sidecar", + "popularity": 15476.0 + }, + { + "name": "che-java11-maven", + "url": "https://quay.io/repository/eclipse/che-java11-maven", + "popularity": 19772.0 + }, + { + "name": "che-machine-exec", + "url": "https://quay.io/repository/eclipse/che-machine-exec", + "popularity": 9244.0 + } + ] + }, + { + "operators": [ + { + "package_id": "57488c09-4b44-4ba8-aeed-2c141cf0b30e", + "name": "eclipse-che", + "normalized_name": "eclipse-che", + "logo_image_id": "f2ea20a6-ebd1-42f6-b7e7-b9dd0f36bd22", + "stars": 3, + "display_name": "Eclipse Che", + "description": "A Kube-native development solution that delivers portable and collaborative developer workspaces.", + "version": "7.39.2", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1637755976, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/eclipse-che/che-operator", + "container_images": [ + "quay.io/eclipse/che-operator", + "quay.io/che-incubator/configbump", + "quay.io/che-incubator/header-rewrite-proxy", + "quay.io/devfile/devworkspace-controller", + "quay.io/eclipse/che--centos--postgresql-13-centos7", + "quay.io/eclipse/che--centos--postgresql-96-centos7", + "quay.io/eclipse/che--traefik", + "quay.io/eclipse/che-backup-server-rest", + "quay.io/eclipse/che-dashboard", + "quay.io/eclipse/che-devfile-registry", + "quay.io/eclipse/che-jwtproxy", + "quay.io/eclipse/che-keycloak", + "quay.io/eclipse/che-plugin-artifacts-broker", + "quay.io/eclipse/che-plugin-metadata-broker", + "quay.io/eclipse/che-plugin-registry", + "quay.io/eclipse/che-server", + "quay.io/eclipse/che-tls-secret-creator", + "quay.io/openshift/origin-kube-rbac-proxy", + "quay.io/openshift/origin-oauth-proxy", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/windupeng/mta-vscode-extension", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-theia", + "quay.io/eclipse/che-machine-exec", + "quay.io/eclipse/che-theia-endpoint-runtime-binary", + "index.docker.io/ksmster/che-editor-jupyter", + "index.docker.io/dirigiblelabs/dirigible-openshift", + "quay.io/che-incubator/che-idea", + "quay.io/che-incubator/che-pycharm", + "index.docker.io/wsskeleton/eclipse-broadway", + "index.docker.io/codercom/code-server", + "quay.io/eclipse/che-buildah-base", + "quay.io/eclipse/che-sidecar-workspace-data-sync", + "quay.io/eclipse/che-buildkit-base", + "quay.io/eclipse/che--centos--mongodb-36-centos7", + "quay.io/eclipse/che--centos--mongodb-36-centos7", + "quay.io/eclipse/che--centos--mysql-57-centos7", + "quay.io/eclipse/che-cpp-rhel7", + "quay.io/eclipse/che-dotnet-2.2", + "quay.io/eclipse/che-dotnet-3.1", + "quay.io/eclipse/che-golang-1.17", + "quay.io/eclipse/che-java11-gradle", + "quay.io/eclipse/che-java11-maven", + "quay.io/eclipse/che-java8-maven", + "quay.io/eclipse/che-nodejs10-community", + "quay.io/eclipse/che-nodejs10-ubi", + "quay.io/eclipse/che-nodejs12-community", + "quay.io/eclipse/che-nodejs8-centos", + "quay.io/eclipse/che-php-7", + "quay.io/eclipse/che-python-3.8", + "quay.io/eclipse/che-quarkus", + "quay.io/eclipse/che-rust-1.39" + ] + }, + { + "package_id": "0cad4b47-9ae4-4912-934f-4972a4d3d183", + "name": "ditto-operator", + "normalized_name": "ditto-operator", + "logo_image_id": "d408d1ea-a894-4d4e-8a0c-5fd32067bb0c", + "stars": 0, + "display_name": "Eclipse Ditto", + "description": "Eclipse Ditto provides a Digital Twin platform. A digital twin is a virtual, cloud based, representation of his real world counterpart.", + "version": "0.4.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 4, + "medium": 46, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1632318840, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/ctron/ditto-operator", + "container_images": [] + }, + { + "package_id": "ae13a89d-340d-46c5-a013-fb856655599c", + "name": "hawkbit-operator", + "normalized_name": "hawkbit-operator", + "logo_image_id": "81ab91cc-ab49-4bdb-a844-0c761e0817e8", + "stars": 0, + "display_name": "Eclipse Hawkbit", + "description": "Eclipse hawkBit is a firmware update platform.", + "version": "0.1.5", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 46, + "high": 4, + "medium": 88, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1633642225, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/ctron/hawkbit-operator", + "container_images": [] + }, + { + "package_id": "e44dc7f9-5d6f-4185-bb53-291a8ee1408d", + "name": "iot-simulator", + "normalized_name": "iot-simulator", + "logo_image_id": "9821068b-f345-4230-a61a-4b14ababd524", + "stars": 1, + "display_name": "IoT simulator", + "description": "An IoT device simulator, simulating producers and consumers using the Eclipse Hono API", + "version": "0.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 415, + "high": 18, + "medium": 438, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1552953600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/ctron/iot-simulator-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 2, + "entity_id": 46 + }, + { + "Elastic": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "elastic", + "url": "https://quay.io/repository/kmamgain/elastic", + "popularity": 0.0 + }, + { + "name": "elastic", + "url": "https://quay.io/repository/yacis/elastic", + "popularity": 0.0 + }, + { + "name": "elastic", + "url": "https://quay.io/repository/akretion/elastic", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "elastic-cloud-eck", + "url": "https://quay.io/repository/operatorhubio/elastic-cloud-eck", + "popularity": 1630.0 + }, + { + "name": "elastic-curator", + "url": "https://quay.io/repository/uswitch/elastic-curator", + "popularity": 14.0 + }, + { + "name": "ibm-elastic-stack-operator", + "url": "https://quay.io/repository/opencloudio/ibm-elastic-stack-operator", + "popularity": 38.0 + }, + { + "name": "elastic-phenix-operator", + "url": "https://quay.io/repository/operatorhubio/elastic-phenix-operator", + "popularity": 44.0 + }, + { + "name": "assisted-events-scrape", + "url": "https://quay.io/repository/app-sre/assisted-events-scrape", + "popularity": 2443.0 + } + ] + }, + { + "operators": [ + { + "package_id": "b1aa6353-146c-477c-943e-5a5558b65dc3", + "name": "elastic-cloud-eck", + "normalized_name": "elastic-cloud-eck", + "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", + "stars": 13, + "display_name": "Elasticsearch (ECK) Operator", + "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", + "version": "2.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1657006653, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/elastic/cloud-on-k8s", + "container_images": [] + }, + { + "package_id": "cd293030-11ba-4efd-85eb-0c1a05019925", + "name": "elastic-phenix-operator", + "normalized_name": "elastic-phenix-operator", + "logo_image_id": "fb31853c-71b5-4340-9f99-2af66a102bef", + "stars": 0, + "display_name": "Elasticsearch Phenix Operator", + "description": "Manage elasticsearch indices, templates lifecycle (creation, update and delete)", + "version": "0.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 6, + "medium": 2, + "unknown": 2, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1616064300, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/Carrefour-Group/elastic-phenix-operator", + "container_images": [] + }, + { + "package_id": "8ead8d37-cba9-449e-a7df-ee5c0745564f", + "name": "nuxeo-operator", + "normalized_name": "nuxeo-operator", + "logo_image_id": "6540df42-6fe6-428e-b81b-8777c396d3b0", + "stars": 0, + "display_name": "Nuxeo Operator", + "description": "The Nuxeo Operator manages a Nuxeo cluster, integrating it\nwith backing services like Kafka, Elastic Search, MongoDB, and PostgreSQL\n", + "version": "0.7.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 2, + "medium": 1, + "unknown": 3, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1601078400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aceeric/nuxeo-operator", + "container_images": [ + "docker.io/appzygy/nuxeo-operator:0.7.1" + ] + }, + { + "package_id": "146e5627-361e-4c23-97d5-9cbe4febba81", + "name": "logging-operator", + "normalized_name": "logging-operator", + "logo_image_id": "0fb27181-3404-4379-a8fc-7ebdbf801340", + "stars": 3, + "display_name": "Logging Operator", + "description": "A golang-based operator to create and manage EFK (Elasticsearch, Fluentd, and Kibana) stack on Kubernetes.", + "version": "0.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1657182636, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/ot-container-kit/logging-operator", + "container_images": [ + "quay.io/opstree/logging-operator:v0.3.0" + ] + }, + { + "package_id": "126179cb-b91a-4c6f-a5bb-9cb5323bcd63", + "name": "ack-elasticache-controller", + "normalized_name": "ack-elasticache-controller", + "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", + "stars": 0, + "display_name": "AWS Controllers for Kubernetes - Amazon ElastiCache", + "description": "AWS ElastiCache controller is a service controller for managing ElastiCache resources in Kubernetes", + "version": "0.0.20", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656087442, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aws-controllers-k8s", + "container_images": [] + }, + { + "package_id": "097570ef-5856-4966-9cf9-1125451d0959", + "name": "esindex-operator", + "normalized_name": "esindex-operator", + "logo_image_id": "2f1b8acc-3b7d-46d8-847e-5a2be071f37f", + "stars": 0, + "display_name": "Elasticsearch Index Operator", + "description": "An operator for managing indices on elasticsearch services", + "version": "0.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 82, + "high": 8, + "medium": 43, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1565343638, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/esindex-operator", + "container_images": [] + }, + { + "package_id": "6afbd6a8-28d4-40f7-9f2e-0a7d34fe833e", + "name": "prometheus-exporter-operator", + "normalized_name": "prometheus-exporter-operator", + "logo_image_id": "8ab25f0a-48a9-48db-9082-31c5c161c106", + "stars": 0, + "display_name": "Prometheus Exporter Operator", + "description": "Operator to setup 3rd party prometheus exporters, with a collection of grafana dashboards", + "version": "0.2.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 88, + "high": 29, + "medium": 270, + "unknown": 1, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1591574400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/3scale/prometheus-exporter-operator", + "container_images": [ + "quay.io/3scale/prometheus-exporter-operator:v0.2.4" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 47 + }, + { + "ETAP License Manager": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/icp-identity-manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-identity-manager", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/icp-image-manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-image-manager", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cert-manager-controller", + "url": "https://quay.io/repository/jetstack/cert-manager-controller", + "popularity": 92535501.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 88998175.0 + }, + { + "name": "cert-manager-cainjector", + "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", + "popularity": 89089055.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "olm", + "url": "https://quay.io/repository/operator-framework/olm", + "popularity": 1306060.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 48 + }, + { + "ExamDiff": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 49 + }, + { + "F5 Secure Web Gateway Services": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/secure-gateway-client", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/ibmcom/secure-gateway-client", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "express-gateway", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 66, + "Docker_Url": "https://hub.docker.com/_/express-gateway", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "haproxy-ingress", + "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", + "popularity": 929588.0 + }, + { + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 353617.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 50 + }, + { + "FileMaker Pro": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "deployhub-pro", + "url": "https://quay.io/repository/deployhub/deployhub-pro", + "popularity": 0.0 + }, + { + "name": "msisensor-pro", + "url": "https://quay.io/repository/biocontainers/msisensor-pro", + "popularity": 92.0 + }, + { + "name": "rust", + "url": "https://quay.io/repository/instrumentisto/rust", + "popularity": 2946.0 + }, + { + "name": "artifactory-pro", + "url": "https://quay.io/repository/jfrog/artifactory-pro", + "popularity": 92.0 + }, + { + "name": "ambassador_pro", + "url": "https://quay.io/repository/datawire/ambassador_pro", + "popularity": 100.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 51 + }, + { + "FlexNet Manager Suite": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/icp-image-manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-image-manager", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/icp-identity-manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-identity-manager", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cert-manager-controller", + "url": "https://quay.io/repository/jetstack/cert-manager-controller", + "popularity": 92535501.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 88998175.0 + }, + { + "name": "cert-manager-cainjector", + "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", + "popularity": 89089055.0 + }, + { + "name": "cert-manager-acmesolver", + "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", + "popularity": 858875.0 + }, + { + "name": "olm", + "url": "https://quay.io/repository/operator-framework/olm", + "popularity": 1306060.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 52 + }, + { + "FTP Voyager": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "exonerate", + "url": "https://quay.io/repository/biocontainers/exonerate", + "popularity": 2120.0 + }, + { + "name": "apache-ftp", + "url": "https://quay.io/repository/fuse_qe/apache-ftp", + "popularity": 65.0 + }, + { + "name": "alpine-ftp-server-tls", + "url": "https://quay.io/repository/aminvakil/alpine-ftp-server-tls", + "popularity": 60.0 + }, + { + "name": "blast", + "url": "https://quay.io/repository/biocontainers/blast", + "popularity": 938.0 + }, + { + "name": "hisat2", + "url": "https://quay.io/repository/biocontainers/hisat2", + "popularity": 143.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 53 + }, + { + "Genymotion": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "genymotion", + "url": "https://quay.io/repository/alaska/genymotion", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "genymotion", + "url": "https://quay.io/repository/alaska/genymotion", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 54 + }, + { + "Google Chrome": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/chrome", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 42, + "Docker_Url": "https://hub.docker.com/r/kasmweb/chrome", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/chrome-flash", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/chrome-flash", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "chrome", + "url": "https://quay.io/repository/browsers/chrome", + "popularity": 57214.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "invidious", + "url": "https://quay.io/repository/invidious/invidious", + "popularity": 38116.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 55 + }, + { + "Greenplum DB": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "appdynamics/db-agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/appdynamics/db-agent", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "greenplum-for-kubernetes", + "url": "https://quay.io/repository/ktenzer/greenplum-for-kubernetes", + "popularity": 0.0 + }, + { + "name": "greenplum-operator", + "url": "https://quay.io/repository/ktenzer/greenplum-operator", + "popularity": 0.0 + }, + { + "name": "greenplum-operator", + "url": "https://quay.io/repository/shchan/greenplum-operator", + "popularity": 0.0 + }, + { + "name": "greenplum-for-kubernetes", + "url": "https://quay.io/repository/shchan/greenplum-for-kubernetes", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 56 + }, + { + "Hadoop": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/hadoop-config", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/hadoop-config", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/iop-hadoop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 12, + "Docker_Url": "https://hub.docker.com/r/ibmcom/iop-hadoop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/hadoop-base", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 9, + "Docker_Url": "https://hub.docker.com/r/rancher/hadoop-base", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "hadoop", + "url": "https://quay.io/repository/iguazio/hadoop", + "popularity": 0.0 + }, + { + "name": "hadoop", + "url": "https://quay.io/repository/lalyos/hadoop", + "popularity": 0.0 + }, + { + "name": "hadoop", + "url": "https://quay.io/repository/coreos/hadoop", + "popularity": 2.0 + }, + { + "name": "hadoop", + "url": "https://quay.io/repository/flysangel/hadoop", + "popularity": 201.0 + }, + { + "name": "hadoop", + "url": "https://quay.io/repository/falkonry/hadoop", + "popularity": 0.0 + }, + { + "name": "hadoop", + "url": "https://quay.io/repository/mcapitanio/hadoop", + "popularity": 0.0 + }, + { + "name": "hadoop", + "url": "https://quay.io/repository/flokkr/hadoop", + "popularity": 0.0 + }, + { + "name": "hadoop", + "url": "https://quay.io/repository/opaqnetworks/hadoop", + "popularity": 0.0 + }, + { + "name": "hadoop", + "url": "https://quay.io/repository/tamr/hadoop", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "origin-metering-hadoop", + "url": "https://quay.io/repository/openshift/origin-metering-hadoop", + "popularity": 4172.0 + }, + { + "name": "hadoop-test", + "url": "https://quay.io/repository/signalfx/hadoop-test", + "popularity": 234.0 + }, + { + "name": "hadoop-namenode", + "url": "https://quay.io/repository/falkonry/hadoop-namenode", + "popularity": 108.0 + }, + { + "name": "hadoop-datanode", + "url": "https://quay.io/repository/falkonry/hadoop-datanode", + "popularity": 52.0 + }, + { + "name": "hadoop", + "url": "https://quay.io/repository/flysangel/hadoop", + "popularity": 201.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 57 + }, + { + "HP aC++ compiler": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "checkpoints-compiler", + "url": "https://quay.io/repository/sharkofmirkwood/checkpoints-compiler", + "popularity": 0.0 + }, + { + "name": "tensorflow-cross-compiler", + "url": "https://quay.io/repository/draft/tensorflow-cross-compiler", + "popularity": 0.0 + }, + { + "name": "compiler", + "url": "https://quay.io/repository/serulian/compiler", + "popularity": 0.0 + }, + { + "name": "rust-esp", + "url": "https://quay.io/repository/ctron/rust-esp", + "popularity": 6.0 + }, + { + "name": "pdftk", + "url": "https://quay.io/repository/pdftk/pdftk", + "popularity": 25.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 58 + }, + { + "HP C/ANSI C compiler": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "checkpoints-compiler", + "url": "https://quay.io/repository/sharkofmirkwood/checkpoints-compiler", + "popularity": 0.0 + }, + { + "name": "ansi-sdk", + "url": "https://quay.io/repository/theloeki/ansi-sdk", + "popularity": 1.0 + }, + { + "name": "ansi-builder", + "url": "https://quay.io/repository/exd_infra_plts_cip/ansi-builder", + "popularity": 2.0 + }, + { + "name": "tensorflow-cross-compiler", + "url": "https://quay.io/repository/draft/tensorflow-cross-compiler", + "popularity": 0.0 + }, + { + "name": "rust-esp", + "url": "https://quay.io/repository/ctron/rust-esp", + "popularity": 6.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 59 + }, + { + "HP Operations Orchestration": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "mirantis/operations-ui", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/mirantis/operations-ui", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/datapower-operations-dashboard", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 12, + "Docker_Url": "https://hub.docker.com/r/ibmcom/datapower-operations-dashboard", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "operator-generic", + "url": "https://quay.io/repository/cilium/operator-generic", + "popularity": 159557.0 + }, + { + "name": "hubble-relay", + "url": "https://quay.io/repository/cilium/hubble-relay", + "popularity": 135390.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/cilium/operator", + "popularity": 77983.0 + }, + { + "name": "operator-aws", + "url": "https://quay.io/repository/cilium/operator-aws", + "popularity": 30335.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 60 + }, + { + "HP Server Automation": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/server-base", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/server-base", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/server-nomad", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ocp-release", + "url": "https://quay.io/repository/openshift-release-dev/ocp-release", + "popularity": 39354632.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 61 + }, + { + "IBM BigFix Platform": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 62 + }, + { + "IBM Business Monitor": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 63 + }, + { + "IBM Business Process Manager": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cert-manager-controller", + "url": "https://quay.io/repository/jetstack/cert-manager-controller", + "popularity": 92535501.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 88998175.0 + }, + { + "name": "cert-manager-cainjector", + "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", + "popularity": 89089055.0 + }, + { + "name": "cert-manager-acmesolver", + "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", + "popularity": 858875.0 + }, + { + "name": "cert-manager-ctl", + "url": "https://quay.io/repository/jetstack/cert-manager-ctl", + "popularity": 637570.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 64 + }, + { + "IBM Content Manager OnDemand": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cert-manager-controller", + "url": "https://quay.io/repository/jetstack/cert-manager-controller", + "popularity": 92535501.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 88998175.0 + }, + { + "name": "cert-manager-cainjector", + "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", + "popularity": 89089055.0 + }, + { + "name": "okd-content", + "url": "https://quay.io/repository/openshift/okd-content", + "popularity": 9422045.0 + }, + { + "name": "cert-manager-acmesolver", + "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", + "popularity": 858875.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 65 + }, + { + "IBM FileNet P8 Platform": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 66 + }, + { + "IBM InfoSphere DataStage": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 67 + }, + { + "IBM Integration Bus": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 68 + }, + { + "IBM License Metric Tool": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 69 + }, + { + "IBM Maximo": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 70 + }, + { + "IBM Migration Utility": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 71 + }, + { + "IBM Mobile Foundation": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 72 + }, + { + "IBM Operational Decision Manager": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-watson-ai-manager-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-watson-ai-manager-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cert-manager-controller", + "url": "https://quay.io/repository/jetstack/cert-manager-controller", + "popularity": 92535501.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 88998175.0 + }, + { + "name": "cert-manager-cainjector", + "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", + "popularity": 89089055.0 + }, + { + "name": "cert-manager-acmesolver", + "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", + "popularity": 858875.0 + }, + { + "name": "cert-manager-ctl", + "url": "https://quay.io/repository/jetstack/cert-manager-ctl", + "popularity": 637570.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 73 + }, + { + "IBM Spectrum Scale": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [ + { + "package_id": "25527a7e-74b4-4129-975d-8b1e42e44327", + "name": "ibm-spectrum-scale-csi-operator", + "normalized_name": "ibm-spectrum-scale-csi-operator", + "logo_image_id": "a4a6430a-5c0a-47da-9333-b88782d59d39", + "stars": 0, + "display_name": "IBM Spectrum Scale CSI Plugin Operator", + "description": "An operator for deploying and managing the IBM Spectrum Scale CSI Driver.", + "version": "2.6.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656309636, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/ibm-spectrum-scale-csi/", + "container_images": [ + "quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 74 + }, + { + "IBM Tivoli Asset Management": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 75 + }, + { + "IBM Tivoli Composite Application Manager": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cert-manager-controller", + "url": "https://quay.io/repository/jetstack/cert-manager-controller", + "popularity": 92535501.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 88998175.0 + }, + { + "name": "cert-manager-cainjector", + "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", + "popularity": 89089055.0 + }, + { + "name": "cert-manager-acmesolver", + "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", + "popularity": 858875.0 + }, + { + "name": "cert-manager-ctl", + "url": "https://quay.io/repository/jetstack/cert-manager-ctl", + "popularity": 637570.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 76 + }, + { + "IBM Tivoli Monitoring": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 77 + }, + { + "IBM Tivoli Storage Manager": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cert-manager-controller", + "url": "https://quay.io/repository/jetstack/cert-manager-controller", + "popularity": 92535501.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 88998175.0 + }, + { + "name": "cert-manager-cainjector", + "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", + "popularity": 89089055.0 + }, + { + "name": "cert-manager-acmesolver", + "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", + "popularity": 858875.0 + }, + { + "name": "cert-manager-ctl", + "url": "https://quay.io/repository/jetstack/cert-manager-ctl", + "popularity": 637570.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 78 + }, + { + "IBM Tivoli Workload Scheduler": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/scheduler", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/rancher/scheduler", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "workload-agent", + "url": "https://quay.io/repository/sysdig/workload-agent", + "popularity": 242641.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 79 + }, + { + "IBM WebSphere Business Integration Adaptor": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "websphere-liberty", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 286, + "Docker_Url": "https://hub.docker.com/_/websphere-liberty", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/websphere-liberty", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 22, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/websphere-traditional", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 203, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-traditional", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/websphere-portal", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-portal", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 80 + }, + { + "IBM Websphere MQ": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/mq", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 130, + "Docker_Url": "https://hub.docker.com/r/ibmcom/mq", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator-bundle", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator-bundle", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 81 + }, + { + "IBM WebSphere MQ Telemetry": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "docker/telemetry", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/docker/telemetry", + "OS": [ + { + "Class": "OS", + "Architecture": "", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/mq", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 130, + "Docker_Url": "https://hub.docker.com/r/ibmcom/mq", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 82 + }, + { + "IBM WebSphere Transformation Extender": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/websphere-liberty", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 22, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "websphere-liberty", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 286, + "Docker_Url": "https://hub.docker.com/_/websphere-liberty", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 83 + }, + { + "IMS DB": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "appdynamics/db-agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/appdynamics/db-agent", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ims-ee", + "url": "https://quay.io/repository/adn1107/ims-ee", + "popularity": 0.0 + }, + { + "name": "ims-kaas", + "url": "https://quay.io/repository/samsung_cnct/ims-kaas", + "popularity": 0.0 + }, + { + "name": "ims", + "url": "https://quay.io/repository/2020jyc/ims", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 84 + }, + { + "Info-ZIP": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "argo-hub-workflows-codefresh-csdp-versions-0.0.6-images-image-enricher-git-info", + "url": "https://quay.io/repository/codefreshplugins/argo-hub-workflows-codefresh-csdp-versions-0.0.6-images-image-enricher-git-info", + "popularity": 92575.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "operator-generic", + "url": "https://quay.io/repository/cilium/operator-generic", + "popularity": 159557.0 + }, + { + "name": "hubble-relay", + "url": "https://quay.io/repository/cilium/hubble-relay", + "popularity": 135390.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/cilium/operator", + "popularity": 77983.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 85 + }, + { + "Infobright Community Edition": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "community-e2e-images", + "url": "https://quay.io/repository/openshift/community-e2e-images", + "popularity": 4658999.0 + }, + { + "name": "community-e2e-images", + "url": "https://quay.io/repository/multi-arch/community-e2e-images", + "popularity": 250944.0 + }, + { + "name": "upstream-community-operators", + "url": "https://quay.io/repository/operator-framework/upstream-community-operators", + "popularity": 22909.0 + }, + { + "name": "teleport", + "url": "https://quay.io/repository/gravitational/teleport", + "popularity": 157544.0 + }, + { + "name": "hedgedoc", + "url": "https://quay.io/repository/hedgedoc/hedgedoc", + "popularity": 90093.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 86 + }, + { + "Informatica PowerCenter": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 87 + }, + { + "Ingres": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [ + { + "package_id": "fbd84364-fffe-4db3-b128-46376f31a9d6", + "name": "kong", + "normalized_name": "kong", + "logo_image_id": "42089cb4-2db4-4466-b585-5a2919572083", + "stars": 1, + "display_name": "Kong Operator", + "description": "The world\u2019s most popular open source API gateway. Built for multi-cloud and hybrid, optimized for microservices and distributed architectures.", + "version": "0.9.0", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1596643620, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/kong/kong-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 2, + "entity_id": 88 + }, + { + "JBoss Enterprise Service Bus": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/enterprise", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/rancher/enterprise", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "grafana/enterprise-metrics", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-metrics", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "grafana/enterprise-logs", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-logs", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "grafana/enterprise-traces", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-traces", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/service-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/bitnami/service-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "common-service-operator", + "url": "https://quay.io/repository/opencloudio/common-service-operator", + "popularity": 317405.0 + }, + { + "name": "service-catalog", + "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", + "popularity": 330506.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 89 + }, + { + "Jenkins": [ + { + "dockerhub_exact_images": [ + { + "name": "jenkins", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 5505, + "Docker_Url": "https://hub.docker.com/_/jenkins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/jenkins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 53, + "Docker_Url": "https://hub.docker.com/r/bitnami/jenkins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "rancher/jenkins-jenkins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/rancher/jenkins-jenkins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/jenkins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 53, + "Docker_Url": "https://hub.docker.com/r/bitnami/jenkins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "jenkins", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 5505, + "Docker_Url": "https://hub.docker.com/_/jenkins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/jenkins-slave", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/jenkins-slave", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "jenkins", + "url": "https://quay.io/repository/cdis/jenkins", + "popularity": 20978.0 + }, + { + "name": "jenkins", + "url": "https://quay.io/repository/hany_mostafa/jenkins", + "popularity": 3884.0 + }, + { + "name": "jenkins", + "url": "https://quay.io/repository/cloudifire/jenkins", + "popularity": 11.0 + }, + { + "name": "jenkins", + "url": "https://quay.io/repository/h3nrique/jenkins", + "popularity": 10066.0 + } + ], + "quay_top_images": [ + { + "name": "origin-jenkins", + "url": "https://quay.io/repository/openshift/origin-jenkins", + "popularity": 60692.0 + }, + { + "name": "origin-jenkins-agent-base", + "url": "https://quay.io/repository/openshift/origin-jenkins-agent-base", + "popularity": 22801.0 + }, + { + "name": "jenkins", + "url": "https://quay.io/repository/cdis/jenkins", + "popularity": 20978.0 + }, + { + "name": "jenkins", + "url": "https://quay.io/repository/h3nrique/jenkins", + "popularity": 10066.0 + }, + { + "name": "billing-sidecar", + "url": "https://quay.io/repository/sdase/billing-sidecar", + "popularity": 183418.0 + } + ] + }, + { + "operators": [ + { + "package_id": "68ea4cd2-1211-4c7e-8a88-b22617842700", + "name": "jenkins-operator", + "normalized_name": "jenkins-operator", + "logo_image_id": "0715a199-cc45-4ef0-ad13-069266cb17d1", + "stars": 1, + "display_name": "Jenkins Operator", + "description": "Kubernetes native operator which fully manages Jenkins on Kubernetes.", + "version": "0.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 2, + "high": 13, + "medium": 11, + "unknown": 4, + "critical": 1 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525859, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/jenkinsci/kubernetes-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 2, + "entity_id": 90 + }, + { + "joinIT": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 91 + }, + { + "LifeFlow": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 92 + }, + { + "Lotus Notes": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prison-case-notes-to-probation", + "url": "https://quay.io/repository/hmpps/prison-case-notes-to-probation", + "popularity": 28262.0 + }, + { + "name": "memcached", + "url": "https://quay.io/repository/jitesoft/memcached", + "popularity": 52903.0 + }, + { + "name": "netbox", + "url": "https://quay.io/repository/netboxcommunity/netbox", + "popularity": 12769.0 + }, + { + "name": "signalilo", + "url": "https://quay.io/repository/vshn/signalilo", + "popularity": 1317.0 + }, + { + "name": "kie-server-showcase", + "url": "https://quay.io/repository/kiegroup/kie-server-showcase", + "popularity": 661.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 93 + }, + { + "MaaS360": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 94 + }, + { + "Malwarebytes Anti-Malware": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cluster-image-scanner-scan-malware", + "url": "https://quay.io/repository/sdase/cluster-image-scanner-scan-malware", + "popularity": 1916.0 + }, + { + "name": "sandfly-rabbit", + "url": "https://quay.io/repository/sandfly/sandfly-rabbit", + "popularity": 14.0 + }, + { + "name": "sandfly-server-mgmt", + "url": "https://quay.io/repository/sandfly/sandfly-server-mgmt", + "popularity": 21.0 + }, + { + "name": "sandfly-server", + "url": "https://quay.io/repository/sandfly/sandfly-server", + "popularity": 14.0 + }, + { + "name": "sandfly-node", + "url": "https://quay.io/repository/sandfly/sandfly-node", + "popularity": 8.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 95 + }, + { + "ManageEngine ADSelfService Plus": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "contour-plus", + "url": "https://quay.io/repository/cybozu/contour-plus", + "popularity": 4286.0 + }, + { + "name": "prinseq-plus-plus", + "url": "https://quay.io/repository/biocontainers/prinseq-plus-plus", + "popularity": 4.0 + }, + { + "name": "signalilo", + "url": "https://quay.io/repository/vshn/signalilo", + "popularity": 1317.0 + }, + { + "name": "dep-scan", + "url": "https://quay.io/repository/appthreat/dep-scan", + "popularity": 606.0 + }, + { + "name": "circleci-helm", + "url": "https://quay.io/repository/cmproductions/circleci-helm", + "popularity": 20.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 96 + }, + { + "MarkLogic DB": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "appdynamics/db-agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/appdynamics/db-agent", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 97 + }, + { + "Memcached": [ + { + "dockerhub_exact_images": [ + { + "name": "memcached", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1921, + "Docker_Url": "https://hub.docker.com/_/memcached", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/memcached", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 24, + "Docker_Url": "https://hub.docker.com/r/bitnami/memcached", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ubuntu/memcached", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ubuntu/memcached", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "ubuntu/memcached", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ubuntu/memcached", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/memcached", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 24, + "Docker_Url": "https://hub.docker.com/r/bitnami/memcached", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "memcached", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1921, + "Docker_Url": "https://hub.docker.com/_/memcached", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/memcached-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/memcached-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/memcached-exporter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/memcached-exporter", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "memcached", + "url": "https://quay.io/repository/jitesoft/memcached", + "popularity": 52903.0 + }, + { + "name": "memcached", + "url": "https://quay.io/repository/factory2/memcached", + "popularity": 9969.0 + }, + { + "name": "memcached", + "url": "https://quay.io/repository/exd-guild-distribution/memcached", + "popularity": 4201.0 + }, + { + "name": "memcached", + "url": "https://quay.io/repository/cybozu/memcached", + "popularity": 1773.0 + }, + { + "name": "memcached", + "url": "https://quay.io/repository/openstack.kolla/memcached", + "popularity": 1091.0 + }, + { + "name": "memcached", + "url": "https://quay.io/repository/redhat-aqe/memcached", + "popularity": 693.0 + } + ], + "quay_top_images": [ + { + "name": "memcached-exporter", + "url": "https://quay.io/repository/prometheus/memcached-exporter", + "popularity": 65896.0 + }, + { + "name": "memcached", + "url": "https://quay.io/repository/jitesoft/memcached", + "popularity": 52903.0 + }, + { + "name": "memcached", + "url": "https://quay.io/repository/factory2/memcached", + "popularity": 9969.0 + }, + { + "name": "memcached", + "url": "https://quay.io/repository/exd-guild-distribution/memcached", + "popularity": 4201.0 + }, + { + "name": "memcached-operator", + "url": "https://quay.io/repository/schamol/memcached-operator", + "popularity": 1967.0 + } + ] + }, + { + "operators": [ + { + "package_id": "6afbd6a8-28d4-40f7-9f2e-0a7d34fe833e", + "name": "prometheus-exporter-operator", + "normalized_name": "prometheus-exporter-operator", + "logo_image_id": "8ab25f0a-48a9-48db-9082-31c5c161c106", + "stars": 0, + "display_name": "Prometheus Exporter Operator", + "description": "Operator to setup 3rd party prometheus exporters, with a collection of grafana dashboards", + "version": "0.2.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 88, + "high": 29, + "medium": 270, + "unknown": 1, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1591574400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/3scale/prometheus-exporter-operator", + "container_images": [ + "quay.io/3scale/prometheus-exporter-operator:v0.2.4" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 98 + }, + { + "Microsoft Access": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/verify-access", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 7, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/verify-access-postgresql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-postgresql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/verify-access-openldap", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-openldap", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/verify-access-dsc", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-dsc", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/verify-access-wrp", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-wrp", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 117024.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "memcached-exporter", + "url": "https://quay.io/repository/prometheus/memcached-exporter", + "popularity": 65896.0 + }, + { + "name": "prometheus-nginxlog-exporter", + "url": "https://quay.io/repository/martinhelmich/prometheus-nginxlog-exporter", + "popularity": 63491.0 + }, + { + "name": "chart-testing", + "url": "https://quay.io/repository/helmpack/chart-testing", + "popularity": 37818.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 99 + }, + { + "Microsoft BizTalk Adapters for Host Systems": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "rapid-response-host-component", + "url": "https://quay.io/repository/sysdig/rapid-response-host-component", + "popularity": 820286.0 + }, + { + "name": "host-analyzer", + "url": "https://quay.io/repository/sysdig/host-analyzer", + "popularity": 244302.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "ceph", + "url": "https://quay.io/repository/ceph/ceph", + "popularity": 335511.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 100 + }, + { + "Microsoft Dynamics AX": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "velero-plugin-for-microsoft-azure", + "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", + "popularity": 4220.0 + }, + { + "name": "microsoft-edge-stable", + "url": "https://quay.io/repository/browser/microsoft-edge-stable", + "popularity": 669.0 + }, + { + "name": "che-dotnet-2.2", + "url": "https://quay.io/repository/eclipse/che-dotnet-2.2", + "popularity": 561.0 + }, + { + "name": "che-dotnet-3.1", + "url": "https://quay.io/repository/eclipse/che-dotnet-3.1", + "popularity": 552.0 + }, + { + "name": "dotnet-sonar", + "url": "https://quay.io/repository/rockcentral/dotnet-sonar", + "popularity": 200.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 101 + }, + { + "Microsoft Endpoint Configuration Manager": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cert-manager-controller", + "url": "https://quay.io/repository/jetstack/cert-manager-controller", + "popularity": 92535501.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 88998175.0 + }, + { + "name": "cert-manager-cainjector", + "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", + "popularity": 89089055.0 + }, + { + "name": "cert-manager-acmesolver", + "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", + "popularity": 858875.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 102 + }, + { + "Microsoft Excel": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "velero-plugin-for-microsoft-azure", + "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", + "popularity": 4220.0 + }, + { + "name": "microsoft-edge-stable", + "url": "https://quay.io/repository/browser/microsoft-edge-stable", + "popularity": 669.0 + }, + { + "name": "che-dotnet-2.2", + "url": "https://quay.io/repository/eclipse/che-dotnet-2.2", + "popularity": 561.0 + }, + { + "name": "che-dotnet-3.1", + "url": "https://quay.io/repository/eclipse/che-dotnet-3.1", + "popularity": 552.0 + }, + { + "name": "dotnet-sonar", + "url": "https://quay.io/repository/rockcentral/dotnet-sonar", + "popularity": 200.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 103 + }, + { + "Microsoft Exchange Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/server-nomad", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 104 + }, + { + "Microsoft Forefront Identity Manager": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/icp-identity-manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-identity-manager", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/icp-identity-manager-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-identity-manager-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/identity-brokerage", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/identity-brokerage", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cert-manager-controller", + "url": "https://quay.io/repository/jetstack/cert-manager-controller", + "popularity": 92535501.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 88998175.0 + }, + { + "name": "cert-manager-cainjector", + "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", + "popularity": 89089055.0 + }, + { + "name": "cert-manager-acmesolver", + "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", + "popularity": 858875.0 + }, + { + "name": "olm", + "url": "https://quay.io/repository/operator-framework/olm", + "popularity": 1306060.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 105 + }, + { + "Microsoft InfoPath": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "velero-plugin-for-microsoft-azure", + "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", + "popularity": 4220.0 + }, + { + "name": "microsoft-edge-stable", + "url": "https://quay.io/repository/browser/microsoft-edge-stable", + "popularity": 669.0 + }, + { + "name": "che-dotnet-2.2", + "url": "https://quay.io/repository/eclipse/che-dotnet-2.2", + "popularity": 561.0 + }, + { + "name": "che-dotnet-3.1", + "url": "https://quay.io/repository/eclipse/che-dotnet-3.1", + "popularity": 552.0 + }, + { + "name": "dotnet-sonar", + "url": "https://quay.io/repository/rockcentral/dotnet-sonar", + "popularity": 200.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 106 + }, + { + "Microsoft Internet Explorer": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "velero-plugin-for-microsoft-azure", + "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", + "popularity": 4220.0 + }, + { + "name": "microsoft-edge-stable", + "url": "https://quay.io/repository/browser/microsoft-edge-stable", + "popularity": 669.0 + }, + { + "name": "pso-explorer", + "url": "https://quay.io/repository/purestorage/pso-explorer", + "popularity": 62.0 + }, + { + "name": "bitcoin-explorer", + "url": "https://quay.io/repository/hirosystems/bitcoin-explorer", + "popularity": 126.0 + }, + { + "name": "explorer", + "url": "https://quay.io/repository/jkunstle/explorer", + "popularity": 555.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 107 + }, + { + "Microsoft ISA Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 108 + }, + { + "Microsoft MQ": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/mq", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 130, + "Docker_Url": "https://hub.docker.com/r/ibmcom/mq", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ace-mq", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 18, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ace-mq", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "velero-plugin-for-microsoft-azure", + "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", + "popularity": 4220.0 + }, + { + "name": "microsoft-edge-stable", + "url": "https://quay.io/repository/browser/microsoft-edge-stable", + "popularity": 669.0 + }, + { + "name": "che-dotnet-2.2", + "url": "https://quay.io/repository/eclipse/che-dotnet-2.2", + "popularity": 561.0 + }, + { + "name": "che-dotnet-3.1", + "url": "https://quay.io/repository/eclipse/che-dotnet-3.1", + "popularity": 552.0 + }, + { + "name": "dotnet-sonar", + "url": "https://quay.io/repository/rockcentral/dotnet-sonar", + "popularity": 200.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 109 + }, + { + "Microsoft System Center Endpoint Protection": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/system-upgrade-controller", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/rancher/system-upgrade-controller", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/system-agent-installer-rancher", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/system-agent-installer-rancher", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/system-agent-installer-k3s", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/system-agent-installer-k3s", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/system-agent-installer-rke2", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/system-agent-installer-rke2", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.17763.3046", + "Type": "windows", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.20348.768", + "Type": "windows", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ceph", + "url": "https://quay.io/repository/ceph/ceph", + "popularity": 335511.0 + }, + { + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 255406.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 110 + }, + { + "Microsoft Visual Studio": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "apicurio-studio-api", + "url": "https://quay.io/repository/apicurio/apicurio-studio-api", + "popularity": 14648.0 + }, + { + "name": "apicurio-studio-ui", + "url": "https://quay.io/repository/apicurio/apicurio-studio-ui", + "popularity": 10780.0 + }, + { + "name": "apicurio-studio-ws", + "url": "https://quay.io/repository/apicurio/apicurio-studio-ws", + "popularity": 6975.0 + }, + { + "name": "visual-qontract", + "url": "https://quay.io/repository/app-sre/visual-qontract", + "popularity": 4012.0 + }, + { + "name": "velero-plugin-for-microsoft-azure", + "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", + "popularity": 4220.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 111 + }, + { + "Microsoft Web Deploy": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "cimg/deploy", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/cimg/deploy", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "common-web-ui", + "url": "https://quay.io/repository/opencloudio/common-web-ui", + "popularity": 353182.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "light-k8s-deploy-tools", + "url": "https://quay.io/repository/presslabs/light-k8s-deploy-tools", + "popularity": 31998.0 + }, + { + "name": "windup-web-openshift", + "url": "https://quay.io/repository/windupeng/windup-web-openshift", + "popularity": 17107.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 112 + }, + { + "Microsoft Web Farm Framework": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "common-web-ui", + "url": "https://quay.io/repository/opencloudio/common-web-ui", + "popularity": 353182.0 + }, + { + "name": "olm", + "url": "https://quay.io/repository/operator-framework/olm", + "popularity": 1306060.0 + }, + { + "name": "windup-web-openshift", + "url": "https://quay.io/repository/windupeng/windup-web-openshift", + "popularity": 17107.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "nginx-116-centos7", + "url": "https://quay.io/repository/centos7/nginx-116-centos7", + "popularity": 158502.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 113 + }, + { + "Microsoft Web Platform Installer": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "common-web-ui", + "url": "https://quay.io/repository/opencloudio/common-web-ui", + "popularity": 353182.0 + }, + { + "name": "icp-platform-auth", + "url": "https://quay.io/repository/opencloudio/icp-platform-auth", + "popularity": 65621.0 + }, + { + "name": "ibm-platform-api-operator", + "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", + "popularity": 47566.0 + }, + { + "name": "cni-installer", + "url": "https://quay.io/repository/polargeospatialcenter/cni-installer", + "popularity": 150002.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 114 + }, + { + "Model Driven Workflow": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "workflow-controller", + "url": "https://quay.io/repository/argoproj/workflow-controller", + "popularity": 1196920.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "kubecost-cost-model", + "url": "https://quay.io/repository/kubecost1/kubecost-cost-model", + "popularity": 15046.0 + }, + { + "name": "model-api-nginx", + "url": "https://quay.io/repository/domino/model-api-nginx", + "popularity": 2726.0 + }, + { + "name": "workflow-controller", + "url": "https://quay.io/repository/codefresh/workflow-controller", + "popularity": 2760.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 115 + }, + { + "MongoDB": [ + { + "dockerhub_exact_images": [ + { + "name": "bitnami/mongodb", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 184, + "Docker_Url": "https://hub.docker.com/r/bitnami/mongodb", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/mongodb", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/mongodb", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "ibmcom/mongodb", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/mongodb", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/mongodb", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 184, + "Docker_Url": "https://hub.docker.com/r/bitnami/mongodb", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/mongodb-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/mongodb-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/mongodb-exporter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/bitnami/mongodb-exporter", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "mongodb-agent", + "url": "https://quay.io/repository/mongodb/mongodb-agent", + "popularity": 275669.0 + }, + { + "name": "mongodb-enterprise-database", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", + "popularity": 118389.0 + }, + { + "name": "mongodb-enterprise-ops-manager", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", + "popularity": 142619.0 + }, + { + "name": "mongodb-36-centos7", + "url": "https://quay.io/repository/centos7/mongodb-36-centos7", + "popularity": 100314.0 + }, + { + "name": "mongodb-kubernetes-operator-version-upgrade-post-start-hook", + "url": "https://quay.io/repository/mongodb/mongodb-kubernetes-operator-version-upgrade-post-start-hook", + "popularity": 148136.0 + } + ] + }, + { + "operators": [ + { + "package_id": "f4d4dd30-8d96-4700-9f0f-4757c07376a9", + "name": "mongodb-enterprise", + "normalized_name": "mongodb-enterprise", + "logo_image_id": "0930bd99-d098-4bd2-a6b6-de5dac7d5d2d", + "stars": 0, + "display_name": "MongoDB Enterprise Operator", + "description": "The MongoDB Enterprise Kubernetes Operator enables easy deploys of MongoDB into Kubernetes clusters, using our management, monitoring and backup platforms, Ops Manager and Cloud Manager.", + "version": "1.16.2", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 23, + "high": 0, + "medium": 32, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656408634, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/mongodb/mongodb-enterprise-kubernetes", + "container_images": [ + "quay.io/mongodb/mongodb-enterprise-operator-ubi:1.16.2" + ] + }, + { + "package_id": "4ee2dcf6-71a1-483e-92da-9a73558e5a59", + "name": "mongodb-operator", + "normalized_name": "mongodb-operator", + "logo_image_id": "6caecf02-bf01-4f32-bcb5-c585ea2fdd80", + "stars": 0, + "display_name": "MongoDB Operator", + "description": "A golang based operator to create and manage MongoDB standalone setup and cluster setup", + "version": "0.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1649241035, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/ot-container-kit/mongodb-operator", + "container_images": [ + "quay.io/opstree/mongodb-operator:v0.3.0" + ] + }, + { + "package_id": "dc5c2a57-efa7-4815-8301-bfc34317b158", + "name": "mongodb-atlas-kubernetes", + "normalized_name": "mongodb-atlas-kubernetes", + "logo_image_id": "0930bd99-d098-4bd2-a6b6-de5dac7d5d2d", + "stars": 0, + "display_name": "MongoDB Atlas Operator", + "description": "The MongoDB Atlas Kubernetes Operator enables easy management of Clusters in MongoDB Atlas", + "version": "1.0.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 33, + "high": 1, + "medium": 44, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1653075033, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [] + }, + { + "package_id": "9017b9cb-a997-498e-90a4-918f2fbe68c9", + "name": "percona-server-mongodb-operator", + "normalized_name": "percona-server-mongodb-operator", + "logo_image_id": "466386f6-1a5f-4e39-8f07-028e738059d3", + "stars": 1, + "display_name": "Percona Distribution for MongoDB Operator", + "description": "Percona Distribution for MongoDB Operator automates the creation, modification, or deletion of items in your Percona Server for MongoDB environment", + "version": "1.11.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 1, + "medium": 1, + "unknown": 2, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1640860526, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/percona/percona-server-mongodb-operator", + "container_images": [] + }, + { + "package_id": "8ead8d37-cba9-449e-a7df-ee5c0745564f", + "name": "nuxeo-operator", + "normalized_name": "nuxeo-operator", + "logo_image_id": "6540df42-6fe6-428e-b81b-8777c396d3b0", + "stars": 0, + "display_name": "Nuxeo Operator", + "description": "The Nuxeo Operator manages a Nuxeo cluster, integrating it\nwith backing services like Kafka, Elastic Search, MongoDB, and PostgreSQL\n", + "version": "0.7.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 2, + "medium": 1, + "unknown": 3, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1601078400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aceeric/nuxeo-operator", + "container_images": [ + "docker.io/appzygy/nuxeo-operator:0.7.1" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 116 + }, + { + "Mozilla Firefox": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/firefox", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 18, + "Docker_Url": "https://hub.docker.com/r/kasmweb/firefox", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/firefox-flash", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/firefox-flash", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/firefox-mobile", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 7, + "Docker_Url": "https://hub.docker.com/r/kasmweb/firefox-mobile", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "selenium-standalone-firefox-debug", + "url": "https://quay.io/repository/app-sre/selenium-standalone-firefox-debug", + "popularity": 4023.0 + }, + { + "name": "firefox", + "url": "https://quay.io/repository/browsers/firefox", + "popularity": 18818.0 + }, + { + "name": "firefox", + "url": "https://quay.io/repository/startx/firefox", + "popularity": 8914.0 + }, + { + "name": "firefox-mozilla-build", + "url": "https://quay.io/repository/browser/firefox-mozilla-build", + "popularity": 1926.0 + }, + { + "name": "rust", + "url": "https://quay.io/repository/instrumentisto/rust", + "popularity": 2946.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 117 + }, + { + "MQ Client": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/mq", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 130, + "Docker_Url": "https://hub.docker.com/r/ibmcom/mq", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/minio-client", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/bitnami/minio-client", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "percona/pmm-client", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/percona/pmm-client", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ace-mq", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 18, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ace-mq", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "nfs-client-provisioner", + "url": "https://quay.io/repository/external_storage/nfs-client-provisioner", + "popularity": 754210.0 + }, + { + "name": "nfs-client-provisioner-arm", + "url": "https://quay.io/repository/external_storage/nfs-client-provisioner-arm", + "popularity": 86392.0 + }, + { + "name": "oc-client-test", + "url": "https://quay.io/repository/vishwanath_puranik/oc-client-test", + "popularity": 39222.0 + }, + { + "name": "defectdojo-client", + "url": "https://quay.io/repository/sdase/defectdojo-client", + "popularity": 5805.0 + }, + { + "name": "kubernetes-vault-client", + "url": "https://quay.io/repository/travelaudience/kubernetes-vault-client", + "popularity": 9887.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 118 + }, + { + "MS Office 365": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "docker-atlassian-jira-service-desk", + "url": "https://quay.io/repository/ukhomeofficedigital/docker-atlassian-jira-service-desk", + "popularity": 33.0 + }, + { + "name": "ckan", + "url": "https://quay.io/repository/ukhomeofficedigital/ckan", + "popularity": 0.0 + }, + { + "name": "mbop", + "url": "https://quay.io/repository/cloudservices/mbop", + "popularity": 112.0 + }, + { + "name": "peframe", + "url": "https://quay.io/repository/cincan/peframe", + "popularity": 4.0 + }, + { + "name": "milkcartonpackaging", + "url": "https://quay.io/repository/sergioaustin/milkcartonpackaging", + "popularity": 2.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 119 + }, + { + "MS SQL Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "gooddata/sql-executor", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 120 + }, + { + "MS SQL Server Compact": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "gooddata/sql-executor", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 121 + }, + { + "MySQL": [ + { + "dockerhub_exact_images": [ + { + "name": "mysql", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 12857, + "Docker_Url": "https://hub.docker.com/_/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 26, + "Docker_Url": "https://hub.docker.com/r/circleci/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 72, + "Docker_Url": "https://hub.docker.com/r/bitnami/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ubuntu/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 34, + "Docker_Url": "https://hub.docker.com/r/ubuntu/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "cimg/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/cimg/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "google/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 21, + "Docker_Url": "https://hub.docker.com/r/google/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + }, + { + "name": "mirantis/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/mirantis/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "mirantis/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/mirantis/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "google/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 21, + "Docker_Url": "https://hub.docker.com/r/google/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + }, + { + "name": "ubuntu/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 34, + "Docker_Url": "https://hub.docker.com/r/ubuntu/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "cimg/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/cimg/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 72, + "Docker_Url": "https://hub.docker.com/r/bitnami/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "mysql", + "url": "https://quay.io/repository/openshifttest/mysql", + "popularity": 14939.0 + }, + { + "name": "mysql", + "url": "https://quay.io/repository/gauravkumar9130/mysql", + "popularity": 13.0 + }, + { + "name": "mysql", + "url": "https://quay.io/repository/prsurve/mysql", + "popularity": 6657.0 + }, + { + "name": "mysql", + "url": "https://quay.io/repository/cybozu/mysql", + "popularity": 4676.0 + }, + { + "name": "mysql", + "url": "https://quay.io/repository/hazelcast_cloud/mysql", + "popularity": 2013.0 + }, + { + "name": "mysql", + "url": "https://quay.io/repository/operations/mysql", + "popularity": 1019.0 + }, + { + "name": "mysql", + "url": "https://quay.io/repository/bridgez/mysql", + "popularity": 10.0 + } + ], + "quay_top_images": [ + { + "name": "mysql-80-centos7", + "url": "https://quay.io/repository/centos7/mysql-80-centos7", + "popularity": 255184.0 + }, + { + "name": "mysql", + "url": "https://quay.io/repository/openshifttest/mysql", + "popularity": 14939.0 + }, + { + "name": "mysql-operator", + "url": "https://quay.io/repository/presslabs/mysql-operator", + "popularity": 43507.0 + }, + { + "name": "mariadb-103-centos7", + "url": "https://quay.io/repository/centos7/mariadb-103-centos7", + "popularity": 241707.0 + }, + { + "name": "mariadb-105-centos7", + "url": "https://quay.io/repository/centos7/mariadb-105-centos7", + "popularity": 136441.0 + } + ] + }, + { + "operators": [ + { + "package_id": "f8501214-7170-40b0-8449-d3c8e4f63505", + "name": "mysql", + "normalized_name": "mysql", + "logo_image_id": "751286dc-9e5c-4218-b8bf-98b2b0052231", + "stars": 0, + "display_name": "GrdsCloud MySQL for Kubernetes", + "description": "Enterprise open source MySQL-as-a-Service", + "version": "1.0.0", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525858, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/GrdsCloud", + "container_images": [] + }, + { + "package_id": "e3f8d531-6ea5-48ce-ac99-505c79414881", + "name": "percona-xtradb-cluster-operator", + "normalized_name": "percona-xtradb-cluster-operator", + "logo_image_id": "0b8875cd-6661-4269-9cf6-0fd92d59017b", + "stars": 5, + "display_name": "Percona Distribution for MySQL Operator", + "description": "Percona Distribution for MySQL Operator manages the lifecycle of Percona XtraDB cluster instances.", + "version": "1.10.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 5, + "medium": 48, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1640178704, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/percona/percona-xtradb-cluster-operator", + "container_images": [] + }, + { + "package_id": "ca2f64be-928c-44f1-8d64-81c7fecf4326", + "name": "planetscale", + "normalized_name": "planetscale", + "stars": 2, + "display_name": "PlanetScale Operator for Vitess", + "description": "PlanetScale's operator for Vitess deploys and manages instances of MySQL with Vitess, a database clustering system for horizontal scaling of MySQL.", + "version": "0.1.8", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1551908400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [] + }, + { + "package_id": "6afbd6a8-28d4-40f7-9f2e-0a7d34fe833e", + "name": "prometheus-exporter-operator", + "normalized_name": "prometheus-exporter-operator", + "logo_image_id": "8ab25f0a-48a9-48db-9082-31c5c161c106", + "stars": 0, + "display_name": "Prometheus Exporter Operator", + "description": "Operator to setup 3rd party prometheus exporters, with a collection of grafana dashboards", + "version": "0.2.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 88, + "high": 29, + "medium": 270, + "unknown": 1, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1591574400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/3scale/prometheus-exporter-operator", + "container_images": [ + "quay.io/3scale/prometheus-exporter-operator:v0.2.4" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 122 + }, + { + "Neo4j": [ + { + "dockerhub_exact_images": [ + { + "name": "neo4j", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1058, + "Docker_Url": "https://hub.docker.com/_/neo4j", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/neo4j", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 9, + "Docker_Url": "https://hub.docker.com/r/bitnami/neo4j", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/neo4j", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/neo4j", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "ibmcom/neo4j", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/neo4j", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "neo4j", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/neo4j", + "popularity": 0.0 + }, + { + "name": "neo4j", + "url": "https://quay.io/repository/thoba/neo4j", + "popularity": 0.0 + }, + { + "name": "neo4j", + "url": "https://quay.io/repository/modelgraphtools/neo4j", + "popularity": 0.0 + }, + { + "name": "neo4j", + "url": "https://quay.io/repository/ukhomeofficedigital/neo4j", + "popularity": 0.0 + }, + { + "name": "neo4j", + "url": "https://quay.io/repository/peoplepattern/neo4j", + "popularity": 0.0 + }, + { + "name": "neo4j", + "url": "https://quay.io/repository/dockerlibrary/neo4j", + "popularity": 0.0 + }, + { + "name": "neo4j", + "url": "https://quay.io/repository/cookbrite/neo4j", + "popularity": 0.0 + }, + { + "name": "neo4j", + "url": "https://quay.io/repository/frankyto2004/neo4j", + "popularity": 0.0 + }, + { + "name": "neo4j", + "url": "https://quay.io/repository/openkilda/neo4j", + "popularity": 0.0 + }, + { + "name": "neo4j", + "url": "https://quay.io/repository/steveblackmon/neo4j", + "popularity": 0.0 + }, + { + "name": "neo4j", + "url": "https://quay.io/repository/xavireds89/neo4j", + "popularity": 0.0 + }, + { + "name": "neo4j", + "url": "https://quay.io/repository/processtempo/neo4j", + "popularity": 0.0 + }, + { + "name": "neo4j", + "url": "https://quay.io/repository/amd64/neo4j", + "popularity": 0.0 + }, + { + "name": "neo4j", + "url": "https://quay.io/repository/karmkarm/neo4j", + "popularity": 0.0 + }, + { + "name": "neo4j", + "url": "https://quay.io/repository/swsmirror/neo4j", + "popularity": 1.0 + } + ], + "quay_top_images": [ + { + "name": "neo4j", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/neo4j", + "popularity": 0.0 + }, + { + "name": "neo4j", + "url": "https://quay.io/repository/thoba/neo4j", + "popularity": 0.0 + }, + { + "name": "neo4j", + "url": "https://quay.io/repository/modelgraphtools/neo4j", + "popularity": 0.0 + }, + { + "name": "neo4j", + "url": "https://quay.io/repository/ukhomeofficedigital/neo4j", + "popularity": 0.0 + }, + { + "name": "neo4j", + "url": "https://quay.io/repository/swsmirror/neo4j", + "popularity": 1.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 123 + }, + { + "Nexus Repository OSS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "grafana/grafana-oss", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 30, + "Docker_Url": "https://hub.docker.com/r/grafana/grafana-oss", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "grafana/grafana-oss-dev", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/grafana/grafana-oss-dev", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "grafana/grafana-oss-image-tags", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/grafana/grafana-oss-image-tags", + "OS": [ + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ocp-release", + "url": "https://quay.io/repository/openshift-release-dev/ocp-release", + "popularity": 39354632.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "thanos", + "url": "https://quay.io/repository/thanos/thanos", + "popularity": 2534311.0 + }, + { + "name": "nginx-ingress-controller", + "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", + "popularity": 1153447.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 124 + }, + { + "Nix package manager": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cert-manager-controller", + "url": "https://quay.io/repository/jetstack/cert-manager-controller", + "popularity": 92535501.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 88998175.0 + }, + { + "name": "cert-manager-cainjector", + "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", + "popularity": 89089055.0 + }, + { + "name": "cert-manager-acmesolver", + "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", + "popularity": 858875.0 + }, + { + "name": "olm", + "url": "https://quay.io/repository/operator-framework/olm", + "popularity": 1306060.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 125 + }, + { + "OpenLDAP": [ + { + "dockerhub_exact_images": [ + { + "name": "bitnami/openldap", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 49, + "Docker_Url": "https://hub.docker.com/r/bitnami/openldap", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "bitnami/openldap", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 49, + "Docker_Url": "https://hub.docker.com/r/bitnami/openldap", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/openldap-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/openldap-ppc64le", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "openldap", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/openldap", + "popularity": 0.0 + }, + { + "name": "openldap", + "url": "https://quay.io/repository/powerhome/openldap", + "popularity": 0.0 + }, + { + "name": "openldap", + "url": "https://quay.io/repository/minio/openldap", + "popularity": 770.0 + }, + { + "name": "openldap", + "url": "https://quay.io/repository/flysangel/openldap", + "popularity": 105.0 + }, + { + "name": "openldap", + "url": "https://quay.io/repository/cs-sert/openldap", + "popularity": 98.0 + }, + { + "name": "openldap", + "url": "https://quay.io/repository/llasmith/openldap", + "popularity": 47.0 + }, + { + "name": "openldap", + "url": "https://quay.io/repository/opaqnetworks/openldap", + "popularity": 0.0 + }, + { + "name": "openldap", + "url": "https://quay.io/repository/leena_ibm/openldap", + "popularity": 0.0 + }, + { + "name": "openldap", + "url": "https://quay.io/repository/rosalindfranklininstitute/openldap", + "popularity": 11.0 + }, + { + "name": "openldap", + "url": "https://quay.io/repository/sacpathak/openldap", + "popularity": 0.0 + }, + { + "name": "openldap", + "url": "https://quay.io/repository/nathan5508/openldap", + "popularity": 0.0 + }, + { + "name": "openldap", + "url": "https://quay.io/repository/vr4manta/openldap", + "popularity": 0.0 + }, + { + "name": "openldap", + "url": "https://quay.io/repository/tmm/openldap", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "openldap", + "url": "https://quay.io/repository/minio/openldap", + "popularity": 770.0 + }, + { + "name": "openldap", + "url": "https://quay.io/repository/flysangel/openldap", + "popularity": 105.0 + }, + { + "name": "openldap", + "url": "https://quay.io/repository/cs-sert/openldap", + "popularity": 98.0 + }, + { + "name": "openldap", + "url": "https://quay.io/repository/llasmith/openldap", + "popularity": 47.0 + }, + { + "name": "openldap-s390x", + "url": "https://quay.io/repository/cs-sert/openldap-s390x", + "popularity": 24.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 126 + }, + { + "OpenText Exstream": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "clair-scanner", + "url": "https://quay.io/repository/ibm/clair-scanner", + "popularity": 0.0 + }, + { + "name": "clair-scanner", + "url": "https://quay.io/repository/ibmz/clair-scanner", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 127 + }, + { + "OpenVPN": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/openvpn-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 9, + "Docker_Url": "https://hub.docker.com/r/ibmcom/openvpn-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "openvpn", + "url": "https://quay.io/repository/kubermatic/openvpn", + "popularity": 10950.0 + }, + { + "name": "openvpn", + "url": "https://quay.io/repository/plange/openvpn", + "popularity": 113.0 + }, + { + "name": "openvpn", + "url": "https://quay.io/repository/ukhomeofficedigital/openvpn", + "popularity": 61.0 + }, + { + "name": "openvpn", + "url": "https://quay.io/repository/digidentity/openvpn", + "popularity": 0.0 + }, + { + "name": "openvpn", + "url": "https://quay.io/repository/hypershift/openvpn", + "popularity": 34.0 + }, + { + "name": "openvpn", + "url": "https://quay.io/repository/konveyor/openvpn", + "popularity": 4.0 + } + ], + "quay_top_images": [ + { + "name": "openvpn", + "url": "https://quay.io/repository/kubermatic/openvpn", + "popularity": 10950.0 + }, + { + "name": "openvpn-authd", + "url": "https://quay.io/repository/ukhomeofficedigital/openvpn-authd", + "popularity": 106.0 + }, + { + "name": "openvpn", + "url": "https://quay.io/repository/plange/openvpn", + "popularity": 113.0 + }, + { + "name": "openvpn-sessions", + "url": "https://quay.io/repository/ukhomeofficedigital/openvpn-sessions", + "popularity": 549.0 + }, + { + "name": "openvpn-client-container", + "url": "https://quay.io/repository/tkaefer/openvpn-client-container", + "popularity": 163.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 128 + }, + { + "Oracle Access Management": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/verify-access", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 7, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-7-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-8-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 255406.0 + }, + { + "name": "node-disk-manager-amd64", + "url": "https://quay.io/repository/openebs/node-disk-manager-amd64", + "popularity": 159434.0 + }, + { + "name": "postgresql-10-centos7", + "url": "https://quay.io/repository/centos7/postgresql-10-centos7", + "popularity": 189232.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 117024.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 129 + }, + { + "Oracle ADF": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/core-oracle-7", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-7", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/core-oracle-8", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-8", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-7-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-8-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "oracle-12c", + "url": "https://quay.io/repository/maksymbilenko/oracle-12c", + "popularity": 15052.0 + }, + { + "name": "debezium-container-for-oracle", + "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", + "popularity": 6801.0 + }, + { + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", + "popularity": 20112.0 + }, + { + "name": "edb-postgres-advanced", + "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", + "popularity": 13004.0 + }, + { + "name": "mysqld-exporter", + "url": "https://quay.io/repository/prometheus/mysqld-exporter", + "popularity": 19079.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 130 + }, + { + "Oracle APEX": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/core-oracle-7", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-7", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/core-oracle-8", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-8", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-7-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-8-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "oracle-12c", + "url": "https://quay.io/repository/maksymbilenko/oracle-12c", + "popularity": 15052.0 + }, + { + "name": "debezium-container-for-oracle", + "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", + "popularity": 6801.0 + }, + { + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", + "popularity": 20112.0 + }, + { + "name": "edb-postgres-advanced", + "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", + "popularity": 13004.0 + }, + { + "name": "mysqld-exporter", + "url": "https://quay.io/repository/prometheus/mysqld-exporter", + "popularity": 19079.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 131 + }, + { + "Oracle BI Publisher": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "oracle-12c", + "url": "https://quay.io/repository/maksymbilenko/oracle-12c", + "popularity": 15052.0 + }, + { + "name": "debezium-container-for-oracle", + "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", + "popularity": 6801.0 + }, + { + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", + "popularity": 20112.0 + }, + { + "name": "edb-postgres-advanced", + "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", + "popularity": 13004.0 + }, + { + "name": "mysqld-exporter", + "url": "https://quay.io/repository/prometheus/mysqld-exporter", + "popularity": 19079.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 132 + }, + { + "Oracle Business Intelligence": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/core-oracle-8", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-8", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/core-oracle-7", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-7", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-7-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-8-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "oracle-12c", + "url": "https://quay.io/repository/maksymbilenko/oracle-12c", + "popularity": 15052.0 + }, + { + "name": "memcached", + "url": "https://quay.io/repository/jitesoft/memcached", + "popularity": 52903.0 + }, + { + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", + "popularity": 20112.0 + }, + { + "name": "edb-postgres-advanced", + "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", + "popularity": 13004.0 + }, + { + "name": "mysqld-exporter", + "url": "https://quay.io/repository/prometheus/mysqld-exporter", + "popularity": 19079.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 133 + }, + { + "Oracle Database": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/oracle-8-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-7-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 255406.0 + }, + { + "name": "mariadb-103-centos7", + "url": "https://quay.io/repository/centos7/mariadb-103-centos7", + "popularity": 241707.0 + }, + { + "name": "postgresql-10-centos7", + "url": "https://quay.io/repository/centos7/postgresql-10-centos7", + "popularity": 189232.0 + }, + { + "name": "billing-sidecar", + "url": "https://quay.io/repository/sdase/billing-sidecar", + "popularity": 183418.0 + }, + { + "name": "postgresql-13-centos7", + "url": "https://quay.io/repository/centos7/postgresql-13-centos7", + "popularity": 140143.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 134 + }, + { + "Oracle Designer": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ace-designer-flows", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ace-designer-flows", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "oracle-12c", + "url": "https://quay.io/repository/maksymbilenko/oracle-12c", + "popularity": 15052.0 + }, + { + "name": "debezium-container-for-oracle", + "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", + "popularity": 6801.0 + }, + { + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", + "popularity": 20112.0 + }, + { + "name": "edb-postgres-advanced", + "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", + "popularity": 13004.0 + }, + { + "name": "mysqld-exporter", + "url": "https://quay.io/repository/prometheus/mysqld-exporter", + "popularity": 19079.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 135 + }, + { + "Oracle Enterprise Manager": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/enterprise", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/rancher/enterprise", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-7-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-8-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cert-manager-controller", + "url": "https://quay.io/repository/jetstack/cert-manager-controller", + "popularity": 92535501.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 88998175.0 + }, + { + "name": "cert-manager-cainjector", + "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", + "popularity": 89089055.0 + }, + { + "name": "cert-manager-acmesolver", + "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", + "popularity": 858875.0 + }, + { + "name": "cert-manager-ctl", + "url": "https://quay.io/repository/jetstack/cert-manager-ctl", + "popularity": 637570.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 136 + }, + { + "Oracle Forms": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/core-oracle-7", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-7", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/core-oracle-8", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-8", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-7-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-8-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "oracle-12c", + "url": "https://quay.io/repository/maksymbilenko/oracle-12c", + "popularity": 15052.0 + }, + { + "name": "memcached", + "url": "https://quay.io/repository/jitesoft/memcached", + "popularity": 52903.0 + }, + { + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", + "popularity": 20112.0 + }, + { + "name": "edb-postgres-advanced", + "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", + "popularity": 13004.0 + }, + { + "name": "mysqld-exporter", + "url": "https://quay.io/repository/prometheus/mysqld-exporter", + "popularity": 19079.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 137 + }, + { + "Hyperion Interactive Reporting": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "metering-reporting-operator", + "url": "https://quay.io/repository/coreos/metering-reporting-operator", + "popularity": 1263.0 + }, + { + "name": "reporting", + "url": "https://quay.io/repository/sisense/reporting", + "popularity": 2475.0 + }, + { + "name": "origin-metering-reporting-operator", + "url": "https://quay.io/repository/openshift/origin-metering-reporting-operator", + "popularity": 4176.0 + }, + { + "name": "memcached", + "url": "https://quay.io/repository/jitesoft/memcached", + "popularity": 52903.0 + }, + { + "name": "rust", + "url": "https://quay.io/repository/instrumentisto/rust", + "popularity": 2946.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 138 + }, + { + "Hyperion Planning": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "hyperion", + "url": "https://quay.io/repository/devtron/hyperion", + "popularity": 922.0 + }, + { + "name": "federatorai-operator-ubi", + "url": "https://quay.io/repository/prophetstor/federatorai-operator-ubi", + "popularity": 473.0 + }, + { + "name": "sentence-planning", + "url": "https://quay.io/repository/hmpps/sentence-planning", + "popularity": 0.0 + }, + { + "name": "hyperion.ng", + "url": "https://quay.io/repository/truecharts/hyperion.ng", + "popularity": 0.0 + }, + { + "name": "ibm-spectrum-scale-csi-driver", + "url": "https://quay.io/repository/mew2057/ibm-spectrum-scale-csi-driver", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 139 + }, + { + "Oracle Net Services": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/net", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/rancher/net", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-7-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-8-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "haproxy-ingress", + "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", + "popularity": 929588.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 140 + }, + { + "Oracle Real Application Clusters": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/oracle-8-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-7-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "application-service", + "url": "https://quay.io/repository/redhat-appstudio/application-service", + "popularity": 72875.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "operator-generic", + "url": "https://quay.io/repository/cilium/operator-generic", + "popularity": 159557.0 + }, + { + "name": "hubble-relay", + "url": "https://quay.io/repository/cilium/hubble-relay", + "popularity": 135390.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 141 + }, + { + "Oracle Retail Point-of-Service": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "pachyderm/retail-allocation", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/pachyderm/retail-allocation", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "common-service-operator", + "url": "https://quay.io/repository/opencloudio/common-service-operator", + "popularity": 317405.0 + }, + { + "name": "service-catalog", + "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", + "popularity": 330506.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 142 + }, + { + "Oracle Service Bus": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/oracle-7-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-8-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "common-service-operator", + "url": "https://quay.io/repository/opencloudio/common-service-operator", + "popularity": 317405.0 + }, + { + "name": "service-catalog", + "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", + "popularity": 330506.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 143 + }, + { + "Oracle Smart View": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "intel/smart-city_solution", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/smart-city_solution", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "intel/smart-city_grafana", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/smart-city_grafana", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "signalfx-agent", + "url": "https://quay.io/repository/signalfx/signalfx-agent", + "popularity": 2424166.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "operator-generic", + "url": "https://quay.io/repository/cilium/operator-generic", + "popularity": 159557.0 + }, + { + "name": "hubble-relay", + "url": "https://quay.io/repository/cilium/hubble-relay", + "popularity": 135390.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/cilium/operator", + "popularity": 77983.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 144 + }, + { + "Oracle SOA Suite": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/core-oracle-7", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-7", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/core-oracle-8", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-8", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-7-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-8-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "oracle-12c", + "url": "https://quay.io/repository/maksymbilenko/oracle-12c", + "popularity": 15052.0 + }, + { + "name": "debezium-container-for-oracle", + "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", + "popularity": 6801.0 + }, + { + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", + "popularity": 20112.0 + }, + { + "name": "edb-postgres-advanced", + "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", + "popularity": 13004.0 + }, + { + "name": "mysqld-exporter", + "url": "https://quay.io/repository/prometheus/mysqld-exporter", + "popularity": 19079.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 145 + }, + { + "Oracle SQL Developer": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "gooddata/sql-executor", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "oracle-12c", + "url": "https://quay.io/repository/maksymbilenko/oracle-12c", + "popularity": 15052.0 + }, + { + "name": "mariadb-103-centos7", + "url": "https://quay.io/repository/centos7/mariadb-103-centos7", + "popularity": 241707.0 + }, + { + "name": "mariadb-105-centos7", + "url": "https://quay.io/repository/centos7/mariadb-105-centos7", + "popularity": 136441.0 + }, + { + "name": "invidious", + "url": "https://quay.io/repository/invidious/invidious", + "popularity": 38116.0 + }, + { + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", + "popularity": 20112.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 146 + }, + { + "Oracle TimesTen In-Memory Database": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/oracle-8-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-7-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 255406.0 + }, + { + "name": "mariadb-103-centos7", + "url": "https://quay.io/repository/centos7/mariadb-103-centos7", + "popularity": 241707.0 + }, + { + "name": "postgresql-10-centos7", + "url": "https://quay.io/repository/centos7/postgresql-10-centos7", + "popularity": 189232.0 + }, + { + "name": "billing-sidecar", + "url": "https://quay.io/repository/sdase/billing-sidecar", + "popularity": 183418.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 147 + }, + { + "Oracle Warehouse Builder": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "circleci/builder-base", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/circleci/builder-base", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-7-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-8-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "portainer/angular-builder", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/portainer/angular-builder", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "upstream-opm-builder", + "url": "https://quay.io/repository/operator-framework/upstream-opm-builder", + "popularity": 60936.0 + }, + { + "name": "cf-docker-builder", + "url": "https://quay.io/repository/codefresh/cf-docker-builder", + "popularity": 84282.0 + }, + { + "name": "ubuntu20-builder", + "url": "https://quay.io/repository/wire/ubuntu20-builder", + "popularity": 25598.0 + }, + { + "name": "oracle-12c", + "url": "https://quay.io/repository/maksymbilenko/oracle-12c", + "popularity": 15052.0 + }, + { + "name": "alpine-builder", + "url": "https://quay.io/repository/wire/alpine-builder", + "popularity": 17078.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 148 + }, + { + "Orbix": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 149 + }, + { + "Pentaho": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "pentaho", + "url": "https://quay.io/repository/hasni/pentaho", + "popularity": 0.0 + }, + { + "name": "pentaho", + "url": "https://quay.io/repository/pablo_lemosochandio/pentaho", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "docker-pentaho-pdi", + "url": "https://quay.io/repository/matthieudolci/docker-pentaho-pdi", + "popularity": 0.0 + }, + { + "name": "pentaho", + "url": "https://quay.io/repository/hasni/pentaho", + "popularity": 0.0 + }, + { + "name": "pentaho", + "url": "https://quay.io/repository/pablo_lemosochandio/pentaho", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 150 + }, + { + "PeopleSoft": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 151 + }, + { + "Perkin Elmer Informatics": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "bioconductor-elmer", + "url": "https://quay.io/repository/biocontainers/bioconductor-elmer", + "popularity": 126.0 + }, + { + "name": "bioconductor-elmer.data", + "url": "https://quay.io/repository/biocontainers/bioconductor-elmer.data", + "popularity": 0.0 + }, + { + "name": "pathogen-informatics-training", + "url": "https://quay.io/repository/sangerpathogens/pathogen-informatics-training", + "popularity": 0.0 + }, + { + "name": "mshack", + "url": "https://quay.io/repository/informaticslab/mshack", + "popularity": 0.0 + }, + { + "name": "pgap", + "url": "https://quay.io/repository/microbiome-informatics/pgap", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 152 + }, + { + "Pervasive PSQL": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "postgresql", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/postgresql", + "popularity": 0.0 + }, + { + "name": "psql", + "url": "https://quay.io/repository/manywho/psql", + "popularity": 176.0 + }, + { + "name": "sso74-psql-openshift-rhel8", + "url": "https://quay.io/repository/mzeny/sso74-psql-openshift-rhel8", + "popularity": 169.0 + }, + { + "name": "hocs-psql-exec", + "url": "https://quay.io/repository/ukhomeofficedigital/hocs-psql-exec", + "popularity": 0.0 + }, + { + "name": "server", + "url": "https://quay.io/repository/codimd/server", + "popularity": 2465.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 153 + }, + { + "PIPE-FLO": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "get-pipe", + "url": "https://quay.io/repository/igtdp/get-pipe", + "popularity": 193.0 + }, + { + "name": "worker-pipe", + "url": "https://quay.io/repository/igtdp/worker-pipe", + "popularity": 0.0 + }, + { + "name": "bcftools", + "url": "https://quay.io/repository/biocontainers/bcftools", + "popularity": 13048.0 + }, + { + "name": "statsd-exporter", + "url": "https://quay.io/repository/prometheus/statsd-exporter", + "popularity": 8725.0 + }, + { + "name": "udplog-d", + "url": "https://quay.io/repository/jcmoraisjr/udplog-d", + "popularity": 20.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 154 + }, + { + "PKZIP": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 155 + }, + { + "Planview": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 156 + }, + { + "PostgreSQL": [ + { + "dockerhub_exact_images": [ + { + "name": "bitnami/postgresql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 148, + "Docker_Url": "https://hub.docker.com/r/bitnami/postgresql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/postgresql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/postgresql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "pachyderm/postgresql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/pachyderm/postgresql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "pachyderm/postgresql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/pachyderm/postgresql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/postgresql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/postgresql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/postgresql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 148, + "Docker_Url": "https://hub.docker.com/r/bitnami/postgresql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/postgresql-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/postgresql-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/postgresql-amd64", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/postgresql-amd64", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "postgresql", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/postgresql", + "popularity": 0.0 + }, + { + "name": "postgresql", + "url": "https://quay.io/repository/enterprisedb/postgresql", + "popularity": 18302.0 + }, + { + "name": "postgresql", + "url": "https://quay.io/repository/aptible/postgresql", + "popularity": 1432.0 + }, + { + "name": "postgresql", + "url": "https://quay.io/repository/operatorhubio/postgresql", + "popularity": 1536.0 + } + ], + "quay_top_images": [ + { + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 255406.0 + }, + { + "name": "postgresql-10-centos7", + "url": "https://quay.io/repository/centos7/postgresql-10-centos7", + "popularity": 189232.0 + }, + { + "name": "postgresql-13-centos7", + "url": "https://quay.io/repository/centos7/postgresql-13-centos7", + "popularity": 140143.0 + }, + { + "name": "postgresql-operator", + "url": "https://quay.io/repository/dev4devs-com/postgresql-operator", + "popularity": 18838.0 + }, + { + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", + "popularity": 20112.0 + } + ] + }, + { + "operators": [ + { + "package_id": "b72ad34b-4452-476b-b603-50275ec2837c", + "name": "postgresql-operator", + "normalized_name": "postgresql-operator", + "stars": 0, + "display_name": "Postgresql Operator", + "description": "Deploys postgresql based applications", + "version": "0.0.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 128, + "high": 37, + "medium": 350, + "unknown": 1, + "critical": 8 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1576227600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/janepelladinesh/postgresql-operator", + "container_images": [ + "quay.io/deekshah86/postgresql-operator" + ] + }, + { + "package_id": "d4082ba3-8c37-4dae-8771-6b11dc7c0f33", + "name": "percona-postgresql-operator", + "normalized_name": "percona-postgresql-operator", + "logo_image_id": "0b8875cd-6661-4269-9cf6-0fd92d59017b", + "stars": 0, + "display_name": "Percona Operator for PostgreSQL", + "description": "Percona Operator for PostgreSQL manages the lifecycle of Percona PostgreSQL cluster instances.", + "version": "1.2.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 2, + "medium": 32, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1649682704, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/percona/percona-postgresql-operator", + "container_images": [] + }, + { + "package_id": "b134bee3-539b-4fe6-bc24-4aa7e3e1f11c", + "name": "postgresql-operator-dev4devs-com", + "normalized_name": "postgresql-operator-dev4devs-com", + "logo_image_id": "2a4da4ce-b519-46af-bb1c-d845e5d9a772", + "stars": 0, + "display_name": "PostgreSQL Operator by Dev4Ddevs.com", + "description": "Operator in Go developed using the Operator Framework to package, install, configure and manage a PostgreSQL database. This project includes backup feature.", + "version": "0.1.1", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1567929600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/dev4devs-com/postgresql-operator", + "container_images": [ + "quay.io/dev4devs-com/postgresql-operator:0.1.1" + ] + }, + { + "package_id": "62d3a0f9-3d23-48f0-9bee-9b4f2060c6df", + "name": "postgresql", + "normalized_name": "postgresql", + "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", + "stars": 13, + "display_name": "Crunchy Postgres for Kubernetes", + "description": "Production Postgres Made Easy", + "version": "5.1.2", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 23, + "high": 0, + "medium": 32, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1657571435, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/CrunchyData/postgres-operator", + "container_images": [] + }, + { + "package_id": "0246f8b7-d8d5-4880-a099-1e1e84cc127f", + "name": "cloud-native-postgresql", + "normalized_name": "cloud-native-postgresql", + "logo_image_id": "33922b5a-7a59-46b9-baba-8bc9e74c3457", + "stars": 1, + "display_name": "EDB Postgres for Kubernetes", + "description": "Operator to manage Postgres high availability clusters with a primary/standby architecture.", + "version": "1.15.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 23, + "high": 1, + "medium": 32, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1654016342, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [ + "quay.io/enterprisedb/cloud-native-postgresql" + ] + }, + { + "package_id": "5d3739dc-d633-42f3-9334-be29d154a718", + "name": "postgres-operator", + "normalized_name": "postgres-operator", + "logo_image_id": "932e96b3-34be-4e2f-bd53-b30903d20a2d", + "stars": 3, + "display_name": "Postgres-Operator", + "description": "Postgres operator creates and manages PostgreSQL clusters running in Kubernetes.", + "version": "1.4.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 2, + "high": 11, + "medium": 8, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1563964200, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/zalando/postgres-operator", + "container_images": [] + }, + { + "package_id": "938c53a5-59e0-45ba-9025-29d1bfdde8a5", + "name": "ext-postgres-operator", + "normalized_name": "ext-postgres-operator", + "stars": 0, + "display_name": "Ext Postgres Operator", + "description": "Manage databases and roles in external PostgreSQL server or cluster", + "version": "0.4.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 201, + "high": 19, + "medium": 338, + "unknown": 2, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1576764720, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/movetokube/postgres-operator", + "container_images": [] + }, + { + "package_id": "8ead8d37-cba9-449e-a7df-ee5c0745564f", + "name": "nuxeo-operator", + "normalized_name": "nuxeo-operator", + "logo_image_id": "6540df42-6fe6-428e-b81b-8777c396d3b0", + "stars": 0, + "display_name": "Nuxeo Operator", + "description": "The Nuxeo Operator manages a Nuxeo cluster, integrating it\nwith backing services like Kafka, Elastic Search, MongoDB, and PostgreSQL\n", + "version": "0.7.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 2, + "medium": 1, + "unknown": 3, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1601078400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aceeric/nuxeo-operator", + "container_images": [ + "docker.io/appzygy/nuxeo-operator:0.7.1" + ] + }, + { + "package_id": "6afbd6a8-28d4-40f7-9f2e-0a7d34fe833e", + "name": "prometheus-exporter-operator", + "normalized_name": "prometheus-exporter-operator", + "logo_image_id": "8ab25f0a-48a9-48db-9082-31c5c161c106", + "stars": 0, + "display_name": "Prometheus Exporter Operator", + "description": "Operator to setup 3rd party prometheus exporters, with a collection of grafana dashboards", + "version": "0.2.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 88, + "high": 29, + "medium": 270, + "unknown": 1, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1591574400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/3scale/prometheus-exporter-operator", + "container_images": [ + "quay.io/3scale/prometheus-exporter-operator:v0.2.4" + ] + }, + { + "package_id": "330ddb0a-13ae-44f0-88d7-831638cc78b8", + "name": "robin-operator", + "normalized_name": "robin-operator", + "logo_image_id": "89f07c38-1802-404e-8503-29262a374d3a", + "stars": 0, + "display_name": "Robin Cloud Native Storage", + "description": "Robin Cloud Native Storage operator enables advanced data management capabilities to Kubernetes apps like snapshot,clone,rollback,backup,restore,import,etc.", + "version": "5.3.2-59", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 2, + "high": 31, + "medium": 11, + "unknown": 1, + "critical": 5 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1645291832, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [] + } + ] + } + ], + "entity_type": 2, + "entity_id": 157 + }, + { + "Powerbuilder": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 158 + }, + { + "Primavera P6": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 159 + }, + { + "Pro*COBOL": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 160 + }, + { + "ProjectWise": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 161 + }, + { + "ProjectWise Web Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "common-web-ui", + "url": "https://quay.io/repository/opencloudio/common-web-ui", + "popularity": 353182.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 162 + }, + { + "PVCS Version Manager": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/icp-identity-manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-identity-manager", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/icp-image-manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-image-manager", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cert-manager-controller", + "url": "https://quay.io/repository/jetstack/cert-manager-controller", + "popularity": 92535501.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 88998175.0 + }, + { + "name": "cert-manager-cainjector", + "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", + "popularity": 89089055.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 163 + }, + { + "QlikView": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "qsba2021", + "url": "https://quay.io/repository/braindumps4it/qsba2021", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 164 + }, + { + "RabbitMQ": [ + { + "dockerhub_exact_images": [ + { + "name": "rabbitmq", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 4372, + "Docker_Url": "https://hub.docker.com/_/rabbitmq", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "riscv64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/rabbitmq", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 87, + "Docker_Url": "https://hub.docker.com/r/bitnami/rabbitmq", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/rabbitmq", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/rabbitmq", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "circleci/rabbitmq", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/rabbitmq", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/rabbitmq", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 87, + "Docker_Url": "https://hub.docker.com/r/bitnami/rabbitmq", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rabbitmq", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 4372, + "Docker_Url": "https://hub.docker.com/_/rabbitmq", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "riscv64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "rabbitmq", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/rabbitmq", + "popularity": 0.0 + }, + { + "name": "rabbitmq", + "url": "https://quay.io/repository/domino/rabbitmq", + "popularity": 2353.0 + }, + { + "name": "rabbitmq", + "url": "https://quay.io/repository/sisense/rabbitmq", + "popularity": 2149.0 + }, + { + "name": "rabbitmq", + "url": "https://quay.io/repository/scentbird/rabbitmq", + "popularity": 3178.0 + }, + { + "name": "rabbitmq", + "url": "https://quay.io/repository/aptible/rabbitmq", + "popularity": 1427.0 + }, + { + "name": "rabbitmq", + "url": "https://quay.io/repository/openstack.kolla/rabbitmq", + "popularity": 1088.0 + }, + { + "name": "rabbitmq", + "url": "https://quay.io/repository/trackmaven/rabbitmq", + "popularity": 1903.0 + }, + { + "name": "rabbitmq", + "url": "https://quay.io/repository/lbac/rabbitmq", + "popularity": 1512.0 + } + ], + "quay_top_images": [ + { + "name": "rabbitmq", + "url": "https://quay.io/repository/domino/rabbitmq", + "popularity": 2353.0 + }, + { + "name": "rabbitmq", + "url": "https://quay.io/repository/sisense/rabbitmq", + "popularity": 2149.0 + }, + { + "name": "rabbitmq", + "url": "https://quay.io/repository/scentbird/rabbitmq", + "popularity": 3178.0 + }, + { + "name": "rabbitmq", + "url": "https://quay.io/repository/trackmaven/rabbitmq", + "popularity": 1903.0 + }, + { + "name": "rabbitmq", + "url": "https://quay.io/repository/lbac/rabbitmq", + "popularity": 1512.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 165 + }, + { + "Rational ClearCase": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 166 + }, + { + "Rational ClearQuest": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 167 + }, + { + "Redis": [ + { + "dockerhub_exact_images": [ + { + "name": "redis", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 11123, + "Docker_Url": "https://hub.docker.com/_/redis", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/redis", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 227, + "Docker_Url": "https://hub.docker.com/r/bitnami/redis", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/redis", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 14, + "Docker_Url": "https://hub.docker.com/r/circleci/redis", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ubuntu/redis", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/ubuntu/redis", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "cimg/redis", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/cimg/redis", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "redis", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 11123, + "Docker_Url": "https://hub.docker.com/_/redis", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "cimg/redis", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/cimg/redis", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/redis", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 227, + "Docker_Url": "https://hub.docker.com/r/bitnami/redis", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/redis", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 14, + "Docker_Url": "https://hub.docker.com/r/circleci/redis", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ubuntu/redis", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/ubuntu/redis", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "redis", + "url": "https://quay.io/repository/sameersbn/redis", + "popularity": 179256.0 + }, + { + "name": "redis", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/redis", + "popularity": 0.0 + }, + { + "name": "redis", + "url": "https://quay.io/repository/domino/redis", + "popularity": 2962.0 + }, + { + "name": "redis", + "url": "https://quay.io/repository/opstree/redis", + "popularity": 4276.0 + }, + { + "name": "redis", + "url": "https://quay.io/repository/quay/redis", + "popularity": 1216.0 + }, + { + "name": "redis", + "url": "https://quay.io/repository/scentbird/redis", + "popularity": 3278.0 + }, + { + "name": "redis", + "url": "https://quay.io/repository/libpod/redis", + "popularity": 2380.0 + }, + { + "name": "redis", + "url": "https://quay.io/repository/aptible/redis", + "popularity": 1403.0 + }, + { + "name": "redis", + "url": "https://quay.io/repository/crio/redis", + "popularity": 1230.0 + } + ], + "quay_top_images": [ + { + "name": "redis-operator", + "url": "https://quay.io/repository/spotahome/redis-operator", + "popularity": 149335.0 + }, + { + "name": "redis-5-centos7", + "url": "https://quay.io/repository/centos7/redis-5-centos7", + "popularity": 247008.0 + }, + { + "name": "redis", + "url": "https://quay.io/repository/sameersbn/redis", + "popularity": 179256.0 + }, + { + "name": "redis-exporter", + "url": "https://quay.io/repository/opstree/redis-exporter", + "popularity": 44318.0 + }, + { + "name": "redis-operator", + "url": "https://quay.io/repository/opstree/redis-operator", + "popularity": 70825.0 + } + ] + }, + { + "operators": [ + { + "package_id": "bb525733-deee-4431-9b51-4897c8d6d21b", + "name": "redis-operator", + "normalized_name": "redis-operator", + "logo_image_id": "60503f77-253d-4491-adff-e6e55c547ef7", + "stars": 9, + "display_name": "Redis Operator", + "description": "A Golang based redis operator that will make/oversee Redis standalone/cluster mode setup on top of the Kubernetes.", + "version": "0.11.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1657396835, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/ot-container-kit/redis-operator", + "container_images": [ + "quay.io/opstree/redis-operator:v0.11.0" + ] + }, + { + "package_id": "c103653e-b394-447f-bcbe-5c36a9b2fff5", + "name": "redis-enterprise", + "normalized_name": "redis-enterprise", + "logo_image_id": "1c86e9e7-c6f1-4c8f-9f97-c3ca8696e809", + "stars": 2, + "display_name": "Redis Enterprise", + "description": "An operator to run Redis Enterprise Clusters", + "version": "0.0.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1551008159, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [] + }, + { + "package_id": "6afbd6a8-28d4-40f7-9f2e-0a7d34fe833e", + "name": "prometheus-exporter-operator", + "normalized_name": "prometheus-exporter-operator", + "logo_image_id": "8ab25f0a-48a9-48db-9082-31c5c161c106", + "stars": 0, + "display_name": "Prometheus Exporter Operator", + "description": "Operator to setup 3rd party prometheus exporters, with a collection of grafana dashboards", + "version": "0.2.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 88, + "high": 29, + "medium": 270, + "unknown": 1, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1591574400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/3scale/prometheus-exporter-operator", + "container_images": [ + "quay.io/3scale/prometheus-exporter-operator:v0.2.4" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 168 + }, + { + "Remedy": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "remedy", + "url": "https://quay.io/repository/amosnl/remedy", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "remedy", + "url": "https://quay.io/repository/amosnl/remedy", + "popularity": 0.0 + }, + { + "name": "edpills", + "url": "https://quay.io/repository/amydewey/edpills", + "popularity": 0.0 + }, + { + "name": "healthcare", + "url": "https://quay.io/repository/rudyreichert/healthcare", + "popularity": 0.0 + }, + { + "name": "healthcaretips", + "url": "https://quay.io/repository/medajohnson/healthcaretips", + "popularity": 0.0 + }, + { + "name": "childcustodylawyer", + "url": "https://quay.io/repository/legalremedy/childcustodylawyer", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 169 + }, + { + "Riak": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "riak", + "url": "https://quay.io/repository/dotabuff/riak", + "popularity": 0.0 + }, + { + "name": "riak", + "url": "https://quay.io/repository/arschles/riak", + "popularity": 0.0 + }, + { + "name": "riak", + "url": "https://quay.io/repository/joukou/riak", + "popularity": 0.0 + }, + { + "name": "riak", + "url": "https://quay.io/repository/deis/riak", + "popularity": 0.0 + }, + { + "name": "riak", + "url": "https://quay.io/repository/01it/riak", + "popularity": 0.0 + }, + { + "name": "riak", + "url": "https://quay.io/repository/deisci/riak", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "k8s-riak", + "url": "https://quay.io/repository/briends/k8s-riak", + "popularity": 0.0 + }, + { + "name": "riak", + "url": "https://quay.io/repository/dotabuff/riak", + "popularity": 0.0 + }, + { + "name": "riak", + "url": "https://quay.io/repository/arschles/riak", + "popularity": 0.0 + }, + { + "name": "riak", + "url": "https://quay.io/repository/joukou/riak", + "popularity": 0.0 + }, + { + "name": "riak", + "url": "https://quay.io/repository/deis/riak", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 170 + }, + { + "RightFax": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 171 + }, + { + "Rumba": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 172 + }, + { + "SAP BusinessObjects BI server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/metrics-server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 8, + "Docker_Url": "https://hub.docker.com/r/bitnami/metrics-server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 173 + }, + { + "SAP ERP": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "sap-side-by-side-be", + "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", + "popularity": 3358.0 + }, + { + "name": "sap-btp-operator", + "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", + "popularity": 132.0 + }, + { + "name": "container-image-registry", + "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", + "popularity": 7558.0 + }, + { + "name": "sdi-observer", + "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", + "popularity": 6548.0 + }, + { + "name": "sdi-observer", + "url": "https://quay.io/repository/miminar/sdi-observer", + "popularity": 165.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 174 + }, + { + "SAP HANA DB": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "appdynamics/db-agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/appdynamics/db-agent", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "sap-side-by-side-be", + "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", + "popularity": 3358.0 + }, + { + "name": "sap-btp-operator", + "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", + "popularity": 132.0 + }, + { + "name": "container-image-registry", + "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", + "popularity": 7558.0 + }, + { + "name": "sdi-observer", + "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", + "popularity": 6548.0 + }, + { + "name": "sdi-observer", + "url": "https://quay.io/repository/miminar/sdi-observer", + "popularity": 165.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 175 + }, + { + "SAP MaxDB": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "sap-side-by-side-be", + "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", + "popularity": 3358.0 + }, + { + "name": "sap-btp-operator", + "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", + "popularity": 132.0 + }, + { + "name": "container-image-registry", + "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", + "popularity": 7558.0 + }, + { + "name": "sdi-observer", + "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", + "popularity": 6548.0 + }, + { + "name": "sdi-observer", + "url": "https://quay.io/repository/miminar/sdi-observer", + "popularity": 165.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 176 + }, + { + "SAP NetWeaver Business Warehouse": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "warehouse", + "url": "https://quay.io/repository/sisense/warehouse", + "popularity": 1480.0 + }, + { + "name": "sap-side-by-side-be", + "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", + "popularity": 3358.0 + }, + { + "name": "memcached", + "url": "https://quay.io/repository/jitesoft/memcached", + "popularity": 52903.0 + }, + { + "name": "container-image-registry", + "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", + "popularity": 7558.0 + }, + { + "name": "sdi-observer", + "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", + "popularity": 6548.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 177 + }, + { + "SAP SQL Anywhere": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "gooddata/sql-executor", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "apicurio-registry-sql", + "url": "https://quay.io/repository/apicurio/apicurio-registry-sql", + "popularity": 12300.0 + }, + { + "name": "mariadb-103-centos7", + "url": "https://quay.io/repository/centos7/mariadb-103-centos7", + "popularity": 241707.0 + }, + { + "name": "mariadb-105-centos7", + "url": "https://quay.io/repository/centos7/mariadb-105-centos7", + "popularity": 136441.0 + }, + { + "name": "soketi", + "url": "https://quay.io/repository/soketi/soketi", + "popularity": 42567.0 + }, + { + "name": "mysqld-exporter", + "url": "https://quay.io/repository/prometheus/mysqld-exporter", + "popularity": 19079.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 178 + }, + { + "SAP Web Dynpro": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/web-terminal", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/web-terminal", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "common-web-ui", + "url": "https://quay.io/repository/opencloudio/common-web-ui", + "popularity": 353182.0 + }, + { + "name": "windup-web-openshift", + "url": "https://quay.io/repository/windupeng/windup-web-openshift", + "popularity": 17107.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "nginx-116-centos7", + "url": "https://quay.io/repository/centos7/nginx-116-centos7", + "popularity": 158502.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 117024.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 179 + }, + { + "Sentry": [ + { + "dockerhub_exact_images": [ + { + "name": "sentry", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 623, + "Docker_Url": "https://hub.docker.com/_/sentry", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "sentry", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 623, + "Docker_Url": "https://hub.docker.com/_/sentry", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "sentry", + "url": "https://quay.io/repository/app-sre/sentry", + "popularity": 927.0 + }, + { + "name": "sentry", + "url": "https://quay.io/repository/swsmirror/sentry", + "popularity": 1.0 + }, + { + "name": "sentry", + "url": "https://quay.io/repository/dontpayfull/sentry", + "popularity": 31.0 + }, + { + "name": "sentry", + "url": "https://quay.io/repository/zebbra/sentry", + "popularity": 0.0 + }, + { + "name": "sentry", + "url": "https://quay.io/repository/kbrwn/sentry", + "popularity": 0.0 + }, + { + "name": "sentry", + "url": "https://quay.io/repository/beatport/sentry", + "popularity": 0.0 + }, + { + "name": "sentry", + "url": "https://quay.io/repository/playlab/sentry", + "popularity": 0.0 + }, + { + "name": "sentry", + "url": "https://quay.io/repository/arastu/sentry", + "popularity": 0.0 + }, + { + "name": "sentry", + "url": "https://quay.io/repository/3ofcoins/sentry", + "popularity": 0.0 + }, + { + "name": "sentry", + "url": "https://quay.io/repository/dockerlibrary/sentry", + "popularity": 0.0 + }, + { + "name": "sentry", + "url": "https://quay.io/repository/baselibrary/sentry", + "popularity": 0.0 + }, + { + "name": "sentry", + "url": "https://quay.io/repository/aptible/sentry", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "sentry", + "url": "https://quay.io/repository/app-sre/sentry", + "popularity": 927.0 + }, + { + "name": "sentry", + "url": "https://quay.io/repository/swsmirror/sentry", + "popularity": 1.0 + }, + { + "name": "publish-sentry-release", + "url": "https://quay.io/repository/indent/publish-sentry-release", + "popularity": 48.0 + }, + { + "name": "sentry", + "url": "https://quay.io/repository/dontpayfull/sentry", + "popularity": 31.0 + }, + { + "name": "sentry-gateway", + "url": "https://quay.io/repository/pingthingsio/sentry-gateway", + "popularity": 9.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 180 + }, + { + "SharePoint": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "service-sharepoint", + "url": "https://quay.io/repository/manywho/service-sharepoint", + "popularity": 0.0 + }, + { + "name": "service-sharepoint-addin", + "url": "https://quay.io/repository/manywho/service-sharepoint-addin", + "popularity": 0.0 + }, + { + "name": "sentieon", + "url": "https://quay.io/repository/biocontainers/sentieon", + "popularity": 0.0 + }, + { + "name": "sharepointconsulting", + "url": "https://quay.io/repository/sharepointconsulting/sharepointconsulting", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 181 + }, + { + "Siebel": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 182 + }, + { + "SNA Manager": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cert-manager-controller", + "url": "https://quay.io/repository/jetstack/cert-manager-controller", + "popularity": 92535501.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 88998175.0 + }, + { + "name": "cert-manager-cainjector", + "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", + "popularity": 89089055.0 + }, + { + "name": "cert-manager-acmesolver", + "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", + "popularity": 858875.0 + }, + { + "name": "olm", + "url": "https://quay.io/repository/operator-framework/olm", + "popularity": 1306060.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 183 + }, + { + "SnagIt": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 184 + }, + { + "solidDB": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 185 + }, + { + "SonarQube": [ + { + "dockerhub_exact_images": [ + { + "name": "sonarqube", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 2065, + "Docker_Url": "https://hub.docker.com/_/sonarqube", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/sonarqube", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 26, + "Docker_Url": "https://hub.docker.com/r/bitnami/sonarqube", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "bitnami/sonarqube", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 26, + "Docker_Url": "https://hub.docker.com/r/bitnami/sonarqube", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "sonarqube", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 2065, + "Docker_Url": "https://hub.docker.com/_/sonarqube", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/sonarqube-s390x", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/sonarqube-s390x", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "sonarqube", + "url": "https://quay.io/repository/gpte-devops-automation/sonarqube", + "popularity": 4437.0 + }, + { + "name": "sonarqube", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/sonarqube", + "popularity": 0.0 + }, + { + "name": "sonarqube", + "url": "https://quay.io/repository/andrexbass/sonarqube", + "popularity": 2016.0 + }, + { + "name": "sonarqube", + "url": "https://quay.io/repository/ukhomeofficedigital/sonarqube", + "popularity": 1950.0 + }, + { + "name": "sonarqube", + "url": "https://quay.io/repository/siamaksade/sonarqube", + "popularity": 299.0 + }, + { + "name": "sonarqube", + "url": "https://quay.io/repository/evandenbeld/sonarqube", + "popularity": 0.0 + }, + { + "name": "sonarqube", + "url": "https://quay.io/repository/ecerquei/sonarqube", + "popularity": 1633.0 + }, + { + "name": "sonarqube", + "url": "https://quay.io/repository/an6eel/sonarqube", + "popularity": 458.0 + }, + { + "name": "sonarqube", + "url": "https://quay.io/repository/ccee/sonarqube", + "popularity": 347.0 + }, + { + "name": "sonarqube", + "url": "https://quay.io/repository/rcarrata/sonarqube", + "popularity": 742.0 + }, + { + "name": "sonarqube", + "url": "https://quay.io/repository/swsmirror/sonarqube", + "popularity": 1.0 + }, + { + "name": "sonarqube", + "url": "https://quay.io/repository/rocep/sonarqube", + "popularity": 173.0 + }, + { + "name": "sonarqube", + "url": "https://quay.io/repository/redhatgov/sonarqube", + "popularity": 85.0 + }, + { + "name": "sonarqube", + "url": "https://quay.io/repository/bcgov/sonarqube", + "popularity": 107.0 + } + ], + "quay_top_images": [ + { + "name": "sonarqube", + "url": "https://quay.io/repository/gpte-devops-automation/sonarqube", + "popularity": 4437.0 + }, + { + "name": "sonarqube", + "url": "https://quay.io/repository/andrexbass/sonarqube", + "popularity": 2016.0 + }, + { + "name": "sonarqube", + "url": "https://quay.io/repository/ukhomeofficedigital/sonarqube", + "popularity": 1950.0 + }, + { + "name": "sonarqube-operator", + "url": "https://quay.io/repository/redhatgov/sonarqube-operator", + "popularity": 1665.0 + }, + { + "name": "sonarqube", + "url": "https://quay.io/repository/ecerquei/sonarqube", + "popularity": 1633.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 186 + }, + { + "SpaceMonger": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 187 + }, + { + "Splunk": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "circleci/splunk-forwarder", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/circleci/splunk-forwarder", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "splunk", + "url": "https://quay.io/repository/mariaelisacf/splunk", + "popularity": 0.0 + }, + { + "name": "splunk", + "url": "https://quay.io/repository/operatorhubio/splunk", + "popularity": 44.0 + } + ], + "quay_top_images": [ + { + "name": "splunk-otel-collector", + "url": "https://quay.io/repository/signalfx/splunk-otel-collector", + "popularity": 1697696.0 + }, + { + "name": "splunk-forwarder", + "url": "https://quay.io/repository/app-sre/splunk-forwarder", + "popularity": 79844.0 + }, + { + "name": "splunk-audit-exporter", + "url": "https://quay.io/repository/app-sre/splunk-audit-exporter", + "popularity": 27209.0 + }, + { + "name": "splunk-forwarder-operator-registry", + "url": "https://quay.io/repository/app-sre/splunk-forwarder-operator-registry", + "popularity": 20202.0 + }, + { + "name": "splunk-forwarder", + "url": "https://quay.io/repository/jburrell/splunk-forwarder", + "popularity": 20865.0 + } + ] + }, + { + "operators": [ + { + "package_id": "1c2f8408-1a6c-4597-bf02-bfc7d55d26a6", + "name": "splunk", + "normalized_name": "splunk", + "logo_image_id": "53616ef5-f8bb-459a-bef6-b095ddc02a0a", + "stars": 1, + "display_name": "Splunk Operator", + "version": "1.1.0", + "deprecated": false, + "signed": false, + "production_organizations_count": 0, + "ts": 1651041032, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [] + } + ] + } + ], + "entity_type": 2, + "entity_id": 188 + }, + { + "SQLIO": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 189 + }, + { + "Sybase SQL Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "gooddata/sql-executor", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 190 + }, + { + "Syncsort": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 191 + }, + { + "Sysinternal Tools": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "gooddata/tools", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/gooddata/tools", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "pingidentity/ldap-sdk-tools", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/pingidentity/ldap-sdk-tools", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "puppet/puppet-dev-tools", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 8, + "Docker_Url": "https://hub.docker.com/r/puppet/puppet-dev-tools", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "build-tools-ci", + "url": "https://quay.io/repository/pantheon-public/build-tools-ci", + "popularity": 47347.0 + }, + { + "name": "light-k8s-deploy-tools", + "url": "https://quay.io/repository/presslabs/light-k8s-deploy-tools", + "popularity": 31998.0 + }, + { + "name": "strimzi-tools", + "url": "https://quay.io/repository/rh_integration/strimzi-tools", + "popularity": 8526.0 + }, + { + "name": "tools", + "url": "https://quay.io/repository/operating_system_ci/tools", + "popularity": 4348.0 + }, + { + "name": "ibm-platform-api-operator", + "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", + "popularity": 47566.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 192 + }, + { + "Sysinternal Tools": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "gooddata/tools", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/gooddata/tools", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "pingidentity/ldap-sdk-tools", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/pingidentity/ldap-sdk-tools", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "puppet/puppet-dev-tools", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 8, + "Docker_Url": "https://hub.docker.com/r/puppet/puppet-dev-tools", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "build-tools-ci", + "url": "https://quay.io/repository/pantheon-public/build-tools-ci", + "popularity": 47347.0 + }, + { + "name": "light-k8s-deploy-tools", + "url": "https://quay.io/repository/presslabs/light-k8s-deploy-tools", + "popularity": 31998.0 + }, + { + "name": "strimzi-tools", + "url": "https://quay.io/repository/rh_integration/strimzi-tools", + "popularity": 8526.0 + }, + { + "name": "tools", + "url": "https://quay.io/repository/operating_system_ci/tools", + "popularity": 4348.0 + }, + { + "name": "ibm-platform-api-operator", + "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", + "popularity": 47566.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 193 + }, + { + "AccessEnum": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 194 + }, + { + "ClockRes": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 195 + }, + { + "Coreinfo": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 196 + }, + { + "DiskExt": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 197 + }, + { + "DiskMon": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 198 + }, + { + "Hex2dec": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 199 + }, + { + "Junction": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "parking-and-junction-data-generator", + "url": "https://quay.io/repository/evanshortiss/parking-and-junction-data-generator", + "popularity": 0.0 + }, + { + "name": "bioconductor-rsubread", + "url": "https://quay.io/repository/biocontainers/bioconductor-rsubread", + "popularity": 0.0 + }, + { + "name": "bioconductor-genomicalignments", + "url": "https://quay.io/repository/biocontainers/bioconductor-genomicalignments", + "popularity": 0.0 + }, + { + "name": "mapsplice", + "url": "https://quay.io/repository/biocontainers/mapsplice", + "popularity": 0.0 + }, + { + "name": "spanki", + "url": "https://quay.io/repository/biocontainers/spanki", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 200 + }, + { + "LDMDump": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 201 + }, + { + "LoadOrder": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 202 + }, + { + "PipeList": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 203 + }, + { + "Process Explorer": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/process-ma-hf-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/process-ma-hf-ppc64le", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "thanos", + "url": "https://quay.io/repository/thanos/thanos", + "popularity": 2534311.0 + }, + { + "name": "process-quarkus-example", + "url": "https://quay.io/repository/kiegroup/process-quarkus-example", + "popularity": 3505.0 + }, + { + "name": "examples-process-quarkus-example-nightly", + "url": "https://quay.io/repository/kiegroup/examples-process-quarkus-example-nightly", + "popularity": 122.0 + }, + { + "name": "examples-process-springboot-example-persistence-nightly", + "url": "https://quay.io/repository/kiegroup/examples-process-springboot-example-persistence-nightly", + "popularity": 123.0 + }, + { + "name": "examples-process-quarkus-example-events-persistence-nightly", + "url": "https://quay.io/repository/kiegroup/examples-process-quarkus-example-events-persistence-nightly", + "popularity": 126.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 204 + }, + { + "PsKill": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 205 + }, + { + "PsPasswd": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 206 + }, + { + "SDelete": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 207 + }, + { + "ShareEnum": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 208 + }, + { + "Sync": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "astronomerinc/ap-git-sync", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/astronomerinc/ap-git-sync", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "adguardhome-sync", + "url": "https://quay.io/repository/bakito/adguardhome-sync", + "popularity": 39591.0 + }, + { + "name": "export-sync-timescaledb", + "url": "https://quay.io/repository/igtdp/export-sync-timescaledb", + "popularity": 21734.0 + }, + { + "name": "normalize-sync", + "url": "https://quay.io/repository/igtdp/normalize-sync", + "popularity": 21686.0 + }, + { + "name": "concourse-s3-sync", + "url": "https://quay.io/repository/hellofresh/concourse-s3-sync", + "popularity": 13350.0 + }, + { + "name": "group-sync-operator", + "url": "https://quay.io/repository/redhat-cop/group-sync-operator", + "popularity": 15452.0 + } + ] + }, + { + "operators": [ + { + "package_id": "e99cf1c5-8be8-4cc9-9e32-90933dc99b96", + "name": "enc-key-sync", + "normalized_name": "enc-key-sync", + "logo_image_id": "33c7d9c0-9c53-49a3-a505-384d435a2c42", + "stars": 0, + "display_name": "Encrypted Images Key Syncer Helm Operator", + "description": "This operator provides facility to sync decryption keys required for Encrypted Container Images.\n\n", + "version": "0.0.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 64, + "high": 16, + "medium": 168, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1595361600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/k8s-enc-image-operator", + "container_images": [ + "docker.io/lumjjb/enc-key-sync-operator:v0.0.1" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 209 + }, + { + "TCPView": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 210 + }, + { + "VMMap": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 211 + }, + { + "Whois": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "whois", + "url": "https://quay.io/repository/westonsteimel/whois", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "chlaus", + "url": "https://quay.io/repository/appuio/chlaus", + "popularity": 2687.0 + }, + { + "name": "whois-devsensation-es", + "url": "https://quay.io/repository/avisied0/whois-devsensation-es", + "popularity": 0.0 + }, + { + "name": "circuits-fn-whois", + "url": "https://quay.io/repository/garretibm/circuits-fn-whois", + "popularity": 0.0 + }, + { + "name": "whois-with-ripe", + "url": "https://quay.io/repository/trickest/whois-with-ripe", + "popularity": 0.0 + }, + { + "name": "mkpasswd", + "url": "https://quay.io/repository/coreos/mkpasswd", + "popularity": 58.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 212 + }, + { + "Tableau": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "tableau", + "url": "https://quay.io/repository/growthstack/tableau", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "tableau-server-writer", + "url": "https://quay.io/repository/keboola/tableau-server-writer", + "popularity": 984.0 + }, + { + "name": "tableau", + "url": "https://quay.io/repository/growthstack/tableau", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 213 + }, + { + "TCPLink Enterprise Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/enterprise", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/rancher/enterprise", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "mongodb-enterprise-ops-manager", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", + "popularity": 142619.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 214 + }, + { + "Teradata": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 215 + }, + { + "Teradata QS Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/server-keysets", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/server-keysets", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/server-nomad", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/server-base", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/server-base", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 216 + }, + { + "TIBCO Business Works": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "memcached", + "url": "https://quay.io/repository/jitesoft/memcached", + "popularity": 52903.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + }, + { + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", + "popularity": 20112.0 + }, + { + "name": "daemon", + "url": "https://quay.io/repository/ceph/daemon", + "popularity": 3450.0 + }, + { + "name": "freeipa-server", + "url": "https://quay.io/repository/freeipa/freeipa-server", + "popularity": 2325.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 217 + }, + { + "TIBCO InConcert": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "tibco-bwce-base", + "url": "https://quay.io/repository/roccqqck/tibco-bwce-base", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 218 + }, + { + "TIBCO Rendezvous": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "rendezvous", + "url": "https://quay.io/repository/langdev/rendezvous", + "popularity": 0.0 + }, + { + "name": "rendezvous-server", + "url": "https://quay.io/repository/fido-fdo/rendezvous-server", + "popularity": 28.0 + }, + { + "name": "tibco-bwce-base", + "url": "https://quay.io/repository/roccqqck/tibco-bwce-base", + "popularity": 0.0 + }, + { + "name": "fdo-rendezvous-server", + "url": "https://quay.io/repository/ayosef/fdo-rendezvous-server", + "popularity": 0.0 + }, + { + "name": "fdo-rendezvous-server", + "url": "https://quay.io/repository/runcom/fdo-rendezvous-server", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 219 + }, + { + "Tivoli Access Manager": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/verify-access", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 7, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cert-manager-controller", + "url": "https://quay.io/repository/jetstack/cert-manager-controller", + "popularity": 92535501.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 88998175.0 + }, + { + "name": "cert-manager-cainjector", + "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", + "popularity": 89089055.0 + }, + { + "name": "cert-manager-acmesolver", + "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", + "popularity": 858875.0 + }, + { + "name": "olm", + "url": "https://quay.io/repository/operator-framework/olm", + "popularity": 1306060.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 220 + }, + { + "TortoiseCVS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 221 + }, + { + "TortoiseSVN": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 222 + }, + { + "TSO/ISPF": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "tso-dependencies", + "url": "https://quay.io/repository/tsone/tso-dependencies", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 223 + }, + { + "TWS zCentric": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 224 + }, + { + "Uniface": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 225 + }, + { + "ViewNow X Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/server-keysets", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/server-keysets", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/server-nomad", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/server-base", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/server-base", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 226 + }, + { + "Virtual I/O Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/server-base", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/server-base", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/server-nomad", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 227 + }, + { + "Visibroker": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 228 + }, + { + "VMware Solution Exchange Marketplace": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "redhat-marketplace-reporter", + "url": "https://quay.io/repository/rh-marketplace/redhat-marketplace-reporter", + "popularity": 31410.0 + }, + { + "name": "origin-operator-marketplace", + "url": "https://quay.io/repository/openshift/origin-operator-marketplace", + "popularity": 10301.0 + }, + { + "name": "redhat-marketplace-operator", + "url": "https://quay.io/repository/rh-marketplace/redhat-marketplace-operator", + "popularity": 8019.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "redhat-marketplace-authcheck", + "url": "https://quay.io/repository/rh-marketplace/redhat-marketplace-authcheck", + "popularity": 7001.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 229 + }, + { + "VMware Tools": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "build-tools-ci", + "url": "https://quay.io/repository/pantheon-public/build-tools-ci", + "popularity": 47347.0 + }, + { + "name": "light-k8s-deploy-tools", + "url": "https://quay.io/repository/presslabs/light-k8s-deploy-tools", + "popularity": 31998.0 + }, + { + "name": "strimzi-tools", + "url": "https://quay.io/repository/rh_integration/strimzi-tools", + "popularity": 8526.0 + }, + { + "name": "tools", + "url": "https://quay.io/repository/operating_system_ci/tools", + "popularity": 4348.0 + }, + { + "name": "ibm-platform-api-operator", + "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", + "popularity": 47566.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 230 + }, + { + "VMware vCenter": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "vcenter-test-container", + "url": "https://quay.io/repository/ansible/vcenter-test-container", + "popularity": 679.0 + }, + { + "name": "vcenter-simulator", + "url": "https://quay.io/repository/kubevirt/vcenter-simulator", + "popularity": 51.0 + }, + { + "name": "vmware-gateway", + "url": "https://quay.io/repository/amastbau/vmware-gateway", + "popularity": 1280.0 + }, + { + "name": "kubevirt-vmware", + "url": "https://quay.io/repository/kubevirt/kubevirt-vmware", + "popularity": 39.0 + }, + { + "name": "vmware", + "url": "https://quay.io/repository/nickarellano/vmware", + "popularity": 30.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 231 + }, + { + "WebFOCUS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 232 + }, + { + "WebLogic Integration": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "portainer/integration-starter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/portainer/integration-starter", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "grafana/integration-grafana-publisher", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/grafana/integration-grafana-publisher", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 353617.0 + }, + { + "name": "falcon-integration-gateway", + "url": "https://quay.io/repository/crowdstrike/falcon-integration-gateway", + "popularity": 6007.0 + }, + { + "name": "sarus-integration-tests", + "url": "https://quay.io/repository/ethcscs/sarus-integration-tests", + "popularity": 2226.0 + }, + { + "name": "billing-sidecar", + "url": "https://quay.io/repository/sdase/billing-sidecar", + "popularity": 183418.0 + }, + { + "name": "websocket-integration", + "url": "https://quay.io/repository/vollerchris/websocket-integration", + "popularity": 2471.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 233 + }, + { + "WebSphere Commerce Suite": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "websphere-liberty", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 286, + "Docker_Url": "https://hub.docker.com/_/websphere-liberty", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/websphere-liberty", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 22, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/websphere-traditional", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 203, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-traditional", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/websphere-portal", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-portal", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "app-build-suite", + "url": "https://quay.io/repository/giantswarm/app-build-suite", + "popularity": 1079.0 + }, + { + "name": "rust", + "url": "https://quay.io/repository/instrumentisto/rust", + "popularity": 2946.0 + }, + { + "name": "e2e-test-suite-tools", + "url": "https://quay.io/repository/mk-ci-cd/e2e-test-suite-tools", + "popularity": 168.0 + }, + { + "name": "egeria", + "url": "https://quay.io/repository/odpi/egeria", + "popularity": 550.0 + }, + { + "name": "blast", + "url": "https://quay.io/repository/biocontainers/blast", + "popularity": 938.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 234 + }, + { + "WebSphere Message Broker": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "snyk/broker", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 9, + "Docker_Url": "https://hub.docker.com/r/snyk/broker", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "che-plugin-artifacts-broker", + "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", + "popularity": 20225.0 + }, + { + "name": "che-plugin-artifacts-broker", + "url": "https://quay.io/repository/devplayground/che-plugin-artifacts-broker", + "popularity": 19235.0 + }, + { + "name": "message-tagging-service", + "url": "https://quay.io/repository/factory2/message-tagging-service", + "popularity": 11319.0 + }, + { + "name": "activemq-artemis-broker-kubernetes", + "url": "https://quay.io/repository/artemiscloud/activemq-artemis-broker-kubernetes", + "popularity": 6809.0 + }, + { + "name": "billing-sidecar", + "url": "https://quay.io/repository/sdase/billing-sidecar", + "popularity": 183418.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 235 + }, + { + "Wherescape Red": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-management-ingress-operator", + "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", + "popularity": 111760.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 117024.0 + }, + { + "name": "ibm-ingress-nginx-operator", + "url": "https://quay.io/repository/opencloudio/ibm-ingress-nginx-operator", + "popularity": 49461.0 + }, + { + "name": "ibm-cert-manager-operator", + "url": "https://quay.io/repository/opencloudio/ibm-cert-manager-operator", + "popularity": 50181.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 236 + }, + { + "Windchill": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "mld", + "url": "https://quay.io/repository/wwagner4/mld", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 237 + }, + { + "Windows Indexing Service": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/windows-scheduler", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/rancher/windows-scheduler", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "common-service-operator", + "url": "https://quay.io/repository/opencloudio/common-service-operator", + "popularity": 317405.0 + }, + { + "name": "service-catalog", + "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", + "popularity": 330506.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 238 + }, + { + "Windows Terminal Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/terminal", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/kasmweb/terminal", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 239 + }, + { + "WingArc SVF": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 240 + }, + { + "WinMerge": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 241 + }, + { + "WinRAR": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 242 + }, + { + "WinSCP": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 243 + }, + { + "Wise Package Studio": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "apicurio-studio-api", + "url": "https://quay.io/repository/apicurio/apicurio-studio-api", + "popularity": 14648.0 + }, + { + "name": "dev-platform-package", + "url": "https://quay.io/repository/failk8s/dev-platform-package", + "popularity": 8722.0 + }, + { + "name": "contour-package", + "url": "https://quay.io/repository/failk8s/contour-package", + "popularity": 8724.0 + }, + { + "name": "apicurio-studio-ui", + "url": "https://quay.io/repository/apicurio/apicurio-studio-ui", + "popularity": 10780.0 + }, + { + "name": "ceph", + "url": "https://quay.io/repository/ceph/ceph", + "popularity": 335511.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 244 + }, + { + "Wordpress": [ + { + "dockerhub_exact_images": [ + { + "name": "wordpress", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 4810, + "Docker_Url": "https://hub.docker.com/_/wordpress", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/wordpress", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 198, + "Docker_Url": "https://hub.docker.com/r/bitnami/wordpress", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "bitnami/wordpress", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 198, + "Docker_Url": "https://hub.docker.com/r/bitnami/wordpress", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "wordpress", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 4810, + "Docker_Url": "https://hub.docker.com/_/wordpress", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/wordpress-intel", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/wordpress-intel", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/wordpress-nginx", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 61, + "Docker_Url": "https://hub.docker.com/r/bitnami/wordpress-nginx", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "wordpress", + "url": "https://quay.io/repository/redhattraining/wordpress", + "popularity": 6242.0 + }, + { + "name": "wordpress", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/wordpress", + "popularity": 0.0 + }, + { + "name": "wordpress", + "url": "https://quay.io/repository/uninett/wordpress", + "popularity": 7.0 + }, + { + "name": "wordpress", + "url": "https://quay.io/repository/ashish11_ibm/wordpress", + "popularity": 763.0 + }, + { + "name": "wordpress", + "url": "https://quay.io/repository/cellosofia/wordpress", + "popularity": 177.0 + }, + { + "name": "wordpress", + "url": "https://quay.io/repository/swsmirror/wordpress", + "popularity": 1.0 + }, + { + "name": "wordpress", + "url": "https://quay.io/repository/curtistai/wordpress", + "popularity": 0.0 + }, + { + "name": "wordpress", + "url": "https://quay.io/repository/45air/wordpress", + "popularity": 0.0 + }, + { + "name": "wordpress", + "url": "https://quay.io/repository/pierreozoux/wordpress", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "wordpress", + "url": "https://quay.io/repository/redhattraining/wordpress", + "popularity": 6242.0 + }, + { + "name": "wordpress-runtime", + "url": "https://quay.io/repository/presslabs/wordpress-runtime", + "popularity": 166.0 + }, + { + "name": "wordpress", + "url": "https://quay.io/repository/ashish11_ibm/wordpress", + "popularity": 763.0 + }, + { + "name": "fbg-wordpress", + "url": "https://quay.io/repository/traber/fbg-wordpress", + "popularity": 170.0 + }, + { + "name": "wordpress", + "url": "https://quay.io/repository/cellosofia/wordpress", + "popularity": 177.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 245 + }, + { + "XAMPP": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 246 + }, + { + "ZAP BI": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "jenkins-slave-zap", + "url": "https://quay.io/repository/rht-labs/jenkins-slave-zap", + "popularity": 0.0 + }, + { + "name": "daemon", + "url": "https://quay.io/repository/ceph/daemon", + "popularity": 3450.0 + }, + { + "name": "enablement-zap", + "url": "https://quay.io/repository/rht-labs/enablement-zap", + "popularity": 0.0 + }, + { + "name": "zap-full-scan", + "url": "https://quay.io/repository/trickest/zap-full-scan", + "popularity": 2.0 + }, + { + "name": "ark-server", + "url": "https://quay.io/repository/hermsi1337/ark-server", + "popularity": 5.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 247 + }, + { + "ZeroMQ": [ + { + "dockerhub_exact_images": [ + { + "name": "ibmcom/zeromq", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/zeromq", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "ibmcom/zeromq", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/zeromq", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "zeromq-ubi", + "url": "https://quay.io/repository/ablock/zeromq-ubi", + "popularity": 0.0 + }, + { + "name": "zeromq-ubi", + "url": "https://quay.io/repository/eiiuwc/zeromq-ubi", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 248 + }, + { + "Zerto Virtual Replication": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "memcached-exporter", + "url": "https://quay.io/repository/prometheus/memcached-exporter", + "popularity": 65896.0 + }, + { + "name": "billing-sidecar", + "url": "https://quay.io/repository/sdase/billing-sidecar", + "popularity": 183418.0 + }, + { + "name": "kata-deploy", + "url": "https://quay.io/repository/kata-containers/kata-deploy", + "popularity": 7211.0 + }, + { + "name": "mysqld-exporter", + "url": "https://quay.io/repository/prometheus/mysqld-exporter", + "popularity": 19079.0 + }, + { + "name": "daemon", + "url": "https://quay.io/repository/ceph/daemon", + "popularity": 3450.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 249 + }, + { + "IBM PowerHA": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 250 + }, + { + "Tivoli Netcool/OMNIbus": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "aptible-omnibus-builder", + "url": "https://quay.io/repository/aptible/aptible-omnibus-builder", + "popularity": 0.0 + }, + { + "name": "docker-chef-omnibus", + "url": "https://quay.io/repository/darron/docker-chef-omnibus", + "popularity": 0.0 + }, + { + "name": "omnibus-centos", + "url": "https://quay.io/repository/ryandub/omnibus-centos", + "popularity": 0.0 + }, + { + "name": "netcool-gateway-snmp", + "url": "https://quay.io/repository/leesth/netcool-gateway-snmp", + "popularity": 0.0 + }, + { + "name": "bioconductor-geoquery", + "url": "https://quay.io/repository/biocontainers/bioconductor-geoquery", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 251 + }, + { + "IBM ILOG Views": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 252 + }, + { + "IBM ILOG CPLEX": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 253 + }, + { + "IBM ILOG Jviews": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 254 + }, + { + "IBM ILOG Elixir": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "elixir", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 512, + "Docker_Url": "https://hub.docker.com/_/elixir", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/elixir", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/circleci/elixir", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "cimg/elixir", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/cimg/elixir", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 255 + }, + { + "IBM ILOG Supply Chain Apps": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 256 + }, + { + "ILOG Solver": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "solver-rhel-8-py36", + "url": "https://quay.io/repository/thoth-station/solver-rhel-8-py36", + "popularity": 2178.0 + }, + { + "name": "solver-rhel-8-py38", + "url": "https://quay.io/repository/thoth-station/solver-rhel-8-py38", + "popularity": 2177.0 + }, + { + "name": "solver-fedora-34-py39", + "url": "https://quay.io/repository/thoth-station/solver-fedora-34-py39", + "popularity": 2178.0 + }, + { + "name": "solver-fedora-35-py310", + "url": "https://quay.io/repository/thoth-station/solver-fedora-35-py310", + "popularity": 836.0 + }, + { + "name": "solver-error-classifier-job", + "url": "https://quay.io/repository/thoth-station/solver-error-classifier-job", + "popularity": 6.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 257 + }, + { + "SQLite": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "sqlite", + "url": "https://quay.io/repository/fale/sqlite", + "popularity": 0.0 + }, + { + "name": "sqlite", + "url": "https://quay.io/repository/biocontainers/sqlite", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "ara-api", + "url": "https://quay.io/repository/recordsansible/ara-api", + "popularity": 1160.0 + }, + { + "name": "mailman-web", + "url": "https://quay.io/repository/maxking/mailman-web", + "popularity": 23.0 + }, + { + "name": "mailman-core", + "url": "https://quay.io/repository/maxking/mailman-core", + "popularity": 1.0 + }, + { + "name": "bioconductor-annotationdbi", + "url": "https://quay.io/repository/biocontainers/bioconductor-annotationdbi", + "popularity": 738.0 + }, + { + "name": "sqlite-backup-tool", + "url": "https://quay.io/repository/remram44/sqlite-backup-tool", + "popularity": 11.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 258 + }, + { + "Apache HTTP Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + }, + { + "name": "nginx-ingress-controller", + "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", + "popularity": 1153447.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 259 + }, + { + "Apache Tomcat": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/tomcat", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 46, + "Docker_Url": "https://hub.docker.com/r/bitnami/tomcat", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "tomcat", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 3358, + "Docker_Url": "https://hub.docker.com/_/tomcat", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/apache", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 81, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "pingidentity/apache-jmeter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/apache-exporter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 826844.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/strimzi/operator", + "popularity": 412398.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + } + ] + }, + { + "operators": [ + { + "package_id": "81f02c13-a52e-4191-bb38-bb905eb3cf26", + "name": "joget-tomcat-operator", + "normalized_name": "joget-tomcat-operator", + "logo_image_id": "6a68aa12-8ee8-412b-8292-8a28b50c9f06", + "stars": 0, + "display_name": "Joget DX on Apache Tomcat", + "description": "No-code/low-code platform to visually build and run apps", + "version": "0.0.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 88, + "high": 14, + "medium": 275, + "unknown": 1, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1605185999, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/jogetworkflow/", + "container_images": [] + } + ] + } + ], + "entity_type": 8, + "entity_id": 260 + }, + { + "ArcGIS Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/server-keysets", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/server-keysets", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/server-nomad", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/server-base", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/server-base", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 261 + }, + { + "Oracle WebLogic Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/server-nomad", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 262 + }, + { + "GlassFish": [ + { + "dockerhub_exact_images": [ + { + "name": "glassfish", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 152, + "Docker_Url": "https://hub.docker.com/_/glassfish", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "glassfish", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 152, + "Docker_Url": "https://hub.docker.com/_/glassfish", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/glassfish-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/glassfish-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "glassfish", + "url": "https://quay.io/repository/mohamedf0/glassfish", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "glassfish-5", + "url": "https://quay.io/repository/mlvtito/glassfish-5", + "popularity": 0.0 + }, + { + "name": "glassfish", + "url": "https://quay.io/repository/mohamedf0/glassfish", + "popularity": 0.0 + }, + { + "name": "server", + "url": "https://quay.io/repository/glassfish/server", + "popularity": 14.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 263 + }, + { + "HAProxy": [ + { + "dockerhub_exact_images": [ + { + "name": "haproxy", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1751, + "Docker_Url": "https://hub.docker.com/_/haproxy", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/haproxy", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/bitnami/haproxy", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/haproxy", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/haproxy", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "ibmcom/haproxy", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/haproxy", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/haproxy", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/bitnami/haproxy", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "haproxy", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1751, + "Docker_Url": "https://hub.docker.com/_/haproxy", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "haproxy", + "url": "https://quay.io/repository/jduimovich0/haproxy", + "popularity": 40024.0 + }, + { + "name": "haproxy", + "url": "https://quay.io/repository/openstack.kolla/haproxy", + "popularity": 1416.0 + }, + { + "name": "haproxy", + "url": "https://quay.io/repository/official-images/haproxy", + "popularity": 6.0 + }, + { + "name": "haproxy", + "url": "https://quay.io/repository/karmab/haproxy", + "popularity": 807.0 + } + ], + "quay_top_images": [ + { + "name": "haproxy-ingress", + "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", + "popularity": 929588.0 + }, + { + "name": "haproxy", + "url": "https://quay.io/repository/jduimovich0/haproxy", + "popularity": 40024.0 + }, + { + "name": "haproxy-exporter", + "url": "https://quay.io/repository/prometheus/haproxy-exporter", + "popularity": 12544.0 + }, + { + "name": "origin-haproxy-router", + "url": "https://quay.io/repository/openshift/origin-haproxy-router", + "popularity": 6924.0 + }, + { + "name": "haproxy", + "url": "https://quay.io/repository/openstack.kolla/haproxy", + "popularity": 1416.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 264 + }, + { + "IBM HTTP Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibm-semeru-runtimes", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 17, + "Docker_Url": "https://hub.docker.com/_/ibm-semeru-runtimes", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 265 + }, + { + "IIS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "iis-chess", + "url": "https://quay.io/repository/gmarkley_vi/iis-chess", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 266 + }, + { + "JBoss": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + }, + { + "name": "jboss-eap-6.4-switchyard", + "url": "https://quay.io/repository/ubpo/jboss-eap-6.4-switchyard", + "popularity": 3360.0 + }, + { + "name": "jboss-kie-mysql-extension-openshift-image", + "url": "https://quay.io/repository/kiegroup/jboss-kie-mysql-extension-openshift-image", + "popularity": 2495.0 + }, + { + "name": "egeria", + "url": "https://quay.io/repository/odpi/egeria", + "popularity": 550.0 + }, + { + "name": "wildfly", + "url": "https://quay.io/repository/wildfly/wildfly", + "popularity": 5428.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 267 + }, + { + "JBoss": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + }, + { + "name": "jboss-eap-6.4-switchyard", + "url": "https://quay.io/repository/ubpo/jboss-eap-6.4-switchyard", + "popularity": 3360.0 + }, + { + "name": "jboss-kie-mysql-extension-openshift-image", + "url": "https://quay.io/repository/kiegroup/jboss-kie-mysql-extension-openshift-image", + "popularity": 2495.0 + }, + { + "name": "egeria", + "url": "https://quay.io/repository/odpi/egeria", + "popularity": 550.0 + }, + { + "name": "wildfly", + "url": "https://quay.io/repository/wildfly/wildfly", + "popularity": 5428.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 268 + }, + { + "Kitura": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/kitura-ubuntu", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 39, + "Docker_Url": "https://hub.docker.com/r/ibmcom/kitura-ubuntu", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/kitura-ubuntu14", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/kitura-ubuntu14", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 269 + }, + { + "Lotus Domino": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "domino", + "url": "https://quay.io/repository/biocontainers/domino", + "popularity": 0.0 + }, + { + "name": "domino-nab", + "url": "https://quay.io/repository/numenta/domino-nab", + "popularity": 0.0 + }, + { + "name": "lotus", + "url": "https://quay.io/repository/thanhleviet/lotus", + "popularity": 0.0 + }, + { + "name": "domino-osjs", + "url": "https://quay.io/repository/jradchenko/domino-osjs", + "popularity": 0.0 + }, + { + "name": "domino", + "url": "https://quay.io/repository/ryan_fuller/domino", + "popularity": 10.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 270 + }, + { + "Lucee": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "lucee", + "url": "https://quay.io/repository/daemonite/lucee", + "popularity": 28.0 + } + ], + "quay_top_images": [ + { + "name": "lucee-shibboleth", + "url": "https://quay.io/repository/daemonite/lucee-shibboleth", + "popularity": 64.0 + }, + { + "name": "lucee", + "url": "https://quay.io/repository/daemonite/lucee", + "popularity": 28.0 + }, + { + "name": "alpine-lucee", + "url": "https://quay.io/repository/justincarter/alpine-lucee", + "popularity": 0.0 + }, + { + "name": "lucee-helloworld", + "url": "https://quay.io/repository/trevorbox/lucee-helloworld", + "popularity": 0.0 + }, + { + "name": "lucee5", + "url": "https://quay.io/repository/lucee/lucee5", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 271 + }, + { + "Netscape Application Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "application-service", + "url": "https://quay.io/repository/redhat-appstudio/application-service", + "popularity": 72875.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 272 + }, + { + "Netscape Enterprise Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/enterprise", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/rancher/enterprise", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "mongodb-enterprise-ops-manager", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", + "popularity": 142619.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 273 + }, + { + "Nginx": [ + { + "dockerhub_exact_images": [ + { + "name": "nginx", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 17081, + "Docker_Url": "https://hub.docker.com/_/nginx", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/nginx", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 136, + "Docker_Url": "https://hub.docker.com/r/bitnami/nginx", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ubuntu/nginx", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 52, + "Docker_Url": "https://hub.docker.com/r/ubuntu/nginx", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/nginx", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/nginx", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/nginx", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/rancher/nginx", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/nginx", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/circleci/nginx", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "nginx", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 17081, + "Docker_Url": "https://hub.docker.com/_/nginx", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/nginx", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/circleci/nginx", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/nginx", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 136, + "Docker_Url": "https://hub.docker.com/r/bitnami/nginx", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ubuntu/nginx", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 52, + "Docker_Url": "https://hub.docker.com/r/ubuntu/nginx", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/nginx", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/nginx", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "nginx", + "url": "https://quay.io/repository/openshift-scale/nginx", + "popularity": 89226.0 + }, + { + "name": "nginx", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/nginx", + "popularity": 0.0 + }, + { + "name": "nginx", + "url": "https://quay.io/repository/jitesoft/nginx", + "popularity": 80338.0 + }, + { + "name": "nginx", + "url": "https://quay.io/repository/cloud-bulldozer/nginx", + "popularity": 205743.0 + }, + { + "name": "nginx", + "url": "https://quay.io/repository/ocsci/nginx", + "popularity": 26367.0 + }, + { + "name": "nginx", + "url": "https://quay.io/repository/bedrock/nginx", + "popularity": 30433.0 + }, + { + "name": "nginx", + "url": "https://quay.io/repository/testing-farm/nginx", + "popularity": 7833.0 + }, + { + "name": "nginx", + "url": "https://quay.io/repository/aptible/nginx", + "popularity": 17063.0 + } + ], + "quay_top_images": [ + { + "name": "nginx-ingress-controller", + "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", + "popularity": 1153447.0 + }, + { + "name": "nginx-116-centos7", + "url": "https://quay.io/repository/centos7/nginx-116-centos7", + "popularity": 158502.0 + }, + { + "name": "nginx-proxy", + "url": "https://quay.io/repository/ukhomeofficedigital/nginx-proxy", + "popularity": 90012.0 + }, + { + "name": "nginx", + "url": "https://quay.io/repository/openshift-scale/nginx", + "popularity": 89226.0 + }, + { + "name": "nginx", + "url": "https://quay.io/repository/cloud-bulldozer/nginx", + "popularity": 205743.0 + } + ] + }, + { + "operators": [ + { + "package_id": "991459e3-4bd0-4446-b6ee-e7ceb5ec0a3e", + "name": "apicast-community-operator", + "normalized_name": "apicast-community-operator", + "logo_image_id": "aabb3684-3024-4890-a7e1-c09ca17bb4d4", + "stars": 0, + "display_name": "APIcast", + "description": "APIcast is an API gateway built on top of NGINX. It is part of the 3scale API Management Platform", + "version": "0.4.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 55, + "high": 5, + "medium": 112, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1572216000, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/3scale/apicast-operator", + "container_images": [ + "quay.io/3scale/apicast-operator:v0.4.0" + ] + } + ] + } + ], + "entity_type": 8, + "entity_id": 274 + }, + { + "Oracle Application Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "application-service", + "url": "https://quay.io/repository/redhat-appstudio/application-service", + "popularity": 72875.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 275 + }, + { + "Oracle WebCenter Content Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "okd-content", + "url": "https://quay.io/repository/openshift/okd-content", + "popularity": 9422045.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 276 + }, + { + "Pivotal tc Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/server-base", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/server-base", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/server-nomad", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 277 + }, + { + "Resin Web Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "common-web-ui", + "url": "https://quay.io/repository/opencloudio/common-web-ui", + "popularity": 353182.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 278 + }, + { + "SAP NetWeaver App Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "cap-app-proxy", + "url": "https://quay.io/repository/codefresh/cap-app-proxy", + "popularity": 75183.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 279 + }, + { + "Spark": [ + { + "dockerhub_exact_images": [ + { + "name": "bitnami/spark", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 106, + "Docker_Url": "https://hub.docker.com/r/bitnami/spark", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/spark", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/rancher/spark", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "rancher/spark", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/rancher/spark", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/spark", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 106, + "Docker_Url": "https://hub.docker.com/r/bitnami/spark", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/spark-conf", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/spark-conf", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "spark", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/spark", + "popularity": 0.0 + }, + { + "name": "spark", + "url": "https://quay.io/repository/diem/spark", + "popularity": 1673.0 + }, + { + "name": "spark", + "url": "https://quay.io/repository/domino/spark", + "popularity": 189.0 + }, + { + "name": "spark", + "url": "https://quay.io/repository/iguazio/spark", + "popularity": 26.0 + } + ], + "quay_top_images": [ + { + "name": "spark-operator", + "url": "https://quay.io/repository/radanalyticsio/spark-operator", + "popularity": 25798.0 + }, + { + "name": "s2i-spark-minimal-notebook", + "url": "https://quay.io/repository/odh-jupyterhub/s2i-spark-minimal-notebook", + "popularity": 23719.0 + }, + { + "name": "s2i-spark-scipy-notebook", + "url": "https://quay.io/repository/odh-jupyterhub/s2i-spark-scipy-notebook", + "popularity": 23298.0 + }, + { + "name": "apache.spark", + "url": "https://quay.io/repository/klovercloud/apache.spark", + "popularity": 12669.0 + }, + { + "name": "spark-environment", + "url": "https://quay.io/repository/domino/spark-environment", + "popularity": 2980.0 + } + ] + }, + { + "operators": [ + { + "package_id": "9773a9a8-7d03-4e60-b59e-2f2e8d24b71b", + "name": "spark-gcp", + "normalized_name": "spark-gcp", + "logo_image_id": "4d0de698-1fa5-44a3-80dd-a9e46ce21749", + "stars": 0, + "display_name": "Spark Operator", + "description": "Apache Spark is a unified analytics engine for large-scale data processing.", + "version": "2.4.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 159, + "high": 94, + "medium": 144, + "unknown": 3, + "critical": 50 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525859, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/GoogleCloudPlatform/spark-on-k8s-operator", + "container_images": [] + }, + { + "package_id": "eb4a0114-8ab6-4e87-8546-551989a7d154", + "name": "radanalytics-spark", + "normalized_name": "radanalytics-spark", + "logo_image_id": "834aafa5-4b7f-47ad-8e92-fcdb16b1deb5", + "stars": 0, + "display_name": "Apache Spark Operator", + "description": "An operator for managing the Apache Spark clusters and intelligent applications that spawn those clusters.", + "version": "1.0.2", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1547726400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/radanalyticsio/spark-operator", + "container_images": [ + "quay.io/radanalyticsio/spark-operator:1.0.2" + ] + }, + { + "package_id": "4dc920bd-ace2-479e-aa50-f2637f92e594", + "name": "kubestone", + "normalized_name": "kubestone", + "logo_image_id": "3fc7f31a-e7bc-4d0a-bdcd-ef5572e31b76", + "stars": 2, + "display_name": "Kubestone", + "description": "Kubestone is a benchmarking Operator that can evaluate the performance of Kubernetes installations and external services.", + "version": "0.4.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 4, + "high": 9, + "medium": 14, + "unknown": 0, + "critical": 1 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1571401920, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/xridge/kubestone", + "container_images": [] + } + ] + } + ], + "entity_type": 8, + "entity_id": 280 + }, + { + "Oracle iPlanet Web Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "common-web-ui", + "url": "https://quay.io/repository/opencloudio/common-web-ui", + "popularity": 353182.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 281 + }, + { + "UltiDev Web Server Pro": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "common-web-ui", + "url": "https://quay.io/repository/opencloudio/common-web-ui", + "popularity": 353182.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 282 + }, + { + "webMethods Integration Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "grafana/integration-grafana-publisher", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/grafana/integration-grafana-publisher", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 283 + }, + { + "Websphere Application Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "websphere-liberty", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 286, + "Docker_Url": "https://hub.docker.com/_/websphere-liberty", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/websphere-liberty", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 22, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "application-service", + "url": "https://quay.io/repository/redhat-appstudio/application-service", + "popularity": 72875.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 284 + }, + { + "WebSphere Liberty": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/websphere-liberty", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 22, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "websphere-liberty", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 286, + "Docker_Url": "https://hub.docker.com/_/websphere-liberty", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/websphere-liberty-s2i", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty-s2i", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "open-liberty-certified", + "url": "https://quay.io/repository/operator-pipeline-prod/open-liberty-certified", + "popularity": 336.0 + }, + { + "name": "open-liberty", + "url": "https://quay.io/repository/operatorhubio/open-liberty", + "popularity": 308.0 + }, + { + "name": "liberty-bell", + "url": "https://quay.io/repository/jakolehm/liberty-bell", + "popularity": 19.0 + }, + { + "name": "liberty-rest", + "url": "https://quay.io/repository/marrober/liberty-rest", + "popularity": 63.0 + }, + { + "name": "liberty-appimage", + "url": "https://quay.io/repository/kennedn/liberty-appimage", + "popularity": 67.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 285 + }, + { + "WebSphere Portal Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/websphere-portal", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-portal", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 286 + }, + { + "Websphere Process Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/websphere-liberty", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 22, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "websphere-liberty", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 286, + "Docker_Url": "https://hub.docker.com/_/websphere-liberty", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "thanos", + "url": "https://quay.io/repository/thanos/thanos", + "popularity": 2534311.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 287 + }, + { + "WebSphere Process Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/websphere-liberty", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 22, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "websphere-liberty", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 286, + "Docker_Url": "https://hub.docker.com/_/websphere-liberty", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "thanos", + "url": "https://quay.io/repository/thanos/thanos", + "popularity": 2534311.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 288 + }, + { + "Oracle Real-Time Decisions": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/core-oracle-7", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-7", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/core-oracle-8", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-8", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-7-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-8-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "oracle-12c", + "url": "https://quay.io/repository/maksymbilenko/oracle-12c", + "popularity": 15052.0 + }, + { + "name": "memcached-exporter", + "url": "https://quay.io/repository/prometheus/memcached-exporter", + "popularity": 65896.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + }, + { + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", + "popularity": 20112.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 289 + }, + { + "CA API Gateway": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/api", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/api", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kaazing-gateway", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 62, + "Docker_Url": "https://hub.docker.com/_/kaazing-gateway", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "express-gateway", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 66, + "Docker_Url": "https://hub.docker.com/_/express-gateway", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "wallarm/api-firewall", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 23, + "Docker_Url": "https://hub.docker.com/r/wallarm/api-firewall", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v6", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "api-firewall", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 17, + "Docker_Url": "https://hub.docker.com/_/api-firewall", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "gateway", + "url": "https://quay.io/repository/solo-io/gateway", + "popularity": 190213.0 + }, + { + "name": "ibm-platform-api-operator", + "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", + "popularity": 47566.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "insights-api", + "url": "https://quay.io/repository/fairwinds/insights-api", + "popularity": 31210.0 + }, + { + "name": "k8s-sidecar", + "url": "https://quay.io/repository/kiwigrid/k8s-sidecar", + "popularity": 1320477.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 4, + "entity_id": 290 + }, + { + "Citrix ADC SDX": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/citrix-workspace", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/kasmweb/citrix-workspace", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "citrix-k8s-ingress-controller", + "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", + "popularity": 137872.0 + }, + { + "name": "citrix-k8s-node-controller", + "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", + "popularity": 41494.0 + }, + { + "name": "citrix-adc-metrics-exporter", + "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", + "popularity": 39011.0 + }, + { + "name": "citrix-observability-exporter", + "url": "https://quay.io/repository/citrix/citrix-observability-exporter", + "popularity": 1975.0 + }, + { + "name": "citrix-k8s-cpx-ingress", + "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", + "popularity": 460.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 4, + "entity_id": 291 + }, + { + "Citrix ADC MPX": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/citrix-workspace", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/kasmweb/citrix-workspace", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "citrix-k8s-ingress-controller", + "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", + "popularity": 137872.0 + }, + { + "name": "citrix-k8s-node-controller", + "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", + "popularity": 41494.0 + }, + { + "name": "citrix-adc-metrics-exporter", + "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", + "popularity": 39011.0 + }, + { + "name": "citrix-observability-exporter", + "url": "https://quay.io/repository/citrix/citrix-observability-exporter", + "popularity": 1975.0 + }, + { + "name": "citrix-k8s-cpx-ingress", + "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", + "popularity": 460.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 4, + "entity_id": 292 + }, + { + "HP Nonstop": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "hildafrederica", + "url": "https://quay.io/repository/hfredca/hildafrederica", + "popularity": 0.0 + }, + { + "name": "viva99situsjudionline", + "url": "https://quay.io/repository/kimjoohon98/viva99situsjudionline", + "popularity": 0.0 + }, + { + "name": "12", + "url": "https://quay.io/repository/elixirclinictcr1/12", + "popularity": 0.0 + }, + { + "name": "viva99char", + "url": "https://quay.io/repository/viva99char/viva99char", + "popularity": 0.0 + }, + { + "name": "agen", + "url": "https://quay.io/repository/agen8et/agen", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 4, + "entity_id": 293 + }, + { + "IBM DataPower Gateway": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/datapower", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 106, + "Docker_Url": "https://hub.docker.com/r/ibmcom/datapower", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 4, + "entity_id": 294 + }, + { + "IBM Power Systems": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 4, + "entity_id": 295 + }, + { + "Intel Xeon Processor": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "hacbs-jvm-build-request-processor", + "url": "https://quay.io/repository/redhat-appstudio/hacbs-jvm-build-request-processor", + "popularity": 461.0 + }, + { + "name": "visa-processor", + "url": "https://quay.io/repository/rhacs-demo/visa-processor", + "popularity": 1208.0 + }, + { + "name": "mastercard-processor", + "url": "https://quay.io/repository/rhacs-demo/mastercard-processor", + "popularity": 670.0 + }, + { + "name": "hacbs-jvm-build-request-processor", + "url": "https://quay.io/repository/gabemontero/hacbs-jvm-build-request-processor", + "popularity": 349.0 + }, + { + "name": "statsd-exporter", + "url": "https://quay.io/repository/prometheus/statsd-exporter", + "popularity": 8725.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 4, + "entity_id": 296 + }, + { + "Net Optics Taps": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/net", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/rancher/net", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + }, + { + "name": "samtools", + "url": "https://quay.io/repository/biocontainers/samtools", + "popularity": 47366.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 4, + "entity_id": 297 + }, + { + "Oracle Exadata": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/core-oracle-7", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-7", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/core-oracle-8", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-8", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-7-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-8-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "oracle-12c", + "url": "https://quay.io/repository/maksymbilenko/oracle-12c", + "popularity": 15052.0 + }, + { + "name": "debezium-container-for-oracle", + "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", + "popularity": 6801.0 + }, + { + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", + "popularity": 20112.0 + }, + { + "name": "edb-postgres-advanced", + "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", + "popularity": 13004.0 + }, + { + "name": "mysqld-exporter", + "url": "https://quay.io/repository/prometheus/mysqld-exporter", + "popularity": 19079.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 4, + "entity_id": 298 + }, + { + "AutoIt": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 299 + }, + { + "AWK": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "awk", + "url": "https://quay.io/repository/shenglai/awk", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "gawk", + "url": "https://quay.io/repository/biocontainers/gawk", + "popularity": 2812.0 + }, + { + "name": "nfs-client-provisioner", + "url": "https://quay.io/repository/vbouchaud/nfs-client-provisioner", + "popularity": 2310.0 + }, + { + "name": "kie-server-showcase", + "url": "https://quay.io/repository/kiegroup/kie-server-showcase", + "popularity": 661.0 + }, + { + "name": "bioawk", + "url": "https://quay.io/repository/biocontainers/bioawk", + "popularity": 426.0 + }, + { + "name": "ubuntu", + "url": "https://quay.io/repository/ibm/ubuntu", + "popularity": 14.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 300 + }, + { + "BASIC": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "basic", + "url": "https://quay.io/repository/biocontainers/basic", + "popularity": 420.0 + } + ], + "quay_top_images": [ + { + "name": "nginx-basic-auth-proxy", + "url": "https://quay.io/repository/dtan4/nginx-basic-auth-proxy", + "popularity": 6015.0 + }, + { + "name": "nginx", + "url": "https://quay.io/repository/jitesoft/nginx", + "popularity": 80338.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + }, + { + "name": "basic-ocp-demo", + "url": "https://quay.io/repository/freedomben/basic-ocp-demo", + "popularity": 1050.0 + }, + { + "name": "haproxy-exporter", + "url": "https://quay.io/repository/prometheus/haproxy-exporter", + "popularity": 12544.0 + } + ] + }, + { + "operators": [ + { + "package_id": "750de553-42cf-4543-a794-32c2ab048f5d", + "name": "flink-kubernetes-operator", + "normalized_name": "flink-kubernetes-operator", + "logo_image_id": "f75201e4-3f1f-44be-b1b6-71a5b969ca37", + "stars": 0, + "display_name": "Flink Kubernetes Operator", + "description": "## Flink Kubernetes Operator\n\nFlink Kubernetes Operator acts as a control plane to manage the complete deployment lifecycle of Apache Flink applications.\n\n## Installation\nThis operator can be installed from [OperatorHub.io](https://operatorhub.io/operator/flink-kubernetes-operator). After the\noperator is successfully installed, start a basic flink application using:\nRestart the flink operator:\n```sh\nkubectl create -f https://raw.githubusercontent.com/apache/flink-kubernetes-operator/release-1.0/examples/basic.yaml\n```", + "version": "1.0.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 82, + "high": 25, + "medium": 11, + "unknown": 0, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656633600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/apache/flink-kubernetes-operator.git", + "container_images": [ + "docker.io/apache/flink-kubernetes-operator:1.0.1" + ] + } + ] + } + ], + "entity_type": 9, + "entity_id": 301 + }, + { + "Brainscript": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 302 + }, + { + "C": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [ + { + "package_id": "f4411bd7-db63-4d12-9c59-9267599fdf4f", + "name": "alvearie-imaging-ingestion", + "normalized_name": "alvearie-imaging-ingestion", + "logo_image_id": "4c92b67d-e6a6-413f-9ec5-ec98c74415e2", + "stars": 0, + "display_name": "Alvearie Imaging Ingestion Operator", + "description": "The Alvearie Imaging Ingestion provides a collection of components for extending enterprise medical imaging informatics systems to Kubernetes.", + "version": "0.0.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1617895795, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/Alvearie/imaging-ingestion", + "container_images": [] + }, + { + "package_id": "280420eb-a3b0-46fa-bef3-4300e85a7ad1", + "name": "cass-operator-community", + "normalized_name": "cass-operator-community", + "logo_image_id": "ac0cc465-c42f-43d9-a288-ec178d9f3ef9", + "stars": 0, + "display_name": "DataStax Kubernetes Operator for Apache Cassandra", + "description": "Simple provisioning, turn-key operations, and automated remediation of Apache Cassandra clusters\n", + "version": "1.10.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 7, + "high": 0, + "medium": 7, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1652441433, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/k8ssandra/cass-operator", + "container_images": [] + }, + { + "package_id": "d4e5a79a-1ff7-426a-8fbc-59a103b14b41", + "name": "qserv-operator", + "normalized_name": "qserv-operator", + "logo_image_id": "2684e3e7-54a4-4b02-a3f9-b55336a5d3cf", + "stars": 0, + "display_name": "Qserv operator", + "description": "Create and maintain highly-available Qserv clusters on Kubernetes", + "version": "2022.1.1-rc1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1643383828, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/lsst/qserv-operator", + "container_images": [] + }, + { + "package_id": "614a5896-0b60-4e2b-a5b7-3b694658ab2a", + "name": "strimzi-kafka-operator", + "normalized_name": "strimzi-kafka-operator", + "logo_image_id": "83c34ef5-d2f7-4282-94ab-468dea859677", + "stars": 18, + "display_name": "Strimzi", + "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", + "version": "0.29.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 412, + "high": 38, + "medium": 473, + "unknown": 7, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1652572867, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/strimzi/strimzi-kafka-operator", + "container_images": [ + "quay.io/strimzi/operator", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka-bridge", + "quay.io/strimzi/jmxtrans", + "quay.io/strimzi/kaniko-executor", + "quay.io/strimzi/maven-builder" + ] + }, + { + "package_id": "cd93e666-2b6d-419e-879d-3890b5f7c200", + "name": "keycloak-operator", + "normalized_name": "keycloak-operator", + "logo_image_id": "fd90a09f-d3e5-45bf-8c8f-589634592369", + "stars": 14, + "display_name": "Keycloak Operator", + "description": "An Operator for installing and managing Keycloak", + "version": "20.0.0-alpha.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 38, + "high": 0, + "medium": 47, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656518437, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/keycloak/keycloak", + "container_images": [ + "quay.io/keycloak/keycloak-operator:18.0.2" + ] + }, + { + "package_id": "2d28ca38-12b7-469f-b82e-f00edde51d19", + "name": "prometheus", + "normalized_name": "prometheus", + "logo_image_id": "150dd205-ff78-4478-824c-ffb2a140edcf", + "stars": 14, + "display_name": "Prometheus Operator", + "description": "Manage the full lifecycle of configuring and managing Prometheus and Alertmanager servers.", + "version": "0.47.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 2, + "unknown": 2, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1618530180, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/prometheus-operator/prometheus-operator", + "container_images": [ + "quay.io/prometheus-operator/prometheus-operator:v0.47.0" + ] + }, + { + "package_id": "b1aa6353-146c-477c-943e-5a5558b65dc3", + "name": "elastic-cloud-eck", + "normalized_name": "elastic-cloud-eck", + "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", + "stars": 13, + "display_name": "Elasticsearch (ECK) Operator", + "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", + "version": "2.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1657006653, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/elastic/cloud-on-k8s", + "container_images": [] + }, + { + "package_id": "62d3a0f9-3d23-48f0-9bee-9b4f2060c6df", + "name": "postgresql", + "normalized_name": "postgresql", + "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", + "stars": 13, + "display_name": "Crunchy Postgres for Kubernetes", + "description": "Production Postgres Made Easy", + "version": "5.1.2", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 23, + "high": 0, + "medium": 32, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1657571435, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/CrunchyData/postgres-operator", + "container_images": [] + }, + { + "package_id": "0c44b6e2-521b-4485-9d14-fd8f01ea6a4d", + "name": "knative-operator", + "normalized_name": "knative-operator", + "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", + "stars": 12, + "display_name": "Knative Operator", + "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", + "version": "1.5.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656460800, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/knative/operator", + "container_images": [] + }, + { + "package_id": "bb525733-deee-4431-9b51-4897c8d6d21b", + "name": "redis-operator", + "normalized_name": "redis-operator", + "logo_image_id": "60503f77-253d-4491-adff-e6e55c547ef7", + "stars": 9, + "display_name": "Redis Operator", + "description": "A Golang based redis operator that will make/oversee Redis standalone/cluster mode setup on top of the Kubernetes.", + "version": "0.11.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1657396835, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/ot-container-kit/redis-operator", + "container_images": [ + "quay.io/opstree/redis-operator:v0.11.0" + ] + }, + { + "package_id": "6d932520-44ce-4954-a8ea-f687ad8cf170", + "name": "rook-ceph", + "normalized_name": "rook-ceph", + "logo_image_id": "9234e87f-8c06-4e85-ad9c-3b4f0b95fbd6", + "stars": 8, + "display_name": "Rook-Ceph", + "description": "Install and maintain Ceph Storage cluster", + "version": "1.1.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 509, + "high": 33, + "medium": 719, + "unknown": 0, + "critical": 7 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525859, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/rook/rook", + "container_images": [] + }, + { + "package_id": "fa7ed65b-05ef-428d-952c-05f929661806", + "name": "argocd-operator", + "normalized_name": "argocd-operator", + "logo_image_id": "b26087ab-be34-4750-abab-955e472c3887", + "stars": 7, + "display_name": "Argo CD", + "description": "Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.", + "version": "0.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1650443438, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/argoproj-labs/argocd-operator", + "container_images": [ + "quay.io/argoprojlabs/argocd-operator" + ] + }, + { + "package_id": "5667c55e-0a99-4011-9ab6-7bc3487f43a7", + "name": "grafana-operator", + "normalized_name": "grafana-operator", + "logo_image_id": "27dba515-e77b-4e81-b7ac-484df9e02086", + "stars": 7, + "display_name": "Grafana Operator", + "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", + "version": "4.4.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 4, + "high": 0, + "medium": 3, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1652090412, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/grafana-operator/grafana-operator", + "container_images": [ + "quay.io/grafana-operator/grafana-operator:v4.4.1" + ] + }, + { + "package_id": "ac42caed-76b2-42c8-bf98-533fd044eca6", + "name": "starboard-operator", + "normalized_name": "starboard-operator", + "logo_image_id": "7750edcf-42ac-436d-920a-341ef3f473e8", + "stars": 7, + "display_name": "Starboard Operator", + "description": "Keeps security report resources updated", + "version": "0.15.6", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1654107072, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aquasecurity/starboard", + "container_images": [ + "docker.io/aquasec/starboard-operator:0.15.6" + ] + }, + { + "package_id": "66a8d8ef-e05d-44be-b704-474e144b8b9b", + "name": "tidb-operator", + "normalized_name": "tidb-operator", + "logo_image_id": "b328c448-efbb-4aab-a463-8437ab8898bb", + "stars": 7, + "display_name": "TiDB Operator", + "description": "TiDB Operator manages TiDB clusters on Kubernetes and automates tasks related to operating a TiDB cluster. It makes TiDB a truly cloud-native database.", + "version": "1.3.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 4, + "high": 8, + "medium": 31, + "unknown": 8, + "critical": 2 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1645693233, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/pingcap/tidb-operator", + "container_images": [] + }, + { + "package_id": "95833125-3a5b-4da5-a985-21f172238a61", + "name": "clickhouse", + "normalized_name": "clickhouse", + "logo_image_id": "f00ce069-4086-4f36-bb6e-bb805373bfa7", + "stars": 5, + "display_name": "Altinity Operator for ClickHouse", + "description": "ClickHouse Operator manages full lifecycle of ClickHouse clusters.", + "version": "0.18.3", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1573466400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/altinity/clickhouse-operator", + "container_images": [] + }, + { + "package_id": "0e2ae061-9331-4d12-b4a6-eec1def5eaea", + "name": "flux", + "normalized_name": "flux", + "logo_image_id": "59b3d9ab-5b8b-45bc-935f-cf711c5fece0", + "stars": 5, + "display_name": "Flux", + "description": "Flux is a Continuous Delivery solution for Kubernetes.", + "version": "0.31.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656606635, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [] + }, + { + "package_id": "e3f8d531-6ea5-48ce-ac99-505c79414881", + "name": "percona-xtradb-cluster-operator", + "normalized_name": "percona-xtradb-cluster-operator", + "logo_image_id": "0b8875cd-6661-4269-9cf6-0fd92d59017b", + "stars": 5, + "display_name": "Percona Distribution for MySQL Operator", + "description": "Percona Distribution for MySQL Operator manages the lifecycle of Percona XtraDB cluster instances.", + "version": "1.10.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 5, + "medium": 48, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1640178704, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/percona/percona-xtradb-cluster-operator", + "container_images": [] + }, + { + "package_id": "f5c53828-c741-4ea7-97b6-89071b3c0b7e", + "name": "rocketmq-operator", + "normalized_name": "rocketmq-operator", + "logo_image_id": "350d3cf0-d7e6-4500-871c-733f06713494", + "stars": 5, + "display_name": "RocketMQ Operator", + "description": "The RocketMQ Operator manages the Apache RocketMQ service instances deployed on the Kubernetes cluster.", + "version": "0.2.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 142, + "high": 39, + "medium": 107, + "unknown": 3, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525858, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/apache/rocketmq-operator", + "container_images": [] + }, + { + "package_id": "2ffd7a04-d749-4bcf-b682-a2483c3dd4fe", + "name": "storageos", + "normalized_name": "storageos", + "logo_image_id": "ce032151-64d8-4b3b-b172-016dac88d973", + "stars": 5, + "display_name": "StorageOS", + "description": "Cloud-native, persistent storage for containers.", + "version": "2.6.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 5, + "medium": 44, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1647018033, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/storageos/operator", + "container_images": [] + } + ] + } + ], + "entity_type": 9, + "entity_id": 303 + }, + { + "C#": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [ + { + "package_id": "f4411bd7-db63-4d12-9c59-9267599fdf4f", + "name": "alvearie-imaging-ingestion", + "normalized_name": "alvearie-imaging-ingestion", + "logo_image_id": "4c92b67d-e6a6-413f-9ec5-ec98c74415e2", + "stars": 0, + "display_name": "Alvearie Imaging Ingestion Operator", + "description": "The Alvearie Imaging Ingestion provides a collection of components for extending enterprise medical imaging informatics systems to Kubernetes.", + "version": "0.0.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1617895795, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/Alvearie/imaging-ingestion", + "container_images": [] + }, + { + "package_id": "280420eb-a3b0-46fa-bef3-4300e85a7ad1", + "name": "cass-operator-community", + "normalized_name": "cass-operator-community", + "logo_image_id": "ac0cc465-c42f-43d9-a288-ec178d9f3ef9", + "stars": 0, + "display_name": "DataStax Kubernetes Operator for Apache Cassandra", + "description": "Simple provisioning, turn-key operations, and automated remediation of Apache Cassandra clusters\n", + "version": "1.10.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 7, + "high": 0, + "medium": 7, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1652441433, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/k8ssandra/cass-operator", + "container_images": [] + }, + { + "package_id": "d4e5a79a-1ff7-426a-8fbc-59a103b14b41", + "name": "qserv-operator", + "normalized_name": "qserv-operator", + "logo_image_id": "2684e3e7-54a4-4b02-a3f9-b55336a5d3cf", + "stars": 0, + "display_name": "Qserv operator", + "description": "Create and maintain highly-available Qserv clusters on Kubernetes", + "version": "2022.1.1-rc1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1643383828, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/lsst/qserv-operator", + "container_images": [] + }, + { + "package_id": "614a5896-0b60-4e2b-a5b7-3b694658ab2a", + "name": "strimzi-kafka-operator", + "normalized_name": "strimzi-kafka-operator", + "logo_image_id": "83c34ef5-d2f7-4282-94ab-468dea859677", + "stars": 18, + "display_name": "Strimzi", + "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", + "version": "0.29.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 412, + "high": 38, + "medium": 473, + "unknown": 7, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1652572867, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/strimzi/strimzi-kafka-operator", + "container_images": [ + "quay.io/strimzi/operator", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka-bridge", + "quay.io/strimzi/jmxtrans", + "quay.io/strimzi/kaniko-executor", + "quay.io/strimzi/maven-builder" + ] + }, + { + "package_id": "cd93e666-2b6d-419e-879d-3890b5f7c200", + "name": "keycloak-operator", + "normalized_name": "keycloak-operator", + "logo_image_id": "fd90a09f-d3e5-45bf-8c8f-589634592369", + "stars": 14, + "display_name": "Keycloak Operator", + "description": "An Operator for installing and managing Keycloak", + "version": "20.0.0-alpha.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 38, + "high": 0, + "medium": 47, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656518437, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/keycloak/keycloak", + "container_images": [ + "quay.io/keycloak/keycloak-operator:18.0.2" + ] + }, + { + "package_id": "2d28ca38-12b7-469f-b82e-f00edde51d19", + "name": "prometheus", + "normalized_name": "prometheus", + "logo_image_id": "150dd205-ff78-4478-824c-ffb2a140edcf", + "stars": 14, + "display_name": "Prometheus Operator", + "description": "Manage the full lifecycle of configuring and managing Prometheus and Alertmanager servers.", + "version": "0.47.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 2, + "unknown": 2, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1618530180, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/prometheus-operator/prometheus-operator", + "container_images": [ + "quay.io/prometheus-operator/prometheus-operator:v0.47.0" + ] + }, + { + "package_id": "b1aa6353-146c-477c-943e-5a5558b65dc3", + "name": "elastic-cloud-eck", + "normalized_name": "elastic-cloud-eck", + "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", + "stars": 13, + "display_name": "Elasticsearch (ECK) Operator", + "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", + "version": "2.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1657006653, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/elastic/cloud-on-k8s", + "container_images": [] + }, + { + "package_id": "62d3a0f9-3d23-48f0-9bee-9b4f2060c6df", + "name": "postgresql", + "normalized_name": "postgresql", + "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", + "stars": 13, + "display_name": "Crunchy Postgres for Kubernetes", + "description": "Production Postgres Made Easy", + "version": "5.1.2", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 23, + "high": 0, + "medium": 32, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1657571435, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/CrunchyData/postgres-operator", + "container_images": [] + }, + { + "package_id": "0c44b6e2-521b-4485-9d14-fd8f01ea6a4d", + "name": "knative-operator", + "normalized_name": "knative-operator", + "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", + "stars": 12, + "display_name": "Knative Operator", + "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", + "version": "1.5.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656460800, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/knative/operator", + "container_images": [] + }, + { + "package_id": "bb525733-deee-4431-9b51-4897c8d6d21b", + "name": "redis-operator", + "normalized_name": "redis-operator", + "logo_image_id": "60503f77-253d-4491-adff-e6e55c547ef7", + "stars": 9, + "display_name": "Redis Operator", + "description": "A Golang based redis operator that will make/oversee Redis standalone/cluster mode setup on top of the Kubernetes.", + "version": "0.11.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1657396835, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/ot-container-kit/redis-operator", + "container_images": [ + "quay.io/opstree/redis-operator:v0.11.0" + ] + }, + { + "package_id": "6d932520-44ce-4954-a8ea-f687ad8cf170", + "name": "rook-ceph", + "normalized_name": "rook-ceph", + "logo_image_id": "9234e87f-8c06-4e85-ad9c-3b4f0b95fbd6", + "stars": 8, + "display_name": "Rook-Ceph", + "description": "Install and maintain Ceph Storage cluster", + "version": "1.1.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 509, + "high": 33, + "medium": 719, + "unknown": 0, + "critical": 7 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525859, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/rook/rook", + "container_images": [] + }, + { + "package_id": "fa7ed65b-05ef-428d-952c-05f929661806", + "name": "argocd-operator", + "normalized_name": "argocd-operator", + "logo_image_id": "b26087ab-be34-4750-abab-955e472c3887", + "stars": 7, + "display_name": "Argo CD", + "description": "Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.", + "version": "0.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1650443438, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/argoproj-labs/argocd-operator", + "container_images": [ + "quay.io/argoprojlabs/argocd-operator" + ] + }, + { + "package_id": "5667c55e-0a99-4011-9ab6-7bc3487f43a7", + "name": "grafana-operator", + "normalized_name": "grafana-operator", + "logo_image_id": "27dba515-e77b-4e81-b7ac-484df9e02086", + "stars": 7, + "display_name": "Grafana Operator", + "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", + "version": "4.4.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 4, + "high": 0, + "medium": 3, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1652090412, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/grafana-operator/grafana-operator", + "container_images": [ + "quay.io/grafana-operator/grafana-operator:v4.4.1" + ] + }, + { + "package_id": "ac42caed-76b2-42c8-bf98-533fd044eca6", + "name": "starboard-operator", + "normalized_name": "starboard-operator", + "logo_image_id": "7750edcf-42ac-436d-920a-341ef3f473e8", + "stars": 7, + "display_name": "Starboard Operator", + "description": "Keeps security report resources updated", + "version": "0.15.6", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1654107072, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aquasecurity/starboard", + "container_images": [ + "docker.io/aquasec/starboard-operator:0.15.6" + ] + }, + { + "package_id": "66a8d8ef-e05d-44be-b704-474e144b8b9b", + "name": "tidb-operator", + "normalized_name": "tidb-operator", + "logo_image_id": "b328c448-efbb-4aab-a463-8437ab8898bb", + "stars": 7, + "display_name": "TiDB Operator", + "description": "TiDB Operator manages TiDB clusters on Kubernetes and automates tasks related to operating a TiDB cluster. It makes TiDB a truly cloud-native database.", + "version": "1.3.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 4, + "high": 8, + "medium": 31, + "unknown": 8, + "critical": 2 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1645693233, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/pingcap/tidb-operator", + "container_images": [] + }, + { + "package_id": "95833125-3a5b-4da5-a985-21f172238a61", + "name": "clickhouse", + "normalized_name": "clickhouse", + "logo_image_id": "f00ce069-4086-4f36-bb6e-bb805373bfa7", + "stars": 5, + "display_name": "Altinity Operator for ClickHouse", + "description": "ClickHouse Operator manages full lifecycle of ClickHouse clusters.", + "version": "0.18.3", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1573466400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/altinity/clickhouse-operator", + "container_images": [] + }, + { + "package_id": "0e2ae061-9331-4d12-b4a6-eec1def5eaea", + "name": "flux", + "normalized_name": "flux", + "logo_image_id": "59b3d9ab-5b8b-45bc-935f-cf711c5fece0", + "stars": 5, + "display_name": "Flux", + "description": "Flux is a Continuous Delivery solution for Kubernetes.", + "version": "0.31.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656606635, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [] + }, + { + "package_id": "e3f8d531-6ea5-48ce-ac99-505c79414881", + "name": "percona-xtradb-cluster-operator", + "normalized_name": "percona-xtradb-cluster-operator", + "logo_image_id": "0b8875cd-6661-4269-9cf6-0fd92d59017b", + "stars": 5, + "display_name": "Percona Distribution for MySQL Operator", + "description": "Percona Distribution for MySQL Operator manages the lifecycle of Percona XtraDB cluster instances.", + "version": "1.10.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 5, + "medium": 48, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1640178704, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/percona/percona-xtradb-cluster-operator", + "container_images": [] + }, + { + "package_id": "f5c53828-c741-4ea7-97b6-89071b3c0b7e", + "name": "rocketmq-operator", + "normalized_name": "rocketmq-operator", + "logo_image_id": "350d3cf0-d7e6-4500-871c-733f06713494", + "stars": 5, + "display_name": "RocketMQ Operator", + "description": "The RocketMQ Operator manages the Apache RocketMQ service instances deployed on the Kubernetes cluster.", + "version": "0.2.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 142, + "high": 39, + "medium": 107, + "unknown": 3, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525858, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/apache/rocketmq-operator", + "container_images": [] + }, + { + "package_id": "2ffd7a04-d749-4bcf-b682-a2483c3dd4fe", + "name": "storageos", + "normalized_name": "storageos", + "logo_image_id": "ce032151-64d8-4b3b-b172-016dac88d973", + "stars": 5, + "display_name": "StorageOS", + "description": "Cloud-native, persistent storage for containers.", + "version": "2.6.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 5, + "medium": 44, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1647018033, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/storageos/operator", + "container_images": [] + } + ] + } + ], + "entity_type": 9, + "entity_id": 304 + }, + { + "C++": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [ + { + "package_id": "f4411bd7-db63-4d12-9c59-9267599fdf4f", + "name": "alvearie-imaging-ingestion", + "normalized_name": "alvearie-imaging-ingestion", + "logo_image_id": "4c92b67d-e6a6-413f-9ec5-ec98c74415e2", + "stars": 0, + "display_name": "Alvearie Imaging Ingestion Operator", + "description": "The Alvearie Imaging Ingestion provides a collection of components for extending enterprise medical imaging informatics systems to Kubernetes.", + "version": "0.0.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1617895795, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/Alvearie/imaging-ingestion", + "container_images": [] + }, + { + "package_id": "280420eb-a3b0-46fa-bef3-4300e85a7ad1", + "name": "cass-operator-community", + "normalized_name": "cass-operator-community", + "logo_image_id": "ac0cc465-c42f-43d9-a288-ec178d9f3ef9", + "stars": 0, + "display_name": "DataStax Kubernetes Operator for Apache Cassandra", + "description": "Simple provisioning, turn-key operations, and automated remediation of Apache Cassandra clusters\n", + "version": "1.10.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 7, + "high": 0, + "medium": 7, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1652441433, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/k8ssandra/cass-operator", + "container_images": [] + }, + { + "package_id": "d4e5a79a-1ff7-426a-8fbc-59a103b14b41", + "name": "qserv-operator", + "normalized_name": "qserv-operator", + "logo_image_id": "2684e3e7-54a4-4b02-a3f9-b55336a5d3cf", + "stars": 0, + "display_name": "Qserv operator", + "description": "Create and maintain highly-available Qserv clusters on Kubernetes", + "version": "2022.1.1-rc1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1643383828, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/lsst/qserv-operator", + "container_images": [] + }, + { + "package_id": "614a5896-0b60-4e2b-a5b7-3b694658ab2a", + "name": "strimzi-kafka-operator", + "normalized_name": "strimzi-kafka-operator", + "logo_image_id": "83c34ef5-d2f7-4282-94ab-468dea859677", + "stars": 18, + "display_name": "Strimzi", + "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", + "version": "0.29.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 412, + "high": 38, + "medium": 473, + "unknown": 7, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1652572867, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/strimzi/strimzi-kafka-operator", + "container_images": [ + "quay.io/strimzi/operator", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka-bridge", + "quay.io/strimzi/jmxtrans", + "quay.io/strimzi/kaniko-executor", + "quay.io/strimzi/maven-builder" + ] + }, + { + "package_id": "cd93e666-2b6d-419e-879d-3890b5f7c200", + "name": "keycloak-operator", + "normalized_name": "keycloak-operator", + "logo_image_id": "fd90a09f-d3e5-45bf-8c8f-589634592369", + "stars": 14, + "display_name": "Keycloak Operator", + "description": "An Operator for installing and managing Keycloak", + "version": "20.0.0-alpha.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 38, + "high": 0, + "medium": 47, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656518437, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/keycloak/keycloak", + "container_images": [ + "quay.io/keycloak/keycloak-operator:18.0.2" + ] + }, + { + "package_id": "2d28ca38-12b7-469f-b82e-f00edde51d19", + "name": "prometheus", + "normalized_name": "prometheus", + "logo_image_id": "150dd205-ff78-4478-824c-ffb2a140edcf", + "stars": 14, + "display_name": "Prometheus Operator", + "description": "Manage the full lifecycle of configuring and managing Prometheus and Alertmanager servers.", + "version": "0.47.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 2, + "unknown": 2, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1618530180, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/prometheus-operator/prometheus-operator", + "container_images": [ + "quay.io/prometheus-operator/prometheus-operator:v0.47.0" + ] + }, + { + "package_id": "b1aa6353-146c-477c-943e-5a5558b65dc3", + "name": "elastic-cloud-eck", + "normalized_name": "elastic-cloud-eck", + "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", + "stars": 13, + "display_name": "Elasticsearch (ECK) Operator", + "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", + "version": "2.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1657006653, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/elastic/cloud-on-k8s", + "container_images": [] + }, + { + "package_id": "62d3a0f9-3d23-48f0-9bee-9b4f2060c6df", + "name": "postgresql", + "normalized_name": "postgresql", + "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", + "stars": 13, + "display_name": "Crunchy Postgres for Kubernetes", + "description": "Production Postgres Made Easy", + "version": "5.1.2", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 23, + "high": 0, + "medium": 32, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1657571435, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/CrunchyData/postgres-operator", + "container_images": [] + }, + { + "package_id": "0c44b6e2-521b-4485-9d14-fd8f01ea6a4d", + "name": "knative-operator", + "normalized_name": "knative-operator", + "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", + "stars": 12, + "display_name": "Knative Operator", + "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", + "version": "1.5.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656460800, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/knative/operator", + "container_images": [] + }, + { + "package_id": "bb525733-deee-4431-9b51-4897c8d6d21b", + "name": "redis-operator", + "normalized_name": "redis-operator", + "logo_image_id": "60503f77-253d-4491-adff-e6e55c547ef7", + "stars": 9, + "display_name": "Redis Operator", + "description": "A Golang based redis operator that will make/oversee Redis standalone/cluster mode setup on top of the Kubernetes.", + "version": "0.11.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1657396835, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/ot-container-kit/redis-operator", + "container_images": [ + "quay.io/opstree/redis-operator:v0.11.0" + ] + }, + { + "package_id": "6d932520-44ce-4954-a8ea-f687ad8cf170", + "name": "rook-ceph", + "normalized_name": "rook-ceph", + "logo_image_id": "9234e87f-8c06-4e85-ad9c-3b4f0b95fbd6", + "stars": 8, + "display_name": "Rook-Ceph", + "description": "Install and maintain Ceph Storage cluster", + "version": "1.1.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 509, + "high": 33, + "medium": 719, + "unknown": 0, + "critical": 7 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525859, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/rook/rook", + "container_images": [] + }, + { + "package_id": "fa7ed65b-05ef-428d-952c-05f929661806", + "name": "argocd-operator", + "normalized_name": "argocd-operator", + "logo_image_id": "b26087ab-be34-4750-abab-955e472c3887", + "stars": 7, + "display_name": "Argo CD", + "description": "Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.", + "version": "0.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1650443438, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/argoproj-labs/argocd-operator", + "container_images": [ + "quay.io/argoprojlabs/argocd-operator" + ] + }, + { + "package_id": "5667c55e-0a99-4011-9ab6-7bc3487f43a7", + "name": "grafana-operator", + "normalized_name": "grafana-operator", + "logo_image_id": "27dba515-e77b-4e81-b7ac-484df9e02086", + "stars": 7, + "display_name": "Grafana Operator", + "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", + "version": "4.4.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 4, + "high": 0, + "medium": 3, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1652090412, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/grafana-operator/grafana-operator", + "container_images": [ + "quay.io/grafana-operator/grafana-operator:v4.4.1" + ] + }, + { + "package_id": "ac42caed-76b2-42c8-bf98-533fd044eca6", + "name": "starboard-operator", + "normalized_name": "starboard-operator", + "logo_image_id": "7750edcf-42ac-436d-920a-341ef3f473e8", + "stars": 7, + "display_name": "Starboard Operator", + "description": "Keeps security report resources updated", + "version": "0.15.6", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1654107072, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aquasecurity/starboard", + "container_images": [ + "docker.io/aquasec/starboard-operator:0.15.6" + ] + }, + { + "package_id": "66a8d8ef-e05d-44be-b704-474e144b8b9b", + "name": "tidb-operator", + "normalized_name": "tidb-operator", + "logo_image_id": "b328c448-efbb-4aab-a463-8437ab8898bb", + "stars": 7, + "display_name": "TiDB Operator", + "description": "TiDB Operator manages TiDB clusters on Kubernetes and automates tasks related to operating a TiDB cluster. It makes TiDB a truly cloud-native database.", + "version": "1.3.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 4, + "high": 8, + "medium": 31, + "unknown": 8, + "critical": 2 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1645693233, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/pingcap/tidb-operator", + "container_images": [] + }, + { + "package_id": "95833125-3a5b-4da5-a985-21f172238a61", + "name": "clickhouse", + "normalized_name": "clickhouse", + "logo_image_id": "f00ce069-4086-4f36-bb6e-bb805373bfa7", + "stars": 5, + "display_name": "Altinity Operator for ClickHouse", + "description": "ClickHouse Operator manages full lifecycle of ClickHouse clusters.", + "version": "0.18.3", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1573466400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/altinity/clickhouse-operator", + "container_images": [] + }, + { + "package_id": "0e2ae061-9331-4d12-b4a6-eec1def5eaea", + "name": "flux", + "normalized_name": "flux", + "logo_image_id": "59b3d9ab-5b8b-45bc-935f-cf711c5fece0", + "stars": 5, + "display_name": "Flux", + "description": "Flux is a Continuous Delivery solution for Kubernetes.", + "version": "0.31.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656606635, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [] + }, + { + "package_id": "e3f8d531-6ea5-48ce-ac99-505c79414881", + "name": "percona-xtradb-cluster-operator", + "normalized_name": "percona-xtradb-cluster-operator", + "logo_image_id": "0b8875cd-6661-4269-9cf6-0fd92d59017b", + "stars": 5, + "display_name": "Percona Distribution for MySQL Operator", + "description": "Percona Distribution for MySQL Operator manages the lifecycle of Percona XtraDB cluster instances.", + "version": "1.10.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 5, + "medium": 48, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1640178704, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/percona/percona-xtradb-cluster-operator", + "container_images": [] + }, + { + "package_id": "f5c53828-c741-4ea7-97b6-89071b3c0b7e", + "name": "rocketmq-operator", + "normalized_name": "rocketmq-operator", + "logo_image_id": "350d3cf0-d7e6-4500-871c-733f06713494", + "stars": 5, + "display_name": "RocketMQ Operator", + "description": "The RocketMQ Operator manages the Apache RocketMQ service instances deployed on the Kubernetes cluster.", + "version": "0.2.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 142, + "high": 39, + "medium": 107, + "unknown": 3, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525858, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/apache/rocketmq-operator", + "container_images": [] + }, + { + "package_id": "2ffd7a04-d749-4bcf-b682-a2483c3dd4fe", + "name": "storageos", + "normalized_name": "storageos", + "logo_image_id": "ce032151-64d8-4b3b-b172-016dac88d973", + "stars": 5, + "display_name": "StorageOS", + "description": "Cloud-native, persistent storage for containers.", + "version": "2.6.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 5, + "medium": 44, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1647018033, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/storageos/operator", + "container_images": [] + } + ] + } + ], + "entity_type": 9, + "entity_id": 305 + }, + { + "Visual C++": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "visual-qontract", + "url": "https://quay.io/repository/app-sre/visual-qontract", + "popularity": 4012.0 + }, + { + "name": "visual-regression", + "url": "https://quay.io/repository/babylonhealth/visual-regression", + "popularity": 70.0 + }, + { + "name": "ccc", + "url": "https://quay.io/repository/jlospinoso/ccc", + "popularity": 0.0 + }, + { + "name": "sqlitebrowser", + "url": "https://quay.io/repository/biocontainers/sqlitebrowser", + "popularity": 0.0 + }, + { + "name": "dpp", + "url": "https://quay.io/repository/brainboxdotcc/dpp", + "popularity": 0.0 + } + ] + }, + { + "operators": [ + { + "package_id": "81f02c13-a52e-4191-bb38-bb905eb3cf26", + "name": "joget-tomcat-operator", + "normalized_name": "joget-tomcat-operator", + "logo_image_id": "6a68aa12-8ee8-412b-8292-8a28b50c9f06", + "stars": 0, + "display_name": "Joget DX on Apache Tomcat", + "description": "No-code/low-code platform to visually build and run apps", + "version": "0.0.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 88, + "high": 14, + "medium": 275, + "unknown": 1, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1605185999, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/jogetworkflow/", + "container_images": [] + }, + { + "package_id": "9a3a17ec-190f-4a44-b389-c049e0d5345e", + "name": "lightbend-console-operator", + "normalized_name": "lightbend-console-operator", + "logo_image_id": "809339cf-e417-4da3-9d6f-00d185ee802f", + "stars": 0, + "display_name": "Lightbend Console Operator", + "description": "Lightbend Console provides visualizations for Akka, Play, and Lagom applications. See https://developer.lightbend.com/docs/console/current/ for details.", + "version": "0.0.1", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1568764800, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/lightbend/console-charts/tree/master/operator", + "container_images": [] + } + ] + } + ], + "entity_type": 9, + "entity_id": 306 + }, + { + "Cascading Style Sheets": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "memcached-exporter", + "url": "https://quay.io/repository/prometheus/memcached-exporter", + "popularity": 65896.0 + }, + { + "name": "redis-operator", + "url": "https://quay.io/repository/opstree/redis-operator", + "popularity": 70825.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 307 + }, + { + "Clipper": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "bioconductor-clipper", + "url": "https://quay.io/repository/biocontainers/bioconductor-clipper", + "popularity": 369.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 308 + }, + { + "CLIST": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 309 + }, + { + "COBOL": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cobol-on-wheelchair", + "url": "https://quay.io/repository/shelman/cobol-on-wheelchair", + "popularity": 0.0 + }, + { + "name": "docker-ibmcloud-grant-cluster", + "url": "https://quay.io/repository/ibm-avocados/docker-ibmcloud-grant-cluster", + "popularity": 0.0 + }, + { + "name": "docker-kubectl", + "url": "https://quay.io/repository/awesome/docker-kubectl", + "popularity": 0.0 + }, + { + "name": "docker-kubectl", + "url": "https://quay.io/repository/ibm-avocados/docker-kubectl", + "popularity": 0.0 + }, + { + "name": "docker-ibmcloud-addon-istio", + "url": "https://quay.io/repository/ibm-avocados/docker-ibmcloud-addon-istio", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 310 + }, + { + "ColdFusion Markup Language": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "adobecoldfusion/coldfusion", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/adobecoldfusion/coldfusion", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "intel/language-translation", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-translation", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "intel/language-modeling", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + }, + { + "name": "spicedb", + "url": "https://quay.io/repository/authzed/spicedb", + "popularity": 12045.0 + }, + { + "name": "statsd-exporter", + "url": "https://quay.io/repository/prometheus/statsd-exporter", + "popularity": 8725.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 311 + }, + { + "Data Language Interface": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "zen-data-sorcerer", + "url": "https://quay.io/repository/opencloudio/zen-data-sorcerer", + "popularity": 236759.0 + }, + { + "name": "metering-data-manager", + "url": "https://quay.io/repository/opencloudio/metering-data-manager", + "popularity": 211902.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 312 + }, + { + "Delphi": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "delphi-council-is", + "url": "https://quay.io/repository/klenkes74/delphi-council-is", + "popularity": 1848.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 313 + }, + { + "Easytrieve": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 314 + }, + { + "Expect": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "expect", + "url": "https://quay.io/repository/baseimage/expect", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "expect", + "url": "https://quay.io/repository/baseimage/expect", + "popularity": 0.0 + }, + { + "name": "roundcube", + "url": "https://quay.io/repository/instrumentisto/roundcube", + "popularity": 0.0 + }, + { + "name": "php", + "url": "https://quay.io/repository/islamic-network/php", + "popularity": 9.0 + }, + { + "name": "exporter-merger", + "url": "https://quay.io/repository/jkreileder/exporter-merger", + "popularity": 9.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 315 + }, + { + "eXtensible HyperText Markup Language": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "intel/language-translation", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-translation", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "intel/language-modeling", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + }, + { + "name": "gateway", + "url": "https://quay.io/repository/bluecat/gateway", + "popularity": 20475.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 316 + }, + { + "Extensible Markup Language": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "intel/language-translation", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-translation", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "intel/language-modeling", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + }, + { + "name": "gateway", + "url": "https://quay.io/repository/bluecat/gateway", + "popularity": 20475.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 317 + }, + { + "Extensible Markup Language": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "intel/language-translation", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-translation", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "intel/language-modeling", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + }, + { + "name": "gateway", + "url": "https://quay.io/repository/bluecat/gateway", + "popularity": 20475.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 318 + }, + { + "Extensible Stylesheet Language": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "intel/language-translation", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-translation", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "intel/language-modeling", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + }, + { + "name": "gateway", + "url": "https://quay.io/repository/bluecat/gateway", + "popularity": 20475.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 319 + }, + { + "Extensible Stylesheet Language Transformations": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "intel/language-translation", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-translation", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "intel/language-modeling", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + }, + { + "name": "gateway", + "url": "https://quay.io/repository/bluecat/gateway", + "popularity": 20475.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 320 + }, + { + "FOCUS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "focus", + "url": "https://quay.io/repository/biocontainers/focus", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "ruby", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/ruby", + "popularity": 0.0 + }, + { + "name": "bioconductor-affyio", + "url": "https://quay.io/repository/biocontainers/bioconductor-affyio", + "popularity": 756.0 + }, + { + "name": "sogo", + "url": "https://quay.io/repository/sheogorath/sogo", + "popularity": 6.0 + }, + { + "name": "web-archives", + "url": "https://quay.io/repository/glamworkbench/web-archives", + "popularity": 2.0 + }, + { + "name": "uptime-kuma", + "url": "https://quay.io/repository/k3rnel-pan1c/uptime-kuma", + "popularity": 58.0 + } + ] + }, + { + "operators": [ + { + "package_id": "0c44b6e2-521b-4485-9d14-fd8f01ea6a4d", + "name": "knative-operator", + "normalized_name": "knative-operator", + "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", + "stars": 12, + "display_name": "Knative Operator", + "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", + "version": "1.5.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656460800, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/knative/operator", + "container_images": [] + } + ] + } + ], + "entity_type": 9, + "entity_id": 321 + }, + { + "Fortran": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "fortran", + "url": "https://quay.io/repository/eriktrent/fortran", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "fortran", + "url": "https://quay.io/repository/eriktrent/fortran", + "popularity": 0.0 + }, + { + "name": "centos7-gcc", + "url": "https://quay.io/repository/horvathd/centos7-gcc", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 322 + }, + { + "Go": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [ + { + "package_id": "b134bee3-539b-4fe6-bc24-4aa7e3e1f11c", + "name": "postgresql-operator-dev4devs-com", + "normalized_name": "postgresql-operator-dev4devs-com", + "logo_image_id": "2a4da4ce-b519-46af-bb1c-d845e5d9a772", + "stars": 0, + "display_name": "PostgreSQL Operator by Dev4Ddevs.com", + "description": "Operator in Go developed using the Operator Framework to package, install, configure and manage a PostgreSQL database. This project includes backup feature.", + "version": "0.1.1", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1567929600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/dev4devs-com/postgresql-operator", + "container_images": [ + "quay.io/dev4devs-com/postgresql-operator:0.1.1" + ] + }, + { + "package_id": "bb525733-deee-4431-9b51-4897c8d6d21b", + "name": "redis-operator", + "normalized_name": "redis-operator", + "logo_image_id": "60503f77-253d-4491-adff-e6e55c547ef7", + "stars": 9, + "display_name": "Redis Operator", + "description": "A Golang based redis operator that will make/oversee Redis standalone/cluster mode setup on top of the Kubernetes.", + "version": "0.11.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1657396835, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/ot-container-kit/redis-operator", + "container_images": [ + "quay.io/opstree/redis-operator:v0.11.0" + ] + }, + { + "package_id": "146e5627-361e-4c23-97d5-9cbe4febba81", + "name": "logging-operator", + "normalized_name": "logging-operator", + "logo_image_id": "0fb27181-3404-4379-a8fc-7ebdbf801340", + "stars": 3, + "display_name": "Logging Operator", + "description": "A golang-based operator to create and manage EFK (Elasticsearch, Fluentd, and Kibana) stack on Kubernetes.", + "version": "0.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1657182636, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/ot-container-kit/logging-operator", + "container_images": [ + "quay.io/opstree/logging-operator:v0.3.0" + ] + }, + { + "package_id": "44ad7306-e2e9-46ad-ba77-75d9d394fa3d", + "name": "external-secrets-operator", + "normalized_name": "external-secrets-operator", + "logo_image_id": "3e9f62d2-6760-4599-a686-026510e964cf", + "stars": 0, + "display_name": "External Secrets Operator", + "description": "Operator to configure external-secrets helm-chart based operator", + "version": "0.5.7", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 11, + "medium": 52, + "unknown": 5, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1637539200, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/external-secrets/external-secrets-helm-operator", + "container_images": [] + }, + { + "package_id": "3fc60ded-1f08-4f56-940c-cedac69b6d75", + "name": "intel-device-plugins-operator", + "normalized_name": "intel-device-plugins-operator", + "logo_image_id": "ba8bd566-6f5c-44b0-bf23-a6d7f5f5605b", + "stars": 0, + "display_name": "Intel Device Plugins Operator", + "description": "This operator is a Kubernetes custom controller whose goal is to serve the installation and lifecycle management of Intel device plugins for Kubernetes.", + "version": "0.24.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1653550238, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/intel/intel-device-plugins-for-kubernetes", + "container_images": [] + }, + { + "package_id": "4ee2dcf6-71a1-483e-92da-9a73558e5a59", + "name": "mongodb-operator", + "normalized_name": "mongodb-operator", + "logo_image_id": "6caecf02-bf01-4f32-bcb5-c585ea2fdd80", + "stars": 0, + "display_name": "MongoDB Operator", + "description": "A golang based operator to create and manage MongoDB standalone setup and cluster setup", + "version": "0.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1649241035, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/ot-container-kit/mongodb-operator", + "container_images": [ + "quay.io/opstree/mongodb-operator:v0.3.0" + ] + }, + { + "package_id": "ef099afc-17ab-47a3-b7d3-1e2eed1700ed", + "name": "silicom-sts-operator", + "normalized_name": "silicom-sts-operator", + "logo_image_id": "74b45744-5c17-4159-9133-76a8ac399659", + "stars": 0, + "display_name": "silicom-sts-operator", + "description": "This Operator is a Kubernetes custom controller whose goal is to serve the installation and lifecycle management of Silicom STS device plugins for Kubernetes.", + "version": "0.0.1", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1637609425, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "github.com/silicomdk/sts-operator", + "container_images": [ + "quay.io/silicom/sts-operator:v0.0.1" + ] + }, + { + "package_id": "9773a9a8-7d03-4e60-b59e-2f2e8d24b71b", + "name": "spark-gcp", + "normalized_name": "spark-gcp", + "logo_image_id": "4d0de698-1fa5-44a3-80dd-a9e46ce21749", + "stars": 0, + "display_name": "Spark Operator", + "description": "Apache Spark is a unified analytics engine for large-scale data processing.", + "version": "2.4.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 159, + "high": 94, + "medium": 144, + "unknown": 3, + "critical": 50 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525859, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/GoogleCloudPlatform/spark-on-k8s-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 9, + "entity_id": 323 + }, + { + "GraphQL": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "graphql", + "url": "https://quay.io/repository/wasmoffload/graphql", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "model-graphql", + "url": "https://quay.io/repository/sisense/model-graphql", + "popularity": 2057.0 + }, + { + "name": "graphql-api", + "url": "https://quay.io/repository/stoplight/graphql-api", + "popularity": 2240.0 + }, + { + "name": "concourse-resource-github-list-repos", + "url": "https://quay.io/repository/coralogix/concourse-resource-github-list-repos", + "popularity": 55422.0 + }, + { + "name": "hasura-graphql-engine", + "url": "https://quay.io/repository/ivanch77/hasura-graphql-engine", + "popularity": 218.0 + }, + { + "name": "hasura-graphql-engine", + "url": "https://quay.io/repository/eskorn/hasura-graphql-engine", + "popularity": 258.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 324 + }, + { + "Groovy": [ + { + "dockerhub_exact_images": [ + { + "name": "groovy", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 130, + "Docker_Url": "https://hub.docker.com/_/groovy", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "groovy", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 130, + "Docker_Url": "https://hub.docker.com/_/groovy", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "groovy", + "url": "https://quay.io/repository/official-images/groovy", + "popularity": 0.0 + }, + { + "name": "groovy", + "url": "https://quay.io/repository/swsmirror/groovy", + "popularity": 1.0 + }, + { + "name": "groovy", + "url": "https://quay.io/repository/dockerlibrary/groovy", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "groovy", + "url": "https://quay.io/repository/official-images/groovy", + "popularity": 0.0 + }, + { + "name": "groovy", + "url": "https://quay.io/repository/swsmirror/groovy", + "popularity": 1.0 + }, + { + "name": "defectdojo-client", + "url": "https://quay.io/repository/sdase/defectdojo-client", + "popularity": 5805.0 + }, + { + "name": "ansible-groovy", + "url": "https://quay.io/repository/andrewrothstein/ansible-groovy", + "popularity": 0.0 + }, + { + "name": "groovy", + "url": "https://quay.io/repository/dockerlibrary/groovy", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 325 + }, + { + "HiveQL": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 326 + }, + { + "Hypertext Markup Language": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "intel/language-translation", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-translation", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "intel/language-modeling", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + }, + { + "name": "kafka-bridge", + "url": "https://quay.io/repository/strimzi/kafka-bridge", + "popularity": 14377.0 + }, + { + "name": "spicedb", + "url": "https://quay.io/repository/authzed/spicedb", + "popularity": 12045.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 327 + }, + { + "IBM High Level Assembler": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibm-semeru-runtimes", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 17, + "Docker_Url": "https://hub.docker.com/_/ibm-semeru-runtimes", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 328 + }, + { + "IBM i Control Language": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibm-semeru-runtimes", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 17, + "Docker_Url": "https://hub.docker.com/_/ibm-semeru-runtimes", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 329 + }, + { + "IBM Informix-4GL": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 330 + }, + { + "Java": [ + { + "dockerhub_exact_images": [ + { + "name": "java", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1976, + "Docker_Url": "https://hub.docker.com/_/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/java", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/bitnami/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/java", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/circleci/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "circleci/java", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/circleci/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/java", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/bitnami/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "java", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1976, + "Docker_Url": "https://hub.docker.com/_/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/java-dev", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/java-dev", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/java-nginx", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/circleci/java-nginx", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "java", + "url": "https://quay.io/repository/tamr/java", + "popularity": 492.0 + }, + { + "name": "java", + "url": "https://quay.io/repository/enxadahost/java", + "popularity": 19927.0 + }, + { + "name": "java", + "url": "https://quay.io/repository/reishost/java", + "popularity": 3686.0 + } + ], + "quay_top_images": [ + { + "name": "java", + "url": "https://quay.io/repository/enxadahost/java", + "popularity": 19927.0 + }, + { + "name": "docker-java-swiss-knife", + "url": "https://quay.io/repository/scentbird/docker-java-swiss-knife", + "popularity": 9651.0 + }, + { + "name": "jkube-java", + "url": "https://quay.io/repository/jkube/jkube-java", + "popularity": 4274.0 + }, + { + "name": "java", + "url": "https://quay.io/repository/reishost/java", + "popularity": 3686.0 + }, + { + "name": "ubi-quarkus-native-s2i", + "url": "https://quay.io/repository/quarkus/ubi-quarkus-native-s2i", + "popularity": 35834.0 + } + ] + }, + { + "operators": [ + { + "package_id": "92b17f5c-3196-41bc-bdeb-291700c2c8c1", + "name": "wildfly", + "normalized_name": "wildfly", + "logo_image_id": "8188073c-d86d-460a-9662-3bfa7e3d313f", + "stars": 1, + "display_name": "WildFly", + "description": "Operator that deploys and manages Java applications running on WildFly.", + "version": "0.5.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 4, + "medium": 45, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1646726400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/wildfly/wildfly-operator", + "container_images": [ + "quay.io/wildfly/wildfly-operator:0.5.3" + ] + }, + { + "package_id": "57488c09-4b44-4ba8-aeed-2c141cf0b30e", + "name": "eclipse-che", + "normalized_name": "eclipse-che", + "logo_image_id": "f2ea20a6-ebd1-42f6-b7e7-b9dd0f36bd22", + "stars": 3, + "display_name": "Eclipse Che", + "description": "A Kube-native development solution that delivers portable and collaborative developer workspaces.", + "version": "7.39.2", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1637755976, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/eclipse-che/che-operator", + "container_images": [ + "quay.io/eclipse/che-operator", + "quay.io/che-incubator/configbump", + "quay.io/che-incubator/header-rewrite-proxy", + "quay.io/devfile/devworkspace-controller", + "quay.io/eclipse/che--centos--postgresql-13-centos7", + "quay.io/eclipse/che--centos--postgresql-96-centos7", + "quay.io/eclipse/che--traefik", + "quay.io/eclipse/che-backup-server-rest", + "quay.io/eclipse/che-dashboard", + "quay.io/eclipse/che-devfile-registry", + "quay.io/eclipse/che-jwtproxy", + "quay.io/eclipse/che-keycloak", + "quay.io/eclipse/che-plugin-artifacts-broker", + "quay.io/eclipse/che-plugin-metadata-broker", + "quay.io/eclipse/che-plugin-registry", + "quay.io/eclipse/che-server", + "quay.io/eclipse/che-tls-secret-creator", + "quay.io/openshift/origin-kube-rbac-proxy", + "quay.io/openshift/origin-oauth-proxy", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/windupeng/mta-vscode-extension", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-theia", + "quay.io/eclipse/che-machine-exec", + "quay.io/eclipse/che-theia-endpoint-runtime-binary", + "index.docker.io/ksmster/che-editor-jupyter", + "index.docker.io/dirigiblelabs/dirigible-openshift", + "quay.io/che-incubator/che-idea", + "quay.io/che-incubator/che-pycharm", + "index.docker.io/wsskeleton/eclipse-broadway", + "index.docker.io/codercom/code-server", + "quay.io/eclipse/che-buildah-base", + "quay.io/eclipse/che-sidecar-workspace-data-sync", + "quay.io/eclipse/che-buildkit-base", + "quay.io/eclipse/che--centos--mongodb-36-centos7", + "quay.io/eclipse/che--centos--mongodb-36-centos7", + "quay.io/eclipse/che--centos--mysql-57-centos7", + "quay.io/eclipse/che-cpp-rhel7", + "quay.io/eclipse/che-dotnet-2.2", + "quay.io/eclipse/che-dotnet-3.1", + "quay.io/eclipse/che-golang-1.17", + "quay.io/eclipse/che-java11-gradle", + "quay.io/eclipse/che-java11-maven", + "quay.io/eclipse/che-java8-maven", + "quay.io/eclipse/che-nodejs10-community", + "quay.io/eclipse/che-nodejs10-ubi", + "quay.io/eclipse/che-nodejs12-community", + "quay.io/eclipse/che-nodejs8-centos", + "quay.io/eclipse/che-php-7", + "quay.io/eclipse/che-python-3.8", + "quay.io/eclipse/che-quarkus", + "quay.io/eclipse/che-rust-1.39" + ] + }, + { + "package_id": "e1d953c6-0d94-4f74-b053-dfc343b8f64b", + "name": "atlasmap-operator", + "normalized_name": "atlasmap-operator", + "logo_image_id": "146447f0-73b1-425d-957c-52033e4ba4a9", + "stars": 1, + "display_name": "AtlasMap Operator", + "description": "AtlasMap is a data mapping solution with an interactive web based user interface, that simplifies configuring integrations between Java, XML, and JSON data sources", + "version": "0.4.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1631338230, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/atlasmap/atlasmap-operator", + "container_images": [ + "quay.io/atlasmap/atlasmap-operator:0.4.1" + ] + }, + { + "package_id": "44e1ad69-0eea-4bcb-b796-2216452f99c7", + "name": "appsody-operator", + "normalized_name": "appsody-operator", + "logo_image_id": "a71aac4a-90dc-41fb-8899-af9c772c7261", + "stars": 0, + "display_name": "Appsody Operator", + "description": "Deploys Appsody based applications", + "version": "0.6.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 64, + "high": 14, + "medium": 165, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1590051600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/appsody/appsody-operator", + "container_images": [] + }, + { + "package_id": "da81317c-3db6-42a6-9a03-817906a6e4a4", + "name": "cryostat-operator", + "normalized_name": "cryostat-operator", + "logo_image_id": "72db0559-b276-4638-b265-05c51cbaebea", + "stars": 0, + "display_name": "Cryostat Operator", + "description": "JVM monitoring and profiling tool", + "version": "2.1.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 23, + "high": 0, + "medium": 33, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1655164800, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "github.com/cryostatio/cryostat-operator", + "container_images": [ + "quay.io/cryostat/cryostat-operator:2.1.1" + ] + }, + { + "package_id": "977ddfd9-16a0-42c2-8f76-024c1cf6ade5", + "name": "open-liberty", + "normalized_name": "open-liberty", + "logo_image_id": "207d05c6-2e47-411a-bf11-cc5f919a596b", + "stars": 0, + "display_name": "Open Liberty Operator", + "description": "Deploy and manage applications running on Open Liberty", + "version": "0.7.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 43, + "high": 5, + "medium": 62, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1595408400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/OpenLiberty/open-liberty-operator", + "container_images": [] + }, + { + "package_id": "a1169957-48ac-4713-9c80-f6f50e53cfd8", + "name": "runtime-component-operator", + "normalized_name": "runtime-component-operator", + "logo_image_id": "dcafd1cd-0f24-4c2b-8ff1-79e65bcd8070", + "stars": 0, + "display_name": "Runtime Component Operator", + "description": "Deploys any runtime component with dynamic and auto-tuning configuration", + "version": "0.7.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 43, + "high": 5, + "medium": 62, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1594890000, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/application-stacks/runtime-component-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 9, + "entity_id": 331 + }, + { + "Extensible Stylesheet Language": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "intel/language-translation", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-translation", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "intel/language-modeling", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + }, + { + "name": "gateway", + "url": "https://quay.io/repository/bluecat/gateway", + "popularity": 20475.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 332 + }, + { + "Java Enterprise Edition": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/enterprise", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/rancher/enterprise", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/java", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/circleci/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/java", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/bitnami/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "java", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1976, + "Docker_Url": "https://hub.docker.com/_/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "grafana/enterprise-metrics", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-metrics", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "mongodb-enterprise-database", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", + "popularity": 118389.0 + }, + { + "name": "mongodb-enterprise-ops-manager", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", + "popularity": 142619.0 + }, + { + "name": "mongodb-enterprise-operator", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", + "popularity": 74259.0 + }, + { + "name": "mongodb-enterprise-appdb", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-appdb", + "popularity": 63629.0 + }, + { + "name": "mongodb-enterprise-init-ops-manager", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-init-ops-manager", + "popularity": 20087.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 333 + }, + { + "Java Standard Edition": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "java", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1976, + "Docker_Url": "https://hub.docker.com/_/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/java", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/circleci/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/java", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/bitnami/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "appdynamics/java-agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/appdynamics/java-agent", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/java-dev", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/java-dev", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "standard-environment", + "url": "https://quay.io/repository/domino/standard-environment", + "popularity": 55752.0 + }, + { + "name": "java", + "url": "https://quay.io/repository/enxadahost/java", + "popularity": 19927.0 + }, + { + "name": "docker-java-swiss-knife", + "url": "https://quay.io/repository/scentbird/docker-java-swiss-knife", + "popularity": 9651.0 + }, + { + "name": "teleport", + "url": "https://quay.io/repository/gravitational/teleport", + "popularity": 157544.0 + }, + { + "name": "audit-syslog-service", + "url": "https://quay.io/repository/opencloudio/audit-syslog-service", + "popularity": 74047.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 334 + }, + { + "JavaServer Pages": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "custom-error-pages-amd64", + "url": "https://quay.io/repository/kubernetes-ingress-controller/custom-error-pages-amd64", + "popularity": 1627.0 + }, + { + "name": "memcached-exporter", + "url": "https://quay.io/repository/prometheus/memcached-exporter", + "popularity": 65896.0 + }, + { + "name": "error-pages", + "url": "https://quay.io/repository/fivium/error-pages", + "popularity": 180.0 + }, + { + "name": "gitlab-pages", + "url": "https://quay.io/repository/gnome_infrastructure/gitlab-pages", + "popularity": 843.0 + }, + { + "name": "custom-error-pages", + "url": "https://quay.io/repository/kubernetes-ingress-controller/custom-error-pages", + "popularity": 142.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 335 + }, + { + "JavaServer Pages": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "custom-error-pages-amd64", + "url": "https://quay.io/repository/kubernetes-ingress-controller/custom-error-pages-amd64", + "popularity": 1627.0 + }, + { + "name": "memcached-exporter", + "url": "https://quay.io/repository/prometheus/memcached-exporter", + "popularity": 65896.0 + }, + { + "name": "error-pages", + "url": "https://quay.io/repository/fivium/error-pages", + "popularity": 180.0 + }, + { + "name": "gitlab-pages", + "url": "https://quay.io/repository/gnome_infrastructure/gitlab-pages", + "popularity": 843.0 + }, + { + "name": "custom-error-pages", + "url": "https://quay.io/repository/kubernetes-ingress-controller/custom-error-pages", + "popularity": 142.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 336 + }, + { + "JavaScript": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "docker/dev-environments-javascript", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/docker/dev-environments-javascript", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "sandbox-javascript", + "url": "https://quay.io/repository/redsift/sandbox-javascript", + "popularity": 88221.0 + }, + { + "name": "invidious", + "url": "https://quay.io/repository/invidious/invidious", + "popularity": 38116.0 + }, + { + "name": "ploigos-tool-javascript", + "url": "https://quay.io/repository/ploigos/ploigos-tool-javascript", + "popularity": 56.0 + }, + { + "name": "jump-app-front-javascript", + "url": "https://quay.io/repository/acidonpe/jump-app-front-javascript", + "popularity": 76.0 + }, + { + "name": "loftsh-javascript-flyway", + "url": "https://quay.io/repository/buildo/loftsh-javascript-flyway", + "popularity": 4.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 337 + }, + { + "JCL": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "jcl", + "url": "https://quay.io/repository/jclaret/jcl", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "jcl", + "url": "https://quay.io/repository/jclaret/jcl", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 338 + }, + { + "Job Information Language": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "pachyderm/job-shim", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/pachyderm/job-shim", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "intel/language-modeling", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "intel/language-translation", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-translation", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 826844.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/strimzi/operator", + "popularity": 412398.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 339 + }, + { + "JScript": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 340 + }, + { + "Lisp": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "lisp-10-ubi8", + "url": "https://quay.io/repository/containerlisp/lisp-10-ubi8", + "popularity": 336.0 + }, + { + "name": "ruby", + "url": "https://quay.io/repository/ibmz/ruby", + "popularity": 0.0 + }, + { + "name": "ruby", + "url": "https://quay.io/repository/ibm/ruby", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 341 + }, + { + "Niakwa Programming Language": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "intel/language-translation", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-translation", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "intel/language-modeling", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + }, + { + "name": "spicedb", + "url": "https://quay.io/repository/authzed/spicedb", + "popularity": 12045.0 + }, + { + "name": "statsd-exporter", + "url": "https://quay.io/repository/prometheus/statsd-exporter", + "popularity": 8725.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 342 + }, + { + "Objective C": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "sogo", + "url": "https://quay.io/repository/sheogorath/sogo", + "popularity": 6.0 + }, + { + "name": "sonar-scanner-cli", + "url": "https://quay.io/repository/ibmz/sonar-scanner-cli", + "popularity": 0.0 + }, + { + "name": "sonar-scanner-cli", + "url": "https://quay.io/repository/ibm/sonar-scanner-cli", + "popularity": 0.0 + }, + { + "name": "prestigeparkgrove", + "url": "https://quay.io/repository/prestigeparkgrove/prestigeparkgrove", + "popularity": 0.0 + }, + { + "name": "mumbaiescorts", + "url": "https://quay.io/repository/ankita44/mumbaiescorts", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 343 + }, + { + "OpenEdge ABL": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "openedge", + "url": "https://quay.io/repository/g_querret/openedge", + "popularity": 0.0 + }, + { + "name": "openedge-appserver", + "url": "https://quay.io/repository/g_querret/openedge-appserver", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 344 + }, + { + "Pascal": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "smeeclient", + "url": "https://quay.io/repository/schabrolles/smeeclient", + "popularity": 1190.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 345 + }, + { + "Object Pascal": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "minio", + "url": "https://quay.io/repository/minio/minio", + "popularity": 374426.0 + }, + { + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 255406.0 + }, + { + "name": "postgresql-10-centos7", + "url": "https://quay.io/repository/centos7/postgresql-10-centos7", + "popularity": 189232.0 + }, + { + "name": "postgresql-13-centos7", + "url": "https://quay.io/repository/centos7/postgresql-13-centos7", + "popularity": 140143.0 + }, + { + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", + "popularity": 20112.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 346 + }, + { + "Perl": [ + { + "dockerhub_exact_images": [ + { + "name": "perl", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 424, + "Docker_Url": "https://hub.docker.com/_/perl", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "perl", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 424, + "Docker_Url": "https://hub.docker.com/_/perl", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "perl", + "url": "https://quay.io/repository/biocontainers/perl", + "popularity": 848.0 + }, + { + "name": "perl", + "url": "https://quay.io/repository/swsmirror/perl", + "popularity": 1.0 + } + ], + "quay_top_images": [ + { + "name": "perl-530-centos7", + "url": "https://quay.io/repository/centos7/perl-530-centos7", + "popularity": 221365.0 + }, + { + "name": "docker-perl-app-base", + "url": "https://quay.io/repository/wakaba/docker-perl-app-base", + "popularity": 371.0 + }, + { + "name": "perl", + "url": "https://quay.io/repository/biocontainers/perl", + "popularity": 848.0 + }, + { + "name": "perl-test", + "url": "https://quay.io/repository/modellaachen/perl-test", + "popularity": 4.0 + }, + { + "name": "perl", + "url": "https://quay.io/repository/swsmirror/perl", + "popularity": 1.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 347 + }, + { + "ActivePerl": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 348 + }, + { + "Rex": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 349 + }, + { + "PHP": [ + { + "dockerhub_exact_images": [ + { + "name": "php", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 6659, + "Docker_Url": "https://hub.docker.com/_/php", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/php", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 35, + "Docker_Url": "https://hub.docker.com/r/circleci/php", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "cimg/php", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/cimg/php", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "cimg/php", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/cimg/php", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/php", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 35, + "Docker_Url": "https://hub.docker.com/r/circleci/php", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "php", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 6659, + "Docker_Url": "https://hub.docker.com/_/php", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/php-fpm", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 150, + "Docker_Url": "https://hub.docker.com/r/bitnami/php-fpm", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "php-zendserver", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 201, + "Docker_Url": "https://hub.docker.com/_/php-zendserver", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "php", + "url": "https://quay.io/repository/kissj/php", + "popularity": 8612.0 + }, + { + "name": "php", + "url": "https://quay.io/repository/startx/php", + "popularity": 15915.0 + }, + { + "name": "php", + "url": "https://quay.io/repository/api-platform/php", + "popularity": 650.0 + }, + { + "name": "php", + "url": "https://quay.io/repository/swsmirror/php", + "popularity": 275.0 + }, + { + "name": "php", + "url": "https://quay.io/repository/official-images/php", + "popularity": 22.0 + } + ], + "quay_top_images": [ + { + "name": "php-73-centos7", + "url": "https://quay.io/repository/centos7/php-73-centos7", + "popularity": 212402.0 + }, + { + "name": "php-hello-dockerfile", + "url": "https://quay.io/repository/redhattraining/php-hello-dockerfile", + "popularity": 7765.0 + }, + { + "name": "php", + "url": "https://quay.io/repository/kissj/php", + "popularity": 8612.0 + }, + { + "name": "php", + "url": "https://quay.io/repository/startx/php", + "popularity": 15915.0 + }, + { + "name": "runner-php", + "url": "https://quay.io/repository/startx/runner-php", + "popularity": 8117.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 350 + }, + { + "PL/I": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 351 + }, + { + "PL/SQL": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "apicurio-registry-sql", + "url": "https://quay.io/repository/apicurio/apicurio-registry-sql", + "popularity": 12300.0 + }, + { + "name": "mariadb-103-centos7", + "url": "https://quay.io/repository/centos7/mariadb-103-centos7", + "popularity": 241707.0 + }, + { + "name": "mariadb-105-centos7", + "url": "https://quay.io/repository/centos7/mariadb-105-centos7", + "popularity": 136441.0 + }, + { + "name": "soketi", + "url": "https://quay.io/repository/soketi/soketi", + "popularity": 42567.0 + }, + { + "name": "mysqld-exporter", + "url": "https://quay.io/repository/prometheus/mysqld-exporter", + "popularity": 19079.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 352 + }, + { + "PRO*C": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "memcached-exporter", + "url": "https://quay.io/repository/prometheus/memcached-exporter", + "popularity": 65896.0 + }, + { + "name": "perl-proc-fork", + "url": "https://quay.io/repository/biocontainers/perl-proc-fork", + "popularity": 0.0 + }, + { + "name": "video-proc", + "url": "https://quay.io/repository/cirruslogicweb/video-proc", + "popularity": 0.0 + }, + { + "name": "php-caddy", + "url": "https://quay.io/repository/webhippie/php-caddy", + "popularity": 86.0 + } + ] + }, + { + "operators": [ + { + "package_id": "68c1164d-9ca1-4e17-8309-3a18d43bca4d", + "name": "azure-service-operator", + "normalized_name": "azure-service-operator", + "stars": 2, + "display_name": "Azure Service Operator", + "description": "The Azure Service Operator helps you provision Azure resources and connect your applications to them from within Kubernetes.", + "version": "1.0.28631", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1630479633, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/Azure/azure-service-operator", + "container_images": [] + }, + { + "package_id": "7f784d0c-e310-40d6-9dcd-e80b4fb2fe73", + "name": "api-operator", + "normalized_name": "api-operator", + "logo_image_id": "1d97de53-56e8-49e0-a864-5c1eda64b8c7", + "stars": 1, + "display_name": "API Operator for Kubernetes", + "description": "API Operator provides a fully automated experience for cloud-native API management of microservices.", + "version": "2.0.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 225, + "high": 21, + "medium": 380, + "unknown": 1, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1619604000, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/wso2/k8s-api-operator", + "container_images": [] + }, + { + "package_id": "f68117dd-406d-4a03-b324-db9632769849", + "name": "keda", + "normalized_name": "keda", + "logo_image_id": "c8fc8cea-b5c1-4406-9f2e-25b5316f0fc8", + "stars": 1, + "display_name": "KEDA", + "description": "Operator that provides KEDA, a Kubernetes-based event driver autoscaler", + "version": "2.7.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1652227200, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/kedacore/keda-olm-operator", + "container_images": [] + }, + { + "package_id": "71383196-e167-4490-ad47-4a20dc496331", + "name": "wso2am-operator", + "normalized_name": "wso2am-operator", + "logo_image_id": "1d97de53-56e8-49e0-a864-5c1eda64b8c7", + "stars": 1, + "display_name": "WSO2 API Manager Operator for Kubernetes", + "description": "Deploying WSO2 API Manager Patterns and custom patterns in Kubernetes.", + "version": "1.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 3, + "medium": 2, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1599447600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/wso2/k8s-wso2am-operator", + "container_images": [] + }, + { + "package_id": "3da5b27a-77e5-4e90-89d6-a094804661ed", + "name": "ack-apigatewayv2-controller", + "normalized_name": "ack-apigatewayv2-controller", + "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", + "stars": 0, + "display_name": "AWS Controllers for Kubernetes - Amazon API Gateway v2", + "description": "AWS API Gateway v2 controller is a service controller for managing API Gateway v2 resources in Kubernetes", + "version": "0.1.2", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1655489670, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aws-controllers-k8s", + "container_images": [] + }, + { + "package_id": "076cc02e-4f0b-4efa-88ba-401931a9b207", + "name": "ack-applicationautoscaling-controller", + "normalized_name": "ack-applicationautoscaling-controller", + "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", + "stars": 0, + "display_name": "AWS Controllers for Kubernetes - Amazon Application Auto Scaling", + "description": "AWS Application Auto Scaling controller is a service controller for managing Application Auto Scaling resources in Kubernetes", + "version": "0.2.10", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1655231094, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aws-controllers-k8s", + "container_images": [] + }, + { + "package_id": "4348a9fb-14fa-4f4c-9b00-41fe75bb7707", + "name": "ack-dynamodb-controller", + "normalized_name": "ack-dynamodb-controller", + "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", + "stars": 0, + "display_name": "AWS Controllers for Kubernetes - Amazon DynamoDB", + "description": "AWS DynamoDB controller is a service controller for managing DynamoDB resources in Kubernetes", + "version": "0.1.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1655314657, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aws-controllers-k8s", + "container_images": [] + }, + { + "package_id": "b8f7d633-2abb-462c-b7b6-49eb52d3aaea", + "name": "ack-ec2-controller", + "normalized_name": "ack-ec2-controller", + "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", + "stars": 0, + "display_name": "AWS Controllers for Kubernetes - Amazon EC2", + "description": "AWS EC2 controller is a service controller for managing EC2 resources in Kubernetes", + "version": "0.0.16", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656446797, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aws-controllers-k8s", + "container_images": [] + }, + { + "package_id": "c14c3409-905e-4032-8e94-9ce930ace64d", + "name": "ack-ecr-controller", + "normalized_name": "ack-ecr-controller", + "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", + "stars": 0, + "display_name": "AWS Controllers for Kubernetes - Amazon ECR", + "description": "AWS ECR controller is a service controller for managing ECR resources in Kubernetes", + "version": "0.1.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1655988517, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aws-controllers-k8s", + "container_images": [] + }, + { + "package_id": "f7cef1af-0075-4fc2-be16-d50d1447dd71", + "name": "ack-eks-controller", + "normalized_name": "ack-eks-controller", + "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", + "stars": 0, + "display_name": "AWS Controllers for Kubernetes - Amazon EKS", + "description": "AWS EKS controller is a service controller for managing EKS resources in Kubernetes", + "version": "0.1.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1655938737, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aws-controllers-k8s", + "container_images": [] + }, + { + "package_id": "126179cb-b91a-4c6f-a5bb-9cb5323bcd63", + "name": "ack-elasticache-controller", + "normalized_name": "ack-elasticache-controller", + "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", + "stars": 0, + "display_name": "AWS Controllers for Kubernetes - Amazon ElastiCache", + "description": "AWS ElastiCache controller is a service controller for managing ElastiCache resources in Kubernetes", + "version": "0.0.20", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656087442, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aws-controllers-k8s", + "container_images": [] + }, + { + "package_id": "2cdf8130-dc10-4c5c-89b8-7520d2f35579", + "name": "ack-emrcontainers-controller", + "normalized_name": "ack-emrcontainers-controller", + "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", + "stars": 0, + "display_name": "AWS Controllers for Kubernetes - Amazon EMR on EKS", + "description": "AWS EMR on EKS controller is a service controller for managing EMR on EKS resources in Kubernetes", + "version": "0.0.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1655988969, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aws-controllers-k8s", + "container_images": [] + }, + { + "package_id": "40cda188-a237-4e89-8120-858155dbc260", + "name": "ack-iam-controller", + "normalized_name": "ack-iam-controller", + "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", + "stars": 0, + "display_name": "AWS Controllers for Kubernetes - Amazon IAM", + "description": "AWS IAM controller is a service controller for managing IAM resources in Kubernetes", + "version": "0.0.18", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656049570, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aws-controllers-k8s", + "container_images": [] + }, + { + "package_id": "ce59e955-3b1c-475f-a2ac-2c608968bd97", + "name": "ack-kms-controller", + "normalized_name": "ack-kms-controller", + "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", + "stars": 0, + "display_name": "AWS Controllers for Kubernetes - Amazon KMS", + "description": "AWS KMS controller is a service controller for managing KMS resources in Kubernetes", + "version": "0.0.18", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656002889, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aws-controllers-k8s", + "container_images": [] + }, + { + "package_id": "03262df7-6216-449a-9216-b6cc752a4d6a", + "name": "ack-lambda-controller", + "normalized_name": "ack-lambda-controller", + "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", + "stars": 0, + "display_name": "AWS Controllers for Kubernetes - Amazon Lambda", + "description": "AWS Lambda controller is a service controller for managing Lambda resources in Kubernetes", + "version": "0.0.16", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1653323992, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aws-controllers-k8s", + "container_images": [] + }, + { + "package_id": "9e0704ab-6f73-4158-a0d2-a66d8824cf29", + "name": "ack-mq-controller", + "normalized_name": "ack-mq-controller", + "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", + "stars": 0, + "display_name": "AWS Controllers for Kubernetes - Amazon MQ", + "description": "AWS MQ controller is a service controller for managing MQ resources in Kubernetes", + "version": "0.0.19", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656049572, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aws-controllers-k8s", + "container_images": [] + }, + { + "package_id": "d06757db-1697-499c-86b7-9d13c1d013d1", + "name": "ack-opensearchservice-controller", + "normalized_name": "ack-opensearchservice-controller", + "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", + "stars": 0, + "display_name": "AWS Controllers for Kubernetes - Amazon OpenSearch Service", + "description": "AWS OpenSearch Service controller is a service controller for managing OpenSearch Service resources in Kubernetes", + "version": "0.0.13", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1648234882, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aws-controllers-k8s", + "container_images": [] + }, + { + "package_id": "21e1f0d4-8f58-4c03-be76-d99ee8445483", + "name": "ack-rds-controller", + "normalized_name": "ack-rds-controller", + "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", + "stars": 0, + "display_name": "AWS Controllers for Kubernetes - Amazon RDS", + "description": "AWS RDS controller is a service controller for managing RDS resources in Kubernetes", + "version": "0.0.28", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1657570374, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aws-controllers-k8s", + "container_images": [] + }, + { + "package_id": "7969e4d8-597d-4acb-9131-8deacfb247f7", + "name": "ack-s3-controller", + "normalized_name": "ack-s3-controller", + "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", + "stars": 0, + "display_name": "AWS Controllers for Kubernetes - Amazon S3", + "description": "AWS S3 controller is a service controller for managing S3 resources in Kubernetes", + "version": "0.1.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1655963702, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aws-controllers-k8s", + "container_images": [] + }, + { + "package_id": "a6214628-e994-44cd-b56b-68b62e3af314", + "name": "ack-sagemaker-controller", + "normalized_name": "ack-sagemaker-controller", + "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", + "stars": 0, + "display_name": "AWS Controllers for Kubernetes - Amazon SageMaker", + "description": "ACK service controller for Amazon SageMaker manages SageMaker resources in Kubernetes", + "version": "0.3.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656091715, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aws-controllers-k8s", + "container_images": [] + } + ] + } + ], + "entity_type": 9, + "entity_id": 353 + }, + { + "Python": [ + { + "dockerhub_exact_images": [ + { + "name": "python", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 7678, + "Docker_Url": "https://hub.docker.com/_/python", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.20348.768", + "Type": "windows", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.17763.3046", + "Type": "windows", + "Subtype": "" + } + ] + }, + { + "name": "circleci/python", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 50, + "Docker_Url": "https://hub.docker.com/r/circleci/python", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "cimg/python", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/cimg/python", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/python", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 21, + "Docker_Url": "https://hub.docker.com/r/bitnami/python", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "python", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 7678, + "Docker_Url": "https://hub.docker.com/_/python", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.20348.768", + "Type": "windows", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.17763.3046", + "Type": "windows", + "Subtype": "" + } + ] + }, + { + "name": "circleci/python", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 50, + "Docker_Url": "https://hub.docker.com/r/circleci/python", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/python", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 21, + "Docker_Url": "https://hub.docker.com/r/bitnami/python", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "cimg/python", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/cimg/python", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "python", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/python", + "popularity": 0.0 + }, + { + "name": "python", + "url": "https://quay.io/repository/biocontainers/python", + "popularity": 4627.0 + }, + { + "name": "python", + "url": "https://quay.io/repository/cdis/python", + "popularity": 8336.0 + }, + { + "name": "python", + "url": "https://quay.io/repository/agari/python", + "popularity": 2129.0 + }, + { + "name": "python", + "url": "https://quay.io/repository/sctregistry/python", + "popularity": 1554.0 + } + ], + "quay_top_images": [ + { + "name": "python-27-centos7", + "url": "https://quay.io/repository/centos7/python-27-centos7", + "popularity": 197342.0 + }, + { + "name": "python", + "url": "https://quay.io/repository/biocontainers/python", + "popularity": 4627.0 + }, + { + "name": "python-predictor-gpu", + "url": "https://quay.io/repository/cortexlabs/python-predictor-gpu", + "popularity": 4848.0 + }, + { + "name": "python-nginx", + "url": "https://quay.io/repository/cdis/python-nginx", + "popularity": 17682.0 + }, + { + "name": "python", + "url": "https://quay.io/repository/cdis/python", + "popularity": 8336.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 354 + }, + { + "R": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [ + { + "package_id": "614a5896-0b60-4e2b-a5b7-3b694658ab2a", + "name": "strimzi-kafka-operator", + "normalized_name": "strimzi-kafka-operator", + "logo_image_id": "83c34ef5-d2f7-4282-94ab-468dea859677", + "stars": 18, + "display_name": "Strimzi", + "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", + "version": "0.29.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 412, + "high": 38, + "medium": 473, + "unknown": 7, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1652572867, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/strimzi/strimzi-kafka-operator", + "container_images": [ + "quay.io/strimzi/operator", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka-bridge", + "quay.io/strimzi/jmxtrans", + "quay.io/strimzi/kaniko-executor", + "quay.io/strimzi/maven-builder" + ] + }, + { + "package_id": "cd93e666-2b6d-419e-879d-3890b5f7c200", + "name": "keycloak-operator", + "normalized_name": "keycloak-operator", + "logo_image_id": "fd90a09f-d3e5-45bf-8c8f-589634592369", + "stars": 14, + "display_name": "Keycloak Operator", + "description": "An Operator for installing and managing Keycloak", + "version": "20.0.0-alpha.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 38, + "high": 0, + "medium": 47, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656518437, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/keycloak/keycloak", + "container_images": [ + "quay.io/keycloak/keycloak-operator:18.0.2" + ] + }, + { + "package_id": "2d28ca38-12b7-469f-b82e-f00edde51d19", + "name": "prometheus", + "normalized_name": "prometheus", + "logo_image_id": "150dd205-ff78-4478-824c-ffb2a140edcf", + "stars": 14, + "display_name": "Prometheus Operator", + "description": "Manage the full lifecycle of configuring and managing Prometheus and Alertmanager servers.", + "version": "0.47.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 2, + "unknown": 2, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1618530180, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/prometheus-operator/prometheus-operator", + "container_images": [ + "quay.io/prometheus-operator/prometheus-operator:v0.47.0" + ] + }, + { + "package_id": "b1aa6353-146c-477c-943e-5a5558b65dc3", + "name": "elastic-cloud-eck", + "normalized_name": "elastic-cloud-eck", + "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", + "stars": 13, + "display_name": "Elasticsearch (ECK) Operator", + "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", + "version": "2.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1657006653, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/elastic/cloud-on-k8s", + "container_images": [] + }, + { + "package_id": "0c44b6e2-521b-4485-9d14-fd8f01ea6a4d", + "name": "knative-operator", + "normalized_name": "knative-operator", + "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", + "stars": 12, + "display_name": "Knative Operator", + "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", + "version": "1.5.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656460800, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/knative/operator", + "container_images": [] + }, + { + "package_id": "bb525733-deee-4431-9b51-4897c8d6d21b", + "name": "redis-operator", + "normalized_name": "redis-operator", + "logo_image_id": "60503f77-253d-4491-adff-e6e55c547ef7", + "stars": 9, + "display_name": "Redis Operator", + "description": "A Golang based redis operator that will make/oversee Redis standalone/cluster mode setup on top of the Kubernetes.", + "version": "0.11.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1657396835, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/ot-container-kit/redis-operator", + "container_images": [ + "quay.io/opstree/redis-operator:v0.11.0" + ] + }, + { + "package_id": "6d932520-44ce-4954-a8ea-f687ad8cf170", + "name": "rook-ceph", + "normalized_name": "rook-ceph", + "logo_image_id": "9234e87f-8c06-4e85-ad9c-3b4f0b95fbd6", + "stars": 8, + "display_name": "Rook-Ceph", + "description": "Install and maintain Ceph Storage cluster", + "version": "1.1.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 509, + "high": 33, + "medium": 719, + "unknown": 0, + "critical": 7 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525859, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/rook/rook", + "container_images": [] + }, + { + "package_id": "5667c55e-0a99-4011-9ab6-7bc3487f43a7", + "name": "grafana-operator", + "normalized_name": "grafana-operator", + "logo_image_id": "27dba515-e77b-4e81-b7ac-484df9e02086", + "stars": 7, + "display_name": "Grafana Operator", + "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", + "version": "4.4.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 4, + "high": 0, + "medium": 3, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1652090412, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/grafana-operator/grafana-operator", + "container_images": [ + "quay.io/grafana-operator/grafana-operator:v4.4.1" + ] + }, + { + "package_id": "ac42caed-76b2-42c8-bf98-533fd044eca6", + "name": "starboard-operator", + "normalized_name": "starboard-operator", + "logo_image_id": "7750edcf-42ac-436d-920a-341ef3f473e8", + "stars": 7, + "display_name": "Starboard Operator", + "description": "Keeps security report resources updated", + "version": "0.15.6", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1654107072, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aquasecurity/starboard", + "container_images": [ + "docker.io/aquasec/starboard-operator:0.15.6" + ] + }, + { + "package_id": "66a8d8ef-e05d-44be-b704-474e144b8b9b", + "name": "tidb-operator", + "normalized_name": "tidb-operator", + "logo_image_id": "b328c448-efbb-4aab-a463-8437ab8898bb", + "stars": 7, + "display_name": "TiDB Operator", + "description": "TiDB Operator manages TiDB clusters on Kubernetes and automates tasks related to operating a TiDB cluster. It makes TiDB a truly cloud-native database.", + "version": "1.3.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 4, + "high": 8, + "medium": 31, + "unknown": 8, + "critical": 2 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1645693233, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/pingcap/tidb-operator", + "container_images": [] + }, + { + "package_id": "f5c53828-c741-4ea7-97b6-89071b3c0b7e", + "name": "rocketmq-operator", + "normalized_name": "rocketmq-operator", + "logo_image_id": "350d3cf0-d7e6-4500-871c-733f06713494", + "stars": 5, + "display_name": "RocketMQ Operator", + "description": "The RocketMQ Operator manages the Apache RocketMQ service instances deployed on the Kubernetes cluster.", + "version": "0.2.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 142, + "high": 39, + "medium": 107, + "unknown": 3, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525858, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/apache/rocketmq-operator", + "container_images": [] + }, + { + "package_id": "e84c500f-01ea-4b9e-be93-8f78f5aacb55", + "name": "falco", + "normalized_name": "falco", + "logo_image_id": "4abae28d-6739-466d-befd-c0b0f76d7d2c", + "stars": 4, + "display_name": "Falco Operator", + "description": "Falco is a behavioral activity monitor designed to detect anomalous activity in your applications. You can use Falco to monitor run-time security of your Kubernetes applications and internal components.", + "version": "0.7.6", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 222, + "high": 19, + "medium": 364, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1552415400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/falcosecurity/falco-operator/tree/helm-based-operator", + "container_images": [ + "docker.io/falcosecurity/falco-operator-helm:0.7.6" + ] + }, + { + "package_id": "a6da5636-8316-400b-988f-dc6850aa2aa9", + "name": "kubemq-operator", + "normalized_name": "kubemq-operator", + "logo_image_id": "a9c2c636-dbe9-4792-96f4-c9f67cf7db96", + "stars": 3, + "display_name": "Kubemq Enterprise Operator", + "description": "KubeMQ is Kubernetes Message Queue Broker", + "version": "0.5.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 60, + "high": 4, + "medium": 71, + "unknown": 1, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1583928000, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/kubemq-io/kubemq-operator", + "container_images": [ + "docker.io/kubemq/kubemq-operator:latest" + ] + }, + { + "package_id": "5d3739dc-d633-42f3-9334-be29d154a718", + "name": "postgres-operator", + "normalized_name": "postgres-operator", + "logo_image_id": "932e96b3-34be-4e2f-bd53-b30903d20a2d", + "stars": 3, + "display_name": "Postgres-Operator", + "description": "Postgres operator creates and manages PostgreSQL clusters running in Kubernetes.", + "version": "1.4.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 2, + "high": 11, + "medium": 8, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1563964200, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/zalando/postgres-operator", + "container_images": [] + }, + { + "package_id": "16bc1125-a2fe-46d0-a5ad-a1d06b0553ae", + "name": "awss3-operator-registry", + "normalized_name": "awss3-operator-registry", + "logo_image_id": "7970f8ac-95a3-41c2-86af-5d227c28289d", + "stars": 2, + "display_name": "AWS S3 Operator", + "description": "Manage the full lifecycle of installing, configuring and managing AWS S3 Provisioner.", + "version": "1.0.1", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1556813520, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/yard-turkey/aws-s3-provisioner", + "container_images": [ + "quay.io/screeley44/aws-s3-provisioner:v1.0.0" + ] + }, + { + "package_id": "68c1164d-9ca1-4e17-8309-3a18d43bca4d", + "name": "azure-service-operator", + "normalized_name": "azure-service-operator", + "stars": 2, + "display_name": "Azure Service Operator", + "description": "The Azure Service Operator helps you provision Azure resources and connect your applications to them from within Kubernetes.", + "version": "1.0.28631", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1630479633, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/Azure/azure-service-operator", + "container_images": [] + }, + { + "package_id": "fccfe78b-9c2b-46cc-9e20-ee1424fccacf", + "name": "kube-arangodb", + "normalized_name": "kube-arangodb", + "logo_image_id": "94e231f6-8117-471b-9279-00f9ced197c8", + "stars": 2, + "display_name": "ArangoDB", + "description": "ArangoDB Kubernetes Operator", + "version": "1.0.2", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1575153600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/arangodb/kube-arangodb", + "container_images": [] + }, + { + "package_id": "c103653e-b394-447f-bcbe-5c36a9b2fff5", + "name": "redis-enterprise", + "normalized_name": "redis-enterprise", + "logo_image_id": "1c86e9e7-c6f1-4c8f-9f97-c3ca8696e809", + "stars": 2, + "display_name": "Redis Enterprise", + "description": "An operator to run Redis Enterprise Clusters", + "version": "0.0.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1551008159, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [] + }, + { + "package_id": "e6087667-2b09-499f-9528-db9e99709020", + "name": "apicurio-registry", + "normalized_name": "apicurio-registry", + "logo_image_id": "a6e7f90d-62dc-4b78-a823-e0a93912ec93", + "stars": 1, + "display_name": "Apicurio Registry Operator", + "description": "Deploy and manage Apicurio Registry on Kubernetes.", + "version": "1.0.0-v2.0.0.final", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 2, + "medium": 0, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525858, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/Apicurio/apicurio-registry-operator", + "container_images": [ + "quay.io/apicurio/apicurio-registry-operator:1.0.0" + ] + }, + { + "package_id": "7f784d0c-e310-40d6-9dcd-e80b4fb2fe73", + "name": "api-operator", + "normalized_name": "api-operator", + "logo_image_id": "1d97de53-56e8-49e0-a864-5c1eda64b8c7", + "stars": 1, + "display_name": "API Operator for Kubernetes", + "description": "API Operator provides a fully automated experience for cloud-native API management of microservices.", + "version": "2.0.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 225, + "high": 21, + "medium": 380, + "unknown": 1, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1619604000, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/wso2/k8s-api-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 9, + "entity_id": 355 + }, + { + "Rexx": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 356 + }, + { + "RPG": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "kp-rpg-discord-bot", + "url": "https://quay.io/repository/klenkes74/kp-rpg-discord-bot", + "popularity": 1687.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 357 + }, + { + "Ruby": [ + { + "dockerhub_exact_images": [ + { + "name": "ruby", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 2149, + "Docker_Url": "https://hub.docker.com/_/ruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/ruby", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 78, + "Docker_Url": "https://hub.docker.com/r/circleci/ruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/ruby", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 21, + "Docker_Url": "https://hub.docker.com/r/bitnami/ruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "cimg/ruby", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/cimg/ruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "datadog/ruby", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/datadog/ruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "datadog/ruby", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/datadog/ruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/ruby", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 21, + "Docker_Url": "https://hub.docker.com/r/bitnami/ruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "cimg/ruby", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/cimg/ruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/ruby", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 78, + "Docker_Url": "https://hub.docker.com/r/circleci/ruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ruby", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 2149, + "Docker_Url": "https://hub.docker.com/_/ruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "ruby", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/ruby", + "popularity": 0.0 + }, + { + "name": "ruby", + "url": "https://quay.io/repository/aptible/ruby", + "popularity": 333.0 + }, + { + "name": "ruby", + "url": "https://quay.io/repository/swsmirror/ruby", + "popularity": 1.0 + }, + { + "name": "ruby", + "url": "https://quay.io/repository/goodguide/ruby", + "popularity": 0.0 + }, + { + "name": "ruby", + "url": "https://quay.io/repository/shakr/ruby", + "popularity": 0.0 + }, + { + "name": "ruby", + "url": "https://quay.io/repository/springest/ruby", + "popularity": 20.0 + }, + { + "name": "ruby", + "url": "https://quay.io/repository/forem/ruby", + "popularity": 46.0 + }, + { + "name": "ruby", + "url": "https://quay.io/repository/openshifttest/ruby", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "ruby-27-centos7", + "url": "https://quay.io/repository/centos7/ruby-27-centos7", + "popularity": 251822.0 + }, + { + "name": "ruby-26-centos7", + "url": "https://quay.io/repository/centos7/ruby-26-centos7", + "popularity": 165969.0 + }, + { + "name": "ruby-25-centos7", + "url": "https://quay.io/repository/centos7/ruby-25-centos7", + "popularity": 74049.0 + }, + { + "name": "ruby-27", + "url": "https://quay.io/repository/openshifttest/ruby-27", + "popularity": 14124.0 + }, + { + "name": "ruby-cron", + "url": "https://quay.io/repository/palettecloud/ruby-cron", + "popularity": 11018.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 358 + }, + { + "Salesforce Object Query Language": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "minio", + "url": "https://quay.io/repository/minio/minio", + "popularity": 374426.0 + }, + { + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 255406.0 + }, + { + "name": "postgresql-10-centos7", + "url": "https://quay.io/repository/centos7/postgresql-10-centos7", + "popularity": 189232.0 + }, + { + "name": "postgresql-13-centos7", + "url": "https://quay.io/repository/centos7/postgresql-13-centos7", + "popularity": 140143.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 359 + }, + { + "SAS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/sas-base", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/sas-base", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "sas", + "url": "https://quay.io/repository/domino/sas", + "popularity": 401.0 + }, + { + "name": "sas", + "url": "https://quay.io/repository/fahrettinc/sas", + "popularity": 0.0 + }, + { + "name": "sas", + "url": "https://quay.io/repository/appvia_hub_dev/sas", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "sas-fbis-ccf", + "url": "https://quay.io/repository/ukhomeofficedigital/sas-fbis-ccf", + "popularity": 10.0 + }, + { + "name": "sas", + "url": "https://quay.io/repository/domino/sas", + "popularity": 401.0 + }, + { + "name": "egeria-connector-sas-viya", + "url": "https://quay.io/repository/odpi/egeria-connector-sas-viya", + "popularity": 0.0 + }, + { + "name": "sas", + "url": "https://quay.io/repository/fahrettinc/sas", + "popularity": 0.0 + }, + { + "name": "sas", + "url": "https://quay.io/repository/appvia_hub_dev/sas", + "popularity": 0.0 + } + ] + }, + { + "operators": [ + { + "package_id": "2dd25343-072b-4338-8cad-143c9345f863", + "name": "gitlab-operator-kubernetes", + "normalized_name": "gitlab-operator-kubernetes", + "logo_image_id": "b8069ce9-c81e-4b7e-83b0-61115f98f09f", + "stars": 0, + "display_name": "GitLab", + "version": "0.6.3", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1583933340, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://gitlab.com/gitlab-org/cloud-native/gitlab-operator", + "container_images": [] + }, + { + "package_id": "1b382e52-7788-4d54-acea-613fc250f33b", + "name": "gitlab-runner-operator", + "normalized_name": "gitlab-runner-operator", + "logo_image_id": "b8069ce9-c81e-4b7e-83b0-61115f98f09f", + "stars": 0, + "display_name": "GitLab Runner", + "description": "GitLab Runner operator manages lifecycle of GitLab Runner instances", + "version": "1.9.0", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1607351820, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 9, + "entity_id": 360 + }, + { + "Sass": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "python-npm-sass", + "url": "https://quay.io/repository/linkleonard/python-npm-sass", + "popularity": 0.0 + }, + { + "name": "clojure-sass", + "url": "https://quay.io/repository/stuarth/clojure-sass", + "popularity": 0.0 + }, + { + "name": "node-ruby-sass-grunt-bats", + "url": "https://quay.io/repository/himalayaninstitute/node-ruby-sass-grunt-bats", + "popularity": 0.0 + }, + { + "name": "odagrun-jekyll-build-image", + "url": "https://quay.io/repository/gioxa/odagrun-jekyll-build-image", + "popularity": 0.0 + }, + { + "name": "sassc", + "url": "https://quay.io/repository/bzub/sassc", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 361 + }, + { + "Scala": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/scala-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/scala-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/scala-logging", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/scala-logging", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "scala", + "url": "https://quay.io/repository/azavea/scala", + "popularity": 0.0 + }, + { + "name": "scala", + "url": "https://quay.io/repository/reviewtrackers/scala", + "popularity": 0.0 + }, + { + "name": "scala", + "url": "https://quay.io/repository/opaqnetworks/scala", + "popularity": 2.0 + } + ], + "quay_top_images": [ + { + "name": "scala-sbt", + "url": "https://quay.io/repository/ukhomeofficedigital/scala-sbt", + "popularity": 16.0 + }, + { + "name": "scala-play", + "url": "https://quay.io/repository/ukhomeofficedigital/scala-play", + "popularity": 4.0 + }, + { + "name": "scala-sbt", + "url": "https://quay.io/repository/opaqnetworks/scala-sbt", + "popularity": 2.0 + }, + { + "name": "cimg-scala-builder", + "url": "https://quay.io/repository/whisk/cimg-scala-builder", + "popularity": 15.0 + }, + { + "name": "scala-sbt-nodejs", + "url": "https://quay.io/repository/ukhomeofficedigital/scala-sbt-nodejs", + "popularity": 6.0 + } + ] + }, + { + "operators": [ + { + "package_id": "1d1a44d7-6c37-4162-8bd9-1df69b441d93", + "name": "nfd-operator", + "normalized_name": "nfd-operator", + "logo_image_id": "1250952c-ca9f-4b57-bcd3-58be984131b7", + "stars": 0, + "display_name": "nfd-operator", + "description": "The Node Feature Discovery Operator manages the detection of hardware features and configuration in a Kubernetes cluster by labeling the nodes with hardware-specific information. The Node Feature Discovery (NFD) will label the host with node-specific attributes, like PCI cards, kernel, or OS version, and many more.\n\nNFD consists of the following software components:\n\nThe NFD Operator is based on the Operator Framework an open source toolkit to manage Kubernetes native applications, called Operators, in an effective, automated, and scalable way.\n\n##NFD-Master\nNFD-Master is the daemon responsible for communication towards the Kubernetes API. That is, it receives labeling requests from the worker and modifies node objects accordingly.\n\n##NFD-Worker\nNFD-Worker is a daemon responsible for feature detection. It then communicates the information to nfd-master which does the actual node labeling. One instance of nfd-worker is supposed to be running on each node of the cluster.\n\n##NFD-Topology-Updater\nNFD-Topology-Updater is a daemon responsible for examining allocated resources on a worker node to account for resources available to be allocated to new pod on a per-zone basis (where a zone can be a NUMA node). It then communicates the information to nfd-master which does the NodeResourceTopology CR creation corresponding to all the nodes in the cluster. One instance of nfd-topology-updater is supposed to be running on each node of the cluster.", + "version": "0.5.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 11, + "high": 1, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1642616598, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/kubernetes-sigs/node-feature-discovery-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 9, + "entity_id": 362 + }, + { + "Smalltalk": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ruby", + "url": "https://quay.io/repository/ibmz/ruby", + "popularity": 0.0 + }, + { + "name": "ruby", + "url": "https://quay.io/repository/ibm/ruby", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 363 + }, + { + "Swift": [ + { + "dockerhub_exact_images": [ + { + "name": "swift", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 599, + "Docker_Url": "https://hub.docker.com/_/swift", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "swift", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 599, + "Docker_Url": "https://hub.docker.com/_/swift", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/swift-ubuntu", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 32, + "Docker_Url": "https://hub.docker.com/r/ibmcom/swift-ubuntu", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/swift-ubuntu-xenial", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/swift-ubuntu-xenial", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "swift-pipeline", + "url": "https://quay.io/repository/greninger-lab/swift-pipeline", + "popularity": 5510.0 + }, + { + "name": "centos-binary-swift-account", + "url": "https://quay.io/repository/tripleotraincentos8/centos-binary-swift-account", + "popularity": 334.0 + }, + { + "name": "centos-binary-swift-object", + "url": "https://quay.io/repository/tripleotraincentos8/centos-binary-swift-object", + "popularity": 333.0 + }, + { + "name": "centos-binary-swift-container", + "url": "https://quay.io/repository/tripleotraincentos8/centos-binary-swift-container", + "popularity": 334.0 + }, + { + "name": "centos-binary-swift-proxy-server", + "url": "https://quay.io/repository/tripleotraincentos8/centos-binary-swift-proxy-server", + "popularity": 332.0 + } + ] + }, + { + "operators": [ + { + "package_id": "44e1ad69-0eea-4bcb-b796-2216452f99c7", + "name": "appsody-operator", + "normalized_name": "appsody-operator", + "logo_image_id": "a71aac4a-90dc-41fb-8899-af9c772c7261", + "stars": 0, + "display_name": "Appsody Operator", + "description": "Deploys Appsody based applications", + "version": "0.6.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 64, + "high": 14, + "medium": 165, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1590051600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/appsody/appsody-operator", + "container_images": [] + }, + { + "package_id": "a1169957-48ac-4713-9c80-f6f50e53cfd8", + "name": "runtime-component-operator", + "normalized_name": "runtime-component-operator", + "logo_image_id": "dcafd1cd-0f24-4c2b-8ff1-79e65bcd8070", + "stars": 0, + "display_name": "Runtime Component Operator", + "description": "Deploys any runtime component with dynamic and auto-tuning configuration", + "version": "0.7.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 43, + "high": 5, + "medium": 62, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1594890000, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/application-stacks/runtime-component-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 9, + "entity_id": 364 + }, + { + "TCL": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 365 + }, + { + "Transact-SQL": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "apicurio-registry-sql", + "url": "https://quay.io/repository/apicurio/apicurio-registry-sql", + "popularity": 12300.0 + }, + { + "name": "mariadb-103-centos7", + "url": "https://quay.io/repository/centos7/mariadb-103-centos7", + "popularity": 241707.0 + }, + { + "name": "mariadb-105-centos7", + "url": "https://quay.io/repository/centos7/mariadb-105-centos7", + "popularity": 136441.0 + }, + { + "name": "soketi", + "url": "https://quay.io/repository/soketi/soketi", + "popularity": 42567.0 + }, + { + "name": "mysqld-exporter", + "url": "https://quay.io/repository/prometheus/mysqld-exporter", + "popularity": 19079.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 366 + }, + { + "TypeScript": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "typescript", + "url": "https://quay.io/repository/ellerbrock/typescript", + "popularity": 0.0 + }, + { + "name": "typescript", + "url": "https://quay.io/repository/omnijarstudio/typescript", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "hmpps-template-typescript", + "url": "https://quay.io/repository/hmpps/hmpps-template-typescript", + "popularity": 86.0 + }, + { + "name": "typescript-docker", + "url": "https://quay.io/repository/datalogue/typescript-docker", + "popularity": 0.0 + }, + { + "name": "openshift-s2i-typescript-example", + "url": "https://quay.io/repository/evanshortiss/openshift-s2i-typescript-example", + "popularity": 0.0 + }, + { + "name": "typescript", + "url": "https://quay.io/repository/ellerbrock/typescript", + "popularity": 0.0 + }, + { + "name": "che-e2e", + "url": "https://quay.io/repository/eclipse/che-e2e", + "popularity": 8.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 367 + }, + { + "VB.NET": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + }, + { + "name": "samtools", + "url": "https://quay.io/repository/biocontainers/samtools", + "popularity": 47366.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 368 + }, + { + "VBScript": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 369 + }, + { + "Visual Basic": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "nginx-basic-auth-proxy", + "url": "https://quay.io/repository/dtan4/nginx-basic-auth-proxy", + "popularity": 6015.0 + }, + { + "name": "visual-qontract", + "url": "https://quay.io/repository/app-sre/visual-qontract", + "popularity": 4012.0 + }, + { + "name": "nginx", + "url": "https://quay.io/repository/jitesoft/nginx", + "popularity": 80338.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + }, + { + "name": "haproxy-exporter", + "url": "https://quay.io/repository/prometheus/haproxy-exporter", + "popularity": 12544.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 370 + }, + { + "Visual Basic for Applications": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "olm", + "url": "https://quay.io/repository/operator-framework/olm", + "popularity": 1306060.0 + }, + { + "name": "audit-syslog-service", + "url": "https://quay.io/repository/opencloudio/audit-syslog-service", + "popularity": 74047.0 + }, + { + "name": "mongodb-enterprise-operator", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", + "popularity": 74259.0 + }, + { + "name": "nginx", + "url": "https://quay.io/repository/jitesoft/nginx", + "popularity": 80338.0 + }, + { + "name": "soketi", + "url": "https://quay.io/repository/soketi/soketi", + "popularity": 42567.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 371 + }, + { + "Visual FoxPro": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "visual-qontract", + "url": "https://quay.io/repository/app-sre/visual-qontract", + "popularity": 4012.0 + }, + { + "name": "visual-regression", + "url": "https://quay.io/repository/babylonhealth/visual-regression", + "popularity": 70.0 + }, + { + "name": "ccc", + "url": "https://quay.io/repository/jlospinoso/ccc", + "popularity": 0.0 + }, + { + "name": "sqlitebrowser", + "url": "https://quay.io/repository/biocontainers/sqlitebrowser", + "popularity": 0.0 + }, + { + "name": "dpp", + "url": "https://quay.io/repository/brainboxdotcc/dpp", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 372 + }, + { + "VoiceXML": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 373 + }, + { + "Xbase++": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 374 + }, + { + "Apache Lucene": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/apache", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 81, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "pingidentity/apache-jmeter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/apache-exporter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 826844.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/strimzi/operator", + "popularity": 412398.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 375 + }, + { + "Apache Xerces": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/apache", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 81, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/xerces-c-s390x", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/xerces-c-s390x", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/xerces-c-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/xerces-c-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "pingidentity/apache-jmeter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/apache-exporter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 826844.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/strimzi/operator", + "popularity": 412398.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 376 + }, + { + "Cascading Style Sheets": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "memcached-exporter", + "url": "https://quay.io/repository/prometheus/memcached-exporter", + "popularity": 65896.0 + }, + { + "name": "redis-operator", + "url": "https://quay.io/repository/opstree/redis-operator", + "popularity": 70825.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 377 + }, + { + "Apache Camel": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/apache", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 81, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "pingidentity/apache-jmeter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/apache-exporter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 826844.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/strimzi/operator", + "popularity": 412398.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + } + ] + }, + { + "operators": [ + { + "package_id": "b073c865-73e0-4fb5-a8fd-fbc67909cfc8", + "name": "camel-k", + "normalized_name": "camel-k", + "logo_image_id": "bb459721-b090-4aaf-a749-11f8c100583f", + "stars": 1, + "display_name": "Camel K Operator", + "description": "Apache Camel K is a lightweight integration platform, born on Kubernetes, with serverless superpowers.", + "version": "1.9.2", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 115, + "high": 19, + "medium": 233, + "unknown": 2, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1653296722, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/apache/camel-k", + "container_images": [ + "docker.io/apache/camel-k:1.9.2" + ] + } + ] + } + ], + "entity_type": 12, + "entity_id": 378 + }, + { + "Apache Commons BeanUtils": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/apache", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 81, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "pingidentity/apache-jmeter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/apache-exporter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 826844.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/strimzi/operator", + "popularity": 412398.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 379 + }, + { + "Apache PDFBox": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/apache", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 81, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "pingidentity/apache-jmeter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/apache-exporter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 826844.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/strimzi/operator", + "popularity": 412398.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 380 + }, + { + "Apache Velocity": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/apache", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 81, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/apache-exporter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 826844.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/strimzi/operator", + "popularity": 412398.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 381 + }, + { + "EclipseLink": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 382 + }, + { + "Enterprise JavaBeans": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/enterprise", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/rancher/enterprise", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "grafana/enterprise-logs", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-logs", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "grafana/enterprise-traces", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-traces", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "grafana/enterprise-metrics", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-metrics", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "grafana/grafana-enterprise", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/grafana/grafana-enterprise", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "mongodb-enterprise-database", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", + "popularity": 118389.0 + }, + { + "name": "mongodb-enterprise-ops-manager", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", + "popularity": 142619.0 + }, + { + "name": "mongodb-enterprise-operator", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", + "popularity": 74259.0 + }, + { + "name": "mongodb-enterprise-appdb", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-appdb", + "popularity": 63629.0 + }, + { + "name": "mongodb-enterprise-init-ops-manager", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-init-ops-manager", + "popularity": 20087.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 383 + }, + { + "EZMorph": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 384 + }, + { + "Google Web Toolkit": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "common-web-ui", + "url": "https://quay.io/repository/opencloudio/common-web-ui", + "popularity": 353182.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "olm", + "url": "https://quay.io/repository/operator-framework/olm", + "popularity": 1306060.0 + }, + { + "name": "google-chrome-stable", + "url": "https://quay.io/repository/browser/google-chrome-stable", + "popularity": 25418.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 385 + }, + { + "Hibernate": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/hibernate-s390x", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/hibernate-s390x", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "hibernate-github-bot", + "url": "https://quay.io/repository/hibernate/hibernate-github-bot", + "popularity": 5.0 + }, + { + "name": "hibernate-orm-panache-quickstart", + "url": "https://quay.io/repository/pmacik/hibernate-orm-panache-quickstart", + "popularity": 0.0 + }, + { + "name": "hibernate-orm-resteasy-jvm", + "url": "https://quay.io/repository/nmalvankar/hibernate-orm-resteasy-jvm", + "popularity": 0.0 + }, + { + "name": "hibernate-orm-resteasy-native", + "url": "https://quay.io/repository/nmalvankar/hibernate-orm-resteasy-native", + "popularity": 0.0 + }, + { + "name": "awestruct-build-env", + "url": "https://quay.io/repository/hibernate/awestruct-build-env", + "popularity": 27.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 386 + }, + { + "IBM SDK": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 387 + }, + { + "Java Development Kit": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/java", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/bitnami/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "java", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1976, + "Docker_Url": "https://hub.docker.com/_/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "appdynamics/java-agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/appdynamics/java-agent", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "java", + "url": "https://quay.io/repository/enxadahost/java", + "popularity": 19927.0 + }, + { + "name": "docker-java-swiss-knife", + "url": "https://quay.io/repository/scentbird/docker-java-swiss-knife", + "popularity": 9651.0 + }, + { + "name": "jkube-java", + "url": "https://quay.io/repository/jkube/jkube-java", + "popularity": 4274.0 + }, + { + "name": "java", + "url": "https://quay.io/repository/reishost/java", + "popularity": 3686.0 + }, + { + "name": "billing-sidecar", + "url": "https://quay.io/repository/sdase/billing-sidecar", + "popularity": 183418.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 388 + }, + { + "Java Message Service": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/java", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/bitnami/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/java", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/circleci/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "java", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1976, + "Docker_Url": "https://hub.docker.com/_/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/service-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/bitnami/service-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/service-catalog-service-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/service-catalog-service-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "common-service-operator", + "url": "https://quay.io/repository/opencloudio/common-service-operator", + "popularity": 317405.0 + }, + { + "name": "service-catalog", + "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", + "popularity": 330506.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 389 + }, + { + "Java Web Start": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "java", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1976, + "Docker_Url": "https://hub.docker.com/_/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/java", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/bitnami/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "appdynamics/java-agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/appdynamics/java-agent", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "common-web-ui", + "url": "https://quay.io/repository/opencloudio/common-web-ui", + "popularity": 353182.0 + }, + { + "name": "mongodb-kubernetes-operator-version-upgrade-post-start-hook", + "url": "https://quay.io/repository/mongodb/mongodb-kubernetes-operator-version-upgrade-post-start-hook", + "popularity": 148136.0 + }, + { + "name": "java", + "url": "https://quay.io/repository/enxadahost/java", + "popularity": 19927.0 + }, + { + "name": "windup-web-openshift-messaging-executor", + "url": "https://quay.io/repository/windupeng/windup-web-openshift-messaging-executor", + "popularity": 14612.0 + }, + { + "name": "windup-web-openshift", + "url": "https://quay.io/repository/windupeng/windup-web-openshift", + "popularity": 17107.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 390 + }, + { + "JavaServer Faces": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "tomcat", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/tomcat", + "popularity": 0.0 + }, + { + "name": "javaserver", + "url": "https://quay.io/repository/ctrack/javaserver", + "popularity": 9.0 + }, + { + "name": "antennae", + "url": "https://quay.io/repository/antmounds/antennae", + "popularity": 0.0 + }, + { + "name": "tomcat-s2i-okd", + "url": "https://quay.io/repository/venatrix/tomcat-s2i-okd", + "popularity": 0.0 + }, + { + "name": "alpine-tomcat-s2i-okd", + "url": "https://quay.io/repository/venatrix/alpine-tomcat-s2i-okd", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 391 + }, + { + "JDBC": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "strimzi-debezium-mysql-jdbc", + "url": "https://quay.io/repository/btison/strimzi-debezium-mysql-jdbc", + "popularity": 0.0 + }, + { + "name": "logstash-jdbc", + "url": "https://quay.io/repository/ukhomeofficedigital/logstash-jdbc", + "popularity": 0.0 + }, + { + "name": "jdbc-sink", + "url": "https://quay.io/repository/pmereddy/jdbc-sink", + "popularity": 0.0 + }, + { + "name": "webspoon-jdbc", + "url": "https://quay.io/repository/hingstarne/webspoon-jdbc", + "popularity": 0.0 + }, + { + "name": "build", + "url": "https://quay.io/repository/opencast/build", + "popularity": 17.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 392 + }, + { + "JRuby Core": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "jruby", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 109, + "Docker_Url": "https://hub.docker.com/_/jruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/jruby", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/circleci/jruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/jruby", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/jruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/core", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 8, + "Docker_Url": "https://hub.docker.com/r/kasmweb/core", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/jruby-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/jruby-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "core", + "url": "https://quay.io/repository/pterodactyl/core", + "popularity": 107406.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "viral-core", + "url": "https://quay.io/repository/broadinstitute/viral-core", + "popularity": 23949.0 + }, + { + "name": "ansible-core-test-container", + "url": "https://quay.io/repository/ansible/ansible-core-test-container", + "popularity": 8601.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 393 + }, + { + "Log4j": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/log4j-jsonevent-layout", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/log4j-jsonevent-layout", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "log4j", + "url": "https://quay.io/repository/crozzy/log4j", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "log4j-vul-image", + "url": "https://quay.io/repository/nvsecurity/log4j-vul-image", + "popularity": 168.0 + }, + { + "name": "kubernetes-log4j-cve-2021-44228-node-agent", + "url": "https://quay.io/repository/pengli1707/kubernetes-log4j-cve-2021-44228-node-agent", + "popularity": 0.0 + }, + { + "name": "log4j", + "url": "https://quay.io/repository/crozzy/log4j", + "popularity": 0.0 + }, + { + "name": "log4j-scan", + "url": "https://quay.io/repository/trickest/log4j-scan", + "popularity": 0.0 + }, + { + "name": "log4shell", + "url": "https://quay.io/repository/swains/log4shell", + "popularity": 15.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 394 + }, + { + "Quartz": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "bestjaderoller", + "url": "https://quay.io/repository/jaderoller/bestjaderoller", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 395 + }, + { + "Remote Method Invocation": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "docker/remote", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/docker/remote", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "simple-remote-directory-resource", + "url": "https://quay.io/repository/qiime2/simple-remote-directory-resource", + "popularity": 19633.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "billing-sidecar", + "url": "https://quay.io/repository/sdase/billing-sidecar", + "popularity": 183418.0 + }, + { + "name": "mongodb-enterprise-operator", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", + "popularity": 74259.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 396 + }, + { + "Servlet": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "tomcat", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/tomcat", + "popularity": 0.0 + }, + { + "name": "was8-java8-dq", + "url": "https://quay.io/repository/dqdevs/was8-java8-dq", + "popularity": 0.0 + }, + { + "name": "tomcat-s2i-okd", + "url": "https://quay.io/repository/venatrix/tomcat-s2i-okd", + "popularity": 0.0 + }, + { + "name": "alpine-tomcat-s2i-okd", + "url": "https://quay.io/repository/venatrix/alpine-tomcat-s2i-okd", + "popularity": 0.0 + }, + { + "name": "was9-java8-dq", + "url": "https://quay.io/repository/dqdevs/was9-java8-dq", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 397 + }, + { + "Spring": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/spring-cloud-dataflow", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/bitnami/spring-cloud-dataflow", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/spring-cloud-skipper", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/spring-cloud-skipper", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "spring-petclinic", + "url": "https://quay.io/repository/service-binding/spring-petclinic", + "popularity": 13195.0 + }, + { + "name": "spring-petclinic", + "url": "https://quay.io/repository/siamaksade/spring-petclinic", + "popularity": 5798.0 + }, + { + "name": "spring-sample", + "url": "https://quay.io/repository/enesk/spring-sample", + "popularity": 2638.0 + }, + { + "name": "spring-boot-sample", + "url": "https://quay.io/repository/efeluzy/spring-boot-sample", + "popularity": 357.0 + }, + { + "name": "spring-boot-admin", + "url": "https://quay.io/repository/evryfs/spring-boot-admin", + "popularity": 998.0 + } + ] + }, + { + "operators": [ + { + "package_id": "44e1ad69-0eea-4bcb-b796-2216452f99c7", + "name": "appsody-operator", + "normalized_name": "appsody-operator", + "logo_image_id": "a71aac4a-90dc-41fb-8899-af9c772c7261", + "stars": 0, + "display_name": "Appsody Operator", + "description": "Deploys Appsody based applications", + "version": "0.6.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 64, + "high": 14, + "medium": 165, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1590051600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/appsody/appsody-operator", + "container_images": [] + }, + { + "package_id": "977ddfd9-16a0-42c2-8f76-024c1cf6ade5", + "name": "open-liberty", + "normalized_name": "open-liberty", + "logo_image_id": "207d05c6-2e47-411a-bf11-cc5f919a596b", + "stars": 0, + "display_name": "Open Liberty Operator", + "description": "Deploy and manage applications running on Open Liberty", + "version": "0.7.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 43, + "high": 5, + "medium": 62, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1595408400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/OpenLiberty/open-liberty-operator", + "container_images": [] + }, + { + "package_id": "a1169957-48ac-4713-9c80-f6f50e53cfd8", + "name": "runtime-component-operator", + "normalized_name": "runtime-component-operator", + "logo_image_id": "dcafd1cd-0f24-4c2b-8ff1-79e65bcd8070", + "stars": 0, + "display_name": "Runtime Component Operator", + "description": "Deploys any runtime component with dynamic and auto-tuning configuration", + "version": "0.7.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 43, + "high": 5, + "medium": 62, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1594890000, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/application-stacks/runtime-component-operator", + "container_images": [] + }, + { + "package_id": "f9cd6b79-6a14-4e63-b39c-73a257a7a0e4", + "name": "kogito-operator", + "normalized_name": "kogito-operator", + "logo_image_id": "ad53dec8-1e52-4de2-b995-067a63ad9083", + "stars": 0, + "display_name": "Kogito", + "description": "Kogito Operator for deployment and management of Kogito services.", + "version": "1.24.0", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1566479542, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/kiegroup/kogito-operator", + "container_images": [ + "quay.io/kiegroup/kogito-operator:1.24.0" + ] + } + ] + } + ], + "entity_type": 12, + "entity_id": 398 + }, + { + "Spring Boot": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/boot", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/boot", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "spring-petclinic", + "url": "https://quay.io/repository/service-binding/spring-petclinic", + "popularity": 13195.0 + }, + { + "name": "alpine-ext-kernel-boot-demo", + "url": "https://quay.io/repository/kubevirt/alpine-ext-kernel-boot-demo", + "popularity": 5672.0 + }, + { + "name": "spring-petclinic", + "url": "https://quay.io/repository/siamaksade/spring-petclinic", + "popularity": 5798.0 + }, + { + "name": "spring-sample", + "url": "https://quay.io/repository/enesk/spring-sample", + "popularity": 2638.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 399 + }, + { + "Spring Cloud Data Flow": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cloud-connector", + "url": "https://quay.io/repository/sysdig/cloud-connector", + "popularity": 1263418.0 + }, + { + "name": "cloud-connector-s3-bucket-config", + "url": "https://quay.io/repository/sysdig/cloud-connector-s3-bucket-config", + "popularity": 644351.0 + }, + { + "name": "zen-data-sorcerer", + "url": "https://quay.io/repository/opencloudio/zen-data-sorcerer", + "popularity": 236759.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "minio", + "url": "https://quay.io/repository/minio/minio", + "popularity": 374426.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 400 + }, + { + "Spring MVC": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/spring-cloud-dataflow", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/bitnami/spring-cloud-dataflow", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/spring-cloud-skipper", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/spring-cloud-skipper", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "spring-petclinic", + "url": "https://quay.io/repository/service-binding/spring-petclinic", + "popularity": 13195.0 + }, + { + "name": "spring-petclinic", + "url": "https://quay.io/repository/siamaksade/spring-petclinic", + "popularity": 5798.0 + }, + { + "name": "spring-sample", + "url": "https://quay.io/repository/enesk/spring-sample", + "popularity": 2638.0 + }, + { + "name": "spring-boot-sample", + "url": "https://quay.io/repository/efeluzy/spring-boot-sample", + "popularity": 357.0 + }, + { + "name": "spring-boot-admin", + "url": "https://quay.io/repository/evryfs/spring-boot-admin", + "popularity": 998.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 401 + }, + { + "Struts": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "struts", + "url": "https://quay.io/repository/arifulhuq/struts", + "popularity": 0.0 + }, + { + "name": "struts", + "url": "https://quay.io/repository/connorg/struts", + "popularity": 0.0 + }, + { + "name": "struts", + "url": "https://quay.io/repository/araalinetworks/struts", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "struts", + "url": "https://quay.io/repository/arifulhuq/struts", + "popularity": 0.0 + }, + { + "name": "struts", + "url": "https://quay.io/repository/connorg/struts", + "popularity": 0.0 + }, + { + "name": "struts-app", + "url": "https://quay.io/repository/smileyfritz/struts-app", + "popularity": 0.0 + }, + { + "name": "struts", + "url": "https://quay.io/repository/araalinetworks/struts", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 402 + }, + { + "Swing": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "savvyspender", + "url": "https://quay.io/repository/dunnesstores/savvyspender", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 403 + }, + { + "Vaadin": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 404 + }, + { + "AJAX": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 405 + }, + { + "AngularJS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "angularjs", + "url": "https://quay.io/repository/amaljose/angularjs", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "agbiz-logic", + "url": "https://quay.io/repository/seanhammond/agbiz-logic", + "popularity": 51.0 + }, + { + "name": "functional-angularjs", + "url": "https://quay.io/repository/alecmerdler/functional-angularjs", + "popularity": 0.0 + }, + { + "name": "cacao-frontend", + "url": "https://quay.io/repository/tamu_cpt/cacao-frontend", + "popularity": 0.0 + }, + { + "name": "lims-frontend", + "url": "https://quay.io/repository/tamu_cpt/lims-frontend", + "popularity": 0.0 + }, + { + "name": "aroundbika", + "url": "https://quay.io/repository/crs4/aroundbika", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 406 + }, + { + "Draw2D": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 407 + }, + { + "Express.js": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "express-microservice", + "url": "https://quay.io/repository/codefresh_sa/express-microservice", + "popularity": 914.0 + }, + { + "name": "memcached", + "url": "https://quay.io/repository/jitesoft/memcached", + "popularity": 52903.0 + }, + { + "name": "express-microservice-cache", + "url": "https://quay.io/repository/codefresh_sa/express-microservice-cache", + "popularity": 312.0 + }, + { + "name": "express-sample-app", + "url": "https://quay.io/repository/waynecabanto/express-sample-app", + "popularity": 176.0 + }, + { + "name": "express-ts", + "url": "https://quay.io/repository/tetchell/express-ts", + "popularity": 2.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 408 + }, + { + "Ext JS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "alpine-ext-kernel-boot-demo", + "url": "https://quay.io/repository/kubevirt/alpine-ext-kernel-boot-demo", + "popularity": 5672.0 + }, + { + "name": "ibm-monitoring-prometheus-operator-ext-bundle", + "url": "https://quay.io/repository/opencloudio/ibm-monitoring-prometheus-operator-ext-bundle", + "popularity": 434.0 + }, + { + "name": "ext-postgres-operator", + "url": "https://quay.io/repository/operatorhubio/ext-postgres-operator", + "popularity": 132.0 + }, + { + "name": "egeria", + "url": "https://quay.io/repository/odpi/egeria", + "popularity": 550.0 + }, + { + "name": "pam-oracledb-ext-img", + "url": "https://quay.io/repository/mmaset/pam-oracledb-ext-img", + "popularity": 140.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 409 + }, + { + "jqGrid": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 410 + }, + { + "JQuery": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/jquery-ui", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/jquery-ui", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "tradr-node-jquery-cp4i", + "url": "https://quay.io/repository/clouddragons/tradr-node-jquery-cp4i", + "popularity": 0.0 + }, + { + "name": "spellchecker", + "url": "https://quay.io/repository/cvlibrary/spellchecker", + "popularity": 0.0 + }, + { + "name": "sqlalchemy-datatables", + "url": "https://quay.io/repository/biocontainers/sqlalchemy-datatables", + "popularity": 0.0 + }, + { + "name": "r-nozzle.r1", + "url": "https://quay.io/repository/biocontainers/r-nozzle.r1", + "popularity": 0.0 + }, + { + "name": "laravel", + "url": "https://quay.io/repository/appcontainers/laravel", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 411 + }, + { + "jQuery UI": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/jquery-ui-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/jquery-ui-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/ui", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/rancher/ui", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/jquery-cookie", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/jquery-cookie", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "tradr-node-jquery-cp4i", + "url": "https://quay.io/repository/clouddragons/tradr-node-jquery-cp4i", + "popularity": 0.0 + }, + { + "name": "spellchecker", + "url": "https://quay.io/repository/cvlibrary/spellchecker", + "popularity": 0.0 + }, + { + "name": "sqlalchemy-datatables", + "url": "https://quay.io/repository/biocontainers/sqlalchemy-datatables", + "popularity": 0.0 + }, + { + "name": "r-nozzle.r1", + "url": "https://quay.io/repository/biocontainers/r-nozzle.r1", + "popularity": 0.0 + }, + { + "name": "laravel", + "url": "https://quay.io/repository/appcontainers/laravel", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 412 + }, + { + "React": [ + { + "dockerhub_exact_images": [ + { + "name": "ibmcom/react", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/react", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "ibmcom/react", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/react", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/react-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/react-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "react", + "url": "https://quay.io/repository/profects/react", + "popularity": 40.0 + }, + { + "name": "react", + "url": "https://quay.io/repository/agiagoulas/react", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "react-native-android", + "url": "https://quay.io/repository/profects/react-native-android", + "popularity": 0.0 + }, + { + "name": "egeria-react-ui", + "url": "https://quay.io/repository/odpi/egeria-react-ui", + "popularity": 242.0 + }, + { + "name": "react-app", + "url": "https://quay.io/repository/rtaneja/react-app", + "popularity": 0.0 + }, + { + "name": "react", + "url": "https://quay.io/repository/profects/react", + "popularity": 40.0 + }, + { + "name": "portal-react-prototype-data", + "url": "https://quay.io/repository/battelleecology/portal-react-prototype-data", + "popularity": 4.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 413 + }, + { + "script.aculo.us": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "startup-script", + "url": "https://quay.io/repository/cilium/startup-script", + "popularity": 166460.0 + }, + { + "name": "nginx", + "url": "https://quay.io/repository/jitesoft/nginx", + "popularity": 80338.0 + }, + { + "name": "podman", + "url": "https://quay.io/repository/containers/podman", + "popularity": 21241.0 + }, + { + "name": "netbox", + "url": "https://quay.io/repository/netboxcommunity/netbox", + "popularity": 12769.0 + }, + { + "name": "ubuntu", + "url": "https://quay.io/repository/baselibrary/ubuntu", + "popularity": 63580.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 414 + }, + { + "Valums AJAX File Uploader": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "concourse-file-resource", + "url": "https://quay.io/repository/henry40408/concourse-file-resource", + "popularity": 668842.0 + }, + { + "name": "insights-uploader", + "url": "https://quay.io/repository/fairwinds/insights-uploader", + "popularity": 759383.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 415 + }, + { + "OWASP Enterprise Security API": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/api", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/api", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/enterprise", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/rancher/enterprise", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/security-scan", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/rancher/security-scan", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "mongodb-enterprise-database", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", + "popularity": 118389.0 + }, + { + "name": "mongodb-enterprise-ops-manager", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", + "popularity": 142619.0 + }, + { + "name": "mongodb-enterprise-operator", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", + "popularity": 74259.0 + }, + { + "name": "mongodb-enterprise-appdb", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-appdb", + "popularity": 63629.0 + }, + { + "name": "k8s-sidecar", + "url": "https://quay.io/repository/kiwigrid/k8s-sidecar", + "popularity": 1320477.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 416 + }, + { + "Oraperl": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 417 + }, + { + "Android": [ + { + "dockerhub_exact_images": [ + { + "name": "circleci/android", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 72, + "Docker_Url": "https://hub.docker.com/r/circleci/android", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "cimg/android", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/cimg/android", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "cimg/android", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/cimg/android", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/android", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 72, + "Docker_Url": "https://hub.docker.com/r/circleci/android", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "android", + "url": "https://quay.io/repository/bitriseio/android", + "popularity": 262.0 + }, + { + "name": "android", + "url": "https://quay.io/repository/opaqnetworks/android", + "popularity": 0.0 + }, + { + "name": "android", + "url": "https://quay.io/repository/logistio/android", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "android", + "url": "https://quay.io/repository/bitriseio/android", + "popularity": 262.0 + }, + { + "name": "android-ndk", + "url": "https://quay.io/repository/bitriseio/android-ndk", + "popularity": 18.0 + }, + { + "name": "alpine-android", + "url": "https://quay.io/repository/alvr/alpine-android", + "popularity": 26.0 + }, + { + "name": "invidious", + "url": "https://quay.io/repository/invidious/invidious", + "popularity": 38116.0 + }, + { + "name": "build-environment-android", + "url": "https://quay.io/repository/callsign/build-environment-android", + "popularity": 255.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 418 + }, + { + "BeOS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 419 + }, + { + "Cisco IOS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cisco-hxcsi-operator", + "url": "https://quay.io/repository/operator-pipeline-prod/cisco-hxcsi-operator", + "popularity": 168.0 + }, + { + "name": "cisco-hxcsi-operator-index", + "url": "https://quay.io/repository/operator-pipeline-prod/cisco-hxcsi-operator-index", + "popularity": 0.0 + }, + { + "name": "cisco-200-301-dumps", + "url": "https://quay.io/repository/dumps4free/cisco-200-301-dumps", + "popularity": 0.0 + }, + { + "name": "z-push", + "url": "https://quay.io/repository/baschte/z-push", + "popularity": 0.0 + }, + { + "name": "ee-general-image", + "url": "https://quay.io/repository/nleiva/ee-general-image", + "popularity": 1.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 420 + }, + { + "DART": [ + { + "dockerhub_exact_images": [ + { + "name": "dart", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 68, + "Docker_Url": "https://hub.docker.com/_/dart", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "google/dart", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 88, + "Docker_Url": "https://hub.docker.com/r/google/dart", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "google/dart", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 88, + "Docker_Url": "https://hub.docker.com/r/google/dart", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "dart", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 68, + "Docker_Url": "https://hub.docker.com/_/dart", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "google/dart-runtime", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 32, + "Docker_Url": "https://hub.docker.com/r/google/dart-runtime", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "google/dart-hello", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 16, + "Docker_Url": "https://hub.docker.com/r/google/dart-hello", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "dart", + "url": "https://quay.io/repository/biocontainers/dart", + "popularity": 0.0 + }, + { + "name": "dart", + "url": "https://quay.io/repository/spivegin/dart", + "popularity": 0.0 + }, + { + "name": "dart", + "url": "https://quay.io/repository/official-images/dart", + "popularity": 0.0 + }, + { + "name": "dart", + "url": "https://quay.io/repository/sustainable_computing_io/dart", + "popularity": 0.0 + }, + { + "name": "dart", + "url": "https://quay.io/repository/gitpodified-workspace-images/dart", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "dart-caps-listen", + "url": "https://quay.io/repository/geonet/dart-caps-listen", + "popularity": 1021.0 + }, + { + "name": "dart-tilde-listen", + "url": "https://quay.io/repository/geonet/dart-tilde-listen", + "popularity": 682.0 + }, + { + "name": "dart-rapid", + "url": "https://quay.io/repository/geonet/dart-rapid", + "popularity": 681.0 + }, + { + "name": "bioconductor-dart", + "url": "https://quay.io/repository/biocontainers/bioconductor-dart", + "popularity": 369.0 + }, + { + "name": "dart", + "url": "https://quay.io/repository/biocontainers/dart", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 421 + }, + { + "Fabric OS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/os", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 55, + "Docker_Url": "https://hub.docker.com/r/rancher/os", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "flannel", + "url": "https://quay.io/repository/coreos/flannel", + "popularity": 1589952.0 + }, + { + "name": "fabric-peer", + "url": "https://quay.io/repository/kfsoftware/fabric-peer", + "popularity": 318.0 + }, + { + "name": "netop-fabric-manager", + "url": "https://quay.io/repository/noirolabs/netop-fabric-manager", + "popularity": 4.0 + }, + { + "name": "cortex-fabric-operator-image", + "url": "https://quay.io/repository/cleecs/cortex-fabric-operator-image", + "popularity": 0.0 + }, + { + "name": "flannel", + "url": "https://quay.io/repository/microshift/flannel", + "popularity": 8.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 422 + }, + { + "GNU": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + }, + { + "name": "invidious", + "url": "https://quay.io/repository/invidious/invidious", + "popularity": 38116.0 + }, + { + "name": "postgresql", + "url": "https://quay.io/repository/enterprisedb/postgresql", + "popularity": 18302.0 + }, + { + "name": "rseqc", + "url": "https://quay.io/repository/biocontainers/rseqc", + "popularity": 9885.0 + }, + { + "name": "multiqc", + "url": "https://quay.io/repository/biocontainers/multiqc", + "popularity": 9969.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 423 + }, + { + "IBM i": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [ + { + "package_id": "ed4a8453-75f2-46a4-9743-9f7b12d4d4ea", + "name": "kubeflow", + "normalized_name": "kubeflow", + "logo_image_id": "cb5e7dba-ea2d-4a65-a3b6-7def9d80358f", + "stars": 4, + "display_name": "Kubeflow", + "description": "Kubeflow Operator for deployment and management of Kubeflow", + "version": "1.2.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 15, + "high": 16, + "medium": 24, + "unknown": 1, + "critical": 4 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1584576000, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/kubeflow/kfctl", + "container_images": [] + }, + { + "package_id": "04e82101-c3d9-40ce-aa60-1091a070c852", + "name": "varnish-operator", + "normalized_name": "varnish-operator", + "logo_image_id": "b6312740-e66c-4339-9d0c-3931772fafb9", + "stars": 1, + "display_name": "Varnish Operator", + "description": "Run and manage Varnish clusters on Kubernetes", + "version": "0.27.2", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 84, + "high": 39, + "medium": 14, + "unknown": 2, + "critical": 11 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525859, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/varnish-operator", + "container_images": [] + }, + { + "package_id": "6b6f53e4-cf5f-4977-b151-24ce56e48a76", + "name": "composable-operator", + "normalized_name": "composable-operator", + "logo_image_id": "2f1b8acc-3b7d-46d8-847e-5a2be071f37f", + "stars": 0, + "display_name": "Composable", + "description": "Operator that can wrap any resource to make it dynamically configurable", + "version": "0.1.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 3, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1573936771, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/composable", + "container_images": [] + }, + { + "package_id": "90cdc9d8-91df-4b68-b4a4-def5b6109f9d", + "name": "cos-bucket-operator", + "normalized_name": "cos-bucket-operator", + "logo_image_id": "768edd17-ad00-48dd-a716-e3fc8aa311c9", + "stars": 0, + "display_name": "IBM COS Bucket Operator", + "description": "The IBM Bucket Operator provides a Kubernetes CRD-Based API to manage the lifecycle of IBM Cloud Object Storage Bucket.", + "version": "0.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 72, + "high": 2, + "medium": 33, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1566563916, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/cos-bucket-operator", + "container_images": [] + }, + { + "package_id": "e99cf1c5-8be8-4cc9-9e32-90933dc99b96", + "name": "enc-key-sync", + "normalized_name": "enc-key-sync", + "logo_image_id": "33c7d9c0-9c53-49a3-a505-384d435a2c42", + "stars": 0, + "display_name": "Encrypted Images Key Syncer Helm Operator", + "description": "This operator provides facility to sync decryption keys required for Encrypted Container Images.\n\n", + "version": "0.0.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 64, + "high": 16, + "medium": 168, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1595361600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/k8s-enc-image-operator", + "container_images": [ + "docker.io/lumjjb/enc-key-sync-operator:v0.0.1" + ] + }, + { + "package_id": "097570ef-5856-4966-9cf9-1125451d0959", + "name": "esindex-operator", + "normalized_name": "esindex-operator", + "logo_image_id": "2f1b8acc-3b7d-46d8-847e-5a2be071f37f", + "stars": 0, + "display_name": "Elasticsearch Index Operator", + "description": "An operator for managing indices on elasticsearch services", + "version": "0.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 82, + "high": 8, + "medium": 43, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1565343638, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/esindex-operator", + "container_images": [] + }, + { + "package_id": "7dc3af3f-1e21-4dc9-b792-16c44216d257", + "name": "event-streams-topic", + "normalized_name": "event-streams-topic", + "logo_image_id": "2f1b8acc-3b7d-46d8-847e-5a2be071f37f", + "stars": 0, + "display_name": "Event Streams Topic", + "description": "An operator for the life cycle management of Topics on Event Streams for IBM Cloud", + "version": "0.1.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 82, + "high": 8, + "medium": 37, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1572357160, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/event-streams-topic", + "container_images": [] + }, + { + "package_id": "44ad7306-e2e9-46ad-ba77-75d9d394fa3d", + "name": "external-secrets-operator", + "normalized_name": "external-secrets-operator", + "logo_image_id": "3e9f62d2-6760-4599-a686-026510e964cf", + "stars": 0, + "display_name": "External Secrets Operator", + "description": "Operator to configure external-secrets helm-chart based operator", + "version": "0.5.7", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 11, + "medium": 52, + "unknown": 5, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1637539200, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/external-secrets/external-secrets-helm-operator", + "container_images": [] + }, + { + "package_id": "28900b30-141f-4c00-beaa-e3b4e883b59f", + "name": "ham-deploy", + "normalized_name": "ham-deploy", + "logo_image_id": "2f1b8acc-3b7d-46d8-847e-5a2be071f37f", + "stars": 0, + "display_name": "Hybrid Application Model Operator", + "description": "Deploys the Hybrid Application Model", + "version": "0.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 65, + "high": 15, + "medium": 165, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1589241600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/hybridapp-io/ham-deploy", + "container_images": [ + "quay.io/hybridappio/ham-deploy:0.1.0" + ] + }, + { + "package_id": "c664da5b-3772-45de-b542-3454e94503b2", + "name": "ibm-application-gateway-operator", + "normalized_name": "ibm-application-gateway-operator", + "logo_image_id": "4a9da4c1-b12e-422b-802c-123ef125f166", + "stars": 0, + "display_name": "IBM Application Gateway Operator", + "description": "The IBM Application Gateway operator manages the lifecycle of IBM Application Gateway containers.", + "version": "22.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 2, + "medium": 32, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1648594832, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM-Security/ibm-application-gateway-operator", + "container_images": [] + }, + { + "package_id": "eaf3f39e-2ac7-4bd0-87bf-275421fb6353", + "name": "ibm-block-csi-operator-community", + "normalized_name": "ibm-block-csi-operator-community", + "logo_image_id": "b6312740-e66c-4339-9d0c-3931772fafb9", + "stars": 0, + "display_name": "IBM block storage CSI driver operator", + "description": "Run IBM block storage CSI driver.", + "version": "1.9.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 3, + "medium": 44, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1640430000, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/ibm-block-csi-operator", + "container_images": [] + }, + { + "package_id": "730af2fd-ace8-4ab8-b17f-6535c0283a4b", + "name": "ibmcloud-iam-operator", + "normalized_name": "ibmcloud-iam-operator", + "logo_image_id": "2f1b8acc-3b7d-46d8-847e-5a2be071f37f", + "stars": 0, + "display_name": "IBM Cloud IAM Operator", + "description": "The IBM Cloud IAM Operator provides a set of three Kubernetes CRD-Based APIs to manage the lifecycle of Access Policies, Access Groups, and Custom Roles on IAM for IBM public cloud.", + "version": "0.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 64, + "high": 15, + "medium": 168, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1597239415, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/ibmcloud-iam-operator", + "container_images": [] + }, + { + "package_id": "5bc93626-0773-4fb6-9ab2-6ac7b1a49c81", + "name": "ibmcloud-operator", + "normalized_name": "ibmcloud-operator", + "logo_image_id": "2f1b8acc-3b7d-46d8-847e-5a2be071f37f", + "stars": 0, + "display_name": "IBM Cloud Operator", + "description": "The IBM Cloud Operator provides a Kubernetes CRD-Based API to manage the lifecycle of IBM public cloud services.", + "version": "1.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 1, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1647490660, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/cloud-operators", + "container_images": [] + }, + { + "package_id": "783a78ca-f481-4edc-ae80-261c2e93db2e", + "name": "ibm-quantum-operator", + "normalized_name": "ibm-quantum-operator", + "logo_image_id": "56a77342-5b42-418b-8e28-a5060cec1047", + "stars": 0, + "display_name": "Ibm Quantum Operator", + "description": "Operator to run quantum circuits build using Qiskit on IBM quantum systems", + "version": "0.1.0", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525859, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/redhat-et/ibm-quantum-operator", + "container_images": [ + "quay.io/application/husky_parul/ibm-quantum-operator" + ] + }, + { + "package_id": "50ad9036-1fdd-4796-950b-d3a9f7d2f8ab", + "name": "ibm-security-verify-access-operator", + "normalized_name": "ibm-security-verify-access-operator", + "logo_image_id": "94df743b-650d-4b0e-94ff-77df50cbc0c7", + "stars": 0, + "display_name": "IBM Security Verify Access Operator", + "description": "The IBM Security Verify Access Operator manages the lifecycle of IBM Security Verify Access worker containers.", + "version": "21.10.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 1, + "medium": 0, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1634277625, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM-Security/verify-access-operator", + "container_images": [] + }, + { + "package_id": "25527a7e-74b4-4129-975d-8b1e42e44327", + "name": "ibm-spectrum-scale-csi-operator", + "normalized_name": "ibm-spectrum-scale-csi-operator", + "logo_image_id": "a4a6430a-5c0a-47da-9333-b88782d59d39", + "stars": 0, + "display_name": "IBM Spectrum Scale CSI Plugin Operator", + "description": "An operator for deploying and managing the IBM Spectrum Scale CSI Driver.", + "version": "2.6.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656309636, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/ibm-spectrum-scale-csi/", + "container_images": [ + "quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator" + ] + }, + { + "package_id": "977ddfd9-16a0-42c2-8f76-024c1cf6ade5", + "name": "open-liberty", + "normalized_name": "open-liberty", + "logo_image_id": "207d05c6-2e47-411a-bf11-cc5f919a596b", + "stars": 0, + "display_name": "Open Liberty Operator", + "description": "Deploy and manage applications running on Open Liberty", + "version": "0.7.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 43, + "high": 5, + "medium": 62, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1595408400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/OpenLiberty/open-liberty-operator", + "container_images": [] + }, + { + "package_id": "c21967c3-2cbd-47bd-aa14-85a7e916f710", + "name": "openshift-qiskit-operator", + "normalized_name": "openshift-qiskit-operator", + "logo_image_id": "d221375e-81f4-423c-a46d-52fa841c1864", + "stars": 0, + "display_name": "QiskitPlayground", + "description": "Launches a developement environment Jupyter notebok development environment for\ndeveloping quantum applications using Qiskit.", + "version": "0.2.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 2, + "medium": 1, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1632454225, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/kubernetes-qiskit-operator", + "container_images": [ + "docker.io/qiskit/operator:0.1" + ] + } + ] + } + ], + "entity_type": 6, + "entity_id": 424 + }, + { + "iOS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "z-push", + "url": "https://quay.io/repository/baschte/z-push", + "popularity": 0.0 + }, + { + "name": "ee-general-image", + "url": "https://quay.io/repository/nleiva/ee-general-image", + "popularity": 1.0 + }, + { + "name": "cisco_exporter", + "url": "https://quay.io/repository/danhawker/cisco_exporter", + "popularity": 0.0 + }, + { + "name": "xr-genie", + "url": "https://quay.io/repository/nleiva/xr-genie", + "popularity": 0.0 + }, + { + "name": "scholastic-blog", + "url": "https://quay.io/repository/andygray123/scholastic-blog", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 425 + }, + { + "Linux": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + }, + { + "name": "ibm-management-ingress-operator", + "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", + "popularity": 111760.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 117024.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 426 + }, + { + "CentOS": [ + { + "dockerhub_exact_images": [ + { + "name": "centos", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 7234, + "Docker_Url": "https://hub.docker.com/_/centos", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "centos", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 7234, + "Docker_Url": "https://hub.docker.com/_/centos", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "datadog/centos-i386", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/datadog/centos-i386", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/centos-7-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 21, + "Docker_Url": "https://hub.docker.com/r/kasmweb/centos-7-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "centos", + "url": "https://quay.io/repository/centos/centos", + "popularity": 412636.0 + }, + { + "name": "centos", + "url": "https://quay.io/repository/containerdisks/centos", + "popularity": 6511.0 + }, + { + "name": "centos", + "url": "https://quay.io/repository/openshifttest/centos", + "popularity": 1166.0 + } + ], + "quay_top_images": [ + { + "name": "centos", + "url": "https://quay.io/repository/centos/centos", + "popularity": 412636.0 + }, + { + "name": "centos-base", + "url": "https://quay.io/repository/ukhomeofficedigital/centos-base", + "popularity": 43188.0 + }, + { + "name": "centos-stream", + "url": "https://quay.io/repository/containerdisks/centos-stream", + "popularity": 14022.0 + }, + { + "name": "centos-quarkus-maven", + "url": "https://quay.io/repository/quarkus/centos-quarkus-maven", + "popularity": 9816.0 + }, + { + "name": "ceph", + "url": "https://quay.io/repository/ceph/ceph", + "popularity": 335511.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 427 + }, + { + "Check Point": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "docker/ip-util-check", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/docker/ip-util-check", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "check-aws-tags", + "url": "https://quay.io/repository/sergioballesteros/check-aws-tags", + "popularity": 42674.0 + }, + { + "name": "invidious", + "url": "https://quay.io/repository/invidious/invidious", + "popularity": 38116.0 + }, + { + "name": "memcached", + "url": "https://quay.io/repository/jitesoft/memcached", + "popularity": 52903.0 + }, + { + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", + "popularity": 20112.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 428 + }, + { + "Debian": [ + { + "dockerhub_exact_images": [ + { + "name": "debian", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 4370, + "Docker_Url": "https://hub.docker.com/_/debian", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "riscv64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "debian", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 4370, + "Docker_Url": "https://hub.docker.com/_/debian", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "riscv64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "datadog/debian-i386", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/datadog/debian-i386", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "debian", + "url": "https://quay.io/repository/official-images/debian", + "popularity": 162.0 + }, + { + "name": "debian", + "url": "https://quay.io/repository/libpod/debian", + "popularity": 1214.0 + }, + { + "name": "debian", + "url": "https://quay.io/repository/broadstripes/debian", + "popularity": 45.0 + } + ], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + }, + { + "name": "debian", + "url": "https://quay.io/repository/libpod/debian", + "popularity": 1214.0 + }, + { + "name": "debian-source-haproxy", + "url": "https://quay.io/repository/openstack.kolla/debian-source-haproxy", + "popularity": 422.0 + }, + { + "name": "debian-tall", + "url": "https://quay.io/repository/gravitational/debian-tall", + "popularity": 869.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 429 + }, + { + "Junos OS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/os", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 55, + "Docker_Url": "https://hub.docker.com/r/rancher/os", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 430 + }, + { + "openSUSE": [ + { + "dockerhub_exact_images": [ + { + "name": "opensuse", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 320, + "Docker_Url": "https://hub.docker.com/_/opensuse", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "opensuse", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 320, + "Docker_Url": "https://hub.docker.com/_/opensuse", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "opensuse", + "url": "https://quay.io/repository/wstein/opensuse", + "popularity": 0.0 + }, + { + "name": "opensuse", + "url": "https://quay.io/repository/ucomesdag/opensuse", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "opensuse-systemd", + "url": "https://quay.io/repository/gotmax23/opensuse-systemd", + "popularity": 26.0 + }, + { + "name": "vm-opensuse-leap-15", + "url": "https://quay.io/repository/kubespray/vm-opensuse-leap-15", + "popularity": 40.0 + }, + { + "name": "opensuse-tumbleweed-systemd", + "url": "https://quay.io/repository/gotmax23/opensuse-tumbleweed-systemd", + "popularity": 14.0 + }, + { + "name": "opensuse-leap-systemd", + "url": "https://quay.io/repository/gotmax23/opensuse-leap-systemd", + "popularity": 8.0 + }, + { + "name": "fedora-systemd", + "url": "https://quay.io/repository/gotmax23/fedora-systemd", + "popularity": 24.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 431 + }, + { + "Oracle Linux": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + }, + { + "name": "ibm-management-ingress-operator", + "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", + "popularity": 111760.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 117024.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 432 + }, + { + "Photon OS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/os", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 55, + "Docker_Url": "https://hub.docker.com/r/rancher/os", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "goharbor-clair-photon", + "url": "https://quay.io/repository/klovercloud/goharbor-clair-photon", + "popularity": 1005.0 + }, + { + "name": "nginx-photon", + "url": "https://quay.io/repository/rackspace/nginx-photon", + "popularity": 84.0 + }, + { + "name": "notary-server-photon", + "url": "https://quay.io/repository/rackspace/notary-server-photon", + "popularity": 84.0 + }, + { + "name": "registry-photon", + "url": "https://quay.io/repository/rackspace/registry-photon", + "popularity": 84.0 + }, + { + "name": "notary-signer-photon", + "url": "https://quay.io/repository/rackspace/notary-signer-photon", + "popularity": 84.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 433 + }, + { + "Red Hat Enterprise Linux": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/enterprise", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/rancher/enterprise", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "grafana/enterprise-logs", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-logs", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "mongodb-enterprise-database", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", + "popularity": 118389.0 + }, + { + "name": "mongodb-enterprise-ops-manager", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", + "popularity": 142619.0 + }, + { + "name": "mongodb-enterprise-operator", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", + "popularity": 74259.0 + }, + { + "name": "mongodb-enterprise-appdb", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-appdb", + "popularity": 63629.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 434 + }, + { + "SUSE Linux Enterprise Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "mongodb-enterprise-ops-manager", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", + "popularity": 142619.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 435 + }, + { + "Ubuntu": [ + { + "dockerhub_exact_images": [ + { + "name": "ubuntu", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 14569, + "Docker_Url": "https://hub.docker.com/_/ubuntu", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "riscv64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "ubuntu", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 14569, + "Docker_Url": "https://hub.docker.com/_/ubuntu", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "riscv64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ubuntu-upstart", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 112, + "Docker_Url": "https://hub.docker.com/_/ubuntu-upstart", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + }, + { + "name": "ubuntu-debootstrap", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 46, + "Docker_Url": "https://hub.docker.com/_/ubuntu-debootstrap", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/ubuntu-base-buildpack", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/bitnami/ubuntu-base-buildpack", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/ubuntu-bionic-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 29, + "Docker_Url": "https://hub.docker.com/r/kasmweb/ubuntu-bionic-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "ubuntu", + "url": "https://quay.io/repository/tamr/ubuntu", + "popularity": 517.0 + }, + { + "name": "ubuntu", + "url": "https://quay.io/repository/libpod/ubuntu", + "popularity": 30651.0 + }, + { + "name": "ubuntu", + "url": "https://quay.io/repository/bedrock/ubuntu", + "popularity": 28370.0 + }, + { + "name": "ubuntu", + "url": "https://quay.io/repository/cybozu/ubuntu", + "popularity": 5255.0 + }, + { + "name": "ubuntu", + "url": "https://quay.io/repository/baselibrary/ubuntu", + "popularity": 63580.0 + }, + { + "name": "ubuntu", + "url": "https://quay.io/repository/widen/ubuntu", + "popularity": 123.0 + } + ], + "quay_top_images": [ + { + "name": "ubuntu", + "url": "https://quay.io/repository/libpod/ubuntu", + "popularity": 30651.0 + }, + { + "name": "ubuntu", + "url": "https://quay.io/repository/bedrock/ubuntu", + "popularity": 28370.0 + }, + { + "name": "ubuntu", + "url": "https://quay.io/repository/cybozu/ubuntu", + "popularity": 5255.0 + }, + { + "name": "ubuntu", + "url": "https://quay.io/repository/baselibrary/ubuntu", + "popularity": 63580.0 + }, + { + "name": "ubuntu-debug", + "url": "https://quay.io/repository/cybozu/ubuntu-debug", + "popularity": 2425.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 436 + }, + { + "zLinux": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 437 + }, + { + "macOS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "bowtie2", + "url": "https://quay.io/repository/biocontainers/bowtie2", + "popularity": 720.0 + }, + { + "name": "rhel8_runtime", + "url": "https://quay.io/repository/openvino/rhel8_runtime", + "popularity": 20.0 + }, + { + "name": "rust", + "url": "https://quay.io/repository/omnijar/rust", + "popularity": 0.0 + }, + { + "name": "ccc", + "url": "https://quay.io/repository/jlospinoso/ccc", + "popularity": 0.0 + }, + { + "name": "app-engine-go", + "url": "https://quay.io/repository/kujenga/app-engine-go", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 438 + }, + { + "MVS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 439 + }, + { + "OS/390": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 440 + }, + { + "z/OS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 441 + }, + { + "OpenVMS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 442 + }, + { + "OS/2": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 443 + }, + { + "Unix": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "memcached-exporter", + "url": "https://quay.io/repository/prometheus/memcached-exporter", + "popularity": 65896.0 + }, + { + "name": "statsd-exporter", + "url": "https://quay.io/repository/prometheus/statsd-exporter", + "popularity": 8725.0 + }, + { + "name": "entrez-direct", + "url": "https://quay.io/repository/biocontainers/entrez-direct", + "popularity": 69.0 + }, + { + "name": "rsync-ssh", + "url": "https://quay.io/repository/instrumentisto/rsync-ssh", + "popularity": 30.0 + }, + { + "name": "watchtower", + "url": "https://quay.io/repository/webhippie/watchtower", + "popularity": 21.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 444 + }, + { + "AIX": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "nginx", + "url": "https://quay.io/repository/bbihq/nginx", + "popularity": 0.0 + }, + { + "name": "ibm-spectrum-scale-csi-driver", + "url": "https://quay.io/repository/mew2057/ibm-spectrum-scale-csi-driver", + "popularity": 0.0 + }, + { + "name": "nginx", + "url": "https://quay.io/repository/ibmz/nginx", + "popularity": 0.0 + }, + { + "name": "nginx", + "url": "https://quay.io/repository/ibm/nginx", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 445 + }, + { + "BSD": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "nginx", + "url": "https://quay.io/repository/jitesoft/nginx", + "popularity": 80338.0 + }, + { + "name": "mafft", + "url": "https://quay.io/repository/biocontainers/mafft", + "popularity": 1380.0 + }, + { + "name": "diamond", + "url": "https://quay.io/repository/biocontainers/diamond", + "popularity": 747.0 + }, + { + "name": "redis", + "url": "https://quay.io/repository/smile/redis", + "popularity": 465.0 + }, + { + "name": "alignlib-lite", + "url": "https://quay.io/repository/biocontainers/alignlib-lite", + "popularity": 630.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 446 + }, + { + "FreeBSD": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "freebsd", + "url": "https://quay.io/repository/uchida/freebsd", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "golang-builder", + "url": "https://quay.io/repository/prometheus/golang-builder", + "popularity": 3618.0 + }, + { + "name": "freebsd", + "url": "https://quay.io/repository/uchida/freebsd", + "popularity": 0.0 + }, + { + "name": "freebsd-minimal", + "url": "https://quay.io/repository/dougrabson/freebsd-minimal", + "popularity": 0.0 + }, + { + "name": "freebsd-container-disk-demo", + "url": "https://quay.io/repository/karmab/freebsd-container-disk-demo", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 447 + }, + { + "SunOS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 448 + }, + { + "HP-UX": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 449 + }, + { + "Windows": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/windows-scheduler", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/rancher/windows-scheduler", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/windows-runtime-base", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/windows-runtime-base", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "windows", + "url": "https://quay.io/repository/mhallin/windows", + "popularity": 37.0 + }, + { + "name": "windows", + "url": "https://quay.io/repository/mgba/windows", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "windows-upgrade", + "url": "https://quay.io/repository/calico/windows-upgrade", + "popularity": 7833.0 + }, + { + "name": "community-windows-machine-config-operator", + "url": "https://quay.io/repository/openshift-windows/community-windows-machine-config-operator", + "popularity": 228.0 + }, + { + "name": "golang-builder", + "url": "https://quay.io/repository/prometheus/golang-builder", + "popularity": 3618.0 + }, + { + "name": "server", + "url": "https://quay.io/repository/codimd/server", + "popularity": 2465.0 + }, + { + "name": "fmeserver-engine", + "url": "https://quay.io/repository/safesoftware/fmeserver-engine", + "popularity": 155.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 450 + }, + { + "Windows Desktop": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/windows-scheduler", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/rancher/windows-scheduler", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "desktop", + "url": "https://quay.io/repository/capesos/desktop", + "popularity": 878313.0 + }, + { + "name": "desktop", + "url": "https://quay.io/repository/mocaccino/desktop", + "popularity": 28816.0 + }, + { + "name": "windows-upgrade", + "url": "https://quay.io/repository/calico/windows-upgrade", + "popularity": 7833.0 + }, + { + "name": "golang-builder", + "url": "https://quay.io/repository/prometheus/golang-builder", + "popularity": 3618.0 + }, + { + "name": "server", + "url": "https://quay.io/repository/codimd/server", + "popularity": 2465.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 451 + }, + { + "Windows Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/server-base", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/server-base", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/server-nomad", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 452 + }, + { + "Fedora": [ + { + "dockerhub_exact_images": [ + { + "name": "fedora", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1068, + "Docker_Url": "https://hub.docker.com/_/fedora", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "fedora", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1068, + "Docker_Url": "https://hub.docker.com/_/fedora", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/fhe-toolkit-fedora", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/fhe-toolkit-fedora", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "fedora", + "url": "https://quay.io/repository/fedora/fedora", + "popularity": 23547.0 + }, + { + "name": "fedora", + "url": "https://quay.io/repository/containerdisks/fedora", + "popularity": 9671.0 + }, + { + "name": "fedora", + "url": "https://quay.io/repository/kubevirtci/fedora", + "popularity": 6124.0 + }, + { + "name": "fedora", + "url": "https://quay.io/repository/libpod/fedora", + "popularity": 6324.0 + }, + { + "name": "fedora", + "url": "https://quay.io/repository/startx/fedora", + "popularity": 8720.0 + } + ], + "quay_top_images": [ + { + "name": "fedora", + "url": "https://quay.io/repository/fedora/fedora", + "popularity": 23547.0 + }, + { + "name": "fedora", + "url": "https://quay.io/repository/containerdisks/fedora", + "popularity": 9671.0 + }, + { + "name": "fedora-for-psi-ocp-monitoring", + "url": "https://quay.io/repository/psi-ocp/fedora-for-psi-ocp-monitoring", + "popularity": 12667.0 + }, + { + "name": "fedora", + "url": "https://quay.io/repository/startx/fedora", + "popularity": 8720.0 + }, + { + "name": "stable", + "url": "https://quay.io/repository/buildah/stable", + "popularity": 52927.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 453 + }, + { + "Amazon Linux": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "amazon/amazon-ecs-agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 90, + "Docker_Url": "https://hub.docker.com/r/amazon/amazon-ecs-agent", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "amazon/amazon-ecs-sample", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 25, + "Docker_Url": "https://hub.docker.com/r/amazon/amazon-ecs-sample", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + }, + { + "name": "ibm-management-ingress-operator", + "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", + "popularity": 111760.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 117024.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 454 + }, + { + "Clear Basic": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "nginx-basic-auth-proxy", + "url": "https://quay.io/repository/dtan4/nginx-basic-auth-proxy", + "popularity": 6015.0 + }, + { + "name": "nginx", + "url": "https://quay.io/repository/jitesoft/nginx", + "popularity": 80338.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + }, + { + "name": "basic-ocp-demo", + "url": "https://quay.io/repository/freedomben/basic-ocp-demo", + "popularity": 1050.0 + }, + { + "name": "haproxy-exporter", + "url": "https://quay.io/repository/prometheus/haproxy-exporter", + "popularity": 12544.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 455 + }, + { + "ATLAS Transformation Language": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/transformation-advisor-server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/transformation-advisor-server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/transformation-advisor-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/transformation-advisor-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/transformation-advisor-ui", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/transformation-advisor-ui", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/transformation-advisor-db", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/transformation-advisor-db", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "backend-atlas", + "url": "https://quay.io/repository/rhacs-demo/backend-atlas", + "popularity": 10330.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "yaml-language-server", + "url": "https://quay.io/repository/redhat-developer/yaml-language-server", + "popularity": 2235.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 456 + }, + { + "Client Deploy Tool": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "cimg/deploy", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/cimg/deploy", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "percona/pmm-client", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/percona/pmm-client", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "nfs-client-provisioner", + "url": "https://quay.io/repository/external_storage/nfs-client-provisioner", + "popularity": 754210.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "nfs-client-provisioner-arm", + "url": "https://quay.io/repository/external_storage/nfs-client-provisioner-arm", + "popularity": 86392.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "gitlab-runner-docker-cleanup", + "url": "https://quay.io/repository/gitlab/gitlab-runner-docker-cleanup", + "popularity": 802500.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 457 + }, + { + "Extended Structured Query Language": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "query", + "url": "https://quay.io/repository/sisense/query", + "popularity": 2407.0 + }, + { + "name": "jaeger-query", + "url": "https://quay.io/repository/jaegertracing/jaeger-query", + "popularity": 10012.0 + }, + { + "name": "k8s-config-connector-extended", + "url": "https://quay.io/repository/cloud104/k8s-config-connector-extended", + "popularity": 3828.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 458 + }, + { + "Asset Discovery for Distributed": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "discovery", + "url": "https://quay.io/repository/solo-io/discovery", + "popularity": 128877.0 + }, + { + "name": "node-feature-discovery", + "url": "https://quay.io/repository/kubernetes_incubator/node-feature-discovery", + "popularity": 65756.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "origin-node-feature-discovery", + "url": "https://quay.io/repository/openshift/origin-node-feature-discovery", + "popularity": 81718.0 + }, + { + "name": "asset-cache", + "url": "https://quay.io/repository/rhacs-demo/asset-cache", + "popularity": 23508.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 459 + }, + { + "TSM API": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/api", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/api", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "api-firewall", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 17, + "Docker_Url": "https://hub.docker.com/_/api-firewall", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "wallarm/api-firewall", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 23, + "Docker_Url": "https://hub.docker.com/r/wallarm/api-firewall", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v6", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-platform-api-operator", + "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", + "popularity": 47566.0 + }, + { + "name": "virt-api", + "url": "https://quay.io/repository/kubevirt/virt-api", + "popularity": 23947.0 + }, + { + "name": "insights-api", + "url": "https://quay.io/repository/fairwinds/insights-api", + "popularity": 31210.0 + }, + { + "name": "k8s-sidecar", + "url": "https://quay.io/repository/kiwigrid/k8s-sidecar", + "popularity": 1320477.0 + }, + { + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 353617.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 460 + }, + { + "TSM Client": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "percona/pmm-client", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/percona/pmm-client", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/minio-client", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/bitnami/minio-client", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "google/apigee-cassandra-client", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/google/apigee-cassandra-client", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/secure-gateway-client", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/ibmcom/secure-gateway-client", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "nfs-client-provisioner", + "url": "https://quay.io/repository/external_storage/nfs-client-provisioner", + "popularity": 754210.0 + }, + { + "name": "nfs-client-provisioner-arm", + "url": "https://quay.io/repository/external_storage/nfs-client-provisioner-arm", + "popularity": 86392.0 + }, + { + "name": "oc-client-test", + "url": "https://quay.io/repository/vishwanath_puranik/oc-client-test", + "popularity": 39222.0 + }, + { + "name": "defectdojo-client", + "url": "https://quay.io/repository/sdase/defectdojo-client", + "popularity": 5805.0 + }, + { + "name": "kubernetes-vault-client", + "url": "https://quay.io/repository/travelaudience/kubernetes-vault-client", + "popularity": 9887.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 461 + }, + { + "TSM Storage Agent": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "datadog/agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 88, + "Docker_Url": "https://hub.docker.com/r/datadog/agent", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.17763.3046", + "Type": "windows", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.18363.1556", + "Type": "windows", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.19041.1415", + "Type": "windows", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.19042.1706", + "Type": "windows", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.20348.768", + "Type": "windows", + "Subtype": "" + } + ] + }, + { + "name": "sysdig/agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 17, + "Docker_Url": "https://hub.docker.com/r/sysdig/agent", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "portainer/agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 155, + "Docker_Url": "https://hub.docker.com/r/portainer/agent", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.17763.3046", + "Type": "windows", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.18363.1556", + "Type": "windows", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.19041.1415", + "Type": "windows", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.19042.1766", + "Type": "windows", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.20348.768", + "Type": "windows", + "Subtype": "" + } + ] + }, + { + "name": "rancher/agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 89, + "Docker_Url": "https://hub.docker.com/r/rancher/agent", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "grafana/agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/grafana/agent", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v6", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "signalfx-agent", + "url": "https://quay.io/repository/signalfx/signalfx-agent", + "popularity": 2424166.0 + }, + { + "name": "agent", + "url": "https://quay.io/repository/sysdig/agent", + "popularity": 250479.0 + }, + { + "name": "mongodb-agent", + "url": "https://quay.io/repository/mongodb/mongodb-agent", + "popularity": 275669.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "workload-agent", + "url": "https://quay.io/repository/sysdig/workload-agent", + "popularity": 242641.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 462 + }, + { + "VSS Requestor": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "requestor", + "url": "https://quay.io/repository/cdis/requestor", + "popularity": 3588.0 + }, + { + "name": "qpid-requestor", + "url": "https://quay.io/repository/lslavkov/qpid-requestor", + "popularity": 0.0 + }, + { + "name": "goproxy", + "url": "https://quay.io/repository/jsparrow/goproxy", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 463 + }, + { + "Veeam Explorer": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "explorer-bff", + "url": "https://quay.io/repository/decentraland/explorer-bff", + "popularity": 40.0 + }, + { + "name": "pso-explorer", + "url": "https://quay.io/repository/purestorage/pso-explorer", + "popularity": 62.0 + }, + { + "name": "explorer-metrics", + "url": "https://quay.io/repository/decentraland/explorer-metrics", + "popularity": 38.0 + }, + { + "name": "bitcoin-explorer", + "url": "https://quay.io/repository/hirosystems/bitcoin-explorer", + "popularity": 126.0 + }, + { + "name": "explorer", + "url": "https://quay.io/repository/jkunstle/explorer", + "popularity": 555.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 464 + }, + { + "MS SQL Server Browser": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "gooddata/sql-executor", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 465 + }, + { + "Data Transformation Services": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/transformation-advisor-ui", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/transformation-advisor-ui", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/transformation-advisor-db", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/transformation-advisor-db", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/transformation-advisor-server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/transformation-advisor-server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "haproxy-ingress", + "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", + "popularity": 929588.0 + }, + { + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 353617.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 466 + }, + { + "Log Reader Agent": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/log-aggregator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/rancher/log-aggregator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "signalfx-agent", + "url": "https://quay.io/repository/signalfx/signalfx-agent", + "popularity": 2424166.0 + }, + { + "name": "bored-agent", + "url": "https://quay.io/repository/k8slens/bored-agent", + "popularity": 168797.0 + }, + { + "name": "agent", + "url": "https://quay.io/repository/sysdig/agent", + "popularity": 250479.0 + }, + { + "name": "mongodb-agent", + "url": "https://quay.io/repository/mongodb/mongodb-agent", + "popularity": 275669.0 + }, + { + "name": "workload-agent", + "url": "https://quay.io/repository/sysdig/workload-agent", + "popularity": 242641.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 467 + }, + { + "SQL Server Analysis Services": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "gooddata/sql-executor", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 468 + }, + { + "SQL Server Database Engine": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "engine", + "url": "https://quay.io/repository/codefresh/engine", + "popularity": 334883.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 469 + }, + { + "SQL Server Integration Services": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "gooddata/sql-executor", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 470 + }, + { + "SQL Server Management Studio": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "ibm-management-ingress-operator", + "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", + "popularity": 111760.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 471 + }, + { + "SQL Server Report Builder": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "gooddata/sql-executor", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/builder-base", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/circleci/builder-base", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "cf-docker-builder", + "url": "https://quay.io/repository/codefresh/cf-docker-builder", + "popularity": 84282.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 472 + }, + { + "SQL Server Reporting Services": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "gooddata/sql-executor", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 473 + }, + { + "Jserver": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 474 + }, + { + "Oracle Spatial and Graph": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ocp-release", + "url": "https://quay.io/repository/openshift-release-dev/ocp-release", + "popularity": 39354632.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "thanos", + "url": "https://quay.io/repository/thanos/thanos", + "popularity": 2534311.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 475 + }, + { + "SAP EHP": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "sap-side-by-side-be", + "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", + "popularity": 3358.0 + }, + { + "name": "sap-btp-operator", + "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", + "popularity": 132.0 + }, + { + "name": "container-image-registry", + "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", + "popularity": 7558.0 + }, + { + "name": "sdi-observer", + "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", + "popularity": 6548.0 + }, + { + "name": "sdi-observer", + "url": "https://quay.io/repository/miminar/sdi-observer", + "popularity": 165.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 476 + }, + { + "SAP Kernel": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "docker/for-desktop-kernel", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/docker/for-desktop-kernel", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "docker/for-desktop-kernel-grpcfuse", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/docker/for-desktop-kernel-grpcfuse", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "kernel-stable", + "url": "https://quay.io/repository/capesos/kernel-stable", + "popularity": 6937.0 + }, + { + "name": "redis-operator", + "url": "https://quay.io/repository/opstree/redis-operator", + "popularity": 70825.0 + }, + { + "name": "container-image-registry", + "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", + "popularity": 7558.0 + }, + { + "name": "statsd-exporter", + "url": "https://quay.io/repository/prometheus/statsd-exporter", + "popularity": 8725.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 477 + }, + { + "SQL*Plus": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "oradb-dq", + "url": "https://quay.io/repository/dqdevs/oradb-dq", + "popularity": 0.0 + }, + { + "name": "ora-xe-11g-dq", + "url": "https://quay.io/repository/dqdevs/ora-xe-11g-dq", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 478 + }, + { + "Sybase Central": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "central-db", + "url": "https://quay.io/repository/stackrox-io/central-db", + "popularity": 1121.0 + }, + { + "name": "centos-binary-ceilometer-central", + "url": "https://quay.io/repository/tripleotraincentos8/centos-binary-ceilometer-central", + "popularity": 330.0 + }, + { + "name": "openstack-ceilometer-central", + "url": "https://quay.io/repository/tripleowallaby/openstack-ceilometer-central", + "popularity": 302.0 + }, + { + "name": "business-central-workbench-showcase", + "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", + "popularity": 609.0 + }, + { + "name": "business-central-workbench", + "url": "https://quay.io/repository/kiegroup/business-central-workbench", + "popularity": 592.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 479 + }, + { + "Sybase Dsedit": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 480 + }, + { + "TIBCO Business Works": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "memcached", + "url": "https://quay.io/repository/jitesoft/memcached", + "popularity": 52903.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + }, + { + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", + "popularity": 20112.0 + }, + { + "name": "daemon", + "url": "https://quay.io/repository/ceph/daemon", + "popularity": 3450.0 + }, + { + "name": "freeipa-server", + "url": "https://quay.io/repository/freeipa/freeipa-server", + "popularity": 2325.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 5, + "entity_id": 481 + }, + { + "Common Runtime Library": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "google/apigee-runtime", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/google/apigee-runtime", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "snyk/runtime-fixtures", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/snyk/runtime-fixtures", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/library-busybox", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/library-busybox", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/library-traefik", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/rancher/library-traefik", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/library-nginx", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/library-nginx", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + }, + { + "name": "common-web-ui", + "url": "https://quay.io/repository/opencloudio/common-web-ui", + "popularity": 353182.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 7, + "entity_id": 482 + }, + { + "log4net": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 7, + "entity_id": 483 + }, + { + "Magick.NET": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + }, + { + "name": "samtools", + "url": "https://quay.io/repository/biocontainers/samtools", + "popularity": 47366.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 7, + "entity_id": 484 + }, + { + "Windows Communication Foundation": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/windows-scheduler", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/rancher/windows-scheduler", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/windows-runtime-base", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/windows-runtime-base", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "windows-upgrade", + "url": "https://quay.io/repository/calico/windows-upgrade", + "popularity": 7833.0 + }, + { + "name": "community-windows-machine-config-operator", + "url": "https://quay.io/repository/openshift-windows/community-windows-machine-config-operator", + "popularity": 228.0 + }, + { + "name": "community-windows-machine-config-operator", + "url": "https://quay.io/repository/openshift-community-operators/community-windows-machine-config-operator", + "popularity": 131.0 + }, + { + "name": "che-machine-exec", + "url": "https://quay.io/repository/eclipse/che-machine-exec", + "popularity": 9244.0 + }, + { + "name": "golang-builder", + "url": "https://quay.io/repository/prometheus/golang-builder", + "popularity": 3618.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 7, + "entity_id": 485 + }, + { + "Windows Workflow Foundation": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/windows-scheduler", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/rancher/windows-scheduler", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/windows-runtime-base", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/windows-runtime-base", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "workflow-controller", + "url": "https://quay.io/repository/argoproj/workflow-controller", + "popularity": 1196920.0 + }, + { + "name": "workflow-service", + "url": "https://quay.io/repository/ukhomeofficedigital/workflow-service", + "popularity": 315.0 + }, + { + "name": "windows-upgrade", + "url": "https://quay.io/repository/calico/windows-upgrade", + "popularity": 7833.0 + }, + { + "name": "workflow-helpers", + "url": "https://quay.io/repository/thoth-station/workflow-helpers", + "popularity": 2349.0 + }, + { + "name": "workflow-controller", + "url": "https://quay.io/repository/codefresh/workflow-controller", + "popularity": 2760.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 7, + "entity_id": 486 + }, + { + "WinForms": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 7, + "entity_id": 487 + }, + { + "ADO": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "ado", + "url": "https://quay.io/repository/scottlezberg/ado", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "ado-image-updater", + "url": "https://quay.io/repository/mrethers/ado-image-updater", + "popularity": 0.0 + }, + { + "name": "ray", + "url": "https://quay.io/repository/charlizeray/ray", + "popularity": 0.0 + }, + { + "name": "ado", + "url": "https://quay.io/repository/scottlezberg/ado", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 7, + "entity_id": 488 + }, + { + "Easy Migration Tool": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/migration-tools", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/migration-tools", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/migration-agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/migration-agent", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "insights-db-migration", + "url": "https://quay.io/repository/fairwinds/insights-db-migration", + "popularity": 75903.0 + }, + { + "name": "gitlab-runner-docker-cleanup", + "url": "https://quay.io/repository/gitlab/gitlab-runner-docker-cleanup", + "popularity": 802500.0 + }, + { + "name": "tool-box", + "url": "https://quay.io/repository/redhat-cop/tool-box", + "popularity": 4928.0 + }, + { + "name": "audit-syslog-service", + "url": "https://quay.io/repository/opencloudio/audit-syslog-service", + "popularity": 74047.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 7, + "entity_id": 489 + }, + { + "Application Request Routing": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/request-promise", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/request-promise", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "application-service", + "url": "https://quay.io/repository/redhat-appstudio/application-service", + "popularity": 72875.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "operator-generic", + "url": "https://quay.io/repository/cilium/operator-generic", + "popularity": 159557.0 + }, + { + "name": "hubble-relay", + "url": "https://quay.io/repository/cilium/hubble-relay", + "popularity": 135390.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 7, + "entity_id": 490 + }, + { + "IIS Manager": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/icp-identity-manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-identity-manager", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/icp-image-manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/icp-image-manager", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cert-manager-controller", + "url": "https://quay.io/repository/jetstack/cert-manager-controller", + "popularity": 92535501.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 88998175.0 + }, + { + "name": "cert-manager-cainjector", + "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", + "popularity": 89089055.0 + }, + { + "name": "cert-manager-acmesolver", + "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", + "popularity": 858875.0 + }, + { + "name": "olm", + "url": "https://quay.io/repository/operator-framework/olm", + "popularity": 1306060.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 7, + "entity_id": 491 + }, + { + "JBoss Seam": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + }, + { + "name": "jboss-eap-6.4-switchyard", + "url": "https://quay.io/repository/ubpo/jboss-eap-6.4-switchyard", + "popularity": 3360.0 + }, + { + "name": "jboss-kie-mysql-extension-openshift-image", + "url": "https://quay.io/repository/kiegroup/jboss-kie-mysql-extension-openshift-image", + "popularity": 2495.0 + }, + { + "name": "egeria", + "url": "https://quay.io/repository/odpi/egeria", + "popularity": 550.0 + }, + { + "name": "wildfly", + "url": "https://quay.io/repository/wildfly/wildfly", + "popularity": 5428.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 7, + "entity_id": 492 + }, + { + "Wildfly": [ + { + "dockerhub_exact_images": [ + { + "name": "bitnami/wildfly", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 18, + "Docker_Url": "https://hub.docker.com/r/bitnami/wildfly", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "bitnami/wildfly", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 18, + "Docker_Url": "https://hub.docker.com/r/bitnami/wildfly", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/wildfly-s390x", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/wildfly-s390x", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "wildfly", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/wildfly", + "popularity": 0.0 + }, + { + "name": "wildfly", + "url": "https://quay.io/repository/wildfly/wildfly", + "popularity": 5428.0 + }, + { + "name": "wildfly", + "url": "https://quay.io/repository/operatorhubio/wildfly", + "popularity": 352.0 + }, + { + "name": "wildfly", + "url": "https://quay.io/repository/halconsole/wildfly", + "popularity": 619.0 + }, + { + "name": "wildfly", + "url": "https://quay.io/repository/alousta_us/wildfly", + "popularity": 168.0 + } + ], + "quay_top_images": [ + { + "name": "wildfly-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-centos7", + "popularity": 2759592.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + }, + { + "name": "wildfly", + "url": "https://quay.io/repository/wildfly/wildfly", + "popularity": 5428.0 + }, + { + "name": "wildfly-s2i-jdk11", + "url": "https://quay.io/repository/wildfly/wildfly-s2i-jdk11", + "popularity": 793.0 + }, + { + "name": "wildfly", + "url": "https://quay.io/repository/halconsole/wildfly", + "popularity": 619.0 + } + ] + }, + { + "operators": [ + { + "package_id": "92b17f5c-3196-41bc-bdeb-291700c2c8c1", + "name": "wildfly", + "normalized_name": "wildfly", + "logo_image_id": "8188073c-d86d-460a-9662-3bfa7e3d313f", + "stars": 1, + "display_name": "WildFly", + "description": "Operator that deploys and manages Java applications running on WildFly.", + "version": "0.5.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 4, + "medium": 45, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1646726400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/wildfly/wildfly-operator", + "container_images": [ + "quay.io/wildfly/wildfly-operator:0.5.3" + ] + } + ] + } + ], + "entity_type": 7, + "entity_id": 493 + }, + { + "Oracle Transparent Gateway": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/oracle-7-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-8-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "gateway", + "url": "https://quay.io/repository/solo-io/gateway", + "popularity": 190213.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "oracle-12c", + "url": "https://quay.io/repository/maksymbilenko/oracle-12c", + "popularity": 15052.0 + }, + { + "name": "gateway", + "url": "https://quay.io/repository/bluecat/gateway", + "popularity": 20475.0 + }, + { + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 353617.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 7, + "entity_id": 494 + }, + { + "Idoc Script": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/script.js", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/script.js", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "startup-script", + "url": "https://quay.io/repository/cilium/startup-script", + "popularity": 166460.0 + }, + { + "name": "nginx", + "url": "https://quay.io/repository/jitesoft/nginx", + "popularity": 80338.0 + }, + { + "name": "podman", + "url": "https://quay.io/repository/containers/podman", + "popularity": 21241.0 + }, + { + "name": "netbox", + "url": "https://quay.io/repository/netboxcommunity/netbox", + "popularity": 12769.0 + }, + { + "name": "ubuntu", + "url": "https://quay.io/repository/baselibrary/ubuntu", + "popularity": 63580.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 7, + "entity_id": 495 + }, + { + "ABAP": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 7, + "entity_id": 496 + }, + { + ".NET Framework": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "olm", + "url": "https://quay.io/repository/operator-framework/olm", + "popularity": 1306060.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + }, + { + "name": "samtools", + "url": "https://quay.io/repository/biocontainers/samtools", + "popularity": 47366.0 + } + ] + }, + { + "operators": [ + { + "package_id": "0c44b6e2-521b-4485-9d14-fd8f01ea6a4d", + "name": "knative-operator", + "normalized_name": "knative-operator", + "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", + "stars": 12, + "display_name": "Knative Operator", + "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", + "version": "1.5.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656460800, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/knative/operator", + "container_images": [] + }, + { + "package_id": "b71d9f44-e000-4427-a490-d5a6d34725c0", + "name": "submariner", + "normalized_name": "submariner", + "logo_image_id": "a1089d5b-f3d3-4579-a6c3-e9ac7209a9bc", + "stars": 3, + "display_name": "Submariner", + "description": "Creates and manages Submariner deployments.", + "version": "0.11.0", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1634218897, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/submariner-io/submariner-operator", + "container_images": [ + "quay.io/submariner/submariner-operator:0.11.0" + ] + }, + { + "package_id": "fbd84364-fffe-4db3-b128-46376f31a9d6", + "name": "kong", + "normalized_name": "kong", + "logo_image_id": "42089cb4-2db4-4466-b585-5a2919572083", + "stars": 1, + "display_name": "Kong Operator", + "description": "The world\u2019s most popular open source API gateway. Built for multi-cloud and hybrid, optimized for microservices and distributed architectures.", + "version": "0.9.0", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1596643620, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/kong/kong-operator", + "container_images": [] + }, + { + "package_id": "0537f4df-5e83-4f58-90bd-88863cbcded5", + "name": "traefikee-operator", + "normalized_name": "traefikee-operator", + "logo_image_id": "b1ad9f2c-5d25-4146-a4a5-344d62ae2049", + "stars": 1, + "display_name": "Traefikee Operator", + "description": "Traefik Enterprise Edition", + "version": "2.1.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 98, + "high": 36, + "medium": 328, + "unknown": 1, + "critical": 7 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1576141260, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [] + }, + { + "package_id": "0c99b78e-0e8f-4c60-a7fd-95e5a117c293", + "name": "universal-crossplane", + "normalized_name": "universal-crossplane", + "logo_image_id": "bbb04768-9178-47e5-9630-e93cab3711af", + "stars": 1, + "display_name": "Upbound Universal Crossplane (UXP)", + "description": "Upbound Universal Crossplane (UXP) is Upbound's official enterprise-grade distribution of Crossplane.", + "version": "1.5.1-up.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 2, + "medium": 0, + "unknown": 4, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1638270024, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/upbound/universal-crossplane", + "container_images": [] + }, + { + "package_id": "04e82101-c3d9-40ce-aa60-1091a070c852", + "name": "varnish-operator", + "normalized_name": "varnish-operator", + "logo_image_id": "b6312740-e66c-4339-9d0c-3931772fafb9", + "stars": 1, + "display_name": "Varnish Operator", + "description": "Run and manage Varnish clusters on Kubernetes", + "version": "0.27.2", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 84, + "high": 39, + "medium": 14, + "unknown": 2, + "critical": 11 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525859, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/varnish-operator", + "container_images": [] + }, + { + "package_id": "38101c32-8c78-430e-ab21-1ceba7a24563", + "name": "beegfs-csi-driver-operator", + "normalized_name": "beegfs-csi-driver-operator", + "logo_image_id": "f2314e4d-133c-4bb9-b269-45a6a7693dc0", + "stars": 0, + "display_name": "BeeGFS CSI Driver", + "description": "Install and manage the BeeGFS CSI driver", + "version": "1.2.2", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1652301036, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/netapp/beegfs-csi-driver", + "container_images": [] + }, + { + "package_id": "67b7c1bc-ba55-4d2e-9531-cdf006e6ef9b", + "name": "cluster-impairment-operator", + "normalized_name": "cluster-impairment-operator", + "logo_image_id": "2895a79c-04d6-43a1-84bc-87785888a097", + "stars": 0, + "display_name": "cluster-impairment-operator", + "description": "Run Impairments on Kubernetes/Openshift Nodes", + "version": "1.0.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 81, + "high": 17, + "medium": 231, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1628684100, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/redhat-performance/cluster-impairment-operator", + "container_images": [ + "quay.io/redhat-performance/cluster-impairment-operator:1.0.4" + ] + }, + { + "package_id": "774e60d5-9d34-4b13-8f04-2aa5c4f6386f", + "name": "eventing-kogito", + "normalized_name": "eventing-kogito", + "logo_image_id": "ad53dec8-1e52-4de2-b995-067a63ad9083", + "stars": 0, + "display_name": "Kogito Knative Eventing Source", + "version": "1.2.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1629892800, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/knative-sandbox/eventing-kogito", + "container_images": [] + }, + { + "package_id": "7edeee96-202b-4bad-a3a4-01e9ee378a3e", + "name": "k8gb", + "normalized_name": "k8gb", + "logo_image_id": "7be0013a-658f-46c8-8e3c-51a90c3704aa", + "stars": 0, + "display_name": "k8gb", + "description": "A cloud native Kubernetes Global Balancer", + "version": "0.9.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1632484800, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/k8gb-io/k8gb", + "container_images": [] + }, + { + "package_id": "e0706291-0fad-4836-b85b-4d75f0d38837", + "name": "kubernetes-nmstate-operator", + "normalized_name": "kubernetes-nmstate-operator", + "logo_image_id": "8a13a56e-0395-4bf0-b758-bb4645efa5b5", + "stars": 0, + "display_name": "Kubernetes NMState Operator", + "description": "Kubernetes NMState is a declaritive means of configuring NetworkManager.\n", + "version": "0.47.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 59, + "high": 11, + "medium": 156, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1626972576, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/nmstate/kubernetes-nmstate", + "container_images": [ + "quay.io/nmstate/kubernetes-nmstate-operator:v0.47.0" + ] + }, + { + "package_id": "f216c2a1-86fd-4904-97b1-1c36928a92ca", + "name": "marin3r", + "normalized_name": "marin3r", + "logo_image_id": "8e6ec88b-c529-464b-aeaa-af3e5f69a8f0", + "stars": 0, + "display_name": "MARIN3R", + "description": "Lighweight, CRD based Envoy control plane for Kubernetes", + "version": "0.10.0", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1643297430, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/3scale-ops/marin3r", + "container_images": [ + "quay.io/3scale/marin3r" + ] + }, + { + "package_id": "3e0b2f19-622e-41b4-986c-95eca8904c73", + "name": "metallb-operator", + "normalized_name": "metallb-operator", + "logo_image_id": "5f1776bf-7868-41ce-a144-935bb914f771", + "stars": 0, + "display_name": "MetalLB Operator", + "description": "An operator for deploying MetalLB on a kubernetes cluster.", + "version": "0.12.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 2, + "high": 1, + "medium": 4, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1624838400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/metallb/metallb-operator", + "container_images": [ + "quay.io/metallb/metallb-operator" + ] + }, + { + "package_id": "22f61c65-b233-43ac-92fe-256a3afa5f5f", + "name": "netobserv-operator", + "normalized_name": "netobserv-operator", + "logo_image_id": "0dba02f6-13d4-4c22-a9aa-5f66d511257d", + "stars": 0, + "display_name": "NetObserv Operator", + "description": "Network flows collector and monitoring solution", + "version": "0.1.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 23, + "high": 0, + "medium": 32, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656486425, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/netobserv/network-observability-operator", + "container_images": [ + "quay.io/netobserv/network-observability-operator:0.1.3" + ] + }, + { + "package_id": "a4979655-3ab9-4219-92aa-2cb5bec02eb4", + "name": "neuvector-operator", + "normalized_name": "neuvector-operator", + "logo_image_id": "71886618-25ad-4e37-9ffa-eb65b06c1cc9", + "stars": 0, + "display_name": "NeuVector Operator", + "description": "NeuVector delivers the only cloud-native Kubernetes security platform with uncompromising end-to-end protection from DevOps vulnerability protection to automated run-time security, and featuring a true Layer 7 container firewall.", + "version": "1.2.8", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1574042999, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/neuvector/neuvector-operator", + "container_images": [] + }, + { + "package_id": "8ba7072b-5d07-4736-a36f-95c0652a0716", + "name": "nsm-operator-registry", + "normalized_name": "nsm-operator-registry", + "logo_image_id": "bb64d308-986b-4668-b980-fd269f391099", + "stars": 0, + "display_name": "Network Service Mesh Operator", + "description": "Installs and manages the full life cycle of network service meshes.", + "version": "0.0.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 65, + "high": 18, + "medium": 167, + "unknown": 2, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1580208331, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/acmenezes/nsm-operator", + "container_images": [ + "quay.io/acmenezes/nsm-operator:v0.0.1" + ] + }, + { + "package_id": "997dbe26-ea52-404b-90f5-2c347b7f35f0", + "name": "pcc-operator", + "normalized_name": "pcc-operator", + "logo_image_id": "5739b7e7-a467-42a9-b1aa-627a845d9c13", + "stars": 0, + "display_name": "Prisma Cloud Compute Operator", + "description": "Deploy Prisma Cloud Compute for cloud-native security in your clusters", + "version": "0.2.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 47, + "high": 11, + "medium": 103, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1637091027, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator", + "container_images": [ + "quay.io/prismacloud/pcc-operator" + ] + }, + { + "package_id": "0eebc475-fb58-4079-93f6-0adbfb246d3c", + "name": "routernetes-operator", + "normalized_name": "routernetes-operator", + "logo_image_id": "1688e00c-16af-4fc8-8a21-239609e2d091", + "stars": 0, + "display_name": "Routernetes", + "version": "0.0.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 42, + "high": 1, + "medium": 56, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1655510438, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/routernetes/routernetes-operator", + "container_images": [ + "quay.io/routernetes/routernetes-operator:0.0.4" + ] + }, + { + "package_id": "c133a83c-6ea9-47cd-8816-450e8be1ab90", + "name": "skydive-operator", + "normalized_name": "skydive-operator", + "stars": 0, + "display_name": "skydive-operator", + "description": "An operator to run the Skydive network monitoring tool", + "version": "0.0.50", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 1, + "medium": 0, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1619864460, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/skydive-project/skydive-golang-operator", + "container_images": [ + "docker.io/skydive/skydive-operator:0.0.50" + ] + }, + { + "package_id": "94f05a93-d55d-41dc-a561-6bfe8684d677", + "name": "tf-operator", + "normalized_name": "tf-operator", + "logo_image_id": "1db71532-0b76-41f7-abed-0aea95ecc8a3", + "stars": 0, + "display_name": "Tf Operator", + "description": "Manages Tungsten Fabric, secure software defined networking project designed for the cloud native, multicloud environment.", + "version": "1.0.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 67, + "high": 10, + "medium": 137, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1626708786, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/tungstenfabric/tf-operator", + "container_images": [ + "docker.io/tungstenfabric/tf-operator:latest" + ] + } + ] + } + ], + "entity_type": 10, + "entity_id": 497 + }, + { + "Active Directory": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "memcached-exporter", + "url": "https://quay.io/repository/prometheus/memcached-exporter", + "popularity": 65896.0 + }, + { + "name": "nginx", + "url": "https://quay.io/repository/jitesoft/nginx", + "popularity": 80338.0 + }, + { + "name": "chart-testing", + "url": "https://quay.io/repository/helmpack/chart-testing", + "popularity": 37818.0 + }, + { + "name": "soketi", + "url": "https://quay.io/repository/soketi/soketi", + "popularity": 42567.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 10, + "entity_id": 498 + }, + { + "Active Server Pages": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 10, + "entity_id": 499 + }, + { + "ActiveX": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 10, + "entity_id": 500 + }, + { + "Apache Cordova": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/apache", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 81, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "pingidentity/apache-jmeter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/apache-exporter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 826844.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/strimzi/operator", + "popularity": 412398.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 10, + "entity_id": 501 + }, + { + "CICS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cics-pipeline-demo-ansible", + "url": "https://quay.io/repository/ivandov1/cics-pipeline-demo-ansible", + "popularity": 0.0 + }, + { + "name": "mf-cics-ts-operator", + "url": "https://quay.io/application/certified-operators/mf-cics-ts-operator", + "popularity": 0.0 + }, + { + "name": "mf-cics-ts-operator-rhmp", + "url": "https://quay.io/application/redhat-marketplace/mf-cics-ts-operator-rhmp", + "popularity": 0.0 + }, + { + "name": "mf-cics-tg-operator-rhmp", + "url": "https://quay.io/application/redhat-marketplace/mf-cics-tg-operator-rhmp", + "popularity": 0.0 + }, + { + "name": "mf-cics-tg-operator", + "url": "https://quay.io/application/certified-operators/mf-cics-tg-operator", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 10, + "entity_id": 502 + }, + { + "Docker": [ + { + "dockerhub_exact_images": [ + { + "name": "docker", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1978, + "Docker_Url": "https://hub.docker.com/_/docker", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "docker", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1978, + "Docker_Url": "https://hub.docker.com/_/docker", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "gitlab-runner-docker-cleanup", + "url": "https://quay.io/repository/gitlab/gitlab-runner-docker-cleanup", + "popularity": 802500.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "thanos", + "url": "https://quay.io/repository/thanos/thanos", + "popularity": 2534311.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [ + { + "package_id": "57a208d3-e9b6-46ca-b02c-0673a9d43daf", + "name": "nexus-operator-m88i", + "normalized_name": "nexus-operator-m88i", + "logo_image_id": "9ab9b51b-e561-48fd-b47e-7a0c2d377f71", + "stars": 1, + "display_name": "Nexus Operator", + "description": "Nexus Operator to deploy and manage Nexus 3.x servers", + "version": "0.6.0", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1573909942, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/m88i/nexus-operator", + "container_images": [ + "quay.io/m88i/nexus-operator:0.6.0" + ] + }, + { + "package_id": "13166913-c2b1-46ed-b402-1f2ece8fadbf", + "name": "anchore-engine", + "normalized_name": "anchore-engine", + "logo_image_id": "5eb07e0f-c3a2-4d1c-b70d-c45d7ed4e7d5", + "stars": 0, + "display_name": "Anchore Engine Operator", + "description": "Anchore Engine - container image scanning service for policy-based security, best-practice and compliance enforcement.", + "version": "0.1.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 79, + "high": 14, + "medium": 187, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1576220400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/anchore/engine-operator", + "container_images": [ + "docker.io/anchore/engine-operator:v0.1.3" + ] + }, + { + "package_id": "086e0ca0-dd7f-412e-826b-72234c8229cc", + "name": "carbonetes-operator", + "normalized_name": "carbonetes-operator", + "logo_image_id": "787bb447-beaa-477c-ad1f-77d1adbdda84", + "stars": 0, + "display_name": "Carbonetes Operator", + "description": "A Kubernetes Operator for creating Carbonetes Analyzer instances.", + "version": "1.0.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 46, + "high": 14, + "medium": 112, + "unknown": 5, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1634216649, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/carbonetes/carbonetes-analyzer", + "container_images": [ + "docker.io/carbonetes/operator:1.0.4" + ] + }, + { + "package_id": "997dbe26-ea52-404b-90f5-2c347b7f35f0", + "name": "pcc-operator", + "normalized_name": "pcc-operator", + "logo_image_id": "5739b7e7-a467-42a9-b1aa-627a845d9c13", + "stars": 0, + "display_name": "Prisma Cloud Compute Operator", + "description": "Deploy Prisma Cloud Compute for cloud-native security in your clusters", + "version": "0.2.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 47, + "high": 11, + "medium": 103, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1637091027, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator", + "container_images": [ + "quay.io/prismacloud/pcc-operator" + ] + } + ] + } + ], + "entity_type": 10, + "entity_id": 503 + }, + { + "Flash": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/firefox-flash", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/firefox-flash", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/chrome-flash", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/chrome-flash", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "flash", + "url": "https://quay.io/repository/biocontainers/flash", + "popularity": 30.0 + }, + { + "name": "flash", + "url": "https://quay.io/repository/logiq/flash", + "popularity": 0.0 + }, + { + "name": "flash", + "url": "https://quay.io/repository/refgenomics/flash", + "popularity": 0.0 + }, + { + "name": "flash", + "url": "https://quay.io/repository/kmhernan/flash", + "popularity": 0.0 + }, + { + "name": "flash", + "url": "https://quay.io/repository/staphb/flash", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "flash", + "url": "https://quay.io/repository/biocontainers/flash", + "popularity": 30.0 + }, + { + "name": "flash-brew-beetle", + "url": "https://quay.io/repository/logiq/flash-brew-beetle", + "popularity": 0.0 + }, + { + "name": "flash-brew-coffee", + "url": "https://quay.io/repository/logiq/flash-brew-coffee", + "popularity": 0.0 + }, + { + "name": "flash", + "url": "https://quay.io/repository/logiq/flash", + "popularity": 0.0 + }, + { + "name": "flash", + "url": "https://quay.io/repository/refgenomics/flash", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 10, + "entity_id": 504 + }, + { + "HTTP File Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + }, + { + "name": "nginx-ingress-controller", + "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", + "popularity": 1153447.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 10, + "entity_id": 505 + }, + { + "Java Runtime Environment": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "snyk/runtime-fixtures", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/snyk/runtime-fixtures", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/java", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/circleci/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/java", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/bitnami/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "java", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1976, + "Docker_Url": "https://hub.docker.com/_/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "standard-environment", + "url": "https://quay.io/repository/domino/standard-environment", + "popularity": 55752.0 + }, + { + "name": "java", + "url": "https://quay.io/repository/enxadahost/java", + "popularity": 19927.0 + }, + { + "name": "astro-runtime", + "url": "https://quay.io/repository/astronomer/astro-runtime", + "popularity": 35420.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 10, + "entity_id": 506 + }, + { + "Node.js": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/node", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 64, + "Docker_Url": "https://hub.docker.com/r/bitnami/node", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "cimg/node", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 12, + "Docker_Url": "https://hub.docker.com/r/cimg/node", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/node", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 130, + "Docker_Url": "https://hub.docker.com/r/circleci/node", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "node", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 11676, + "Docker_Url": "https://hub.docker.com/_/node", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "node", + "url": "https://quay.io/repository/calico/node", + "popularity": 14415135.0 + }, + { + "name": "csi-node-driver-registrar", + "url": "https://quay.io/repository/k8scsi/csi-node-driver-registrar", + "popularity": 1069739.0 + }, + { + "name": "node-image-analyzer", + "url": "https://quay.io/repository/sysdig/node-image-analyzer", + "popularity": 332066.0 + }, + { + "name": "node-disk-manager-amd64", + "url": "https://quay.io/repository/openebs/node-disk-manager-amd64", + "popularity": 159434.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 10, + "entity_id": 507 + }, + { + "Ruby on Rails": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/rails", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 28, + "Docker_Url": "https://hub.docker.com/r/bitnami/rails", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rails", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 902, + "Docker_Url": "https://hub.docker.com/_/rails", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ruby", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 2149, + "Docker_Url": "https://hub.docker.com/_/ruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "cimg/ruby", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/cimg/ruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/ruby", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 21, + "Docker_Url": "https://hub.docker.com/r/bitnami/ruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ruby-27-centos7", + "url": "https://quay.io/repository/centos7/ruby-27-centos7", + "popularity": 251822.0 + }, + { + "name": "ruby-26-centos7", + "url": "https://quay.io/repository/centos7/ruby-26-centos7", + "popularity": 165969.0 + }, + { + "name": "ruby-25-centos7", + "url": "https://quay.io/repository/centos7/ruby-25-centos7", + "popularity": 74049.0 + }, + { + "name": "ruby-27", + "url": "https://quay.io/repository/openshifttest/ruby-27", + "popularity": 14124.0 + }, + { + "name": "ruby-cron", + "url": "https://quay.io/repository/palettecloud/ruby-cron", + "popularity": 11018.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 10, + "entity_id": 508 + }, + { + "VisualForce": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 10, + "entity_id": 509 + }, + { + "EMC Celerra": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "powerstore_exporter", + "url": "https://quay.io/repository/kckecheng/powerstore_exporter", + "popularity": 0.0 + }, + { + "name": "emc-neo-antigen", + "url": "https://quay.io/repository/d.vanzessen/emc-neo-antigen", + "popularity": 0.0 + }, + { + "name": "emc-neo-antigen", + "url": "https://quay.io/repository/erasmusmc_bioinformatics/emc-neo-antigen", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 11, + "entity_id": 510 + }, + { + "Application Lifecycle Management": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-management-ingress-operator", + "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", + "popularity": 111760.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + }, + { + "name": "olm", + "url": "https://quay.io/repository/operator-framework/olm", + "popularity": 1306060.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + } + ] + }, + { + "operators": [ + { + "package_id": "9d842039-29de-498a-a855-d2f90d17bdfc", + "name": "mcad-operator", + "normalized_name": "mcad-operator", + "logo_image_id": "2f1b8acc-3b7d-46d8-847e-5a2be071f37f", + "stars": 0, + "display_name": "Multi-Cluster Application Dispatcher", + "description": "A Kubernetes Native Holistic Lifecycle Resource Manager for Applications", + "version": "0.1.9", + "deprecated": false, + "signed": false, + "production_organizations_count": 0, + "ts": 1621525859, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [] + } + ] + } + ], + "entity_type": 1, + "entity_id": 511 + }, + { + "Assembler Language": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "intel/language-translation", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-translation", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "intel/language-modeling", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "coreos-assembler", + "url": "https://quay.io/repository/coreos-assembler/coreos-assembler", + "popularity": 24483.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + }, + { + "name": "rust", + "url": "https://quay.io/repository/instrumentisto/rust", + "popularity": 2946.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 512 + }, + { + "Batch Management Software": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "atlassian/jira-software", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 266, + "Docker_Url": "https://hub.docker.com/r/atlassian/jira-software", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 255406.0 + }, + { + "name": "postgresql-10-centos7", + "url": "https://quay.io/repository/centos7/postgresql-10-centos7", + "popularity": 189232.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 513 + }, + { + "Business Object Reports": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "minio", + "url": "https://quay.io/repository/minio/minio", + "popularity": 374426.0 + }, + { + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 255406.0 + }, + { + "name": "teleport", + "url": "https://quay.io/repository/gravitational/teleport", + "popularity": 157544.0 + }, + { + "name": "postgresql-10-centos7", + "url": "https://quay.io/repository/centos7/postgresql-10-centos7", + "popularity": 189232.0 + }, + { + "name": "postgresql-13-centos7", + "url": "https://quay.io/repository/centos7/postgresql-13-centos7", + "popularity": 140143.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 514 + }, + { + "Common Gateway Interface": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "express-gateway", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 66, + "Docker_Url": "https://hub.docker.com/_/express-gateway", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kaazing-gateway", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 62, + "Docker_Url": "https://hub.docker.com/_/kaazing-gateway", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/voice-gateway-sms", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/voice-gateway-sms", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/voice-gateway-so", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 11, + "Docker_Url": "https://hub.docker.com/r/ibmcom/voice-gateway-so", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/voice-gateway-mr", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 9, + "Docker_Url": "https://hub.docker.com/r/ibmcom/voice-gateway-mr", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 353617.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 515 + }, + { + "Compopent Object Model": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "intel/object-detection", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/object-detection", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "minio", + "url": "https://quay.io/repository/minio/minio", + "popularity": 374426.0 + }, + { + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 255406.0 + }, + { + "name": "postgresql-10-centos7", + "url": "https://quay.io/repository/centos7/postgresql-10-centos7", + "popularity": 189232.0 + }, + { + "name": "postgresql-13-centos7", + "url": "https://quay.io/repository/centos7/postgresql-13-centos7", + "popularity": 140143.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 516 + }, + { + "Common Object Request Broker Architecture": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "snyk/broker", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 9, + "Docker_Url": "https://hub.docker.com/r/snyk/broker", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "common-web-ui", + "url": "https://quay.io/repository/opencloudio/common-web-ui", + "popularity": 353182.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "minio", + "url": "https://quay.io/repository/minio/minio", + "popularity": 374426.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 517 + }, + { + "CORBA Interface Definition Language": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "intel/language-translation", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-translation", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "intel/language-modeling", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + }, + { + "name": "gateway", + "url": "https://quay.io/repository/bluecat/gateway", + "popularity": 20475.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 518 + }, + { + "Data Control Language": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "zen-data-sorcerer", + "url": "https://quay.io/repository/opencloudio/zen-data-sorcerer", + "popularity": 236759.0 + }, + { + "name": "metering-data-manager", + "url": "https://quay.io/repository/opencloudio/metering-data-manager", + "popularity": 211902.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ceph", + "url": "https://quay.io/repository/ceph/ceph", + "popularity": 335511.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 519 + }, + { + "Database": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/informix-developer-database", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 46, + "Docker_Url": "https://hub.docker.com/r/ibmcom/informix-developer-database", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "database", + "url": "https://quay.io/repository/deisci/database", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 255406.0 + }, + { + "name": "mariadb-103-centos7", + "url": "https://quay.io/repository/centos7/mariadb-103-centos7", + "popularity": 241707.0 + }, + { + "name": "postgresql-10-centos7", + "url": "https://quay.io/repository/centos7/postgresql-10-centos7", + "popularity": 189232.0 + }, + { + "name": "billing-sidecar", + "url": "https://quay.io/repository/sdase/billing-sidecar", + "popularity": 183418.0 + }, + { + "name": "postgresql-13-centos7", + "url": "https://quay.io/repository/centos7/postgresql-13-centos7", + "popularity": 140143.0 + } + ] + }, + { + "operators": [ + { + "package_id": "66a8d8ef-e05d-44be-b704-474e144b8b9b", + "name": "tidb-operator", + "normalized_name": "tidb-operator", + "logo_image_id": "b328c448-efbb-4aab-a463-8437ab8898bb", + "stars": 7, + "display_name": "TiDB Operator", + "description": "TiDB Operator manages TiDB clusters on Kubernetes and automates tasks related to operating a TiDB cluster. It makes TiDB a truly cloud-native database.", + "version": "1.3.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 4, + "high": 8, + "medium": 31, + "unknown": 8, + "critical": 2 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1645693233, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/pingcap/tidb-operator", + "container_images": [] + }, + { + "package_id": "cfd04009-89fd-4ab0-864a-1ec2f8e086be", + "name": "mariadb-operator-app", + "normalized_name": "mariadb-operator-app", + "logo_image_id": "a8ee9b85-065e-421b-b429-ba3793829dc5", + "stars": 2, + "display_name": "Mariadb Operator", + "description": "Create mariadb server and database on Kubernetes", + "version": "0.0.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 65, + "high": 14, + "medium": 165, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1586258220, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/abalki001/mariadb-operator", + "container_images": [ + "quay.io/manojdhanorkar/mariadb-operator:v0.0.4" + ] + }, + { + "package_id": "ca2f64be-928c-44f1-8d64-81c7fecf4326", + "name": "planetscale", + "normalized_name": "planetscale", + "stars": 2, + "display_name": "PlanetScale Operator for Vitess", + "description": "PlanetScale's operator for Vitess deploys and manages instances of MySQL with Vitess, a database clustering system for horizontal scaling of MySQL.", + "version": "0.1.8", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1551908400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [] + }, + { + "package_id": "b134bee3-539b-4fe6-bc24-4aa7e3e1f11c", + "name": "postgresql-operator-dev4devs-com", + "normalized_name": "postgresql-operator-dev4devs-com", + "logo_image_id": "2a4da4ce-b519-46af-bb1c-d845e5d9a772", + "stars": 0, + "display_name": "PostgreSQL Operator by Dev4Ddevs.com", + "description": "Operator in Go developed using the Operator Framework to package, install, configure and manage a PostgreSQL database. This project includes backup feature.", + "version": "0.1.1", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1567929600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/dev4devs-com/postgresql-operator", + "container_images": [ + "quay.io/dev4devs-com/postgresql-operator:0.1.1" + ] + }, + { + "package_id": "79c1018c-cc8d-4bcf-a8c5-b31b87c53ccd", + "name": "verticadb-operator", + "normalized_name": "verticadb-operator", + "logo_image_id": "77c72e3e-7639-4db9-9fdb-a12b20f020e6", + "stars": 0, + "display_name": "VerticaDB Operator", + "description": "Operator that manages a Vertica Eon Mode database.", + "version": "1.6.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656569037, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/vertica/vertica-kubernetes", + "container_images": [ + "docker.io/vertica/verticadb-operator:1.6.0" + ] + }, + { + "package_id": "b1aa6353-146c-477c-943e-5a5558b65dc3", + "name": "elastic-cloud-eck", + "normalized_name": "elastic-cloud-eck", + "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", + "stars": 13, + "display_name": "Elasticsearch (ECK) Operator", + "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", + "version": "2.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1657006653, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/elastic/cloud-on-k8s", + "container_images": [] + }, + { + "package_id": "62d3a0f9-3d23-48f0-9bee-9b4f2060c6df", + "name": "postgresql", + "normalized_name": "postgresql", + "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", + "stars": 13, + "display_name": "Crunchy Postgres for Kubernetes", + "description": "Production Postgres Made Easy", + "version": "5.1.2", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 23, + "high": 0, + "medium": 32, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1657571435, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/CrunchyData/postgres-operator", + "container_images": [] + }, + { + "package_id": "bb525733-deee-4431-9b51-4897c8d6d21b", + "name": "redis-operator", + "normalized_name": "redis-operator", + "logo_image_id": "60503f77-253d-4491-adff-e6e55c547ef7", + "stars": 9, + "display_name": "Redis Operator", + "description": "A Golang based redis operator that will make/oversee Redis standalone/cluster mode setup on top of the Kubernetes.", + "version": "0.11.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1657396835, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/ot-container-kit/redis-operator", + "container_images": [ + "quay.io/opstree/redis-operator:v0.11.0" + ] + }, + { + "package_id": "95833125-3a5b-4da5-a985-21f172238a61", + "name": "clickhouse", + "normalized_name": "clickhouse", + "logo_image_id": "f00ce069-4086-4f36-bb6e-bb805373bfa7", + "stars": 5, + "display_name": "Altinity Operator for ClickHouse", + "description": "ClickHouse Operator manages full lifecycle of ClickHouse clusters.", + "version": "0.18.3", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1573466400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/altinity/clickhouse-operator", + "container_images": [] + }, + { + "package_id": "e3f8d531-6ea5-48ce-ac99-505c79414881", + "name": "percona-xtradb-cluster-operator", + "normalized_name": "percona-xtradb-cluster-operator", + "logo_image_id": "0b8875cd-6661-4269-9cf6-0fd92d59017b", + "stars": 5, + "display_name": "Percona Distribution for MySQL Operator", + "description": "Percona Distribution for MySQL Operator manages the lifecycle of Percona XtraDB cluster instances.", + "version": "1.10.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 5, + "medium": 48, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1640178704, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/percona/percona-xtradb-cluster-operator", + "container_images": [] + }, + { + "package_id": "5d3739dc-d633-42f3-9334-be29d154a718", + "name": "postgres-operator", + "normalized_name": "postgres-operator", + "logo_image_id": "932e96b3-34be-4e2f-bd53-b30903d20a2d", + "stars": 3, + "display_name": "Postgres-Operator", + "description": "Postgres operator creates and manages PostgreSQL clusters running in Kubernetes.", + "version": "1.4.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 2, + "high": 11, + "medium": 8, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1563964200, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/zalando/postgres-operator", + "container_images": [] + }, + { + "package_id": "f9d8083b-ddd6-40d1-b308-a5f69cb310e5", + "name": "couchbase-enterprise", + "normalized_name": "couchbase-enterprise", + "logo_image_id": "de10af36-40f2-4816-bb42-577c8297b14e", + "stars": 2, + "display_name": "Couchbase Operator", + "description": "The Couchbase Autonomous Operator allows users to easily deploy, manage, and maintain Couchbase deployments", + "version": "2.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1651219244, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [ + "registry.hub.docker.com/couchbase/operator:2.3.0" + ] + }, + { + "package_id": "c103653e-b394-447f-bcbe-5c36a9b2fff5", + "name": "redis-enterprise", + "normalized_name": "redis-enterprise", + "logo_image_id": "1c86e9e7-c6f1-4c8f-9f97-c3ca8696e809", + "stars": 2, + "display_name": "Redis Enterprise", + "description": "An operator to run Redis Enterprise Clusters", + "version": "0.0.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1551008159, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [] + }, + { + "package_id": "0246f8b7-d8d5-4880-a099-1e1e84cc127f", + "name": "cloud-native-postgresql", + "normalized_name": "cloud-native-postgresql", + "logo_image_id": "33922b5a-7a59-46b9-baba-8bc9e74c3457", + "stars": 1, + "display_name": "EDB Postgres for Kubernetes", + "description": "Operator to manage Postgres high availability clusters with a primary/standby architecture.", + "version": "1.15.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 23, + "high": 1, + "medium": 32, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1654016342, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [ + "quay.io/enterprisedb/cloud-native-postgresql" + ] + }, + { + "package_id": "a87a193d-ab54-44df-b734-e07292e05781", + "name": "etcd", + "normalized_name": "etcd", + "logo_image_id": "9a76f0bb-ffd6-4670-9024-bc84d090744a", + "stars": 1, + "display_name": "etcd", + "description": "Create and maintain highly-available etcd clusters on Kubernetes", + "version": "0.9.4", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1551315780, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/coreos/etcd-operator", + "container_images": [ + "quay.io/coreos/etcd-operator" + ] + }, + { + "package_id": "9017b9cb-a997-498e-90a4-918f2fbe68c9", + "name": "percona-server-mongodb-operator", + "normalized_name": "percona-server-mongodb-operator", + "logo_image_id": "466386f6-1a5f-4e39-8f07-028e738059d3", + "stars": 1, + "display_name": "Percona Distribution for MongoDB Operator", + "description": "Percona Distribution for MongoDB Operator automates the creation, modification, or deletion of items in your Percona Server for MongoDB environment", + "version": "1.11.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 1, + "medium": 1, + "unknown": 2, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1640860526, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/percona/percona-server-mongodb-operator", + "container_images": [] + }, + { + "package_id": "0c99b78e-0e8f-4c60-a7fd-95e5a117c293", + "name": "universal-crossplane", + "normalized_name": "universal-crossplane", + "logo_image_id": "bbb04768-9178-47e5-9630-e93cab3711af", + "stars": 1, + "display_name": "Upbound Universal Crossplane (UXP)", + "description": "Upbound Universal Crossplane (UXP) is Upbound's official enterprise-grade distribution of Crossplane.", + "version": "1.5.1-up.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 2, + "medium": 0, + "unknown": 4, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1638270024, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/upbound/universal-crossplane", + "container_images": [] + }, + { + "package_id": "14aeae8b-d0c9-445b-b2af-79423c0d3bc3", + "name": "druid-operator", + "normalized_name": "druid-operator", + "logo_image_id": "782f980f-13ed-4a6e-93dc-e4eb087a0d23", + "stars": 0, + "display_name": "druid-operator", + "description": "druid-operator allows creating Apache Druid cluster and manage their lifecycle", + "version": "0.0.9", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1571529600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/druid-io/druid-operator", + "container_images": [ + "docker.io/druidio/druid-operator:0.0.9" + ] + }, + { + "package_id": "e734a44b-aa7d-497c-a93c-1262e39ff0e3", + "name": "hazelcast-platform-operator", + "normalized_name": "hazelcast-platform-operator", + "logo_image_id": "2b453ddd-3196-412b-a248-5c40110f5c4e", + "stars": 0, + "display_name": "Hazelcast Platform Operator", + "description": "Install Hazelcast clusters in Kubernetes environments.", + "version": "5.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 23, + "high": 0, + "medium": 32, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1655899199, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [ + "docker.io/hazelcast/hazelcast-platform-operator:5.3" + ] + }, + { + "package_id": "591a0205-b4ee-4f15-8d15-8b6a58c34a7d", + "name": "infinispan", + "normalized_name": "infinispan", + "logo_image_id": "a279d618-7ee6-4bde-8cb7-d92c774f3a51", + "stars": 0, + "display_name": "Infinispan Operator", + "description": "Create and manage Infinispan clusters.", + "version": "2.2.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 46, + "high": 6, + "medium": 89, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1647352835, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/infinispan/infinispan-operator", + "container_images": [ + "quay.io/infinispan/operator:2.2.4.Final" + ] + } + ] + } + ], + "entity_type": 1, + "entity_id": 520 + }, + { + "Electronic Data Interchange": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "zen-data-sorcerer", + "url": "https://quay.io/repository/opencloudio/zen-data-sorcerer", + "popularity": 236759.0 + }, + { + "name": "metering-data-manager", + "url": "https://quay.io/repository/opencloudio/metering-data-manager", + "popularity": 211902.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "data-portal", + "url": "https://quay.io/repository/cdis/data-portal", + "popularity": 26339.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 521 + }, + { + "Application Web Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "common-web-ui", + "url": "https://quay.io/repository/opencloudio/common-web-ui", + "popularity": 353182.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 522 + }, + { + "Java-based Document Object Model for XML": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "java", + "url": "https://quay.io/repository/enxadahost/java", + "popularity": 19927.0 + }, + { + "name": "minio", + "url": "https://quay.io/repository/minio/minio", + "popularity": 374426.0 + }, + { + "name": "ceph", + "url": "https://quay.io/repository/ceph/ceph", + "popularity": 335511.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 523 + }, + { + "Lightweight Directory Access Protocol": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/verify-access", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 7, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/verify-access-postgresql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-postgresql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/verify-access-openldap", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-openldap", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/verify-access-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/verify-access-dsc", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-dsc", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 353617.0 + }, + { + "name": "concourse-ssh-resource", + "url": "https://quay.io/repository/henry40408/concourse-ssh-resource", + "popularity": 130586.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 117024.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 524 + }, + { + "Open Database Connectivity": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "olm", + "url": "https://quay.io/repository/operator-framework/olm", + "popularity": 1306060.0 + }, + { + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 353617.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 255406.0 + }, + { + "name": "mariadb-103-centos7", + "url": "https://quay.io/repository/centos7/mariadb-103-centos7", + "popularity": 241707.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 525 + }, + { + "Order Management System": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/system-upgrade-controller", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/rancher/system-upgrade-controller", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/system-agent-installer-rke2", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/system-agent-installer-rke2", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.17763.3046", + "Type": "windows", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.20348.768", + "Type": "windows", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ceph", + "url": "https://quay.io/repository/ceph/ceph", + "popularity": 335511.0 + }, + { + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 255406.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 526 + }, + { + "Oracle Web Services": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/oracle-8-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "common-web-ui", + "url": "https://quay.io/repository/opencloudio/common-web-ui", + "popularity": 353182.0 + }, + { + "name": "haproxy-ingress", + "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", + "popularity": 929588.0 + }, + { + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 353617.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 527 + }, + { + "Reporting Services": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "haproxy-ingress", + "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", + "popularity": 929588.0 + }, + { + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 353617.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "operator-generic", + "url": "https://quay.io/repository/cilium/operator-generic", + "popularity": 159557.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 528 + }, + { + "Representational State Transfer": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "astronomerinc/ap-kube-state", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/astronomerinc/ap-kube-state", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "kube-state-metrics", + "url": "https://quay.io/repository/coreos/kube-state-metrics", + "popularity": 997310.0 + }, + { + "name": "origin-openshift-state-metrics", + "url": "https://quay.io/repository/openshift/origin-openshift-state-metrics", + "popularity": 5854.0 + }, + { + "name": "origin-kube-state-metrics", + "url": "https://quay.io/repository/openshift/origin-kube-state-metrics", + "popularity": 4003.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + }, + { + "name": "kafka-bridge", + "url": "https://quay.io/repository/strimzi/kafka-bridge", + "popularity": 14377.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 529 + }, + { + "Service-Oriented Architecture": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "common-service-operator", + "url": "https://quay.io/repository/opencloudio/common-service-operator", + "popularity": 317405.0 + }, + { + "name": "service-catalog", + "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", + "popularity": 330506.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 530 + }, + { + "Simple Object Access Protocol": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 353617.0 + }, + { + "name": "minio", + "url": "https://quay.io/repository/minio/minio", + "popularity": 374426.0 + }, + { + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 255406.0 + }, + { + "name": "concourse-ssh-resource", + "url": "https://quay.io/repository/henry40408/concourse-ssh-resource", + "popularity": 130586.0 + }, + { + "name": "postgresql-10-centos7", + "url": "https://quay.io/repository/centos7/postgresql-10-centos7", + "popularity": 189232.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 531 + }, + { + "SQL": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "gooddata/sql-executor", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "apicurio-registry-sql", + "url": "https://quay.io/repository/apicurio/apicurio-registry-sql", + "popularity": 12300.0 + }, + { + "name": "mariadb-103-centos7", + "url": "https://quay.io/repository/centos7/mariadb-103-centos7", + "popularity": 241707.0 + }, + { + "name": "mariadb-105-centos7", + "url": "https://quay.io/repository/centos7/mariadb-105-centos7", + "popularity": 136441.0 + }, + { + "name": "soketi", + "url": "https://quay.io/repository/soketi/soketi", + "popularity": 42567.0 + }, + { + "name": "mysqld-exporter", + "url": "https://quay.io/repository/prometheus/mysqld-exporter", + "popularity": 19079.0 + } + ] + }, + { + "operators": [ + { + "package_id": "62d3a0f9-3d23-48f0-9bee-9b4f2060c6df", + "name": "postgresql", + "normalized_name": "postgresql", + "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", + "stars": 13, + "display_name": "Crunchy Postgres for Kubernetes", + "description": "Production Postgres Made Easy", + "version": "5.1.2", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 23, + "high": 0, + "medium": 32, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1657571435, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/CrunchyData/postgres-operator", + "container_images": [] + }, + { + "package_id": "66a8d8ef-e05d-44be-b704-474e144b8b9b", + "name": "tidb-operator", + "normalized_name": "tidb-operator", + "logo_image_id": "b328c448-efbb-4aab-a463-8437ab8898bb", + "stars": 7, + "display_name": "TiDB Operator", + "description": "TiDB Operator manages TiDB clusters on Kubernetes and automates tasks related to operating a TiDB cluster. It makes TiDB a truly cloud-native database.", + "version": "1.3.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 4, + "high": 8, + "medium": 31, + "unknown": 8, + "critical": 2 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1645693233, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/pingcap/tidb-operator", + "container_images": [] + }, + { + "package_id": "0246f8b7-d8d5-4880-a099-1e1e84cc127f", + "name": "cloud-native-postgresql", + "normalized_name": "cloud-native-postgresql", + "logo_image_id": "33922b5a-7a59-46b9-baba-8bc9e74c3457", + "stars": 1, + "display_name": "EDB Postgres for Kubernetes", + "description": "Operator to manage Postgres high availability clusters with a primary/standby architecture.", + "version": "1.15.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 23, + "high": 1, + "medium": 32, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1654016342, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [ + "quay.io/enterprisedb/cloud-native-postgresql" + ] + }, + { + "package_id": "f8501214-7170-40b0-8449-d3c8e4f63505", + "name": "mysql", + "normalized_name": "mysql", + "logo_image_id": "751286dc-9e5c-4218-b8bf-98b2b0052231", + "stars": 0, + "display_name": "GrdsCloud MySQL for Kubernetes", + "description": "Enterprise open source MySQL-as-a-Service", + "version": "1.0.0", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525858, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/GrdsCloud", + "container_images": [] + }, + { + "package_id": "d4082ba3-8c37-4dae-8771-6b11dc7c0f33", + "name": "percona-postgresql-operator", + "normalized_name": "percona-postgresql-operator", + "logo_image_id": "0b8875cd-6661-4269-9cf6-0fd92d59017b", + "stars": 0, + "display_name": "Percona Operator for PostgreSQL", + "description": "Percona Operator for PostgreSQL manages the lifecycle of Percona PostgreSQL cluster instances.", + "version": "1.2.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 2, + "medium": 32, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1649682704, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/percona/percona-postgresql-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 9, + "entity_id": 532 + }, + { + "YAML": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "billing-sidecar", + "url": "https://quay.io/repository/sdase/billing-sidecar", + "popularity": 183418.0 + }, + { + "name": "che-plugin-artifacts-broker", + "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", + "popularity": 20225.0 + }, + { + "name": "redis-operator", + "url": "https://quay.io/repository/opstree/redis-operator", + "popularity": 70825.0 + }, + { + "name": "spark-operator", + "url": "https://quay.io/repository/radanalyticsio/spark-operator", + "popularity": 25798.0 + }, + { + "name": "centos-stream", + "url": "https://quay.io/repository/containerdisks/centos-stream", + "popularity": 14022.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 533 + }, + { + "Model-view-controller": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cert-manager-controller", + "url": "https://quay.io/repository/jetstack/cert-manager-controller", + "popularity": 92535501.0 + }, + { + "name": "nginx-ingress-controller", + "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", + "popularity": 1153447.0 + }, + { + "name": "workflow-controller", + "url": "https://quay.io/repository/argoproj/workflow-controller", + "popularity": 1196920.0 + }, + { + "name": "controller", + "url": "https://quay.io/repository/metallb/controller", + "popularity": 228321.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 534 + }, + { + "Application Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "application-service", + "url": "https://quay.io/repository/redhat-appstudio/application-service", + "popularity": 72875.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [ + { + "package_id": "977ddfd9-16a0-42c2-8f76-024c1cf6ade5", + "name": "open-liberty", + "normalized_name": "open-liberty", + "logo_image_id": "207d05c6-2e47-411a-bf11-cc5f919a596b", + "stars": 0, + "display_name": "Open Liberty Operator", + "description": "Deploy and manage applications running on Open Liberty", + "version": "0.7.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 43, + "high": 5, + "medium": 62, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1595408400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/OpenLiberty/open-liberty-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 1, + "entity_id": 535 + }, + { + "Cloud": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "google/cloud-sdk", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 382, + "Docker_Url": "https://hub.docker.com/r/google/cloud-sdk", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cloud-connector", + "url": "https://quay.io/repository/sysdig/cloud-connector", + "popularity": 1263418.0 + }, + { + "name": "cloud-connector-s3-bucket-config", + "url": "https://quay.io/repository/sysdig/cloud-connector-s3-bucket-config", + "popularity": 644351.0 + }, + { + "name": "cloud-scanning", + "url": "https://quay.io/repository/sysdig/cloud-scanning", + "popularity": 167068.0 + }, + { + "name": "minio", + "url": "https://quay.io/repository/minio/minio", + "popularity": 374426.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + } + ] + }, + { + "operators": [ + { + "package_id": "5bc93626-0773-4fb6-9ab2-6ac7b1a49c81", + "name": "ibmcloud-operator", + "normalized_name": "ibmcloud-operator", + "logo_image_id": "2f1b8acc-3b7d-46d8-847e-5a2be071f37f", + "stars": 0, + "display_name": "IBM Cloud Operator", + "description": "The IBM Cloud Operator provides a Kubernetes CRD-Based API to manage the lifecycle of IBM public cloud services.", + "version": "1.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 1, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1647490660, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/cloud-operators", + "container_images": [] + }, + { + "package_id": "997dbe26-ea52-404b-90f5-2c347b7f35f0", + "name": "pcc-operator", + "normalized_name": "pcc-operator", + "logo_image_id": "5739b7e7-a467-42a9-b1aa-627a845d9c13", + "stars": 0, + "display_name": "Prisma Cloud Compute Operator", + "description": "Deploy Prisma Cloud Compute for cloud-native security in your clusters", + "version": "0.2.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 47, + "high": 11, + "medium": 103, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1637091027, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator", + "container_images": [ + "quay.io/prismacloud/pcc-operator" + ] + }, + { + "package_id": "730af2fd-ace8-4ab8-b17f-6535c0283a4b", + "name": "ibmcloud-iam-operator", + "normalized_name": "ibmcloud-iam-operator", + "logo_image_id": "2f1b8acc-3b7d-46d8-847e-5a2be071f37f", + "stars": 0, + "display_name": "IBM Cloud IAM Operator", + "description": "The IBM Cloud IAM Operator provides a set of three Kubernetes CRD-Based APIs to manage the lifecycle of Access Policies, Access Groups, and Custom Roles on IAM for IBM public cloud.", + "version": "0.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 64, + "high": 15, + "medium": 168, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1597239415, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/ibmcloud-iam-operator", + "container_images": [] + }, + { + "package_id": "96a3e4c9-5ec6-45b6-9b7c-df2b59fe30ed", + "name": "sosivio", + "normalized_name": "sosivio", + "logo_image_id": "c1ca2b16-a7f8-4e4e-9780-bee1e0fc7a81", + "stars": 1, + "display_name": "Sosivio Autonomuous Cloud Native", + "description": "Sosivio Autonomuous Cloud Native", + "version": "1.4.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 56, + "high": 2, + "medium": 69, + "unknown": 12, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1635382861, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/Sosivio/operator", + "container_images": [ + "quay.io/sosivio/sosivio-operator:v1.4.1-78", + "quay.io/sosivio/sosivio-operator", + "quay.io/sosivio/kube-rbac-proxy", + "quay.io/sosivio/nsq", + "quay.io/sosivio/crud-manager", + "quay.io/sosivio/sosivio-node-collector", + "quay.io/sosivio/sosivio-node-pinger", + "quay.io/sosivio/classifier", + "quay.io/sosivio/communicator", + "quay.io/sosivio/analyzer", + "quay.io/sosivio/sosivio-dashboard", + "quay.io/sosivio/authentication", + "quay.io/sosivio/actuator", + "quay.io/sosivio/sequence-recognition", + "quay.io/sosivio/correlation-entities", + "quay.io/sosivio/contract-testing", + "quay.io/sosivio/sosiviodb", + "quay.io/sosivio/draingo", + "quay.io/sosivio/discovery-engine", + "quay.io/sosivio/notifier" + ] + }, + { + "package_id": "330ddb0a-13ae-44f0-88d7-831638cc78b8", + "name": "robin-operator", + "normalized_name": "robin-operator", + "logo_image_id": "89f07c38-1802-404e-8503-29262a374d3a", + "stars": 0, + "display_name": "Robin Cloud Native Storage", + "description": "Robin Cloud Native Storage operator enables advanced data management capabilities to Kubernetes apps like snapshot,clone,rollback,backup,restore,import,etc.", + "version": "5.3.2-59", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 2, + "high": 31, + "medium": 11, + "unknown": 1, + "critical": 5 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1645291832, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [] + }, + { + "package_id": "9edd2e9b-ed7f-44cd-a8b1-4a7d9aac64b6", + "name": "banzaicloud-kafka-operator", + "normalized_name": "banzaicloud-kafka-operator", + "logo_image_id": "95276ebf-5f18-45e7-85ae-53a3a6e706ed", + "stars": 1, + "display_name": "Banzai Cloud Kafka Operator", + "description": "Installs and maintains Kafka", + "version": "0.6.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 3, + "medium": 1, + "unknown": 5, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1571126400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/banzaicloud/kafka-operator/tree/master", + "container_images": [] + }, + { + "package_id": "0246f8b7-d8d5-4880-a099-1e1e84cc127f", + "name": "cloud-native-postgresql", + "normalized_name": "cloud-native-postgresql", + "logo_image_id": "33922b5a-7a59-46b9-baba-8bc9e74c3457", + "stars": 1, + "display_name": "EDB Postgres for Kubernetes", + "description": "Operator to manage Postgres high availability clusters with a primary/standby architecture.", + "version": "1.15.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 23, + "high": 1, + "medium": 32, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1654016342, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [ + "quay.io/enterprisedb/cloud-native-postgresql" + ] + }, + { + "package_id": "b1aa6353-146c-477c-943e-5a5558b65dc3", + "name": "elastic-cloud-eck", + "normalized_name": "elastic-cloud-eck", + "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", + "stars": 13, + "display_name": "Elasticsearch (ECK) Operator", + "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", + "version": "2.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1657006653, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/elastic/cloud-on-k8s", + "container_images": [] + }, + { + "package_id": "7f784d0c-e310-40d6-9dcd-e80b4fb2fe73", + "name": "api-operator", + "normalized_name": "api-operator", + "logo_image_id": "1d97de53-56e8-49e0-a864-5c1eda64b8c7", + "stars": 1, + "display_name": "API Operator for Kubernetes", + "description": "API Operator provides a fully automated experience for cloud-native API management of microservices.", + "version": "2.0.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 225, + "high": 21, + "medium": 380, + "unknown": 1, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1619604000, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/wso2/k8s-api-operator", + "container_images": [] + }, + { + "package_id": "3010e68b-76f9-4721-ab0b-5bfeee999aed", + "name": "chaosblade-operator", + "normalized_name": "chaosblade-operator", + "stars": 0, + "display_name": "Chaosblade Operator", + "description": "A chaos engineering operator for cloud-native on Kubernetes environments.", + "version": "0.5.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 201, + "high": 19, + "medium": 338, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1581435600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/chaosblade-io/chaosblade-operator", + "container_images": [] + }, + { + "package_id": "7ccab9c1-e635-4629-917f-6b4aff4271e2", + "name": "clever-operator", + "normalized_name": "clever-operator", + "logo_image_id": "e9fef12c-afac-459b-927d-cc14a022eb07", + "stars": 0, + "display_name": "clever-operator", + "description": "A kubernetes operator that expose clever cloud's resources through custom resource definition", + "version": "0.5.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1632225600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/CleverCloud/clever-operator", + "container_images": [ + "docker.io/clevercloud/clever-operator:e7cfe6efc4c4da80c722416fe1de373b789612f6" + ] + }, + { + "package_id": "90cdc9d8-91df-4b68-b4a4-def5b6109f9d", + "name": "cos-bucket-operator", + "normalized_name": "cos-bucket-operator", + "logo_image_id": "768edd17-ad00-48dd-a716-e3fc8aa311c9", + "stars": 0, + "display_name": "IBM COS Bucket Operator", + "description": "The IBM Bucket Operator provides a Kubernetes CRD-Based API to manage the lifecycle of IBM Cloud Object Storage Bucket.", + "version": "0.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 72, + "high": 2, + "medium": 33, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1566563916, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/cos-bucket-operator", + "container_images": [] + }, + { + "package_id": "7dc3af3f-1e21-4dc9-b792-16c44216d257", + "name": "event-streams-topic", + "normalized_name": "event-streams-topic", + "logo_image_id": "2f1b8acc-3b7d-46d8-847e-5a2be071f37f", + "stars": 0, + "display_name": "Event Streams Topic", + "description": "An operator for the life cycle management of Topics on Event Streams for IBM Cloud", + "version": "0.1.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 82, + "high": 8, + "medium": 37, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1572357160, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/event-streams-topic", + "container_images": [] + }, + { + "package_id": "0c44b6e2-521b-4485-9d14-fd8f01ea6a4d", + "name": "knative-operator", + "normalized_name": "knative-operator", + "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", + "stars": 12, + "display_name": "Knative Operator", + "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", + "version": "1.5.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656460800, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/knative/operator", + "container_images": [] + }, + { + "package_id": "68c1164d-9ca1-4e17-8309-3a18d43bca4d", + "name": "azure-service-operator", + "normalized_name": "azure-service-operator", + "stars": 2, + "display_name": "Azure Service Operator", + "description": "The Azure Service Operator helps you provision Azure resources and connect your applications to them from within Kubernetes.", + "version": "1.0.28631", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1630479633, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/Azure/azure-service-operator", + "container_images": [] + }, + { + "package_id": "0c99b78e-0e8f-4c60-a7fd-95e5a117c293", + "name": "universal-crossplane", + "normalized_name": "universal-crossplane", + "logo_image_id": "bbb04768-9178-47e5-9630-e93cab3711af", + "stars": 1, + "display_name": "Upbound Universal Crossplane (UXP)", + "description": "Upbound Universal Crossplane (UXP) is Upbound's official enterprise-grade distribution of Crossplane.", + "version": "1.5.1-up.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 2, + "medium": 0, + "unknown": 4, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1638270024, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/upbound/universal-crossplane", + "container_images": [] + }, + { + "package_id": "6b6f53e4-cf5f-4977-b151-24ce56e48a76", + "name": "composable-operator", + "normalized_name": "composable-operator", + "logo_image_id": "2f1b8acc-3b7d-46d8-847e-5a2be071f37f", + "stars": 0, + "display_name": "Composable", + "description": "Operator that can wrap any resource to make it dynamically configurable", + "version": "0.1.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 3, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1573936771, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/composable", + "container_images": [] + }, + { + "package_id": "097570ef-5856-4966-9cf9-1125451d0959", + "name": "esindex-operator", + "normalized_name": "esindex-operator", + "logo_image_id": "2f1b8acc-3b7d-46d8-847e-5a2be071f37f", + "stars": 0, + "display_name": "Elasticsearch Index Operator", + "description": "An operator for managing indices on elasticsearch services", + "version": "0.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 82, + "high": 8, + "medium": 43, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1565343638, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/esindex-operator", + "container_images": [] + }, + { + "package_id": "f4cbcee1-8b93-4232-886f-d36854ba440e", + "name": "kubefed-operator", + "normalized_name": "kubefed-operator", + "logo_image_id": "cdfc7b4c-ae8d-467e-b26b-f7978e8c1c9d", + "stars": 0, + "display_name": "Kubefed Operator", + "description": "Gain Hybrid Cloud capabilities between your clusters with Kubernetes Federation.", + "version": "0.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 943, + "high": 99, + "medium": 1134, + "unknown": 0, + "critical": 12 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1560470400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/openshift/kubefed-operator", + "container_images": [ + "quay.io/openshift/kubefed-operator:v0.1.0-rc3" + ] + }, + { + "package_id": "f8501214-7170-40b0-8449-d3c8e4f63505", + "name": "mysql", + "normalized_name": "mysql", + "logo_image_id": "751286dc-9e5c-4218-b8bf-98b2b0052231", + "stars": 0, + "display_name": "GrdsCloud MySQL for Kubernetes", + "description": "Enterprise open source MySQL-as-a-Service", + "version": "1.0.0", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525858, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/GrdsCloud", + "container_images": [] + } + ] + } + ], + "entity_type": 1, + "entity_id": 536 + }, + { + "Competency and Quality Assurance Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ocp-release", + "url": "https://quay.io/repository/openshift-release-dev/ocp-release", + "popularity": 39354632.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "thanos", + "url": "https://quay.io/repository/thanos/thanos", + "popularity": 2534311.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 537 + }, + { + "Device Provisioning Engines": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "device-plugin-network-bridge", + "url": "https://quay.io/repository/kubevirt/device-plugin-network-bridge", + "popularity": 171212.0 + }, + { + "name": "node-disk-manager-amd64", + "url": "https://quay.io/repository/openebs/node-disk-manager-amd64", + "popularity": 159434.0 + }, + { + "name": "mongodb-enterprise-operator", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", + "popularity": 74259.0 + }, + { + "name": "redis-operator", + "url": "https://quay.io/repository/opstree/redis-operator", + "popularity": 70825.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 538 + }, + { + "E-business solution": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "business-central-workbench-showcase", + "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", + "popularity": 609.0 + }, + { + "name": "memcached", + "url": "https://quay.io/repository/jitesoft/memcached", + "popularity": 52903.0 + }, + { + "name": "vouch-proxy", + "url": "https://quay.io/repository/vouch/vouch-proxy", + "popularity": 24168.0 + }, + { + "name": "statsd-exporter", + "url": "https://quay.io/repository/prometheus/statsd-exporter", + "popularity": 8725.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 539 + }, + { + "Enterprise Service Bus": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/enterprise", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/rancher/enterprise", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "grafana/enterprise-metrics", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-metrics", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "grafana/enterprise-logs", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-logs", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "grafana/enterprise-traces", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-traces", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/service-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/bitnami/service-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "common-service-operator", + "url": "https://quay.io/repository/opencloudio/common-service-operator", + "popularity": 317405.0 + }, + { + "name": "service-catalog", + "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", + "popularity": 330506.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 540 + }, + { + "File Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/server-nomad", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "concourse-file-resource", + "url": "https://quay.io/repository/henry40408/concourse-file-resource", + "popularity": 668842.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 541 + }, + { + "General Ledger": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "invidious", + "url": "https://quay.io/repository/invidious/invidious", + "popularity": 38116.0 + }, + { + "name": "mysqld-exporter", + "url": "https://quay.io/repository/prometheus/mysqld-exporter", + "popularity": 19079.0 + }, + { + "name": "rseqc", + "url": "https://quay.io/repository/biocontainers/rseqc", + "popularity": 9885.0 + }, + { + "name": "multiqc", + "url": "https://quay.io/repository/biocontainers/multiqc", + "popularity": 9969.0 + }, + { + "name": "statsd-exporter", + "url": "https://quay.io/repository/prometheus/statsd-exporter", + "popularity": 8725.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 542 + }, + { + "HTTP client": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/http-trigger-controller", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/http-trigger-controller", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "nginx-ingress-controller", + "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", + "popularity": 1153447.0 + }, + { + "name": "haproxy-ingress", + "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", + "popularity": 929588.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 826844.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 543 + }, + { + "HTTP Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + }, + { + "name": "nginx-ingress-controller", + "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", + "popularity": 1153447.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 544 + }, + { + "Integrated Safe System of Work": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 353617.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "ceph", + "url": "https://quay.io/repository/ceph/ceph", + "popularity": 335511.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 545 + }, + { + "Internet Exchange Point - Full Stack": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "monitoring-stack-operator-catalog", + "url": "https://quay.io/repository/tsisodia10/monitoring-stack-operator-catalog", + "popularity": 20627.0 + }, + { + "name": "ceph", + "url": "https://quay.io/repository/ceph/ceph", + "popularity": 335511.0 + }, + { + "name": "billing-sidecar", + "url": "https://quay.io/repository/sdase/billing-sidecar", + "popularity": 183418.0 + }, + { + "name": "ibm-monitoring-grafana-operator", + "url": "https://quay.io/repository/opencloudio/ibm-monitoring-grafana-operator", + "popularity": 18830.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 546 + }, + { + "Internet Message Access Protocol": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/verify-access", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 7, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/verify-access-postgresql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-postgresql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/verify-access-openldap", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-openldap", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/verify-access-dsc", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-dsc", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/verify-access-wrp", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-wrp", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 353617.0 + }, + { + "name": "concourse-ssh-resource", + "url": "https://quay.io/repository/henry40408/concourse-ssh-resource", + "popularity": 130586.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 117024.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "billing-sidecar", + "url": "https://quay.io/repository/sdase/billing-sidecar", + "popularity": 183418.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 547 + }, + { + "JSON": [ + { + "dockerhub_exact_images": [ + { + "name": "ibmcom/json", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/json", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "ibmcom/json", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/json", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "json-mock", + "url": "https://quay.io/repository/cilium/json-mock", + "popularity": 16745.0 + }, + { + "name": "json-exporter", + "url": "https://quay.io/repository/prometheuscommunity/json-exporter", + "popularity": 16119.0 + }, + { + "name": "audit-syslog-service", + "url": "https://quay.io/repository/opencloudio/audit-syslog-service", + "popularity": 74047.0 + }, + { + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", + "popularity": 20112.0 + }, + { + "name": "netbox", + "url": "https://quay.io/repository/netboxcommunity/netbox", + "popularity": 12769.0 + } + ] + }, + { + "operators": [ + { + "package_id": "e1d953c6-0d94-4f74-b053-dfc343b8f64b", + "name": "atlasmap-operator", + "normalized_name": "atlasmap-operator", + "logo_image_id": "146447f0-73b1-425d-957c-52033e4ba4a9", + "stars": 1, + "display_name": "AtlasMap Operator", + "description": "AtlasMap is a data mapping solution with an interactive web based user interface, that simplifies configuring integrations between Java, XML, and JSON data sources", + "version": "0.4.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1631338230, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/atlasmap/atlasmap-operator", + "container_images": [ + "quay.io/atlasmap/atlasmap-operator:0.4.1" + ] + } + ] + } + ], + "entity_type": 1, + "entity_id": 548 + }, + { + "KVS Application Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "application-service", + "url": "https://quay.io/repository/redhat-appstudio/application-service", + "popularity": 72875.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 549 + }, + { + "KVS File Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/server-nomad", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "concourse-file-resource", + "url": "https://quay.io/repository/henry40408/concourse-file-resource", + "popularity": 668842.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 550 + }, + { + "KVS Proxy Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/server-nomad", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "oauth2-proxy", + "url": "https://quay.io/repository/oauth2-proxy/oauth2-proxy", + "popularity": 3150266.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 551 + }, + { + "mainframe": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "clefos", + "url": "https://quay.io/repository/ibm/clefos", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 552 + }, + { + "Manufacturing Execution System": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/system-agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/system-agent", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/system-upgrade-controller", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/rancher/system-upgrade-controller", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/system-agent-installer-rancher", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/system-agent-installer-rancher", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/system-agent-installer-k3s", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/system-agent-installer-k3s", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/system-agent-installer-rke2", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/system-agent-installer-rke2", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.17763.3046", + "Type": "windows", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.20348.768", + "Type": "windows", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "ceph", + "url": "https://quay.io/repository/ceph/ceph", + "popularity": 335511.0 + }, + { + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 255406.0 + }, + { + "name": "postgresql-10-centos7", + "url": "https://quay.io/repository/centos7/postgresql-10-centos7", + "popularity": 189232.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 553 + }, + { + "Mobile": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "mobile-simulator", + "url": "https://quay.io/repository/wdovey/mobile-simulator", + "popularity": 0.0 + }, + { + "name": "mobile-developer-console-operator", + "url": "https://quay.io/repository/aerogear/mobile-developer-console-operator", + "popularity": 0.0 + }, + { + "name": "invidious", + "url": "https://quay.io/repository/invidious/invidious", + "popularity": 38116.0 + }, + { + "name": "mobile-developer-console", + "url": "https://quay.io/repository/aerogear/mobile-developer-console", + "popularity": 0.0 + }, + { + "name": "mobile-security-framework-mobsf", + "url": "https://quay.io/repository/amal5alshaikh/mobile-security-framework-mobsf", + "popularity": 1596.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 554 + }, + { + "NonSQL": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 555 + }, + { + "SaaS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "saas-operator-catalog", + "url": "https://quay.io/repository/3scale/saas-operator-catalog", + "popularity": 1011.0 + }, + { + "name": "saas-operator", + "url": "https://quay.io/repository/3scale/saas-operator", + "popularity": 2.0 + }, + { + "name": "push-saas-metrics", + "url": "https://quay.io/repository/app-sre/push-saas-metrics", + "popularity": 260.0 + }, + { + "name": "trial-saas", + "url": "https://quay.io/repository/opsmxpublic/trial-saas", + "popularity": 37.0 + }, + { + "name": "testssl", + "url": "https://quay.io/repository/jumanjiman/testssl", + "popularity": 7.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 556 + }, + { + "Storage Area Network": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/network-diagnostics", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/network-diagnostics", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/network-manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/rancher/network-manager", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "flannel", + "url": "https://quay.io/repository/coreos/flannel", + "popularity": 1589952.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "minio", + "url": "https://quay.io/repository/minio/minio", + "popularity": 374426.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 557 + }, + { + "Supplier Registration System Application Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "application-service", + "url": "https://quay.io/repository/redhat-appstudio/application-service", + "popularity": 72875.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 558 + }, + { + "Virtual Appliance": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "postgresql", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/postgresql", + "popularity": 0.0 + }, + { + "name": "memcached-exporter", + "url": "https://quay.io/repository/prometheus/memcached-exporter", + "popularity": 65896.0 + }, + { + "name": "kata-deploy", + "url": "https://quay.io/repository/kata-containers/kata-deploy", + "popularity": 7211.0 + }, + { + "name": "chlaus", + "url": "https://quay.io/repository/appuio/chlaus", + "popularity": 2687.0 + }, + { + "name": "federatorai-operator-ubi", + "url": "https://quay.io/repository/prophetstor/federatorai-operator-ubi", + "popularity": 473.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 559 + }, + { + "Webtop": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "webtop", + "url": "https://quay.io/repository/linuxserver.io/webtop", + "popularity": 406.0 + } + ], + "quay_top_images": [ + { + "name": "webtop", + "url": "https://quay.io/repository/linuxserver.io/webtop", + "popularity": 406.0 + }, + { + "name": "lspipepr-webtop", + "url": "https://quay.io/repository/linuxserver.io/lspipepr-webtop", + "popularity": 0.0 + }, + { + "name": "webtop-ubuntu-base", + "url": "https://quay.io/repository/ajhalili2006/webtop-ubuntu-base", + "popularity": 0.0 + }, + { + "name": "webtop-alpine-xfce4", + "url": "https://quay.io/repository/ajhalili2006/webtop-alpine-xfce4", + "popularity": 0.0 + }, + { + "name": "webtop-ubuntu-kde-desktop", + "url": "https://quay.io/repository/ajhalili2006/webtop-ubuntu-kde-desktop", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 560 + }, + { + "Proxy Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/server-nomad", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "oauth2-proxy", + "url": "https://quay.io/repository/oauth2-proxy/oauth2-proxy", + "popularity": 3150266.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 561 + }, + { + "Utility": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "google/apigee-cassandra-backup-utility", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/google/apigee-cassandra-backup-utility", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "utility", + "url": "https://quay.io/repository/theiagen/utility", + "popularity": 60840.0 + }, + { + "name": "utility", + "url": "https://quay.io/repository/rbean/utility", + "popularity": 68.0 + }, + { + "name": "utility", + "url": "https://quay.io/repository/dyleck/utility", + "popularity": 42.0 + } + ], + "quay_top_images": [ + { + "name": "utility", + "url": "https://quay.io/repository/theiagen/utility", + "popularity": 60840.0 + }, + { + "name": "terraform-docs", + "url": "https://quay.io/repository/terraform-docs/terraform-docs", + "popularity": 6960.0 + }, + { + "name": "image-exporter", + "url": "https://quay.io/repository/plotly/image-exporter", + "popularity": 3278.0 + }, + { + "name": "drain-cleaner", + "url": "https://quay.io/repository/strimzi/drain-cleaner", + "popularity": 2902.0 + }, + { + "name": "gawk", + "url": "https://quay.io/repository/biocontainers/gawk", + "popularity": 2812.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 562 + }, + { + "Citrix ADC": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/citrix-workspace", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/kasmweb/citrix-workspace", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "citrix-k8s-ingress-controller", + "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", + "popularity": 137872.0 + }, + { + "name": "citrix-k8s-node-controller", + "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", + "popularity": 41494.0 + }, + { + "name": "citrix-adc-metrics-exporter", + "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", + "popularity": 39011.0 + }, + { + "name": "citrix-observability-exporter", + "url": "https://quay.io/repository/citrix/citrix-observability-exporter", + "popularity": 1975.0 + }, + { + "name": "citrix-k8s-cpx-ingress", + "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", + "popularity": 460.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 3, + "entity_id": 563 + }, + { + "Citrix ADC VPX": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/citrix-workspace", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/kasmweb/citrix-workspace", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "citrix-k8s-ingress-controller", + "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", + "popularity": 137872.0 + }, + { + "name": "citrix-k8s-node-controller", + "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", + "popularity": 41494.0 + }, + { + "name": "citrix-adc-metrics-exporter", + "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", + "popularity": 39011.0 + }, + { + "name": "citrix-observability-exporter", + "url": "https://quay.io/repository/citrix/citrix-observability-exporter", + "popularity": 1975.0 + }, + { + "name": "citrix-k8s-cpx-ingress", + "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", + "popularity": 460.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 3, + "entity_id": 564 + }, + { + "Citrix ADC BLX": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/citrix-workspace", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/kasmweb/citrix-workspace", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "citrix-k8s-ingress-controller", + "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", + "popularity": 137872.0 + }, + { + "name": "citrix-k8s-node-controller", + "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", + "popularity": 41494.0 + }, + { + "name": "citrix-adc-metrics-exporter", + "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", + "popularity": 39011.0 + }, + { + "name": "citrix-observability-exporter", + "url": "https://quay.io/repository/citrix/citrix-observability-exporter", + "popularity": 1975.0 + }, + { + "name": "citrix-k8s-cpx-ingress", + "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", + "popularity": 460.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 3, + "entity_id": 565 + }, + { + "InterScan Messaging Security Virtual Appliance": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/security-advisor-onboarding", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/security-advisor-onboarding", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/security-tools", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/security-tools", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/security-scan", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/rancher/security-scan", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ceph", + "url": "https://quay.io/repository/ceph/ceph", + "popularity": 335511.0 + }, + { + "name": "operator-generic", + "url": "https://quay.io/repository/cilium/operator-generic", + "popularity": 159557.0 + }, + { + "name": "hubble-relay", + "url": "https://quay.io/repository/cilium/hubble-relay", + "popularity": 135390.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 3, + "entity_id": 566 + }, + { + "Oracle VM": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/vm", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/vm", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "oracle-12c", + "url": "https://quay.io/repository/maksymbilenko/oracle-12c", + "popularity": 15052.0 + }, + { + "name": "debezium-container-for-oracle", + "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", + "popularity": 6801.0 + }, + { + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", + "popularity": 20112.0 + }, + { + "name": "edb-postgres-advanced", + "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", + "popularity": 13004.0 + }, + { + "name": "mysqld-exporter", + "url": "https://quay.io/repository/prometheus/mysqld-exporter", + "popularity": 19079.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 3, + "entity_id": 567 + }, + { + "VMware ESXi": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cma-vmware", + "url": "https://quay.io/repository/samsung_cnct/cma-vmware", + "popularity": 0.0 + }, + { + "name": "cm-vmware-bootstrap", + "url": "https://quay.io/repository/samsung_cnct/cm-vmware-bootstrap", + "popularity": 0.0 + }, + { + "name": "vmware-gateway", + "url": "https://quay.io/repository/amastbau/vmware-gateway", + "popularity": 1280.0 + }, + { + "name": "kubevirt-vmware", + "url": "https://quay.io/repository/kubevirt/kubevirt-vmware", + "popularity": 39.0 + }, + { + "name": "vmware", + "url": "https://quay.io/repository/nickarellano/vmware", + "popularity": 30.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 3, + "entity_id": 568 + }, + { + "VMware Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 3, + "entity_id": 569 + }, + { + "IBM WebSphere Transformation Extender": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "websphere-liberty", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 286, + "Docker_Url": "https://hub.docker.com/_/websphere-liberty", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/websphere-liberty", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 22, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 570 + }, + { + "Oracle Retail Point-of-Service": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "pachyderm/retail-allocation", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/pachyderm/retail-allocation", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "common-service-operator", + "url": "https://quay.io/repository/opencloudio/common-service-operator", + "popularity": 317405.0 + }, + { + "name": "service-catalog", + "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", + "popularity": 330506.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + }, + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 571 + }, + { + "Structured Query Language": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "grafana/query-frontend", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/grafana/query-frontend", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "grafana/query-tee", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/grafana/query-tee", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "intel/language-translation", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-translation", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "intel/language-modeling", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "query", + "url": "https://quay.io/repository/sisense/query", + "popularity": 2407.0 + }, + { + "name": "jaeger-query", + "url": "https://quay.io/repository/jaegertracing/jaeger-query", + "popularity": 10012.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "redis-operator", + "url": "https://quay.io/repository/opstree/redis-operator", + "popularity": 70825.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 572 + }, + { + "TSO/ISPF": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "tso-dependencies", + "url": "https://quay.io/repository/tsone/tso-dependencies", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 573 + }, + { + "Model view controller": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cert-manager-controller", + "url": "https://quay.io/repository/jetstack/cert-manager-controller", + "popularity": 92535501.0 + }, + { + "name": "nginx-ingress-controller", + "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", + "popularity": 1153447.0 + }, + { + "name": "workflow-controller", + "url": "https://quay.io/repository/argoproj/workflow-controller", + "popularity": 1196920.0 + }, + { + "name": "controller", + "url": "https://quay.io/repository/metallb/controller", + "popularity": 228321.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 1, + "entity_id": 574 + }, + { + "Linux": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + }, + { + "name": "ibm-management-ingress-operator", + "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", + "popularity": 111760.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 117024.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 576 + }, + { + "MVS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 577 + }, + { + "Unix": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "memcached-exporter", + "url": "https://quay.io/repository/prometheus/memcached-exporter", + "popularity": 65896.0 + }, + { + "name": "statsd-exporter", + "url": "https://quay.io/repository/prometheus/statsd-exporter", + "popularity": 8725.0 + }, + { + "name": "entrez-direct", + "url": "https://quay.io/repository/biocontainers/entrez-direct", + "popularity": 69.0 + }, + { + "name": "rsync-ssh", + "url": "https://quay.io/repository/instrumentisto/rsync-ssh", + "popularity": 30.0 + }, + { + "name": "watchtower", + "url": "https://quay.io/repository/webhippie/watchtower", + "popularity": 21.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 578 + }, + { + "Unix|BSD": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "memcached-exporter", + "url": "https://quay.io/repository/prometheus/memcached-exporter", + "popularity": 65896.0 + }, + { + "name": "nginx", + "url": "https://quay.io/repository/jitesoft/nginx", + "popularity": 80338.0 + }, + { + "name": "statsd-exporter", + "url": "https://quay.io/repository/prometheus/statsd-exporter", + "popularity": 8725.0 + }, + { + "name": "mafft", + "url": "https://quay.io/repository/biocontainers/mafft", + "popularity": 1380.0 + }, + { + "name": "diamond", + "url": "https://quay.io/repository/biocontainers/diamond", + "popularity": 747.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 579 + }, + { + "Windows": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/windows-scheduler", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/rancher/windows-scheduler", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/windows-runtime-base", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/windows-runtime-base", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "windows", + "url": "https://quay.io/repository/mhallin/windows", + "popularity": 37.0 + }, + { + "name": "windows", + "url": "https://quay.io/repository/mgba/windows", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "windows-upgrade", + "url": "https://quay.io/repository/calico/windows-upgrade", + "popularity": 7833.0 + }, + { + "name": "community-windows-machine-config-operator", + "url": "https://quay.io/repository/openshift-windows/community-windows-machine-config-operator", + "popularity": 228.0 + }, + { + "name": "golang-builder", + "url": "https://quay.io/repository/prometheus/golang-builder", + "popularity": 3618.0 + }, + { + "name": "server", + "url": "https://quay.io/repository/codimd/server", + "popularity": 2465.0 + }, + { + "name": "fmeserver-engine", + "url": "https://quay.io/repository/safesoftware/fmeserver-engine", + "popularity": 155.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 580 + }, + { + "MS SQL Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "gooddata/sql-executor", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 581 + }, + { + "C#": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [ + { + "package_id": "f4411bd7-db63-4d12-9c59-9267599fdf4f", + "name": "alvearie-imaging-ingestion", + "normalized_name": "alvearie-imaging-ingestion", + "logo_image_id": "4c92b67d-e6a6-413f-9ec5-ec98c74415e2", + "stars": 0, + "display_name": "Alvearie Imaging Ingestion Operator", + "description": "The Alvearie Imaging Ingestion provides a collection of components for extending enterprise medical imaging informatics systems to Kubernetes.", + "version": "0.0.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1617895795, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/Alvearie/imaging-ingestion", + "container_images": [] + }, + { + "package_id": "280420eb-a3b0-46fa-bef3-4300e85a7ad1", + "name": "cass-operator-community", + "normalized_name": "cass-operator-community", + "logo_image_id": "ac0cc465-c42f-43d9-a288-ec178d9f3ef9", + "stars": 0, + "display_name": "DataStax Kubernetes Operator for Apache Cassandra", + "description": "Simple provisioning, turn-key operations, and automated remediation of Apache Cassandra clusters\n", + "version": "1.10.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 7, + "high": 0, + "medium": 7, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1652441433, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/k8ssandra/cass-operator", + "container_images": [] + }, + { + "package_id": "d4e5a79a-1ff7-426a-8fbc-59a103b14b41", + "name": "qserv-operator", + "normalized_name": "qserv-operator", + "logo_image_id": "2684e3e7-54a4-4b02-a3f9-b55336a5d3cf", + "stars": 0, + "display_name": "Qserv operator", + "description": "Create and maintain highly-available Qserv clusters on Kubernetes", + "version": "2022.1.1-rc1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1643383828, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/lsst/qserv-operator", + "container_images": [] + }, + { + "package_id": "614a5896-0b60-4e2b-a5b7-3b694658ab2a", + "name": "strimzi-kafka-operator", + "normalized_name": "strimzi-kafka-operator", + "logo_image_id": "83c34ef5-d2f7-4282-94ab-468dea859677", + "stars": 18, + "display_name": "Strimzi", + "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", + "version": "0.29.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 412, + "high": 38, + "medium": 473, + "unknown": 7, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1652572867, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/strimzi/strimzi-kafka-operator", + "container_images": [ + "quay.io/strimzi/operator", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka-bridge", + "quay.io/strimzi/jmxtrans", + "quay.io/strimzi/kaniko-executor", + "quay.io/strimzi/maven-builder" + ] + }, + { + "package_id": "cd93e666-2b6d-419e-879d-3890b5f7c200", + "name": "keycloak-operator", + "normalized_name": "keycloak-operator", + "logo_image_id": "fd90a09f-d3e5-45bf-8c8f-589634592369", + "stars": 14, + "display_name": "Keycloak Operator", + "description": "An Operator for installing and managing Keycloak", + "version": "20.0.0-alpha.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 38, + "high": 0, + "medium": 47, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656518437, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/keycloak/keycloak", + "container_images": [ + "quay.io/keycloak/keycloak-operator:18.0.2" + ] + }, + { + "package_id": "2d28ca38-12b7-469f-b82e-f00edde51d19", + "name": "prometheus", + "normalized_name": "prometheus", + "logo_image_id": "150dd205-ff78-4478-824c-ffb2a140edcf", + "stars": 14, + "display_name": "Prometheus Operator", + "description": "Manage the full lifecycle of configuring and managing Prometheus and Alertmanager servers.", + "version": "0.47.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 2, + "unknown": 2, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1618530180, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/prometheus-operator/prometheus-operator", + "container_images": [ + "quay.io/prometheus-operator/prometheus-operator:v0.47.0" + ] + }, + { + "package_id": "b1aa6353-146c-477c-943e-5a5558b65dc3", + "name": "elastic-cloud-eck", + "normalized_name": "elastic-cloud-eck", + "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", + "stars": 13, + "display_name": "Elasticsearch (ECK) Operator", + "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", + "version": "2.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1657006653, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/elastic/cloud-on-k8s", + "container_images": [] + }, + { + "package_id": "62d3a0f9-3d23-48f0-9bee-9b4f2060c6df", + "name": "postgresql", + "normalized_name": "postgresql", + "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", + "stars": 13, + "display_name": "Crunchy Postgres for Kubernetes", + "description": "Production Postgres Made Easy", + "version": "5.1.2", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 23, + "high": 0, + "medium": 32, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1657571435, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/CrunchyData/postgres-operator", + "container_images": [] + }, + { + "package_id": "0c44b6e2-521b-4485-9d14-fd8f01ea6a4d", + "name": "knative-operator", + "normalized_name": "knative-operator", + "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", + "stars": 12, + "display_name": "Knative Operator", + "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", + "version": "1.5.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656460800, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/knative/operator", + "container_images": [] + }, + { + "package_id": "bb525733-deee-4431-9b51-4897c8d6d21b", + "name": "redis-operator", + "normalized_name": "redis-operator", + "logo_image_id": "60503f77-253d-4491-adff-e6e55c547ef7", + "stars": 9, + "display_name": "Redis Operator", + "description": "A Golang based redis operator that will make/oversee Redis standalone/cluster mode setup on top of the Kubernetes.", + "version": "0.11.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1657396835, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/ot-container-kit/redis-operator", + "container_images": [ + "quay.io/opstree/redis-operator:v0.11.0" + ] + }, + { + "package_id": "6d932520-44ce-4954-a8ea-f687ad8cf170", + "name": "rook-ceph", + "normalized_name": "rook-ceph", + "logo_image_id": "9234e87f-8c06-4e85-ad9c-3b4f0b95fbd6", + "stars": 8, + "display_name": "Rook-Ceph", + "description": "Install and maintain Ceph Storage cluster", + "version": "1.1.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 509, + "high": 33, + "medium": 719, + "unknown": 0, + "critical": 7 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525859, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/rook/rook", + "container_images": [] + }, + { + "package_id": "fa7ed65b-05ef-428d-952c-05f929661806", + "name": "argocd-operator", + "normalized_name": "argocd-operator", + "logo_image_id": "b26087ab-be34-4750-abab-955e472c3887", + "stars": 7, + "display_name": "Argo CD", + "description": "Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.", + "version": "0.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1650443438, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/argoproj-labs/argocd-operator", + "container_images": [ + "quay.io/argoprojlabs/argocd-operator" + ] + }, + { + "package_id": "5667c55e-0a99-4011-9ab6-7bc3487f43a7", + "name": "grafana-operator", + "normalized_name": "grafana-operator", + "logo_image_id": "27dba515-e77b-4e81-b7ac-484df9e02086", + "stars": 7, + "display_name": "Grafana Operator", + "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", + "version": "4.4.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 4, + "high": 0, + "medium": 3, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1652090412, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/grafana-operator/grafana-operator", + "container_images": [ + "quay.io/grafana-operator/grafana-operator:v4.4.1" + ] + }, + { + "package_id": "ac42caed-76b2-42c8-bf98-533fd044eca6", + "name": "starboard-operator", + "normalized_name": "starboard-operator", + "logo_image_id": "7750edcf-42ac-436d-920a-341ef3f473e8", + "stars": 7, + "display_name": "Starboard Operator", + "description": "Keeps security report resources updated", + "version": "0.15.6", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1654107072, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aquasecurity/starboard", + "container_images": [ + "docker.io/aquasec/starboard-operator:0.15.6" + ] + }, + { + "package_id": "66a8d8ef-e05d-44be-b704-474e144b8b9b", + "name": "tidb-operator", + "normalized_name": "tidb-operator", + "logo_image_id": "b328c448-efbb-4aab-a463-8437ab8898bb", + "stars": 7, + "display_name": "TiDB Operator", + "description": "TiDB Operator manages TiDB clusters on Kubernetes and automates tasks related to operating a TiDB cluster. It makes TiDB a truly cloud-native database.", + "version": "1.3.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 4, + "high": 8, + "medium": 31, + "unknown": 8, + "critical": 2 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1645693233, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/pingcap/tidb-operator", + "container_images": [] + }, + { + "package_id": "95833125-3a5b-4da5-a985-21f172238a61", + "name": "clickhouse", + "normalized_name": "clickhouse", + "logo_image_id": "f00ce069-4086-4f36-bb6e-bb805373bfa7", + "stars": 5, + "display_name": "Altinity Operator for ClickHouse", + "description": "ClickHouse Operator manages full lifecycle of ClickHouse clusters.", + "version": "0.18.3", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1573466400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/altinity/clickhouse-operator", + "container_images": [] + }, + { + "package_id": "0e2ae061-9331-4d12-b4a6-eec1def5eaea", + "name": "flux", + "normalized_name": "flux", + "logo_image_id": "59b3d9ab-5b8b-45bc-935f-cf711c5fece0", + "stars": 5, + "display_name": "Flux", + "description": "Flux is a Continuous Delivery solution for Kubernetes.", + "version": "0.31.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656606635, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [] + }, + { + "package_id": "e3f8d531-6ea5-48ce-ac99-505c79414881", + "name": "percona-xtradb-cluster-operator", + "normalized_name": "percona-xtradb-cluster-operator", + "logo_image_id": "0b8875cd-6661-4269-9cf6-0fd92d59017b", + "stars": 5, + "display_name": "Percona Distribution for MySQL Operator", + "description": "Percona Distribution for MySQL Operator manages the lifecycle of Percona XtraDB cluster instances.", + "version": "1.10.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 5, + "medium": 48, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1640178704, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/percona/percona-xtradb-cluster-operator", + "container_images": [] + }, + { + "package_id": "f5c53828-c741-4ea7-97b6-89071b3c0b7e", + "name": "rocketmq-operator", + "normalized_name": "rocketmq-operator", + "logo_image_id": "350d3cf0-d7e6-4500-871c-733f06713494", + "stars": 5, + "display_name": "RocketMQ Operator", + "description": "The RocketMQ Operator manages the Apache RocketMQ service instances deployed on the Kubernetes cluster.", + "version": "0.2.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 142, + "high": 39, + "medium": 107, + "unknown": 3, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525858, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/apache/rocketmq-operator", + "container_images": [] + }, + { + "package_id": "2ffd7a04-d749-4bcf-b682-a2483c3dd4fe", + "name": "storageos", + "normalized_name": "storageos", + "logo_image_id": "ce032151-64d8-4b3b-b172-016dac88d973", + "stars": 5, + "display_name": "StorageOS", + "description": "Cloud-native, persistent storage for containers.", + "version": "2.6.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 5, + "medium": 44, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1647018033, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/storageos/operator", + "container_images": [] + } + ] + } + ], + "entity_type": 9, + "entity_id": 582 + }, + { + "C++": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [ + { + "package_id": "f4411bd7-db63-4d12-9c59-9267599fdf4f", + "name": "alvearie-imaging-ingestion", + "normalized_name": "alvearie-imaging-ingestion", + "logo_image_id": "4c92b67d-e6a6-413f-9ec5-ec98c74415e2", + "stars": 0, + "display_name": "Alvearie Imaging Ingestion Operator", + "description": "The Alvearie Imaging Ingestion provides a collection of components for extending enterprise medical imaging informatics systems to Kubernetes.", + "version": "0.0.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1617895795, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/Alvearie/imaging-ingestion", + "container_images": [] + }, + { + "package_id": "280420eb-a3b0-46fa-bef3-4300e85a7ad1", + "name": "cass-operator-community", + "normalized_name": "cass-operator-community", + "logo_image_id": "ac0cc465-c42f-43d9-a288-ec178d9f3ef9", + "stars": 0, + "display_name": "DataStax Kubernetes Operator for Apache Cassandra", + "description": "Simple provisioning, turn-key operations, and automated remediation of Apache Cassandra clusters\n", + "version": "1.10.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 7, + "high": 0, + "medium": 7, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1652441433, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/k8ssandra/cass-operator", + "container_images": [] + }, + { + "package_id": "d4e5a79a-1ff7-426a-8fbc-59a103b14b41", + "name": "qserv-operator", + "normalized_name": "qserv-operator", + "logo_image_id": "2684e3e7-54a4-4b02-a3f9-b55336a5d3cf", + "stars": 0, + "display_name": "Qserv operator", + "description": "Create and maintain highly-available Qserv clusters on Kubernetes", + "version": "2022.1.1-rc1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1643383828, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/lsst/qserv-operator", + "container_images": [] + }, + { + "package_id": "614a5896-0b60-4e2b-a5b7-3b694658ab2a", + "name": "strimzi-kafka-operator", + "normalized_name": "strimzi-kafka-operator", + "logo_image_id": "83c34ef5-d2f7-4282-94ab-468dea859677", + "stars": 18, + "display_name": "Strimzi", + "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", + "version": "0.29.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 412, + "high": 38, + "medium": 473, + "unknown": 7, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1652572867, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/strimzi/strimzi-kafka-operator", + "container_images": [ + "quay.io/strimzi/operator", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka-bridge", + "quay.io/strimzi/jmxtrans", + "quay.io/strimzi/kaniko-executor", + "quay.io/strimzi/maven-builder" + ] + }, + { + "package_id": "cd93e666-2b6d-419e-879d-3890b5f7c200", + "name": "keycloak-operator", + "normalized_name": "keycloak-operator", + "logo_image_id": "fd90a09f-d3e5-45bf-8c8f-589634592369", + "stars": 14, + "display_name": "Keycloak Operator", + "description": "An Operator for installing and managing Keycloak", + "version": "20.0.0-alpha.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 38, + "high": 0, + "medium": 47, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656518437, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/keycloak/keycloak", + "container_images": [ + "quay.io/keycloak/keycloak-operator:18.0.2" + ] + }, + { + "package_id": "2d28ca38-12b7-469f-b82e-f00edde51d19", + "name": "prometheus", + "normalized_name": "prometheus", + "logo_image_id": "150dd205-ff78-4478-824c-ffb2a140edcf", + "stars": 14, + "display_name": "Prometheus Operator", + "description": "Manage the full lifecycle of configuring and managing Prometheus and Alertmanager servers.", + "version": "0.47.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 2, + "unknown": 2, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1618530180, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/prometheus-operator/prometheus-operator", + "container_images": [ + "quay.io/prometheus-operator/prometheus-operator:v0.47.0" + ] + }, + { + "package_id": "b1aa6353-146c-477c-943e-5a5558b65dc3", + "name": "elastic-cloud-eck", + "normalized_name": "elastic-cloud-eck", + "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", + "stars": 13, + "display_name": "Elasticsearch (ECK) Operator", + "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", + "version": "2.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1657006653, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/elastic/cloud-on-k8s", + "container_images": [] + }, + { + "package_id": "62d3a0f9-3d23-48f0-9bee-9b4f2060c6df", + "name": "postgresql", + "normalized_name": "postgresql", + "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", + "stars": 13, + "display_name": "Crunchy Postgres for Kubernetes", + "description": "Production Postgres Made Easy", + "version": "5.1.2", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 23, + "high": 0, + "medium": 32, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1657571435, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/CrunchyData/postgres-operator", + "container_images": [] + }, + { + "package_id": "0c44b6e2-521b-4485-9d14-fd8f01ea6a4d", + "name": "knative-operator", + "normalized_name": "knative-operator", + "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", + "stars": 12, + "display_name": "Knative Operator", + "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", + "version": "1.5.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656460800, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/knative/operator", + "container_images": [] + }, + { + "package_id": "bb525733-deee-4431-9b51-4897c8d6d21b", + "name": "redis-operator", + "normalized_name": "redis-operator", + "logo_image_id": "60503f77-253d-4491-adff-e6e55c547ef7", + "stars": 9, + "display_name": "Redis Operator", + "description": "A Golang based redis operator that will make/oversee Redis standalone/cluster mode setup on top of the Kubernetes.", + "version": "0.11.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1657396835, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/ot-container-kit/redis-operator", + "container_images": [ + "quay.io/opstree/redis-operator:v0.11.0" + ] + }, + { + "package_id": "6d932520-44ce-4954-a8ea-f687ad8cf170", + "name": "rook-ceph", + "normalized_name": "rook-ceph", + "logo_image_id": "9234e87f-8c06-4e85-ad9c-3b4f0b95fbd6", + "stars": 8, + "display_name": "Rook-Ceph", + "description": "Install and maintain Ceph Storage cluster", + "version": "1.1.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 509, + "high": 33, + "medium": 719, + "unknown": 0, + "critical": 7 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525859, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/rook/rook", + "container_images": [] + }, + { + "package_id": "fa7ed65b-05ef-428d-952c-05f929661806", + "name": "argocd-operator", + "normalized_name": "argocd-operator", + "logo_image_id": "b26087ab-be34-4750-abab-955e472c3887", + "stars": 7, + "display_name": "Argo CD", + "description": "Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.", + "version": "0.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1650443438, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/argoproj-labs/argocd-operator", + "container_images": [ + "quay.io/argoprojlabs/argocd-operator" + ] + }, + { + "package_id": "5667c55e-0a99-4011-9ab6-7bc3487f43a7", + "name": "grafana-operator", + "normalized_name": "grafana-operator", + "logo_image_id": "27dba515-e77b-4e81-b7ac-484df9e02086", + "stars": 7, + "display_name": "Grafana Operator", + "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", + "version": "4.4.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 4, + "high": 0, + "medium": 3, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1652090412, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/grafana-operator/grafana-operator", + "container_images": [ + "quay.io/grafana-operator/grafana-operator:v4.4.1" + ] + }, + { + "package_id": "ac42caed-76b2-42c8-bf98-533fd044eca6", + "name": "starboard-operator", + "normalized_name": "starboard-operator", + "logo_image_id": "7750edcf-42ac-436d-920a-341ef3f473e8", + "stars": 7, + "display_name": "Starboard Operator", + "description": "Keeps security report resources updated", + "version": "0.15.6", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1654107072, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aquasecurity/starboard", + "container_images": [ + "docker.io/aquasec/starboard-operator:0.15.6" + ] + }, + { + "package_id": "66a8d8ef-e05d-44be-b704-474e144b8b9b", + "name": "tidb-operator", + "normalized_name": "tidb-operator", + "logo_image_id": "b328c448-efbb-4aab-a463-8437ab8898bb", + "stars": 7, + "display_name": "TiDB Operator", + "description": "TiDB Operator manages TiDB clusters on Kubernetes and automates tasks related to operating a TiDB cluster. It makes TiDB a truly cloud-native database.", + "version": "1.3.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 4, + "high": 8, + "medium": 31, + "unknown": 8, + "critical": 2 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1645693233, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/pingcap/tidb-operator", + "container_images": [] + }, + { + "package_id": "95833125-3a5b-4da5-a985-21f172238a61", + "name": "clickhouse", + "normalized_name": "clickhouse", + "logo_image_id": "f00ce069-4086-4f36-bb6e-bb805373bfa7", + "stars": 5, + "display_name": "Altinity Operator for ClickHouse", + "description": "ClickHouse Operator manages full lifecycle of ClickHouse clusters.", + "version": "0.18.3", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1573466400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/altinity/clickhouse-operator", + "container_images": [] + }, + { + "package_id": "0e2ae061-9331-4d12-b4a6-eec1def5eaea", + "name": "flux", + "normalized_name": "flux", + "logo_image_id": "59b3d9ab-5b8b-45bc-935f-cf711c5fece0", + "stars": 5, + "display_name": "Flux", + "description": "Flux is a Continuous Delivery solution for Kubernetes.", + "version": "0.31.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656606635, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [] + }, + { + "package_id": "e3f8d531-6ea5-48ce-ac99-505c79414881", + "name": "percona-xtradb-cluster-operator", + "normalized_name": "percona-xtradb-cluster-operator", + "logo_image_id": "0b8875cd-6661-4269-9cf6-0fd92d59017b", + "stars": 5, + "display_name": "Percona Distribution for MySQL Operator", + "description": "Percona Distribution for MySQL Operator manages the lifecycle of Percona XtraDB cluster instances.", + "version": "1.10.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 5, + "medium": 48, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1640178704, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/percona/percona-xtradb-cluster-operator", + "container_images": [] + }, + { + "package_id": "f5c53828-c741-4ea7-97b6-89071b3c0b7e", + "name": "rocketmq-operator", + "normalized_name": "rocketmq-operator", + "logo_image_id": "350d3cf0-d7e6-4500-871c-733f06713494", + "stars": 5, + "display_name": "RocketMQ Operator", + "description": "The RocketMQ Operator manages the Apache RocketMQ service instances deployed on the Kubernetes cluster.", + "version": "0.2.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 142, + "high": 39, + "medium": 107, + "unknown": 3, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525858, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/apache/rocketmq-operator", + "container_images": [] + }, + { + "package_id": "2ffd7a04-d749-4bcf-b682-a2483c3dd4fe", + "name": "storageos", + "normalized_name": "storageos", + "logo_image_id": "ce032151-64d8-4b3b-b172-016dac88d973", + "stars": 5, + "display_name": "StorageOS", + "description": "Cloud-native, persistent storage for containers.", + "version": "2.6.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 5, + "medium": 44, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1647018033, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/storageos/operator", + "container_images": [] + } + ] + } + ], + "entity_type": 9, + "entity_id": 583 + }, + { + "Java": [ + { + "dockerhub_exact_images": [ + { + "name": "java", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1976, + "Docker_Url": "https://hub.docker.com/_/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/java", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/bitnami/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/java", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/circleci/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "circleci/java", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/circleci/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "java", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1976, + "Docker_Url": "https://hub.docker.com/_/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/java", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/bitnami/java", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "appdynamics/java-agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/appdynamics/java-agent", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/java-dev", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/java-dev", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "java", + "url": "https://quay.io/repository/tamr/java", + "popularity": 492.0 + }, + { + "name": "java", + "url": "https://quay.io/repository/enxadahost/java", + "popularity": 19927.0 + }, + { + "name": "java", + "url": "https://quay.io/repository/reishost/java", + "popularity": 3686.0 + } + ], + "quay_top_images": [ + { + "name": "java", + "url": "https://quay.io/repository/enxadahost/java", + "popularity": 19927.0 + }, + { + "name": "docker-java-swiss-knife", + "url": "https://quay.io/repository/scentbird/docker-java-swiss-knife", + "popularity": 9651.0 + }, + { + "name": "jkube-java", + "url": "https://quay.io/repository/jkube/jkube-java", + "popularity": 4274.0 + }, + { + "name": "java", + "url": "https://quay.io/repository/reishost/java", + "popularity": 3686.0 + }, + { + "name": "ubi-quarkus-native-s2i", + "url": "https://quay.io/repository/quarkus/ubi-quarkus-native-s2i", + "popularity": 35834.0 + } + ] + }, + { + "operators": [ + { + "package_id": "92b17f5c-3196-41bc-bdeb-291700c2c8c1", + "name": "wildfly", + "normalized_name": "wildfly", + "logo_image_id": "8188073c-d86d-460a-9662-3bfa7e3d313f", + "stars": 1, + "display_name": "WildFly", + "description": "Operator that deploys and manages Java applications running on WildFly.", + "version": "0.5.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 4, + "medium": 45, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1646726400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/wildfly/wildfly-operator", + "container_images": [ + "quay.io/wildfly/wildfly-operator:0.5.3" + ] + }, + { + "package_id": "57488c09-4b44-4ba8-aeed-2c141cf0b30e", + "name": "eclipse-che", + "normalized_name": "eclipse-che", + "logo_image_id": "f2ea20a6-ebd1-42f6-b7e7-b9dd0f36bd22", + "stars": 3, + "display_name": "Eclipse Che", + "description": "A Kube-native development solution that delivers portable and collaborative developer workspaces.", + "version": "7.39.2", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1637755976, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/eclipse-che/che-operator", + "container_images": [ + "quay.io/eclipse/che-operator", + "quay.io/che-incubator/configbump", + "quay.io/che-incubator/header-rewrite-proxy", + "quay.io/devfile/devworkspace-controller", + "quay.io/eclipse/che--centos--postgresql-13-centos7", + "quay.io/eclipse/che--centos--postgresql-96-centos7", + "quay.io/eclipse/che--traefik", + "quay.io/eclipse/che-backup-server-rest", + "quay.io/eclipse/che-dashboard", + "quay.io/eclipse/che-devfile-registry", + "quay.io/eclipse/che-jwtproxy", + "quay.io/eclipse/che-keycloak", + "quay.io/eclipse/che-plugin-artifacts-broker", + "quay.io/eclipse/che-plugin-metadata-broker", + "quay.io/eclipse/che-plugin-registry", + "quay.io/eclipse/che-server", + "quay.io/eclipse/che-tls-secret-creator", + "quay.io/openshift/origin-kube-rbac-proxy", + "quay.io/openshift/origin-oauth-proxy", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/windupeng/mta-vscode-extension", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-theia", + "quay.io/eclipse/che-machine-exec", + "quay.io/eclipse/che-theia-endpoint-runtime-binary", + "index.docker.io/ksmster/che-editor-jupyter", + "index.docker.io/dirigiblelabs/dirigible-openshift", + "quay.io/che-incubator/che-idea", + "quay.io/che-incubator/che-pycharm", + "index.docker.io/wsskeleton/eclipse-broadway", + "index.docker.io/codercom/code-server", + "quay.io/eclipse/che-buildah-base", + "quay.io/eclipse/che-sidecar-workspace-data-sync", + "quay.io/eclipse/che-buildkit-base", + "quay.io/eclipse/che--centos--mongodb-36-centos7", + "quay.io/eclipse/che--centos--mongodb-36-centos7", + "quay.io/eclipse/che--centos--mysql-57-centos7", + "quay.io/eclipse/che-cpp-rhel7", + "quay.io/eclipse/che-dotnet-2.2", + "quay.io/eclipse/che-dotnet-3.1", + "quay.io/eclipse/che-golang-1.17", + "quay.io/eclipse/che-java11-gradle", + "quay.io/eclipse/che-java11-maven", + "quay.io/eclipse/che-java8-maven", + "quay.io/eclipse/che-nodejs10-community", + "quay.io/eclipse/che-nodejs10-ubi", + "quay.io/eclipse/che-nodejs12-community", + "quay.io/eclipse/che-nodejs8-centos", + "quay.io/eclipse/che-php-7", + "quay.io/eclipse/che-python-3.8", + "quay.io/eclipse/che-quarkus", + "quay.io/eclipse/che-rust-1.39" + ] + }, + { + "package_id": "e1d953c6-0d94-4f74-b053-dfc343b8f64b", + "name": "atlasmap-operator", + "normalized_name": "atlasmap-operator", + "logo_image_id": "146447f0-73b1-425d-957c-52033e4ba4a9", + "stars": 1, + "display_name": "AtlasMap Operator", + "description": "AtlasMap is a data mapping solution with an interactive web based user interface, that simplifies configuring integrations between Java, XML, and JSON data sources", + "version": "0.4.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1631338230, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/atlasmap/atlasmap-operator", + "container_images": [ + "quay.io/atlasmap/atlasmap-operator:0.4.1" + ] + }, + { + "package_id": "44e1ad69-0eea-4bcb-b796-2216452f99c7", + "name": "appsody-operator", + "normalized_name": "appsody-operator", + "logo_image_id": "a71aac4a-90dc-41fb-8899-af9c772c7261", + "stars": 0, + "display_name": "Appsody Operator", + "description": "Deploys Appsody based applications", + "version": "0.6.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 64, + "high": 14, + "medium": 165, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1590051600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/appsody/appsody-operator", + "container_images": [] + }, + { + "package_id": "da81317c-3db6-42a6-9a03-817906a6e4a4", + "name": "cryostat-operator", + "normalized_name": "cryostat-operator", + "logo_image_id": "72db0559-b276-4638-b265-05c51cbaebea", + "stars": 0, + "display_name": "Cryostat Operator", + "description": "JVM monitoring and profiling tool", + "version": "2.1.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 23, + "high": 0, + "medium": 33, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1655164800, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "github.com/cryostatio/cryostat-operator", + "container_images": [ + "quay.io/cryostat/cryostat-operator:2.1.1" + ] + }, + { + "package_id": "977ddfd9-16a0-42c2-8f76-024c1cf6ade5", + "name": "open-liberty", + "normalized_name": "open-liberty", + "logo_image_id": "207d05c6-2e47-411a-bf11-cc5f919a596b", + "stars": 0, + "display_name": "Open Liberty Operator", + "description": "Deploy and manage applications running on Open Liberty", + "version": "0.7.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 43, + "high": 5, + "medium": 62, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1595408400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/OpenLiberty/open-liberty-operator", + "container_images": [] + }, + { + "package_id": "a1169957-48ac-4713-9c80-f6f50e53cfd8", + "name": "runtime-component-operator", + "normalized_name": "runtime-component-operator", + "logo_image_id": "dcafd1cd-0f24-4c2b-8ff1-79e65bcd8070", + "stars": 0, + "display_name": "Runtime Component Operator", + "description": "Deploys any runtime component with dynamic and auto-tuning configuration", + "version": "0.7.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 43, + "high": 5, + "medium": 62, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1594890000, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/application-stacks/runtime-component-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 9, + "entity_id": 584 + }, + { + "Perl": [ + { + "dockerhub_exact_images": [ + { + "name": "perl", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 424, + "Docker_Url": "https://hub.docker.com/_/perl", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "perl", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 424, + "Docker_Url": "https://hub.docker.com/_/perl", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "perl", + "url": "https://quay.io/repository/biocontainers/perl", + "popularity": 848.0 + }, + { + "name": "perl", + "url": "https://quay.io/repository/swsmirror/perl", + "popularity": 1.0 + } + ], + "quay_top_images": [ + { + "name": "perl-530-centos7", + "url": "https://quay.io/repository/centos7/perl-530-centos7", + "popularity": 221365.0 + }, + { + "name": "docker-perl-app-base", + "url": "https://quay.io/repository/wakaba/docker-perl-app-base", + "popularity": 371.0 + }, + { + "name": "perl", + "url": "https://quay.io/repository/biocontainers/perl", + "popularity": 848.0 + }, + { + "name": "perl-test", + "url": "https://quay.io/repository/modellaachen/perl-test", + "popularity": 4.0 + }, + { + "name": "perl", + "url": "https://quay.io/repository/swsmirror/perl", + "popularity": 1.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 585 + }, + { + "PHP": [ + { + "dockerhub_exact_images": [ + { + "name": "php", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 6659, + "Docker_Url": "https://hub.docker.com/_/php", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/php", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 35, + "Docker_Url": "https://hub.docker.com/r/circleci/php", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "cimg/php", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/cimg/php", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "cimg/php", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/cimg/php", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/php", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 35, + "Docker_Url": "https://hub.docker.com/r/circleci/php", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "php", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 6659, + "Docker_Url": "https://hub.docker.com/_/php", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/php-fpm", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 150, + "Docker_Url": "https://hub.docker.com/r/bitnami/php-fpm", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "php-zendserver", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 201, + "Docker_Url": "https://hub.docker.com/_/php-zendserver", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "php", + "url": "https://quay.io/repository/kissj/php", + "popularity": 8612.0 + }, + { + "name": "php", + "url": "https://quay.io/repository/startx/php", + "popularity": 15915.0 + }, + { + "name": "php", + "url": "https://quay.io/repository/api-platform/php", + "popularity": 650.0 + }, + { + "name": "php", + "url": "https://quay.io/repository/swsmirror/php", + "popularity": 275.0 + }, + { + "name": "php", + "url": "https://quay.io/repository/official-images/php", + "popularity": 22.0 + } + ], + "quay_top_images": [ + { + "name": "php-73-centos7", + "url": "https://quay.io/repository/centos7/php-73-centos7", + "popularity": 212402.0 + }, + { + "name": "php-hello-dockerfile", + "url": "https://quay.io/repository/redhattraining/php-hello-dockerfile", + "popularity": 7765.0 + }, + { + "name": "php", + "url": "https://quay.io/repository/kissj/php", + "popularity": 8612.0 + }, + { + "name": "php", + "url": "https://quay.io/repository/startx/php", + "popularity": 15915.0 + }, + { + "name": "runner-php", + "url": "https://quay.io/repository/startx/runner-php", + "popularity": 8117.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 586 + }, + { + "Python": [ + { + "dockerhub_exact_images": [ + { + "name": "python", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 7678, + "Docker_Url": "https://hub.docker.com/_/python", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.20348.768", + "Type": "windows", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.17763.3046", + "Type": "windows", + "Subtype": "" + } + ] + }, + { + "name": "circleci/python", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 50, + "Docker_Url": "https://hub.docker.com/r/circleci/python", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/python", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 21, + "Docker_Url": "https://hub.docker.com/r/bitnami/python", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "cimg/python", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/cimg/python", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "python", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 7678, + "Docker_Url": "https://hub.docker.com/_/python", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.20348.768", + "Type": "windows", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": "10.0.17763.3046", + "Type": "windows", + "Subtype": "" + } + ] + }, + { + "name": "circleci/python", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 50, + "Docker_Url": "https://hub.docker.com/r/circleci/python", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "cimg/python", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/cimg/python", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/python", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 21, + "Docker_Url": "https://hub.docker.com/r/bitnami/python", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "python", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/python", + "popularity": 0.0 + }, + { + "name": "python", + "url": "https://quay.io/repository/biocontainers/python", + "popularity": 4627.0 + }, + { + "name": "python", + "url": "https://quay.io/repository/cdis/python", + "popularity": 8336.0 + }, + { + "name": "python", + "url": "https://quay.io/repository/agari/python", + "popularity": 2129.0 + }, + { + "name": "python", + "url": "https://quay.io/repository/sctregistry/python", + "popularity": 1554.0 + } + ], + "quay_top_images": [ + { + "name": "python-27-centos7", + "url": "https://quay.io/repository/centos7/python-27-centos7", + "popularity": 197342.0 + }, + { + "name": "python", + "url": "https://quay.io/repository/biocontainers/python", + "popularity": 4627.0 + }, + { + "name": "python-predictor-gpu", + "url": "https://quay.io/repository/cortexlabs/python-predictor-gpu", + "popularity": 4848.0 + }, + { + "name": "python-nginx", + "url": "https://quay.io/repository/cdis/python-nginx", + "popularity": 17682.0 + }, + { + "name": "python", + "url": "https://quay.io/repository/cdis/python", + "popularity": 8336.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 587 + }, + { + "Ruby": [ + { + "dockerhub_exact_images": [ + { + "name": "ruby", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 2149, + "Docker_Url": "https://hub.docker.com/_/ruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/ruby", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 78, + "Docker_Url": "https://hub.docker.com/r/circleci/ruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "cimg/ruby", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/cimg/ruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/ruby", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 21, + "Docker_Url": "https://hub.docker.com/r/bitnami/ruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "datadog/ruby", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/datadog/ruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "datadog/ruby", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/datadog/ruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + }, + { + "name": "cimg/ruby", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/cimg/ruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/ruby", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 21, + "Docker_Url": "https://hub.docker.com/r/bitnami/ruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/ruby", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 78, + "Docker_Url": "https://hub.docker.com/r/circleci/ruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ruby", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 2149, + "Docker_Url": "https://hub.docker.com/_/ruby", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "mips64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "ruby", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/ruby", + "popularity": 0.0 + }, + { + "name": "ruby", + "url": "https://quay.io/repository/aptible/ruby", + "popularity": 333.0 + }, + { + "name": "ruby", + "url": "https://quay.io/repository/swsmirror/ruby", + "popularity": 1.0 + }, + { + "name": "ruby", + "url": "https://quay.io/repository/goodguide/ruby", + "popularity": 0.0 + }, + { + "name": "ruby", + "url": "https://quay.io/repository/shakr/ruby", + "popularity": 0.0 + }, + { + "name": "ruby", + "url": "https://quay.io/repository/springest/ruby", + "popularity": 20.0 + }, + { + "name": "ruby", + "url": "https://quay.io/repository/forem/ruby", + "popularity": 46.0 + }, + { + "name": "ruby", + "url": "https://quay.io/repository/openshifttest/ruby", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "ruby-27-centos7", + "url": "https://quay.io/repository/centos7/ruby-27-centos7", + "popularity": 251822.0 + }, + { + "name": "ruby-26-centos7", + "url": "https://quay.io/repository/centos7/ruby-26-centos7", + "popularity": 165969.0 + }, + { + "name": "ruby-25-centos7", + "url": "https://quay.io/repository/centos7/ruby-25-centos7", + "popularity": 74049.0 + }, + { + "name": "ruby-27", + "url": "https://quay.io/repository/openshifttest/ruby-27", + "popularity": 14124.0 + }, + { + "name": "ruby-cron", + "url": "https://quay.io/repository/palettecloud/ruby-cron", + "popularity": 11018.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 588 + }, + { + "JavaScript": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "docker/dev-environments-javascript", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/docker/dev-environments-javascript", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "sandbox-javascript", + "url": "https://quay.io/repository/redsift/sandbox-javascript", + "popularity": 88221.0 + }, + { + "name": "invidious", + "url": "https://quay.io/repository/invidious/invidious", + "popularity": 38116.0 + }, + { + "name": "ploigos-tool-javascript", + "url": "https://quay.io/repository/ploigos/ploigos-tool-javascript", + "popularity": 56.0 + }, + { + "name": "jump-app-front-javascript", + "url": "https://quay.io/repository/acidonpe/jump-app-front-javascript", + "popularity": 76.0 + }, + { + "name": "loftsh-javascript-flyway", + "url": "https://quay.io/repository/buildo/loftsh-javascript-flyway", + "popularity": 4.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 589 + }, + { + "OpenBSD": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "golang-builder", + "url": "https://quay.io/repository/prometheus/golang-builder", + "popularity": 3618.0 + }, + { + "name": "docker_networking_utils", + "url": "https://quay.io/repository/wienczny/docker_networking_utils", + "popularity": 0.0 + }, + { + "name": "rpki-client", + "url": "https://quay.io/repository/rpki/rpki-client", + "popularity": 25.0 + }, + { + "name": "openbgpd", + "url": "https://quay.io/repository/openbgpd/openbgpd", + "popularity": 15.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 590 + }, + { + "z/VSE": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 591 + }, + { + "Active Server Pages (ASP)": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 592 + }, + { + "MS-DOS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ab-dos", + "url": "https://quay.io/repository/l_seng/ab-dos", + "popularity": 0.0 + }, + { + "name": "dos", + "url": "https://quay.io/repository/cacher/dos", + "popularity": 0.0 + }, + { + "name": "alpine-mariadb", + "url": "https://quay.io/repository/yobasystems/alpine-mariadb", + "popularity": 0.0 + }, + { + "name": "slowhttptest", + "url": "https://quay.io/repository/ellerbrock/slowhttptest", + "popularity": 0.0 + }, + { + "name": "snort", + "url": "https://quay.io/repository/ellerbrock/snort", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 593 + }, + { + "COBOL": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cobol-on-wheelchair", + "url": "https://quay.io/repository/shelman/cobol-on-wheelchair", + "popularity": 0.0 + }, + { + "name": "docker-ibmcloud-grant-cluster", + "url": "https://quay.io/repository/ibm-avocados/docker-ibmcloud-grant-cluster", + "popularity": 0.0 + }, + { + "name": "docker-kubectl", + "url": "https://quay.io/repository/awesome/docker-kubectl", + "popularity": 0.0 + }, + { + "name": "docker-kubectl", + "url": "https://quay.io/repository/ibm-avocados/docker-kubectl", + "popularity": 0.0 + }, + { + "name": "docker-ibmcloud-addon-istio", + "url": "https://quay.io/repository/ibm-avocados/docker-ibmcloud-addon-istio", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 594 + }, + { + "VME": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 595 + }, + { + "Extensible Markup Language (XML)": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "intel/language-translation", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-translation", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "intel/language-modeling", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + }, + { + "name": "gateway", + "url": "https://quay.io/repository/bluecat/gateway", + "popularity": 20475.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 596 + }, + { + "DOS/360": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ab-dos", + "url": "https://quay.io/repository/l_seng/ab-dos", + "popularity": 0.0 + }, + { + "name": "360-serverless", + "url": "https://quay.io/repository/ricohapi/360-serverless", + "popularity": 0.0 + }, + { + "name": "360-serverless-hosoric-2", + "url": "https://quay.io/repository/ricohapi/360-serverless-hosoric-2", + "popularity": 0.0 + }, + { + "name": "360-serverless-hosoric", + "url": "https://quay.io/repository/ricohapi/360-serverless-hosoric", + "popularity": 0.0 + }, + { + "name": "dos", + "url": "https://quay.io/repository/cacher/dos", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 597 + }, + { + "z/TPF": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 598 + }, + { + "Pascal": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "smeeclient", + "url": "https://quay.io/repository/schabrolles/smeeclient", + "popularity": 1190.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 599 + }, + { + "Oracle WebLogic Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 600 + }, + { + "Websphere ILOG JRules BRMS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/websphere-liberty", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 22, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "websphere-liberty", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 286, + "Docker_Url": "https://hub.docker.com/_/websphere-liberty", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/websphere-portal", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-portal", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "websphere-liberty", + "url": "https://quay.io/repository/swsmirror/websphere-liberty", + "popularity": 5.0 + }, + { + "name": "websphere-ordermgmt", + "url": "https://quay.io/repository/uupadhyay/websphere-ordermgmt", + "popularity": 0.0 + }, + { + "name": "websphere-liberty", + "url": "https://quay.io/repository/dockerlibrary/websphere-liberty", + "popularity": 0.0 + }, + { + "name": "websphere-liberty", + "url": "https://quay.io/repository/yutaka.moriyama/websphere-liberty", + "popularity": 0.0 + }, + { + "name": "websphere-traditional", + "url": "https://quay.io/repository/kmoini/websphere-traditional", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 601 + }, + { + "NetBSD": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "golang-builder", + "url": "https://quay.io/repository/prometheus/golang-builder", + "popularity": 3618.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 602 + }, + { + "SharePoint": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "service-sharepoint", + "url": "https://quay.io/repository/manywho/service-sharepoint", + "popularity": 0.0 + }, + { + "name": "service-sharepoint-addin", + "url": "https://quay.io/repository/manywho/service-sharepoint-addin", + "popularity": 0.0 + }, + { + "name": "sentieon", + "url": "https://quay.io/repository/biocontainers/sentieon", + "popularity": 0.0 + }, + { + "name": "sharepointconsulting", + "url": "https://quay.io/repository/sharepointconsulting/sharepointconsulting", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 603 + }, + { + "IBM Tivoli Storage Manager": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cert-manager-controller", + "url": "https://quay.io/repository/jetstack/cert-manager-controller", + "popularity": 92535501.0 + }, + { + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 88998175.0 + }, + { + "name": "cert-manager-cainjector", + "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", + "popularity": 89089055.0 + }, + { + "name": "cert-manager-acmesolver", + "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", + "popularity": 858875.0 + }, + { + "name": "cert-manager-ctl", + "url": "https://quay.io/repository/jetstack/cert-manager-ctl", + "popularity": 637570.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 604 + }, + { + "IBM Spectrum Scale": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [ + { + "package_id": "25527a7e-74b4-4129-975d-8b1e42e44327", + "name": "ibm-spectrum-scale-csi-operator", + "normalized_name": "ibm-spectrum-scale-csi-operator", + "logo_image_id": "a4a6430a-5c0a-47da-9333-b88782d59d39", + "stars": 0, + "display_name": "IBM Spectrum Scale CSI Plugin Operator", + "description": "An operator for deploying and managing the IBM Spectrum Scale CSI Driver.", + "version": "2.6.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656309636, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/ibm-spectrum-scale-csi/", + "container_images": [ + "quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 605 + }, + { + "IBM Tivoli Asset Management": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 606 + }, + { + "Oracle Hyperion": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/core-oracle-7", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-7", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/core-oracle-8", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-8", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-7-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-8-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "oracle-12c", + "url": "https://quay.io/repository/maksymbilenko/oracle-12c", + "popularity": 15052.0 + }, + { + "name": "debezium-container-for-oracle", + "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", + "popularity": 6801.0 + }, + { + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", + "popularity": 20112.0 + }, + { + "name": "edb-postgres-advanced", + "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", + "popularity": 13004.0 + }, + { + "name": "mysqld-exporter", + "url": "https://quay.io/repository/prometheus/mysqld-exporter", + "popularity": 19079.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 607 + }, + { + "z/VM": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 6, + "entity_id": 608 + }, + { + "IIS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "iis-chess", + "url": "https://quay.io/repository/gmarkley_vi/iis-chess", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 609 + }, + { + "Oracle Application Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "application-service", + "url": "https://quay.io/repository/redhat-appstudio/application-service", + "popularity": 72875.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 610 + }, + { + "instana": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "instana", + "url": "https://quay.io/repository/yaoyao/instana", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "instana-agent-operator", + "url": "https://quay.io/repository/operator-pipeline-prod/instana-agent-operator", + "popularity": 1008.0 + }, + { + "name": "instana-agent-operator-rhmp", + "url": "https://quay.io/repository/operator-pipeline-prod/instana-agent-operator-rhmp", + "popularity": 840.0 + }, + { + "name": "z-instana", + "url": "https://quay.io/repository/trumanbrown/z-instana", + "popularity": 1092.0 + }, + { + "name": "instana-agent-operator", + "url": "https://quay.io/repository/operatorhubio/instana-agent-operator", + "popularity": 664.0 + }, + { + "name": "z-instana-leader-elector", + "url": "https://quay.io/repository/trumanbrown/z-instana-leader-elector", + "popularity": 6.0 + } + ] + }, + { + "operators": [ + { + "package_id": "cd48c616-e33b-43c7-8b39-a740b8838e9c", + "name": "instana-agent-operator", + "normalized_name": "instana-agent-operator", + "logo_image_id": "c581f31d-c216-4950-9dfe-3b52234a65fc", + "stars": 0, + "display_name": "Instana Agent Operator", + "description": "Fully automated Application Performance Monitoring (APM) for microservices.", + "version": "2.0.5", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 72, + "high": 16, + "medium": 97, + "unknown": 8, + "critical": 1 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1649226632, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/instana/instana-agent-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 10, + "entity_id": 611 + }, + { + "credstash": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "credstash", + "url": "https://quay.io/repository/safesoftware/credstash", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "credstash-operator", + "url": "https://quay.io/repository/ouzi/credstash-operator", + "popularity": 105.0 + }, + { + "name": "credstash-operator", + "url": "https://quay.io/repository/operatorhubio/credstash-operator", + "popularity": 44.0 + }, + { + "name": "credstash", + "url": "https://quay.io/repository/safesoftware/credstash", + "popularity": 0.0 + }, + { + "name": "credstash-operator", + "url": "https://quay.io/application/givanov/credstash-operator", + "popularity": 0.0 + } + ] + }, + { + "operators": [ + { + "package_id": "c096fc13-66dc-4854-8da0-bbfdb5662bf9", + "name": "credstash-operator", + "normalized_name": "credstash-operator", + "logo_image_id": "b62b15e7-17bb-453c-b8ed-d4119778d911", + "stars": 0, + "display_name": "credstash-operator", + "description": "An operator that creates and manages Kubernetes secrets from Credstash secrets", + "version": "1.13.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 64, + "high": 12, + "medium": 165, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1595206861, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/ouzi-dev/credstash-operator", + "container_images": [ + "quay.io/ouzi/credstash-operator:v1.13.0" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 612 + }, + { + "Snyk": [ + { + "dockerhub_exact_images": [ + { + "name": "snyk/snyk", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/snyk/snyk", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "snyk/snyk", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/snyk/snyk", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "snyk/snyk-kubernetes-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/snyk/snyk-kubernetes-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "snyk/snyk-cli", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 34, + "Docker_Url": "https://hub.docker.com/r/snyk/snyk-cli", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "snyk/snyk-pipe", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/snyk/snyk-pipe", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "snyk/snyk-operator-bundle", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/snyk/snyk-operator-bundle", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "snyk", + "url": "https://quay.io/repository/exd_infra_plts_cip/snyk", + "popularity": 40.0 + } + ], + "quay_top_images": [ + { + "name": "snyk-cli", + "url": "https://quay.io/repository/codefresh/snyk-cli", + "popularity": 203.0 + }, + { + "name": "snyk-operator", + "url": "https://quay.io/repository/operatorhubio/snyk-operator", + "popularity": 1188.0 + }, + { + "name": "snyk-operator", + "url": "https://quay.io/repository/openshift-community-operators/snyk-operator", + "popularity": 833.0 + }, + { + "name": "snyk", + "url": "https://quay.io/repository/exd_infra_plts_cip/snyk", + "popularity": 40.0 + }, + { + "name": "snyk_exporter", + "url": "https://quay.io/repository/lunarway/snyk_exporter", + "popularity": 2026.0 + } + ] + }, + { + "operators": [ + { + "package_id": "035e3e44-d1dc-43a9-8e27-5a7425038fc4", + "name": "snyk-operator", + "normalized_name": "snyk-operator", + "logo_image_id": "7841799d-378f-46fe-86ff-9088b3cdb22f", + "stars": 0, + "display_name": "Snyk Operator", + "description": "A Kubernetes Operator for creating and managing Snyk controller instances.", + "version": "1.92.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 8, + "medium": 36, + "unknown": 4, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1654797040, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/snyk/kubernetes-monitor", + "container_images": [ + "docker.io/snyk/kubernetes-operator:1.92.0" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 613 + }, + { + "Akka": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "akka", + "url": "https://quay.io/repository/j0zi/akka", + "popularity": 0.0 + }, + { + "name": "akka", + "url": "https://quay.io/repository/hasha/akka", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "akka-cluster-operator", + "url": "https://quay.io/repository/operatorhubio/akka-cluster-operator", + "popularity": 178.0 + }, + { + "name": "akka-cluster-operator", + "url": "https://quay.io/repository/openshift-community-operators/akka-cluster-operator", + "popularity": 99.0 + }, + { + "name": "akka-operator", + "url": "https://quay.io/repository/openshifttest/akka-operator", + "popularity": 34.0 + }, + { + "name": "akka-simple-cluster-k8s", + "url": "https://quay.io/repository/whogan00/akka-simple-cluster-k8s", + "popularity": 0.0 + }, + { + "name": "akka-server", + "url": "https://quay.io/repository/kklin/akka-server", + "popularity": 0.0 + } + ] + }, + { + "operators": [ + { + "package_id": "21390c0c-6e75-410e-8ac0-e392d5d157c4", + "name": "akka-cluster-operator", + "normalized_name": "akka-cluster-operator", + "logo_image_id": "1ffb1d0a-451b-4b58-b45c-f1678820b6fe", + "stars": 0, + "display_name": "Akka Cluster Operator", + "description": "Run Akka Cluster applications on Kubernetes.", + "version": "1.0.0", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1561735380, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/lightbend/akka-cluster-operator", + "container_images": [] + }, + { + "package_id": "9a3a17ec-190f-4a44-b389-c049e0d5345e", + "name": "lightbend-console-operator", + "normalized_name": "lightbend-console-operator", + "logo_image_id": "809339cf-e417-4da3-9d6f-00d185ee802f", + "stars": 0, + "display_name": "Lightbend Console Operator", + "description": "Lightbend Console provides visualizations for Akka, Play, and Lagom applications. See https://developer.lightbend.com/docs/console/current/ for details.", + "version": "0.0.1", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1568764800, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/lightbend/console-charts/tree/master/operator", + "container_images": [] + } + ] + } + ], + "entity_type": 2, + "entity_id": 614 + }, + { + "Varnish": [ + { + "dockerhub_exact_images": [ + { + "name": "varnish", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 125, + "Docker_Url": "https://hub.docker.com/_/varnish", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/varnish", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/varnish", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "ibmcom/varnish", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/varnish", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "varnish", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 125, + "Docker_Url": "https://hub.docker.com/_/varnish", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/varnish-cache", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/varnish-cache", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "varnish", + "url": "https://quay.io/repository/api-platform/varnish", + "popularity": 197.0 + }, + { + "name": "varnish", + "url": "https://quay.io/repository/airshipcms/varnish", + "popularity": 0.0 + }, + { + "name": "varnish", + "url": "https://quay.io/repository/akretion/varnish", + "popularity": 8.0 + }, + { + "name": "varnish", + "url": "https://quay.io/repository/vektorcloud/varnish", + "popularity": 0.0 + }, + { + "name": "varnish", + "url": "https://quay.io/repository/psav/varnish", + "popularity": 0.0 + }, + { + "name": "varnish", + "url": "https://quay.io/repository/45air/varnish", + "popularity": 0.0 + }, + { + "name": "varnish", + "url": "https://quay.io/repository/strathberry/varnish", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "varnish", + "url": "https://quay.io/repository/api-platform/varnish", + "popularity": 197.0 + }, + { + "name": "kube-httpcache", + "url": "https://quay.io/repository/mittwald/kube-httpcache", + "popularity": 4713.0 + }, + { + "name": "prometheus-varnish-exporter", + "url": "https://quay.io/repository/vshn/prometheus-varnish-exporter", + "popularity": 72.0 + }, + { + "name": "varnish-operator", + "url": "https://quay.io/repository/operatorhubio/varnish-operator", + "popularity": 44.0 + }, + { + "name": "varnish-operator", + "url": "https://quay.io/repository/openshift-community-operators/varnish-operator", + "popularity": 39.0 + } + ] + }, + { + "operators": [ + { + "package_id": "04e82101-c3d9-40ce-aa60-1091a070c852", + "name": "varnish-operator", + "normalized_name": "varnish-operator", + "logo_image_id": "b6312740-e66c-4339-9d0c-3931772fafb9", + "stars": 1, + "display_name": "Varnish Operator", + "description": "Run and manage Varnish clusters on Kubernetes", + "version": "0.27.2", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 84, + "high": 39, + "medium": 14, + "unknown": 2, + "critical": 11 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525859, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/varnish-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 8, + "entity_id": 615 + }, + { + "Datadog": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "datadog/datadog-agent-runner-circle", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/datadog/datadog-agent-runner-circle", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "datadog", + "url": "https://quay.io/repository/blondie/datadog", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "logstash-datadog", + "url": "https://quay.io/repository/yugabyte/logstash-datadog", + "popularity": 604.0 + }, + { + "name": "datadog-operator", + "url": "https://quay.io/repository/operatorhubio/datadog-operator", + "popularity": 623.0 + }, + { + "name": "datadog-operator", + "url": "https://quay.io/repository/openshift-community-operators/datadog-operator", + "popularity": 340.0 + }, + { + "name": "statsd-exporter", + "url": "https://quay.io/repository/prometheus/statsd-exporter", + "popularity": 8725.0 + }, + { + "name": "datalink-datadogd", + "url": "https://quay.io/repository/geonet/datalink-datadogd", + "popularity": 3035.0 + } + ] + }, + { + "operators": [ + { + "package_id": "42892e2e-0cb2-4060-abeb-c0079b0c5f17", + "name": "datadog-operator", + "normalized_name": "datadog-operator", + "logo_image_id": "58bfdfa6-39da-4bf9-a3bd-b5ca73e8cc42", + "stars": 0, + "display_name": "Datadog Operator", + "description": "Datadog provides a modern monitoring and analytics platform. Gather metrics, logs and traces for full observability of your Kubernetes cluster with Datadog Operator.", + "version": "0.8.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 23, + "high": 1, + "medium": 32, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1653481834, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/DataDog/datadog-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 10, + "entity_id": 616 + }, + { + "API": [ + { + "dockerhub_exact_images": [ + { + "name": "kasmweb/api", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/api", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "kasmweb/api", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/api", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "wallarm/api-firewall", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 23, + "Docker_Url": "https://hub.docker.com/r/wallarm/api-firewall", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v6", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "api-firewall", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 17, + "Docker_Url": "https://hub.docker.com/_/api-firewall", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "api", + "url": "https://quay.io/repository/infrabox/api", + "popularity": 26.0 + } + ], + "quay_top_images": [ + { + "name": "ibm-platform-api-operator", + "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", + "popularity": 47566.0 + }, + { + "name": "virt-api", + "url": "https://quay.io/repository/kubevirt/virt-api", + "popularity": 23947.0 + }, + { + "name": "insights-api", + "url": "https://quay.io/repository/fairwinds/insights-api", + "popularity": 31210.0 + }, + { + "name": "k8s-sidecar", + "url": "https://quay.io/repository/kiwigrid/k8s-sidecar", + "popularity": 1320477.0 + }, + { + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 353617.0 + } + ] + }, + { + "operators": [ + { + "package_id": "7f784d0c-e310-40d6-9dcd-e80b4fb2fe73", + "name": "api-operator", + "normalized_name": "api-operator", + "logo_image_id": "1d97de53-56e8-49e0-a864-5c1eda64b8c7", + "stars": 1, + "display_name": "API Operator for Kubernetes", + "description": "API Operator provides a fully automated experience for cloud-native API management of microservices.", + "version": "2.0.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 225, + "high": 21, + "medium": 380, + "unknown": 1, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1619604000, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/wso2/k8s-api-operator", + "container_images": [] + }, + { + "package_id": "71383196-e167-4490-ad47-4a20dc496331", + "name": "wso2am-operator", + "normalized_name": "wso2am-operator", + "logo_image_id": "1d97de53-56e8-49e0-a864-5c1eda64b8c7", + "stars": 1, + "display_name": "WSO2 API Manager Operator for Kubernetes", + "description": "Deploying WSO2 API Manager Patterns and custom patterns in Kubernetes.", + "version": "1.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 3, + "medium": 2, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1599447600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/wso2/k8s-wso2am-operator", + "container_images": [] + }, + { + "package_id": "3da5b27a-77e5-4e90-89d6-a094804661ed", + "name": "ack-apigatewayv2-controller", + "normalized_name": "ack-apigatewayv2-controller", + "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", + "stars": 0, + "display_name": "AWS Controllers for Kubernetes - Amazon API Gateway v2", + "description": "AWS API Gateway v2 controller is a service controller for managing API Gateway v2 resources in Kubernetes", + "version": "0.1.2", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1655489670, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aws-controllers-k8s", + "container_images": [] + }, + { + "package_id": "991459e3-4bd0-4446-b6ee-e7ceb5ec0a3e", + "name": "apicast-community-operator", + "normalized_name": "apicast-community-operator", + "logo_image_id": "aabb3684-3024-4890-a7e1-c09ca17bb4d4", + "stars": 0, + "display_name": "APIcast", + "description": "APIcast is an API gateway built on top of NGINX. It is part of the 3scale API Management Platform", + "version": "0.4.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 55, + "high": 5, + "medium": 112, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1572216000, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/3scale/apicast-operator", + "container_images": [ + "quay.io/3scale/apicast-operator:v0.4.0" + ] + }, + { + "package_id": "df463a16-bce4-4dea-95cd-aee9ef232fa8", + "name": "apimatic-kubernetes-operator", + "normalized_name": "apimatic-kubernetes-operator", + "logo_image_id": "ab8a615e-a526-4662-8f3e-1f042d4aad2a", + "stars": 0, + "display_name": "APIMatic Operator", + "description": "Generate client SDKs and interactive Documentation for your APIs in minutes", + "version": "0.0.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1629806400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/apimatic/apimatic-kubernetes-operator", + "container_images": [ + "docker.io/apimaticio/apimatic-kubernetes-operator:v0.0.1" + ] + }, + { + "package_id": "aec6dcff-edf7-4471-8e62-ddf1a3a57895", + "name": "microcks", + "normalized_name": "microcks", + "logo_image_id": "0aa19266-6642-441b-9fa9-b5ec7941826d", + "stars": 3, + "display_name": "Microcks Operator", + "description": "Open Source mocking and testing platform for API and microservices", + "version": "1.5.2", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 92, + "high": 19, + "medium": 283, + "unknown": 1, + "critical": 2 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1652728291, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/microcks/microcks-ansible-operator", + "container_images": [ + "quay.io/microcks/microcks-ansible-operator:1.5.2" + ] + }, + { + "package_id": "e6087667-2b09-499f-9528-db9e99709020", + "name": "apicurio-registry", + "normalized_name": "apicurio-registry", + "logo_image_id": "a6e7f90d-62dc-4b78-a823-e0a93912ec93", + "stars": 1, + "display_name": "Apicurio Registry Operator", + "description": "Deploy and manage Apicurio Registry on Kubernetes.", + "version": "1.0.0-v2.0.0.final", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 2, + "medium": 0, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525858, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/Apicurio/apicurio-registry-operator", + "container_images": [ + "quay.io/apicurio/apicurio-registry-operator:1.0.0" + ] + }, + { + "package_id": "e44dc7f9-5d6f-4185-bb53-291a8ee1408d", + "name": "iot-simulator", + "normalized_name": "iot-simulator", + "logo_image_id": "9821068b-f345-4230-a61a-4b14ababd524", + "stars": 1, + "display_name": "IoT simulator", + "description": "An IoT device simulator, simulating producers and consumers using the Eclipse Hono API", + "version": "0.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 415, + "high": 18, + "medium": 438, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1552953600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/ctron/iot-simulator-operator", + "container_images": [] + }, + { + "package_id": "fbd84364-fffe-4db3-b128-46376f31a9d6", + "name": "kong", + "normalized_name": "kong", + "logo_image_id": "42089cb4-2db4-4466-b585-5a2919572083", + "stars": 1, + "display_name": "Kong Operator", + "description": "The world\u2019s most popular open source API gateway. Built for multi-cloud and hybrid, optimized for microservices and distributed architectures.", + "version": "0.9.0", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1596643620, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/kong/kong-operator", + "container_images": [] + }, + { + "package_id": "ad36562a-aad9-4563-a303-9159348c9660", + "name": "minio-operator", + "normalized_name": "minio-operator", + "logo_image_id": "ee3aebb3-ab97-434a-a889-6b1ef22ee0bc", + "stars": 1, + "display_name": "Minio Operator", + "description": "MinIO is a Kubernetes-native high performance object store with an\nS3-compatible API. The MinIO Operator supports deploying MinIO Tenants\nonto any Kubernetes.", + "version": "4.4.25", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 0, + "medium": 33, + "unknown": 2, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1655928035, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/minio/operator", + "container_images": [ + "quay.io/minio/operator" + ] + }, + { + "package_id": "90cdc9d8-91df-4b68-b4a4-def5b6109f9d", + "name": "cos-bucket-operator", + "normalized_name": "cos-bucket-operator", + "logo_image_id": "768edd17-ad00-48dd-a716-e3fc8aa311c9", + "stars": 0, + "display_name": "IBM COS Bucket Operator", + "description": "The IBM Bucket Operator provides a Kubernetes CRD-Based API to manage the lifecycle of IBM Cloud Object Storage Bucket.", + "version": "0.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 72, + "high": 2, + "medium": 33, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1566563916, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/cos-bucket-operator", + "container_images": [] + }, + { + "package_id": "b88865fe-9fb8-4530-ad99-ccc171812514", + "name": "datatrucker-operator", + "normalized_name": "datatrucker-operator", + "logo_image_id": "3d998139-c212-4442-90bd-287b0dec1a98", + "stars": 0, + "display_name": "DataTrucker.IO", + "version": "2.0.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 85, + "high": 22, + "medium": 236, + "unknown": 1, + "critical": 2 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1631062861, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "hhttps://gitlab.com/datatruckerio/datatrucker-server.git", + "container_images": [ + "docker.io/datatruckerio/datatrucker-operator:2.0.0" + ] + }, + { + "package_id": "5bc93626-0773-4fb6-9ab2-6ac7b1a49c81", + "name": "ibmcloud-operator", + "normalized_name": "ibmcloud-operator", + "logo_image_id": "2f1b8acc-3b7d-46d8-847e-5a2be071f37f", + "stars": 0, + "display_name": "IBM Cloud Operator", + "description": "The IBM Cloud Operator provides a Kubernetes CRD-Based API to manage the lifecycle of IBM public cloud services.", + "version": "1.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 1, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1647490660, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/cloud-operators", + "container_images": [] + }, + { + "package_id": "1d1a44d7-6c37-4162-8bd9-1df69b441d93", + "name": "nfd-operator", + "normalized_name": "nfd-operator", + "logo_image_id": "1250952c-ca9f-4b57-bcd3-58be984131b7", + "stars": 0, + "display_name": "nfd-operator", + "description": "The Node Feature Discovery Operator manages the detection of hardware features and configuration in a Kubernetes cluster by labeling the nodes with hardware-specific information. The Node Feature Discovery (NFD) will label the host with node-specific attributes, like PCI cards, kernel, or OS version, and many more.\n\nNFD consists of the following software components:\n\nThe NFD Operator is based on the Operator Framework an open source toolkit to manage Kubernetes native applications, called Operators, in an effective, automated, and scalable way.\n\n##NFD-Master\nNFD-Master is the daemon responsible for communication towards the Kubernetes API. That is, it receives labeling requests from the worker and modifies node objects accordingly.\n\n##NFD-Worker\nNFD-Worker is a daemon responsible for feature detection. It then communicates the information to nfd-master which does the actual node labeling. One instance of nfd-worker is supposed to be running on each node of the cluster.\n\n##NFD-Topology-Updater\nNFD-Topology-Updater is a daemon responsible for examining allocated resources on a worker node to account for resources available to be allocated to new pod on a per-zone basis (where a zone can be a NUMA node). It then communicates the information to nfd-master which does the NodeResourceTopology CR creation corresponding to all the nodes in the cluster. One instance of nfd-topology-updater is supposed to be running on each node of the cluster.", + "version": "0.5.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 11, + "high": 1, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1642616598, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/kubernetes-sigs/node-feature-discovery-operator", + "container_images": [] + }, + { + "package_id": "4b71534c-ca38-48b4-a05d-f20bdb219ea8", + "name": "sap-btp-operator", + "normalized_name": "sap-btp-operator", + "logo_image_id": "298679f9-8680-4e5d-b06f-d98d792971be", + "stars": 0, + "display_name": "SAP BTP Service Operator", + "description": "SAP BTP service operator allows you to provision and manage SAP BTP services from your cluster with CRD-based API.", + "version": "0.1.6", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 2, + "medium": 0, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1615204800, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/SAP/sap-btp-service-operator", + "container_images": [] + }, + { + "package_id": "730af2fd-ace8-4ab8-b17f-6535c0283a4b", + "name": "ibmcloud-iam-operator", + "normalized_name": "ibmcloud-iam-operator", + "logo_image_id": "2f1b8acc-3b7d-46d8-847e-5a2be071f37f", + "stars": 0, + "display_name": "IBM Cloud IAM Operator", + "description": "The IBM Cloud IAM Operator provides a set of three Kubernetes CRD-Based APIs to manage the lifecycle of Access Policies, Access Groups, and Custom Roles on IAM for IBM public cloud.", + "version": "0.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 64, + "high": 15, + "medium": 168, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1597239415, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/ibmcloud-iam-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 1, + "entity_id": 617 + }, + { + "Hazelcast": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "hazelcast", + "url": "https://quay.io/repository/hazelcast_cloud/hazelcast", + "popularity": 1124.0 + }, + { + "name": "hazelcast", + "url": "https://quay.io/repository/noorul/hazelcast", + "popularity": 0.0 + }, + { + "name": "hazelcast", + "url": "https://quay.io/repository/cdufresne/hazelcast", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "hazelcast-platform-operator", + "url": "https://quay.io/repository/operator-pipeline-prod/hazelcast-platform-operator", + "popularity": 672.0 + }, + { + "name": "hazelcast", + "url": "https://quay.io/repository/hazelcast_cloud/hazelcast", + "popularity": 1124.0 + }, + { + "name": "ipm-hazelcast", + "url": "https://quay.io/repository/mitaei/ipm-hazelcast", + "popularity": 397.0 + }, + { + "name": "public.hazelcast.hazelcast", + "url": "https://quay.io/repository/siav/public.hazelcast.hazelcast", + "popularity": 1008.0 + }, + { + "name": "hazelcast-platform-operator", + "url": "https://quay.io/repository/operatorhubio/hazelcast-platform-operator", + "popularity": 178.0 + } + ] + }, + { + "operators": [ + { + "package_id": "e734a44b-aa7d-497c-a93c-1262e39ff0e3", + "name": "hazelcast-platform-operator", + "normalized_name": "hazelcast-platform-operator", + "logo_image_id": "2b453ddd-3196-412b-a248-5c40110f5c4e", + "stars": 0, + "display_name": "Hazelcast Platform Operator", + "description": "Install Hazelcast clusters in Kubernetes environments.", + "version": "5.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 23, + "high": 0, + "medium": 32, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1655899199, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [ + "docker.io/hazelcast/hazelcast-platform-operator:5.3" + ] + } + ] + } + ], + "entity_type": 10, + "entity_id": 618 + }, + { + "Infinispan": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "infinispan", + "url": "https://quay.io/repository/operatorhubio/infinispan", + "popularity": 2189.0 + }, + { + "name": "infinispan", + "url": "https://quay.io/repository/openshift-community-operators/infinispan", + "popularity": 785.0 + }, + { + "name": "infinispan", + "url": "https://quay.io/repository/ramgopireddy/infinispan", + "popularity": 171.0 + }, + { + "name": "infinispan", + "url": "https://quay.io/repository/operator_testing/infinispan", + "popularity": 0.0 + }, + { + "name": "infinispan", + "url": "https://quay.io/repository/remerson/infinispan", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "kogito-data-index-infinispan", + "url": "https://quay.io/repository/kiegroup/kogito-data-index-infinispan", + "popularity": 2032.0 + }, + { + "name": "infinispan", + "url": "https://quay.io/repository/operatorhubio/infinispan", + "popularity": 2189.0 + }, + { + "name": "infinispan", + "url": "https://quay.io/repository/openshift-community-operators/infinispan", + "popularity": 785.0 + }, + { + "name": "server", + "url": "https://quay.io/repository/infinispan/server", + "popularity": 10005.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/infinispan/operator", + "popularity": 3234.0 + } + ] + }, + { + "operators": [ + { + "package_id": "591a0205-b4ee-4f15-8d15-8b6a58c34a7d", + "name": "infinispan", + "normalized_name": "infinispan", + "logo_image_id": "a279d618-7ee6-4bde-8cb7-d92c774f3a51", + "stars": 0, + "display_name": "Infinispan Operator", + "description": "Create and manage Infinispan clusters.", + "version": "2.2.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 46, + "high": 6, + "medium": 89, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1647352835, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/infinispan/infinispan-operator", + "container_images": [ + "quay.io/infinispan/operator:2.2.4.Final" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 619 + }, + { + "Nuxeo": [ + { + "dockerhub_exact_images": [ + { + "name": "nuxeo", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 84, + "Docker_Url": "https://hub.docker.com/_/nuxeo", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "nuxeo", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 84, + "Docker_Url": "https://hub.docker.com/_/nuxeo", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "nuxeo", + "url": "https://quay.io/repository/swsmirror/nuxeo", + "popularity": 1.0 + }, + { + "name": "nuxeo", + "url": "https://quay.io/repository/dockerlibrary/nuxeo", + "popularity": 0.0 + }, + { + "name": "nuxeo", + "url": "https://quay.io/repository/borja/nuxeo", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "nuxeo-operator", + "url": "https://quay.io/repository/operatorhubio/nuxeo-operator", + "popularity": 44.0 + }, + { + "name": "nuxeo", + "url": "https://quay.io/repository/swsmirror/nuxeo", + "popularity": 1.0 + }, + { + "name": "nuxeo-base", + "url": "https://quay.io/repository/nuxeoio/nuxeo-base", + "popularity": 0.0 + }, + { + "name": "nuxeo-che", + "url": "https://quay.io/repository/akervern/nuxeo-che", + "popularity": 0.0 + }, + { + "name": "nuxeo", + "url": "https://quay.io/repository/dockerlibrary/nuxeo", + "popularity": 0.0 + } + ] + }, + { + "operators": [ + { + "package_id": "8ead8d37-cba9-449e-a7df-ee5c0745564f", + "name": "nuxeo-operator", + "normalized_name": "nuxeo-operator", + "logo_image_id": "6540df42-6fe6-428e-b81b-8777c396d3b0", + "stars": 0, + "display_name": "Nuxeo Operator", + "description": "The Nuxeo Operator manages a Nuxeo cluster, integrating it\nwith backing services like Kafka, Elastic Search, MongoDB, and PostgreSQL\n", + "version": "0.7.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 2, + "medium": 1, + "unknown": 3, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1601078400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aceeric/nuxeo-operator", + "container_images": [ + "docker.io/appzygy/nuxeo-operator:0.7.1" + ] + } + ] + } + ], + "entity_type": 10, + "entity_id": 620 + }, + { + "ArangoDB": [ + { + "dockerhub_exact_images": [ + { + "name": "arangodb", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 256, + "Docker_Url": "https://hub.docker.com/_/arangodb", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "arangodb", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 256, + "Docker_Url": "https://hub.docker.com/_/arangodb", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "arangodb", + "url": "https://quay.io/repository/swsmirror/arangodb", + "popularity": 1.0 + }, + { + "name": "arangodb", + "url": "https://quay.io/repository/official-images/arangodb", + "popularity": 0.0 + }, + { + "name": "arangodb", + "url": "https://quay.io/repository/onet/arangodb", + "popularity": 0.0 + }, + { + "name": "arangodb", + "url": "https://quay.io/repository/rh_integration/arangodb", + "popularity": 3.0 + }, + { + "name": "arangodb", + "url": "https://quay.io/repository/vpavlin/arangodb", + "popularity": 0.0 + }, + { + "name": "arangodb", + "url": "https://quay.io/repository/dockerlibrary/arangodb", + "popularity": 0.0 + }, + { + "name": "arangodb", + "url": "https://quay.io/repository/insightpool/arangodb", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "arangodb", + "url": "https://quay.io/repository/swsmirror/arangodb", + "popularity": 1.0 + }, + { + "name": "arangodb", + "url": "https://quay.io/repository/official-images/arangodb", + "popularity": 0.0 + }, + { + "name": "ansible-arangodb", + "url": "https://quay.io/repository/andrewrothstein/ansible-arangodb", + "popularity": 0.0 + }, + { + "name": "kube-arangodb", + "url": "https://quay.io/repository/operatorhubio/kube-arangodb", + "popularity": 44.0 + }, + { + "name": "arangodb", + "url": "https://quay.io/repository/rh_integration/arangodb", + "popularity": 3.0 + } + ] + }, + { + "operators": [ + { + "package_id": "fccfe78b-9c2b-46cc-9e20-ee1424fccacf", + "name": "kube-arangodb", + "normalized_name": "kube-arangodb", + "logo_image_id": "94e231f6-8117-471b-9279-00f9ced197c8", + "stars": 2, + "display_name": "ArangoDB", + "description": "ArangoDB Kubernetes Operator", + "version": "1.0.2", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1575153600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/arangodb/kube-arangodb", + "container_images": [] + } + ] + } + ], + "entity_type": 2, + "entity_id": 621 + }, + { + "Eclipse Che": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/eclipse-che-server-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/eclipse-che-server-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/eclipse-che-jwtproxy-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/eclipse-che-jwtproxy-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/eclipse-che-plugin-registry-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/eclipse-che-plugin-registry-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/eclipse-che-machine-exec-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/eclipse-che-machine-exec-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/eclipse-che-unified-plugin-broker-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/eclipse-che-unified-plugin-broker-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "che-plugin-artifacts-broker", + "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", + "popularity": 20225.0 + }, + { + "name": "che-operator", + "url": "https://quay.io/repository/eclipse/che-operator", + "popularity": 36094.0 + }, + { + "name": "che-theia", + "url": "https://quay.io/repository/eclipse/che-theia", + "popularity": 18151.0 + }, + { + "name": "che-java11-maven", + "url": "https://quay.io/repository/eclipse/che-java11-maven", + "popularity": 19772.0 + }, + { + "name": "che-plugin-artifacts-broker", + "url": "https://quay.io/repository/devplayground/che-plugin-artifacts-broker", + "popularity": 19235.0 + } + ] + }, + { + "operators": [ + { + "package_id": "57488c09-4b44-4ba8-aeed-2c141cf0b30e", + "name": "eclipse-che", + "normalized_name": "eclipse-che", + "logo_image_id": "f2ea20a6-ebd1-42f6-b7e7-b9dd0f36bd22", + "stars": 3, + "display_name": "Eclipse Che", + "description": "A Kube-native development solution that delivers portable and collaborative developer workspaces.", + "version": "7.39.2", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1637755976, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/eclipse-che/che-operator", + "container_images": [ + "quay.io/eclipse/che-operator", + "quay.io/che-incubator/configbump", + "quay.io/che-incubator/header-rewrite-proxy", + "quay.io/devfile/devworkspace-controller", + "quay.io/eclipse/che--centos--postgresql-13-centos7", + "quay.io/eclipse/che--centos--postgresql-96-centos7", + "quay.io/eclipse/che--traefik", + "quay.io/eclipse/che-backup-server-rest", + "quay.io/eclipse/che-dashboard", + "quay.io/eclipse/che-devfile-registry", + "quay.io/eclipse/che-jwtproxy", + "quay.io/eclipse/che-keycloak", + "quay.io/eclipse/che-plugin-artifacts-broker", + "quay.io/eclipse/che-plugin-metadata-broker", + "quay.io/eclipse/che-plugin-registry", + "quay.io/eclipse/che-server", + "quay.io/eclipse/che-tls-secret-creator", + "quay.io/openshift/origin-kube-rbac-proxy", + "quay.io/openshift/origin-oauth-proxy", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/windupeng/mta-vscode-extension", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-plugin-sidecar", + "quay.io/eclipse/che-theia", + "quay.io/eclipse/che-machine-exec", + "quay.io/eclipse/che-theia-endpoint-runtime-binary", + "index.docker.io/ksmster/che-editor-jupyter", + "index.docker.io/dirigiblelabs/dirigible-openshift", + "quay.io/che-incubator/che-idea", + "quay.io/che-incubator/che-pycharm", + "index.docker.io/wsskeleton/eclipse-broadway", + "index.docker.io/codercom/code-server", + "quay.io/eclipse/che-buildah-base", + "quay.io/eclipse/che-sidecar-workspace-data-sync", + "quay.io/eclipse/che-buildkit-base", + "quay.io/eclipse/che--centos--mongodb-36-centos7", + "quay.io/eclipse/che--centos--mongodb-36-centos7", + "quay.io/eclipse/che--centos--mysql-57-centos7", + "quay.io/eclipse/che-cpp-rhel7", + "quay.io/eclipse/che-dotnet-2.2", + "quay.io/eclipse/che-dotnet-3.1", + "quay.io/eclipse/che-golang-1.17", + "quay.io/eclipse/che-java11-gradle", + "quay.io/eclipse/che-java11-maven", + "quay.io/eclipse/che-java8-maven", + "quay.io/eclipse/che-nodejs10-community", + "quay.io/eclipse/che-nodejs10-ubi", + "quay.io/eclipse/che-nodejs12-community", + "quay.io/eclipse/che-nodejs8-centos", + "quay.io/eclipse/che-php-7", + "quay.io/eclipse/che-python-3.8", + "quay.io/eclipse/che-quarkus", + "quay.io/eclipse/che-rust-1.39" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 622 + }, + { + "Amazon S3": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "amazon/amazon-ecs-agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 90, + "Docker_Url": "https://hub.docker.com/r/amazon/amazon-ecs-agent", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "amazon/amazon-ecs-sample", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 25, + "Docker_Url": "https://hub.docker.com/r/amazon/amazon-ecs-sample", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "amazon-eks-pod-identity-webhook", + "url": "https://quay.io/repository/giantswarm/amazon-eks-pod-identity-webhook", + "popularity": 118.0 + }, + { + "name": "amazon-aws-efs-csi-driver", + "url": "https://quay.io/repository/dperez_mulet/amazon-aws-efs-csi-driver", + "popularity": 51.0 + }, + { + "name": "sensu-go-tests-amazon", + "url": "https://quay.io/repository/xlab-steampunk/sensu-go-tests-amazon", + "popularity": 42.0 + }, + { + "name": "business-central-workbench-showcase", + "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", + "popularity": 609.0 + }, + { + "name": "jbpm-server-full", + "url": "https://quay.io/repository/kiegroup/jbpm-server-full", + "popularity": 309.0 + } + ] + }, + { + "operators": [ + { + "package_id": "7969e4d8-597d-4acb-9131-8deacfb247f7", + "name": "ack-s3-controller", + "normalized_name": "ack-s3-controller", + "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", + "stars": 0, + "display_name": "AWS Controllers for Kubernetes - Amazon S3", + "description": "AWS S3 controller is a service controller for managing S3 resources in Kubernetes", + "version": "0.1.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1655963702, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aws-controllers-k8s", + "container_images": [] + } + ] + } + ], + "entity_type": 2, + "entity_id": 623 + }, + { + "ClickHouse": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "clickhouse", + "url": "https://quay.io/repository/operatorhubio/clickhouse", + "popularity": 1144.0 + }, + { + "name": "clickhouse", + "url": "https://quay.io/repository/binarysoftware/clickhouse", + "popularity": 0.0 + }, + { + "name": "clickhouse", + "url": "https://quay.io/repository/excoin/clickhouse", + "popularity": 0.0 + }, + { + "name": "clickhouse", + "url": "https://quay.io/repository/iyuroch/clickhouse", + "popularity": 0.0 + }, + { + "name": "clickhouse", + "url": "https://quay.io/application/sunsingerus/clickhouse", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "clickhouse", + "url": "https://quay.io/repository/operatorhubio/clickhouse", + "popularity": 1144.0 + }, + { + "name": "falcon-test-clickhouse", + "url": "https://quay.io/repository/plotly/falcon-test-clickhouse", + "popularity": 2.0 + }, + { + "name": "clickhouse-exporter", + "url": "https://quay.io/repository/whisk/clickhouse-exporter", + "popularity": 7.0 + }, + { + "name": "ckman", + "url": "https://quay.io/repository/housepower/ckman", + "popularity": 10.0 + }, + { + "name": "clickhouse_sinker", + "url": "https://quay.io/repository/housepower/clickhouse_sinker", + "popularity": 6.0 + } + ] + }, + { + "operators": [ + { + "package_id": "95833125-3a5b-4da5-a985-21f172238a61", + "name": "clickhouse", + "normalized_name": "clickhouse", + "logo_image_id": "f00ce069-4086-4f36-bb6e-bb805373bfa7", + "stars": 5, + "display_name": "Altinity Operator for ClickHouse", + "description": "ClickHouse Operator manages full lifecycle of ClickHouse clusters.", + "version": "0.18.3", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1573466400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/altinity/clickhouse-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 2, + "entity_id": 624 + }, + { + "MinIO": [ + { + "dockerhub_exact_images": [ + { + "name": "bitnami/minio", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 42, + "Docker_Url": "https://hub.docker.com/r/bitnami/minio", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/minio", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/minio", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "ibmcom/minio", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/minio", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/minio-minio", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/rancher/minio-minio", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/minio", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 42, + "Docker_Url": "https://hub.docker.com/r/bitnami/minio", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/minio-mc", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/minio-mc", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "minio", + "url": "https://quay.io/repository/minio/minio", + "popularity": 374426.0 + }, + { + "name": "minio", + "url": "https://quay.io/repository/cloudservices/minio", + "popularity": 3179.0 + }, + { + "name": "minio", + "url": "https://quay.io/repository/uninett/minio", + "popularity": 27.0 + }, + { + "name": "minio", + "url": "https://quay.io/repository/riotkit/minio", + "popularity": 0.0 + }, + { + "name": "minio", + "url": "https://quay.io/repository/devtron/minio", + "popularity": 3454.0 + }, + { + "name": "minio", + "url": "https://quay.io/repository/ricardbejarano/minio", + "popularity": 13.0 + }, + { + "name": "minio", + "url": "https://quay.io/repository/deisci/minio", + "popularity": 0.0 + }, + { + "name": "minio", + "url": "https://quay.io/repository/kubevirt/minio", + "popularity": 632.0 + }, + { + "name": "minio", + "url": "https://quay.io/repository/nird-toolkit/minio", + "popularity": 0.0 + }, + { + "name": "minio", + "url": "https://quay.io/repository/stackstate/minio", + "popularity": 295.0 + }, + { + "name": "minio", + "url": "https://quay.io/repository/wakaba/minio", + "popularity": 207.0 + }, + { + "name": "minio", + "url": "https://quay.io/repository/anuta/minio", + "popularity": 250.0 + } + ], + "quay_top_images": [ + { + "name": "minio", + "url": "https://quay.io/repository/minio/minio", + "popularity": 374426.0 + }, + { + "name": "minio", + "url": "https://quay.io/repository/cloudservices/minio", + "popularity": 3179.0 + }, + { + "name": "minio-s3-test-harness", + "url": "https://quay.io/repository/fossa/minio-s3-test-harness", + "popularity": 5172.0 + }, + { + "name": "minio", + "url": "https://quay.io/repository/devtron/minio", + "popularity": 3454.0 + }, + { + "name": "minio-operator-rhmp", + "url": "https://quay.io/repository/operator-pipeline-prod/minio-operator-rhmp", + "popularity": 1680.0 + } + ] + }, + { + "operators": [ + { + "package_id": "ad36562a-aad9-4563-a303-9159348c9660", + "name": "minio-operator", + "normalized_name": "minio-operator", + "logo_image_id": "ee3aebb3-ab97-434a-a889-6b1ef22ee0bc", + "stars": 1, + "display_name": "Minio Operator", + "description": "MinIO is a Kubernetes-native high performance object store with an\nS3-compatible API. The MinIO Operator supports deploying MinIO Tenants\nonto any Kubernetes.", + "version": "4.4.25", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 0, + "medium": 33, + "unknown": 2, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1655928035, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/minio/operator", + "container_images": [ + "quay.io/minio/operator" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 625 + }, + { + "Elasticsearch": [ + { + "dockerhub_exact_images": [ + { + "name": "elasticsearch", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 5691, + "Docker_Url": "https://hub.docker.com/_/elasticsearch", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/elasticsearch", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 55, + "Docker_Url": "https://hub.docker.com/r/bitnami/elasticsearch", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/elasticsearch", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/elasticsearch", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/elasticsearch", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/rancher/elasticsearch", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "elasticsearch", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 5691, + "Docker_Url": "https://hub.docker.com/_/elasticsearch", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/elasticsearch", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 55, + "Docker_Url": "https://hub.docker.com/r/bitnami/elasticsearch", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/elasticsearch", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/elasticsearch", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/elasticsearch", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/rancher/elasticsearch", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/elasticsearch-exporter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/bitnami/elasticsearch-exporter", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "elasticsearch", + "url": "https://quay.io/repository/fluentd_elasticsearch/elasticsearch", + "popularity": 68607.0 + }, + { + "name": "elasticsearch", + "url": "https://quay.io/repository/crowdworks/elasticsearch", + "popularity": 34114.0 + }, + { + "name": "elasticsearch", + "url": "https://quay.io/repository/trackmaven/elasticsearch", + "popularity": 9476.0 + }, + { + "name": "elasticsearch", + "url": "https://quay.io/repository/agari/elasticsearch", + "popularity": 1266.0 + }, + { + "name": "elasticsearch", + "url": "https://quay.io/repository/centerforopenscience/elasticsearch", + "popularity": 7608.0 + }, + { + "name": "elasticsearch", + "url": "https://quay.io/repository/openshifttest/elasticsearch", + "popularity": 396.0 + }, + { + "name": "elasticsearch", + "url": "https://quay.io/repository/karbon/elasticsearch", + "popularity": 1441.0 + }, + { + "name": "elasticsearch", + "url": "https://quay.io/repository/stackstate/elasticsearch", + "popularity": 845.0 + } + ], + "quay_top_images": [ + { + "name": "elasticsearch-exporter", + "url": "https://quay.io/repository/prometheuscommunity/elasticsearch-exporter", + "popularity": 377871.0 + }, + { + "name": "elasticsearch", + "url": "https://quay.io/repository/fluentd_elasticsearch/elasticsearch", + "popularity": 68607.0 + }, + { + "name": "elasticsearch", + "url": "https://quay.io/repository/crowdworks/elasticsearch", + "popularity": 34114.0 + }, + { + "name": "docker-elasticsearch-kubernetes", + "url": "https://quay.io/repository/pires/docker-elasticsearch-kubernetes", + "popularity": 41072.0 + }, + { + "name": "elasticsearch-curator", + "url": "https://quay.io/repository/widen/elasticsearch-curator", + "popularity": 30941.0 + } + ] + }, + { + "operators": [ + { + "package_id": "097570ef-5856-4966-9cf9-1125451d0959", + "name": "esindex-operator", + "normalized_name": "esindex-operator", + "logo_image_id": "2f1b8acc-3b7d-46d8-847e-5a2be071f37f", + "stars": 0, + "display_name": "Elasticsearch Index Operator", + "description": "An operator for managing indices on elasticsearch services", + "version": "0.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 82, + "high": 8, + "medium": 43, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1565343638, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/esindex-operator", + "container_images": [] + }, + { + "package_id": "b1aa6353-146c-477c-943e-5a5558b65dc3", + "name": "elastic-cloud-eck", + "normalized_name": "elastic-cloud-eck", + "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", + "stars": 13, + "display_name": "Elasticsearch (ECK) Operator", + "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", + "version": "2.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1657006653, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/elastic/cloud-on-k8s", + "container_images": [] + }, + { + "package_id": "cd293030-11ba-4efd-85eb-0c1a05019925", + "name": "elastic-phenix-operator", + "normalized_name": "elastic-phenix-operator", + "logo_image_id": "fb31853c-71b5-4340-9f99-2af66a102bef", + "stars": 0, + "display_name": "Elasticsearch Phenix Operator", + "description": "Manage elasticsearch indices, templates lifecycle (creation, update and delete)", + "version": "0.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 6, + "medium": 2, + "unknown": 2, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1616064300, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/Carrefour-Group/elastic-phenix-operator", + "container_images": [] + }, + { + "package_id": "146e5627-361e-4c23-97d5-9cbe4febba81", + "name": "logging-operator", + "normalized_name": "logging-operator", + "logo_image_id": "0fb27181-3404-4379-a8fc-7ebdbf801340", + "stars": 3, + "display_name": "Logging Operator", + "description": "A golang-based operator to create and manage EFK (Elasticsearch, Fluentd, and Kibana) stack on Kubernetes.", + "version": "0.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1657182636, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/ot-container-kit/logging-operator", + "container_images": [ + "quay.io/opstree/logging-operator:v0.3.0" + ] + }, + { + "package_id": "8ead8d37-cba9-449e-a7df-ee5c0745564f", + "name": "nuxeo-operator", + "normalized_name": "nuxeo-operator", + "logo_image_id": "6540df42-6fe6-428e-b81b-8777c396d3b0", + "stars": 0, + "display_name": "Nuxeo Operator", + "description": "The Nuxeo Operator manages a Nuxeo cluster, integrating it\nwith backing services like Kafka, Elastic Search, MongoDB, and PostgreSQL\n", + "version": "0.7.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 2, + "medium": 1, + "unknown": 3, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1601078400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aceeric/nuxeo-operator", + "container_images": [ + "docker.io/appzygy/nuxeo-operator:0.7.1" + ] + }, + { + "package_id": "6afbd6a8-28d4-40f7-9f2e-0a7d34fe833e", + "name": "prometheus-exporter-operator", + "normalized_name": "prometheus-exporter-operator", + "logo_image_id": "8ab25f0a-48a9-48db-9082-31c5c161c106", + "stars": 0, + "display_name": "Prometheus Exporter Operator", + "description": "Operator to setup 3rd party prometheus exporters, with a collection of grafana dashboards", + "version": "0.2.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 88, + "high": 29, + "medium": 270, + "unknown": 1, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1591574400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/3scale/prometheus-exporter-operator", + "container_images": [ + "quay.io/3scale/prometheus-exporter-operator:v0.2.4" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 626 + }, + { + "XtraDB": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "percona/percona-xtradb-cluster", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 155, + "Docker_Url": "https://hub.docker.com/r/percona/percona-xtradb-cluster", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "percona/percona-xtradb-cluster-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 14, + "Docker_Url": "https://hub.docker.com/r/percona/percona-xtradb-cluster-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "percona-xtradb-cluster-operator", + "url": "https://quay.io/repository/operatorhubio/percona-xtradb-cluster-operator", + "popularity": 356.0 + }, + { + "name": "percona-xtradb-cluster-operator", + "url": "https://quay.io/repository/openshift-community-operators/percona-xtradb-cluster-operator", + "popularity": 294.0 + }, + { + "name": "percona-xtradb-cluster-operator-certified", + "url": "https://quay.io/repository/operator-pipeline-prod/percona-xtradb-cluster-operator-certified", + "popularity": 168.0 + }, + { + "name": "percona-xtradb-cluster-operator-certified-rhmp", + "url": "https://quay.io/repository/operator-pipeline-prod/percona-xtradb-cluster-operator-certified-rhmp", + "popularity": 168.0 + }, + { + "name": "rancher-percona-xtradb-cluster", + "url": "https://quay.io/repository/rubenmch/rancher-percona-xtradb-cluster", + "popularity": 0.0 + } + ] + }, + { + "operators": [ + { + "package_id": "e3f8d531-6ea5-48ce-ac99-505c79414881", + "name": "percona-xtradb-cluster-operator", + "normalized_name": "percona-xtradb-cluster-operator", + "logo_image_id": "0b8875cd-6661-4269-9cf6-0fd92d59017b", + "stars": 5, + "display_name": "Percona Distribution for MySQL Operator", + "description": "Percona Distribution for MySQL Operator manages the lifecycle of Percona XtraDB cluster instances.", + "version": "1.10.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 5, + "medium": 48, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1640178704, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/percona/percona-xtradb-cluster-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 2, + "entity_id": 627 + }, + { + "Keycloak": [ + { + "dockerhub_exact_images": [ + { + "name": "bitnami/keycloak", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 29, + "Docker_Url": "https://hub.docker.com/r/bitnami/keycloak", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "bitnami/keycloak", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 29, + "Docker_Url": "https://hub.docker.com/r/bitnami/keycloak", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/keycloak-gatekeeper", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 7, + "Docker_Url": "https://hub.docker.com/r/bitnami/keycloak-gatekeeper", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 1992349.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/iamplus/keycloak", + "popularity": 0.0 + }, + { + "name": "keycloak", + "url": "https://quay.io/repository/ukhomeofficedigital/keycloak", + "popularity": 48.0 + } + ], + "quay_top_images": [ + { + "name": "keycloak", + "url": "https://quay.io/repository/keycloak/keycloak", + "popularity": 1992349.0 + }, + { + "name": "keycloak-operator", + "url": "https://quay.io/repository/keycloak/keycloak-operator", + "popularity": 53461.0 + }, + { + "name": "keycloak-init-container", + "url": "https://quay.io/repository/keycloak/keycloak-init-container", + "popularity": 47962.0 + }, + { + "name": "keycloak-gatekeeper", + "url": "https://quay.io/repository/keycloak/keycloak-gatekeeper", + "popularity": 12631.0 + }, + { + "name": "keycloak-proxy", + "url": "https://quay.io/repository/gambol99/keycloak-proxy", + "popularity": 6022.0 + } + ] + }, + { + "operators": [ + { + "package_id": "cd93e666-2b6d-419e-879d-3890b5f7c200", + "name": "keycloak-operator", + "normalized_name": "keycloak-operator", + "logo_image_id": "fd90a09f-d3e5-45bf-8c8f-589634592369", + "stars": 14, + "display_name": "Keycloak Operator", + "description": "An Operator for installing and managing Keycloak", + "version": "20.0.0-alpha.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 38, + "high": 0, + "medium": 47, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656518437, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/keycloak/keycloak", + "container_images": [ + "quay.io/keycloak/keycloak-operator:18.0.2" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 628 + }, + { + "Grafana": [ + { + "dockerhub_exact_images": [ + { + "name": "grafana/grafana", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2266, + "Docker_Url": "https://hub.docker.com/r/grafana/grafana", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "grafana/grafana", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2266, + "Docker_Url": "https://hub.docker.com/r/grafana/grafana", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "grafana/grafana-oss", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 30, + "Docker_Url": "https://hub.docker.com/r/grafana/grafana-oss", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "grafana/grafana-enterprise", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/grafana/grafana-enterprise", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "grafana/grafana-dev", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/grafana/grafana-dev", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "grafana", + "url": "https://quay.io/repository/tamr/grafana", + "popularity": 87.0 + }, + { + "name": "grafana", + "url": "https://quay.io/repository/opencloudio/grafana", + "popularity": 2273.0 + }, + { + "name": "grafana", + "url": "https://quay.io/repository/testing-farm/grafana", + "popularity": 170.0 + }, + { + "name": "grafana", + "url": "https://quay.io/repository/cybozu/grafana", + "popularity": 771.0 + }, + { + "name": "grafana", + "url": "https://quay.io/repository/sisense/grafana", + "popularity": 821.0 + }, + { + "name": "grafana", + "url": "https://quay.io/repository/deisci/grafana", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "grafana-operator", + "url": "https://quay.io/repository/grafana-operator/grafana-operator", + "popularity": 188424.0 + }, + { + "name": "grafana-operator", + "url": "https://quay.io/repository/integreatly/grafana-operator", + "popularity": 57357.0 + }, + { + "name": "ibm-monitoring-grafana-operator", + "url": "https://quay.io/repository/opencloudio/ibm-monitoring-grafana-operator", + "popularity": 18830.0 + }, + { + "name": "ceph-grafana", + "url": "https://quay.io/repository/ceph/ceph-grafana", + "popularity": 11101.0 + }, + { + "name": "origin-grafana", + "url": "https://quay.io/repository/openshift/origin-grafana", + "popularity": 4513.0 + } + ] + }, + { + "operators": [ + { + "package_id": "5667c55e-0a99-4011-9ab6-7bc3487f43a7", + "name": "grafana-operator", + "normalized_name": "grafana-operator", + "logo_image_id": "27dba515-e77b-4e81-b7ac-484df9e02086", + "stars": 7, + "display_name": "Grafana Operator", + "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", + "version": "4.4.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 4, + "high": 0, + "medium": 3, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1652090412, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/grafana-operator/grafana-operator", + "container_images": [ + "quay.io/grafana-operator/grafana-operator:v4.4.1" + ] + }, + { + "package_id": "6afbd6a8-28d4-40f7-9f2e-0a7d34fe833e", + "name": "prometheus-exporter-operator", + "normalized_name": "prometheus-exporter-operator", + "logo_image_id": "8ab25f0a-48a9-48db-9082-31c5c161c106", + "stars": 0, + "display_name": "Prometheus Exporter Operator", + "description": "Operator to setup 3rd party prometheus exporters, with a collection of grafana dashboards", + "version": "0.2.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 88, + "high": 29, + "medium": 270, + "unknown": 1, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1591574400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/3scale/prometheus-exporter-operator", + "container_images": [ + "quay.io/3scale/prometheus-exporter-operator:v0.2.4" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 629 + }, + { + "Mattermost": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "mattermost", + "url": "https://quay.io/repository/jostone/mattermost", + "popularity": 167.0 + }, + { + "name": "mattermost", + "url": "https://quay.io/repository/jasl8r/mattermost", + "popularity": 0.0 + }, + { + "name": "mattermost", + "url": "https://quay.io/repository/fodoj/mattermost", + "popularity": 34.0 + }, + { + "name": "mattermost", + "url": "https://quay.io/repository/goern/mattermost", + "popularity": 0.0 + }, + { + "name": "mattermost", + "url": "https://quay.io/repository/ukhomeofficedigital/mattermost", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "mattermost-openshift-customized", + "url": "https://quay.io/repository/duke253/mattermost-openshift-customized", + "popularity": 0.0 + }, + { + "name": "mattermost", + "url": "https://quay.io/repository/jostone/mattermost", + "popularity": 167.0 + }, + { + "name": "mattermost-operator", + "url": "https://quay.io/repository/operatorhubio/mattermost-operator", + "popularity": 44.0 + }, + { + "name": "mattermost", + "url": "https://quay.io/repository/fodoj/mattermost", + "popularity": 34.0 + }, + { + "name": "mattermost-operator", + "url": "https://quay.io/repository/openshift-community-operators/mattermost-operator", + "popularity": 23.0 + } + ] + }, + { + "operators": [ + { + "package_id": "25d2025c-e381-4eb1-b94b-c33d4318c07d", + "name": "mattermost-operator", + "normalized_name": "mattermost-operator", + "logo_image_id": "fa6681b1-ac42-42de-ae8f-ce977ff897cb", + "stars": 0, + "display_name": "Mattermost Operator", + "description": "Mattermost is a flexible, open source messaging platform that enables secure team collaboration.", + "version": "0.5.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 4, + "high": 6, + "medium": 14, + "unknown": 0, + "critical": 2 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1563442920, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/mattermost/mattermost-operator", + "container_images": [ + "docker.io/mattermost/mattermost-operator:v0.5.0" + ] + } + ] + } + ], + "entity_type": 10, + "entity_id": 630 + }, + { + "Synapse": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "synapse", + "url": "https://quay.io/repository/dockernohub/synapse", + "popularity": 0.0 + }, + { + "name": "synapse", + "url": "https://quay.io/repository/jostone/synapse", + "popularity": 167.0 + }, + { + "name": "synapse", + "url": "https://quay.io/repository/snapserv/synapse", + "popularity": 0.0 + }, + { + "name": "synapse", + "url": "https://quay.io/repository/carloscarnero/synapse", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "synapse", + "url": "https://quay.io/repository/dockernohub/synapse", + "popularity": 0.0 + }, + { + "name": "synapse", + "url": "https://quay.io/repository/jostone/synapse", + "popularity": 167.0 + }, + { + "name": "dockstore-tool-synapse-submit", + "url": "https://quay.io/repository/ga4gh-dream/dockstore-tool-synapse-submit", + "popularity": 0.0 + }, + { + "name": "synapse-helm", + "url": "https://quay.io/repository/operatorhubio/synapse-helm", + "popularity": 44.0 + }, + { + "name": "synapse-helm", + "url": "https://quay.io/repository/mgoerens/synapse-helm", + "popularity": 14.0 + } + ] + }, + { + "operators": [ + { + "package_id": "ef0279fe-28b2-40ec-a7ef-9e61af9a5b79", + "name": "synapse-helm", + "normalized_name": "synapse-helm", + "logo_image_id": "e662de37-cdd8-4859-824a-7132e1391f08", + "stars": 0, + "display_name": "synapse-helm", + "version": "0.0.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 46, + "high": 14, + "medium": 120, + "unknown": 4, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1630479633, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/opdev/synapse-helm", + "container_images": [ + "quay.io/mgoerens/synapse-helm:v0.0.11" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 631 + }, + { + "Cloud IAM": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "google/cloud-sdk", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 382, + "Docker_Url": "https://hub.docker.com/r/google/cloud-sdk", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cloud-connector", + "url": "https://quay.io/repository/sysdig/cloud-connector", + "popularity": 1263418.0 + }, + { + "name": "icp-iam-onboarding", + "url": "https://quay.io/repository/opencloudio/icp-iam-onboarding", + "popularity": 521927.0 + }, + { + "name": "cloud-connector-s3-bucket-config", + "url": "https://quay.io/repository/sysdig/cloud-connector-s3-bucket-config", + "popularity": 644351.0 + }, + { + "name": "minio", + "url": "https://quay.io/repository/minio/minio", + "popularity": 374426.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + } + ] + }, + { + "operators": [ + { + "package_id": "730af2fd-ace8-4ab8-b17f-6535c0283a4b", + "name": "ibmcloud-iam-operator", + "normalized_name": "ibmcloud-iam-operator", + "logo_image_id": "2f1b8acc-3b7d-46d8-847e-5a2be071f37f", + "stars": 0, + "display_name": "IBM Cloud IAM Operator", + "description": "The IBM Cloud IAM Operator provides a set of three Kubernetes CRD-Based APIs to manage the lifecycle of Access Policies, Access Groups, and Custom Roles on IAM for IBM public cloud.", + "version": "0.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 64, + "high": 15, + "medium": 168, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1597239415, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/ibmcloud-iam-operator", + "container_images": [] + }, + { + "package_id": "40cda188-a237-4e89-8120-858155dbc260", + "name": "ack-iam-controller", + "normalized_name": "ack-iam-controller", + "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", + "stars": 0, + "display_name": "AWS Controllers for Kubernetes - Amazon IAM", + "description": "AWS IAM controller is a service controller for managing IAM resources in Kubernetes", + "version": "0.0.18", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656049570, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aws-controllers-k8s", + "container_images": [] + } + ] + } + ], + "entity_type": 2, + "entity_id": 632 + }, + { + "Knative": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "knative-serving-package", + "url": "https://quay.io/repository/failk8s/knative-serving-package", + "popularity": 6781.0 + }, + { + "name": "knative-eventing-sources-heartbeats", + "url": "https://quay.io/repository/openshift-knative/knative-eventing-sources-heartbeats", + "popularity": 12012.0 + }, + { + "name": "knative-client-test-helloworld", + "url": "https://quay.io/repository/openshift-knative/knative-client-test-helloworld", + "popularity": 2345.0 + }, + { + "name": "knative-serving-storage-version-migration", + "url": "https://quay.io/repository/openshift-knative/knative-serving-storage-version-migration", + "popularity": 2968.0 + }, + { + "name": "knative-eventing-storage-version-migration", + "url": "https://quay.io/repository/openshift-knative/knative-eventing-storage-version-migration", + "popularity": 2805.0 + } + ] + }, + { + "operators": [ + { + "package_id": "0c44b6e2-521b-4485-9d14-fd8f01ea6a4d", + "name": "knative-operator", + "normalized_name": "knative-operator", + "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", + "stars": 12, + "display_name": "Knative Operator", + "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", + "version": "1.5.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656460800, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/knative/operator", + "container_images": [] + }, + { + "package_id": "774e60d5-9d34-4b13-8f04-2aa5c4f6386f", + "name": "eventing-kogito", + "normalized_name": "eventing-kogito", + "logo_image_id": "ad53dec8-1e52-4de2-b995-067a63ad9083", + "stars": 0, + "display_name": "Kogito Knative Eventing Source", + "version": "1.2.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1629892800, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/knative-sandbox/eventing-kogito", + "container_images": [] + }, + { + "package_id": "3c8db8d4-cd4c-4043-8771-9032a473ebbe", + "name": "yaks", + "normalized_name": "yaks", + "logo_image_id": "9131ec30-b0de-4ce8-8e41-275fd2137775", + "stars": 0, + "display_name": "YAKS Operator", + "description": "YAKS is a platform to enable Cloud Native BDD testing on Kubernetes.", + "version": "0.10.0", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1601001900, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/citrusframework/yaks", + "container_images": [ + "docker.io/citrusframework/yaks:0.10.0" + ] + } + ] + } + ], + "entity_type": 10, + "entity_id": 633 + }, + { + "Apache Cassandra": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/apache", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 81, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ubuntu/cassandra", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/ubuntu/cassandra", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/cassandra", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/cassandra", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/cassandra", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 44, + "Docker_Url": "https://hub.docker.com/r/bitnami/cassandra", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "cassandra", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1388, + "Docker_Url": "https://hub.docker.com/_/cassandra", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 826844.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/strimzi/operator", + "popularity": 412398.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + } + ] + }, + { + "operators": [ + { + "package_id": "280420eb-a3b0-46fa-bef3-4300e85a7ad1", + "name": "cass-operator-community", + "normalized_name": "cass-operator-community", + "logo_image_id": "ac0cc465-c42f-43d9-a288-ec178d9f3ef9", + "stars": 0, + "display_name": "DataStax Kubernetes Operator for Apache Cassandra", + "description": "Simple provisioning, turn-key operations, and automated remediation of Apache Cassandra clusters\n", + "version": "1.10.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 7, + "high": 0, + "medium": 7, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1652441433, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/k8ssandra/cass-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 2, + "entity_id": 634 + }, + { + "Kubeflow": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "pachyderm/kubeflow-worker", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/pachyderm/kubeflow-worker", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "kubeflow", + "url": "https://quay.io/repository/operatorhubio/kubeflow", + "popularity": 153.0 + }, + { + "name": "kubeflow", + "url": "https://quay.io/repository/llasmith/kubeflow", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "kubeflow", + "url": "https://quay.io/repository/operatorhubio/kubeflow", + "popularity": 153.0 + }, + { + "name": "kubeflow-notebook-controller", + "url": "https://quay.io/repository/opendatahub/kubeflow-notebook-controller", + "popularity": 142.0 + }, + { + "name": "kubeflow-notebook-image-ppc64le", + "url": "https://quay.io/repository/ibm/kubeflow-notebook-image-ppc64le", + "popularity": 38.0 + }, + { + "name": "kubeflow-component-tensorflow-cpu", + "url": "https://quay.io/repository/ibm/kubeflow-component-tensorflow-cpu", + "popularity": 8.0 + }, + { + "name": "kubeflow-component-base-image-k8s-client", + "url": "https://quay.io/repository/ibm/kubeflow-component-base-image-k8s-client", + "popularity": 45.0 + } + ] + }, + { + "operators": [ + { + "package_id": "ed4a8453-75f2-46a4-9743-9f7b12d4d4ea", + "name": "kubeflow", + "normalized_name": "kubeflow", + "logo_image_id": "cb5e7dba-ea2d-4a65-a3b6-7def9d80358f", + "stars": 4, + "display_name": "Kubeflow", + "description": "Kubeflow Operator for deployment and management of Kubeflow", + "version": "1.2.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 15, + "high": 16, + "medium": 24, + "unknown": 1, + "critical": 4 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1584576000, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/kubeflow/kfctl", + "container_images": [] + } + ] + } + ], + "entity_type": 10, + "entity_id": 635 + }, + { + "Qiskit": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "openshift-qiskit-operator", + "url": "https://quay.io/repository/operatorhubio/openshift-qiskit-operator", + "popularity": 132.0 + }, + { + "name": "openshift-qiskit-operator", + "url": "https://quay.io/repository/openshift-community-operators/openshift-qiskit-operator", + "popularity": 123.0 + }, + { + "name": "qiskit-op", + "url": "https://quay.io/repository/husky_parul/qiskit-op", + "popularity": 2.0 + }, + { + "name": "centos-qiskit-jupyter", + "url": "https://quay.io/repository/husky_parul/centos-qiskit-jupyter", + "popularity": 6.0 + }, + { + "name": "qiskit-playground", + "url": "https://quay.io/repository/jdob/qiskit-playground", + "popularity": 0.0 + } + ] + }, + { + "operators": [ + { + "package_id": "c21967c3-2cbd-47bd-aa14-85a7e916f710", + "name": "openshift-qiskit-operator", + "normalized_name": "openshift-qiskit-operator", + "logo_image_id": "d221375e-81f4-423c-a46d-52fa841c1864", + "stars": 0, + "display_name": "QiskitPlayground", + "description": "Launches a developement environment Jupyter notebok development environment for\ndeveloping quantum applications using Qiskit.", + "version": "0.2.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 2, + "medium": 1, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1632454225, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/kubernetes-qiskit-operator", + "container_images": [ + "docker.io/qiskit/operator:0.1" + ] + }, + { + "package_id": "783a78ca-f481-4edc-ae80-261c2e93db2e", + "name": "ibm-quantum-operator", + "normalized_name": "ibm-quantum-operator", + "logo_image_id": "56a77342-5b42-418b-8e28-a5060cec1047", + "stars": 0, + "display_name": "Ibm Quantum Operator", + "description": "Operator to run quantum circuits build using Qiskit on IBM quantum systems", + "version": "0.1.0", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525859, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/redhat-et/ibm-quantum-operator", + "container_images": [ + "quay.io/application/husky_parul/ibm-quantum-operator" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 636 + }, + { + "Microsoft Azure": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/azure-cli", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/bitnami/azure-cli", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "azure-pipelines-test-container", + "url": "https://quay.io/repository/ansible/azure-pipelines-test-container", + "popularity": 29866.0 + }, + { + "name": "origin-azure-machine-controllers", + "url": "https://quay.io/repository/openshift/origin-azure-machine-controllers", + "popularity": 4171.0 + }, + { + "name": "origin-azure-cloud-node-manager", + "url": "https://quay.io/repository/openshift/origin-azure-cloud-node-manager", + "popularity": 3170.0 + }, + { + "name": "origin-azure-cloud-controller-manager", + "url": "https://quay.io/repository/openshift/origin-azure-cloud-controller-manager", + "popularity": 3170.0 + }, + { + "name": "velero-plugin-for-microsoft-azure", + "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", + "popularity": 4220.0 + } + ] + }, + { + "operators": [ + { + "package_id": "68c1164d-9ca1-4e17-8309-3a18d43bca4d", + "name": "azure-service-operator", + "normalized_name": "azure-service-operator", + "stars": 2, + "display_name": "Azure Service Operator", + "description": "The Azure Service Operator helps you provision Azure resources and connect your applications to them from within Kubernetes.", + "version": "1.0.28631", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1630479633, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/Azure/azure-service-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 2, + "entity_id": 637 + }, + { + "Strimzi": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "strimzi-tools", + "url": "https://quay.io/repository/rh_integration/strimzi-tools", + "popularity": 8526.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 826844.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/strimzi/operator", + "popularity": 412398.0 + }, + { + "name": "jmxtrans", + "url": "https://quay.io/repository/strimzi/jmxtrans", + "popularity": 21909.0 + }, + { + "name": "kafka-bridge", + "url": "https://quay.io/repository/strimzi/kafka-bridge", + "popularity": 14377.0 + } + ] + }, + { + "operators": [ + { + "package_id": "614a5896-0b60-4e2b-a5b7-3b694658ab2a", + "name": "strimzi-kafka-operator", + "normalized_name": "strimzi-kafka-operator", + "logo_image_id": "83c34ef5-d2f7-4282-94ab-468dea859677", + "stars": 18, + "display_name": "Strimzi", + "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", + "version": "0.29.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 412, + "high": 38, + "medium": 473, + "unknown": 7, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1652572867, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/strimzi/strimzi-kafka-operator", + "container_images": [ + "quay.io/strimzi/operator", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka-bridge", + "quay.io/strimzi/jmxtrans", + "quay.io/strimzi/kaniko-executor", + "quay.io/strimzi/maven-builder" + ] + } + ] + } + ], + "entity_type": 10, + "entity_id": 638 + }, + { + "Sematext": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "sematext", + "url": "https://quay.io/repository/operatorhubio/sematext", + "popularity": 144.0 + }, + { + "name": "sematext", + "url": "https://quay.io/repository/j0zi/sematext", + "popularity": 0.0 + }, + { + "name": "sematext", + "url": "https://quay.io/application/certified-operators/sematext", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "sematext", + "url": "https://quay.io/repository/operatorhubio/sematext", + "popularity": 144.0 + }, + { + "name": "sematext", + "url": "https://quay.io/repository/j0zi/sematext", + "popularity": 0.0 + }, + { + "name": "sematext", + "url": "https://quay.io/application/certified-operators/sematext", + "popularity": 0.0 + } + ] + }, + { + "operators": [ + { + "package_id": "ef173e90-7faa-4e92-983d-1d25e824c08d", + "name": "sematext", + "normalized_name": "sematext", + "logo_image_id": "b3f392ea-4be7-4750-bf7b-3e1b06e86144", + "stars": 0, + "display_name": "Sematext Operator", + "description": "Full stack observability with Sematext Monitoring Platform!", + "version": "1.0.33", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 66, + "high": 24, + "medium": 219, + "unknown": 5, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1627632000, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/sematext/sematext-operator", + "container_images": [ + "docker.io/sematext/sematext-operator:1.0.33" + ] + } + ] + } + ], + "entity_type": 10, + "entity_id": 639 + }, + { + "Eclipse hawkBit": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "che-plugin-artifacts-broker", + "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", + "popularity": 20225.0 + }, + { + "name": "che-operator", + "url": "https://quay.io/repository/eclipse/che-operator", + "popularity": 36094.0 + }, + { + "name": "che-plugin-sidecar", + "url": "https://quay.io/repository/eclipse/che-plugin-sidecar", + "popularity": 15476.0 + }, + { + "name": "che-java11-maven", + "url": "https://quay.io/repository/eclipse/che-java11-maven", + "popularity": 19772.0 + }, + { + "name": "che-machine-exec", + "url": "https://quay.io/repository/eclipse/che-machine-exec", + "popularity": 9244.0 + } + ] + }, + { + "operators": [ + { + "package_id": "ae13a89d-340d-46c5-a013-fb856655599c", + "name": "hawkbit-operator", + "normalized_name": "hawkbit-operator", + "logo_image_id": "81ab91cc-ab49-4bdb-a844-0c761e0817e8", + "stars": 0, + "display_name": "Eclipse Hawkbit", + "description": "Eclipse hawkBit is a firmware update platform.", + "version": "0.1.5", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 46, + "high": 4, + "medium": 88, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1633642225, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/ctron/hawkbit-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 2, + "entity_id": 640 + }, + { + "Eclipse Ditto": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ditto-index", + "url": "https://quay.io/repository/olmqe/ditto-index", + "popularity": 9117.0 + }, + { + "name": "che-plugin-artifacts-broker", + "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", + "popularity": 20225.0 + }, + { + "name": "che-operator", + "url": "https://quay.io/repository/eclipse/che-operator", + "popularity": 36094.0 + }, + { + "name": "che-plugin-sidecar", + "url": "https://quay.io/repository/eclipse/che-plugin-sidecar", + "popularity": 15476.0 + }, + { + "name": "che-java11-maven", + "url": "https://quay.io/repository/eclipse/che-java11-maven", + "popularity": 19772.0 + } + ] + }, + { + "operators": [ + { + "package_id": "0cad4b47-9ae4-4912-934f-4972a4d3d183", + "name": "ditto-operator", + "normalized_name": "ditto-operator", + "logo_image_id": "d408d1ea-a894-4d4e-8a0c-5fd32067bb0c", + "stars": 0, + "display_name": "Eclipse Ditto", + "description": "Eclipse Ditto provides a Digital Twin platform. A digital twin is a virtual, cloud based, representation of his real world counterpart.", + "version": "0.4.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 4, + "medium": 46, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1632318840, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/ctron/ditto-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 2, + "entity_id": 641 + }, + { + "MariaDB": [ + { + "dockerhub_exact_images": [ + { + "name": "mariadb", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 4928, + "Docker_Url": "https://hub.docker.com/_/mariadb", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/mariadb", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 162, + "Docker_Url": "https://hub.docker.com/r/bitnami/mariadb", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/mariadb", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/circleci/mariadb", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/mariadb", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/mariadb", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "cimg/mariadb", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/cimg/mariadb", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "cimg/mariadb", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/cimg/mariadb", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/mariadb", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/mariadb", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/mariadb", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/circleci/mariadb", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/mariadb", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 162, + "Docker_Url": "https://hub.docker.com/r/bitnami/mariadb", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "mariadb", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 4928, + "Docker_Url": "https://hub.docker.com/_/mariadb", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "mariadb", + "url": "https://quay.io/repository/startx/mariadb", + "popularity": 15551.0 + }, + { + "name": "mariadb", + "url": "https://quay.io/repository/metal3-io/mariadb", + "popularity": 1946.0 + }, + { + "name": "mariadb", + "url": "https://quay.io/repository/linuxserver.io/mariadb", + "popularity": 63.0 + } + ], + "quay_top_images": [ + { + "name": "mariadb-103-centos7", + "url": "https://quay.io/repository/centos7/mariadb-103-centos7", + "popularity": 241707.0 + }, + { + "name": "mariadb-105-centos7", + "url": "https://quay.io/repository/centos7/mariadb-105-centos7", + "popularity": 136441.0 + }, + { + "name": "mariadb", + "url": "https://quay.io/repository/startx/mariadb", + "popularity": 15551.0 + }, + { + "name": "mariadb", + "url": "https://quay.io/repository/metal3-io/mariadb", + "popularity": 1946.0 + }, + { + "name": "todolist-mariadb-go", + "url": "https://quay.io/repository/mferrato/todolist-mariadb-go", + "popularity": 1590.0 + } + ] + }, + { + "operators": [ + { + "package_id": "cfd04009-89fd-4ab0-864a-1ec2f8e086be", + "name": "mariadb-operator-app", + "normalized_name": "mariadb-operator-app", + "logo_image_id": "a8ee9b85-065e-421b-b429-ba3793829dc5", + "stars": 2, + "display_name": "Mariadb Operator", + "description": "Create mariadb server and database on Kubernetes", + "version": "0.0.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 65, + "high": 14, + "medium": 165, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1586258220, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/abalki001/mariadb-operator", + "container_images": [ + "quay.io/manojdhanorkar/mariadb-operator:v0.0.4" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 642 + }, + { + "Zadara": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [ + { + "package_id": "627616ec-9b92-4cfe-b449-379b8de452b8", + "name": "zoperator", + "normalized_name": "zoperator", + "logo_image_id": "e57027a6-7e2f-465d-b2b6-8347f0641400", + "stars": 0, + "display_name": "Zadara Operator", + "description": "Zadara Operator enables storage provisioning via Zadara's CSI driver and data management capabilities for K8s applications.", + "version": "0.3.6", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 68, + "high": 39, + "medium": 221, + "unknown": 3, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525858, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/zadarastorage/zadara-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 2, + "entity_id": 643 + }, + { + "Istio": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "istio", + "url": "https://quay.io/repository/aspenmesh/istio", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "istio-workspace", + "url": "https://quay.io/repository/maistra/istio-workspace", + "popularity": 42505.0 + }, + { + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 353617.0 + }, + { + "name": "am-istio", + "url": "https://quay.io/repository/aspenmesh/am-istio", + "popularity": 3163.0 + }, + { + "name": "istio-ubi8-operator", + "url": "https://quay.io/repository/maistra/istio-ubi8-operator", + "popularity": 3061.0 + }, + { + "name": "cert-manager-istio-csr", + "url": "https://quay.io/repository/jetstack/cert-manager-istio-csr", + "popularity": 2540.0 + } + ] + }, + { + "operators": [ + { + "package_id": "2d352334-569b-40cd-be06-743ce4824e51", + "name": "istio", + "normalized_name": "istio", + "logo_image_id": "f41c0b42-c27f-4a1e-83cf-d631dacbc249", + "stars": 3, + "display_name": "Istio", + "description": "Installs and maintain Istio service mesh", + "version": "0.1.6", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 2 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1554105600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/banzaicloud/istio-operator/tree/release-1.1", + "container_images": [] + }, + { + "package_id": "6e8a8698-a063-4d23-840e-0328e7fe4c61", + "name": "istio-workspace-operator", + "normalized_name": "istio-workspace-operator", + "logo_image_id": "0d8dd810-b9ff-44a4-bdb6-ace43537accd", + "stars": 0, + "display_name": "Istio Workspace", + "description": "Safely develop and test on any Kubernetes cluster without affecting others.", + "version": "0.5.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 23, + "high": 0, + "medium": 32, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656964194, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/maistra/istio-workspace", + "container_images": [ + "quay.io/maistra/istio-workspace:v0.5.0" + ] + }, + { + "package_id": "0058dc30-cbd2-450e-88b3-abb251c7042b", + "name": "kiali", + "normalized_name": "kiali", + "logo_image_id": "43b07ef1-b2db-42be-9198-b9ce8e3bdfc4", + "stars": 1, + "display_name": "Kiali Operator", + "description": "Kiali project provides answers to the questions: What microservices are part of my Istio service mesh and how are they connected?", + "version": "1.53.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 42, + "high": 2, + "medium": 58, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656919344, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/kiali/kiali", + "container_images": [ + "quay.io/kiali/kiali-operator:v1.53.0" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 644 + }, + { + "Vault": [ + { + "dockerhub_exact_images": [ + { + "name": "vault", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 961, + "Docker_Url": "https://hub.docker.com/_/vault", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v6", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/vault", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/vault", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "ibmcom/vault", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/vault", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "vault", + "url": "https://quay.io/repository/cybozu/vault", + "popularity": 2656.0 + }, + { + "name": "vault", + "url": "https://quay.io/repository/giantswarm/vault", + "popularity": 185.0 + } + ], + "quay_top_images": [ + { + "name": "file-vault", + "url": "https://quay.io/repository/ukhomeofficedigital/file-vault", + "popularity": 42590.0 + }, + { + "name": "vault-next-gen", + "url": "https://quay.io/repository/codefreshplugins/vault-next-gen", + "popularity": 28875.0 + }, + { + "name": "vault-sidekick", + "url": "https://quay.io/repository/ukhomeofficedigital/vault-sidekick", + "popularity": 7842.0 + }, + { + "name": "kubernetes-vault-client", + "url": "https://quay.io/repository/travelaudience/kubernetes-vault-client", + "popularity": 9887.0 + }, + { + "name": "ibm-cert-manager-operator", + "url": "https://quay.io/repository/opencloudio/ibm-cert-manager-operator", + "popularity": 50181.0 + } + ] + }, + { + "operators": [ + { + "package_id": "dbf0d916-6b67-45d8-aea1-6b6ea941a3c8", + "name": "vault", + "normalized_name": "vault", + "logo_image_id": "7bdcbc34-f323-4ef2-8705-6c0eafde543b", + "stars": 1, + "display_name": "Vault Operator", + "description": "Creates and maintain highly-available Vault clusters on Kubernetes", + "version": "0.4.10", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 2 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1551945600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/banzaicloud/bank-vaults/tree/master/operator", + "container_images": [] + }, + { + "package_id": "3ff9d74f-f835-4ec2-9d76-042a803cf4c2", + "name": "vault-helm", + "normalized_name": "vault-helm", + "logo_image_id": "92adbfd7-96a4-4130-ab75-99bc3bbdc5b7", + "stars": 0, + "display_name": "Vault Helm", + "description": "Use Helm to Deploy and manage Hashicorp Vault", + "version": "0.0.2", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 56, + "high": 16, + "medium": 136, + "unknown": 2, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1611738000, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/SDBrett/vault-helm", + "container_images": [ + "quay.io/brejohns/vault-helm:0.0.2" + ] + }, + { + "package_id": "44ad7306-e2e9-46ad-ba77-75d9d394fa3d", + "name": "external-secrets-operator", + "normalized_name": "external-secrets-operator", + "logo_image_id": "3e9f62d2-6760-4599-a686-026510e964cf", + "stars": 0, + "display_name": "External Secrets Operator", + "description": "Operator to configure external-secrets helm-chart based operator", + "version": "0.5.7", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 11, + "medium": 52, + "unknown": 5, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1637539200, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/external-secrets/external-secrets-helm-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 2, + "entity_id": 645 + }, + { + "Apache Druid": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/apache", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 81, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "pingidentity/apache-jmeter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/apache-exporter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 826844.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/strimzi/operator", + "popularity": 412398.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + } + ] + }, + { + "operators": [ + { + "package_id": "14aeae8b-d0c9-445b-b2af-79423c0d3bc3", + "name": "druid-operator", + "normalized_name": "druid-operator", + "logo_image_id": "782f980f-13ed-4a6e-93dc-e4eb087a0d23", + "stars": 0, + "display_name": "druid-operator", + "description": "druid-operator allows creating Apache Druid cluster and manage their lifecycle", + "version": "0.0.9", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1571529600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/druid-io/druid-operator", + "container_images": [ + "docker.io/druidio/druid-operator:0.0.9" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 646 + }, + { + "etcd": [ + { + "dockerhub_exact_images": [ + { + "name": "bitnami/etcd", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 129, + "Docker_Url": "https://hub.docker.com/r/bitnami/etcd", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/etcd", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/ibmcom/etcd", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/etcd", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/rancher/etcd", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "pachyderm/etcd", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/pachyderm/etcd", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "pachyderm/etcd", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/pachyderm/etcd", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/etcd", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/rancher/etcd", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/etcd", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/ibmcom/etcd", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/etcd", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 129, + "Docker_Url": "https://hub.docker.com/r/bitnami/etcd", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "etcd", + "url": "https://quay.io/repository/coreos/etcd", + "popularity": 5050380.0 + }, + { + "name": "etcd", + "url": "https://quay.io/repository/openshift-community-operators/etcd", + "popularity": 2742.0 + }, + { + "name": "etcd", + "url": "https://quay.io/repository/cybozu/etcd", + "popularity": 3971.0 + }, + { + "name": "etcd", + "url": "https://quay.io/repository/olmqe/etcd", + "popularity": 2211.0 + }, + { + "name": "etcd", + "url": "https://quay.io/repository/karbon/etcd", + "popularity": 1873.0 + }, + { + "name": "etcd", + "url": "https://quay.io/repository/giantswarm/etcd", + "popularity": 680.0 + } + ], + "quay_top_images": [ + { + "name": "etcd", + "url": "https://quay.io/repository/coreos/etcd", + "popularity": 5050380.0 + }, + { + "name": "etcd-operator", + "url": "https://quay.io/repository/coreos/etcd-operator", + "popularity": 65170.0 + }, + { + "name": "flannel", + "url": "https://quay.io/repository/coreos/flannel", + "popularity": 1589952.0 + }, + { + "name": "etcd-bundle", + "url": "https://quay.io/repository/olmqe/etcd-bundle", + "popularity": 12948.0 + }, + { + "name": "etcd-index", + "url": "https://quay.io/repository/olmqe/etcd-index", + "popularity": 11805.0 + } + ] + }, + { + "operators": [ + { + "package_id": "a87a193d-ab54-44df-b734-e07292e05781", + "name": "etcd", + "normalized_name": "etcd", + "logo_image_id": "9a76f0bb-ffd6-4670-9024-bc84d090744a", + "stars": 1, + "display_name": "etcd", + "description": "Create and maintain highly-available etcd clusters on Kubernetes", + "version": "0.9.4", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1551315780, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/coreos/etcd-operator", + "container_images": [ + "quay.io/coreos/etcd-operator" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 647 + }, + { + "Traefik": [ + { + "dockerhub_exact_images": [ + { + "name": "traefik", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 2570, + "Docker_Url": "https://hub.docker.com/_/traefik", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v6", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "traefik", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 2570, + "Docker_Url": "https://hub.docker.com/_/traefik", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v6", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "traefik", + "url": "https://quay.io/repository/widen/traefik", + "popularity": 1209.0 + }, + { + "name": "traefik", + "url": "https://quay.io/repository/sylr/traefik", + "popularity": 0.0 + }, + { + "name": "traefik", + "url": "https://quay.io/repository/internaldatahub/traefik", + "popularity": 992.0 + }, + { + "name": "traefik", + "url": "https://quay.io/repository/swsmirror/traefik", + "popularity": 1.0 + }, + { + "name": "traefik", + "url": "https://quay.io/repository/fivium/traefik", + "popularity": 157.0 + }, + { + "name": "traefik", + "url": "https://quay.io/repository/testing-farm/traefik", + "popularity": 14.0 + }, + { + "name": "traefik", + "url": "https://quay.io/repository/rizoa/traefik", + "popularity": 0.0 + }, + { + "name": "traefik", + "url": "https://quay.io/repository/procentive/traefik", + "popularity": 120.0 + }, + { + "name": "traefik", + "url": "https://quay.io/repository/errm/traefik", + "popularity": 0.0 + }, + { + "name": "traefik", + "url": "https://quay.io/repository/kube-ops/traefik", + "popularity": 34.0 + }, + { + "name": "traefik", + "url": "https://quay.io/repository/octoblu/traefik", + "popularity": 0.0 + }, + { + "name": "traefik", + "url": "https://quay.io/repository/ecasa/traefik", + "popularity": 49.0 + } + ], + "quay_top_images": [ + { + "name": "che--traefik", + "url": "https://quay.io/repository/eclipse/che--traefik", + "popularity": 1113.0 + }, + { + "name": "traefik", + "url": "https://quay.io/repository/widen/traefik", + "popularity": 1209.0 + }, + { + "name": "traefik", + "url": "https://quay.io/repository/internaldatahub/traefik", + "popularity": 992.0 + }, + { + "name": "odh-traefik-container", + "url": "https://quay.io/repository/modh/odh-traefik-container", + "popularity": 1140.0 + }, + { + "name": "traefik-rhel8", + "url": "https://quay.io/repository/devspaces/traefik-rhel8", + "popularity": 441.0 + } + ] + }, + { + "operators": [ + { + "package_id": "0537f4df-5e83-4f58-90bd-88863cbcded5", + "name": "traefikee-operator", + "normalized_name": "traefikee-operator", + "logo_image_id": "b1ad9f2c-5d25-4146-a4a5-344d62ae2049", + "stars": 1, + "display_name": "Traefikee Operator", + "description": "Traefik Enterprise Edition", + "version": "2.1.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 98, + "high": 36, + "medium": 328, + "unknown": 1, + "critical": 7 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1576141260, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [] + } + ] + } + ], + "entity_type": 8, + "entity_id": 648 + }, + { + "IBM Cloud": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-cloud-databases-redis-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-cloud-databases-redis-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-cloud-developer-tools-amd64", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 8, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-cloud-developer-tools-amd64", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "cloud-connector", + "url": "https://quay.io/repository/sysdig/cloud-connector", + "popularity": 1263418.0 + }, + { + "name": "cloud-connector-s3-bucket-config", + "url": "https://quay.io/repository/sysdig/cloud-connector-s3-bucket-config", + "popularity": 644351.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + } + ] + }, + { + "operators": [ + { + "package_id": "5bc93626-0773-4fb6-9ab2-6ac7b1a49c81", + "name": "ibmcloud-operator", + "normalized_name": "ibmcloud-operator", + "logo_image_id": "2f1b8acc-3b7d-46d8-847e-5a2be071f37f", + "stars": 0, + "display_name": "IBM Cloud Operator", + "description": "The IBM Cloud Operator provides a Kubernetes CRD-Based API to manage the lifecycle of IBM public cloud services.", + "version": "1.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 1, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1647490660, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/cloud-operators", + "container_images": [] + }, + { + "package_id": "730af2fd-ace8-4ab8-b17f-6535c0283a4b", + "name": "ibmcloud-iam-operator", + "normalized_name": "ibmcloud-iam-operator", + "logo_image_id": "2f1b8acc-3b7d-46d8-847e-5a2be071f37f", + "stars": 0, + "display_name": "IBM Cloud IAM Operator", + "description": "The IBM Cloud IAM Operator provides a set of three Kubernetes CRD-Based APIs to manage the lifecycle of Access Policies, Access Groups, and Custom Roles on IAM for IBM public cloud.", + "version": "0.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 64, + "high": 15, + "medium": 168, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1597239415, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/ibmcloud-iam-operator", + "container_images": [] + }, + { + "package_id": "7dc3af3f-1e21-4dc9-b792-16c44216d257", + "name": "event-streams-topic", + "normalized_name": "event-streams-topic", + "logo_image_id": "2f1b8acc-3b7d-46d8-847e-5a2be071f37f", + "stars": 0, + "display_name": "Event Streams Topic", + "description": "An operator for the life cycle management of Topics on Event Streams for IBM Cloud", + "version": "0.1.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 82, + "high": 8, + "medium": 37, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1572357160, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/event-streams-topic", + "container_images": [] + }, + { + "package_id": "90cdc9d8-91df-4b68-b4a4-def5b6109f9d", + "name": "cos-bucket-operator", + "normalized_name": "cos-bucket-operator", + "logo_image_id": "768edd17-ad00-48dd-a716-e3fc8aa311c9", + "stars": 0, + "display_name": "IBM COS Bucket Operator", + "description": "The IBM Bucket Operator provides a Kubernetes CRD-Based API to manage the lifecycle of IBM Cloud Object Storage Bucket.", + "version": "0.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 72, + "high": 2, + "medium": 33, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1566563916, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/cos-bucket-operator", + "container_images": [] + }, + { + "package_id": "6b6f53e4-cf5f-4977-b151-24ce56e48a76", + "name": "composable-operator", + "normalized_name": "composable-operator", + "logo_image_id": "2f1b8acc-3b7d-46d8-847e-5a2be071f37f", + "stars": 0, + "display_name": "Composable", + "description": "Operator that can wrap any resource to make it dynamically configurable", + "version": "0.1.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 3, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1573936771, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/composable", + "container_images": [] + }, + { + "package_id": "097570ef-5856-4966-9cf9-1125451d0959", + "name": "esindex-operator", + "normalized_name": "esindex-operator", + "logo_image_id": "2f1b8acc-3b7d-46d8-847e-5a2be071f37f", + "stars": 0, + "display_name": "Elasticsearch Index Operator", + "description": "An operator for managing indices on elasticsearch services", + "version": "0.1.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 82, + "high": 8, + "medium": 43, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1565343638, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/esindex-operator", + "container_images": [] + }, + { + "package_id": "eaf3f39e-2ac7-4bd0-87bf-275421fb6353", + "name": "ibm-block-csi-operator-community", + "normalized_name": "ibm-block-csi-operator-community", + "logo_image_id": "b6312740-e66c-4339-9d0c-3931772fafb9", + "stars": 0, + "display_name": "IBM block storage CSI driver operator", + "description": "Run IBM block storage CSI driver.", + "version": "1.9.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 3, + "medium": 44, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1640430000, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/IBM/ibm-block-csi-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 2, + "entity_id": 649 + }, + { + "YugabyteDB": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "yugabytedb", + "url": "https://quay.io/repository/marco_antonioni/yugabytedb", + "popularity": 0.0 + }, + { + "name": "yugabytedb", + "url": "https://quay.io/repository/gitpodified-workspace-images/yugabytedb", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "yugabytedb-operator", + "url": "https://quay.io/repository/yugabyte/yugabytedb-operator", + "popularity": 4074.0 + }, + { + "name": "yugabytedb", + "url": "https://quay.io/repository/marco_antonioni/yugabytedb", + "popularity": 0.0 + }, + { + "name": "yugabytedb", + "url": "https://quay.io/repository/gitpodified-workspace-images/yugabytedb", + "popularity": 0.0 + }, + { + "name": "debezium-connector", + "url": "https://quay.io/repository/yugabyte/debezium-connector", + "popularity": 93.0 + }, + { + "name": "cdcsdk-server", + "url": "https://quay.io/repository/yugabyte/cdcsdk-server", + "popularity": 3.0 + } + ] + }, + { + "operators": [ + { + "package_id": "1ca682cc-893b-4732-857b-54b72348ce0e", + "name": "yugabyte-operator", + "normalized_name": "yugabyte-operator", + "logo_image_id": "a1aa6034-65a6-4d9d-b1fc-71cd6698c50f", + "stars": 0, + "display_name": "Yugabyte Operator", + "description": "This operator installs and manages a YugabyteDB cluster.", + "version": "0.0.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 183, + "high": 10, + "medium": 263, + "unknown": 1, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525858, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/yugabyte/yugabyte-operator", + "container_images": [ + "quay.io/yugabyte/yugabytedb-operator" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 650 + }, + { + "CockroachDB": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "cockroachdb", + "url": "https://quay.io/repository/helmoperators/cockroachdb", + "popularity": 2464.0 + }, + { + "name": "cockroachdb", + "url": "https://quay.io/repository/operatorhubio/cockroachdb", + "popularity": 264.0 + }, + { + "name": "cockroachdb", + "url": "https://quay.io/repository/community-operators-pipeline/cockroachdb", + "popularity": 0.0 + }, + { + "name": "cockroachdb", + "url": "https://quay.io/repository/openshift-community-operators/cockroachdb", + "popularity": 159.0 + } + ], + "quay_top_images": [ + { + "name": "cockroachdb-index", + "url": "https://quay.io/repository/olmqe/cockroachdb-index", + "popularity": 6461.0 + }, + { + "name": "cockroachdb-operator", + "url": "https://quay.io/repository/olmqe/cockroachdb-operator", + "popularity": 5116.0 + }, + { + "name": "cockroachdb", + "url": "https://quay.io/repository/helmoperators/cockroachdb", + "popularity": 2464.0 + }, + { + "name": "cockroachdb-operator", + "url": "https://quay.io/repository/kuiwang/cockroachdb-operator", + "popularity": 1096.0 + }, + { + "name": "spicedb", + "url": "https://quay.io/repository/authzed/spicedb", + "popularity": 12045.0 + } + ] + }, + { + "operators": [ + { + "package_id": "a15239ff-70b2-46bd-b8a1-3d9bbc4bdf88", + "name": "cockroachdb", + "normalized_name": "cockroachdb", + "logo_image_id": "ef784d7c-0148-4372-9038-456507436d13", + "stars": 1, + "display_name": "CockroachDB", + "description": "CockroachDB Operator based on the CockroachDB helm chart", + "version": "5.0.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 58, + "high": 24, + "medium": 172, + "unknown": 5, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525858, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/dmesser/cockroachdb-operator", + "container_images": [ + "quay.io/helmoperators/cockroachdb:v5.0.4" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 651 + }, + { + "Jaeger": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "jaeger", + "url": "https://quay.io/repository/operatorhubio/jaeger", + "popularity": 1398.0 + }, + { + "name": "jaeger", + "url": "https://quay.io/repository/openshift-community-operators/jaeger", + "popularity": 814.0 + } + ], + "quay_top_images": [ + { + "name": "jaeger-operator", + "url": "https://quay.io/repository/jaegertracing/jaeger-operator", + "popularity": 56323.0 + }, + { + "name": "jaeger-agent", + "url": "https://quay.io/repository/jaegertracing/jaeger-agent", + "popularity": 22847.0 + }, + { + "name": "jaeger-query", + "url": "https://quay.io/repository/jaegertracing/jaeger-query", + "popularity": 10012.0 + }, + { + "name": "jaeger-collector", + "url": "https://quay.io/repository/jaegertracing/jaeger-collector", + "popularity": 15227.0 + }, + { + "name": "jaeger", + "url": "https://quay.io/repository/operatorhubio/jaeger", + "popularity": 1398.0 + } + ] + }, + { + "operators": [ + { + "package_id": "e781d781-f624-4df9-9c8d-d4a7de517006", + "name": "jaeger", + "normalized_name": "jaeger", + "logo_image_id": "11252ebc-4a8c-4d12-bdca-01f583e483b4", + "stars": 4, + "display_name": "Community Jaeger Operator", + "description": "Provides tracing, monitoring and troubleshooting for microservices-based distributed systems", + "version": "1.35.0", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1567603720, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/jaegertracing/jaeger-operator", + "container_images": [ + "quay.io/jaegertracing/jaeger-operator:1.35.0" + ] + } + ] + } + ], + "entity_type": 10, + "entity_id": 652 + }, + { + "Natural Programming Language": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "intel/language-translation", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-translation", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "intel/language-modeling", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 91508.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + }, + { + "name": "spicedb", + "url": "https://quay.io/repository/authzed/spicedb", + "popularity": 12045.0 + }, + { + "name": "statsd-exporter", + "url": "https://quay.io/repository/prometheus/statsd-exporter", + "popularity": 8725.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 653 + }, + { + "AcuCOBOL": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 654 + }, + { + "Ada": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "r-ada", + "url": "https://quay.io/repository/biocontainers/r-ada", + "popularity": 0.0 + }, + { + "name": "ghost-ada", + "url": "https://quay.io/repository/fivepi/ghost-ada", + "popularity": 0.0 + }, + { + "name": "ruby", + "url": "https://quay.io/repository/ibmz/ruby", + "popularity": 0.0 + }, + { + "name": "ruby", + "url": "https://quay.io/repository/ibm/ruby", + "popularity": 0.0 + }, + { + "name": "hildafrederica", + "url": "https://quay.io/repository/hfredca/hildafrederica", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 655 + }, + { + "ADABAS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 656 + }, + { + "ADSO": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 657 + }, + { + "Ansible": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ansible-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ansible-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/ansible-runner", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/rancher/ansible-runner", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibp-ansible", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibp-ansible", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ansible-s390x", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ansible-s390x", + "OS": [ + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "ansible", + "url": "https://quay.io/repository/cloudctl/ansible", + "popularity": 589.0 + }, + { + "name": "ansible", + "url": "https://quay.io/repository/containercraft/ansible", + "popularity": 5.0 + }, + { + "name": "ansible", + "url": "https://quay.io/repository/osbuild/ansible", + "popularity": 735.0 + } + ], + "quay_top_images": [ + { + "name": "ansible-operator", + "url": "https://quay.io/repository/operator-framework/ansible-operator", + "popularity": 20473.0 + }, + { + "name": "origin-ansible", + "url": "https://quay.io/repository/openshift/origin-ansible", + "popularity": 11569.0 + }, + { + "name": "ansible-runner", + "url": "https://quay.io/repository/ansible/ansible-runner", + "popularity": 11749.0 + }, + { + "name": "ansible-core-test-container", + "url": "https://quay.io/repository/ansible/ansible-core-test-container", + "popularity": 8601.0 + }, + { + "name": "gitlab-ansible-runner", + "url": "https://quay.io/repository/sheogorath/gitlab-ansible-runner", + "popularity": 20160.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 658 + }, + { + "Batch": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "cloud-batch", + "url": "https://quay.io/repository/ss75710541/cloud-batch", + "popularity": 1512.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 32086.0 + }, + { + "name": "batch-export", + "url": "https://quay.io/repository/cdis/batch-export", + "popularity": 679.0 + }, + { + "name": "batch-job-controller", + "url": "https://quay.io/repository/bakito/batch-job-controller", + "popularity": 66.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 659 + }, + { + "Powershell": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "powershell", + "url": "https://quay.io/repository/powerdock/powershell", + "popularity": 0.0 + }, + { + "name": "powershell", + "url": "https://quay.io/repository/travisez13/powershell", + "popularity": 0.0 + }, + { + "name": "powershell", + "url": "https://quay.io/repository/redhatworkshops/powershell", + "popularity": 0.0 + }, + { + "name": "powershell", + "url": "https://quay.io/repository/mczernek/powershell", + "popularity": 0.0 + }, + { + "name": "powershell", + "url": "https://quay.io/repository/simplikube_ce/powershell", + "popularity": 0.0 + }, + { + "name": "powershell", + "url": "https://quay.io/repository/simplikube_ee/powershell", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "powershell-lean", + "url": "https://quay.io/repository/powerdock/powershell-lean", + "popularity": 0.0 + }, + { + "name": "ansible-powershell", + "url": "https://quay.io/repository/andrewrothstein/ansible-powershell", + "popularity": 0.0 + }, + { + "name": "powershell-source", + "url": "https://quay.io/repository/powerdock/powershell-source", + "popularity": 0.0 + }, + { + "name": "vsts-agent-ubuntu-16.04-standard", + "url": "https://quay.io/repository/10thmagnitude/vsts-agent-ubuntu-16.04-standard", + "popularity": 1.0 + }, + { + "name": "box-ps", + "url": "https://quay.io/repository/cincan/box-ps", + "popularity": 3.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 660 + }, + { + "COM+": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [ + { + "package_id": "b134bee3-539b-4fe6-bc24-4aa7e3e1f11c", + "name": "postgresql-operator-dev4devs-com", + "normalized_name": "postgresql-operator-dev4devs-com", + "logo_image_id": "2a4da4ce-b519-46af-bb1c-d845e5d9a772", + "stars": 0, + "display_name": "PostgreSQL Operator by Dev4Ddevs.com", + "description": "Operator in Go developed using the Operator Framework to package, install, configure and manage a PostgreSQL database. This project includes backup feature.", + "version": "0.1.1", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1567929600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/dev4devs-com/postgresql-operator", + "container_images": [ + "quay.io/dev4devs-com/postgresql-operator:0.1.1" + ] + }, + { + "package_id": "614a5896-0b60-4e2b-a5b7-3b694658ab2a", + "name": "strimzi-kafka-operator", + "normalized_name": "strimzi-kafka-operator", + "logo_image_id": "83c34ef5-d2f7-4282-94ab-468dea859677", + "stars": 18, + "display_name": "Strimzi", + "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", + "version": "0.29.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 412, + "high": 38, + "medium": 473, + "unknown": 7, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1652572867, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/strimzi/strimzi-kafka-operator", + "container_images": [ + "quay.io/strimzi/operator", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka", + "quay.io/strimzi/kafka-bridge", + "quay.io/strimzi/jmxtrans", + "quay.io/strimzi/kaniko-executor", + "quay.io/strimzi/maven-builder" + ] + }, + { + "package_id": "cd93e666-2b6d-419e-879d-3890b5f7c200", + "name": "keycloak-operator", + "normalized_name": "keycloak-operator", + "logo_image_id": "fd90a09f-d3e5-45bf-8c8f-589634592369", + "stars": 14, + "display_name": "Keycloak Operator", + "description": "An Operator for installing and managing Keycloak", + "version": "20.0.0-alpha.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 38, + "high": 0, + "medium": 47, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656518437, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/keycloak/keycloak", + "container_images": [ + "quay.io/keycloak/keycloak-operator:18.0.2" + ] + }, + { + "package_id": "2d28ca38-12b7-469f-b82e-f00edde51d19", + "name": "prometheus", + "normalized_name": "prometheus", + "logo_image_id": "150dd205-ff78-4478-824c-ffb2a140edcf", + "stars": 14, + "display_name": "Prometheus Operator", + "description": "Manage the full lifecycle of configuring and managing Prometheus and Alertmanager servers.", + "version": "0.47.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 2, + "unknown": 2, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1618530180, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/prometheus-operator/prometheus-operator", + "container_images": [ + "quay.io/prometheus-operator/prometheus-operator:v0.47.0" + ] + }, + { + "package_id": "b1aa6353-146c-477c-943e-5a5558b65dc3", + "name": "elastic-cloud-eck", + "normalized_name": "elastic-cloud-eck", + "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", + "stars": 13, + "display_name": "Elasticsearch (ECK) Operator", + "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", + "version": "2.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1657006653, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/elastic/cloud-on-k8s", + "container_images": [] + }, + { + "package_id": "62d3a0f9-3d23-48f0-9bee-9b4f2060c6df", + "name": "postgresql", + "normalized_name": "postgresql", + "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", + "stars": 13, + "display_name": "Crunchy Postgres for Kubernetes", + "description": "Production Postgres Made Easy", + "version": "5.1.2", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 23, + "high": 0, + "medium": 32, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1657571435, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/CrunchyData/postgres-operator", + "container_images": [] + }, + { + "package_id": "0c44b6e2-521b-4485-9d14-fd8f01ea6a4d", + "name": "knative-operator", + "normalized_name": "knative-operator", + "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", + "stars": 12, + "display_name": "Knative Operator", + "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", + "version": "1.5.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656460800, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/knative/operator", + "container_images": [] + }, + { + "package_id": "bb525733-deee-4431-9b51-4897c8d6d21b", + "name": "redis-operator", + "normalized_name": "redis-operator", + "logo_image_id": "60503f77-253d-4491-adff-e6e55c547ef7", + "stars": 9, + "display_name": "Redis Operator", + "description": "A Golang based redis operator that will make/oversee Redis standalone/cluster mode setup on top of the Kubernetes.", + "version": "0.11.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1657396835, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/ot-container-kit/redis-operator", + "container_images": [ + "quay.io/opstree/redis-operator:v0.11.0" + ] + }, + { + "package_id": "6d932520-44ce-4954-a8ea-f687ad8cf170", + "name": "rook-ceph", + "normalized_name": "rook-ceph", + "logo_image_id": "9234e87f-8c06-4e85-ad9c-3b4f0b95fbd6", + "stars": 8, + "display_name": "Rook-Ceph", + "description": "Install and maintain Ceph Storage cluster", + "version": "1.1.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 509, + "high": 33, + "medium": 719, + "unknown": 0, + "critical": 7 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525859, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/rook/rook", + "container_images": [] + }, + { + "package_id": "fa7ed65b-05ef-428d-952c-05f929661806", + "name": "argocd-operator", + "normalized_name": "argocd-operator", + "logo_image_id": "b26087ab-be34-4750-abab-955e472c3887", + "stars": 7, + "display_name": "Argo CD", + "description": "Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.", + "version": "0.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1650443438, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/argoproj-labs/argocd-operator", + "container_images": [ + "quay.io/argoprojlabs/argocd-operator" + ] + }, + { + "package_id": "5667c55e-0a99-4011-9ab6-7bc3487f43a7", + "name": "grafana-operator", + "normalized_name": "grafana-operator", + "logo_image_id": "27dba515-e77b-4e81-b7ac-484df9e02086", + "stars": 7, + "display_name": "Grafana Operator", + "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", + "version": "4.4.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 4, + "high": 0, + "medium": 3, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1652090412, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/grafana-operator/grafana-operator", + "container_images": [ + "quay.io/grafana-operator/grafana-operator:v4.4.1" + ] + }, + { + "package_id": "ac42caed-76b2-42c8-bf98-533fd044eca6", + "name": "starboard-operator", + "normalized_name": "starboard-operator", + "logo_image_id": "7750edcf-42ac-436d-920a-341ef3f473e8", + "stars": 7, + "display_name": "Starboard Operator", + "description": "Keeps security report resources updated", + "version": "0.15.6", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1654107072, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aquasecurity/starboard", + "container_images": [ + "docker.io/aquasec/starboard-operator:0.15.6" + ] + }, + { + "package_id": "66a8d8ef-e05d-44be-b704-474e144b8b9b", + "name": "tidb-operator", + "normalized_name": "tidb-operator", + "logo_image_id": "b328c448-efbb-4aab-a463-8437ab8898bb", + "stars": 7, + "display_name": "TiDB Operator", + "description": "TiDB Operator manages TiDB clusters on Kubernetes and automates tasks related to operating a TiDB cluster. It makes TiDB a truly cloud-native database.", + "version": "1.3.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 4, + "high": 8, + "medium": 31, + "unknown": 8, + "critical": 2 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1645693233, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/pingcap/tidb-operator", + "container_images": [] + }, + { + "package_id": "95833125-3a5b-4da5-a985-21f172238a61", + "name": "clickhouse", + "normalized_name": "clickhouse", + "logo_image_id": "f00ce069-4086-4f36-bb6e-bb805373bfa7", + "stars": 5, + "display_name": "Altinity Operator for ClickHouse", + "description": "ClickHouse Operator manages full lifecycle of ClickHouse clusters.", + "version": "0.18.3", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1573466400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/altinity/clickhouse-operator", + "container_images": [] + }, + { + "package_id": "0e2ae061-9331-4d12-b4a6-eec1def5eaea", + "name": "flux", + "normalized_name": "flux", + "logo_image_id": "59b3d9ab-5b8b-45bc-935f-cf711c5fece0", + "stars": 5, + "display_name": "Flux", + "description": "Flux is a Continuous Delivery solution for Kubernetes.", + "version": "0.31.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656606635, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [] + }, + { + "package_id": "e3f8d531-6ea5-48ce-ac99-505c79414881", + "name": "percona-xtradb-cluster-operator", + "normalized_name": "percona-xtradb-cluster-operator", + "logo_image_id": "0b8875cd-6661-4269-9cf6-0fd92d59017b", + "stars": 5, + "display_name": "Percona Distribution for MySQL Operator", + "description": "Percona Distribution for MySQL Operator manages the lifecycle of Percona XtraDB cluster instances.", + "version": "1.10.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 5, + "medium": 48, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1640178704, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/percona/percona-xtradb-cluster-operator", + "container_images": [] + }, + { + "package_id": "f5c53828-c741-4ea7-97b6-89071b3c0b7e", + "name": "rocketmq-operator", + "normalized_name": "rocketmq-operator", + "logo_image_id": "350d3cf0-d7e6-4500-871c-733f06713494", + "stars": 5, + "display_name": "RocketMQ Operator", + "description": "The RocketMQ Operator manages the Apache RocketMQ service instances deployed on the Kubernetes cluster.", + "version": "0.2.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 142, + "high": 39, + "medium": 107, + "unknown": 3, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525858, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/apache/rocketmq-operator", + "container_images": [] + }, + { + "package_id": "2ffd7a04-d749-4bcf-b682-a2483c3dd4fe", + "name": "storageos", + "normalized_name": "storageos", + "logo_image_id": "ce032151-64d8-4b3b-b172-016dac88d973", + "stars": 5, + "display_name": "StorageOS", + "description": "Cloud-native, persistent storage for containers.", + "version": "2.6.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 5, + "medium": 44, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1647018033, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/storageos/operator", + "container_images": [] + }, + { + "package_id": "e84c500f-01ea-4b9e-be93-8f78f5aacb55", + "name": "falco", + "normalized_name": "falco", + "logo_image_id": "4abae28d-6739-466d-befd-c0b0f76d7d2c", + "stars": 4, + "display_name": "Falco Operator", + "description": "Falco is a behavioral activity monitor designed to detect anomalous activity in your applications. You can use Falco to monitor run-time security of your Kubernetes applications and internal components.", + "version": "0.7.6", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 222, + "high": 19, + "medium": 364, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1552415400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/falcosecurity/falco-operator/tree/helm-based-operator", + "container_images": [ + "docker.io/falcosecurity/falco-operator-helm:0.7.6" + ] + }, + { + "package_id": "e781d781-f624-4df9-9c8d-d4a7de517006", + "name": "jaeger", + "normalized_name": "jaeger", + "logo_image_id": "11252ebc-4a8c-4d12-bdca-01f583e483b4", + "stars": 4, + "display_name": "Community Jaeger Operator", + "description": "Provides tracing, monitoring and troubleshooting for microservices-based distributed systems", + "version": "1.35.0", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1567603720, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/jaegertracing/jaeger-operator", + "container_images": [ + "quay.io/jaegertracing/jaeger-operator:1.35.0" + ] + } + ] + } + ], + "entity_type": 10, + "entity_id": 661 + }, + { + "Dataflex": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 662 + }, + { + "DDS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "dds", + "url": "https://quay.io/repository/havoc/dds", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "dds", + "url": "https://quay.io/repository/havoc/dds", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 663 + }, + { + "Forte": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 664 + }, + { + "Foxpro": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 665 + }, + { + "IBM DB2 Purescale": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/db2", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 129, + "Docker_Url": "https://hub.docker.com/r/ibmcom/db2", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/db2-amd64", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/ibmcom/db2-amd64", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 666 + }, + { + "IDMS DB": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "appdynamics/db-agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/appdynamics/db-agent", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 667 + }, + { + "IDMS DML": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "dml", + "url": "https://quay.io/repository/digitalmarketinglucknow/dml", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 668 + }, + { + "Jaguar": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 669 + }, + { + "EAServer": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 670 + }, + { + "Apache Cassandra": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/apache", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 81, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ubuntu/cassandra", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/ubuntu/cassandra", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/cassandra", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/cassandra", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/cassandra", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 44, + "Docker_Url": "https://hub.docker.com/r/bitnami/cassandra", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "cassandra", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1388, + "Docker_Url": "https://hub.docker.com/_/cassandra", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 826844.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/strimzi/operator", + "popularity": 412398.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + } + ] + }, + { + "operators": [ + { + "package_id": "280420eb-a3b0-46fa-bef3-4300e85a7ad1", + "name": "cass-operator-community", + "normalized_name": "cass-operator-community", + "logo_image_id": "ac0cc465-c42f-43d9-a288-ec178d9f3ef9", + "stars": 0, + "display_name": "DataStax Kubernetes Operator for Apache Cassandra", + "description": "Simple provisioning, turn-key operations, and automated remediation of Apache Cassandra clusters\n", + "version": "1.10.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 7, + "high": 0, + "medium": 7, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1652441433, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/k8ssandra/cass-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 2, + "entity_id": 671 + }, + { + "IBM Netezza": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 201157.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 4, + "entity_id": 672 + }, + { + "OpenEdge": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "openedge", + "url": "https://quay.io/repository/g_querret/openedge", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "openedge", + "url": "https://quay.io/repository/g_querret/openedge", + "popularity": 0.0 + }, + { + "name": "openedge-appserver", + "url": "https://quay.io/repository/g_querret/openedge-appserver", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 673 + }, + { + "OpenROAD": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 674 + }, + { + "Oracle Reports": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/core-oracle-7", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-7", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/core-oracle-8", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/core-oracle-8", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-7-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-8-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "teleport", + "url": "https://quay.io/repository/gravitational/teleport", + "popularity": 157544.0 + }, + { + "name": "invidious", + "url": "https://quay.io/repository/invidious/invidious", + "popularity": 38116.0 + }, + { + "name": "teleport-ent", + "url": "https://quay.io/repository/gravitational/teleport-ent", + "popularity": 38658.0 + }, + { + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", + "popularity": 20112.0 + }, + { + "name": "mysqld-exporter", + "url": "https://quay.io/repository/prometheus/mysqld-exporter", + "popularity": 19079.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 675 + }, + { + "SAP Replication Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/server-base", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/server-base", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/server-nomad", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 676 + }, + { + "Git": [ + { + "dockerhub_exact_images": [ + { + "name": "bitnami/git", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 26, + "Docker_Url": "https://hub.docker.com/r/bitnami/git", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "bitnami/git", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 26, + "Docker_Url": "https://hub.docker.com/r/bitnami/git", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/git-porter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/git-porter", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/git-serve", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/git-serve", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/git-logrotate", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/git-logrotate", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/git-mirror", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/git-mirror", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "git", + "url": "https://quay.io/repository/sisense/git", + "popularity": 959.0 + } + ], + "quay_top_images": [ + { + "name": "cf-git-cloner", + "url": "https://quay.io/repository/codefresh/cf-git-cloner", + "popularity": 164003.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "argo-hub-workflows-codefresh-csdp-versions-0.0.6-images-image-enricher-git-info", + "url": "https://quay.io/repository/codefreshplugins/argo-hub-workflows-codefresh-csdp-versions-0.0.6-images-image-enricher-git-info", + "popularity": 92575.0 + }, + { + "name": "git-chglog", + "url": "https://quay.io/repository/git-chglog/git-chglog", + "popularity": 9716.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + } + ] + }, + { + "operators": [ + { + "package_id": "8b72bf5d-95c7-4d04-ae1b-0e0a4707da45", + "name": "ks-releaser-operator", + "normalized_name": "ks-releaser-operator", + "logo_image_id": "497c778d-fa76-48cc-baed-8e73e1c1dc7e", + "stars": 0, + "display_name": "ks-releaser", + "description": "ks-releaser aims to help to release a project which especially has multiple git repositories.", + "version": "0.0.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1637377224, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/kubesphere-sigs/ks-releaser-operator", + "container_images": [] + }, + { + "package_id": "fa7ed65b-05ef-428d-952c-05f929661806", + "name": "argocd-operator", + "normalized_name": "argocd-operator", + "logo_image_id": "b26087ab-be34-4750-abab-955e472c3887", + "stars": 7, + "display_name": "Argo CD", + "description": "Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.", + "version": "0.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1650443438, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/argoproj-labs/argocd-operator", + "container_images": [ + "quay.io/argoprojlabs/argocd-operator" + ] + }, + { + "package_id": "0e2ae061-9331-4d12-b4a6-eec1def5eaea", + "name": "flux", + "normalized_name": "flux", + "logo_image_id": "59b3d9ab-5b8b-45bc-935f-cf711c5fece0", + "stars": 5, + "display_name": "Flux", + "description": "Flux is a Continuous Delivery solution for Kubernetes.", + "version": "0.31.3", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1656606635, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [] + }, + { + "package_id": "c193b9f1-6b12-4a26-94d5-e938d71b55fa", + "name": "argocd-operator-helm", + "normalized_name": "argocd-operator-helm", + "logo_image_id": "95a289ac-3877-4372-a2f6-e551dcacbefa", + "stars": 2, + "display_name": "Argo CD Operator (Helm)", + "description": "Declarative Continuous Delivery following Gitops.", + "version": "0.0.7", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 64, + "high": 16, + "medium": 168, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1594083661, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/disposab1e/argocd-operator-helm.git", + "container_images": [ + "quay.io/disposab1e/argocd-operator-helm" + ] + }, + { + "package_id": "44ad7306-e2e9-46ad-ba77-75d9d394fa3d", + "name": "external-secrets-operator", + "normalized_name": "external-secrets-operator", + "logo_image_id": "3e9f62d2-6760-4599-a686-026510e964cf", + "stars": 0, + "display_name": "External Secrets Operator", + "description": "Operator to configure external-secrets helm-chart based operator", + "version": "0.5.7", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 11, + "medium": 52, + "unknown": 5, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1637539200, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/external-secrets/external-secrets-helm-operator", + "container_images": [] + }, + { + "package_id": "2dd25343-072b-4338-8cad-143c9345f863", + "name": "gitlab-operator-kubernetes", + "normalized_name": "gitlab-operator-kubernetes", + "logo_image_id": "b8069ce9-c81e-4b7e-83b0-61115f98f09f", + "stars": 0, + "display_name": "GitLab", + "version": "0.6.3", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1583933340, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://gitlab.com/gitlab-org/cloud-native/gitlab-operator", + "container_images": [] + }, + { + "package_id": "1b382e52-7788-4d54-acea-613fc250f33b", + "name": "gitlab-runner-operator", + "normalized_name": "gitlab-runner-operator", + "logo_image_id": "b8069ce9-c81e-4b7e-83b0-61115f98f09f", + "stars": 0, + "display_name": "GitLab Runner", + "description": "GitLab Runner operator manages lifecycle of GitLab Runner instances", + "version": "1.9.0", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1607351820, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator", + "container_images": [] + }, + { + "package_id": "602c249d-7cb1-4912-95c2-f92a307ed609", + "name": "multicluster-operators-subscription", + "normalized_name": "multicluster-operators-subscription", + "logo_image_id": "b8f50d66-a6af-43a9-a715-90f62bcf0558", + "stars": 0, + "display_name": "Multicluster Subscription Operator", + "description": "An operator to subscribe resources from nameSpace, objectBucket, helm and github types of channels", + "version": "0.2.8", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 57, + "high": 19, + "medium": 143, + "unknown": 10, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1619632800, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/open-cluster-management/multicloud-operators-subscription", + "container_images": [ + "quay.io/open-cluster-management/multicluster-operators-subscription:2.3.0" + ] + }, + { + "package_id": "ba4f209b-1125-42ef-bb8b-37c099c256ef", + "name": "tf-controller", + "normalized_name": "tf-controller", + "logo_image_id": "77607ceb-06d5-4aad-85fb-d0f2e5a171bd", + "stars": 0, + "display_name": "Weave GitOps Terraform Controller", + "description": "Weave TF-controller is a Flux controller that brings GitOps to Terraform resources.", + "version": "0.9.0-rc.8", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 8, + "medium": 2, + "unknown": 0, + "critical": 5 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1647691231, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [] + } + ] + } + ], + "entity_type": 2, + "entity_id": 677 + }, + { + "GitLab": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/gitlab-runner", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 11, + "Docker_Url": "https://hub.docker.com/r/bitnami/gitlab-runner", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/gitlab-runner-helper", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/bitnami/gitlab-runner-helper", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "gitlab", + "url": "https://quay.io/repository/sameersbn/gitlab", + "popularity": 603.0 + }, + { + "name": "gitlab", + "url": "https://quay.io/repository/stoplight/gitlab", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "gitlab-runner-docker-cleanup", + "url": "https://quay.io/repository/gitlab/gitlab-runner-docker-cleanup", + "popularity": 802500.0 + }, + { + "name": "gitlab-runner", + "url": "https://quay.io/repository/gitlab/gitlab-runner", + "popularity": 19926.0 + }, + { + "name": "gitlab-ansible-runner", + "url": "https://quay.io/repository/sheogorath/gitlab-ansible-runner", + "popularity": 20160.0 + }, + { + "name": "nginx", + "url": "https://quay.io/repository/jitesoft/nginx", + "popularity": 80338.0 + }, + { + "name": "invidious", + "url": "https://quay.io/repository/invidious/invidious", + "popularity": 38116.0 + } + ] + }, + { + "operators": [ + { + "package_id": "2dd25343-072b-4338-8cad-143c9345f863", + "name": "gitlab-operator-kubernetes", + "normalized_name": "gitlab-operator-kubernetes", + "logo_image_id": "b8069ce9-c81e-4b7e-83b0-61115f98f09f", + "stars": 0, + "display_name": "GitLab", + "version": "0.6.3", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1583933340, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://gitlab.com/gitlab-org/cloud-native/gitlab-operator", + "container_images": [] + }, + { + "package_id": "1b382e52-7788-4d54-acea-613fc250f33b", + "name": "gitlab-runner-operator", + "normalized_name": "gitlab-runner-operator", + "logo_image_id": "b8069ce9-c81e-4b7e-83b0-61115f98f09f", + "stars": 0, + "display_name": "GitLab Runner", + "description": "GitLab Runner operator manages lifecycle of GitLab Runner instances", + "version": "1.9.0", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1607351820, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator", + "container_images": [] + }, + { + "package_id": "44ad7306-e2e9-46ad-ba77-75d9d394fa3d", + "name": "external-secrets-operator", + "normalized_name": "external-secrets-operator", + "logo_image_id": "3e9f62d2-6760-4599-a686-026510e964cf", + "stars": 0, + "display_name": "External Secrets Operator", + "description": "Operator to configure external-secrets helm-chart based operator", + "version": "0.5.7", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 11, + "medium": 52, + "unknown": 5, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1637539200, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/external-secrets/external-secrets-helm-operator", + "container_images": [] + } + ] + } + ], + "entity_type": 2, + "entity_id": 678 + }, + { + "VSAM": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 679 + }, + { + "Apache HTTP Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + }, + { + "name": "nginx-ingress-controller", + "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", + "popularity": 1153447.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 680 + }, + { + "Windows Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/windows-scheduler", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/rancher/windows-scheduler", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 681 + }, + { + "MS SQL Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "gooddata/sql-executor", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wire-server-cache", + "url": "https://quay.io/repository/wire/wire-server-cache", + "popularity": 42591.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 682 + }, + { + "Azure SQL Server Database": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "mongodb-enterprise-database", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", + "popularity": 118389.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6909853.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2476799.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 683 + }, + { + "MySQL": [ + { + "dockerhub_exact_images": [ + { + "name": "mysql", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 12858, + "Docker_Url": "https://hub.docker.com/_/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 26, + "Docker_Url": "https://hub.docker.com/r/circleci/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 72, + "Docker_Url": "https://hub.docker.com/r/bitnami/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ubuntu/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 34, + "Docker_Url": "https://hub.docker.com/r/ubuntu/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "cimg/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/cimg/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "google/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 21, + "Docker_Url": "https://hub.docker.com/r/google/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + }, + { + "name": "mirantis/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/mirantis/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "mirantis/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/mirantis/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "google/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 21, + "Docker_Url": "https://hub.docker.com/r/google/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + }, + { + "name": "ubuntu/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 34, + "Docker_Url": "https://hub.docker.com/r/ubuntu/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "cimg/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/cimg/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 72, + "Docker_Url": "https://hub.docker.com/r/bitnami/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "mysql", + "url": "https://quay.io/repository/openshifttest/mysql", + "popularity": 14939.0 + }, + { + "name": "mysql", + "url": "https://quay.io/repository/gauravkumar9130/mysql", + "popularity": 13.0 + }, + { + "name": "mysql", + "url": "https://quay.io/repository/prsurve/mysql", + "popularity": 6657.0 + }, + { + "name": "mysql", + "url": "https://quay.io/repository/cybozu/mysql", + "popularity": 4676.0 + }, + { + "name": "mysql", + "url": "https://quay.io/repository/hazelcast_cloud/mysql", + "popularity": 2013.0 + }, + { + "name": "mysql", + "url": "https://quay.io/repository/operations/mysql", + "popularity": 1019.0 + }, + { + "name": "mysql", + "url": "https://quay.io/repository/bridgez/mysql", + "popularity": 10.0 + } + ], + "quay_top_images": [ + { + "name": "mysql-80-centos7", + "url": "https://quay.io/repository/centos7/mysql-80-centos7", + "popularity": 255184.0 + }, + { + "name": "mysql", + "url": "https://quay.io/repository/openshifttest/mysql", + "popularity": 14939.0 + }, + { + "name": "mysql-operator", + "url": "https://quay.io/repository/presslabs/mysql-operator", + "popularity": 43507.0 + }, + { + "name": "mariadb-103-centos7", + "url": "https://quay.io/repository/centos7/mariadb-103-centos7", + "popularity": 241707.0 + }, + { + "name": "mariadb-105-centos7", + "url": "https://quay.io/repository/centos7/mariadb-105-centos7", + "popularity": 136441.0 + } + ] + }, + { + "operators": [ + { + "package_id": "f8501214-7170-40b0-8449-d3c8e4f63505", + "name": "mysql", + "normalized_name": "mysql", + "logo_image_id": "751286dc-9e5c-4218-b8bf-98b2b0052231", + "stars": 0, + "display_name": "GrdsCloud MySQL for Kubernetes", + "description": "Enterprise open source MySQL-as-a-Service", + "version": "1.0.0", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525858, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/GrdsCloud", + "container_images": [] + }, + { + "package_id": "e3f8d531-6ea5-48ce-ac99-505c79414881", + "name": "percona-xtradb-cluster-operator", + "normalized_name": "percona-xtradb-cluster-operator", + "logo_image_id": "0b8875cd-6661-4269-9cf6-0fd92d59017b", + "stars": 5, + "display_name": "Percona Distribution for MySQL Operator", + "description": "Percona Distribution for MySQL Operator manages the lifecycle of Percona XtraDB cluster instances.", + "version": "1.10.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 5, + "medium": 48, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1640178704, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/percona/percona-xtradb-cluster-operator", + "container_images": [] + }, + { + "package_id": "ca2f64be-928c-44f1-8d64-81c7fecf4326", + "name": "planetscale", + "normalized_name": "planetscale", + "stars": 2, + "display_name": "PlanetScale Operator for Vitess", + "description": "PlanetScale's operator for Vitess deploys and manages instances of MySQL with Vitess, a database clustering system for horizontal scaling of MySQL.", + "version": "0.1.8", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1551908400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [] + }, + { + "package_id": "6afbd6a8-28d4-40f7-9f2e-0a7d34fe833e", + "name": "prometheus-exporter-operator", + "normalized_name": "prometheus-exporter-operator", + "logo_image_id": "8ab25f0a-48a9-48db-9082-31c5c161c106", + "stars": 0, + "display_name": "Prometheus Exporter Operator", + "description": "Operator to setup 3rd party prometheus exporters, with a collection of grafana dashboards", + "version": "0.2.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 88, + "high": 29, + "medium": 270, + "unknown": 1, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1591574400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/3scale/prometheus-exporter-operator", + "container_images": [ + "quay.io/3scale/prometheus-exporter-operator:v0.2.4" + ] + } + ] + } + ], + "entity_type": 2, + "entity_id": 684 + }, + { + "Oracle Database": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "kasmweb/oracle-8-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "kasmweb/oracle-7-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 255406.0 + }, + { + "name": "mariadb-103-centos7", + "url": "https://quay.io/repository/centos7/mariadb-103-centos7", + "popularity": 241707.0 + }, + { + "name": "postgresql-10-centos7", + "url": "https://quay.io/repository/centos7/postgresql-10-centos7", + "popularity": 189232.0 + }, + { + "name": "billing-sidecar", + "url": "https://quay.io/repository/sdase/billing-sidecar", + "popularity": 183418.0 + }, + { + "name": "postgresql-13-centos7", + "url": "https://quay.io/repository/centos7/postgresql-13-centos7", + "popularity": 140143.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 685 + }, + { + "PostgreSQL": [ + { + "dockerhub_exact_images": [ + { + "name": "bitnami/postgresql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 148, + "Docker_Url": "https://hub.docker.com/r/bitnami/postgresql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/postgresql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/postgresql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "pachyderm/postgresql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/pachyderm/postgresql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "pachyderm/postgresql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/pachyderm/postgresql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/postgresql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/postgresql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/postgresql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 148, + "Docker_Url": "https://hub.docker.com/r/bitnami/postgresql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/postgresql-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/postgresql-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/postgresql-amd64", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/postgresql-amd64", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "postgresql", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/postgresql", + "popularity": 0.0 + }, + { + "name": "postgresql", + "url": "https://quay.io/repository/enterprisedb/postgresql", + "popularity": 18302.0 + }, + { + "name": "postgresql", + "url": "https://quay.io/repository/aptible/postgresql", + "popularity": 1432.0 + }, + { + "name": "postgresql", + "url": "https://quay.io/repository/operatorhubio/postgresql", + "popularity": 1536.0 + } + ], + "quay_top_images": [ + { + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 255406.0 + }, + { + "name": "postgresql-10-centos7", + "url": "https://quay.io/repository/centos7/postgresql-10-centos7", + "popularity": 189232.0 + }, + { + "name": "postgresql-13-centos7", + "url": "https://quay.io/repository/centos7/postgresql-13-centos7", + "popularity": 140143.0 + }, + { + "name": "postgresql-operator", + "url": "https://quay.io/repository/dev4devs-com/postgresql-operator", + "popularity": 18838.0 + }, + { + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", + "popularity": 20112.0 + } + ] + }, + { + "operators": [ + { + "package_id": "b72ad34b-4452-476b-b603-50275ec2837c", + "name": "postgresql-operator", + "normalized_name": "postgresql-operator", + "stars": 0, + "display_name": "Postgresql Operator", + "description": "Deploys postgresql based applications", + "version": "0.0.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 128, + "high": 37, + "medium": 350, + "unknown": 1, + "critical": 8 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1576227600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/janepelladinesh/postgresql-operator", + "container_images": [ + "quay.io/deekshah86/postgresql-operator" + ] + }, + { + "package_id": "d4082ba3-8c37-4dae-8771-6b11dc7c0f33", + "name": "percona-postgresql-operator", + "normalized_name": "percona-postgresql-operator", + "logo_image_id": "0b8875cd-6661-4269-9cf6-0fd92d59017b", + "stars": 0, + "display_name": "Percona Operator for PostgreSQL", + "description": "Percona Operator for PostgreSQL manages the lifecycle of Percona PostgreSQL cluster instances.", + "version": "1.2.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 25, + "high": 2, + "medium": 32, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1649682704, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/percona/percona-postgresql-operator", + "container_images": [] + }, + { + "package_id": "b134bee3-539b-4fe6-bc24-4aa7e3e1f11c", + "name": "postgresql-operator-dev4devs-com", + "normalized_name": "postgresql-operator-dev4devs-com", + "logo_image_id": "2a4da4ce-b519-46af-bb1c-d845e5d9a772", + "stars": 0, + "display_name": "PostgreSQL Operator by Dev4Ddevs.com", + "description": "Operator in Go developed using the Operator Framework to package, install, configure and manage a PostgreSQL database. This project includes backup feature.", + "version": "0.1.1", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1567929600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/dev4devs-com/postgresql-operator", + "container_images": [ + "quay.io/dev4devs-com/postgresql-operator:0.1.1" + ] + }, + { + "package_id": "62d3a0f9-3d23-48f0-9bee-9b4f2060c6df", + "name": "postgresql", + "normalized_name": "postgresql", + "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", + "stars": 13, + "display_name": "Crunchy Postgres for Kubernetes", + "description": "Production Postgres Made Easy", + "version": "5.1.2", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 23, + "high": 0, + "medium": 32, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 1, + "ts": 1657571435, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/CrunchyData/postgres-operator", + "container_images": [] + }, + { + "package_id": "0246f8b7-d8d5-4880-a099-1e1e84cc127f", + "name": "cloud-native-postgresql", + "normalized_name": "cloud-native-postgresql", + "logo_image_id": "33922b5a-7a59-46b9-baba-8bc9e74c3457", + "stars": 1, + "display_name": "EDB Postgres for Kubernetes", + "description": "Operator to manage Postgres high availability clusters with a primary/standby architecture.", + "version": "1.15.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 23, + "high": 1, + "medium": 32, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1654016342, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [ + "quay.io/enterprisedb/cloud-native-postgresql" + ] + }, + { + "package_id": "5d3739dc-d633-42f3-9334-be29d154a718", + "name": "postgres-operator", + "normalized_name": "postgres-operator", + "logo_image_id": "932e96b3-34be-4e2f-bd53-b30903d20a2d", + "stars": 3, + "display_name": "Postgres-Operator", + "description": "Postgres operator creates and manages PostgreSQL clusters running in Kubernetes.", + "version": "1.4.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 2, + "high": 11, + "medium": 8, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1563964200, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/zalando/postgres-operator", + "container_images": [] + }, + { + "package_id": "938c53a5-59e0-45ba-9025-29d1bfdde8a5", + "name": "ext-postgres-operator", + "normalized_name": "ext-postgres-operator", + "stars": 0, + "display_name": "Ext Postgres Operator", + "description": "Manage databases and roles in external PostgreSQL server or cluster", + "version": "0.4.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 201, + "high": 19, + "medium": 338, + "unknown": 2, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1576764720, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/movetokube/postgres-operator", + "container_images": [] + }, + { + "package_id": "8ead8d37-cba9-449e-a7df-ee5c0745564f", + "name": "nuxeo-operator", + "normalized_name": "nuxeo-operator", + "logo_image_id": "6540df42-6fe6-428e-b81b-8777c396d3b0", + "stars": 0, + "display_name": "Nuxeo Operator", + "description": "The Nuxeo Operator manages a Nuxeo cluster, integrating it\nwith backing services like Kafka, Elastic Search, MongoDB, and PostgreSQL\n", + "version": "0.7.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 2, + "medium": 1, + "unknown": 3, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1601078400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aceeric/nuxeo-operator", + "container_images": [ + "docker.io/appzygy/nuxeo-operator:0.7.1" + ] + }, + { + "package_id": "6afbd6a8-28d4-40f7-9f2e-0a7d34fe833e", + "name": "prometheus-exporter-operator", + "normalized_name": "prometheus-exporter-operator", + "logo_image_id": "8ab25f0a-48a9-48db-9082-31c5c161c106", + "stars": 0, + "display_name": "Prometheus Exporter Operator", + "description": "Operator to setup 3rd party prometheus exporters, with a collection of grafana dashboards", + "version": "0.2.4", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 88, + "high": 29, + "medium": 270, + "unknown": 1, + "critical": 6 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1591574400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/3scale/prometheus-exporter-operator", + "container_images": [ + "quay.io/3scale/prometheus-exporter-operator:v0.2.4" + ] + }, + { + "package_id": "330ddb0a-13ae-44f0-88d7-831638cc78b8", + "name": "robin-operator", + "normalized_name": "robin-operator", + "logo_image_id": "89f07c38-1802-404e-8503-29262a374d3a", + "stars": 0, + "display_name": "Robin Cloud Native Storage", + "description": "Robin Cloud Native Storage operator enables advanced data management capabilities to Kubernetes apps like snapshot,clone,rollback,backup,restore,import,etc.", + "version": "5.3.2-59", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 2, + "high": 31, + "medium": 11, + "unknown": 1, + "critical": 5 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1645291832, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": null, + "container_images": [] + } + ] + } + ], + "entity_type": 2, + "entity_id": 686 + }, + { + "AWS RDS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "amazon/aws-cli", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 176, + "Docker_Url": "https://hub.docker.com/r/amazon/aws-cli", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "check-aws-tags", + "url": "https://quay.io/repository/sergioballesteros/check-aws-tags", + "popularity": 42674.0 + }, + { + "name": "aws-account-operator-registry", + "url": "https://quay.io/repository/app-sre/aws-account-operator-registry", + "popularity": 27710.0 + }, + { + "name": "aws-nuke", + "url": "https://quay.io/repository/rebuy/aws-nuke", + "popularity": 33368.0 + }, + { + "name": "operator-aws", + "url": "https://quay.io/repository/cilium/operator-aws", + "popularity": 30335.0 + }, + { + "name": "aws-vpce-operator", + "url": "https://quay.io/repository/app-sre/aws-vpce-operator", + "popularity": 53183.0 + } + ] + }, + { + "operators": [ + { + "package_id": "21e1f0d4-8f58-4c03-be76-d99ee8445483", + "name": "ack-rds-controller", + "normalized_name": "ack-rds-controller", + "logo_image_id": "775b686e-bf56-4de1-b0b1-534b90765baf", + "stars": 0, + "display_name": "AWS Controllers for Kubernetes - Amazon RDS", + "description": "AWS RDS controller is a service controller for managing RDS resources in Kubernetes", + "version": "0.0.28", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1657570374, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/aws-controllers-k8s", + "container_images": [] + }, + { + "package_id": "0c99b78e-0e8f-4c60-a7fd-95e5a117c293", + "name": "universal-crossplane", + "normalized_name": "universal-crossplane", + "logo_image_id": "bbb04768-9178-47e5-9630-e93cab3711af", + "stars": 1, + "display_name": "Upbound Universal Crossplane (UXP)", + "description": "Upbound Universal Crossplane (UXP) is Upbound's official enterprise-grade distribution of Crossplane.", + "version": "1.5.1-up.1", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 2, + "medium": 0, + "unknown": 4, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1638270024, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/upbound/universal-crossplane", + "container_images": [] + } + ] + } + ], + "entity_type": 2, + "entity_id": 687 + }, + { + "SAP HANA DB": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "appdynamics/db-agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/appdynamics/db-agent", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "sap-side-by-side-be", + "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", + "popularity": 3358.0 + }, + { + "name": "sap-btp-operator", + "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", + "popularity": 132.0 + }, + { + "name": "container-image-registry", + "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", + "popularity": 7558.0 + }, + { + "name": "sdi-observer", + "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", + "popularity": 6548.0 + }, + { + "name": "sdi-observer", + "url": "https://quay.io/repository/miminar/sdi-observer", + "popularity": 165.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 688 + }, + { + "BMS Map": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "pachyderm/map", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/pachyderm/map", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 353617.0 + }, + { + "name": "etl-map-omop-vocabulary", + "url": "https://quay.io/repository/lifebitai/etl-map-omop-vocabulary", + "popularity": 230.0 + }, + { + "name": "spark-operator", + "url": "https://quay.io/repository/radanalyticsio/spark-operator", + "popularity": 25798.0 + }, + { + "name": "statsd-exporter", + "url": "https://quay.io/repository/prometheus/statsd-exporter", + "popularity": 8725.0 + }, + { + "name": "daemon", + "url": "https://quay.io/repository/ceph/daemon", + "popularity": 3450.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 689 + }, + { + "DB400": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 690 + }, + { + "ILE": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "takipzade", + "url": "https://quay.io/repository/takipzadetakipci/takipzade", + "popularity": 0.0 + }, + { + "name": "instagram-takipci-satin-al", + "url": "https://quay.io/repository/instagramtakipcial/instagram-takipci-satin-al", + "popularity": 0.0 + }, + { + "name": "instagramtakipci", + "url": "https://quay.io/repository/takipavm1/instagramtakipci", + "popularity": 0.0 + }, + { + "name": "takipci-aldim", + "url": "https://quay.io/repository/takipcialdim/takipci-aldim", + "popularity": 0.0 + }, + { + "name": "bitcoin-hesabi-acma", + "url": "https://quay.io/repository/bitcoinhesabiacma/bitcoin-hesabi-acma", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 691 + }, + { + "Integrated Data Store": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "nginx-ingress-controller", + "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", + "popularity": 1153447.0 + }, + { + "name": "k8s-sidecar", + "url": "https://quay.io/repository/kiwigrid/k8s-sidecar", + "popularity": 1320477.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 746280.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 692 + }, + { + "ISAM": [ + { + "dockerhub_exact_images": [ + { + "name": "ibmcom/isam", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/ibmcom/isam", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "ibmcom/isam", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/ibmcom/isam", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/isam-postgresql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 8, + "Docker_Url": "https://hub.docker.com/r/ibmcom/isam-postgresql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/isam-openldap", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/ibmcom/isam-openldap", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "isam-test", + "url": "https://quay.io/repository/docker-build/isam-test", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 693 + }, + { + "Oracle RDS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/wordpress-k8s-rds-cnab", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/bitnami/wordpress-k8s-rds-cnab", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "oracle-12c", + "url": "https://quay.io/repository/maksymbilenko/oracle-12c", + "popularity": 15052.0 + }, + { + "name": "debezium-container-for-oracle", + "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", + "popularity": 6801.0 + }, + { + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", + "popularity": 20112.0 + }, + { + "name": "edb-postgres-advanced", + "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", + "popularity": 13004.0 + }, + { + "name": "mysqld-exporter", + "url": "https://quay.io/repository/prometheus/mysqld-exporter", + "popularity": 19079.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 694 + }, + { + "SAP IQ": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "sap-side-by-side-be", + "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", + "popularity": 3358.0 + }, + { + "name": "sap-btp-operator", + "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", + "popularity": 132.0 + }, + { + "name": "container-image-registry", + "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", + "popularity": 7558.0 + }, + { + "name": "sdi-observer", + "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", + "popularity": 6548.0 + }, + { + "name": "sdi-observer", + "url": "https://quay.io/repository/miminar/sdi-observer", + "popularity": 165.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 695 + }, + { + "Linux": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28370212.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + }, + { + "name": "ibm-management-ingress-operator", + "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", + "popularity": 111760.0 + }, + { + "name": "ibm-commonui-operator", + "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", + "popularity": 117024.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 696 + }, + { + "Apache Maven": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "atlassian/maven", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/atlassian/maven", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "maven", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1382, + "Docker_Url": "https://hub.docker.com/_/maven", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/apache", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 81, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "pingidentity/apache-jmeter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/apache-exporter", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 826844.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/strimzi/operator", + "popularity": 412398.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 260690.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 204679.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 697 + }, + { + "IBM Basic Assembly Language": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibm-semeru-runtimes", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 17, + "Docker_Url": "https://hub.docker.com/_/ibm-semeru-runtimes", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 501119.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 537774.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 374265.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 365187.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5802611.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 698 + } +] \ No newline at end of file diff --git a/kg_utils/image_search_kg/openshift_images.csv b/kg_utils/image_search_kg/openshift_images.csv new file mode 100644 index 0000000..9a3f7e5 --- /dev/null +++ b/kg_utils/image_search_kg/openshift_images.csv @@ -0,0 +1,109 @@ +openshift_images,container_name,OS,lang,lib,app,app_server,plugin,runlib,runtime,Opeshift_Correspondent_Image_Url,DockerImageType,Openshift_Correspondent_Image_Url +openshift_images,ansible,426,,,5,,,,,https://quay.io/repository/cloudctl/ansible,App, +openshift_images,asterisk,426,,,14,,,,,https://quay.io/repository/citybaseinc/asterisk,App, +openshift_images,db2,426,,,43,,,,,https://quay.io/repository/quarkusqeteam/db2,App, +openshift_images,drupal,426,,,45,,,,,https://quay.io/repository/swsmirror/drupal,App, +openshift_images,elastic,426,,,47,,,,,https://quay.io/repository/kmamgain/elastic,App, +openshift_images,genymotion,426,,,54,,,,,https://quay.io/repository/alaska/genymotion,App, +openshift_images,hadoop,426,,,57,,,,,https://quay.io/repository/iguazio/hadoop,App, +openshift_images,jenkins,426,,,90,,,,,https://quay.io/repository/cdis/jenkins,App, +openshift_images,memcached,426,,,98,,,,,https://quay.io/repository/jitesoft/memcached,App, +openshift_images,mysql,426,,,122,,,,,https://quay.io/repository/openshifttest/mysql,App, +openshift_images,neo4j,426,,,123,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/neo4j,App, +openshift_images,openldap,426,,,126,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/openldap,App, +openshift_images,openvpn,426,,,128,,,,,https://quay.io/repository/kubermatic/openvpn,App, +openshift_images,pentaho,426,,,150,,,,,https://quay.io/repository/hasni/pentaho,App, +openshift_images,postgresql,426,,,157,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/postgresql,App, +openshift_images,rabbitmq,426,,,165,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/rabbitmq,App, +openshift_images,redis,426,,,168,,,,,https://quay.io/repository/sameersbn/redis,App, +openshift_images,remedy,426,,,169,,,,,https://quay.io/repository/amosnl/remedy,App, +openshift_images,riak,426,,,170,,,,,https://quay.io/repository/dotabuff/riak,App, +openshift_images,sentry,426,,,180,,,,,https://quay.io/repository/app-sre/sentry,App, +openshift_images,sonarqube,426,,,186,,,,,https://quay.io/repository/gpte-devops-automation/sonarqube,App, +openshift_images,splunk,426,,,188,,,,,https://quay.io/repository/mariaelisacf/splunk,App, +openshift_images,whois,426,,,212,,,,,https://quay.io/repository/westonsteimel/whois,App, +openshift_images,tableau,426,,,213,,,,,https://quay.io/repository/growthstack/tableau,App, +openshift_images,wordpress,426,,,245,,,,,https://quay.io/repository/redhattraining/wordpress,App, +openshift_images,sqlite,426,,,258,,,,,https://quay.io/repository/fale/sqlite,App, +openshift_images,glassfish,426,,,,263,,,,https://quay.io/repository/mohamedf0/glassfish,App_Server, +openshift_images,haproxy,426,,,,264,,,,https://quay.io/repository/jduimovich0/haproxy,App_Server, +openshift_images,lucee,426,,,,271,,,,https://quay.io/repository/daemonite/lucee,App_Server, +openshift_images,nginx,426,,,,274,,,,https://quay.io/repository/openshift-scale/nginx,App_Server, +openshift_images,spark,426,,,,280,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/spark,App_Server, +openshift_images,awk,426,300,,,,,,,https://quay.io/repository/shenglai/awk,Lang, +openshift_images,basic,426,301,,,,,,,https://quay.io/repository/biocontainers/basic,Lang, +openshift_images,expect,426,315,,,,,,,https://quay.io/repository/baseimage/expect,Lang, +openshift_images,focus,426,321,,,,,,,https://quay.io/repository/biocontainers/focus,Lang, +openshift_images,fortran,426,322,,,,,,,https://quay.io/repository/eriktrent/fortran,Lang, +openshift_images,graphql,426,324,,,,,,,https://quay.io/repository/wasmoffload/graphql,Lang, +openshift_images,groovy,426,325,,,,,,,https://quay.io/repository/official-images/groovy,Lang, +openshift_images,java,426,331,,,,,,,https://quay.io/repository/tamr/java,Lang, +openshift_images,jcl,426,338,,,,,,,https://quay.io/repository/jclaret/jcl,Lang, +openshift_images,perl,426,347,,,,,,,https://quay.io/repository/biocontainers/perl,Lang, +openshift_images,php,426,350,,,,,,,https://quay.io/repository/kissj/php,Lang, +openshift_images,python,426,354,,,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/python,Lang, +openshift_images,ruby,426,358,,,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/ruby,Lang, +openshift_images,sas,426,360,,,,,,,https://quay.io/repository/domino/sas,Lang, +openshift_images,scala,426,362,,,,,,,https://quay.io/repository/azavea/scala,Lang, +openshift_images,typescript,426,367,,,,,,,https://quay.io/repository/ellerbrock/typescript,Lang, +openshift_images,log4j,426,,394,,,,,,https://quay.io/repository/crozzy/log4j,Lib, +openshift_images,struts,426,,402,,,,,,https://quay.io/repository/arifulhuq/struts,Lib, +openshift_images,angularjs,426,,406,,,,,,https://quay.io/repository/amaljose/angularjs,Lib, +openshift_images,react,426,,413,,,,,,https://quay.io/repository/profects/react,Lib, +openshift_images,android,418,,,,,,,,https://quay.io/repository/bitriseio/android,Os, +openshift_images,dart,421,,,,,,,,https://quay.io/repository/biocontainers/dart,Os, +openshift_images,centos,427,,,,,,,,https://quay.io/repository/centos/centos,Os, +openshift_images,debian,429,,,,,,,,https://quay.io/repository/official-images/debian,Os, +openshift_images,opensuse,431,,,,,,,,https://quay.io/repository/wstein/opensuse,Os, +openshift_images,ubuntu,436,,,,,,,,https://quay.io/repository/tamr/ubuntu,Os, +openshift_images,freebsd,447,,,,,,,,https://quay.io/repository/uchida/freebsd,Os, +openshift_images,windows,450,,,,,,,,https://quay.io/repository/mhallin/windows,Os, +openshift_images,fedora,453,,,,,,,,https://quay.io/repository/fedora/fedora,Os, +openshift_images,ado,426,,,,,,488,,https://quay.io/repository/scottlezberg/ado,Runlib, +openshift_images,wildfly,426,,,,,,493,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/wildfly,Runlib, +openshift_images,flash,426,,,,,,,504,https://quay.io/repository/biocontainers/flash,Runtime, +openshift_images,database,426,,,,,,,,https://quay.io/repository/deisci/database,Technology, +openshift_images,webtop,426,,,,,,,,https://quay.io/repository/linuxserver.io/webtop,Technology, +openshift_images,utility,426,,,,,,,,https://quay.io/repository/theiagen/utility,Technology, +openshift_images,windows,580,,,,,,,,https://quay.io/repository/mhallin/windows,Os, +openshift_images,java,426,584,,,,,,,https://quay.io/repository/tamr/java,Lang, +openshift_images,perl,426,585,,,,,,,https://quay.io/repository/biocontainers/perl,Lang, +openshift_images,php,426,586,,,,,,,https://quay.io/repository/kissj/php,Lang, +openshift_images,python,426,587,,,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/python,Lang, +openshift_images,ruby,426,588,,,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/ruby,Lang, +openshift_images,instana,426,,,,,,,611,https://quay.io/repository/yaoyao/instana,Runtime, +openshift_images,credstash,426,,,612,,,,,https://quay.io/repository/safesoftware/credstash,App, +openshift_images,snyk,426,,,613,,,,,https://quay.io/repository/exd_infra_plts_cip/snyk,App, +openshift_images,akka,426,,,614,,,,,https://quay.io/repository/j0zi/akka,App, +openshift_images,varnish,426,,,,615,,,,https://quay.io/repository/api-platform/varnish,App_Server, +openshift_images,datadog,426,,,,,,,616,https://quay.io/repository/blondie/datadog,Runtime, +openshift_images,api,426,,,,,,,,https://quay.io/repository/infrabox/api,Technology, +openshift_images,hazelcast,426,,,,,,,618,https://quay.io/repository/hazelcast_cloud/hazelcast,Runtime, +openshift_images,infinispan,426,,,619,,,,,https://quay.io/repository/operatorhubio/infinispan,App, +openshift_images,nuxeo,426,,,,,,,620,https://quay.io/repository/swsmirror/nuxeo,Runtime, +openshift_images,arangodb,426,,,621,,,,,https://quay.io/repository/swsmirror/arangodb,App, +openshift_images,clickhouse,426,,,624,,,,,https://quay.io/repository/operatorhubio/clickhouse,App, +openshift_images,minio,426,,,625,,,,,https://quay.io/repository/minio/minio,App, +openshift_images,elasticsearch,426,,,626,,,,,https://quay.io/repository/fluentd_elasticsearch/elasticsearch,App, +openshift_images,keycloak,426,,,628,,,,,https://quay.io/repository/keycloak/keycloak,App, +openshift_images,grafana,426,,,629,,,,,https://quay.io/repository/tamr/grafana,App, +openshift_images,mattermost,426,,,,,,,630,https://quay.io/repository/jostone/mattermost,Runtime, +openshift_images,synapse,426,,,631,,,,,https://quay.io/repository/dockernohub/synapse,App, +openshift_images,kubeflow,426,,,,,,,635,https://quay.io/repository/operatorhubio/kubeflow,Runtime, +openshift_images,sematext,426,,,,,,,639,https://quay.io/repository/operatorhubio/sematext,Runtime, +openshift_images,mariadb,426,,,642,,,,,https://quay.io/repository/startx/mariadb,App, +openshift_images,istio,426,,,644,,,,,https://quay.io/repository/aspenmesh/istio,App, +openshift_images,vault,426,,,645,,,,,https://quay.io/repository/cybozu/vault,App, +openshift_images,etcd,426,,,647,,,,,https://quay.io/repository/coreos/etcd,App, +openshift_images,traefik,426,,,,648,,,,https://quay.io/repository/widen/traefik,App_Server, +openshift_images,yugabytedb,426,,,650,,,,,https://quay.io/repository/marco_antonioni/yugabytedb,App, +openshift_images,cockroachdb,426,,,651,,,,,https://quay.io/repository/helmoperators/cockroachdb,App, +openshift_images,jaeger,426,,,,,,,652,https://quay.io/repository/operatorhubio/jaeger,Runtime, +openshift_images,ansible,426,,,658,,,,,https://quay.io/repository/cloudctl/ansible,App, +openshift_images,powershell,426,660,,,,,,,https://quay.io/repository/powerdock/powershell,Lang, +openshift_images,dds,426,663,,,,,,,https://quay.io/repository/havoc/dds,Lang, +openshift_images,openedge,426,673,,,,,,,https://quay.io/repository/g_querret/openedge,Lang, +openshift_images,git,426,,,677,,,,,https://quay.io/repository/sisense/git,App, +openshift_images,gitlab,426,,,678,,,,,https://quay.io/repository/sameersbn/gitlab,App, +openshift_images,mysql,426,,,684,,,,,https://quay.io/repository/openshifttest/mysql,App, +openshift_images,postgresql,426,,,686,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/postgresql,App, diff --git a/kg_utils/image_search_kg/operator_images.csv b/kg_utils/image_search_kg/operator_images.csv new file mode 100644 index 0000000..b3da26b --- /dev/null +++ b/kg_utils/image_search_kg/operator_images.csv @@ -0,0 +1,441 @@ +operator_images,container_name,OS,lang,lib,app,app_server,plugin,runlib,runtime,Operator_Correspondant_Image_Url,Operator_Repository,Other_Operators +operator_images,Strimzi,426,,,9,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator, +operator_images,Eclipse Che,426,,,46,,,,,"[""''quay.io/eclipse/che-operator''"", ""''quay.io/che-incubator/configbump''"", ""''quay.io/che-incubator/header-rewrite-proxy''"", ""''quay.io/devfile/devworkspace-controller''"", ""''quay.io/eclipse/che--centos--postgresql-13-centos7''"", ""''quay.io/eclipse/che--centos--postgresql-96-centos7''"", ""''quay.io/eclipse/che--traefik''"", ""''quay.io/eclipse/che-backup-server-rest''"", ""''quay.io/eclipse/che-dashboard''"", ""''quay.io/eclipse/che-devfile-registry''"", ""''quay.io/eclipse/che-jwtproxy''"", ""''quay.io/eclipse/che-keycloak''"", ""''quay.io/eclipse/che-plugin-artifacts-broker''"", ""''quay.io/eclipse/che-plugin-metadata-broker''"", ""''quay.io/eclipse/che-plugin-registry''"", ""''quay.io/eclipse/che-server''"", ""''quay.io/eclipse/che-tls-secret-creator''"", ""''quay.io/openshift/origin-kube-rbac-proxy''"", ""''quay.io/openshift/origin-oauth-proxy''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/windupeng/mta-vscode-extension''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-theia''"", ""''quay.io/eclipse/che-machine-exec''"", ""''quay.io/eclipse/che-theia-endpoint-runtime-binary''"", ""''index.docker.io/ksmster/che-editor-jupyter''"", ""''index.docker.io/dirigiblelabs/dirigible-openshift''"", ""''quay.io/che-incubator/che-idea''"", ""''quay.io/che-incubator/che-pycharm''"", ""''index.docker.io/wsskeleton/eclipse-broadway''"", ""''index.docker.io/codercom/code-server''"", ""''quay.io/eclipse/che-buildah-base''"", ""''quay.io/eclipse/che-sidecar-workspace-data-sync''"", ""''quay.io/eclipse/che-buildkit-base''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mysql-57-centos7''"", ""''quay.io/eclipse/che-cpp-rhel7''"", ""''quay.io/eclipse/che-dotnet-2.2''"", ""''quay.io/eclipse/che-dotnet-3.1''"", ""''quay.io/eclipse/che-golang-1.17''"", ""''quay.io/eclipse/che-java11-gradle''"", ""''quay.io/eclipse/che-java11-maven''"", ""''quay.io/eclipse/che-java8-maven''"", ""''quay.io/eclipse/che-nodejs10-community''"", ""''quay.io/eclipse/che-nodejs10-ubi''"", ""''quay.io/eclipse/che-nodejs12-community''"", ""''quay.io/eclipse/che-nodejs8-centos''"", ""''quay.io/eclipse/che-php-7''"", ""''quay.io/eclipse/che-python-3.8''"", ""''quay.io/eclipse/che-quarkus''"", ""''quay.io/eclipse/che-rust-1.39''""]",https://github.com/eclipse-che/che-operator, +operator_images,Eclipse Ditto,426,,,46,,,,,,https://github.com/ctron/ditto-operator, +operator_images,Eclipse Hawkbit,426,,,46,,,,,,https://github.com/ctron/hawkbit-operator, +operator_images,IoT simulator,426,,,46,,,,,,https://github.com/ctron/iot-simulator-operator, +operator_images,Elasticsearch (ECK) Operator,426,,,47,,,,,,https://github.com/elastic/cloud-on-k8s, +operator_images,Elasticsearch Phenix Operator,426,,,47,,,,,,https://github.com/Carrefour-Group/elastic-phenix-operator, +operator_images,Nuxeo Operator,426,,,47,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator, +operator_images,Logging Operator,426,,,47,,,,,"[""''quay.io/opstree/logging-operator:v0.3.0''""]",https://github.com/ot-container-kit/logging-operator, +operator_images,AWS Controllers for Kubernetes - Amazon ElastiCache,426,,,47,,,,,,https://github.com/aws-controllers-k8s, +operator_images,Elasticsearch Index Operator,426,,,47,,,,,,https://github.com/IBM/esindex-operator, +operator_images,Prometheus Exporter Operator,426,,,47,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator, +operator_images,IBM Spectrum Scale CSI Plugin Operator,426,,,74,,,,,"[""''quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator''""]",https://github.com/IBM/ibm-spectrum-scale-csi/, +operator_images,Kong Operator,426,,,88,,,,,,https://github.com/kong/kong-operator, +operator_images,Jenkins Operator,426,,,90,,,,,,https://github.com/jenkinsci/kubernetes-operator, +operator_images,Prometheus Exporter Operator,426,,,98,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator, +operator_images,MongoDB Enterprise Operator,426,,,116,,,,,"[""''quay.io/mongodb/mongodb-enterprise-operator-ubi:1.16.2''""]",https://github.com/mongodb/mongodb-enterprise-kubernetes, +operator_images,MongoDB Operator,426,,,116,,,,,"[""''quay.io/opstree/mongodb-operator:v0.3.0''""]",https://github.com/ot-container-kit/mongodb-operator, +operator_images,MongoDB Atlas Operator,426,,,116,,,,,,, +operator_images,Percona Distribution for MongoDB Operator,426,,,116,,,,,,https://github.com/percona/percona-server-mongodb-operator, +operator_images,Nuxeo Operator,426,,,116,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator, +operator_images,GrdsCloud MySQL for Kubernetes,426,,,122,,,,,,https://github.com/GrdsCloud, +operator_images,Percona Distribution for MySQL Operator,426,,,122,,,,,,https://github.com/percona/percona-xtradb-cluster-operator, +operator_images,PlanetScale Operator for Vitess,426,,,122,,,,,,, +operator_images,Prometheus Exporter Operator,426,,,122,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator, +operator_images,Postgresql Operator,426,,,157,,,,,"[""''quay.io/deekshah86/postgresql-operator''""]",https://github.com/janepelladinesh/postgresql-operator, +operator_images,Percona Operator for PostgreSQL,426,,,157,,,,,,https://github.com/percona/percona-postgresql-operator, +operator_images,PostgreSQL Operator by Dev4Ddevs.com,426,,,157,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator, +operator_images,Crunchy Postgres for Kubernetes,426,,,157,,,,,,https://github.com/CrunchyData/postgres-operator, +operator_images,EDB Postgres for Kubernetes,426,,,157,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]",, +operator_images,Postgres-Operator,426,,,157,,,,,,https://github.com/zalando/postgres-operator, +operator_images,Ext Postgres Operator,426,,,157,,,,,,https://github.com/movetokube/postgres-operator, +operator_images,Nuxeo Operator,426,,,157,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator, +operator_images,Prometheus Exporter Operator,426,,,157,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator, +operator_images,Robin Cloud Native Storage,426,,,157,,,,,,, +operator_images,Redis Operator,426,,,168,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator, +operator_images,Redis Enterprise,426,,,168,,,,,,, +operator_images,Prometheus Exporter Operator,426,,,168,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator, +operator_images,Splunk Operator,426,,,188,,,,,,, +operator_images,Encrypted Images Key Syncer Helm Operator,426,,,209,,,,,"[""''docker.io/lumjjb/enc-key-sync-operator:v0.0.1''""]",https://github.com/IBM/k8s-enc-image-operator, +operator_images,Joget DX on Apache Tomcat,426,,,,260,,,,,https://github.com/jogetworkflow/, +operator_images,APIcast,426,,,,274,,,,"[""''quay.io/3scale/apicast-operator:v0.4.0''""]",https://github.com/3scale/apicast-operator, +operator_images,Spark Operator,426,,,,280,,,,,https://github.com/GoogleCloudPlatform/spark-on-k8s-operator, +operator_images,Apache Spark Operator,426,,,,280,,,,"[""''quay.io/radanalyticsio/spark-operator:1.0.2''""]",https://github.com/radanalyticsio/spark-operator, +operator_images,Kubestone,426,,,,280,,,,,https://github.com/xridge/kubestone, +operator_images,Flink Kubernetes Operator,426,301,,,,,,,"[""''docker.io/apache/flink-kubernetes-operator:1.0.1''""]",https://github.com/apache/flink-kubernetes-operator.git, +operator_images,Alvearie Imaging Ingestion Operator,426,303,,,,,,,,https://github.com/Alvearie/imaging-ingestion, +operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,303,,,,,,,,https://github.com/k8ssandra/cass-operator, +operator_images,Qserv operator,426,303,,,,,,,,https://github.com/lsst/qserv-operator, +operator_images,Strimzi,426,303,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator, +operator_images,Keycloak Operator,426,303,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak, +operator_images,Prometheus Operator,426,303,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator, +operator_images,Elasticsearch (ECK) Operator,426,303,,,,,,,,https://github.com/elastic/cloud-on-k8s, +operator_images,Crunchy Postgres for Kubernetes,426,303,,,,,,,,https://github.com/CrunchyData/postgres-operator, +operator_images,Knative Operator,426,303,,,,,,,,https://github.com/knative/operator, +operator_images,Redis Operator,426,303,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator, +operator_images,Rook-Ceph,426,303,,,,,,,,https://github.com/rook/rook, +operator_images,Argo CD,426,303,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator, +operator_images,Grafana Operator,426,303,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator, +operator_images,Starboard Operator,426,303,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard, +operator_images,TiDB Operator,426,303,,,,,,,,https://github.com/pingcap/tidb-operator, +operator_images,Altinity Operator for ClickHouse,426,303,,,,,,,,https://github.com/altinity/clickhouse-operator, +operator_images,Flux,426,303,,,,,,,,, +operator_images,Percona Distribution for MySQL Operator,426,303,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator, +operator_images,RocketMQ Operator,426,303,,,,,,,,https://github.com/apache/rocketmq-operator, +operator_images,StorageOS,426,303,,,,,,,,https://github.com/storageos/operator, +operator_images,Alvearie Imaging Ingestion Operator,426,304,,,,,,,,https://github.com/Alvearie/imaging-ingestion, +operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,304,,,,,,,,https://github.com/k8ssandra/cass-operator, +operator_images,Qserv operator,426,304,,,,,,,,https://github.com/lsst/qserv-operator, +operator_images,Strimzi,426,304,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator, +operator_images,Keycloak Operator,426,304,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak, +operator_images,Prometheus Operator,426,304,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator, +operator_images,Elasticsearch (ECK) Operator,426,304,,,,,,,,https://github.com/elastic/cloud-on-k8s, +operator_images,Crunchy Postgres for Kubernetes,426,304,,,,,,,,https://github.com/CrunchyData/postgres-operator, +operator_images,Knative Operator,426,304,,,,,,,,https://github.com/knative/operator, +operator_images,Redis Operator,426,304,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator, +operator_images,Rook-Ceph,426,304,,,,,,,,https://github.com/rook/rook, +operator_images,Argo CD,426,304,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator, +operator_images,Grafana Operator,426,304,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator, +operator_images,Starboard Operator,426,304,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard, +operator_images,TiDB Operator,426,304,,,,,,,,https://github.com/pingcap/tidb-operator, +operator_images,Altinity Operator for ClickHouse,426,304,,,,,,,,https://github.com/altinity/clickhouse-operator, +operator_images,Flux,426,304,,,,,,,,, +operator_images,Percona Distribution for MySQL Operator,426,304,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator, +operator_images,RocketMQ Operator,426,304,,,,,,,,https://github.com/apache/rocketmq-operator, +operator_images,StorageOS,426,304,,,,,,,,https://github.com/storageos/operator, +operator_images,Alvearie Imaging Ingestion Operator,426,305,,,,,,,,https://github.com/Alvearie/imaging-ingestion, +operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,305,,,,,,,,https://github.com/k8ssandra/cass-operator, +operator_images,Qserv operator,426,305,,,,,,,,https://github.com/lsst/qserv-operator, +operator_images,Strimzi,426,305,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator, +operator_images,Keycloak Operator,426,305,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak, +operator_images,Prometheus Operator,426,305,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator, +operator_images,Elasticsearch (ECK) Operator,426,305,,,,,,,,https://github.com/elastic/cloud-on-k8s, +operator_images,Crunchy Postgres for Kubernetes,426,305,,,,,,,,https://github.com/CrunchyData/postgres-operator, +operator_images,Knative Operator,426,305,,,,,,,,https://github.com/knative/operator, +operator_images,Redis Operator,426,305,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator, +operator_images,Rook-Ceph,426,305,,,,,,,,https://github.com/rook/rook, +operator_images,Argo CD,426,305,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator, +operator_images,Grafana Operator,426,305,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator, +operator_images,Starboard Operator,426,305,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard, +operator_images,TiDB Operator,426,305,,,,,,,,https://github.com/pingcap/tidb-operator, +operator_images,Altinity Operator for ClickHouse,426,305,,,,,,,,https://github.com/altinity/clickhouse-operator, +operator_images,Flux,426,305,,,,,,,,, +operator_images,Percona Distribution for MySQL Operator,426,305,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator, +operator_images,RocketMQ Operator,426,305,,,,,,,,https://github.com/apache/rocketmq-operator, +operator_images,StorageOS,426,305,,,,,,,,https://github.com/storageos/operator, +operator_images,Joget DX on Apache Tomcat,426,306,,,,,,,,https://github.com/jogetworkflow/, +operator_images,Lightbend Console Operator,426,306,,,,,,,,https://github.com/lightbend/console-charts/tree/master/operator, +operator_images,Knative Operator,426,321,,,,,,,,https://github.com/knative/operator, +operator_images,PostgreSQL Operator by Dev4Ddevs.com,426,323,,,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator, +operator_images,Redis Operator,426,323,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator, +operator_images,Logging Operator,426,323,,,,,,,"[""''quay.io/opstree/logging-operator:v0.3.0''""]",https://github.com/ot-container-kit/logging-operator, +operator_images,External Secrets Operator,426,323,,,,,,,,https://github.com/external-secrets/external-secrets-helm-operator, +operator_images,Intel Device Plugins Operator,426,323,,,,,,,,https://github.com/intel/intel-device-plugins-for-kubernetes, +operator_images,MongoDB Operator,426,323,,,,,,,"[""''quay.io/opstree/mongodb-operator:v0.3.0''""]",https://github.com/ot-container-kit/mongodb-operator, +operator_images,silicom-sts-operator,426,323,,,,,,,"[""''quay.io/silicom/sts-operator:v0.0.1''""]",github.com/silicomdk/sts-operator, +operator_images,Spark Operator,426,323,,,,,,,,https://github.com/GoogleCloudPlatform/spark-on-k8s-operator, +operator_images,WildFly,426,331,,,,,,,"[""''quay.io/wildfly/wildfly-operator:0.5.3''""]",https://github.com/wildfly/wildfly-operator, +operator_images,Eclipse Che,426,331,,,,,,,"[""''quay.io/eclipse/che-operator''"", ""''quay.io/che-incubator/configbump''"", ""''quay.io/che-incubator/header-rewrite-proxy''"", ""''quay.io/devfile/devworkspace-controller''"", ""''quay.io/eclipse/che--centos--postgresql-13-centos7''"", ""''quay.io/eclipse/che--centos--postgresql-96-centos7''"", ""''quay.io/eclipse/che--traefik''"", ""''quay.io/eclipse/che-backup-server-rest''"", ""''quay.io/eclipse/che-dashboard''"", ""''quay.io/eclipse/che-devfile-registry''"", ""''quay.io/eclipse/che-jwtproxy''"", ""''quay.io/eclipse/che-keycloak''"", ""''quay.io/eclipse/che-plugin-artifacts-broker''"", ""''quay.io/eclipse/che-plugin-metadata-broker''"", ""''quay.io/eclipse/che-plugin-registry''"", ""''quay.io/eclipse/che-server''"", ""''quay.io/eclipse/che-tls-secret-creator''"", ""''quay.io/openshift/origin-kube-rbac-proxy''"", ""''quay.io/openshift/origin-oauth-proxy''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/windupeng/mta-vscode-extension''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-theia''"", ""''quay.io/eclipse/che-machine-exec''"", ""''quay.io/eclipse/che-theia-endpoint-runtime-binary''"", ""''index.docker.io/ksmster/che-editor-jupyter''"", ""''index.docker.io/dirigiblelabs/dirigible-openshift''"", ""''quay.io/che-incubator/che-idea''"", ""''quay.io/che-incubator/che-pycharm''"", ""''index.docker.io/wsskeleton/eclipse-broadway''"", ""''index.docker.io/codercom/code-server''"", ""''quay.io/eclipse/che-buildah-base''"", ""''quay.io/eclipse/che-sidecar-workspace-data-sync''"", ""''quay.io/eclipse/che-buildkit-base''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mysql-57-centos7''"", ""''quay.io/eclipse/che-cpp-rhel7''"", ""''quay.io/eclipse/che-dotnet-2.2''"", ""''quay.io/eclipse/che-dotnet-3.1''"", ""''quay.io/eclipse/che-golang-1.17''"", ""''quay.io/eclipse/che-java11-gradle''"", ""''quay.io/eclipse/che-java11-maven''"", ""''quay.io/eclipse/che-java8-maven''"", ""''quay.io/eclipse/che-nodejs10-community''"", ""''quay.io/eclipse/che-nodejs10-ubi''"", ""''quay.io/eclipse/che-nodejs12-community''"", ""''quay.io/eclipse/che-nodejs8-centos''"", ""''quay.io/eclipse/che-php-7''"", ""''quay.io/eclipse/che-python-3.8''"", ""''quay.io/eclipse/che-quarkus''"", ""''quay.io/eclipse/che-rust-1.39''""]",https://github.com/eclipse-che/che-operator, +operator_images,AtlasMap Operator,426,331,,,,,,,"[""''quay.io/atlasmap/atlasmap-operator:0.4.1''""]",https://github.com/atlasmap/atlasmap-operator, +operator_images,Appsody Operator,426,331,,,,,,,,https://github.com/appsody/appsody-operator, +operator_images,Cryostat Operator,426,331,,,,,,,"[""''quay.io/cryostat/cryostat-operator:2.1.1''""]",github.com/cryostatio/cryostat-operator, +operator_images,Open Liberty Operator,426,331,,,,,,,,https://github.com/OpenLiberty/open-liberty-operator, +operator_images,Runtime Component Operator,426,331,,,,,,,,https://github.com/application-stacks/runtime-component-operator, +operator_images,Azure Service Operator,426,353,,,,,,,,https://github.com/Azure/azure-service-operator, +operator_images,API Operator for Kubernetes,426,353,,,,,,,,https://github.com/wso2/k8s-api-operator, +operator_images,KEDA,426,353,,,,,,,,https://github.com/kedacore/keda-olm-operator, +operator_images,WSO2 API Manager Operator for Kubernetes,426,353,,,,,,,,https://github.com/wso2/k8s-wso2am-operator, +operator_images,AWS Controllers for Kubernetes - Amazon API Gateway v2,426,353,,,,,,,,https://github.com/aws-controllers-k8s, +operator_images,AWS Controllers for Kubernetes - Amazon Application Auto Scaling,426,353,,,,,,,,https://github.com/aws-controllers-k8s, +operator_images,AWS Controllers for Kubernetes - Amazon DynamoDB,426,353,,,,,,,,https://github.com/aws-controllers-k8s, +operator_images,AWS Controllers for Kubernetes - Amazon EC2,426,353,,,,,,,,https://github.com/aws-controllers-k8s, +operator_images,AWS Controllers for Kubernetes - Amazon ECR,426,353,,,,,,,,https://github.com/aws-controllers-k8s, +operator_images,AWS Controllers for Kubernetes - Amazon EKS,426,353,,,,,,,,https://github.com/aws-controllers-k8s, +operator_images,AWS Controllers for Kubernetes - Amazon ElastiCache,426,353,,,,,,,,https://github.com/aws-controllers-k8s, +operator_images,AWS Controllers for Kubernetes - Amazon EMR on EKS,426,353,,,,,,,,https://github.com/aws-controllers-k8s, +operator_images,AWS Controllers for Kubernetes - Amazon IAM,426,353,,,,,,,,https://github.com/aws-controllers-k8s, +operator_images,AWS Controllers for Kubernetes - Amazon KMS,426,353,,,,,,,,https://github.com/aws-controllers-k8s, +operator_images,AWS Controllers for Kubernetes - Amazon Lambda,426,353,,,,,,,,https://github.com/aws-controllers-k8s, +operator_images,AWS Controllers for Kubernetes - Amazon MQ,426,353,,,,,,,,https://github.com/aws-controllers-k8s, +operator_images,AWS Controllers for Kubernetes - Amazon OpenSearch Service,426,353,,,,,,,,https://github.com/aws-controllers-k8s, +operator_images,AWS Controllers for Kubernetes - Amazon RDS,426,353,,,,,,,,https://github.com/aws-controllers-k8s, +operator_images,AWS Controllers for Kubernetes - Amazon S3,426,353,,,,,,,,https://github.com/aws-controllers-k8s, +operator_images,AWS Controllers for Kubernetes - Amazon SageMaker,426,353,,,,,,,,https://github.com/aws-controllers-k8s, +operator_images,Strimzi,426,355,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator, +operator_images,Keycloak Operator,426,355,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak, +operator_images,Prometheus Operator,426,355,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator, +operator_images,Elasticsearch (ECK) Operator,426,355,,,,,,,,https://github.com/elastic/cloud-on-k8s, +operator_images,Knative Operator,426,355,,,,,,,,https://github.com/knative/operator, +operator_images,Redis Operator,426,355,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator, +operator_images,Rook-Ceph,426,355,,,,,,,,https://github.com/rook/rook, +operator_images,Grafana Operator,426,355,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator, +operator_images,Starboard Operator,426,355,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard, +operator_images,TiDB Operator,426,355,,,,,,,,https://github.com/pingcap/tidb-operator, +operator_images,RocketMQ Operator,426,355,,,,,,,,https://github.com/apache/rocketmq-operator, +operator_images,Falco Operator,426,355,,,,,,,"[""''docker.io/falcosecurity/falco-operator-helm:0.7.6''""]",https://github.com/falcosecurity/falco-operator/tree/helm-based-operator, +operator_images,Kubemq Enterprise Operator,426,355,,,,,,,"[""''docker.io/kubemq/kubemq-operator:latest''""]",https://github.com/kubemq-io/kubemq-operator, +operator_images,Postgres-Operator,426,355,,,,,,,,https://github.com/zalando/postgres-operator, +operator_images,AWS S3 Operator,426,355,,,,,,,"[""''quay.io/screeley44/aws-s3-provisioner:v1.0.0''""]",https://github.com/yard-turkey/aws-s3-provisioner, +operator_images,Azure Service Operator,426,355,,,,,,,,https://github.com/Azure/azure-service-operator, +operator_images,ArangoDB,426,355,,,,,,,,https://github.com/arangodb/kube-arangodb, +operator_images,Redis Enterprise,426,355,,,,,,,,, +operator_images,Apicurio Registry Operator,426,355,,,,,,,"[""''quay.io/apicurio/apicurio-registry-operator:1.0.0''""]",https://github.com/Apicurio/apicurio-registry-operator, +operator_images,API Operator for Kubernetes,426,355,,,,,,,,https://github.com/wso2/k8s-api-operator, +operator_images,GitLab,426,360,,,,,,,,https://gitlab.com/gitlab-org/cloud-native/gitlab-operator, +operator_images,GitLab Runner,426,360,,,,,,,,https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator, +operator_images,nfd-operator,426,362,,,,,,,,https://github.com/kubernetes-sigs/node-feature-discovery-operator, +operator_images,Appsody Operator,426,364,,,,,,,,https://github.com/appsody/appsody-operator, +operator_images,Runtime Component Operator,426,364,,,,,,,,https://github.com/application-stacks/runtime-component-operator, +operator_images,Camel K Operator,426,,378,,,,,,"[""''docker.io/apache/camel-k:1.9.2''""]",https://github.com/apache/camel-k, +operator_images,Appsody Operator,426,,398,,,,,,,https://github.com/appsody/appsody-operator, +operator_images,Open Liberty Operator,426,,398,,,,,,,https://github.com/OpenLiberty/open-liberty-operator, +operator_images,Runtime Component Operator,426,,398,,,,,,,https://github.com/application-stacks/runtime-component-operator, +operator_images,Kogito,426,,398,,,,,,"[""''quay.io/kiegroup/kogito-operator:1.24.0''""]",https://github.com/kiegroup/kogito-operator, +operator_images,Kubeflow,424,,,,,,,,,https://github.com/kubeflow/kfctl, +operator_images,Varnish Operator,424,,,,,,,,,https://github.com/IBM/varnish-operator, +operator_images,Composable,424,,,,,,,,,https://github.com/IBM/composable, +operator_images,IBM COS Bucket Operator,424,,,,,,,,,https://github.com/IBM/cos-bucket-operator, +operator_images,Encrypted Images Key Syncer Helm Operator,424,,,,,,,,"[""''docker.io/lumjjb/enc-key-sync-operator:v0.0.1''""]",https://github.com/IBM/k8s-enc-image-operator, +operator_images,Elasticsearch Index Operator,424,,,,,,,,,https://github.com/IBM/esindex-operator, +operator_images,Event Streams Topic,424,,,,,,,,,https://github.com/IBM/event-streams-topic, +operator_images,External Secrets Operator,424,,,,,,,,,https://github.com/external-secrets/external-secrets-helm-operator, +operator_images,Hybrid Application Model Operator,424,,,,,,,,"[""''quay.io/hybridappio/ham-deploy:0.1.0''""]",https://github.com/hybridapp-io/ham-deploy, +operator_images,IBM Application Gateway Operator,424,,,,,,,,,https://github.com/IBM-Security/ibm-application-gateway-operator, +operator_images,IBM block storage CSI driver operator,424,,,,,,,,,https://github.com/IBM/ibm-block-csi-operator, +operator_images,IBM Cloud IAM Operator,424,,,,,,,,,https://github.com/IBM/ibmcloud-iam-operator, +operator_images,IBM Cloud Operator,424,,,,,,,,,https://github.com/IBM/cloud-operators, +operator_images,Ibm Quantum Operator,424,,,,,,,,"[""''quay.io/application/husky_parul/ibm-quantum-operator''""]",https://github.com/redhat-et/ibm-quantum-operator, +operator_images,IBM Security Verify Access Operator,424,,,,,,,,,https://github.com/IBM-Security/verify-access-operator, +operator_images,IBM Spectrum Scale CSI Plugin Operator,424,,,,,,,,"[""''quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator''""]",https://github.com/IBM/ibm-spectrum-scale-csi/, +operator_images,Open Liberty Operator,424,,,,,,,,,https://github.com/OpenLiberty/open-liberty-operator, +operator_images,QiskitPlayground,424,,,,,,,,"[""''docker.io/qiskit/operator:0.1''""]",https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/kubernetes-qiskit-operator, +operator_images,WildFly,426,,,,,,493,,"[""''quay.io/wildfly/wildfly-operator:0.5.3''""]",https://github.com/wildfly/wildfly-operator, +operator_images,Knative Operator,426,,,,,,,497,,https://github.com/knative/operator, +operator_images,Submariner,426,,,,,,,497,"[""''quay.io/submariner/submariner-operator:0.11.0''""]",https://github.com/submariner-io/submariner-operator, +operator_images,Kong Operator,426,,,,,,,497,,https://github.com/kong/kong-operator, +operator_images,Traefikee Operator,426,,,,,,,497,,, +operator_images,Upbound Universal Crossplane (UXP),426,,,,,,,497,,https://github.com/upbound/universal-crossplane, +operator_images,Varnish Operator,426,,,,,,,497,,https://github.com/IBM/varnish-operator, +operator_images,BeeGFS CSI Driver,426,,,,,,,497,,https://github.com/netapp/beegfs-csi-driver, +operator_images,cluster-impairment-operator,426,,,,,,,497,"[""''quay.io/redhat-performance/cluster-impairment-operator:1.0.4''""]",https://github.com/redhat-performance/cluster-impairment-operator, +operator_images,Kogito Knative Eventing Source,426,,,,,,,497,,https://github.com/knative-sandbox/eventing-kogito, +operator_images,k8gb,426,,,,,,,497,,https://github.com/k8gb-io/k8gb, +operator_images,Kubernetes NMState Operator,426,,,,,,,497,"[""''quay.io/nmstate/kubernetes-nmstate-operator:v0.47.0''""]",https://github.com/nmstate/kubernetes-nmstate, +operator_images,MARIN3R,426,,,,,,,497,"[""''quay.io/3scale/marin3r''""]",https://github.com/3scale-ops/marin3r, +operator_images,MetalLB Operator,426,,,,,,,497,"[""''quay.io/metallb/metallb-operator''""]",https://github.com/metallb/metallb-operator, +operator_images,NetObserv Operator,426,,,,,,,497,"[""''quay.io/netobserv/network-observability-operator:0.1.3''""]",https://github.com/netobserv/network-observability-operator, +operator_images,NeuVector Operator,426,,,,,,,497,,https://github.com/neuvector/neuvector-operator, +operator_images,Network Service Mesh Operator,426,,,,,,,497,"[""''quay.io/acmenezes/nsm-operator:v0.0.1''""]",https://github.com/acmenezes/nsm-operator, +operator_images,Prisma Cloud Compute Operator,426,,,,,,,497,"[""''quay.io/prismacloud/pcc-operator''""]",https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator, +operator_images,Routernetes,426,,,,,,,497,"[""''quay.io/routernetes/routernetes-operator:0.0.4''""]",https://github.com/routernetes/routernetes-operator, +operator_images,skydive-operator,426,,,,,,,497,"[""''docker.io/skydive/skydive-operator:0.0.50''""]",https://github.com/skydive-project/skydive-golang-operator, +operator_images,Tf Operator,426,,,,,,,497,"[""''docker.io/tungstenfabric/tf-operator:latest''""]",https://github.com/tungstenfabric/tf-operator, +operator_images,Nexus Operator,426,,,,,,,503,"[""''quay.io/m88i/nexus-operator:0.6.0''""]",https://github.com/m88i/nexus-operator, +operator_images,Anchore Engine Operator,426,,,,,,,503,"[""''docker.io/anchore/engine-operator:v0.1.3''""]",https://github.com/anchore/engine-operator, +operator_images,Carbonetes Operator,426,,,,,,,503,"[""''docker.io/carbonetes/operator:1.0.4''""]",https://github.com/carbonetes/carbonetes-analyzer, +operator_images,Prisma Cloud Compute Operator,426,,,,,,,503,"[""''quay.io/prismacloud/pcc-operator''""]",https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator, +operator_images,Multi-Cluster Application Dispatcher,426,,,,,,,,,, +operator_images,TiDB Operator,426,,,,,,,,,https://github.com/pingcap/tidb-operator, +operator_images,Mariadb Operator,426,,,,,,,,"[""''quay.io/manojdhanorkar/mariadb-operator:v0.0.4''""]",https://github.com/abalki001/mariadb-operator, +operator_images,PlanetScale Operator for Vitess,426,,,,,,,,,, +operator_images,PostgreSQL Operator by Dev4Ddevs.com,426,,,,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator, +operator_images,VerticaDB Operator,426,,,,,,,,"[""''docker.io/vertica/verticadb-operator:1.6.0''""]",https://github.com/vertica/vertica-kubernetes, +operator_images,Elasticsearch (ECK) Operator,426,,,,,,,,,https://github.com/elastic/cloud-on-k8s, +operator_images,Crunchy Postgres for Kubernetes,426,,,,,,,,,https://github.com/CrunchyData/postgres-operator, +operator_images,Redis Operator,426,,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator, +operator_images,Altinity Operator for ClickHouse,426,,,,,,,,,https://github.com/altinity/clickhouse-operator, +operator_images,Percona Distribution for MySQL Operator,426,,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator, +operator_images,Postgres-Operator,426,,,,,,,,,https://github.com/zalando/postgres-operator, +operator_images,Couchbase Operator,426,,,,,,,,"[""''registry.hub.docker.com/couchbase/operator:2.3.0''""]",, +operator_images,Redis Enterprise,426,,,,,,,,,, +operator_images,EDB Postgres for Kubernetes,426,,,,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]",, +operator_images,etcd,426,,,,,,,,"[""''quay.io/coreos/etcd-operator''""]",https://github.com/coreos/etcd-operator, +operator_images,Percona Distribution for MongoDB Operator,426,,,,,,,,,https://github.com/percona/percona-server-mongodb-operator, +operator_images,Upbound Universal Crossplane (UXP),426,,,,,,,,,https://github.com/upbound/universal-crossplane, +operator_images,druid-operator,426,,,,,,,,"[""''docker.io/druidio/druid-operator:0.0.9''""]",https://github.com/druid-io/druid-operator, +operator_images,Hazelcast Platform Operator,426,,,,,,,,"[""''docker.io/hazelcast/hazelcast-platform-operator:5.3''""]",, +operator_images,Infinispan Operator,426,,,,,,,,"[""''quay.io/infinispan/operator:2.2.4.Final''""]",https://github.com/infinispan/infinispan-operator, +operator_images,Crunchy Postgres for Kubernetes,426,532,,,,,,,,https://github.com/CrunchyData/postgres-operator, +operator_images,TiDB Operator,426,532,,,,,,,,https://github.com/pingcap/tidb-operator, +operator_images,EDB Postgres for Kubernetes,426,532,,,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]",, +operator_images,GrdsCloud MySQL for Kubernetes,426,532,,,,,,,,https://github.com/GrdsCloud, +operator_images,Percona Operator for PostgreSQL,426,532,,,,,,,,https://github.com/percona/percona-postgresql-operator, +operator_images,Open Liberty Operator,426,,,,,,,,,https://github.com/OpenLiberty/open-liberty-operator, +operator_images,IBM Cloud Operator,426,,,,,,,,,https://github.com/IBM/cloud-operators, +operator_images,Prisma Cloud Compute Operator,426,,,,,,,,"[""''quay.io/prismacloud/pcc-operator''""]",https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator, +operator_images,IBM Cloud IAM Operator,426,,,,,,,,,https://github.com/IBM/ibmcloud-iam-operator, +operator_images,Sosivio Autonomuous Cloud Native,426,,,,,,,,"[""''quay.io/sosivio/sosivio-operator:v1.4.1-78''"", ""''quay.io/sosivio/sosivio-operator''"", ""''quay.io/sosivio/kube-rbac-proxy''"", ""''quay.io/sosivio/nsq''"", ""''quay.io/sosivio/crud-manager''"", ""''quay.io/sosivio/sosivio-node-collector''"", ""''quay.io/sosivio/sosivio-node-pinger''"", ""''quay.io/sosivio/classifier''"", ""''quay.io/sosivio/communicator''"", ""''quay.io/sosivio/analyzer''"", ""''quay.io/sosivio/sosivio-dashboard''"", ""''quay.io/sosivio/authentication''"", ""''quay.io/sosivio/actuator''"", ""''quay.io/sosivio/sequence-recognition''"", ""''quay.io/sosivio/correlation-entities''"", ""''quay.io/sosivio/contract-testing''"", ""''quay.io/sosivio/sosiviodb''"", ""''quay.io/sosivio/draingo''"", ""''quay.io/sosivio/discovery-engine''"", ""''quay.io/sosivio/notifier''""]",https://github.com/Sosivio/operator, +operator_images,Robin Cloud Native Storage,426,,,,,,,,,, +operator_images,Banzai Cloud Kafka Operator,426,,,,,,,,,https://github.com/banzaicloud/kafka-operator/tree/master, +operator_images,EDB Postgres for Kubernetes,426,,,,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]",, +operator_images,Elasticsearch (ECK) Operator,426,,,,,,,,,https://github.com/elastic/cloud-on-k8s, +operator_images,API Operator for Kubernetes,426,,,,,,,,,https://github.com/wso2/k8s-api-operator, +operator_images,Chaosblade Operator,426,,,,,,,,,https://github.com/chaosblade-io/chaosblade-operator, +operator_images,clever-operator,426,,,,,,,,"[""''docker.io/clevercloud/clever-operator:e7cfe6efc4c4da80c722416fe1de373b789612f6''""]",https://github.com/CleverCloud/clever-operator, +operator_images,IBM COS Bucket Operator,426,,,,,,,,,https://github.com/IBM/cos-bucket-operator, +operator_images,Event Streams Topic,426,,,,,,,,,https://github.com/IBM/event-streams-topic, +operator_images,Knative Operator,426,,,,,,,,,https://github.com/knative/operator, +operator_images,Azure Service Operator,426,,,,,,,,,https://github.com/Azure/azure-service-operator, +operator_images,Upbound Universal Crossplane (UXP),426,,,,,,,,,https://github.com/upbound/universal-crossplane, +operator_images,Composable,426,,,,,,,,,https://github.com/IBM/composable, +operator_images,Elasticsearch Index Operator,426,,,,,,,,,https://github.com/IBM/esindex-operator, +operator_images,Kubefed Operator,426,,,,,,,,"[""''quay.io/openshift/kubefed-operator:v0.1.0-rc3''""]",https://github.com/openshift/kubefed-operator, +operator_images,GrdsCloud MySQL for Kubernetes,426,,,,,,,,,https://github.com/GrdsCloud, +operator_images,AtlasMap Operator,426,,,,,,,,"[""''quay.io/atlasmap/atlasmap-operator:0.4.1''""]",https://github.com/atlasmap/atlasmap-operator, +operator_images,Alvearie Imaging Ingestion Operator,426,582,,,,,,,,https://github.com/Alvearie/imaging-ingestion, +operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,582,,,,,,,,https://github.com/k8ssandra/cass-operator, +operator_images,Qserv operator,426,582,,,,,,,,https://github.com/lsst/qserv-operator, +operator_images,Strimzi,426,582,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator, +operator_images,Keycloak Operator,426,582,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak, +operator_images,Prometheus Operator,426,582,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator, +operator_images,Elasticsearch (ECK) Operator,426,582,,,,,,,,https://github.com/elastic/cloud-on-k8s, +operator_images,Crunchy Postgres for Kubernetes,426,582,,,,,,,,https://github.com/CrunchyData/postgres-operator, +operator_images,Knative Operator,426,582,,,,,,,,https://github.com/knative/operator, +operator_images,Redis Operator,426,582,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator, +operator_images,Rook-Ceph,426,582,,,,,,,,https://github.com/rook/rook, +operator_images,Argo CD,426,582,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator, +operator_images,Grafana Operator,426,582,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator, +operator_images,Starboard Operator,426,582,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard, +operator_images,TiDB Operator,426,582,,,,,,,,https://github.com/pingcap/tidb-operator, +operator_images,Altinity Operator for ClickHouse,426,582,,,,,,,,https://github.com/altinity/clickhouse-operator, +operator_images,Flux,426,582,,,,,,,,, +operator_images,Percona Distribution for MySQL Operator,426,582,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator, +operator_images,RocketMQ Operator,426,582,,,,,,,,https://github.com/apache/rocketmq-operator, +operator_images,StorageOS,426,582,,,,,,,,https://github.com/storageos/operator, +operator_images,Alvearie Imaging Ingestion Operator,426,583,,,,,,,,https://github.com/Alvearie/imaging-ingestion, +operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,583,,,,,,,,https://github.com/k8ssandra/cass-operator, +operator_images,Qserv operator,426,583,,,,,,,,https://github.com/lsst/qserv-operator, +operator_images,Strimzi,426,583,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator, +operator_images,Keycloak Operator,426,583,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak, +operator_images,Prometheus Operator,426,583,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator, +operator_images,Elasticsearch (ECK) Operator,426,583,,,,,,,,https://github.com/elastic/cloud-on-k8s, +operator_images,Crunchy Postgres for Kubernetes,426,583,,,,,,,,https://github.com/CrunchyData/postgres-operator, +operator_images,Knative Operator,426,583,,,,,,,,https://github.com/knative/operator, +operator_images,Redis Operator,426,583,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator, +operator_images,Rook-Ceph,426,583,,,,,,,,https://github.com/rook/rook, +operator_images,Argo CD,426,583,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator, +operator_images,Grafana Operator,426,583,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator, +operator_images,Starboard Operator,426,583,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard, +operator_images,TiDB Operator,426,583,,,,,,,,https://github.com/pingcap/tidb-operator, +operator_images,Altinity Operator for ClickHouse,426,583,,,,,,,,https://github.com/altinity/clickhouse-operator, +operator_images,Flux,426,583,,,,,,,,, +operator_images,Percona Distribution for MySQL Operator,426,583,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator, +operator_images,RocketMQ Operator,426,583,,,,,,,,https://github.com/apache/rocketmq-operator, +operator_images,StorageOS,426,583,,,,,,,,https://github.com/storageos/operator, +operator_images,WildFly,426,584,,,,,,,"[""''quay.io/wildfly/wildfly-operator:0.5.3''""]",https://github.com/wildfly/wildfly-operator, +operator_images,Eclipse Che,426,584,,,,,,,"[""''quay.io/eclipse/che-operator''"", ""''quay.io/che-incubator/configbump''"", ""''quay.io/che-incubator/header-rewrite-proxy''"", ""''quay.io/devfile/devworkspace-controller''"", ""''quay.io/eclipse/che--centos--postgresql-13-centos7''"", ""''quay.io/eclipse/che--centos--postgresql-96-centos7''"", ""''quay.io/eclipse/che--traefik''"", ""''quay.io/eclipse/che-backup-server-rest''"", ""''quay.io/eclipse/che-dashboard''"", ""''quay.io/eclipse/che-devfile-registry''"", ""''quay.io/eclipse/che-jwtproxy''"", ""''quay.io/eclipse/che-keycloak''"", ""''quay.io/eclipse/che-plugin-artifacts-broker''"", ""''quay.io/eclipse/che-plugin-metadata-broker''"", ""''quay.io/eclipse/che-plugin-registry''"", ""''quay.io/eclipse/che-server''"", ""''quay.io/eclipse/che-tls-secret-creator''"", ""''quay.io/openshift/origin-kube-rbac-proxy''"", ""''quay.io/openshift/origin-oauth-proxy''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/windupeng/mta-vscode-extension''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-theia''"", ""''quay.io/eclipse/che-machine-exec''"", ""''quay.io/eclipse/che-theia-endpoint-runtime-binary''"", ""''index.docker.io/ksmster/che-editor-jupyter''"", ""''index.docker.io/dirigiblelabs/dirigible-openshift''"", ""''quay.io/che-incubator/che-idea''"", ""''quay.io/che-incubator/che-pycharm''"", ""''index.docker.io/wsskeleton/eclipse-broadway''"", ""''index.docker.io/codercom/code-server''"", ""''quay.io/eclipse/che-buildah-base''"", ""''quay.io/eclipse/che-sidecar-workspace-data-sync''"", ""''quay.io/eclipse/che-buildkit-base''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mysql-57-centos7''"", ""''quay.io/eclipse/che-cpp-rhel7''"", ""''quay.io/eclipse/che-dotnet-2.2''"", ""''quay.io/eclipse/che-dotnet-3.1''"", ""''quay.io/eclipse/che-golang-1.17''"", ""''quay.io/eclipse/che-java11-gradle''"", ""''quay.io/eclipse/che-java11-maven''"", ""''quay.io/eclipse/che-java8-maven''"", ""''quay.io/eclipse/che-nodejs10-community''"", ""''quay.io/eclipse/che-nodejs10-ubi''"", ""''quay.io/eclipse/che-nodejs12-community''"", ""''quay.io/eclipse/che-nodejs8-centos''"", ""''quay.io/eclipse/che-php-7''"", ""''quay.io/eclipse/che-python-3.8''"", ""''quay.io/eclipse/che-quarkus''"", ""''quay.io/eclipse/che-rust-1.39''""]",https://github.com/eclipse-che/che-operator, +operator_images,AtlasMap Operator,426,584,,,,,,,"[""''quay.io/atlasmap/atlasmap-operator:0.4.1''""]",https://github.com/atlasmap/atlasmap-operator, +operator_images,Appsody Operator,426,584,,,,,,,,https://github.com/appsody/appsody-operator, +operator_images,Cryostat Operator,426,584,,,,,,,"[""''quay.io/cryostat/cryostat-operator:2.1.1''""]",github.com/cryostatio/cryostat-operator, +operator_images,Open Liberty Operator,426,584,,,,,,,,https://github.com/OpenLiberty/open-liberty-operator, +operator_images,Runtime Component Operator,426,584,,,,,,,,https://github.com/application-stacks/runtime-component-operator, +operator_images,IBM Spectrum Scale CSI Plugin Operator,426,,,605,,,,,"[""''quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator''""]",https://github.com/IBM/ibm-spectrum-scale-csi/, +operator_images,Instana Agent Operator,426,,,,,,,611,,https://github.com/instana/instana-agent-operator, +operator_images,credstash-operator,426,,,612,,,,,"[""''quay.io/ouzi/credstash-operator:v1.13.0''""]",https://github.com/ouzi-dev/credstash-operator, +operator_images,Snyk Operator,426,,,613,,,,,"[""''docker.io/snyk/kubernetes-operator:1.92.0''""]",https://github.com/snyk/kubernetes-monitor, +operator_images,Akka Cluster Operator,426,,,614,,,,,,https://github.com/lightbend/akka-cluster-operator, +operator_images,Lightbend Console Operator,426,,,614,,,,,,https://github.com/lightbend/console-charts/tree/master/operator, +operator_images,Varnish Operator,426,,,,615,,,,,https://github.com/IBM/varnish-operator, +operator_images,Datadog Operator,426,,,,,,,616,,https://github.com/DataDog/datadog-operator, +operator_images,API Operator for Kubernetes,426,,,,,,,,,https://github.com/wso2/k8s-api-operator, +operator_images,WSO2 API Manager Operator for Kubernetes,426,,,,,,,,,https://github.com/wso2/k8s-wso2am-operator, +operator_images,AWS Controllers for Kubernetes - Amazon API Gateway v2,426,,,,,,,,,https://github.com/aws-controllers-k8s, +operator_images,APIcast,426,,,,,,,,"[""''quay.io/3scale/apicast-operator:v0.4.0''""]",https://github.com/3scale/apicast-operator, +operator_images,APIMatic Operator,426,,,,,,,,"[""''docker.io/apimaticio/apimatic-kubernetes-operator:v0.0.1''""]",https://github.com/apimatic/apimatic-kubernetes-operator, +operator_images,Microcks Operator,426,,,,,,,,"[""''quay.io/microcks/microcks-ansible-operator:1.5.2''""]",https://github.com/microcks/microcks-ansible-operator, +operator_images,Apicurio Registry Operator,426,,,,,,,,"[""''quay.io/apicurio/apicurio-registry-operator:1.0.0''""]",https://github.com/Apicurio/apicurio-registry-operator, +operator_images,IoT simulator,426,,,,,,,,,https://github.com/ctron/iot-simulator-operator, +operator_images,Kong Operator,426,,,,,,,,,https://github.com/kong/kong-operator, +operator_images,Minio Operator,426,,,,,,,,"[""''quay.io/minio/operator''""]",https://github.com/minio/operator, +operator_images,IBM COS Bucket Operator,426,,,,,,,,,https://github.com/IBM/cos-bucket-operator, +operator_images,DataTrucker.IO,426,,,,,,,,"[""''docker.io/datatruckerio/datatrucker-operator:2.0.0''""]",hhttps://gitlab.com/datatruckerio/datatrucker-server.git, +operator_images,IBM Cloud Operator,426,,,,,,,,,https://github.com/IBM/cloud-operators, +operator_images,nfd-operator,426,,,,,,,,,https://github.com/kubernetes-sigs/node-feature-discovery-operator, +operator_images,SAP BTP Service Operator,426,,,,,,,,,https://github.com/SAP/sap-btp-service-operator, +operator_images,IBM Cloud IAM Operator,426,,,,,,,,,https://github.com/IBM/ibmcloud-iam-operator, +operator_images,Hazelcast Platform Operator,426,,,,,,,618,"[""''docker.io/hazelcast/hazelcast-platform-operator:5.3''""]",, +operator_images,Infinispan Operator,426,,,619,,,,,"[""''quay.io/infinispan/operator:2.2.4.Final''""]",https://github.com/infinispan/infinispan-operator, +operator_images,Nuxeo Operator,426,,,,,,,620,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator, +operator_images,ArangoDB,426,,,621,,,,,,https://github.com/arangodb/kube-arangodb, +operator_images,Eclipse Che,426,,,622,,,,,"[""''quay.io/eclipse/che-operator''"", ""''quay.io/che-incubator/configbump''"", ""''quay.io/che-incubator/header-rewrite-proxy''"", ""''quay.io/devfile/devworkspace-controller''"", ""''quay.io/eclipse/che--centos--postgresql-13-centos7''"", ""''quay.io/eclipse/che--centos--postgresql-96-centos7''"", ""''quay.io/eclipse/che--traefik''"", ""''quay.io/eclipse/che-backup-server-rest''"", ""''quay.io/eclipse/che-dashboard''"", ""''quay.io/eclipse/che-devfile-registry''"", ""''quay.io/eclipse/che-jwtproxy''"", ""''quay.io/eclipse/che-keycloak''"", ""''quay.io/eclipse/che-plugin-artifacts-broker''"", ""''quay.io/eclipse/che-plugin-metadata-broker''"", ""''quay.io/eclipse/che-plugin-registry''"", ""''quay.io/eclipse/che-server''"", ""''quay.io/eclipse/che-tls-secret-creator''"", ""''quay.io/openshift/origin-kube-rbac-proxy''"", ""''quay.io/openshift/origin-oauth-proxy''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/windupeng/mta-vscode-extension''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-theia''"", ""''quay.io/eclipse/che-machine-exec''"", ""''quay.io/eclipse/che-theia-endpoint-runtime-binary''"", ""''index.docker.io/ksmster/che-editor-jupyter''"", ""''index.docker.io/dirigiblelabs/dirigible-openshift''"", ""''quay.io/che-incubator/che-idea''"", ""''quay.io/che-incubator/che-pycharm''"", ""''index.docker.io/wsskeleton/eclipse-broadway''"", ""''index.docker.io/codercom/code-server''"", ""''quay.io/eclipse/che-buildah-base''"", ""''quay.io/eclipse/che-sidecar-workspace-data-sync''"", ""''quay.io/eclipse/che-buildkit-base''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mysql-57-centos7''"", ""''quay.io/eclipse/che-cpp-rhel7''"", ""''quay.io/eclipse/che-dotnet-2.2''"", ""''quay.io/eclipse/che-dotnet-3.1''"", ""''quay.io/eclipse/che-golang-1.17''"", ""''quay.io/eclipse/che-java11-gradle''"", ""''quay.io/eclipse/che-java11-maven''"", ""''quay.io/eclipse/che-java8-maven''"", ""''quay.io/eclipse/che-nodejs10-community''"", ""''quay.io/eclipse/che-nodejs10-ubi''"", ""''quay.io/eclipse/che-nodejs12-community''"", ""''quay.io/eclipse/che-nodejs8-centos''"", ""''quay.io/eclipse/che-php-7''"", ""''quay.io/eclipse/che-python-3.8''"", ""''quay.io/eclipse/che-quarkus''"", ""''quay.io/eclipse/che-rust-1.39''""]",https://github.com/eclipse-che/che-operator, +operator_images,AWS Controllers for Kubernetes - Amazon S3,426,,,623,,,,,,https://github.com/aws-controllers-k8s, +operator_images,Altinity Operator for ClickHouse,426,,,624,,,,,,https://github.com/altinity/clickhouse-operator, +operator_images,Minio Operator,426,,,625,,,,,"[""''quay.io/minio/operator''""]",https://github.com/minio/operator, +operator_images,Elasticsearch Index Operator,426,,,626,,,,,,https://github.com/IBM/esindex-operator, +operator_images,Elasticsearch (ECK) Operator,426,,,626,,,,,,https://github.com/elastic/cloud-on-k8s, +operator_images,Elasticsearch Phenix Operator,426,,,626,,,,,,https://github.com/Carrefour-Group/elastic-phenix-operator, +operator_images,Logging Operator,426,,,626,,,,,"[""''quay.io/opstree/logging-operator:v0.3.0''""]",https://github.com/ot-container-kit/logging-operator, +operator_images,Nuxeo Operator,426,,,626,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator, +operator_images,Prometheus Exporter Operator,426,,,626,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator, +operator_images,Percona Distribution for MySQL Operator,426,,,627,,,,,,https://github.com/percona/percona-xtradb-cluster-operator, +operator_images,Keycloak Operator,426,,,628,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak, +operator_images,Grafana Operator,426,,,629,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator, +operator_images,Prometheus Exporter Operator,426,,,629,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator, +operator_images,Mattermost Operator,426,,,,,,,630,"[""''docker.io/mattermost/mattermost-operator:v0.5.0''""]",https://github.com/mattermost/mattermost-operator, +operator_images,synapse-helm,426,,,631,,,,,"[""''quay.io/mgoerens/synapse-helm:v0.0.11''""]",https://github.com/opdev/synapse-helm, +operator_images,IBM Cloud IAM Operator,426,,,632,,,,,,https://github.com/IBM/ibmcloud-iam-operator, +operator_images,AWS Controllers for Kubernetes - Amazon IAM,426,,,632,,,,,,https://github.com/aws-controllers-k8s, +operator_images,Knative Operator,426,,,,,,,633,,https://github.com/knative/operator, +operator_images,Kogito Knative Eventing Source,426,,,,,,,633,,https://github.com/knative-sandbox/eventing-kogito, +operator_images,YAKS Operator,426,,,,,,,633,"[""''docker.io/citrusframework/yaks:0.10.0''""]",https://github.com/citrusframework/yaks, +operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,,,634,,,,,,https://github.com/k8ssandra/cass-operator, +operator_images,Kubeflow,426,,,,,,,635,,https://github.com/kubeflow/kfctl, +operator_images,QiskitPlayground,426,,,636,,,,,"[""''docker.io/qiskit/operator:0.1''""]",https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/kubernetes-qiskit-operator, +operator_images,Ibm Quantum Operator,426,,,636,,,,,"[""''quay.io/application/husky_parul/ibm-quantum-operator''""]",https://github.com/redhat-et/ibm-quantum-operator, +operator_images,Azure Service Operator,426,,,637,,,,,,https://github.com/Azure/azure-service-operator, +operator_images,Strimzi,426,,,,,,,638,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator, +operator_images,Sematext Operator,426,,,,,,,639,"[""''docker.io/sematext/sematext-operator:1.0.33''""]",https://github.com/sematext/sematext-operator, +operator_images,Eclipse Hawkbit,426,,,640,,,,,,https://github.com/ctron/hawkbit-operator, +operator_images,Eclipse Ditto,426,,,641,,,,,,https://github.com/ctron/ditto-operator, +operator_images,Mariadb Operator,426,,,642,,,,,"[""''quay.io/manojdhanorkar/mariadb-operator:v0.0.4''""]",https://github.com/abalki001/mariadb-operator, +operator_images,Zadara Operator,426,,,643,,,,,,https://github.com/zadarastorage/zadara-operator, +operator_images,Istio,426,,,644,,,,,,https://github.com/banzaicloud/istio-operator/tree/release-1.1, +operator_images,Istio Workspace,426,,,644,,,,,"[""''quay.io/maistra/istio-workspace:v0.5.0''""]",https://github.com/maistra/istio-workspace, +operator_images,Kiali Operator,426,,,644,,,,,"[""''quay.io/kiali/kiali-operator:v1.53.0''""]",https://github.com/kiali/kiali, +operator_images,Vault Operator,426,,,645,,,,,,https://github.com/banzaicloud/bank-vaults/tree/master/operator, +operator_images,Vault Helm,426,,,645,,,,,"[""''quay.io/brejohns/vault-helm:0.0.2''""]",https://github.com/SDBrett/vault-helm, +operator_images,External Secrets Operator,426,,,645,,,,,,https://github.com/external-secrets/external-secrets-helm-operator, +operator_images,druid-operator,426,,,646,,,,,"[""''docker.io/druidio/druid-operator:0.0.9''""]",https://github.com/druid-io/druid-operator, +operator_images,etcd,426,,,647,,,,,"[""''quay.io/coreos/etcd-operator''""]",https://github.com/coreos/etcd-operator, +operator_images,Traefikee Operator,426,,,,648,,,,,, +operator_images,IBM Cloud Operator,426,,,649,,,,,,https://github.com/IBM/cloud-operators, +operator_images,IBM Cloud IAM Operator,426,,,649,,,,,,https://github.com/IBM/ibmcloud-iam-operator, +operator_images,Event Streams Topic,426,,,649,,,,,,https://github.com/IBM/event-streams-topic, +operator_images,IBM COS Bucket Operator,426,,,649,,,,,,https://github.com/IBM/cos-bucket-operator, +operator_images,Composable,426,,,649,,,,,,https://github.com/IBM/composable, +operator_images,Elasticsearch Index Operator,426,,,649,,,,,,https://github.com/IBM/esindex-operator, +operator_images,IBM block storage CSI driver operator,426,,,649,,,,,,https://github.com/IBM/ibm-block-csi-operator, +operator_images,Yugabyte Operator,426,,,650,,,,,"[""''quay.io/yugabyte/yugabytedb-operator''""]",https://github.com/yugabyte/yugabyte-operator, +operator_images,CockroachDB,426,,,651,,,,,"[""''quay.io/helmoperators/cockroachdb:v5.0.4''""]",https://github.com/dmesser/cockroachdb-operator, +operator_images,Community Jaeger Operator,426,,,,,,,652,"[""''quay.io/jaegertracing/jaeger-operator:1.35.0''""]",https://github.com/jaegertracing/jaeger-operator, +operator_images,PostgreSQL Operator by Dev4Ddevs.com,426,,,,,,,661,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator, +operator_images,Strimzi,426,,,,,,,661,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator, +operator_images,Keycloak Operator,426,,,,,,,661,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak, +operator_images,Prometheus Operator,426,,,,,,,661,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator, +operator_images,Elasticsearch (ECK) Operator,426,,,,,,,661,,https://github.com/elastic/cloud-on-k8s, +operator_images,Crunchy Postgres for Kubernetes,426,,,,,,,661,,https://github.com/CrunchyData/postgres-operator, +operator_images,Knative Operator,426,,,,,,,661,,https://github.com/knative/operator, +operator_images,Redis Operator,426,,,,,,,661,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator, +operator_images,Rook-Ceph,426,,,,,,,661,,https://github.com/rook/rook, +operator_images,Argo CD,426,,,,,,,661,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator, +operator_images,Grafana Operator,426,,,,,,,661,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator, +operator_images,Starboard Operator,426,,,,,,,661,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard, +operator_images,TiDB Operator,426,,,,,,,661,,https://github.com/pingcap/tidb-operator, +operator_images,Altinity Operator for ClickHouse,426,,,,,,,661,,https://github.com/altinity/clickhouse-operator, +operator_images,Flux,426,,,,,,,661,,, +operator_images,Percona Distribution for MySQL Operator,426,,,,,,,661,,https://github.com/percona/percona-xtradb-cluster-operator, +operator_images,RocketMQ Operator,426,,,,,,,661,,https://github.com/apache/rocketmq-operator, +operator_images,StorageOS,426,,,,,,,661,,https://github.com/storageos/operator, +operator_images,Falco Operator,426,,,,,,,661,"[""''docker.io/falcosecurity/falco-operator-helm:0.7.6''""]",https://github.com/falcosecurity/falco-operator/tree/helm-based-operator, +operator_images,Community Jaeger Operator,426,,,,,,,661,"[""''quay.io/jaegertracing/jaeger-operator:1.35.0''""]",https://github.com/jaegertracing/jaeger-operator, +operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,,,671,,,,,,https://github.com/k8ssandra/cass-operator, +operator_images,ks-releaser,426,,,677,,,,,,https://github.com/kubesphere-sigs/ks-releaser-operator, +operator_images,Argo CD,426,,,677,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator, +operator_images,Flux,426,,,677,,,,,,, +operator_images,Argo CD Operator (Helm),426,,,677,,,,,"[""''quay.io/disposab1e/argocd-operator-helm''""]",https://github.com/disposab1e/argocd-operator-helm.git, +operator_images,External Secrets Operator,426,,,677,,,,,,https://github.com/external-secrets/external-secrets-helm-operator, +operator_images,GitLab,426,,,677,,,,,,https://gitlab.com/gitlab-org/cloud-native/gitlab-operator, +operator_images,GitLab Runner,426,,,677,,,,,,https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator, +operator_images,Multicluster Subscription Operator,426,,,677,,,,,"[""''quay.io/open-cluster-management/multicluster-operators-subscription:2.3.0''""]",https://github.com/open-cluster-management/multicloud-operators-subscription, +operator_images,Weave GitOps Terraform Controller,426,,,677,,,,,,, +operator_images,GitLab,426,,,678,,,,,,https://gitlab.com/gitlab-org/cloud-native/gitlab-operator, +operator_images,GitLab Runner,426,,,678,,,,,,https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator, +operator_images,External Secrets Operator,426,,,678,,,,,,https://github.com/external-secrets/external-secrets-helm-operator, +operator_images,GrdsCloud MySQL for Kubernetes,426,,,684,,,,,,https://github.com/GrdsCloud, +operator_images,Percona Distribution for MySQL Operator,426,,,684,,,,,,https://github.com/percona/percona-xtradb-cluster-operator, +operator_images,PlanetScale Operator for Vitess,426,,,684,,,,,,, +operator_images,Prometheus Exporter Operator,426,,,684,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator, +operator_images,Postgresql Operator,426,,,686,,,,,"[""''quay.io/deekshah86/postgresql-operator''""]",https://github.com/janepelladinesh/postgresql-operator, +operator_images,Percona Operator for PostgreSQL,426,,,686,,,,,,https://github.com/percona/percona-postgresql-operator, +operator_images,PostgreSQL Operator by Dev4Ddevs.com,426,,,686,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator, +operator_images,Crunchy Postgres for Kubernetes,426,,,686,,,,,,https://github.com/CrunchyData/postgres-operator, +operator_images,EDB Postgres for Kubernetes,426,,,686,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]",, +operator_images,Postgres-Operator,426,,,686,,,,,,https://github.com/zalando/postgres-operator, +operator_images,Ext Postgres Operator,426,,,686,,,,,,https://github.com/movetokube/postgres-operator, +operator_images,Nuxeo Operator,426,,,686,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator, +operator_images,Prometheus Exporter Operator,426,,,686,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator, +operator_images,Robin Cloud Native Storage,426,,,686,,,,,,, +operator_images,AWS Controllers for Kubernetes - Amazon RDS,426,,,687,,,,,,https://github.com/aws-controllers-k8s, +operator_images,Upbound Universal Crossplane (UXP),426,,,687,,,,,,https://github.com/upbound/universal-crossplane, diff --git a/kg_utils/image_search_kg/verified_publisher_names.json b/kg_utils/image_search_kg/verified_publisher_names.json new file mode 100644 index 0000000..f26cfd0 --- /dev/null +++ b/kg_utils/image_search_kg/verified_publisher_names.json @@ -0,0 +1,6 @@ +{"last updated": "02/21/2022", "verified_publishers": + ["amazon", "balena", "sysdig", "atlassian", "puppet", "purestorage", "percona", "ubuntu", "portainer", + + "mathworks", "kasmweb", "dynatrace", "intel", "gooddata", "ibmcom", "pachyderm", "google", "appdynamics", + "snyk", "datadog", "docker", "astronomerinc", "mirantis", "adobecoldfusion", "rancher", "bitnami", "balenalib", + "wallarm", "redhat", "neo4j", "pingidentity", "circleci", "grafana", "cimg"]} \ No newline at end of file diff --git a/kg_utils/search_images.py b/kg_utils/search_images.py new file mode 100644 index 0000000..c600fff --- /dev/null +++ b/kg_utils/search_images.py @@ -0,0 +1,772 @@ +################################################################################ +# Copyright IBM Corporation 2021, 2022 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +################################################################################ + + +import sys +#from tkinter import image_names +sys.path.append("/app") + +import argparse +from audioop import tomono +from encodings import search_function +from search_utils import load_entities , dockerhub_api , utils , save_to_csv +import json +import requests +import json +import itertools +import operator +import logging +import re +import os +import docker +import configparser +import time + +#config file +config = configparser.ConfigParser() +config_data = os.path.join("/app/config/kg.ini") +config.read([config_data]) + +#loggger +logger = logging.getLogger('search') +logger.setLevel(logging.INFO) + + +#search sessions +operator_session = requests.Session() +quay_session = requests.Session() + + +#load list of verified and official publishers +with open("image_search_kg/verified_publisher_names.json", "r", encoding="utf-8") as verified_file: + verified_publishers = json.load(verified_file) + +class Operators(): + + def __init__(self): + + self.api = "https://artifacthub.io/api/v1/" + self.package_query = "packages/search?org=operator-framework&repo=community-operators&ts_query_web=&limit=60&offset=" + + + def remove_tags(self, image_link:str)-> str: + """_summary_ + + Args: + image_link (str): _description_ + + Returns: + str: _description_ + """ + if '@' in image_link: + img_link = image_link.split('@')[0] + return img_link + else: return image_link + + def community_op_images_repos(self, operator_name: str) -> list: + """ + + Searches for community operators from https://artifacthub.io/ + + Args: + operator_name (str): entity name + + Returns: + (lst): A list containing all matching operators + """ + container_images = [] + request_session = requests.session() + search_query = self.api + "packages/olm/community-operators/" + operator_name + response_ = request_session.get(url= search_query) + + try: + + image_urls = json.loads(response_.text)["containers_images"] + for imgs in image_urls: + + if "quay.io" in imgs['image'] or "docker.io" in imgs['image'] or 'registry.hub.docker' in imgs['image']: + img_link = self.remove_tags(imgs['image']) + container_images.append(img_link) + + except KeyError: + print("No container images registry found") + + return container_images + + + def community_op_git_repos(self, operator_name: str): + + """ + + Args: + operator_name (str): entity name + + Returns: + (lst): A list containing all repos for a given operator_name + """ + + operator_repository = None + + request_session = requests.session() + search_query = self.api + "packages/olm/community-operators/" + operator_name + response_ = request_session.get(url= search_query) + + try: + + links = json.loads(response_.text)["links"] # source , GitHub , etc ... + + for link_data in links: + for _ , val in link_data.items(): + if val == "source" or val == "GitHub": + operator_repository = link_data["url"] + except KeyError: + print("No source urls found") + + return operator_repository + + def community_operators(self, entity: str): + + """ + summary_line: Search community operators from https://artifacthub.io/packages/olm/community-operators/ + + Keyword arguments: + entity (str) -- An entity name from from the database + Return: list of all matching operators + """ + + + api = "https://artifacthub.io/api/v1/" + package_query = "packages/search?org=operator-framework&repo=community-operators&ts_query_web=" + + operators = [] + sess = requests.session() + endpoint = api + package_query+"{}".format(entity) + res = sess.get(url=endpoint) + operator = json.loads(res.text)['packages'] + if len(operator) > 0 : + + for op in operator: + update_dict = {"git_repos": None , "container_images": None} + git_repos = self.community_op_git_repos(op["name"]) + container_images = self.community_op_images_repos(op["name"]) + update_dict["git_repos"] = git_repos + update_dict["container_images"] = container_images + + + op.update(update_dict) + + operators.append(op) + + return operators + + +class Quay: + + def __init__(self) -> None: + + self.quay_api = "https://quay.io/api/v1/" + self.session = requests.Session() + + + def popular_images(self, quay_images:dict, top:int): + """ + Get popular Quay images + + Args: + quay_images (dict): List of Quay images + top (int): Threshold = 5 + + Returns: + (list): Popular images + """ + + popular_quay_images = [] + + if len(list(quay_images.keys())) > 0: + sorted_results = dict( + sorted(quay_images.items(), key=operator.itemgetter(1), reverse=True) + ) + + popular_images = dict(itertools.islice(sorted_results.items(), top )) + popular_quay_images.append(popular_images) + + return popular_quay_images + + + def exact_image(self, results:list , entity_name:str)->list: + """ + retrieve exact image + + Args: + results (list): list of all images obtained by searching the search term (entity_name) from Quay.io + entity_name (str):Search term + + Returns: + (list):list of exact matches from Quay.io + """ + + + exact = [] + image_template = {"name": "" , "url": "" , "popularity": 0} + + for img in results: + if ( + utils.is_exact_match(img['name'], entity_name) + ): + + image = image_template.copy() + image["name"] = img["name"] + image["url"] = "https://quay.io"+img['href'] + image["popularity"] = img["popularity"] + + + exact.append(image) + + return exact + + + def top_images(self,popular_quay_images, results ): + + """ + Select top images based on popularity + + Returns: + (list): list of top images + """ + + + top_image = [] + + image_template = {"name": "" , "url": "" , "popularity": 0} + + if len(popular_quay_images) != 0: + + for img in results: + + if img['href'] in list(popular_quay_images[0].keys()): + image = image_template.copy() + image["name"] = img["name"] + image["url"] = "https://quay.io"+img['href'] + image["popularity"] = img["popularity"] + + top_image.append(image) + + return top_image + + + def recommend_images(self, results:list, quay_images: dict, entity_name:str) -> tuple: + """ + Recommended container images + Args: + results (list): list of all relavent container images from Quay.io + quay_images (dict): Quay image hrefs as keys and popularity as values + entity_name (str): entity name from the database + + Returns: + (tuple): Exact Quay image(s) and top image(s) found + """ + + top = int(config["quay"]["top_popular_images"]) + exact_quay_image = [] + popular_quay_images = [] + top_images = [] + + popular_quay_images = self.popular_images(quay_images, top) + exact_quay_image = self.exact_image( results, entity_name) + top_images = self.top_images(popular_quay_images, results) + + + return (exact_quay_image , top_images) + + + + def search_images(self, entity: str) -> tuple: + """ + + Search container images from Quay.io + + Args: + entity (str): Entity name from the database + + Returns: + tuple: Exact matches and top matches + """ + + if not isinstance(entity, str): + exit() + + max_pages = 2 + images = {} + page_increment = 1 + results = [] + search_endpoint = self.quay_api + "find/repositories" + + for page in range(max_pages): + + url = search_endpoint + "?includeUsage=true&query={}&page={}".format( + entity, page + page_increment + ) + r = self.session.get(url) + data = json.loads(r.text) + result = data["results"] + results += result + + + for repo in results: + + images[repo["href"]] = repo["popularity"] + + + exact = self.recommend_images(results, images, entity)[0] + top = self.recommend_images(results, images, entity)[1] + return (exact , top) + + +class DockerHubSearch(): + + def __init__(self): + + logging.basicConfig( filename="report.log", filemode="w", level=logging.DEBUG) + self.client = docker.from_env() + self.low_level_api = docker.APIClient(base_url='unix://var/run/docker.sock') + + def docker_href(self, image_name: str) -> str: + """ + + Args: + image_name (str): image's name + + Returns: + str: href for image_name + """ + href = "" + + if "/" in image_name: + href = "https://hub.docker.com/r/" + image_name + + else: + href = "https://hub.docker.com/_/" + image_name + + return href + + def verified_official_images(self, images:list): + """ + Retrieve all verified and official images. + + Args: + images (list): Search results from dockerhub + + Returns: + (list): list of verified and official images + """ + + verified_official_images = [] + for image in images: + + # search official_images + if image["is_official"]: + verified_official_images.append(image) + # search verified publishers + elif "/" in image["name"]: + if ( + image["name"].split("/")[0] + in verified_publishers["verified_publishers"] + ): + verified_official_images.append(image) + else: + continue + return verified_official_images + + def exact_image( + self, entity_name: str, verified_and_official_images: list + ): + """ + find exact image match + + Args: + entity_name (str): search term + verified_and_official_images (list): list of verified and official images + + Returns: + (list): A list containing exact DockerHub match + """ + + exact_image = [] + image_names = [] + images = [image["name"] for image in verified_and_official_images] + + for img in images: + if "/" in img: + image_names.append(img.split("/")[1]) + else: + image_names.append(img) + + for index, img in enumerate(verified_and_official_images): + + if utils.is_exact_match(image_names[index], entity_name): + exact_image.append(img) + + else: + continue + + return exact_image + + def top_images(self, entity_name: str, verified_official_images: list): + """ + Get top relevant DockerHub images. select top 40%() + + Args: + entity_name (str): search term + verified_official_images (list): list of verified and official images + + Returns: + (list):A list containing top relevant DockerHub images + """ + + + top = int(config["dockerhub"]["top_relevant"])/100.0 + + top_images = [] + image_names = [] + query = entity_name + + if len(verified_official_images) == 0: + return top_images + + images = [image["name"] for image in verified_official_images] + + for img in images: + if "/" in img: + image_names.append(img.split("/")[1]) + else: + image_names.append(img) + + topscore_lines, line_score =utils.line_similarity(image_names, query) + + for index in list(topscore_lines): + if line_score[index] > top: + top_images.append(verified_official_images[index]) + + return top_images + + def get_os_architectures(self, images: list ) -> list: + + """" + sumary_line: Using docker_api_utils, retrieve os arch for each image + + Keyword arguments: + images(list) -- list of images from Dockerhub + Return: + + """ + image_lst = [] + + if len(images) == 0: + return image_lst + + for image in images: + + arch_list = [] + if image['Official image']: + user = 'library' + repository = image["name"] + else: + user = image["name"].split("/")[0] + repository = image["name"].split("/")[1] + + image_info = docker_api.tags(user = user, repository= repository) + + try: + os_info = next(image_info)["images"] + except: + + arch_list.append({ + "Class": "null" , + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + }) + + image['OS'] = arch_list + image_lst.append(image) + return image_lst + + + for arch in os_info: + arch_dict = { + "Class": "OS" , + "Architecture": arch["architecture"], + "Variants": arch["variant"], + "Versions": arch['os_version'], + "Type": arch['os'], + "Subtype": "" + } + arch_list.append(arch_dict) + + image['OS'] = arch_list + + image_lst.append(image) + + return image_lst + + + def recommend_exact_image(self,entity_name:str , verified_and_official_images:list): + """ + Searches for exact Dockerhub images + + Args: + entity_name (str): _description_ + verified_and_official_images (list): list containing all verified and official images from search result + + Returns: + list: list of exact images if found + """ + + exact_image = self.exact_image(entity_name, verified_and_official_images) + exact_image = utils.format_images(exact_image) + exact_image = self.get_os_architectures(exact_image) + return exact_image + + + def recommend_top_images ( self,entity_name:str , verified_and_official_images:list)->list: + + """ + Recommend top relevant images from Dockerhub. + + Returns: + list: top images. + """ + + top_images = self.top_images(entity_name, verified_and_official_images) + top_images = utils.format_images(top_images) + top_images = self.get_os_architectures(top_images) + return top_images + + def recommended_images(self, image_inst:list, entity_name:str): + """ + Given an entity_name and a list of relevant images from DockerHub, determine + the exact match and top relevant matches. + + Args: + image_inst (list): list of all images found from dockerhub including unofficial as well as unverified images + entity_name (str): query ( entity) + + Returns: + (list) ,(list): exact dockerhub image , top docker images + """ + verified_official_images = self.verified_official_images(image_inst) + exact_image = self.recommend_exact_image(entity_name,verified_official_images) + top_images = self.recommend_top_images(entity_name , verified_official_images) + return exact_image , top_images + + + def search_dockerhub_images(self, entity: str) -> tuple: + """ + Search container images from Dockerhub. + + Args: + entity (str): An entity(query) from the database.. + + Returns: + + (tuple): exact_image(list) and top_images(list) + + """ + + images , exact_image , top_images = [] , [] , [] + + try: + images = self.client.images.search(term=entity) + + + except: + print("ImageNotFound error occurred, check your entry and try again.") + if images == []: + + print("No Dockerhub images found for {} ".format(entity)) + + else: + exact_image , top_images = self.recommended_images(images, entity) + + return (exact_image , top_images) + + + +def save_to_kb(results: list) -> None: + """ + Save search results as a JSON file to \kb directory + + Args: + results (dict): dictionary containing search results from Dockerhub , Quay , and Operatorhub.io + """ + + with open("/app/kg_utils/image_search_kg/images.json", "w" , encoding="utf-8") as images_file: + images_file.write(json.dumps(results, indent=2)) + + + +def search(entities: list) ->list: + """ + list of all entities + + Args: + entities (list): All entities + """ + + search_result = [] + for _, entity in enumerate(entities): + + + + entity_name = entity[0] + entity_type = entity[1] + entity_id = entity[2] + + if entity_name=='': + continue + + entity_dict = {entity_name: [] , "entity_type": entity_type, "entity_id": entity_id} + + print({"entity_name": entity_name , "entity_type": entity_type, "entity_id": entity_id}) + + + dockerhub_images = { 'dockerhub_exact_images':[] , 'dockerhub_top_images': []} + quay_images = { 'quay_exact_images':[] , 'quay_top_images': []} + operator_images = {"operators": []} + + + + exact_docker_image = docker_.search_dockerhub_images(entity_name)[0] + top_docker_images = docker_.search_dockerhub_images(entity_name)[1] + exact_quay_image = quay.search_images(entity_name)[0] + top_quay_images = quay.search_images(entity_name)[1] + operatorhub_images = operator_.community_operators(entity_name) + + + for operator_image in operatorhub_images: + operator_images["operators"].append(operator_image) + + for exact in exact_docker_image: + dockerhub_images['dockerhub_exact_images'].append(exact) + + for top_im in top_docker_images: + dockerhub_images['dockerhub_top_images'].append(top_im) + + for q_exact in exact_quay_image: + quay_images['quay_exact_images'].append(q_exact) + + for q_top_im in top_quay_images: + quay_images['quay_top_images'].append(q_top_im) + + entity_dict[entity_name] =[dockerhub_images, quay_images , operator_images] + + search_result.append(entity_dict) + + return search_result + + + +def cmdline_args(): + + """ + input arguments + + Keyword arguments: None + argument -- None + Return: A parser containing input arguments + + """ + + + p = argparse.ArgumentParser(prog="search_images" , usage="Search container images from dockerhub , Quay.io , and Artifacthub.io") + + p.add_argument("-e", "--entity", type = str , help="Enter entity name(s) from the database . i.e : -e nginx,tomcat,ubuntu or -e all ( to search all entities). \ + Also enclose entities with double words in a quote. For example: -e 'ibm i',db2,'Apache Kafka' ") + + p.add_argument("-db", "--database_path" , type = str, help="path containing the latest tackle containerization advisor database") + + return(p.parse_args()) + + +def get_entities(): + + """ + load entities from database + Keyword arguments: None + argument -- None + Return: list of valid entities from db + + """ + + print("Enter entity(ies) from the entity_name table to search for matching container images\n") + + try: + args = cmdline_args() + except: + print('Try $python -e -db or type $python src/search_images.py --help') + exit() + + if args.entity == 'all': + + entities , suggest_entities =load_entities.from_database(entity_names='all') + + elif args.entity != 'all': + + entity_names= args.entity.split(",") + + entities , suggest_entities = load_entities.from_database( entity_names = entity_names) + print(entities) + + else: + print('Try $python -e -db or type $python src/search_images.py --help') + exit() + + if entities == [] and args.entity !='all' : + print("No entity names found for {}. Enter a valid entity from the database.\n".format(args.entity)) + + + if len(suggest_entities) != 0 and len(entities) == 0: + + print("Did you mean the following entity(ies) \n") + for ent in suggest_entities: + print("{} \n".format(ent)) + + print("Enter a valid entity from the entities table") + exit() + + return entities + + + +if __name__ == "__main__": + + # entities = get_entities() + # docker_api =dockerhub_api.DockerHub(username=os.environ.get("DOCKERHUB_USERNAME", None) , password=os.environ.get("DOCKERHUB_PASSWORD", None)) + # docker_ = DockerHubSearch() + # quay = Quay() + # operator_ = Operators() + + # results = search(entities) + + # save_to_kb(results) + + save_to_csv.docker_images() + + save_to_csv.operator_images() + + save_to_csv.openshift_images() diff --git a/kg_utils/search_utils/dockerhub_api.py b/kg_utils/search_utils/dockerhub_api.py new file mode 100644 index 0000000..98095ff --- /dev/null +++ b/kg_utils/search_utils/dockerhub_api.py @@ -0,0 +1,917 @@ +# MIT License +# +# Copyright (c) 2017 Daniel Sullivan (mumblepins) +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + + +from __future__ import print_function + +import json + +import requests +from furl import furl +from requests.auth import AuthBase + + +class TimeoutError(Exception): + pass + + +class ConnectionError(Exception): + pass + + +class AuthenticationError(Exception): + pass + + +class DockerHubAuth(AuthBase): + def __init__(self, requests_post, api_url, username=None, password=None, token=None, delete_creds=True): + """ + + Args: + requests_post (:py:meth:`DockerHub._do_requests_post`): + api_url (str): + username (str, optional): + password (str, optional): + token (str, optional): + delete_creds (bool, optional): + """ + + self._api_url = api_url + self._requests_post = requests_post + if token is not None: + self._token = token + return + if username is not None and password is not None: + self._username = username + self._password = password + self._get_authorization_token() + if delete_creds: + self._username = None + self._password = None + return + raise ValueError("Need either username and password or token for authentication") + + @property + def token(self): + return self._token + + def __eq__(self, other): + return self._token == getattr(other, '_token', None) + + def __ne__(self, other): + return not self == other + + def __call__(self, r): + r.headers['Authorization'] = "JWT {}".format(self._token) + return r + + def _get_authorization_token(self): + """Actually gets the authentication token + + Raises: + AuthenticationError: didn't login right + + """ + r = self._requests_post( + self._api_url, + { + "username": self._username, + "password": self._password + }) + if not r.ok: + raise AuthenticationError("Error Status {}:\n{}".format(r.status_code, json.dumps(r.json(), indent=2))) + self._token = r.json()['token'] + + +def parse_url(url): + """Parses a url into the base url and the query params + + Args: + url (str): url with query string, or not + + Returns: + (str, `dict` of `lists`): url, query (dict of values) + """ + f = furl(url) + query = f.args + query = {a[0]: a[1] for a in query.listitems()} + f.remove(query=True).path.normalize() + url = f.url + + return url, query + + +def user_cleaner(user): + """Converts none or _ to library, makes username lowercase + + Args: + user (str): + + Returns: + str: cleaned username + + """ + if user == "_" or user == "": + return "library" + try: + return user.lower() + except AttributeError: + return user + + +class DockerHub(object): + """Actual class for making API calls + + Args: + username (str, optional): + password(str, optional): + token(str, optional): + url(str, optional): Url of api (https://hub.docker.com) + version(str, optional): Api version (v2) + delete_creds (bool, optional): Whether to delete password after logging in (default True) + return_lists (bool, optional): Whether to return a `generator` from calls that return multiple values + (False, default), or to return a simple `list` (True) + """ + + # + def __init__(self, username=None, password=None, token=None, url=None, version='v2', delete_creds=True, + return_lists=False): + + #https://registry.hub.docker.com/ + # 'https://hub.docker.com' + + self._version = version + self._url = '{0}/{1}'.format(url or'https://registry.hub.docker.com' , self.version) + self._session = requests.Session() + self._auth = None + self._token = None + self._username = None + self._password = None + self._return_lists = return_lists + self.login(username, password, token, delete_creds) + + def __enter__(self): + return self + + def __exit__(self, exc_type, exc_val, exc_tb): + self.close() + + def close(self): + self._session.close() + + # + + # + @property + def return_lists(self): + """Whether functions should return generators (False) or lists (True) + + Returns: + bool + + """ + return self._return_lists + + @return_lists.setter + def return_lists(self, value): + self._return_lists = value + + @property + def username(self): + if self._username is None and self.logged_in: + self._get_username() + return self._username + + @property + def logged_in(self): + return self.token is not None + + @property + def version(self): + return self._version + + @property + def url(self): + return self._url + + @property + def token(self): + return self._token + + @token.setter + def token(self, value): + self._token = value + self._get_username() + + # + + # + + def _do_request(self, method, address, **kwargs): + try: + if 'timeout' not in kwargs: + kwargs['timeout'] = (5, 15) + + if 'auth' not in kwargs: + kwargs['auth'] = self._auth + + if 'headers' not in kwargs: + kwargs['headers'] = {"Content-Type": "application/json"} + elif 'Content-Type' not in kwargs['headers']: + kwargs['headers']['Content-Type'] = "application/json" + + url, query = parse_url(address) + if query: + address = url + if 'params' in kwargs: + query.update(kwargs['params']) + kwargs['params'] = query + resp = self._session.request(method, address, **kwargs) + + except requests.exceptions.Timeout as e: + raise TimeoutError('Connection Timeout. Download failed: {0}'.format(e)) + except requests.exceptions.RequestException as e: + raise ConnectionError('Connection Error. Download failed: {0}'.format(e)) + else: + try: + resp.raise_for_status() + except: + print(resp.json()) + print(resp.headers) + raise + return resp + + def _do_requests_get(self, address, **kwargs): + if 'params' not in kwargs: + kwargs['params'] = {} + # if 'perPage' not in kwargs['params']: + # #kwargs['params']['perPage'] = 100 + # pass + return self._do_request('GET', address, **kwargs) + + def _do_requests_post(self, address, json_data=None, **kwargs): + return self._do_request('POST', address, json=json_data, **kwargs) + + def _do_requests_put(self, address, json_data=None, **kwargs): + return self._do_request('PUT', address, json=json_data, **kwargs) + + def _do_requests_patch(self, address, json_data, **kwargs): + return self._do_request('PATCH', address, json=json_data, **kwargs) + + def _do_requests_delete(self, address, **kwargs): + return self._do_request('DELETE', address, **kwargs) + + def _iter_requests_get(self, address, **kwargs): + if self.return_lists: + return list(self._iter_requests_get_generator(address, **kwargs)) + return self._iter_requests_get_generator(address, **kwargs) + + def _iter_requests_get_generator(self, address, **kwargs): + _next = None + resp = self._do_requests_get(address, **kwargs) + + while True: + if _next: + resp = self._do_requests_get(_next) + # print _next + + resp = resp.json() + + for i in resp['results']: + yield i + + if resp['next']: + _next = resp['next'] + continue + return + + def _api_url(self, path): + return '{0}/{1}/'.format(self.url, path) + + def _get_username(self): + if self.logged_in: + self._username = user_cleaner(self.logged_in_user()['username']) + else: + self._username = None + + # + + def login(self, username=None, password=None, token=None, delete_creds=True): + """Logs into Docker hub and gets a token + + Either username and password or token should be specified + + Args: + username (str, optional): + password (str, optional): + token (str, optional): + delete_creds (bool, optional): + + Returns: + + """ + + self._username = user_cleaner(username) + self._password = password + self._token = token + if token is not None: + # login with token + self._auth = DockerHubAuth(self._do_requests_post, self._api_url('users/login'), token=token) + elif username is not None and password is not None: + # login with user/pass + self._auth = DockerHubAuth(self._do_requests_post, self._api_url('users/login'), username=username, + password=password) + else: + # don't login + return + + if delete_creds: + self._password = None + + self._token = self._auth.token + + def comments(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{0}/{1}/comments'.format(user, repository)) + return self._iter_requests_get(url, **kwargs) + + def repository(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{0}/{1}'.format(user, repository)) + return self._do_requests_get(url, **kwargs).json() + + def repositories(self, user, **kwargs): + """ + + Args: + user: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{0}'.format(user)) + return self._iter_requests_get(url, **kwargs) + + def repositories_starred(self, user, **kwargs): + """ + + Args: + user: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('users/{0}/repositories/starred'.format(user)) + return self._iter_requests_get(url, **kwargs) + + def tags(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{0}/{1}/tags'.format(user, repository)) + return self._iter_requests_get(url, **kwargs) + + def user(self, user, **kwargs): + """ + + Args: + user: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('users/{0}'.format(user)) + return self._do_requests_get(url, **kwargs).json() + + # ------ Logged In Section + + def logged_in_user(self): + """ + + Returns: + + """ + return self._do_requests_get(self._api_url('user')).json() + + def add_collaborator(self, user, repository, collaborator): + """ + + Args: + user: + repository: + collaborator: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/collaborators'.format(user, repository)) + return self._do_requests_post(url, { + "user": collaborator.lower() + }).json() + + def build_details(self, user, repository, code): + """ + + Args: + user: + repository: + code: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/buildhistory/{}'.format(user, repository, code)) + return self._do_requests_get(url).json() + + def build_history(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/buildhistory'.format(user, repository)) + return self._iter_requests_get(url, **kwargs) + + def build_links(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/links'.format(user, repository)) + return self._iter_requests_get(url, **kwargs) + + def build_settings(self, user, repository): + """ + + Args: + user: + repository: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/autobuild'.format(user, repository)) + return self._do_requests_get(url).json() + + def build_trigger(self, user, repository): + """ + + Args: + user: + repository: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/buildtrigger'.format(user, repository)) + return self._do_requests_get(url).json() + + def build_trigger_history(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/buildtrigger/history'.format(user, repository)) + return self._iter_requests_get(url, **kwargs) + + def collaborators(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/collaborators'.format(user, repository)) + return self._iter_requests_get(url, **kwargs) + + def create_build_link(self, user, repository, to_repo): + """ + + Args: + user: + repository: + to_repo: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/links'.format(user, repository)) + return self._do_requests_post(url, { + "to_repo": to_repo + }).json() + + def create_build_tag(self, user, repository, details): + """ + + Args: + user: + repository: + details: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/autobuild/tags'.format(user, repository)) + return self._do_requests_post(url, { + 'isNew': True, + 'namespace': user, + 'repoName': repository, + 'name': details['name'] if 'name' in details else 'latest', + 'dockerfile_location': details['dockerfile_location'] if 'dockerfile_location' in details else '/', + 'source_type': details['source_type'] if 'source_type' in details else 'Branch', + 'source_name': details['source_name'] if 'source_name' in details else 'master' + }).json() + + def create_repository(self, user, repository, details): + """ + + Args: + user: + repository: + details: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories') + data = { + 'name': repository, + 'namespace': user, + } + details.update(data) + return self._do_requests_post(url, details).json() + + def create_automated_build(self, user, repository, details): + """ + + Args: + user: + repository: + details: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/autobuild'.format(user, repository)) + data = { + 'name': repository, + 'namespace': user, + 'active': True, + 'dockerhub_repo_name': "{}/{}".format(user, repository) + } + + details.update(data) + return self._do_requests_post(url, details).json() + + def create_webhook(self, user, repository, webhook_name): + """ + + Args: + user: + repository: + webhook_name: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/webhooks'.format(user, repository)) + data = { + 'name': webhook_name + } + return self._do_requests_post(url, data).json() + + def create_webhook_hook(self, user, repository, webhook_id, webhook_url): + """ + + Args: + user: + repository: + webhook_id: + webhook_url: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/webhooks/{}/hooks'.format(user, repository, webhook_id)) + data = { + 'hook_url': webhook_url + } + return self._do_requests_post(url, data).json() + + def delete_build_link(self, user, repository, build_id): + """ + + Args: + user: + repository: + build_id: + + Returns: + boolean: returns true if successful delete call + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/links/{}'.format(user, repository, build_id)) + resp = self._do_requests_delete(url) + # print_response(resp) + return resp.status_code == 204 + + def delete_build_tag(self, user, repository, tag_id): + """ + + Args: + user: + repository: + tag_id: + + Returns: + boolean: returns true if successful delete call + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/autobuild/tags/{}'.format(user, repository, tag_id)) + resp = self._do_requests_delete(url) + return resp.status_code == 204 + + def delete_tag(self, user, repository, tag): + """ + + Args: + user: + repository: + tag: + + Returns: + boolean: returns true if successful delete call + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/tags/{}'.format(user, repository, tag)) + resp = self._do_requests_delete(url) + return resp.status_code == 204 + + def delete_collaborator(self, user, repository, collaborator): + """ + + Args: + user: + repository: + collaborator: + + Returns: + boolean: returns true if successful delete call + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/collaborators/{}'.format(user, repository, collaborator.lower())) + resp = self._do_requests_delete(url) + return resp.status_code in [200, 201, 202, 203, 204] + + def delete_repository(self, user, repository): + """ + + Args: + user: + repository: + + Returns: + boolean: returns true if successful delete call + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}'.format(user, repository)) + resp = self._do_requests_delete(url) + # print_response(resp) + return resp.status_code in [200, 201, 202, 203, 204] + + def delete_webhook(self, user, repository, webhook_id): + """ + + Args: + user: + repository: + webhook_id: + + Returns: + boolean: returns true if successful delete call + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/webhooks/{}'.format(user, repository, webhook_id)) + resp = self._do_requests_delete(url) + # print_response(resp) + return resp.status_code in [200, 201, 202, 203, 204] + + def registry_settings(self): + """ + + Returns: + + """ + url = self._api_url('users/{}/registry-settings'.format(self.username)) + return self._do_requests_get(url).json() + + def set_build_tag(self, user, repository, build_id, details): + """ + + Args: + user: + repository: + build_id: + details: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/autobuild/tags/{}'.format(user, repository, build_id)) + data = { + 'id': build_id, + 'name': 'latest', + 'dockerfile_location': '/', + 'source_type': 'Branch', + 'source_name': 'master' + } + data.update(details) + return self._do_requests_put(url, details).json() + + def set_repository_description(self, user, repository, descriptions): + """ + + Args: + user: + repository: + descriptions: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}'.format(user, repository)) + data = {} + if 'full' in descriptions: + data['full_description'] = descriptions['full'] + if 'short' in descriptions: + data['description'] = descriptions['short'] + if not data: + raise ValueError("Need either 'short' or 'full' description specified") + + return self._do_requests_patch(url, data).json() + + def star_repository(self, user, repository): + """ + + Args: + user: + repository: + + Returns: + boolean: returns true if successful + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/stars'.format(user, repository)) + resp = self._do_requests_post(url, {}) + # print_response(resp) + return resp.status_code in [200, 201, 202, 203, 204] + + def unstar_repository(self, user, repository): + """ + + Args: + user: + repository: + + Returns: + boolean: returns true if successful + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/stars'.format(user, repository)) + resp = self._do_requests_delete(url) + # print_response(resp) + return resp.status_code in [200, 201, 202, 203, 204] + + def trigger_build(self, user, repository, details): + """ + + Args: + user: + repository: + details: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/autobuild/trigger-build'.format(user, repository)) + data = { + 'dockerfile_location': '/', + 'source_type': 'Branch', + 'source_name': 'master' + } + data.update(details) + return self._do_requests_post(url, data).json() + + def webhooks(self, user, repository, **kwargs): + """ + + Args: + user: + repository: + **kwargs: + + Returns: + + """ + user = user_cleaner(user) + url = self._api_url('repositories/{}/{}/webhooks'.format(user, repository)) + return self._iter_requests_get(url, **kwargs) \ No newline at end of file diff --git a/kg_utils/search_utils/load_entities.py b/kg_utils/search_utils/load_entities.py new file mode 100644 index 0000000..4aea06e --- /dev/null +++ b/kg_utils/search_utils/load_entities.py @@ -0,0 +1,149 @@ +################################################################################ +# Copyright IBM Corporation 2021, 2022 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +################################################################################ + + +from curses import resetty +from hashlib import new +from openpyxl import load_workbook +from sqlite3 import Error +import sqlite3 + +import configparser +import os +import re +import logging + + +#config file +config = configparser.ConfigParser() +config_data = os.path.join("/app/config/kg.ini") +config.read([config_data]) + + +def create_db_connection(database_path): + """ + Create connection to database + + Args: + + database_path (str): path to the database + + Returns: + + _type_: sqlite3 connection + + """ + + connection = None + + try: + connection = sqlite3.connect(database_path) + except Error as e: + logging.error(f'{e}: Issue connecting to db. Please check whether the .db file exists.') + + + return connection + + +def filter_entity(entity:str)-> str: + """ + Remove pipes(|) or pipe stars (|*) or entity_prefix pipe (i.e Linux|ubuntu) from entity names + + Args: + entity (str): entity to filter + + Returns: + str: filtered entity + """ + match_pipe_star = re.findall(r'\|\*', entity) + match_less_greater_sign = re.findall(r'\<\>' , entity) + match_abbreviation = re.findall(r'[\)]' , entity) + match_pipe_only = re.findall(r'\|', entity) + + if match_pipe_star : + return entity.split('|*')[0] + + elif match_less_greater_sign: + + if "|" in entity.split("<>")[1]: + return entity.split("<>")[1].split("|")[-1] + return(entity.split("<>")[1]) + + elif match_abbreviation: + if entity.startswith("("): + return entity + elif ('|') in entity.split("(")[0]: + + n_ent = entity.split("(")[0].split('|')[-1] + return n_ent + else: + return entity.split("(")[0] + elif match_pipe_only and '|*' not in entity: + + num = entity.count("|") + ent = '' + if num > 1: + ent = entity.split("|")[-1] + else: + ent = entity.split('|')[1] + return ent + else: + return entity + +def from_database( entity_names = None, table_name="entities"): + + """ + Load entity names from the main database. + + Returns: + list: A list containing tuple( entity_name , entity_type_id , entity_name_id) + """ + if entity_names == None : + print("No entities selected") + exit() + + db_path = config["database"]["database_path"] + + connection = create_db_connection(db_path) + + print(connection) + entities = [] + suggest_entities = [] + cursor = connection.cursor() + + cursor.execute("SELECT * FROM {} ".format(table_name)) + for entity in cursor.fetchall(): + + + if entity_names == "all": + entity_name = filter_entity(entity[1]) + entities.append( (entity_name.strip(),entity[2] , entity[0]) ) + + else: + + for name in entity_names: + + if entity[1].lower() == name.lower(): + + entity_name = filter_entity(entity[1]) + entities.append( (entity_name.strip(),entity[2] , entity[0]) ) + + elif name.lower() in entity[1].lower(): + suggest_entities.append(entity[1]) + + else: continue + + return entities , suggest_entities \ No newline at end of file diff --git a/kg_utils/search_utils/save_to_csv.py b/kg_utils/search_utils/save_to_csv.py new file mode 100644 index 0000000..c4200be --- /dev/null +++ b/kg_utils/search_utils/save_to_csv.py @@ -0,0 +1,296 @@ + +################################################################################ +# Copyright IBM Corporation 2021, 2022 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +################################################################################ + + +import json +import csv + +def search_results(): + """ + load results + + Returns: + None: Json file containing search results + """ + + with open("/app/kg_utils/image_search_kg/images.json", "r" , encoding="utf-8") as images: + images_ = json.load(images) + + return images_ + + +def entity_type_mapper( entity_type: int , entity_id : str)-> dict: + """ + Maps entity_types to an interger ranging from 1 to 12 + + Args: + entity_type (int): entity_type id + entity_id (int): entity index from the entity_name table from the database + + Returns: + dict: a mapping of entity_type_name to a unique id + + """ + type_mapper = {"technology": 1, "app": 2 , "vm": 3 , "hw" : 4 , "plugin": 5 , "OS" : 6 , "runlib": 7, \ + "app_server" : 8 , "lang": 9 , "runtime": 10 , "storage": 11 , "lib": 12 + + } + + for ky , val in type_mapper.items(): + if val == entity_type: + return {ky:entity_id} + + +def write_to_csv(data:dict, file_name:str): + """ + Write results to csv file + + Args: + data (list): A list containing data to save. + file_name (str): Name of the file to to save the data as csv. + + """ + + with open("/app/kg_utils/image_search_kg/{}.csv".format(file_name) , "w" , encoding="utf-8") as op_csv: + + if data == []: + print("No {} found".format(file_name)) + return + + columns = list(data[0].keys()) + writer = csv.DictWriter(op_csv, fieldnames=columns) + writer.writeheader() + + if file_name == "operator_images": + + for row in data: + + + writer.writerow({"operator_images":row["operator_images"],'container_name': row["container_name"], 'OS': row["OS"] \ + , "lang":row["lang"], "lib": row["lib"] , "app": row["app"] \ + ,"app_server": row["app_server"] , "plugin":row["plugin"] , \ + "runlib": row["runlib"] , "runtime": row["runtime"] , \ + "Operator_Correspondant_Image_Url": row["Operator_Correspondant_Image_Url"] ,\ + "Operator_Repository" : row["Operator_Repository"], "Other_Operators": row["Other_Operators"] + + }) + + + if file_name == "docker_images": + for row in data: + writer.writerow({"docker_images":row["docker_images"],'container_name': row["container_name"], 'OS': row["OS"] \ + , "lang":row["lang"], "lib": row["lib"] , "app": row["app"] \ + ,"app_server": row["app_server"] , "plugin":row["plugin"] , \ + "runlib": row["runlib"] , "runtime": row["runtime"] , \ + "Docker_Url": row["Docker_Url"] ,\ + "Notes": row["Notes"], \ + "CertOfImageAndPublisher": row["CertOfImageAndPublisher"] + + }) + + if file_name =="openshift_images": + + for row in data: + + writer.writerow({"openshift_images":row["openshift_images"],'container_name': row["container_name"], 'OS': row["OS"] \ + , "lang":row["lang"], "lib": row["lib"] , "app": row["app"] \ + ,"app_server": row["app_server"] , "plugin":row["plugin"] , \ + "runlib": row["runlib"] , "runtime": row["runtime"] , \ + "Opeshift_Correspondent_Image_Url": row["Openshift_Correspondent_Image_Url"] ,\ + "DockerImageType": row["DockerImageType"] + + }) + + +def get_exact_images(all_images:dict , catalogue ="operators", index = 2): + """ + Gather exact image names found during the search proceedure. + + Args: + all_images (dict): A large dictionary containg all serach results + catalogue (str, optional): Catalog's name("operator" , "dockerhub_exact_images" ,or "quay_exact_images" ) . Defaults to "operators". + index (int, optional): _description_. Defaults to 2. + + Returns: + list: A list containing exact image names. + """ + + if catalogue == "dockerhub_exact_images": index = 0 + if catalogue == "quay_exact_images" : index = 1 + + images = [] + + for image in all_images: + image_name = list(image.keys())[0] + + if image[image_name][index][catalogue] != []: + op_data = {image_name: [], "type": image["entity_type"] , "entity_id" : image["entity_id"]} + + op_data[image_name] = image[image_name][index][catalogue] + images.append(op_data) + + return images + + +def csv_columns( table_name = "operator_images"): + """ + Build the columns headers for the csv files. + + Args: + table_name (str, optional):The name of the table from the database. Defaults to "operator_images". + + Returns: + dict: A fomated headers for the csv. + """ + + columns = { table_name: "", "container_name":"", "OS": 426, "lang" : None, "lib": None, "app": None, "app_server": None,"plugin": None,"runlib": None,"runtime": None } + + docker_col_extension = {"Docker_Url":"", "Notes": "", "CertOfImageAndPublisher": "" } + openshift_col_extension = {"Opeshift_Correspondent_Image_Url":"", "DockerImageType": ""} + operator_col_extension ={"Operator_Correspondant_Image_Url":[],"Operator_Repository": "", "Other_Operators": ""} + + if table_name == "openshift_images": + columns.update(openshift_col_extension) + elif table_name == "docker_images": + columns.update(docker_col_extension) + else: + columns.update(operator_col_extension) + + return columns + + +def operator_images_urls(image_links: list ): + """_summary_ + + Args: + images_links (list): _description_ + """ + urls = [] + if image_links == []: + return None + else: + for dt in image_links : + links_ = "\'\'" + dt + "\'\'" + urls.append(links_) + return urls + +def operator_images(): + """ + Saves operator images to a operator_images.csv + + """ + row_data = [] + cols = csv_columns(table_name="operator_images") + images_ = search_results() + op_images = get_exact_images(images_ , catalogue="operators") + + if op_images == None: + return + + for op in op_images: + + op_name = list(op.keys())[0] + + for operator in op[op_name]: + + op_data = cols.copy() + op_data["operator_images"] = "operator_images" + op_data["container_name"] = operator["display_name"] + + op_data["Operator_Correspondant_Image_Url"]= operator_images_urls(operator["container_images"]) + + op_data["Operator_Repository"] = operator["git_repos"] + img_data_type = entity_type_mapper(op["type"] , str(op["entity_id"])) + op_data.update(img_data_type) + row_data.append(op_data) + + write_to_csv(row_data ,file_name="operator_images") + + +def docker_images() -> None: + """ + Saves docker images to docker_images.csv + """ + + row_data = [] + cols = csv_columns(table_name="docker_images") + images_ = search_results() + docker_images = get_exact_images(images_, catalogue="dockerhub_exact_images") + + if docker_images == None: + return + + + for exact_images in docker_images: + + if len(exact_images) != 0: + + for ky, val in exact_images.items(): + + if ky not in ["type","entity_id"]: + + img_data = cols.copy() + img_data["docker_images"] = "docker_images" + img_data["container_name"] = val[0]["name"] + img_data["Docker_Url"] = val[0]["Docker_Url"] + img_data["Notes"] = "" + + if val[0]["Official image"]: + img_data["CertOfImageAndPublisher"] = "Official Image" + if val[0]["Verified Publisher"]: + img_data["CertOfImageAndPublisher"] = "Verified Publisher" + + img_data_type = entity_type_mapper(exact_images["type"] , str(exact_images["entity_id"])) + img_data.update(img_data_type) + row_data.append(img_data) + + + write_to_csv(row_data , "docker_images") + + +def openshift_images(): + """ + Saves Openshift images to openshift_images.csv. + + """ + + row_data = [] + cols = csv_columns(table_name="openshift_images") + images_ = search_results() + quay_images = get_exact_images(images_, catalogue="quay_exact_images") + + if quay_images == None: + return + + for exact_images in quay_images: + + if len(exact_images) != 0: + for ky, val in exact_images.items(): + if ky not in ["type","entity_id"]: + img_data = cols.copy() + img_data["openshift_images"] = "openshift_images" + img_data["container_name"] = val[0]["name"] + img_data["Openshift_Correspondent_Image_Url"] = val[0]["url"] + + img_data_type = entity_type_mapper(exact_images["type"] , str(exact_images["entity_id"])) + img_data["DockerImageType"] = list(img_data_type.keys())[0].title() + + img_data.update(img_data_type) + row_data.append(img_data) + + write_to_csv(row_data , "openshift_images") + diff --git a/kg_utils/search_utils/utils.py b/kg_utils/search_utils/utils.py new file mode 100644 index 0000000..222a9db --- /dev/null +++ b/kg_utils/search_utils/utils.py @@ -0,0 +1,166 @@ +import logging +import re +import json +import requests +from sqlite3 import Error +import sqlite3 +import docker +import os + +# NLP +import pandas as pd +from requests import session +from sklearn.feature_extraction.text import TfidfVectorizer +from sklearn.metrics.pairwise import cosine_similarity + + + +def clean_string_value(value): + + """ + arguments: + value : str + Return: + str : formated str + """ + if value: + value = str(value).strip() + value = value.replace(u'\u00a0', ' ') + value = re.sub(r'[^\x00-\x7F]+', ' ', ' ' + str(value) + ' ').strip() + else: + value = '' + + return value + + +################################################################################ + ############ DOCKERHUB UTILS ############## +################################################################################# + +def is_exact_match(image_name: str, entity_name: str) -> bool: + """ + get exact match() + + Args: + image_name (str): image_name from dockerhub + entity_name (str): entity from database + + Returns: + bool: True if image_name==entity_name, otherwise False + """ + + + name = image_name + + if not isinstance(image_name, str) or not isinstance(entity_name, str): + logging.error("you can only compare two string") + exit() + + if entity_name.lower() == name.lower(): + return True + else: + return False + + +def line_similarity(linelist: list, query: str): + """ + Take a list of lines, vectorize it and compare the similarity between the query and lines + + + Args: + linelist (list): List of all lines + query (str): Search query + + Raises: + ValueError: _description_ + + Returns: + (list): _description_ + (int): + """ + lines = {} + + for id, line in enumerate(linelist): + parse_line = re.sub("[^A-Za-z0-9]+", " ", str(line)).strip() + if len(parse_line) > 0: + lines[str(id)] = parse_line + + line_vectorizer = TfidfVectorizer() + vectorized_line = line_vectorizer.fit_transform(linelist) + + formatted_query = re.sub("[^A-Za-z0-9]+", " ", str(query)) + + query = formatted_query.lower().strip() + if not query: + raise ValueError("Formatted query string cannot be empty") + + vectorized_query = line_vectorizer.transform([query]) + line_score = cosine_similarity(vectorized_query, vectorized_line) + + line_score = line_score[0] + topscore_lines = line_score.argsort()[-5:][::-1] + + return topscore_lines, line_score + + +def format_images(images:list)-> list: + """ + Create the return structure for all images + + Args: + images (list): All images + + Returns: + (list): Structure + """ + + + images_list = [] + if images == None : return images_list + + for im in images: + + img_dict = {} + img_dict ={"name": " " , 'Official image': False , 'Verified Publisher': False, "Description": '' ,'star_count':'',"Docker_Url": '', 'OS':[] } + + img_dict["name"] = im["name"] + + if "/" in im['name']: img_dict['Verified Publisher'] = True + + else: img_dict['Official image'] = im["is_official"] + img_dict['star_count'] = im['star_count'] + img_dict["Docker_Url"] = docker_href(im['name']) + img_dict['OS']= [] + images_list.append(img_dict) + + return images_list + + +def docker_href( image_name: str) -> str: + """ + image_name url + + Args: + image_name (str): Image entity name + + Returns: + str: href of a DockerHub image. + """ + + href = "" + + if "/" in image_name: + href = "https://hub.docker.com/r/" + image_name + + else: + href = "https://hub.docker.com/_/" + image_name + + return href + + +################################################################################ + ############ QUAY UTILS ################ +################################################################################# + + + \ No newline at end of file From f7766d5e532bfd180f52cffd3bd35cc8dd1d70e9 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Thu, 14 Jul 2022 10:55:50 -0400 Subject: [PATCH 11/30] changed Os to OS --- kg_utils/image_search_kg/openshift_images.csv | 218 +++++++++--------- 1 file changed, 109 insertions(+), 109 deletions(-) diff --git a/kg_utils/image_search_kg/openshift_images.csv b/kg_utils/image_search_kg/openshift_images.csv index 9a3f7e5..67e349c 100644 --- a/kg_utils/image_search_kg/openshift_images.csv +++ b/kg_utils/image_search_kg/openshift_images.csv @@ -1,109 +1,109 @@ -openshift_images,container_name,OS,lang,lib,app,app_server,plugin,runlib,runtime,Opeshift_Correspondent_Image_Url,DockerImageType,Openshift_Correspondent_Image_Url -openshift_images,ansible,426,,,5,,,,,https://quay.io/repository/cloudctl/ansible,App, -openshift_images,asterisk,426,,,14,,,,,https://quay.io/repository/citybaseinc/asterisk,App, -openshift_images,db2,426,,,43,,,,,https://quay.io/repository/quarkusqeteam/db2,App, -openshift_images,drupal,426,,,45,,,,,https://quay.io/repository/swsmirror/drupal,App, -openshift_images,elastic,426,,,47,,,,,https://quay.io/repository/kmamgain/elastic,App, -openshift_images,genymotion,426,,,54,,,,,https://quay.io/repository/alaska/genymotion,App, -openshift_images,hadoop,426,,,57,,,,,https://quay.io/repository/iguazio/hadoop,App, -openshift_images,jenkins,426,,,90,,,,,https://quay.io/repository/cdis/jenkins,App, -openshift_images,memcached,426,,,98,,,,,https://quay.io/repository/jitesoft/memcached,App, -openshift_images,mysql,426,,,122,,,,,https://quay.io/repository/openshifttest/mysql,App, -openshift_images,neo4j,426,,,123,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/neo4j,App, -openshift_images,openldap,426,,,126,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/openldap,App, -openshift_images,openvpn,426,,,128,,,,,https://quay.io/repository/kubermatic/openvpn,App, -openshift_images,pentaho,426,,,150,,,,,https://quay.io/repository/hasni/pentaho,App, -openshift_images,postgresql,426,,,157,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/postgresql,App, -openshift_images,rabbitmq,426,,,165,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/rabbitmq,App, -openshift_images,redis,426,,,168,,,,,https://quay.io/repository/sameersbn/redis,App, -openshift_images,remedy,426,,,169,,,,,https://quay.io/repository/amosnl/remedy,App, -openshift_images,riak,426,,,170,,,,,https://quay.io/repository/dotabuff/riak,App, -openshift_images,sentry,426,,,180,,,,,https://quay.io/repository/app-sre/sentry,App, -openshift_images,sonarqube,426,,,186,,,,,https://quay.io/repository/gpte-devops-automation/sonarqube,App, -openshift_images,splunk,426,,,188,,,,,https://quay.io/repository/mariaelisacf/splunk,App, -openshift_images,whois,426,,,212,,,,,https://quay.io/repository/westonsteimel/whois,App, -openshift_images,tableau,426,,,213,,,,,https://quay.io/repository/growthstack/tableau,App, -openshift_images,wordpress,426,,,245,,,,,https://quay.io/repository/redhattraining/wordpress,App, -openshift_images,sqlite,426,,,258,,,,,https://quay.io/repository/fale/sqlite,App, -openshift_images,glassfish,426,,,,263,,,,https://quay.io/repository/mohamedf0/glassfish,App_Server, -openshift_images,haproxy,426,,,,264,,,,https://quay.io/repository/jduimovich0/haproxy,App_Server, -openshift_images,lucee,426,,,,271,,,,https://quay.io/repository/daemonite/lucee,App_Server, -openshift_images,nginx,426,,,,274,,,,https://quay.io/repository/openshift-scale/nginx,App_Server, -openshift_images,spark,426,,,,280,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/spark,App_Server, -openshift_images,awk,426,300,,,,,,,https://quay.io/repository/shenglai/awk,Lang, -openshift_images,basic,426,301,,,,,,,https://quay.io/repository/biocontainers/basic,Lang, -openshift_images,expect,426,315,,,,,,,https://quay.io/repository/baseimage/expect,Lang, -openshift_images,focus,426,321,,,,,,,https://quay.io/repository/biocontainers/focus,Lang, -openshift_images,fortran,426,322,,,,,,,https://quay.io/repository/eriktrent/fortran,Lang, -openshift_images,graphql,426,324,,,,,,,https://quay.io/repository/wasmoffload/graphql,Lang, -openshift_images,groovy,426,325,,,,,,,https://quay.io/repository/official-images/groovy,Lang, -openshift_images,java,426,331,,,,,,,https://quay.io/repository/tamr/java,Lang, -openshift_images,jcl,426,338,,,,,,,https://quay.io/repository/jclaret/jcl,Lang, -openshift_images,perl,426,347,,,,,,,https://quay.io/repository/biocontainers/perl,Lang, -openshift_images,php,426,350,,,,,,,https://quay.io/repository/kissj/php,Lang, -openshift_images,python,426,354,,,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/python,Lang, -openshift_images,ruby,426,358,,,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/ruby,Lang, -openshift_images,sas,426,360,,,,,,,https://quay.io/repository/domino/sas,Lang, -openshift_images,scala,426,362,,,,,,,https://quay.io/repository/azavea/scala,Lang, -openshift_images,typescript,426,367,,,,,,,https://quay.io/repository/ellerbrock/typescript,Lang, -openshift_images,log4j,426,,394,,,,,,https://quay.io/repository/crozzy/log4j,Lib, -openshift_images,struts,426,,402,,,,,,https://quay.io/repository/arifulhuq/struts,Lib, -openshift_images,angularjs,426,,406,,,,,,https://quay.io/repository/amaljose/angularjs,Lib, -openshift_images,react,426,,413,,,,,,https://quay.io/repository/profects/react,Lib, -openshift_images,android,418,,,,,,,,https://quay.io/repository/bitriseio/android,Os, -openshift_images,dart,421,,,,,,,,https://quay.io/repository/biocontainers/dart,Os, -openshift_images,centos,427,,,,,,,,https://quay.io/repository/centos/centos,Os, -openshift_images,debian,429,,,,,,,,https://quay.io/repository/official-images/debian,Os, -openshift_images,opensuse,431,,,,,,,,https://quay.io/repository/wstein/opensuse,Os, -openshift_images,ubuntu,436,,,,,,,,https://quay.io/repository/tamr/ubuntu,Os, -openshift_images,freebsd,447,,,,,,,,https://quay.io/repository/uchida/freebsd,Os, -openshift_images,windows,450,,,,,,,,https://quay.io/repository/mhallin/windows,Os, -openshift_images,fedora,453,,,,,,,,https://quay.io/repository/fedora/fedora,Os, -openshift_images,ado,426,,,,,,488,,https://quay.io/repository/scottlezberg/ado,Runlib, -openshift_images,wildfly,426,,,,,,493,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/wildfly,Runlib, -openshift_images,flash,426,,,,,,,504,https://quay.io/repository/biocontainers/flash,Runtime, -openshift_images,database,426,,,,,,,,https://quay.io/repository/deisci/database,Technology, -openshift_images,webtop,426,,,,,,,,https://quay.io/repository/linuxserver.io/webtop,Technology, -openshift_images,utility,426,,,,,,,,https://quay.io/repository/theiagen/utility,Technology, -openshift_images,windows,580,,,,,,,,https://quay.io/repository/mhallin/windows,Os, -openshift_images,java,426,584,,,,,,,https://quay.io/repository/tamr/java,Lang, -openshift_images,perl,426,585,,,,,,,https://quay.io/repository/biocontainers/perl,Lang, -openshift_images,php,426,586,,,,,,,https://quay.io/repository/kissj/php,Lang, -openshift_images,python,426,587,,,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/python,Lang, -openshift_images,ruby,426,588,,,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/ruby,Lang, -openshift_images,instana,426,,,,,,,611,https://quay.io/repository/yaoyao/instana,Runtime, -openshift_images,credstash,426,,,612,,,,,https://quay.io/repository/safesoftware/credstash,App, -openshift_images,snyk,426,,,613,,,,,https://quay.io/repository/exd_infra_plts_cip/snyk,App, -openshift_images,akka,426,,,614,,,,,https://quay.io/repository/j0zi/akka,App, -openshift_images,varnish,426,,,,615,,,,https://quay.io/repository/api-platform/varnish,App_Server, -openshift_images,datadog,426,,,,,,,616,https://quay.io/repository/blondie/datadog,Runtime, -openshift_images,api,426,,,,,,,,https://quay.io/repository/infrabox/api,Technology, -openshift_images,hazelcast,426,,,,,,,618,https://quay.io/repository/hazelcast_cloud/hazelcast,Runtime, -openshift_images,infinispan,426,,,619,,,,,https://quay.io/repository/operatorhubio/infinispan,App, -openshift_images,nuxeo,426,,,,,,,620,https://quay.io/repository/swsmirror/nuxeo,Runtime, -openshift_images,arangodb,426,,,621,,,,,https://quay.io/repository/swsmirror/arangodb,App, -openshift_images,clickhouse,426,,,624,,,,,https://quay.io/repository/operatorhubio/clickhouse,App, -openshift_images,minio,426,,,625,,,,,https://quay.io/repository/minio/minio,App, -openshift_images,elasticsearch,426,,,626,,,,,https://quay.io/repository/fluentd_elasticsearch/elasticsearch,App, -openshift_images,keycloak,426,,,628,,,,,https://quay.io/repository/keycloak/keycloak,App, -openshift_images,grafana,426,,,629,,,,,https://quay.io/repository/tamr/grafana,App, -openshift_images,mattermost,426,,,,,,,630,https://quay.io/repository/jostone/mattermost,Runtime, -openshift_images,synapse,426,,,631,,,,,https://quay.io/repository/dockernohub/synapse,App, -openshift_images,kubeflow,426,,,,,,,635,https://quay.io/repository/operatorhubio/kubeflow,Runtime, -openshift_images,sematext,426,,,,,,,639,https://quay.io/repository/operatorhubio/sematext,Runtime, -openshift_images,mariadb,426,,,642,,,,,https://quay.io/repository/startx/mariadb,App, -openshift_images,istio,426,,,644,,,,,https://quay.io/repository/aspenmesh/istio,App, -openshift_images,vault,426,,,645,,,,,https://quay.io/repository/cybozu/vault,App, -openshift_images,etcd,426,,,647,,,,,https://quay.io/repository/coreos/etcd,App, -openshift_images,traefik,426,,,,648,,,,https://quay.io/repository/widen/traefik,App_Server, -openshift_images,yugabytedb,426,,,650,,,,,https://quay.io/repository/marco_antonioni/yugabytedb,App, -openshift_images,cockroachdb,426,,,651,,,,,https://quay.io/repository/helmoperators/cockroachdb,App, -openshift_images,jaeger,426,,,,,,,652,https://quay.io/repository/operatorhubio/jaeger,Runtime, -openshift_images,ansible,426,,,658,,,,,https://quay.io/repository/cloudctl/ansible,App, -openshift_images,powershell,426,660,,,,,,,https://quay.io/repository/powerdock/powershell,Lang, -openshift_images,dds,426,663,,,,,,,https://quay.io/repository/havoc/dds,Lang, -openshift_images,openedge,426,673,,,,,,,https://quay.io/repository/g_querret/openedge,Lang, -openshift_images,git,426,,,677,,,,,https://quay.io/repository/sisense/git,App, -openshift_images,gitlab,426,,,678,,,,,https://quay.io/repository/sameersbn/gitlab,App, -openshift_images,mysql,426,,,684,,,,,https://quay.io/repository/openshifttest/mysql,App, -openshift_images,postgresql,426,,,686,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/postgresql,App, +openshift_images,container_name,OS,lang,lib,app,app_server,plugin,runlib,runtime,Openshift_Correspondent_Image_Url,DockerImageType +openshift_images,ansible,426,,,5,,,,,https://quay.io/repository/cloudctl/ansible,App +openshift_images,asterisk,426,,,14,,,,,https://quay.io/repository/citybaseinc/asterisk,App +openshift_images,db2,426,,,43,,,,,https://quay.io/repository/quarkusqeteam/db2,App +openshift_images,drupal,426,,,45,,,,,https://quay.io/repository/swsmirror/drupal,App +openshift_images,elastic,426,,,47,,,,,https://quay.io/repository/kmamgain/elastic,App +openshift_images,genymotion,426,,,54,,,,,https://quay.io/repository/alaska/genymotion,App +openshift_images,hadoop,426,,,57,,,,,https://quay.io/repository/iguazio/hadoop,App +openshift_images,jenkins,426,,,90,,,,,https://quay.io/repository/cdis/jenkins,App +openshift_images,memcached,426,,,98,,,,,https://quay.io/repository/jitesoft/memcached,App +openshift_images,mysql,426,,,122,,,,,https://quay.io/repository/openshifttest/mysql,App +openshift_images,neo4j,426,,,123,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/neo4j,App +openshift_images,openldap,426,,,126,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/openldap,App +openshift_images,openvpn,426,,,128,,,,,https://quay.io/repository/kubermatic/openvpn,App +openshift_images,pentaho,426,,,150,,,,,https://quay.io/repository/hasni/pentaho,App +openshift_images,postgresql,426,,,157,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/postgresql,App +openshift_images,rabbitmq,426,,,165,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/rabbitmq,App +openshift_images,redis,426,,,168,,,,,https://quay.io/repository/sameersbn/redis,App +openshift_images,remedy,426,,,169,,,,,https://quay.io/repository/amosnl/remedy,App +openshift_images,riak,426,,,170,,,,,https://quay.io/repository/dotabuff/riak,App +openshift_images,sentry,426,,,180,,,,,https://quay.io/repository/app-sre/sentry,App +openshift_images,sonarqube,426,,,186,,,,,https://quay.io/repository/gpte-devops-automation/sonarqube,App +openshift_images,splunk,426,,,188,,,,,https://quay.io/repository/mariaelisacf/splunk,App +openshift_images,whois,426,,,212,,,,,https://quay.io/repository/westonsteimel/whois,App +openshift_images,tableau,426,,,213,,,,,https://quay.io/repository/growthstack/tableau,App +openshift_images,wordpress,426,,,245,,,,,https://quay.io/repository/redhattraining/wordpress,App +openshift_images,sqlite,426,,,258,,,,,https://quay.io/repository/fale/sqlite,App +openshift_images,glassfish,426,,,,263,,,,https://quay.io/repository/mohamedf0/glassfish,App_Server +openshift_images,haproxy,426,,,,264,,,,https://quay.io/repository/jduimovich0/haproxy,App_Server +openshift_images,lucee,426,,,,271,,,,https://quay.io/repository/daemonite/lucee,App_Server +openshift_images,nginx,426,,,,274,,,,https://quay.io/repository/openshift-scale/nginx,App_Server +openshift_images,spark,426,,,,280,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/spark,App_Server +openshift_images,awk,426,300,,,,,,,https://quay.io/repository/shenglai/awk,Lang +openshift_images,basic,426,301,,,,,,,https://quay.io/repository/biocontainers/basic,Lang +openshift_images,expect,426,315,,,,,,,https://quay.io/repository/baseimage/expect,Lang +openshift_images,focus,426,321,,,,,,,https://quay.io/repository/biocontainers/focus,Lang +openshift_images,fortran,426,322,,,,,,,https://quay.io/repository/eriktrent/fortran,Lang +openshift_images,graphql,426,324,,,,,,,https://quay.io/repository/wasmoffload/graphql,Lang +openshift_images,groovy,426,325,,,,,,,https://quay.io/repository/official-images/groovy,Lang +openshift_images,java,426,331,,,,,,,https://quay.io/repository/tamr/java,Lang +openshift_images,jcl,426,338,,,,,,,https://quay.io/repository/jclaret/jcl,Lang +openshift_images,perl,426,347,,,,,,,https://quay.io/repository/biocontainers/perl,Lang +openshift_images,php,426,350,,,,,,,https://quay.io/repository/kissj/php,Lang +openshift_images,python,426,354,,,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/python,Lang +openshift_images,ruby,426,358,,,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/ruby,Lang +openshift_images,sas,426,360,,,,,,,https://quay.io/repository/domino/sas,Lang +openshift_images,scala,426,362,,,,,,,https://quay.io/repository/azavea/scala,Lang +openshift_images,typescript,426,367,,,,,,,https://quay.io/repository/ellerbrock/typescript,Lang +openshift_images,log4j,426,,394,,,,,,https://quay.io/repository/crozzy/log4j,Lib +openshift_images,struts,426,,402,,,,,,https://quay.io/repository/arifulhuq/struts,Lib +openshift_images,angularjs,426,,406,,,,,,https://quay.io/repository/amaljose/angularjs,Lib +openshift_images,react,426,,413,,,,,,https://quay.io/repository/profects/react,Lib +openshift_images,android,418,,,,,,,,https://quay.io/repository/bitriseio/android,OS +openshift_images,dart,421,,,,,,,,https://quay.io/repository/biocontainers/dart,OS +openshift_images,centos,427,,,,,,,,https://quay.io/repository/centos/centos,OS +openshift_images,debian,429,,,,,,,,https://quay.io/repository/official-images/debian,OS +openshift_images,opensuse,431,,,,,,,,https://quay.io/repository/wstein/opensuse,OS +openshift_images,ubuntu,436,,,,,,,,https://quay.io/repository/tamr/ubuntu,OS +openshift_images,freebsd,447,,,,,,,,https://quay.io/repository/uchida/freebsd,OS +openshift_images,windows,450,,,,,,,,https://quay.io/repository/mhallin/windows,OS +openshift_images,fedora,453,,,,,,,,https://quay.io/repository/fedora/fedora,OS +openshift_images,ado,426,,,,,,488,,https://quay.io/repository/scottlezberg/ado,Runlib +openshift_images,wildfly,426,,,,,,493,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/wildfly,Runlib +openshift_images,flash,426,,,,,,,504,https://quay.io/repository/biocontainers/flash,Runtime +openshift_images,database,426,,,,,,,,https://quay.io/repository/deisci/database,Technology +openshift_images,webtop,426,,,,,,,,https://quay.io/repository/linuxserver.io/webtop,Technology +openshift_images,utility,426,,,,,,,,https://quay.io/repository/theiagen/utility,Technology +openshift_images,windows,580,,,,,,,,https://quay.io/repository/mhallin/windows,OS +openshift_images,java,426,584,,,,,,,https://quay.io/repository/tamr/java,Lang +openshift_images,perl,426,585,,,,,,,https://quay.io/repository/biocontainers/perl,Lang +openshift_images,php,426,586,,,,,,,https://quay.io/repository/kissj/php,Lang +openshift_images,python,426,587,,,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/python,Lang +openshift_images,ruby,426,588,,,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/ruby,Lang +openshift_images,instana,426,,,,,,,611,https://quay.io/repository/yaoyao/instana,Runtime +openshift_images,credstash,426,,,612,,,,,https://quay.io/repository/safesoftware/credstash,App +openshift_images,snyk,426,,,613,,,,,https://quay.io/repository/exd_infra_plts_cip/snyk,App +openshift_images,akka,426,,,614,,,,,https://quay.io/repository/j0zi/akka,App +openshift_images,varnish,426,,,,615,,,,https://quay.io/repository/api-platform/varnish,App_Server +openshift_images,datadog,426,,,,,,,616,https://quay.io/repository/blondie/datadog,Runtime +openshift_images,api,426,,,,,,,,https://quay.io/repository/infrabox/api,Technology +openshift_images,hazelcast,426,,,,,,,618,https://quay.io/repository/hazelcast_cloud/hazelcast,Runtime +openshift_images,infinispan,426,,,619,,,,,https://quay.io/repository/operatorhubio/infinispan,App +openshift_images,nuxeo,426,,,,,,,620,https://quay.io/repository/swsmirror/nuxeo,Runtime +openshift_images,arangodb,426,,,621,,,,,https://quay.io/repository/swsmirror/arangodb,App +openshift_images,clickhouse,426,,,624,,,,,https://quay.io/repository/operatorhubio/clickhouse,App +openshift_images,minio,426,,,625,,,,,https://quay.io/repository/minio/minio,App +openshift_images,elasticsearch,426,,,626,,,,,https://quay.io/repository/fluentd_elasticsearch/elasticsearch,App +openshift_images,keycloak,426,,,628,,,,,https://quay.io/repository/keycloak/keycloak,App +openshift_images,grafana,426,,,629,,,,,https://quay.io/repository/tamr/grafana,App +openshift_images,mattermost,426,,,,,,,630,https://quay.io/repository/jostone/mattermost,Runtime +openshift_images,synapse,426,,,631,,,,,https://quay.io/repository/dockernohub/synapse,App +openshift_images,kubeflow,426,,,,,,,635,https://quay.io/repository/operatorhubio/kubeflow,Runtime +openshift_images,sematext,426,,,,,,,639,https://quay.io/repository/operatorhubio/sematext,Runtime +openshift_images,mariadb,426,,,642,,,,,https://quay.io/repository/startx/mariadb,App +openshift_images,istio,426,,,644,,,,,https://quay.io/repository/aspenmesh/istio,App +openshift_images,vault,426,,,645,,,,,https://quay.io/repository/cybozu/vault,App +openshift_images,etcd,426,,,647,,,,,https://quay.io/repository/coreos/etcd,App +openshift_images,traefik,426,,,,648,,,,https://quay.io/repository/widen/traefik,App_Server +openshift_images,yugabytedb,426,,,650,,,,,https://quay.io/repository/marco_antonioni/yugabytedb,App +openshift_images,cockroachdb,426,,,651,,,,,https://quay.io/repository/helmoperators/cockroachdb,App +openshift_images,jaeger,426,,,,,,,652,https://quay.io/repository/operatorhubio/jaeger,Runtime +openshift_images,ansible,426,,,658,,,,,https://quay.io/repository/cloudctl/ansible,App +openshift_images,powershell,426,660,,,,,,,https://quay.io/repository/powerdock/powershell,Lang +openshift_images,dds,426,663,,,,,,,https://quay.io/repository/havoc/dds,Lang +openshift_images,openedge,426,673,,,,,,,https://quay.io/repository/g_querret/openedge,Lang +openshift_images,git,426,,,677,,,,,https://quay.io/repository/sisense/git,App +openshift_images,gitlab,426,,,678,,,,,https://quay.io/repository/sameersbn/gitlab,App +openshift_images,mysql,426,,,684,,,,,https://quay.io/repository/openshifttest/mysql,App +openshift_images,postgresql,426,,,686,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/postgresql,App From 06a565280a0a6e382ba876f1aa7e32e085b53f50 Mon Sep 17 00:00:00 2001 From: lamwassi <85893516+lamwassi@users.noreply.github.com> Date: Thu, 14 Jul 2022 10:29:40 -0400 Subject: [PATCH 12/30] Delete kg_utils/test directory --- kg_utils/test/test_dockerhub_api.py | 4 -- kg_utils/test/test_search_images.py | 64 ----------------------------- 2 files changed, 68 deletions(-) delete mode 100644 kg_utils/test/test_dockerhub_api.py delete mode 100644 kg_utils/test/test_search_images.py diff --git a/kg_utils/test/test_dockerhub_api.py b/kg_utils/test/test_dockerhub_api.py deleted file mode 100644 index 286583b..0000000 --- a/kg_utils/test/test_dockerhub_api.py +++ /dev/null @@ -1,4 +0,0 @@ -import unittest - -class test_api(unittest.TestCase): - pass diff --git a/kg_utils/test/test_search_images.py b/kg_utils/test/test_search_images.py deleted file mode 100644 index 59adeab..0000000 --- a/kg_utils/test/test_search_images.py +++ /dev/null @@ -1,64 +0,0 @@ -import unittest - -from src.search_images import DockerHubSearch ,Operators , Quay - - -class test_search_operators(unittest.TestCase): - - def setUp(self) -> None: - - self.operator = Operators() - self.quay = Quay() - self.docker = DockerHubSearch() - - - def tearDown(self) -> None: - - self.operator = None - self.quay = None - self.docker = None - - - def test_search_operator(self): - - entity = "DB2" - - self.assertIsInstance(entity , str) - - - - def test_search_dockerhub_images(self): - - entity = "DB2" - self.assertIsInstance(entity , str) - - - def test_search_images(self): - entity = "DB2" - self.assertIsInstance(entity , str) - - - - - - - - - - - - - - - - - - - - - - - - - - From 307878e745b3c7b984e8bf5549d0fa83e50bbe2b Mon Sep 17 00:00:00 2001 From: lamwassi <85893516+lamwassi@users.noreply.github.com> Date: Thu, 14 Jul 2022 10:30:11 -0400 Subject: [PATCH 13/30] Delete kg_utils/src directory --- kg_utils/src/__init__.py | 0 kg_utils/src/config.ini | 25 - kg_utils/src/dockerhub_api.py | 917 ---------------------------------- kg_utils/src/load_entities.py | 147 ------ kg_utils/src/save_to_csv.py | 283 ----------- kg_utils/src/search_images.py | 755 ---------------------------- kg_utils/src/utils.py | 163 ------ 7 files changed, 2290 deletions(-) delete mode 100644 kg_utils/src/__init__.py delete mode 100644 kg_utils/src/config.ini delete mode 100644 kg_utils/src/dockerhub_api.py delete mode 100644 kg_utils/src/load_entities.py delete mode 100644 kg_utils/src/save_to_csv.py delete mode 100644 kg_utils/src/search_images.py delete mode 100644 kg_utils/src/utils.py diff --git a/kg_utils/src/__init__.py b/kg_utils/src/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/kg_utils/src/config.ini b/kg_utils/src/config.ini deleted file mode 100644 index 64289d5..0000000 --- a/kg_utils/src/config.ini +++ /dev/null @@ -1,25 +0,0 @@ -[database] -database_path = kb/1.0.4.db - -[quay] -max_pages = 2 -page_increments = 1 -find_path = find/repositories -quay_api = https://quay.io/api/v1/ -top_popular_images = 5 - -[dockerhub] - -top_relevant = 40 - -[operators] - - - - - - - - - - diff --git a/kg_utils/src/dockerhub_api.py b/kg_utils/src/dockerhub_api.py deleted file mode 100644 index 98095ff..0000000 --- a/kg_utils/src/dockerhub_api.py +++ /dev/null @@ -1,917 +0,0 @@ -# MIT License -# -# Copyright (c) 2017 Daniel Sullivan (mumblepins) -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in all -# copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -# SOFTWARE. - - -from __future__ import print_function - -import json - -import requests -from furl import furl -from requests.auth import AuthBase - - -class TimeoutError(Exception): - pass - - -class ConnectionError(Exception): - pass - - -class AuthenticationError(Exception): - pass - - -class DockerHubAuth(AuthBase): - def __init__(self, requests_post, api_url, username=None, password=None, token=None, delete_creds=True): - """ - - Args: - requests_post (:py:meth:`DockerHub._do_requests_post`): - api_url (str): - username (str, optional): - password (str, optional): - token (str, optional): - delete_creds (bool, optional): - """ - - self._api_url = api_url - self._requests_post = requests_post - if token is not None: - self._token = token - return - if username is not None and password is not None: - self._username = username - self._password = password - self._get_authorization_token() - if delete_creds: - self._username = None - self._password = None - return - raise ValueError("Need either username and password or token for authentication") - - @property - def token(self): - return self._token - - def __eq__(self, other): - return self._token == getattr(other, '_token', None) - - def __ne__(self, other): - return not self == other - - def __call__(self, r): - r.headers['Authorization'] = "JWT {}".format(self._token) - return r - - def _get_authorization_token(self): - """Actually gets the authentication token - - Raises: - AuthenticationError: didn't login right - - """ - r = self._requests_post( - self._api_url, - { - "username": self._username, - "password": self._password - }) - if not r.ok: - raise AuthenticationError("Error Status {}:\n{}".format(r.status_code, json.dumps(r.json(), indent=2))) - self._token = r.json()['token'] - - -def parse_url(url): - """Parses a url into the base url and the query params - - Args: - url (str): url with query string, or not - - Returns: - (str, `dict` of `lists`): url, query (dict of values) - """ - f = furl(url) - query = f.args - query = {a[0]: a[1] for a in query.listitems()} - f.remove(query=True).path.normalize() - url = f.url - - return url, query - - -def user_cleaner(user): - """Converts none or _ to library, makes username lowercase - - Args: - user (str): - - Returns: - str: cleaned username - - """ - if user == "_" or user == "": - return "library" - try: - return user.lower() - except AttributeError: - return user - - -class DockerHub(object): - """Actual class for making API calls - - Args: - username (str, optional): - password(str, optional): - token(str, optional): - url(str, optional): Url of api (https://hub.docker.com) - version(str, optional): Api version (v2) - delete_creds (bool, optional): Whether to delete password after logging in (default True) - return_lists (bool, optional): Whether to return a `generator` from calls that return multiple values - (False, default), or to return a simple `list` (True) - """ - - # - def __init__(self, username=None, password=None, token=None, url=None, version='v2', delete_creds=True, - return_lists=False): - - #https://registry.hub.docker.com/ - # 'https://hub.docker.com' - - self._version = version - self._url = '{0}/{1}'.format(url or'https://registry.hub.docker.com' , self.version) - self._session = requests.Session() - self._auth = None - self._token = None - self._username = None - self._password = None - self._return_lists = return_lists - self.login(username, password, token, delete_creds) - - def __enter__(self): - return self - - def __exit__(self, exc_type, exc_val, exc_tb): - self.close() - - def close(self): - self._session.close() - - # - - # - @property - def return_lists(self): - """Whether functions should return generators (False) or lists (True) - - Returns: - bool - - """ - return self._return_lists - - @return_lists.setter - def return_lists(self, value): - self._return_lists = value - - @property - def username(self): - if self._username is None and self.logged_in: - self._get_username() - return self._username - - @property - def logged_in(self): - return self.token is not None - - @property - def version(self): - return self._version - - @property - def url(self): - return self._url - - @property - def token(self): - return self._token - - @token.setter - def token(self, value): - self._token = value - self._get_username() - - # - - # - - def _do_request(self, method, address, **kwargs): - try: - if 'timeout' not in kwargs: - kwargs['timeout'] = (5, 15) - - if 'auth' not in kwargs: - kwargs['auth'] = self._auth - - if 'headers' not in kwargs: - kwargs['headers'] = {"Content-Type": "application/json"} - elif 'Content-Type' not in kwargs['headers']: - kwargs['headers']['Content-Type'] = "application/json" - - url, query = parse_url(address) - if query: - address = url - if 'params' in kwargs: - query.update(kwargs['params']) - kwargs['params'] = query - resp = self._session.request(method, address, **kwargs) - - except requests.exceptions.Timeout as e: - raise TimeoutError('Connection Timeout. Download failed: {0}'.format(e)) - except requests.exceptions.RequestException as e: - raise ConnectionError('Connection Error. Download failed: {0}'.format(e)) - else: - try: - resp.raise_for_status() - except: - print(resp.json()) - print(resp.headers) - raise - return resp - - def _do_requests_get(self, address, **kwargs): - if 'params' not in kwargs: - kwargs['params'] = {} - # if 'perPage' not in kwargs['params']: - # #kwargs['params']['perPage'] = 100 - # pass - return self._do_request('GET', address, **kwargs) - - def _do_requests_post(self, address, json_data=None, **kwargs): - return self._do_request('POST', address, json=json_data, **kwargs) - - def _do_requests_put(self, address, json_data=None, **kwargs): - return self._do_request('PUT', address, json=json_data, **kwargs) - - def _do_requests_patch(self, address, json_data, **kwargs): - return self._do_request('PATCH', address, json=json_data, **kwargs) - - def _do_requests_delete(self, address, **kwargs): - return self._do_request('DELETE', address, **kwargs) - - def _iter_requests_get(self, address, **kwargs): - if self.return_lists: - return list(self._iter_requests_get_generator(address, **kwargs)) - return self._iter_requests_get_generator(address, **kwargs) - - def _iter_requests_get_generator(self, address, **kwargs): - _next = None - resp = self._do_requests_get(address, **kwargs) - - while True: - if _next: - resp = self._do_requests_get(_next) - # print _next - - resp = resp.json() - - for i in resp['results']: - yield i - - if resp['next']: - _next = resp['next'] - continue - return - - def _api_url(self, path): - return '{0}/{1}/'.format(self.url, path) - - def _get_username(self): - if self.logged_in: - self._username = user_cleaner(self.logged_in_user()['username']) - else: - self._username = None - - # - - def login(self, username=None, password=None, token=None, delete_creds=True): - """Logs into Docker hub and gets a token - - Either username and password or token should be specified - - Args: - username (str, optional): - password (str, optional): - token (str, optional): - delete_creds (bool, optional): - - Returns: - - """ - - self._username = user_cleaner(username) - self._password = password - self._token = token - if token is not None: - # login with token - self._auth = DockerHubAuth(self._do_requests_post, self._api_url('users/login'), token=token) - elif username is not None and password is not None: - # login with user/pass - self._auth = DockerHubAuth(self._do_requests_post, self._api_url('users/login'), username=username, - password=password) - else: - # don't login - return - - if delete_creds: - self._password = None - - self._token = self._auth.token - - def comments(self, user, repository, **kwargs): - """ - - Args: - user: - repository: - **kwargs: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{0}/{1}/comments'.format(user, repository)) - return self._iter_requests_get(url, **kwargs) - - def repository(self, user, repository, **kwargs): - """ - - Args: - user: - repository: - **kwargs: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{0}/{1}'.format(user, repository)) - return self._do_requests_get(url, **kwargs).json() - - def repositories(self, user, **kwargs): - """ - - Args: - user: - **kwargs: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{0}'.format(user)) - return self._iter_requests_get(url, **kwargs) - - def repositories_starred(self, user, **kwargs): - """ - - Args: - user: - **kwargs: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('users/{0}/repositories/starred'.format(user)) - return self._iter_requests_get(url, **kwargs) - - def tags(self, user, repository, **kwargs): - """ - - Args: - user: - repository: - **kwargs: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{0}/{1}/tags'.format(user, repository)) - return self._iter_requests_get(url, **kwargs) - - def user(self, user, **kwargs): - """ - - Args: - user: - **kwargs: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('users/{0}'.format(user)) - return self._do_requests_get(url, **kwargs).json() - - # ------ Logged In Section - - def logged_in_user(self): - """ - - Returns: - - """ - return self._do_requests_get(self._api_url('user')).json() - - def add_collaborator(self, user, repository, collaborator): - """ - - Args: - user: - repository: - collaborator: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/collaborators'.format(user, repository)) - return self._do_requests_post(url, { - "user": collaborator.lower() - }).json() - - def build_details(self, user, repository, code): - """ - - Args: - user: - repository: - code: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/buildhistory/{}'.format(user, repository, code)) - return self._do_requests_get(url).json() - - def build_history(self, user, repository, **kwargs): - """ - - Args: - user: - repository: - **kwargs: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/buildhistory'.format(user, repository)) - return self._iter_requests_get(url, **kwargs) - - def build_links(self, user, repository, **kwargs): - """ - - Args: - user: - repository: - **kwargs: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/links'.format(user, repository)) - return self._iter_requests_get(url, **kwargs) - - def build_settings(self, user, repository): - """ - - Args: - user: - repository: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/autobuild'.format(user, repository)) - return self._do_requests_get(url).json() - - def build_trigger(self, user, repository): - """ - - Args: - user: - repository: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/buildtrigger'.format(user, repository)) - return self._do_requests_get(url).json() - - def build_trigger_history(self, user, repository, **kwargs): - """ - - Args: - user: - repository: - **kwargs: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/buildtrigger/history'.format(user, repository)) - return self._iter_requests_get(url, **kwargs) - - def collaborators(self, user, repository, **kwargs): - """ - - Args: - user: - repository: - **kwargs: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/collaborators'.format(user, repository)) - return self._iter_requests_get(url, **kwargs) - - def create_build_link(self, user, repository, to_repo): - """ - - Args: - user: - repository: - to_repo: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/links'.format(user, repository)) - return self._do_requests_post(url, { - "to_repo": to_repo - }).json() - - def create_build_tag(self, user, repository, details): - """ - - Args: - user: - repository: - details: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/autobuild/tags'.format(user, repository)) - return self._do_requests_post(url, { - 'isNew': True, - 'namespace': user, - 'repoName': repository, - 'name': details['name'] if 'name' in details else 'latest', - 'dockerfile_location': details['dockerfile_location'] if 'dockerfile_location' in details else '/', - 'source_type': details['source_type'] if 'source_type' in details else 'Branch', - 'source_name': details['source_name'] if 'source_name' in details else 'master' - }).json() - - def create_repository(self, user, repository, details): - """ - - Args: - user: - repository: - details: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories') - data = { - 'name': repository, - 'namespace': user, - } - details.update(data) - return self._do_requests_post(url, details).json() - - def create_automated_build(self, user, repository, details): - """ - - Args: - user: - repository: - details: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/autobuild'.format(user, repository)) - data = { - 'name': repository, - 'namespace': user, - 'active': True, - 'dockerhub_repo_name': "{}/{}".format(user, repository) - } - - details.update(data) - return self._do_requests_post(url, details).json() - - def create_webhook(self, user, repository, webhook_name): - """ - - Args: - user: - repository: - webhook_name: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/webhooks'.format(user, repository)) - data = { - 'name': webhook_name - } - return self._do_requests_post(url, data).json() - - def create_webhook_hook(self, user, repository, webhook_id, webhook_url): - """ - - Args: - user: - repository: - webhook_id: - webhook_url: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/webhooks/{}/hooks'.format(user, repository, webhook_id)) - data = { - 'hook_url': webhook_url - } - return self._do_requests_post(url, data).json() - - def delete_build_link(self, user, repository, build_id): - """ - - Args: - user: - repository: - build_id: - - Returns: - boolean: returns true if successful delete call - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/links/{}'.format(user, repository, build_id)) - resp = self._do_requests_delete(url) - # print_response(resp) - return resp.status_code == 204 - - def delete_build_tag(self, user, repository, tag_id): - """ - - Args: - user: - repository: - tag_id: - - Returns: - boolean: returns true if successful delete call - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/autobuild/tags/{}'.format(user, repository, tag_id)) - resp = self._do_requests_delete(url) - return resp.status_code == 204 - - def delete_tag(self, user, repository, tag): - """ - - Args: - user: - repository: - tag: - - Returns: - boolean: returns true if successful delete call - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/tags/{}'.format(user, repository, tag)) - resp = self._do_requests_delete(url) - return resp.status_code == 204 - - def delete_collaborator(self, user, repository, collaborator): - """ - - Args: - user: - repository: - collaborator: - - Returns: - boolean: returns true if successful delete call - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/collaborators/{}'.format(user, repository, collaborator.lower())) - resp = self._do_requests_delete(url) - return resp.status_code in [200, 201, 202, 203, 204] - - def delete_repository(self, user, repository): - """ - - Args: - user: - repository: - - Returns: - boolean: returns true if successful delete call - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}'.format(user, repository)) - resp = self._do_requests_delete(url) - # print_response(resp) - return resp.status_code in [200, 201, 202, 203, 204] - - def delete_webhook(self, user, repository, webhook_id): - """ - - Args: - user: - repository: - webhook_id: - - Returns: - boolean: returns true if successful delete call - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/webhooks/{}'.format(user, repository, webhook_id)) - resp = self._do_requests_delete(url) - # print_response(resp) - return resp.status_code in [200, 201, 202, 203, 204] - - def registry_settings(self): - """ - - Returns: - - """ - url = self._api_url('users/{}/registry-settings'.format(self.username)) - return self._do_requests_get(url).json() - - def set_build_tag(self, user, repository, build_id, details): - """ - - Args: - user: - repository: - build_id: - details: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/autobuild/tags/{}'.format(user, repository, build_id)) - data = { - 'id': build_id, - 'name': 'latest', - 'dockerfile_location': '/', - 'source_type': 'Branch', - 'source_name': 'master' - } - data.update(details) - return self._do_requests_put(url, details).json() - - def set_repository_description(self, user, repository, descriptions): - """ - - Args: - user: - repository: - descriptions: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}'.format(user, repository)) - data = {} - if 'full' in descriptions: - data['full_description'] = descriptions['full'] - if 'short' in descriptions: - data['description'] = descriptions['short'] - if not data: - raise ValueError("Need either 'short' or 'full' description specified") - - return self._do_requests_patch(url, data).json() - - def star_repository(self, user, repository): - """ - - Args: - user: - repository: - - Returns: - boolean: returns true if successful - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/stars'.format(user, repository)) - resp = self._do_requests_post(url, {}) - # print_response(resp) - return resp.status_code in [200, 201, 202, 203, 204] - - def unstar_repository(self, user, repository): - """ - - Args: - user: - repository: - - Returns: - boolean: returns true if successful - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/stars'.format(user, repository)) - resp = self._do_requests_delete(url) - # print_response(resp) - return resp.status_code in [200, 201, 202, 203, 204] - - def trigger_build(self, user, repository, details): - """ - - Args: - user: - repository: - details: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/autobuild/trigger-build'.format(user, repository)) - data = { - 'dockerfile_location': '/', - 'source_type': 'Branch', - 'source_name': 'master' - } - data.update(details) - return self._do_requests_post(url, data).json() - - def webhooks(self, user, repository, **kwargs): - """ - - Args: - user: - repository: - **kwargs: - - Returns: - - """ - user = user_cleaner(user) - url = self._api_url('repositories/{}/{}/webhooks'.format(user, repository)) - return self._iter_requests_get(url, **kwargs) \ No newline at end of file diff --git a/kg_utils/src/load_entities.py b/kg_utils/src/load_entities.py deleted file mode 100644 index e177efb..0000000 --- a/kg_utils/src/load_entities.py +++ /dev/null @@ -1,147 +0,0 @@ -################################################################################ -# Copyright IBM Corporation 2021, 2022 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -################################################################################ - - -from curses import resetty -from hashlib import new -from openpyxl import load_workbook -from sqlite3 import Error -import sqlite3 - -import configparser -import os -import re - - -#config file -config = configparser.ConfigParser() -config_data = os.path.join("src/config.ini") -config.read([config_data]) - - -def create_db_connection(database_path): - """ - Create connection to database - - Args: - - database_path (str): path to the database - - Returns: - - _type_: sqlite3 connection - - """ - - connection = None - - try: - connection = sqlite3.connect(database_path) - except Error as e: - logger.error(f'{e}: Issue connecting to db. Please check whether the .db file exists.') - return connection - - -def filter_entity(entity:str)-> str: - """ - Remove pipes(|) or pipe stars (|*) or entity_prefix pipe (i.e Linux|ubuntu) from entity names - - Args: - entity (str): entity to filter - - Returns: - str: filtered etity - """ - match_pipe_star = re.findall(r'\|\*', entity) - match_less_greater_sign = re.findall(r'\<\>' , entity) - match_abbreviation = re.findall(r'[\)]' , entity) - match_pipe_only = re.findall(r'\|', entity) - - if match_pipe_star : - return entity.split('|*')[0] - - elif match_less_greater_sign: - - if "|" in entity.split("<>")[1]: - return entity.split("<>")[1].split("|")[-1] - return(entity.split("<>")[1]) - - elif match_abbreviation: - if entity.startswith("("): - return entity - elif ('|') in entity.split("(")[0]: - - n_ent = entity.split("(")[0].split('|')[-1] - return n_ent - else: - return entity.split("(")[0] - elif match_pipe_only and '|*' not in entity: - - num = entity.count("|") - ent = '' - if num > 1: - ent = entity.split("|")[-1] - else: - ent = entity.split('|')[1] - return ent - else: - return entity - -def from_database( entity_names = None, table_name="entities"): - - """ - Load entity names from the main database. - - Returns: - list: A list containing tuple( entity_name , entity_type_id , entity_name_id) - """ - if entity_names == None : - print("No entities selected") - exit() - - db_path = config["database"]["database_path"] - connection = create_db_connection(db_path) - - entities = [] - suggest_entities = [] - cursor = connection.cursor() - - cursor.execute("SELECT * FROM {} ".format(table_name)) - for entity in cursor.fetchall(): - - - if entity_names == "all": - - - entity_name = filter_entity(entity[1]) - - entities.append( (entity_name.strip(),entity[2] , entity[0]) ) - - else: - - for name in entity_names: - - if entity[1].lower() == name.lower(): - - entity_name = filter_entity(entity[1]) - entities.append( (entity_name.strip(),entity[2] , entity[0]) ) - - elif name.lower() in entity[1].lower(): - suggest_entities.append(entity[1]) - - else: continue - - return entities , suggest_entities \ No newline at end of file diff --git a/kg_utils/src/save_to_csv.py b/kg_utils/src/save_to_csv.py deleted file mode 100644 index 1cd10b5..0000000 --- a/kg_utils/src/save_to_csv.py +++ /dev/null @@ -1,283 +0,0 @@ - -################################################################################ -# Copyright IBM Corporation 2021, 2022 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -################################################################################ - - -import json -import csv - -def search_results(): - """ - load results - - Returns: - None: Json file containing search results - """ - - with open("kb/images.json", "r" , encoding="utf-8") as images: - images_ = json.load(images) - - return images_ - - -def entity_type_mapper( entity_type: int , entity_id : str)-> dict: - """ - Maps entity_types to an interger ranging from 1 to 12 - - Args: - entity_type (int): entity_type id - entity_id (int): entity index from the entity_name table from the database - - Returns: - dict: a mapping of entity_type_name to a unique id - - """ - type_mapper = {"technology": 1, "app": 2 , "vm": 3 , "hw" : 4 , "plugin": 5 , "OS" : 6 , "runlib": 7, \ - "app_server" : 8 , "lang": 9 , "runtime": 10 , "storage": 11 , "lib": 12 - - } - - for ky , val in type_mapper.items(): - if val == entity_type: - return {ky:entity_id} - - -def write_to_csv(data:list, file_name:str): - """ - Write results to csv file - - Args: - data (list): A list containing data to save. - file_name (str): Name of the file to to save the data as csv. - - """ - - with open("kb/{}.csv".format(file_name) , "w" , encoding="utf-8") as op_csv: - - if data == []: - print("No {} found".format(file_name)) - return - - columns = list(data[0].keys()) - writer = csv.DictWriter(op_csv, fieldnames=columns) - writer.writeheader() - - if file_name == "operator_images": - - for row in data: - - row_keys = list(row.keys()) - - - - writer.writerow({"operator_images":row["operator_images"],'container_name': row["container_name"], 'OS': row["OS"] \ - , "lang":row["lang"], "lib": row["lib"] , "app": row["app"] \ - ,"app_server": row["app_server"] , "plugin":row["plugin"] , \ - "runlib": row["runlib"] , "runtime": row["runtime"] , \ - "Operator_Correspondant_Image_Url": row["Operator_Correspondant_Image_Url"] ,\ - "Operator_Repository" : row["Operator_Repository"], "Other_Operators": row["Other_Operators"] - - }) - - - if file_name == "docker_images": - for row in data: - writer.writerow({"docker_images":row["docker_images"],'container_name': row["container_name"], 'OS': row["OS"] \ - , "lang":row["lang"], "lib": row["lib"] , "app": row["app"] \ - ,"app_server": row["app_server"] , "plugin":row["plugin"] , \ - "runlib": row["runlib"] , "runtime": row["runtime"] , \ - "Docker_Url": row["Docker_Url"] ,\ - "Notes": row["Notes"], \ - "CertOfImageAndPublisher": row["CertOfImageAndPublisher"] - - }) - - if file_name =="openshift_images": - - for row in data: - writer.writerow({"openshift_images":row["openshift_images"],'container_name': row["container_name"], 'OS': row["OS"] \ - , "lang":row["lang"], "lib": row["lib"] , "app": row["app"] \ - ,"app_server": row["app_server"] , "plugin":row["plugin"] , \ - "runlib": row["runlib"] , "runtime": row["runtime"] , \ - "Opeshift_Correspondent_Image_Url": row["Opeshift_Correspondent_Image_Url"] ,\ - "DockerImageType": row["DockerImageType"] - - }) - - -def get_exact_images(all_images:dict , catalogue ="operators", index = 2): - """ - Gather exact image names found during the search proceedure. - - Args: - all_images (dict): A large dictionary containg all serach results - catalogue (str, optional): Catalog's name("operator" , "dockerhub_exact_images" ,or "quay_exact_images" ) . Defaults to "operators". - index (int, optional): _description_. Defaults to 2. - - Returns: - list: A list containing exact image names. - """ - - if catalogue == "dockerhub_exact_images": index = 0 - if catalogue == "quay_exact_images" : index = 1 - - images = [] - - for image in all_images: - - image_name = list(image.keys())[0] - - if image[image_name][index][catalogue] != []: - - - - op_data = {image_name: [], "type": image["entity_type"] , "entity_id" : image["entity_id"]} - - op_data[image_name] = image[image_name][index][catalogue] - images.append(op_data) - - return images - - -def csv_columns( table_name = "operator_images"): - """ - Build the columns headers for the csv files. - - Args: - table_name (str, optional):The name of the table from the database. Defaults to "operator_images". - - Returns: - dict: A fomated headers for the csv. - """ - - columns = { table_name: "", "container_name":"", "OS": 426, "lang" : None, "lib": None, "app": None, "app_server": None,"plugin": None,"runlib": None,"runtime": None } - - docker_col_extension = {"Docker_Url":"", "Notes": "", "CertOfImageAndPublisher": "" } - openshift_col_extension = {"Opeshift_Correspondent_Image_Url":"", "DockerImageType": ""} - operator_col_extension ={"Operator_Correspondant_Image_Url":"","Operator_Repository": "", "Other_Operators": ""} - - if table_name == "openshift_images": - columns.update(openshift_col_extension) - elif table_name == "docker_images": - columns.update(docker_col_extension) - else: - columns.update(operator_col_extension) - - return columns - - -def operator_images(): - """ - Saves operator images to a operator_images.csv - - """ - row_data = [] - cols = csv_columns(table_name="operator_images") - images_ = search_results() - op_images = get_exact_images(images_ , catalogue="operators") - - if op_images == None: - return - - for op in op_images: - - op_name = list(op.keys())[0] - - for operator in op[op_name]: - - op_data = cols.copy() - op_data["operator_images"] = "operator_images" - op_data["container_name"] = operator["display_name"] - op_data["Operator_Correspondant_Image_Url"] = operator["container_images"] - op_data["Operator_Repository"] = operator["git_repos"] - - img_data_type = entity_type_mapper(op["type"] , str(op["entity_id"])) - op_data.update(img_data_type) - - row_data.append(op_data) - - write_to_csv(row_data ,file_name="operator_images") - - -def docker_images() -> None: - """ - Saves docker images to docker_images.csv - """ - - row_data = [] - cols = csv_columns(table_name="docker_images") - images_ = search_results() - docker_images = get_exact_images(images_, catalogue="dockerhub_exact_images") - - if docker_images == None: - return - - - for exact_images in docker_images: - - if len(exact_images) != 0: - - for ky, val in exact_images.items(): - - if ky not in ["type","entity_id"]: - - img_data = cols.copy() - img_data["docker_images"] = "docker_images" - img_data["container_name"] = val[0]["name"] - img_data["Docker_Url"] = val[0]["Docker_Url"] - img_data["Notes"] = "" - img_data["CertOfImageAndPublisher"] = val[0]["Official image"] - img_data_type = entity_type_mapper(exact_images["type"] , str(exact_images["entity_id"])) - img_data.update(img_data_type) - row_data.append(img_data) - - - - write_to_csv(row_data , "docker_images") - - -def openshift_images(): - """ - Saves Openshift images to openshift_images.csv. - - """ - - row_data = [] - cols = csv_columns(table_name="openshift_images") - images_ = search_results() - quay_images = get_exact_images(images_, catalogue="quay_exact_images") - - if quay_images == None: - return - - for exact_images in quay_images: - - if len(exact_images) != 0: - for ky, val in exact_images.items(): - if ky not in ["type","entity_id"]: - img_data = cols.copy() - img_data["openshift_images"] = "openshift_images" - img_data["container_name"] = val[0]["name"] - img_data["Opeshift_Correspondent_Image_Url"] = val[0]["url"] - - img_data_type = entity_type_mapper(exact_images["type"] , str(exact_images["entity_id"])) - img_data["DockerImageType"] = list(img_data_type.keys())[0].title() - - img_data.update(img_data_type) - row_data.append(img_data) - - write_to_csv(row_data , "openshift_images") - diff --git a/kg_utils/src/search_images.py b/kg_utils/src/search_images.py deleted file mode 100644 index e1b47d6..0000000 --- a/kg_utils/src/search_images.py +++ /dev/null @@ -1,755 +0,0 @@ -################################################################################ -# Copyright IBM Corporation 2021, 2022 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -################################################################################ - - -import sys -sys.path.append("/app") - -import argparse -from audioop import tomono -from encodings import search_function -import load_entities -import json -import requests -import json -import itertools -import operator -import logging -import re -import utils -import dockerhub_api -import os -import docker -import save_to_csv -import configparser -import time - -#config file -config = configparser.ConfigParser() -config_data = os.path.join("src/config.ini") -config.read([config_data]) - -#loggger -logger = logging.getLogger('search') -logger.setLevel(logging.INFO) - - -#search sessions -operator_session = requests.Session() -quay_session = requests.Session() - - -#load list of verified and official publishers -with open("kb/verified_publisher_names.json", "r", encoding="utf-8") as verified_file: - verified_publishers = json.load(verified_file) - -class Operators(): - - def __init__(self): - - self.api = "https://artifacthub.io/api/v1/" - self.package_query = "packages/search?org=operator-framework&repo=community-operators&ts_query_web=&limit=60&offset=" - - - def community_op_images_repos(self, operator_name: str) -> list: - """ - - Searches for community operators from https://artifacthub.io/ - - Args: - operator_name (str): entity name - - Returns: - (lst): A list containing all matching operators - """ - - - - container_images = [] - - request_session = requests.session() - search_query = self.api + "packages/olm/community-operators/" + operator_name - response_ = request_session.get(url= search_query) - - try: - - image_urls = json.loads(response_.text)["containers_images"] - for imgs in image_urls: - container_images.append(imgs['image']) - - except KeyError: - print("No container images registry found") - - return container_images - - - def community_op_git_repos(self, operator_name: str): - - """ - - Args: - operator_name (str): entity name - - Returns: - (lst): A list containing all repos for a given operator_name - """ - - operator_repository = None - - request_session = requests.session() - search_query = self.api + "packages/olm/community-operators/" + operator_name - response_ = request_session.get(url= search_query) - - try: - - links = json.loads(response_.text)["links"] # source , GitHub , etc ... - - for link_data in links: - for _ , val in link_data.items(): - if val == "source" or val == "GitHub": - operator_repository = link_data["url"] - except KeyError: - print("No source urls found") - - return operator_repository - - def community_operators(self, entity: str): - - """ - sumary_line: Search community operators from https://artifacthub.io/packages/olm/community-operators/ - - Keyword arguments: - entity (str) -- An entity name from from the database - Return: list of all matching opertors - """ - - - api = "https://artifacthub.io/api/v1/" - package_query = "packages/search?org=operator-framework&repo=community-operators&ts_query_web=" - - operators = [] - sess = requests.session() - endpoint = api + package_query+"{}".format(entity) - res = sess.get(url=endpoint) - operator = json.loads(res.text)['packages'] - if len(operator) > 0 : - - for op in operator: - - update_dict = {"git_repos": None , "container_images": None} - git_repos = self.community_op_git_repos(op["name"]) - container_images = self.community_op_images_repos(op["name"]) - update_dict["git_repos"] = git_repos - update_dict["container_images"] = container_images - - op.update(update_dict) - - operators.append(op) - - return operators - - -class Quay: - - def __init__(self) -> None: - - self.quay_api = "https://quay.io/api/v1/" - self.session = requests.Session() - - - def popular_images(self, quay_images:dict, top:int): - """ - Get popular Quay images - - Args: - quay_images (dict): List of Quay imaes - top (int): Threshold = 5 - - Returns: - (list): Popular images - """ - - popular_quay_images = [] - - if len(list(quay_images.keys())) > 0: - sorted_results = dict( - sorted(quay_images.items(), key=operator.itemgetter(1), reverse=True) - ) - - popular_images = dict(itertools.islice(sorted_results.items(), top )) - popular_quay_images.append(popular_images) - - return popular_quay_images - - - def exact_image(self, results:list , entity_name:str)->list: - """ - retrieve exact image - - Args: - results (list): list of all images obtained by searching the search term (entity_name) from Quay.io - entity_name (str):Search term - - Returns: - (list):list of exact matches from Quay.io - """ - - - exact = [] - image_template = {"name": "" , "url": "" , "popularity": 0} - - for img in results: - if ( - utils.is_exact_match(img['name'], entity_name) - ): - - image = image_template.copy() - image["name"] = img["name"] - image["url"] = "https://quay.io"+img['href'] - image["popularity"] = img["popularity"] - - - exact.append(image) - - return exact - - - def top_images(self,popular_quay_images, results ): - - """ - Select top images based on popularity - - Returns: - (list): list of top images - """ - - - top_image = [] - - image_template = {"name": "" , "url": "" , "popularity": 0} - - if len(popular_quay_images) != 0: - - for img in results: - - if img['href'] in list(popular_quay_images[0].keys()): - image = image_template.copy() - image["name"] = img["name"] - image["url"] = "https://quay.io"+img['href'] - image["popularity"] = img["popularity"] - - top_image.append(image) - - return top_image - - - def recommend_images(self, results:list, quay_images: dict, entity_name:str) -> tuple: - """ - Recommended container images - Args: - results (list): list of all relavent container images from Quay.io - quay_images (dict): Quay image hrefs as keys and popularity as values - entity_name (str): entity name from the database - - Returns: - (tuple): Exact Quay image(s) and top image(s) found - """ - - top = int(config["quay"]["top_popular_images"]) - exact_quay_image = [] - popular_quay_images = [] - top_images = [] - - popular_quay_images = self.popular_images(quay_images, top) - exact_quay_image = self.exact_image( results, entity_name) - top_images = self.top_images(popular_quay_images, results) - - - return (exact_quay_image , top_images) - - - - def search_images(self, entity: str) -> tuple: - """ - - Search container images from Quay.io - - Args: - entity (str): Entity name from the database - - Returns: - tuple: Exact matches and top matches - """ - - if not isinstance(entity, str): - exit() - - max_pages = 2 - images = {} - page_increment = 1 - results = [] - search_endpoint = self.quay_api + "find/repositories" - - for page in range(max_pages): - - url = search_endpoint + "?includeUsage=true&query={}&page={}".format( - entity, page + page_increment - ) - r = self.session.get(url) - data = json.loads(r.text) - result = data["results"] - results += result - - - for repo in results: - - images[repo["href"]] = repo["popularity"] - - - exact = self.recommend_images(results, images, entity)[0] - top = self.recommend_images(results, images, entity)[1] - return (exact , top) - - -class DockerHubSearch(): - - def __init__(self): - - logging.basicConfig( filename="report.log", filemode="w", level=logging.DEBUG) - self.client = docker.from_env() - self.low_level_api = docker.APIClient(base_url='unix://var/run/docker.sock') - - def docker_href(self, image_name: str) -> str: - """_summary_ - - Args: - image_name (str): image's name - - Returns: - str: href for image_name - """ - href = "" - - if "/" in image_name: - href = "https://hub.docker.com/r/" + image_name - - else: - href = "https://hub.docker.com/_/" + image_name - - return href - - def verified_official_images(self, images:list): - """ - Retrieve all verified a official images - - Args: - images (list): Search results from dockerhub - - Returns: - (list): list of verified and official images - """ - - verified_official_images = [] - for image in images: - - # search official_images - if image["is_official"]: - verified_official_images.append(image) - # search verified publishers - elif "/" in image["name"]: - if ( - image["name"].split("/")[0] - in verified_publishers["verified_publishers"] - ): - verified_official_images.append(image) - else: - continue - return verified_official_images - - def exact_image( - self, entity_name: str, verified_and_official_images: list - ): - """ - find exact image match - - Args: - entity_name (str): search term - verified_and_official_images (list): list of verified and official images - - Returns: - (list): A list containing exact DockerHub match - """ - - exact_image = [] - image_names = [] - images = [image["name"] for image in verified_and_official_images] - - for img in images: - if "/" in img: - image_names.append(img.split("/")[1]) - else: - image_names.append(img) - - for index, img in enumerate(verified_and_official_images): - - if utils.is_exact_match(image_names[index], entity_name): - exact_image.append(img) - - else: - continue - - return exact_image - - def top_images(self, entity_name: str, verified_official_images: list): - """ - Get top relevant DockerHub images. select top 40%() - - Args: - entity_name (str): search term - verified_official_images (list): list of verified and official images - - Returns: - (list):A list containing top relevant DockerHub images - """ - - - top = int(config["dockerhub"]["top_relevant"])/100.0 - - top_images = [] - image_names = [] - query = entity_name - - if len(verified_official_images) == 0: - return top_images - - images = [image["name"] for image in verified_official_images] - - for img in images: - if "/" in img: - image_names.append(img.split("/")[1]) - else: - image_names.append(img) - - topscore_lines, line_score =utils.line_similarity(image_names, query) - - for index in list(topscore_lines): - if line_score[index] > top: - top_images.append(verified_official_images[index]) - - return top_images - - def get_os_architectures(self, images: list ) -> list: - - """" - sumary_line: Using docker_api_utils, retrieve os arch for each image - - Keyword arguments: - images(list) -- list of images from Dockerhub - Return: - - """ - image_lst = [] - - if len(images) == 0: - return image_lst - - for image in images: - - arch_list = [] - if image['Official image']: - user = 'library' - repository = image["name"] - else: - user = image["name"].split("/")[0] - repository = image["name"].split("/")[1] - - image_info = docker_api.tags(user = user, repository= repository) - - try: - os_info = next(image_info)["images"] - except: - - arch_list.append({ - "Class": "null" , - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - }) - - image['OS'] = arch_list - image_lst.append(image) - return image_lst - - - for arch in os_info: - arch_dict = { - "Class": "OS" , - "Architecture": arch["architecture"], - "Variants": arch["variant"], - "Versions": arch['os_version'], - "Type": arch['os'], - "Subtype": "" - } - arch_list.append(arch_dict) - - image['OS'] = arch_list - - image_lst.append(image) - - return image_lst - - - def recommend_exact_image(self,entity_name:str , verified_and_official_images:list): - """ - sumary_line: Searches for exact dockerhub images - - Args: - entity_name (str): _description_ - verified_and_official_images (list): list containing all verified and official images from search result - - Returns: - list: list of exact images if found - """ - - - exact_image = self.exact_image(entity_name, verified_and_official_images) - exact_image = utils.format_images(exact_image) - exact_image = self.get_os_architectures(exact_image) - return exact_image - - - def recommend_top_images ( self,entity_name:str , verified_and_official_images:list)->list: - - """ - _summary_: Recommend top relevant images from dockerhub - - Returns: - list: top images - """ - - top_images = self.top_images(entity_name, verified_and_official_images) - top_images = utils.format_images(top_images) - top_images = self.get_os_architectures(top_images) - return top_images - - def recommended_images(self, image_inst:list, entity_name:str): - """ - sumary_line: Given an entity_name and a list of relevant images from DockerHub, determine the exact match and the top relevant matches. - - Args: - image_inst (list): list of all images found from dockerhub including unofficial as well as unverified images - entity_name (str): query ( entity) - - Returns: - (list) ,(list): exact dockerhub image , top docker images - """ - verified_official_images = self.verified_official_images(image_inst) - exact_image = self.recommend_exact_image(entity_name,verified_official_images) - top_images = self.recommend_top_images(entity_name , verified_official_images) - return exact_image , top_images - - - def search_dockerhub_images(self, entity: str) -> tuple: - """ - sumary_line: Search container iages from dockerhub - - Args: - entity (str): An entity(query) to search - - Returns: - - _type_: None - - """ - - images , exact_image , top_images = [] , [] , [] - - try: - images = self.client.images.search(term=entity, limit=50) - except: - print("ImageNotFound error occured, check your entry and try again") - if images == []: - print("No Dockerhub images found for {} ".format(entity)) - - else: - exact_image , top_images = self.recommended_images(images, entity) - - return (exact_image , top_images) - - - -def save_to_kb(results: list) -> None: - """ - Save search results as a JSON file to \kb directory - - Args: - results (dict): dictionary containing search results from Dockerhub , Quay , and Operatorhub.io - """ - - with open("kb/images.json", "w" , encoding="utf-8") as images_file: - images_file.write(json.dumps(results, indent=2)) - - - -def search(entities: list) ->list: - """ - list of all entities - - Args: - entities (list): All entities - """ - - search_result = [] - for _, entity in enumerate(entities): - - - - entity_name = entity[0] - entity_type = entity[1] - entity_id = entity[2] - - if entity_name=='': - continue - - entity_dict = {entity_name: [] , "entity_type": entity_type, "entity_id": entity_id} - - print({"entity_name": entity_name , "entity_type": entity_type, "entity_id": entity_id}) - - - dockerhub_images = { 'dockerhub_exact_images':[] , 'dockerhub_top_images': []} - quay_images = { 'quay_exact_images':[] , 'quay_top_images': []} - operator_images = {"operators": []} - - - - exact_docker_image = docker_.search_dockerhub_images(entity_name)[0] - top_docker_images = docker_.search_dockerhub_images(entity_name)[1] - exact_quay_image = quay.search_images(entity_name)[0] - top_quay_images = quay.search_images(entity_name)[1] - operatorhub_images = operator_.community_operators(entity_name) - - - for operator_image in operatorhub_images: - operator_images["operators"].append(operator_image) - - for exact in exact_docker_image: - dockerhub_images['dockerhub_exact_images'].append(exact) - - for top_im in top_docker_images: - dockerhub_images['dockerhub_top_images'].append(top_im) - - for q_exact in exact_quay_image: - quay_images['quay_exact_images'].append(q_exact) - - for q_top_im in top_quay_images: - quay_images['quay_top_images'].append(q_top_im) - - entity_dict[entity_name] =[dockerhub_images, quay_images , operator_images] - - search_result.append(entity_dict) - - return search_result - - - -def cmdline_args(): - - """ - input arguments - - Keyword arguments: None - argument -- None - Return: A parser containing input arguments - - """ - - - p = argparse.ArgumentParser(prog="search_images" , usage="Search container images from dockerhub , Quay.io , and Artifacthub.io") - - p.add_argument("-e", "--entity", type = str , help="Enter entity name(s) from the database . i.e : -e nginx,tomcat,ubuntu or -e all ( to search all entities). \ - Also enclose entities with double words in a quote. For example: -e 'ibm i',db2,'Apache Kafka' ") - - p.add_argument("-db", "--database_path" , type = str, help="path containing the latest tackle containerization advisor database") - - return(p.parse_args()) - - -def get_entities(): - - """ - load entities from database - Keyword arguments: None - argument -- None - Return: list of valid entities from db - - """ - - print("Enter entity(ies) from the entity_name table to search for matching container images\n") - - try: - args = cmdline_args() - except: - print('Try $python -e -db or type $python src/search_images.py --help') - exit() - - if args.entity == 'all': - - entities , suggest_entities =load_entities.from_database(entity_names='all') - - elif args.entity != 'all': - - entity_names= args.entity.split(",") - - entities , suggest_entities = load_entities.from_database( entity_names = entity_names) - - else: - print('Try $python -e -db or type $python src/search_images.py --help') - exit() - - if entities == [] and args.entity !='all' : - print("No entity names found for {}. Enter a valid entity from the database.\n".format(args.entity)) - - - if len(suggest_entities) != 0: - - print("Did you mean the following entity(ies) \n") - for ent in suggest_entities: - print("{} \n".format(ent)) - - print("Enter a valid entity from the entities table") - exit() - - return entities - - - -if __name__ == "__main__": - - entities = get_entities() - docker_api =dockerhub_api.DockerHub(username=os.environ.get("DOCKERHUB_USERNAME", None) , password=os.environ.get("DOCKERHUB_PASSWORD", None)) - docker_ = DockerHubSearch() - quay = Quay() - operator_ = Operators() - - results = search(entities) - - save_to_kb(results) - - save_to_csv.docker_images() - save_to_csv.operator_images() - save_to_csv.openshift_images() \ No newline at end of file diff --git a/kg_utils/src/utils.py b/kg_utils/src/utils.py deleted file mode 100644 index 8fe14d3..0000000 --- a/kg_utils/src/utils.py +++ /dev/null @@ -1,163 +0,0 @@ -import logging -import re -import json -import requests -from sqlite3 import Error -import sqlite3 -import docker -import os - -# NLP -import pandas as pd -from requests import session -from sklearn.feature_extraction.text import TfidfVectorizer -from sklearn.metrics.pairwise import cosine_similarity - - - -def clean_string_value(value): - - """ - arguments: - value : str - Return: - str : formated str - """ - if value: - value = str(value).strip() - value = value.replace(u'\u00a0', ' ') - value = re.sub(r'[^\x00-\x7F]+', ' ', ' ' + str(value) + ' ').strip() - else: - value = '' - - return value - - -################################################################################ - ############ DOCKERHUB UTILS ############## -################################################################################# - -def is_exact_match(image_name: str, entity_name: str) -> bool: - """_summary_ - - Args: - image_name (str): _description_ - entity_name (str): _description_ - - Returns: - bool: _description_ - """ - - - name = image_name - - if not isinstance(image_name, str) or not isinstance(entity_name, str): - logging.error("you can only compare two string") - exit() - - if entity_name.lower() == name.lower(): - return True - else: - return False - - -def line_similarity(linelist: list, query: str): - """ - Take a list of lines, vectorize it and compare the similarity between the query and lines - - - Args: - linelist (list): List of all lines - query (str): Search query - - Raises: - ValueError: _description_ - - Returns: - (list): _description_ - (int): - """ - lines = {} - - for id, line in enumerate(linelist): - parse_line = re.sub("[^A-Za-z0-9]+", " ", str(line)).strip() - if len(parse_line) > 0: - lines[str(id)] = parse_line - - line_vectorizer = TfidfVectorizer() - vectorized_line = line_vectorizer.fit_transform(linelist) - - formatted_query = re.sub("[^A-Za-z0-9]+", " ", str(query)) - - query = formatted_query.lower().strip() - if not query: - raise ValueError("Formatted query string cannot be empty") - - vectorized_query = line_vectorizer.transform([query]) - line_score = cosine_similarity(vectorized_query, vectorized_line) - - line_score = line_score[0] - topscore_lines = line_score.argsort()[-5:][::-1] - - return topscore_lines, line_score - - -def format_images(images:list)-> list: - """ - Create the return structure for all images - - Args: - images (list): All images - - Returns: - (list): Structure - """ - - - images_list = [] - if images == None : return images_list - - for im in images: - - img_dict = {} - img_dict ={"name": " " , 'Official image': False , 'Verified Publisher': False, "Description": '' ,'star_count':'',"Docker_Url": '', 'OS':[] } - - img_dict["name"] = im["name"] - - if "/" in im['name']: img_dict['Verified Publisher'] = True - else: img_dict['Official image'] = im["is_official"] - img_dict['star_count'] = im['star_count'] - img_dict["Docker_Url"] = docker_href(im['name']) - img_dict['OS']= [] - images_list.append(img_dict) - - return images_list - - -def docker_href( image_name: str) -> str: - """_summary_ - - Args: - image_name (str): Image entity name - - Returns: - str: href of a DockerHub image. - """ - - href = "" - - if "/" in image_name: - href = "https://hub.docker.com/r/" + image_name - - else: - href = "https://hub.docker.com/_/" + image_name - - return href - - -################################################################################ - ############ QUAY UTILS ################ -################################################################################# - - - \ No newline at end of file From 32e26a5e4f55e2316dc4e74d4a20d70e9cf69a76 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Thu, 14 Jul 2022 11:03:21 -0400 Subject: [PATCH 14/30] Removed last column(Other operator) --- kg_utils/image_search_kg/operator_images.csv | 882 +++++++++---------- 1 file changed, 441 insertions(+), 441 deletions(-) diff --git a/kg_utils/image_search_kg/operator_images.csv b/kg_utils/image_search_kg/operator_images.csv index b3da26b..438b664 100644 --- a/kg_utils/image_search_kg/operator_images.csv +++ b/kg_utils/image_search_kg/operator_images.csv @@ -1,441 +1,441 @@ -operator_images,container_name,OS,lang,lib,app,app_server,plugin,runlib,runtime,Operator_Correspondant_Image_Url,Operator_Repository,Other_Operators -operator_images,Strimzi,426,,,9,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator, -operator_images,Eclipse Che,426,,,46,,,,,"[""''quay.io/eclipse/che-operator''"", ""''quay.io/che-incubator/configbump''"", ""''quay.io/che-incubator/header-rewrite-proxy''"", ""''quay.io/devfile/devworkspace-controller''"", ""''quay.io/eclipse/che--centos--postgresql-13-centos7''"", ""''quay.io/eclipse/che--centos--postgresql-96-centos7''"", ""''quay.io/eclipse/che--traefik''"", ""''quay.io/eclipse/che-backup-server-rest''"", ""''quay.io/eclipse/che-dashboard''"", ""''quay.io/eclipse/che-devfile-registry''"", ""''quay.io/eclipse/che-jwtproxy''"", ""''quay.io/eclipse/che-keycloak''"", ""''quay.io/eclipse/che-plugin-artifacts-broker''"", ""''quay.io/eclipse/che-plugin-metadata-broker''"", ""''quay.io/eclipse/che-plugin-registry''"", ""''quay.io/eclipse/che-server''"", ""''quay.io/eclipse/che-tls-secret-creator''"", ""''quay.io/openshift/origin-kube-rbac-proxy''"", ""''quay.io/openshift/origin-oauth-proxy''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/windupeng/mta-vscode-extension''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-theia''"", ""''quay.io/eclipse/che-machine-exec''"", ""''quay.io/eclipse/che-theia-endpoint-runtime-binary''"", ""''index.docker.io/ksmster/che-editor-jupyter''"", ""''index.docker.io/dirigiblelabs/dirigible-openshift''"", ""''quay.io/che-incubator/che-idea''"", ""''quay.io/che-incubator/che-pycharm''"", ""''index.docker.io/wsskeleton/eclipse-broadway''"", ""''index.docker.io/codercom/code-server''"", ""''quay.io/eclipse/che-buildah-base''"", ""''quay.io/eclipse/che-sidecar-workspace-data-sync''"", ""''quay.io/eclipse/che-buildkit-base''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mysql-57-centos7''"", ""''quay.io/eclipse/che-cpp-rhel7''"", ""''quay.io/eclipse/che-dotnet-2.2''"", ""''quay.io/eclipse/che-dotnet-3.1''"", ""''quay.io/eclipse/che-golang-1.17''"", ""''quay.io/eclipse/che-java11-gradle''"", ""''quay.io/eclipse/che-java11-maven''"", ""''quay.io/eclipse/che-java8-maven''"", ""''quay.io/eclipse/che-nodejs10-community''"", ""''quay.io/eclipse/che-nodejs10-ubi''"", ""''quay.io/eclipse/che-nodejs12-community''"", ""''quay.io/eclipse/che-nodejs8-centos''"", ""''quay.io/eclipse/che-php-7''"", ""''quay.io/eclipse/che-python-3.8''"", ""''quay.io/eclipse/che-quarkus''"", ""''quay.io/eclipse/che-rust-1.39''""]",https://github.com/eclipse-che/che-operator, -operator_images,Eclipse Ditto,426,,,46,,,,,,https://github.com/ctron/ditto-operator, -operator_images,Eclipse Hawkbit,426,,,46,,,,,,https://github.com/ctron/hawkbit-operator, -operator_images,IoT simulator,426,,,46,,,,,,https://github.com/ctron/iot-simulator-operator, -operator_images,Elasticsearch (ECK) Operator,426,,,47,,,,,,https://github.com/elastic/cloud-on-k8s, -operator_images,Elasticsearch Phenix Operator,426,,,47,,,,,,https://github.com/Carrefour-Group/elastic-phenix-operator, -operator_images,Nuxeo Operator,426,,,47,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator, -operator_images,Logging Operator,426,,,47,,,,,"[""''quay.io/opstree/logging-operator:v0.3.0''""]",https://github.com/ot-container-kit/logging-operator, -operator_images,AWS Controllers for Kubernetes - Amazon ElastiCache,426,,,47,,,,,,https://github.com/aws-controllers-k8s, -operator_images,Elasticsearch Index Operator,426,,,47,,,,,,https://github.com/IBM/esindex-operator, -operator_images,Prometheus Exporter Operator,426,,,47,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator, -operator_images,IBM Spectrum Scale CSI Plugin Operator,426,,,74,,,,,"[""''quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator''""]",https://github.com/IBM/ibm-spectrum-scale-csi/, -operator_images,Kong Operator,426,,,88,,,,,,https://github.com/kong/kong-operator, -operator_images,Jenkins Operator,426,,,90,,,,,,https://github.com/jenkinsci/kubernetes-operator, -operator_images,Prometheus Exporter Operator,426,,,98,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator, -operator_images,MongoDB Enterprise Operator,426,,,116,,,,,"[""''quay.io/mongodb/mongodb-enterprise-operator-ubi:1.16.2''""]",https://github.com/mongodb/mongodb-enterprise-kubernetes, -operator_images,MongoDB Operator,426,,,116,,,,,"[""''quay.io/opstree/mongodb-operator:v0.3.0''""]",https://github.com/ot-container-kit/mongodb-operator, -operator_images,MongoDB Atlas Operator,426,,,116,,,,,,, -operator_images,Percona Distribution for MongoDB Operator,426,,,116,,,,,,https://github.com/percona/percona-server-mongodb-operator, -operator_images,Nuxeo Operator,426,,,116,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator, -operator_images,GrdsCloud MySQL for Kubernetes,426,,,122,,,,,,https://github.com/GrdsCloud, -operator_images,Percona Distribution for MySQL Operator,426,,,122,,,,,,https://github.com/percona/percona-xtradb-cluster-operator, -operator_images,PlanetScale Operator for Vitess,426,,,122,,,,,,, -operator_images,Prometheus Exporter Operator,426,,,122,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator, -operator_images,Postgresql Operator,426,,,157,,,,,"[""''quay.io/deekshah86/postgresql-operator''""]",https://github.com/janepelladinesh/postgresql-operator, -operator_images,Percona Operator for PostgreSQL,426,,,157,,,,,,https://github.com/percona/percona-postgresql-operator, -operator_images,PostgreSQL Operator by Dev4Ddevs.com,426,,,157,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator, -operator_images,Crunchy Postgres for Kubernetes,426,,,157,,,,,,https://github.com/CrunchyData/postgres-operator, -operator_images,EDB Postgres for Kubernetes,426,,,157,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]",, -operator_images,Postgres-Operator,426,,,157,,,,,,https://github.com/zalando/postgres-operator, -operator_images,Ext Postgres Operator,426,,,157,,,,,,https://github.com/movetokube/postgres-operator, -operator_images,Nuxeo Operator,426,,,157,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator, -operator_images,Prometheus Exporter Operator,426,,,157,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator, -operator_images,Robin Cloud Native Storage,426,,,157,,,,,,, -operator_images,Redis Operator,426,,,168,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator, -operator_images,Redis Enterprise,426,,,168,,,,,,, -operator_images,Prometheus Exporter Operator,426,,,168,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator, -operator_images,Splunk Operator,426,,,188,,,,,,, -operator_images,Encrypted Images Key Syncer Helm Operator,426,,,209,,,,,"[""''docker.io/lumjjb/enc-key-sync-operator:v0.0.1''""]",https://github.com/IBM/k8s-enc-image-operator, -operator_images,Joget DX on Apache Tomcat,426,,,,260,,,,,https://github.com/jogetworkflow/, -operator_images,APIcast,426,,,,274,,,,"[""''quay.io/3scale/apicast-operator:v0.4.0''""]",https://github.com/3scale/apicast-operator, -operator_images,Spark Operator,426,,,,280,,,,,https://github.com/GoogleCloudPlatform/spark-on-k8s-operator, -operator_images,Apache Spark Operator,426,,,,280,,,,"[""''quay.io/radanalyticsio/spark-operator:1.0.2''""]",https://github.com/radanalyticsio/spark-operator, -operator_images,Kubestone,426,,,,280,,,,,https://github.com/xridge/kubestone, -operator_images,Flink Kubernetes Operator,426,301,,,,,,,"[""''docker.io/apache/flink-kubernetes-operator:1.0.1''""]",https://github.com/apache/flink-kubernetes-operator.git, -operator_images,Alvearie Imaging Ingestion Operator,426,303,,,,,,,,https://github.com/Alvearie/imaging-ingestion, -operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,303,,,,,,,,https://github.com/k8ssandra/cass-operator, -operator_images,Qserv operator,426,303,,,,,,,,https://github.com/lsst/qserv-operator, -operator_images,Strimzi,426,303,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator, -operator_images,Keycloak Operator,426,303,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak, -operator_images,Prometheus Operator,426,303,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator, -operator_images,Elasticsearch (ECK) Operator,426,303,,,,,,,,https://github.com/elastic/cloud-on-k8s, -operator_images,Crunchy Postgres for Kubernetes,426,303,,,,,,,,https://github.com/CrunchyData/postgres-operator, -operator_images,Knative Operator,426,303,,,,,,,,https://github.com/knative/operator, -operator_images,Redis Operator,426,303,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator, -operator_images,Rook-Ceph,426,303,,,,,,,,https://github.com/rook/rook, -operator_images,Argo CD,426,303,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator, -operator_images,Grafana Operator,426,303,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator, -operator_images,Starboard Operator,426,303,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard, -operator_images,TiDB Operator,426,303,,,,,,,,https://github.com/pingcap/tidb-operator, -operator_images,Altinity Operator for ClickHouse,426,303,,,,,,,,https://github.com/altinity/clickhouse-operator, -operator_images,Flux,426,303,,,,,,,,, -operator_images,Percona Distribution for MySQL Operator,426,303,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator, -operator_images,RocketMQ Operator,426,303,,,,,,,,https://github.com/apache/rocketmq-operator, -operator_images,StorageOS,426,303,,,,,,,,https://github.com/storageos/operator, -operator_images,Alvearie Imaging Ingestion Operator,426,304,,,,,,,,https://github.com/Alvearie/imaging-ingestion, -operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,304,,,,,,,,https://github.com/k8ssandra/cass-operator, -operator_images,Qserv operator,426,304,,,,,,,,https://github.com/lsst/qserv-operator, -operator_images,Strimzi,426,304,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator, -operator_images,Keycloak Operator,426,304,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak, -operator_images,Prometheus Operator,426,304,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator, -operator_images,Elasticsearch (ECK) Operator,426,304,,,,,,,,https://github.com/elastic/cloud-on-k8s, -operator_images,Crunchy Postgres for Kubernetes,426,304,,,,,,,,https://github.com/CrunchyData/postgres-operator, -operator_images,Knative Operator,426,304,,,,,,,,https://github.com/knative/operator, -operator_images,Redis Operator,426,304,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator, -operator_images,Rook-Ceph,426,304,,,,,,,,https://github.com/rook/rook, -operator_images,Argo CD,426,304,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator, -operator_images,Grafana Operator,426,304,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator, -operator_images,Starboard Operator,426,304,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard, -operator_images,TiDB Operator,426,304,,,,,,,,https://github.com/pingcap/tidb-operator, -operator_images,Altinity Operator for ClickHouse,426,304,,,,,,,,https://github.com/altinity/clickhouse-operator, -operator_images,Flux,426,304,,,,,,,,, -operator_images,Percona Distribution for MySQL Operator,426,304,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator, -operator_images,RocketMQ Operator,426,304,,,,,,,,https://github.com/apache/rocketmq-operator, -operator_images,StorageOS,426,304,,,,,,,,https://github.com/storageos/operator, -operator_images,Alvearie Imaging Ingestion Operator,426,305,,,,,,,,https://github.com/Alvearie/imaging-ingestion, -operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,305,,,,,,,,https://github.com/k8ssandra/cass-operator, -operator_images,Qserv operator,426,305,,,,,,,,https://github.com/lsst/qserv-operator, -operator_images,Strimzi,426,305,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator, -operator_images,Keycloak Operator,426,305,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak, -operator_images,Prometheus Operator,426,305,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator, -operator_images,Elasticsearch (ECK) Operator,426,305,,,,,,,,https://github.com/elastic/cloud-on-k8s, -operator_images,Crunchy Postgres for Kubernetes,426,305,,,,,,,,https://github.com/CrunchyData/postgres-operator, -operator_images,Knative Operator,426,305,,,,,,,,https://github.com/knative/operator, -operator_images,Redis Operator,426,305,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator, -operator_images,Rook-Ceph,426,305,,,,,,,,https://github.com/rook/rook, -operator_images,Argo CD,426,305,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator, -operator_images,Grafana Operator,426,305,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator, -operator_images,Starboard Operator,426,305,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard, -operator_images,TiDB Operator,426,305,,,,,,,,https://github.com/pingcap/tidb-operator, -operator_images,Altinity Operator for ClickHouse,426,305,,,,,,,,https://github.com/altinity/clickhouse-operator, -operator_images,Flux,426,305,,,,,,,,, -operator_images,Percona Distribution for MySQL Operator,426,305,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator, -operator_images,RocketMQ Operator,426,305,,,,,,,,https://github.com/apache/rocketmq-operator, -operator_images,StorageOS,426,305,,,,,,,,https://github.com/storageos/operator, -operator_images,Joget DX on Apache Tomcat,426,306,,,,,,,,https://github.com/jogetworkflow/, -operator_images,Lightbend Console Operator,426,306,,,,,,,,https://github.com/lightbend/console-charts/tree/master/operator, -operator_images,Knative Operator,426,321,,,,,,,,https://github.com/knative/operator, -operator_images,PostgreSQL Operator by Dev4Ddevs.com,426,323,,,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator, -operator_images,Redis Operator,426,323,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator, -operator_images,Logging Operator,426,323,,,,,,,"[""''quay.io/opstree/logging-operator:v0.3.0''""]",https://github.com/ot-container-kit/logging-operator, -operator_images,External Secrets Operator,426,323,,,,,,,,https://github.com/external-secrets/external-secrets-helm-operator, -operator_images,Intel Device Plugins Operator,426,323,,,,,,,,https://github.com/intel/intel-device-plugins-for-kubernetes, -operator_images,MongoDB Operator,426,323,,,,,,,"[""''quay.io/opstree/mongodb-operator:v0.3.0''""]",https://github.com/ot-container-kit/mongodb-operator, -operator_images,silicom-sts-operator,426,323,,,,,,,"[""''quay.io/silicom/sts-operator:v0.0.1''""]",github.com/silicomdk/sts-operator, -operator_images,Spark Operator,426,323,,,,,,,,https://github.com/GoogleCloudPlatform/spark-on-k8s-operator, -operator_images,WildFly,426,331,,,,,,,"[""''quay.io/wildfly/wildfly-operator:0.5.3''""]",https://github.com/wildfly/wildfly-operator, -operator_images,Eclipse Che,426,331,,,,,,,"[""''quay.io/eclipse/che-operator''"", ""''quay.io/che-incubator/configbump''"", ""''quay.io/che-incubator/header-rewrite-proxy''"", ""''quay.io/devfile/devworkspace-controller''"", ""''quay.io/eclipse/che--centos--postgresql-13-centos7''"", ""''quay.io/eclipse/che--centos--postgresql-96-centos7''"", ""''quay.io/eclipse/che--traefik''"", ""''quay.io/eclipse/che-backup-server-rest''"", ""''quay.io/eclipse/che-dashboard''"", ""''quay.io/eclipse/che-devfile-registry''"", ""''quay.io/eclipse/che-jwtproxy''"", ""''quay.io/eclipse/che-keycloak''"", ""''quay.io/eclipse/che-plugin-artifacts-broker''"", ""''quay.io/eclipse/che-plugin-metadata-broker''"", ""''quay.io/eclipse/che-plugin-registry''"", ""''quay.io/eclipse/che-server''"", ""''quay.io/eclipse/che-tls-secret-creator''"", ""''quay.io/openshift/origin-kube-rbac-proxy''"", ""''quay.io/openshift/origin-oauth-proxy''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/windupeng/mta-vscode-extension''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-theia''"", ""''quay.io/eclipse/che-machine-exec''"", ""''quay.io/eclipse/che-theia-endpoint-runtime-binary''"", ""''index.docker.io/ksmster/che-editor-jupyter''"", ""''index.docker.io/dirigiblelabs/dirigible-openshift''"", ""''quay.io/che-incubator/che-idea''"", ""''quay.io/che-incubator/che-pycharm''"", ""''index.docker.io/wsskeleton/eclipse-broadway''"", ""''index.docker.io/codercom/code-server''"", ""''quay.io/eclipse/che-buildah-base''"", ""''quay.io/eclipse/che-sidecar-workspace-data-sync''"", ""''quay.io/eclipse/che-buildkit-base''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mysql-57-centos7''"", ""''quay.io/eclipse/che-cpp-rhel7''"", ""''quay.io/eclipse/che-dotnet-2.2''"", ""''quay.io/eclipse/che-dotnet-3.1''"", ""''quay.io/eclipse/che-golang-1.17''"", ""''quay.io/eclipse/che-java11-gradle''"", ""''quay.io/eclipse/che-java11-maven''"", ""''quay.io/eclipse/che-java8-maven''"", ""''quay.io/eclipse/che-nodejs10-community''"", ""''quay.io/eclipse/che-nodejs10-ubi''"", ""''quay.io/eclipse/che-nodejs12-community''"", ""''quay.io/eclipse/che-nodejs8-centos''"", ""''quay.io/eclipse/che-php-7''"", ""''quay.io/eclipse/che-python-3.8''"", ""''quay.io/eclipse/che-quarkus''"", ""''quay.io/eclipse/che-rust-1.39''""]",https://github.com/eclipse-che/che-operator, -operator_images,AtlasMap Operator,426,331,,,,,,,"[""''quay.io/atlasmap/atlasmap-operator:0.4.1''""]",https://github.com/atlasmap/atlasmap-operator, -operator_images,Appsody Operator,426,331,,,,,,,,https://github.com/appsody/appsody-operator, -operator_images,Cryostat Operator,426,331,,,,,,,"[""''quay.io/cryostat/cryostat-operator:2.1.1''""]",github.com/cryostatio/cryostat-operator, -operator_images,Open Liberty Operator,426,331,,,,,,,,https://github.com/OpenLiberty/open-liberty-operator, -operator_images,Runtime Component Operator,426,331,,,,,,,,https://github.com/application-stacks/runtime-component-operator, -operator_images,Azure Service Operator,426,353,,,,,,,,https://github.com/Azure/azure-service-operator, -operator_images,API Operator for Kubernetes,426,353,,,,,,,,https://github.com/wso2/k8s-api-operator, -operator_images,KEDA,426,353,,,,,,,,https://github.com/kedacore/keda-olm-operator, -operator_images,WSO2 API Manager Operator for Kubernetes,426,353,,,,,,,,https://github.com/wso2/k8s-wso2am-operator, -operator_images,AWS Controllers for Kubernetes - Amazon API Gateway v2,426,353,,,,,,,,https://github.com/aws-controllers-k8s, -operator_images,AWS Controllers for Kubernetes - Amazon Application Auto Scaling,426,353,,,,,,,,https://github.com/aws-controllers-k8s, -operator_images,AWS Controllers for Kubernetes - Amazon DynamoDB,426,353,,,,,,,,https://github.com/aws-controllers-k8s, -operator_images,AWS Controllers for Kubernetes - Amazon EC2,426,353,,,,,,,,https://github.com/aws-controllers-k8s, -operator_images,AWS Controllers for Kubernetes - Amazon ECR,426,353,,,,,,,,https://github.com/aws-controllers-k8s, -operator_images,AWS Controllers for Kubernetes - Amazon EKS,426,353,,,,,,,,https://github.com/aws-controllers-k8s, -operator_images,AWS Controllers for Kubernetes - Amazon ElastiCache,426,353,,,,,,,,https://github.com/aws-controllers-k8s, -operator_images,AWS Controllers for Kubernetes - Amazon EMR on EKS,426,353,,,,,,,,https://github.com/aws-controllers-k8s, -operator_images,AWS Controllers for Kubernetes - Amazon IAM,426,353,,,,,,,,https://github.com/aws-controllers-k8s, -operator_images,AWS Controllers for Kubernetes - Amazon KMS,426,353,,,,,,,,https://github.com/aws-controllers-k8s, -operator_images,AWS Controllers for Kubernetes - Amazon Lambda,426,353,,,,,,,,https://github.com/aws-controllers-k8s, -operator_images,AWS Controllers for Kubernetes - Amazon MQ,426,353,,,,,,,,https://github.com/aws-controllers-k8s, -operator_images,AWS Controllers for Kubernetes - Amazon OpenSearch Service,426,353,,,,,,,,https://github.com/aws-controllers-k8s, -operator_images,AWS Controllers for Kubernetes - Amazon RDS,426,353,,,,,,,,https://github.com/aws-controllers-k8s, -operator_images,AWS Controllers for Kubernetes - Amazon S3,426,353,,,,,,,,https://github.com/aws-controllers-k8s, -operator_images,AWS Controllers for Kubernetes - Amazon SageMaker,426,353,,,,,,,,https://github.com/aws-controllers-k8s, -operator_images,Strimzi,426,355,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator, -operator_images,Keycloak Operator,426,355,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak, -operator_images,Prometheus Operator,426,355,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator, -operator_images,Elasticsearch (ECK) Operator,426,355,,,,,,,,https://github.com/elastic/cloud-on-k8s, -operator_images,Knative Operator,426,355,,,,,,,,https://github.com/knative/operator, -operator_images,Redis Operator,426,355,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator, -operator_images,Rook-Ceph,426,355,,,,,,,,https://github.com/rook/rook, -operator_images,Grafana Operator,426,355,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator, -operator_images,Starboard Operator,426,355,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard, -operator_images,TiDB Operator,426,355,,,,,,,,https://github.com/pingcap/tidb-operator, -operator_images,RocketMQ Operator,426,355,,,,,,,,https://github.com/apache/rocketmq-operator, -operator_images,Falco Operator,426,355,,,,,,,"[""''docker.io/falcosecurity/falco-operator-helm:0.7.6''""]",https://github.com/falcosecurity/falco-operator/tree/helm-based-operator, -operator_images,Kubemq Enterprise Operator,426,355,,,,,,,"[""''docker.io/kubemq/kubemq-operator:latest''""]",https://github.com/kubemq-io/kubemq-operator, -operator_images,Postgres-Operator,426,355,,,,,,,,https://github.com/zalando/postgres-operator, -operator_images,AWS S3 Operator,426,355,,,,,,,"[""''quay.io/screeley44/aws-s3-provisioner:v1.0.0''""]",https://github.com/yard-turkey/aws-s3-provisioner, -operator_images,Azure Service Operator,426,355,,,,,,,,https://github.com/Azure/azure-service-operator, -operator_images,ArangoDB,426,355,,,,,,,,https://github.com/arangodb/kube-arangodb, -operator_images,Redis Enterprise,426,355,,,,,,,,, -operator_images,Apicurio Registry Operator,426,355,,,,,,,"[""''quay.io/apicurio/apicurio-registry-operator:1.0.0''""]",https://github.com/Apicurio/apicurio-registry-operator, -operator_images,API Operator for Kubernetes,426,355,,,,,,,,https://github.com/wso2/k8s-api-operator, -operator_images,GitLab,426,360,,,,,,,,https://gitlab.com/gitlab-org/cloud-native/gitlab-operator, -operator_images,GitLab Runner,426,360,,,,,,,,https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator, -operator_images,nfd-operator,426,362,,,,,,,,https://github.com/kubernetes-sigs/node-feature-discovery-operator, -operator_images,Appsody Operator,426,364,,,,,,,,https://github.com/appsody/appsody-operator, -operator_images,Runtime Component Operator,426,364,,,,,,,,https://github.com/application-stacks/runtime-component-operator, -operator_images,Camel K Operator,426,,378,,,,,,"[""''docker.io/apache/camel-k:1.9.2''""]",https://github.com/apache/camel-k, -operator_images,Appsody Operator,426,,398,,,,,,,https://github.com/appsody/appsody-operator, -operator_images,Open Liberty Operator,426,,398,,,,,,,https://github.com/OpenLiberty/open-liberty-operator, -operator_images,Runtime Component Operator,426,,398,,,,,,,https://github.com/application-stacks/runtime-component-operator, -operator_images,Kogito,426,,398,,,,,,"[""''quay.io/kiegroup/kogito-operator:1.24.0''""]",https://github.com/kiegroup/kogito-operator, -operator_images,Kubeflow,424,,,,,,,,,https://github.com/kubeflow/kfctl, -operator_images,Varnish Operator,424,,,,,,,,,https://github.com/IBM/varnish-operator, -operator_images,Composable,424,,,,,,,,,https://github.com/IBM/composable, -operator_images,IBM COS Bucket Operator,424,,,,,,,,,https://github.com/IBM/cos-bucket-operator, -operator_images,Encrypted Images Key Syncer Helm Operator,424,,,,,,,,"[""''docker.io/lumjjb/enc-key-sync-operator:v0.0.1''""]",https://github.com/IBM/k8s-enc-image-operator, -operator_images,Elasticsearch Index Operator,424,,,,,,,,,https://github.com/IBM/esindex-operator, -operator_images,Event Streams Topic,424,,,,,,,,,https://github.com/IBM/event-streams-topic, -operator_images,External Secrets Operator,424,,,,,,,,,https://github.com/external-secrets/external-secrets-helm-operator, -operator_images,Hybrid Application Model Operator,424,,,,,,,,"[""''quay.io/hybridappio/ham-deploy:0.1.0''""]",https://github.com/hybridapp-io/ham-deploy, -operator_images,IBM Application Gateway Operator,424,,,,,,,,,https://github.com/IBM-Security/ibm-application-gateway-operator, -operator_images,IBM block storage CSI driver operator,424,,,,,,,,,https://github.com/IBM/ibm-block-csi-operator, -operator_images,IBM Cloud IAM Operator,424,,,,,,,,,https://github.com/IBM/ibmcloud-iam-operator, -operator_images,IBM Cloud Operator,424,,,,,,,,,https://github.com/IBM/cloud-operators, -operator_images,Ibm Quantum Operator,424,,,,,,,,"[""''quay.io/application/husky_parul/ibm-quantum-operator''""]",https://github.com/redhat-et/ibm-quantum-operator, -operator_images,IBM Security Verify Access Operator,424,,,,,,,,,https://github.com/IBM-Security/verify-access-operator, -operator_images,IBM Spectrum Scale CSI Plugin Operator,424,,,,,,,,"[""''quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator''""]",https://github.com/IBM/ibm-spectrum-scale-csi/, -operator_images,Open Liberty Operator,424,,,,,,,,,https://github.com/OpenLiberty/open-liberty-operator, -operator_images,QiskitPlayground,424,,,,,,,,"[""''docker.io/qiskit/operator:0.1''""]",https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/kubernetes-qiskit-operator, -operator_images,WildFly,426,,,,,,493,,"[""''quay.io/wildfly/wildfly-operator:0.5.3''""]",https://github.com/wildfly/wildfly-operator, -operator_images,Knative Operator,426,,,,,,,497,,https://github.com/knative/operator, -operator_images,Submariner,426,,,,,,,497,"[""''quay.io/submariner/submariner-operator:0.11.0''""]",https://github.com/submariner-io/submariner-operator, -operator_images,Kong Operator,426,,,,,,,497,,https://github.com/kong/kong-operator, -operator_images,Traefikee Operator,426,,,,,,,497,,, -operator_images,Upbound Universal Crossplane (UXP),426,,,,,,,497,,https://github.com/upbound/universal-crossplane, -operator_images,Varnish Operator,426,,,,,,,497,,https://github.com/IBM/varnish-operator, -operator_images,BeeGFS CSI Driver,426,,,,,,,497,,https://github.com/netapp/beegfs-csi-driver, -operator_images,cluster-impairment-operator,426,,,,,,,497,"[""''quay.io/redhat-performance/cluster-impairment-operator:1.0.4''""]",https://github.com/redhat-performance/cluster-impairment-operator, -operator_images,Kogito Knative Eventing Source,426,,,,,,,497,,https://github.com/knative-sandbox/eventing-kogito, -operator_images,k8gb,426,,,,,,,497,,https://github.com/k8gb-io/k8gb, -operator_images,Kubernetes NMState Operator,426,,,,,,,497,"[""''quay.io/nmstate/kubernetes-nmstate-operator:v0.47.0''""]",https://github.com/nmstate/kubernetes-nmstate, -operator_images,MARIN3R,426,,,,,,,497,"[""''quay.io/3scale/marin3r''""]",https://github.com/3scale-ops/marin3r, -operator_images,MetalLB Operator,426,,,,,,,497,"[""''quay.io/metallb/metallb-operator''""]",https://github.com/metallb/metallb-operator, -operator_images,NetObserv Operator,426,,,,,,,497,"[""''quay.io/netobserv/network-observability-operator:0.1.3''""]",https://github.com/netobserv/network-observability-operator, -operator_images,NeuVector Operator,426,,,,,,,497,,https://github.com/neuvector/neuvector-operator, -operator_images,Network Service Mesh Operator,426,,,,,,,497,"[""''quay.io/acmenezes/nsm-operator:v0.0.1''""]",https://github.com/acmenezes/nsm-operator, -operator_images,Prisma Cloud Compute Operator,426,,,,,,,497,"[""''quay.io/prismacloud/pcc-operator''""]",https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator, -operator_images,Routernetes,426,,,,,,,497,"[""''quay.io/routernetes/routernetes-operator:0.0.4''""]",https://github.com/routernetes/routernetes-operator, -operator_images,skydive-operator,426,,,,,,,497,"[""''docker.io/skydive/skydive-operator:0.0.50''""]",https://github.com/skydive-project/skydive-golang-operator, -operator_images,Tf Operator,426,,,,,,,497,"[""''docker.io/tungstenfabric/tf-operator:latest''""]",https://github.com/tungstenfabric/tf-operator, -operator_images,Nexus Operator,426,,,,,,,503,"[""''quay.io/m88i/nexus-operator:0.6.0''""]",https://github.com/m88i/nexus-operator, -operator_images,Anchore Engine Operator,426,,,,,,,503,"[""''docker.io/anchore/engine-operator:v0.1.3''""]",https://github.com/anchore/engine-operator, -operator_images,Carbonetes Operator,426,,,,,,,503,"[""''docker.io/carbonetes/operator:1.0.4''""]",https://github.com/carbonetes/carbonetes-analyzer, -operator_images,Prisma Cloud Compute Operator,426,,,,,,,503,"[""''quay.io/prismacloud/pcc-operator''""]",https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator, -operator_images,Multi-Cluster Application Dispatcher,426,,,,,,,,,, -operator_images,TiDB Operator,426,,,,,,,,,https://github.com/pingcap/tidb-operator, -operator_images,Mariadb Operator,426,,,,,,,,"[""''quay.io/manojdhanorkar/mariadb-operator:v0.0.4''""]",https://github.com/abalki001/mariadb-operator, -operator_images,PlanetScale Operator for Vitess,426,,,,,,,,,, -operator_images,PostgreSQL Operator by Dev4Ddevs.com,426,,,,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator, -operator_images,VerticaDB Operator,426,,,,,,,,"[""''docker.io/vertica/verticadb-operator:1.6.0''""]",https://github.com/vertica/vertica-kubernetes, -operator_images,Elasticsearch (ECK) Operator,426,,,,,,,,,https://github.com/elastic/cloud-on-k8s, -operator_images,Crunchy Postgres for Kubernetes,426,,,,,,,,,https://github.com/CrunchyData/postgres-operator, -operator_images,Redis Operator,426,,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator, -operator_images,Altinity Operator for ClickHouse,426,,,,,,,,,https://github.com/altinity/clickhouse-operator, -operator_images,Percona Distribution for MySQL Operator,426,,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator, -operator_images,Postgres-Operator,426,,,,,,,,,https://github.com/zalando/postgres-operator, -operator_images,Couchbase Operator,426,,,,,,,,"[""''registry.hub.docker.com/couchbase/operator:2.3.0''""]",, -operator_images,Redis Enterprise,426,,,,,,,,,, -operator_images,EDB Postgres for Kubernetes,426,,,,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]",, -operator_images,etcd,426,,,,,,,,"[""''quay.io/coreos/etcd-operator''""]",https://github.com/coreos/etcd-operator, -operator_images,Percona Distribution for MongoDB Operator,426,,,,,,,,,https://github.com/percona/percona-server-mongodb-operator, -operator_images,Upbound Universal Crossplane (UXP),426,,,,,,,,,https://github.com/upbound/universal-crossplane, -operator_images,druid-operator,426,,,,,,,,"[""''docker.io/druidio/druid-operator:0.0.9''""]",https://github.com/druid-io/druid-operator, -operator_images,Hazelcast Platform Operator,426,,,,,,,,"[""''docker.io/hazelcast/hazelcast-platform-operator:5.3''""]",, -operator_images,Infinispan Operator,426,,,,,,,,"[""''quay.io/infinispan/operator:2.2.4.Final''""]",https://github.com/infinispan/infinispan-operator, -operator_images,Crunchy Postgres for Kubernetes,426,532,,,,,,,,https://github.com/CrunchyData/postgres-operator, -operator_images,TiDB Operator,426,532,,,,,,,,https://github.com/pingcap/tidb-operator, -operator_images,EDB Postgres for Kubernetes,426,532,,,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]",, -operator_images,GrdsCloud MySQL for Kubernetes,426,532,,,,,,,,https://github.com/GrdsCloud, -operator_images,Percona Operator for PostgreSQL,426,532,,,,,,,,https://github.com/percona/percona-postgresql-operator, -operator_images,Open Liberty Operator,426,,,,,,,,,https://github.com/OpenLiberty/open-liberty-operator, -operator_images,IBM Cloud Operator,426,,,,,,,,,https://github.com/IBM/cloud-operators, -operator_images,Prisma Cloud Compute Operator,426,,,,,,,,"[""''quay.io/prismacloud/pcc-operator''""]",https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator, -operator_images,IBM Cloud IAM Operator,426,,,,,,,,,https://github.com/IBM/ibmcloud-iam-operator, -operator_images,Sosivio Autonomuous Cloud Native,426,,,,,,,,"[""''quay.io/sosivio/sosivio-operator:v1.4.1-78''"", ""''quay.io/sosivio/sosivio-operator''"", ""''quay.io/sosivio/kube-rbac-proxy''"", ""''quay.io/sosivio/nsq''"", ""''quay.io/sosivio/crud-manager''"", ""''quay.io/sosivio/sosivio-node-collector''"", ""''quay.io/sosivio/sosivio-node-pinger''"", ""''quay.io/sosivio/classifier''"", ""''quay.io/sosivio/communicator''"", ""''quay.io/sosivio/analyzer''"", ""''quay.io/sosivio/sosivio-dashboard''"", ""''quay.io/sosivio/authentication''"", ""''quay.io/sosivio/actuator''"", ""''quay.io/sosivio/sequence-recognition''"", ""''quay.io/sosivio/correlation-entities''"", ""''quay.io/sosivio/contract-testing''"", ""''quay.io/sosivio/sosiviodb''"", ""''quay.io/sosivio/draingo''"", ""''quay.io/sosivio/discovery-engine''"", ""''quay.io/sosivio/notifier''""]",https://github.com/Sosivio/operator, -operator_images,Robin Cloud Native Storage,426,,,,,,,,,, -operator_images,Banzai Cloud Kafka Operator,426,,,,,,,,,https://github.com/banzaicloud/kafka-operator/tree/master, -operator_images,EDB Postgres for Kubernetes,426,,,,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]",, -operator_images,Elasticsearch (ECK) Operator,426,,,,,,,,,https://github.com/elastic/cloud-on-k8s, -operator_images,API Operator for Kubernetes,426,,,,,,,,,https://github.com/wso2/k8s-api-operator, -operator_images,Chaosblade Operator,426,,,,,,,,,https://github.com/chaosblade-io/chaosblade-operator, -operator_images,clever-operator,426,,,,,,,,"[""''docker.io/clevercloud/clever-operator:e7cfe6efc4c4da80c722416fe1de373b789612f6''""]",https://github.com/CleverCloud/clever-operator, -operator_images,IBM COS Bucket Operator,426,,,,,,,,,https://github.com/IBM/cos-bucket-operator, -operator_images,Event Streams Topic,426,,,,,,,,,https://github.com/IBM/event-streams-topic, -operator_images,Knative Operator,426,,,,,,,,,https://github.com/knative/operator, -operator_images,Azure Service Operator,426,,,,,,,,,https://github.com/Azure/azure-service-operator, -operator_images,Upbound Universal Crossplane (UXP),426,,,,,,,,,https://github.com/upbound/universal-crossplane, -operator_images,Composable,426,,,,,,,,,https://github.com/IBM/composable, -operator_images,Elasticsearch Index Operator,426,,,,,,,,,https://github.com/IBM/esindex-operator, -operator_images,Kubefed Operator,426,,,,,,,,"[""''quay.io/openshift/kubefed-operator:v0.1.0-rc3''""]",https://github.com/openshift/kubefed-operator, -operator_images,GrdsCloud MySQL for Kubernetes,426,,,,,,,,,https://github.com/GrdsCloud, -operator_images,AtlasMap Operator,426,,,,,,,,"[""''quay.io/atlasmap/atlasmap-operator:0.4.1''""]",https://github.com/atlasmap/atlasmap-operator, -operator_images,Alvearie Imaging Ingestion Operator,426,582,,,,,,,,https://github.com/Alvearie/imaging-ingestion, -operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,582,,,,,,,,https://github.com/k8ssandra/cass-operator, -operator_images,Qserv operator,426,582,,,,,,,,https://github.com/lsst/qserv-operator, -operator_images,Strimzi,426,582,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator, -operator_images,Keycloak Operator,426,582,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak, -operator_images,Prometheus Operator,426,582,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator, -operator_images,Elasticsearch (ECK) Operator,426,582,,,,,,,,https://github.com/elastic/cloud-on-k8s, -operator_images,Crunchy Postgres for Kubernetes,426,582,,,,,,,,https://github.com/CrunchyData/postgres-operator, -operator_images,Knative Operator,426,582,,,,,,,,https://github.com/knative/operator, -operator_images,Redis Operator,426,582,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator, -operator_images,Rook-Ceph,426,582,,,,,,,,https://github.com/rook/rook, -operator_images,Argo CD,426,582,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator, -operator_images,Grafana Operator,426,582,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator, -operator_images,Starboard Operator,426,582,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard, -operator_images,TiDB Operator,426,582,,,,,,,,https://github.com/pingcap/tidb-operator, -operator_images,Altinity Operator for ClickHouse,426,582,,,,,,,,https://github.com/altinity/clickhouse-operator, -operator_images,Flux,426,582,,,,,,,,, -operator_images,Percona Distribution for MySQL Operator,426,582,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator, -operator_images,RocketMQ Operator,426,582,,,,,,,,https://github.com/apache/rocketmq-operator, -operator_images,StorageOS,426,582,,,,,,,,https://github.com/storageos/operator, -operator_images,Alvearie Imaging Ingestion Operator,426,583,,,,,,,,https://github.com/Alvearie/imaging-ingestion, -operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,583,,,,,,,,https://github.com/k8ssandra/cass-operator, -operator_images,Qserv operator,426,583,,,,,,,,https://github.com/lsst/qserv-operator, -operator_images,Strimzi,426,583,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator, -operator_images,Keycloak Operator,426,583,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak, -operator_images,Prometheus Operator,426,583,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator, -operator_images,Elasticsearch (ECK) Operator,426,583,,,,,,,,https://github.com/elastic/cloud-on-k8s, -operator_images,Crunchy Postgres for Kubernetes,426,583,,,,,,,,https://github.com/CrunchyData/postgres-operator, -operator_images,Knative Operator,426,583,,,,,,,,https://github.com/knative/operator, -operator_images,Redis Operator,426,583,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator, -operator_images,Rook-Ceph,426,583,,,,,,,,https://github.com/rook/rook, -operator_images,Argo CD,426,583,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator, -operator_images,Grafana Operator,426,583,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator, -operator_images,Starboard Operator,426,583,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard, -operator_images,TiDB Operator,426,583,,,,,,,,https://github.com/pingcap/tidb-operator, -operator_images,Altinity Operator for ClickHouse,426,583,,,,,,,,https://github.com/altinity/clickhouse-operator, -operator_images,Flux,426,583,,,,,,,,, -operator_images,Percona Distribution for MySQL Operator,426,583,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator, -operator_images,RocketMQ Operator,426,583,,,,,,,,https://github.com/apache/rocketmq-operator, -operator_images,StorageOS,426,583,,,,,,,,https://github.com/storageos/operator, -operator_images,WildFly,426,584,,,,,,,"[""''quay.io/wildfly/wildfly-operator:0.5.3''""]",https://github.com/wildfly/wildfly-operator, -operator_images,Eclipse Che,426,584,,,,,,,"[""''quay.io/eclipse/che-operator''"", ""''quay.io/che-incubator/configbump''"", ""''quay.io/che-incubator/header-rewrite-proxy''"", ""''quay.io/devfile/devworkspace-controller''"", ""''quay.io/eclipse/che--centos--postgresql-13-centos7''"", ""''quay.io/eclipse/che--centos--postgresql-96-centos7''"", ""''quay.io/eclipse/che--traefik''"", ""''quay.io/eclipse/che-backup-server-rest''"", ""''quay.io/eclipse/che-dashboard''"", ""''quay.io/eclipse/che-devfile-registry''"", ""''quay.io/eclipse/che-jwtproxy''"", ""''quay.io/eclipse/che-keycloak''"", ""''quay.io/eclipse/che-plugin-artifacts-broker''"", ""''quay.io/eclipse/che-plugin-metadata-broker''"", ""''quay.io/eclipse/che-plugin-registry''"", ""''quay.io/eclipse/che-server''"", ""''quay.io/eclipse/che-tls-secret-creator''"", ""''quay.io/openshift/origin-kube-rbac-proxy''"", ""''quay.io/openshift/origin-oauth-proxy''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/windupeng/mta-vscode-extension''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-theia''"", ""''quay.io/eclipse/che-machine-exec''"", ""''quay.io/eclipse/che-theia-endpoint-runtime-binary''"", ""''index.docker.io/ksmster/che-editor-jupyter''"", ""''index.docker.io/dirigiblelabs/dirigible-openshift''"", ""''quay.io/che-incubator/che-idea''"", ""''quay.io/che-incubator/che-pycharm''"", ""''index.docker.io/wsskeleton/eclipse-broadway''"", ""''index.docker.io/codercom/code-server''"", ""''quay.io/eclipse/che-buildah-base''"", ""''quay.io/eclipse/che-sidecar-workspace-data-sync''"", ""''quay.io/eclipse/che-buildkit-base''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mysql-57-centos7''"", ""''quay.io/eclipse/che-cpp-rhel7''"", ""''quay.io/eclipse/che-dotnet-2.2''"", ""''quay.io/eclipse/che-dotnet-3.1''"", ""''quay.io/eclipse/che-golang-1.17''"", ""''quay.io/eclipse/che-java11-gradle''"", ""''quay.io/eclipse/che-java11-maven''"", ""''quay.io/eclipse/che-java8-maven''"", ""''quay.io/eclipse/che-nodejs10-community''"", ""''quay.io/eclipse/che-nodejs10-ubi''"", ""''quay.io/eclipse/che-nodejs12-community''"", ""''quay.io/eclipse/che-nodejs8-centos''"", ""''quay.io/eclipse/che-php-7''"", ""''quay.io/eclipse/che-python-3.8''"", ""''quay.io/eclipse/che-quarkus''"", ""''quay.io/eclipse/che-rust-1.39''""]",https://github.com/eclipse-che/che-operator, -operator_images,AtlasMap Operator,426,584,,,,,,,"[""''quay.io/atlasmap/atlasmap-operator:0.4.1''""]",https://github.com/atlasmap/atlasmap-operator, -operator_images,Appsody Operator,426,584,,,,,,,,https://github.com/appsody/appsody-operator, -operator_images,Cryostat Operator,426,584,,,,,,,"[""''quay.io/cryostat/cryostat-operator:2.1.1''""]",github.com/cryostatio/cryostat-operator, -operator_images,Open Liberty Operator,426,584,,,,,,,,https://github.com/OpenLiberty/open-liberty-operator, -operator_images,Runtime Component Operator,426,584,,,,,,,,https://github.com/application-stacks/runtime-component-operator, -operator_images,IBM Spectrum Scale CSI Plugin Operator,426,,,605,,,,,"[""''quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator''""]",https://github.com/IBM/ibm-spectrum-scale-csi/, -operator_images,Instana Agent Operator,426,,,,,,,611,,https://github.com/instana/instana-agent-operator, -operator_images,credstash-operator,426,,,612,,,,,"[""''quay.io/ouzi/credstash-operator:v1.13.0''""]",https://github.com/ouzi-dev/credstash-operator, -operator_images,Snyk Operator,426,,,613,,,,,"[""''docker.io/snyk/kubernetes-operator:1.92.0''""]",https://github.com/snyk/kubernetes-monitor, -operator_images,Akka Cluster Operator,426,,,614,,,,,,https://github.com/lightbend/akka-cluster-operator, -operator_images,Lightbend Console Operator,426,,,614,,,,,,https://github.com/lightbend/console-charts/tree/master/operator, -operator_images,Varnish Operator,426,,,,615,,,,,https://github.com/IBM/varnish-operator, -operator_images,Datadog Operator,426,,,,,,,616,,https://github.com/DataDog/datadog-operator, -operator_images,API Operator for Kubernetes,426,,,,,,,,,https://github.com/wso2/k8s-api-operator, -operator_images,WSO2 API Manager Operator for Kubernetes,426,,,,,,,,,https://github.com/wso2/k8s-wso2am-operator, -operator_images,AWS Controllers for Kubernetes - Amazon API Gateway v2,426,,,,,,,,,https://github.com/aws-controllers-k8s, -operator_images,APIcast,426,,,,,,,,"[""''quay.io/3scale/apicast-operator:v0.4.0''""]",https://github.com/3scale/apicast-operator, -operator_images,APIMatic Operator,426,,,,,,,,"[""''docker.io/apimaticio/apimatic-kubernetes-operator:v0.0.1''""]",https://github.com/apimatic/apimatic-kubernetes-operator, -operator_images,Microcks Operator,426,,,,,,,,"[""''quay.io/microcks/microcks-ansible-operator:1.5.2''""]",https://github.com/microcks/microcks-ansible-operator, -operator_images,Apicurio Registry Operator,426,,,,,,,,"[""''quay.io/apicurio/apicurio-registry-operator:1.0.0''""]",https://github.com/Apicurio/apicurio-registry-operator, -operator_images,IoT simulator,426,,,,,,,,,https://github.com/ctron/iot-simulator-operator, -operator_images,Kong Operator,426,,,,,,,,,https://github.com/kong/kong-operator, -operator_images,Minio Operator,426,,,,,,,,"[""''quay.io/minio/operator''""]",https://github.com/minio/operator, -operator_images,IBM COS Bucket Operator,426,,,,,,,,,https://github.com/IBM/cos-bucket-operator, -operator_images,DataTrucker.IO,426,,,,,,,,"[""''docker.io/datatruckerio/datatrucker-operator:2.0.0''""]",hhttps://gitlab.com/datatruckerio/datatrucker-server.git, -operator_images,IBM Cloud Operator,426,,,,,,,,,https://github.com/IBM/cloud-operators, -operator_images,nfd-operator,426,,,,,,,,,https://github.com/kubernetes-sigs/node-feature-discovery-operator, -operator_images,SAP BTP Service Operator,426,,,,,,,,,https://github.com/SAP/sap-btp-service-operator, -operator_images,IBM Cloud IAM Operator,426,,,,,,,,,https://github.com/IBM/ibmcloud-iam-operator, -operator_images,Hazelcast Platform Operator,426,,,,,,,618,"[""''docker.io/hazelcast/hazelcast-platform-operator:5.3''""]",, -operator_images,Infinispan Operator,426,,,619,,,,,"[""''quay.io/infinispan/operator:2.2.4.Final''""]",https://github.com/infinispan/infinispan-operator, -operator_images,Nuxeo Operator,426,,,,,,,620,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator, -operator_images,ArangoDB,426,,,621,,,,,,https://github.com/arangodb/kube-arangodb, -operator_images,Eclipse Che,426,,,622,,,,,"[""''quay.io/eclipse/che-operator''"", ""''quay.io/che-incubator/configbump''"", ""''quay.io/che-incubator/header-rewrite-proxy''"", ""''quay.io/devfile/devworkspace-controller''"", ""''quay.io/eclipse/che--centos--postgresql-13-centos7''"", ""''quay.io/eclipse/che--centos--postgresql-96-centos7''"", ""''quay.io/eclipse/che--traefik''"", ""''quay.io/eclipse/che-backup-server-rest''"", ""''quay.io/eclipse/che-dashboard''"", ""''quay.io/eclipse/che-devfile-registry''"", ""''quay.io/eclipse/che-jwtproxy''"", ""''quay.io/eclipse/che-keycloak''"", ""''quay.io/eclipse/che-plugin-artifacts-broker''"", ""''quay.io/eclipse/che-plugin-metadata-broker''"", ""''quay.io/eclipse/che-plugin-registry''"", ""''quay.io/eclipse/che-server''"", ""''quay.io/eclipse/che-tls-secret-creator''"", ""''quay.io/openshift/origin-kube-rbac-proxy''"", ""''quay.io/openshift/origin-oauth-proxy''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/windupeng/mta-vscode-extension''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-theia''"", ""''quay.io/eclipse/che-machine-exec''"", ""''quay.io/eclipse/che-theia-endpoint-runtime-binary''"", ""''index.docker.io/ksmster/che-editor-jupyter''"", ""''index.docker.io/dirigiblelabs/dirigible-openshift''"", ""''quay.io/che-incubator/che-idea''"", ""''quay.io/che-incubator/che-pycharm''"", ""''index.docker.io/wsskeleton/eclipse-broadway''"", ""''index.docker.io/codercom/code-server''"", ""''quay.io/eclipse/che-buildah-base''"", ""''quay.io/eclipse/che-sidecar-workspace-data-sync''"", ""''quay.io/eclipse/che-buildkit-base''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mysql-57-centos7''"", ""''quay.io/eclipse/che-cpp-rhel7''"", ""''quay.io/eclipse/che-dotnet-2.2''"", ""''quay.io/eclipse/che-dotnet-3.1''"", ""''quay.io/eclipse/che-golang-1.17''"", ""''quay.io/eclipse/che-java11-gradle''"", ""''quay.io/eclipse/che-java11-maven''"", ""''quay.io/eclipse/che-java8-maven''"", ""''quay.io/eclipse/che-nodejs10-community''"", ""''quay.io/eclipse/che-nodejs10-ubi''"", ""''quay.io/eclipse/che-nodejs12-community''"", ""''quay.io/eclipse/che-nodejs8-centos''"", ""''quay.io/eclipse/che-php-7''"", ""''quay.io/eclipse/che-python-3.8''"", ""''quay.io/eclipse/che-quarkus''"", ""''quay.io/eclipse/che-rust-1.39''""]",https://github.com/eclipse-che/che-operator, -operator_images,AWS Controllers for Kubernetes - Amazon S3,426,,,623,,,,,,https://github.com/aws-controllers-k8s, -operator_images,Altinity Operator for ClickHouse,426,,,624,,,,,,https://github.com/altinity/clickhouse-operator, -operator_images,Minio Operator,426,,,625,,,,,"[""''quay.io/minio/operator''""]",https://github.com/minio/operator, -operator_images,Elasticsearch Index Operator,426,,,626,,,,,,https://github.com/IBM/esindex-operator, -operator_images,Elasticsearch (ECK) Operator,426,,,626,,,,,,https://github.com/elastic/cloud-on-k8s, -operator_images,Elasticsearch Phenix Operator,426,,,626,,,,,,https://github.com/Carrefour-Group/elastic-phenix-operator, -operator_images,Logging Operator,426,,,626,,,,,"[""''quay.io/opstree/logging-operator:v0.3.0''""]",https://github.com/ot-container-kit/logging-operator, -operator_images,Nuxeo Operator,426,,,626,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator, -operator_images,Prometheus Exporter Operator,426,,,626,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator, -operator_images,Percona Distribution for MySQL Operator,426,,,627,,,,,,https://github.com/percona/percona-xtradb-cluster-operator, -operator_images,Keycloak Operator,426,,,628,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak, -operator_images,Grafana Operator,426,,,629,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator, -operator_images,Prometheus Exporter Operator,426,,,629,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator, -operator_images,Mattermost Operator,426,,,,,,,630,"[""''docker.io/mattermost/mattermost-operator:v0.5.0''""]",https://github.com/mattermost/mattermost-operator, -operator_images,synapse-helm,426,,,631,,,,,"[""''quay.io/mgoerens/synapse-helm:v0.0.11''""]",https://github.com/opdev/synapse-helm, -operator_images,IBM Cloud IAM Operator,426,,,632,,,,,,https://github.com/IBM/ibmcloud-iam-operator, -operator_images,AWS Controllers for Kubernetes - Amazon IAM,426,,,632,,,,,,https://github.com/aws-controllers-k8s, -operator_images,Knative Operator,426,,,,,,,633,,https://github.com/knative/operator, -operator_images,Kogito Knative Eventing Source,426,,,,,,,633,,https://github.com/knative-sandbox/eventing-kogito, -operator_images,YAKS Operator,426,,,,,,,633,"[""''docker.io/citrusframework/yaks:0.10.0''""]",https://github.com/citrusframework/yaks, -operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,,,634,,,,,,https://github.com/k8ssandra/cass-operator, -operator_images,Kubeflow,426,,,,,,,635,,https://github.com/kubeflow/kfctl, -operator_images,QiskitPlayground,426,,,636,,,,,"[""''docker.io/qiskit/operator:0.1''""]",https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/kubernetes-qiskit-operator, -operator_images,Ibm Quantum Operator,426,,,636,,,,,"[""''quay.io/application/husky_parul/ibm-quantum-operator''""]",https://github.com/redhat-et/ibm-quantum-operator, -operator_images,Azure Service Operator,426,,,637,,,,,,https://github.com/Azure/azure-service-operator, -operator_images,Strimzi,426,,,,,,,638,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator, -operator_images,Sematext Operator,426,,,,,,,639,"[""''docker.io/sematext/sematext-operator:1.0.33''""]",https://github.com/sematext/sematext-operator, -operator_images,Eclipse Hawkbit,426,,,640,,,,,,https://github.com/ctron/hawkbit-operator, -operator_images,Eclipse Ditto,426,,,641,,,,,,https://github.com/ctron/ditto-operator, -operator_images,Mariadb Operator,426,,,642,,,,,"[""''quay.io/manojdhanorkar/mariadb-operator:v0.0.4''""]",https://github.com/abalki001/mariadb-operator, -operator_images,Zadara Operator,426,,,643,,,,,,https://github.com/zadarastorage/zadara-operator, -operator_images,Istio,426,,,644,,,,,,https://github.com/banzaicloud/istio-operator/tree/release-1.1, -operator_images,Istio Workspace,426,,,644,,,,,"[""''quay.io/maistra/istio-workspace:v0.5.0''""]",https://github.com/maistra/istio-workspace, -operator_images,Kiali Operator,426,,,644,,,,,"[""''quay.io/kiali/kiali-operator:v1.53.0''""]",https://github.com/kiali/kiali, -operator_images,Vault Operator,426,,,645,,,,,,https://github.com/banzaicloud/bank-vaults/tree/master/operator, -operator_images,Vault Helm,426,,,645,,,,,"[""''quay.io/brejohns/vault-helm:0.0.2''""]",https://github.com/SDBrett/vault-helm, -operator_images,External Secrets Operator,426,,,645,,,,,,https://github.com/external-secrets/external-secrets-helm-operator, -operator_images,druid-operator,426,,,646,,,,,"[""''docker.io/druidio/druid-operator:0.0.9''""]",https://github.com/druid-io/druid-operator, -operator_images,etcd,426,,,647,,,,,"[""''quay.io/coreos/etcd-operator''""]",https://github.com/coreos/etcd-operator, -operator_images,Traefikee Operator,426,,,,648,,,,,, -operator_images,IBM Cloud Operator,426,,,649,,,,,,https://github.com/IBM/cloud-operators, -operator_images,IBM Cloud IAM Operator,426,,,649,,,,,,https://github.com/IBM/ibmcloud-iam-operator, -operator_images,Event Streams Topic,426,,,649,,,,,,https://github.com/IBM/event-streams-topic, -operator_images,IBM COS Bucket Operator,426,,,649,,,,,,https://github.com/IBM/cos-bucket-operator, -operator_images,Composable,426,,,649,,,,,,https://github.com/IBM/composable, -operator_images,Elasticsearch Index Operator,426,,,649,,,,,,https://github.com/IBM/esindex-operator, -operator_images,IBM block storage CSI driver operator,426,,,649,,,,,,https://github.com/IBM/ibm-block-csi-operator, -operator_images,Yugabyte Operator,426,,,650,,,,,"[""''quay.io/yugabyte/yugabytedb-operator''""]",https://github.com/yugabyte/yugabyte-operator, -operator_images,CockroachDB,426,,,651,,,,,"[""''quay.io/helmoperators/cockroachdb:v5.0.4''""]",https://github.com/dmesser/cockroachdb-operator, -operator_images,Community Jaeger Operator,426,,,,,,,652,"[""''quay.io/jaegertracing/jaeger-operator:1.35.0''""]",https://github.com/jaegertracing/jaeger-operator, -operator_images,PostgreSQL Operator by Dev4Ddevs.com,426,,,,,,,661,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator, -operator_images,Strimzi,426,,,,,,,661,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator, -operator_images,Keycloak Operator,426,,,,,,,661,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak, -operator_images,Prometheus Operator,426,,,,,,,661,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator, -operator_images,Elasticsearch (ECK) Operator,426,,,,,,,661,,https://github.com/elastic/cloud-on-k8s, -operator_images,Crunchy Postgres for Kubernetes,426,,,,,,,661,,https://github.com/CrunchyData/postgres-operator, -operator_images,Knative Operator,426,,,,,,,661,,https://github.com/knative/operator, -operator_images,Redis Operator,426,,,,,,,661,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator, -operator_images,Rook-Ceph,426,,,,,,,661,,https://github.com/rook/rook, -operator_images,Argo CD,426,,,,,,,661,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator, -operator_images,Grafana Operator,426,,,,,,,661,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator, -operator_images,Starboard Operator,426,,,,,,,661,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard, -operator_images,TiDB Operator,426,,,,,,,661,,https://github.com/pingcap/tidb-operator, -operator_images,Altinity Operator for ClickHouse,426,,,,,,,661,,https://github.com/altinity/clickhouse-operator, -operator_images,Flux,426,,,,,,,661,,, -operator_images,Percona Distribution for MySQL Operator,426,,,,,,,661,,https://github.com/percona/percona-xtradb-cluster-operator, -operator_images,RocketMQ Operator,426,,,,,,,661,,https://github.com/apache/rocketmq-operator, -operator_images,StorageOS,426,,,,,,,661,,https://github.com/storageos/operator, -operator_images,Falco Operator,426,,,,,,,661,"[""''docker.io/falcosecurity/falco-operator-helm:0.7.6''""]",https://github.com/falcosecurity/falco-operator/tree/helm-based-operator, -operator_images,Community Jaeger Operator,426,,,,,,,661,"[""''quay.io/jaegertracing/jaeger-operator:1.35.0''""]",https://github.com/jaegertracing/jaeger-operator, -operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,,,671,,,,,,https://github.com/k8ssandra/cass-operator, -operator_images,ks-releaser,426,,,677,,,,,,https://github.com/kubesphere-sigs/ks-releaser-operator, -operator_images,Argo CD,426,,,677,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator, -operator_images,Flux,426,,,677,,,,,,, -operator_images,Argo CD Operator (Helm),426,,,677,,,,,"[""''quay.io/disposab1e/argocd-operator-helm''""]",https://github.com/disposab1e/argocd-operator-helm.git, -operator_images,External Secrets Operator,426,,,677,,,,,,https://github.com/external-secrets/external-secrets-helm-operator, -operator_images,GitLab,426,,,677,,,,,,https://gitlab.com/gitlab-org/cloud-native/gitlab-operator, -operator_images,GitLab Runner,426,,,677,,,,,,https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator, -operator_images,Multicluster Subscription Operator,426,,,677,,,,,"[""''quay.io/open-cluster-management/multicluster-operators-subscription:2.3.0''""]",https://github.com/open-cluster-management/multicloud-operators-subscription, -operator_images,Weave GitOps Terraform Controller,426,,,677,,,,,,, -operator_images,GitLab,426,,,678,,,,,,https://gitlab.com/gitlab-org/cloud-native/gitlab-operator, -operator_images,GitLab Runner,426,,,678,,,,,,https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator, -operator_images,External Secrets Operator,426,,,678,,,,,,https://github.com/external-secrets/external-secrets-helm-operator, -operator_images,GrdsCloud MySQL for Kubernetes,426,,,684,,,,,,https://github.com/GrdsCloud, -operator_images,Percona Distribution for MySQL Operator,426,,,684,,,,,,https://github.com/percona/percona-xtradb-cluster-operator, -operator_images,PlanetScale Operator for Vitess,426,,,684,,,,,,, -operator_images,Prometheus Exporter Operator,426,,,684,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator, -operator_images,Postgresql Operator,426,,,686,,,,,"[""''quay.io/deekshah86/postgresql-operator''""]",https://github.com/janepelladinesh/postgresql-operator, -operator_images,Percona Operator for PostgreSQL,426,,,686,,,,,,https://github.com/percona/percona-postgresql-operator, -operator_images,PostgreSQL Operator by Dev4Ddevs.com,426,,,686,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator, -operator_images,Crunchy Postgres for Kubernetes,426,,,686,,,,,,https://github.com/CrunchyData/postgres-operator, -operator_images,EDB Postgres for Kubernetes,426,,,686,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]",, -operator_images,Postgres-Operator,426,,,686,,,,,,https://github.com/zalando/postgres-operator, -operator_images,Ext Postgres Operator,426,,,686,,,,,,https://github.com/movetokube/postgres-operator, -operator_images,Nuxeo Operator,426,,,686,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator, -operator_images,Prometheus Exporter Operator,426,,,686,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator, -operator_images,Robin Cloud Native Storage,426,,,686,,,,,,, -operator_images,AWS Controllers for Kubernetes - Amazon RDS,426,,,687,,,,,,https://github.com/aws-controllers-k8s, -operator_images,Upbound Universal Crossplane (UXP),426,,,687,,,,,,https://github.com/upbound/universal-crossplane, +operator_images,container_name,OS,lang,lib,app,app_server,plugin,runlib,runtime,Operator_Correspondant_Image_Url,Operator_Repository +operator_images,Strimzi,426,,,9,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator +operator_images,Eclipse Che,426,,,46,,,,,"[""''quay.io/eclipse/che-operator''"", ""''quay.io/che-incubator/configbump''"", ""''quay.io/che-incubator/header-rewrite-proxy''"", ""''quay.io/devfile/devworkspace-controller''"", ""''quay.io/eclipse/che--centos--postgresql-13-centos7''"", ""''quay.io/eclipse/che--centos--postgresql-96-centos7''"", ""''quay.io/eclipse/che--traefik''"", ""''quay.io/eclipse/che-backup-server-rest''"", ""''quay.io/eclipse/che-dashboard''"", ""''quay.io/eclipse/che-devfile-registry''"", ""''quay.io/eclipse/che-jwtproxy''"", ""''quay.io/eclipse/che-keycloak''"", ""''quay.io/eclipse/che-plugin-artifacts-broker''"", ""''quay.io/eclipse/che-plugin-metadata-broker''"", ""''quay.io/eclipse/che-plugin-registry''"", ""''quay.io/eclipse/che-server''"", ""''quay.io/eclipse/che-tls-secret-creator''"", ""''quay.io/openshift/origin-kube-rbac-proxy''"", ""''quay.io/openshift/origin-oauth-proxy''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/windupeng/mta-vscode-extension''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-theia''"", ""''quay.io/eclipse/che-machine-exec''"", ""''quay.io/eclipse/che-theia-endpoint-runtime-binary''"", ""''index.docker.io/ksmster/che-editor-jupyter''"", ""''index.docker.io/dirigiblelabs/dirigible-openshift''"", ""''quay.io/che-incubator/che-idea''"", ""''quay.io/che-incubator/che-pycharm''"", ""''index.docker.io/wsskeleton/eclipse-broadway''"", ""''index.docker.io/codercom/code-server''"", ""''quay.io/eclipse/che-buildah-base''"", ""''quay.io/eclipse/che-sidecar-workspace-data-sync''"", ""''quay.io/eclipse/che-buildkit-base''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mysql-57-centos7''"", ""''quay.io/eclipse/che-cpp-rhel7''"", ""''quay.io/eclipse/che-dotnet-2.2''"", ""''quay.io/eclipse/che-dotnet-3.1''"", ""''quay.io/eclipse/che-golang-1.17''"", ""''quay.io/eclipse/che-java11-gradle''"", ""''quay.io/eclipse/che-java11-maven''"", ""''quay.io/eclipse/che-java8-maven''"", ""''quay.io/eclipse/che-nodejs10-community''"", ""''quay.io/eclipse/che-nodejs10-ubi''"", ""''quay.io/eclipse/che-nodejs12-community''"", ""''quay.io/eclipse/che-nodejs8-centos''"", ""''quay.io/eclipse/che-php-7''"", ""''quay.io/eclipse/che-python-3.8''"", ""''quay.io/eclipse/che-quarkus''"", ""''quay.io/eclipse/che-rust-1.39''""]",https://github.com/eclipse-che/che-operator +operator_images,Eclipse Ditto,426,,,46,,,,,,https://github.com/ctron/ditto-operator +operator_images,Eclipse Hawkbit,426,,,46,,,,,,https://github.com/ctron/hawkbit-operator +operator_images,IoT simulator,426,,,46,,,,,,https://github.com/ctron/iot-simulator-operator +operator_images,Elasticsearch (ECK) Operator,426,,,47,,,,,,https://github.com/elastic/cloud-on-k8s +operator_images,Elasticsearch Phenix Operator,426,,,47,,,,,,https://github.com/Carrefour-Group/elastic-phenix-operator +operator_images,Nuxeo Operator,426,,,47,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator +operator_images,Logging Operator,426,,,47,,,,,"[""''quay.io/opstree/logging-operator:v0.3.0''""]",https://github.com/ot-container-kit/logging-operator +operator_images,AWS Controllers for Kubernetes - Amazon ElastiCache,426,,,47,,,,,,https://github.com/aws-controllers-k8s +operator_images,Elasticsearch Index Operator,426,,,47,,,,,,https://github.com/IBM/esindex-operator +operator_images,Prometheus Exporter Operator,426,,,47,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator +operator_images,IBM Spectrum Scale CSI Plugin Operator,426,,,74,,,,,"[""''quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator''""]",https://github.com/IBM/ibm-spectrum-scale-csi/ +operator_images,Kong Operator,426,,,88,,,,,,https://github.com/kong/kong-operator +operator_images,Jenkins Operator,426,,,90,,,,,,https://github.com/jenkinsci/kubernetes-operator +operator_images,Prometheus Exporter Operator,426,,,98,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator +operator_images,MongoDB Enterprise Operator,426,,,116,,,,,"[""''quay.io/mongodb/mongodb-enterprise-operator-ubi:1.16.2''""]",https://github.com/mongodb/mongodb-enterprise-kubernetes +operator_images,MongoDB Operator,426,,,116,,,,,"[""''quay.io/opstree/mongodb-operator:v0.3.0''""]",https://github.com/ot-container-kit/mongodb-operator +operator_images,MongoDB Atlas Operator,426,,,116,,,,,, +operator_images,Percona Distribution for MongoDB Operator,426,,,116,,,,,,https://github.com/percona/percona-server-mongodb-operator +operator_images,Nuxeo Operator,426,,,116,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator +operator_images,GrdsCloud MySQL for Kubernetes,426,,,122,,,,,,https://github.com/GrdsCloud +operator_images,Percona Distribution for MySQL Operator,426,,,122,,,,,,https://github.com/percona/percona-xtradb-cluster-operator +operator_images,PlanetScale Operator for Vitess,426,,,122,,,,,, +operator_images,Prometheus Exporter Operator,426,,,122,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator +operator_images,Postgresql Operator,426,,,157,,,,,"[""''quay.io/deekshah86/postgresql-operator''""]",https://github.com/janepelladinesh/postgresql-operator +operator_images,Percona Operator for PostgreSQL,426,,,157,,,,,,https://github.com/percona/percona-postgresql-operator +operator_images,PostgreSQL Operator by Dev4Ddevs.com,426,,,157,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator +operator_images,Crunchy Postgres for Kubernetes,426,,,157,,,,,,https://github.com/CrunchyData/postgres-operator +operator_images,EDB Postgres for Kubernetes,426,,,157,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]", +operator_images,Postgres-Operator,426,,,157,,,,,,https://github.com/zalando/postgres-operator +operator_images,Ext Postgres Operator,426,,,157,,,,,,https://github.com/movetokube/postgres-operator +operator_images,Nuxeo Operator,426,,,157,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator +operator_images,Prometheus Exporter Operator,426,,,157,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator +operator_images,Robin Cloud Native Storage,426,,,157,,,,,, +operator_images,Redis Operator,426,,,168,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator +operator_images,Redis Enterprise,426,,,168,,,,,, +operator_images,Prometheus Exporter Operator,426,,,168,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator +operator_images,Splunk Operator,426,,,188,,,,,, +operator_images,Encrypted Images Key Syncer Helm Operator,426,,,209,,,,,"[""''docker.io/lumjjb/enc-key-sync-operator:v0.0.1''""]",https://github.com/IBM/k8s-enc-image-operator +operator_images,Joget DX on Apache Tomcat,426,,,,260,,,,,https://github.com/jogetworkflow/ +operator_images,APIcast,426,,,,274,,,,"[""''quay.io/3scale/apicast-operator:v0.4.0''""]",https://github.com/3scale/apicast-operator +operator_images,Spark Operator,426,,,,280,,,,,https://github.com/GoogleCloudPlatform/spark-on-k8s-operator +operator_images,Apache Spark Operator,426,,,,280,,,,"[""''quay.io/radanalyticsio/spark-operator:1.0.2''""]",https://github.com/radanalyticsio/spark-operator +operator_images,Kubestone,426,,,,280,,,,,https://github.com/xridge/kubestone +operator_images,Flink Kubernetes Operator,426,301,,,,,,,"[""''docker.io/apache/flink-kubernetes-operator:1.0.1''""]",https://github.com/apache/flink-kubernetes-operator.git +operator_images,Alvearie Imaging Ingestion Operator,426,303,,,,,,,,https://github.com/Alvearie/imaging-ingestion +operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,303,,,,,,,,https://github.com/k8ssandra/cass-operator +operator_images,Qserv operator,426,303,,,,,,,,https://github.com/lsst/qserv-operator +operator_images,Strimzi,426,303,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator +operator_images,Keycloak Operator,426,303,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak +operator_images,Prometheus Operator,426,303,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator +operator_images,Elasticsearch (ECK) Operator,426,303,,,,,,,,https://github.com/elastic/cloud-on-k8s +operator_images,Crunchy Postgres for Kubernetes,426,303,,,,,,,,https://github.com/CrunchyData/postgres-operator +operator_images,Knative Operator,426,303,,,,,,,,https://github.com/knative/operator +operator_images,Redis Operator,426,303,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator +operator_images,Rook-Ceph,426,303,,,,,,,,https://github.com/rook/rook +operator_images,Argo CD,426,303,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator +operator_images,Grafana Operator,426,303,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator +operator_images,Starboard Operator,426,303,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard +operator_images,TiDB Operator,426,303,,,,,,,,https://github.com/pingcap/tidb-operator +operator_images,Altinity Operator for ClickHouse,426,303,,,,,,,,https://github.com/altinity/clickhouse-operator +operator_images,Flux,426,303,,,,,,,, +operator_images,Percona Distribution for MySQL Operator,426,303,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator +operator_images,RocketMQ Operator,426,303,,,,,,,,https://github.com/apache/rocketmq-operator +operator_images,StorageOS,426,303,,,,,,,,https://github.com/storageos/operator +operator_images,Alvearie Imaging Ingestion Operator,426,304,,,,,,,,https://github.com/Alvearie/imaging-ingestion +operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,304,,,,,,,,https://github.com/k8ssandra/cass-operator +operator_images,Qserv operator,426,304,,,,,,,,https://github.com/lsst/qserv-operator +operator_images,Strimzi,426,304,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator +operator_images,Keycloak Operator,426,304,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak +operator_images,Prometheus Operator,426,304,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator +operator_images,Elasticsearch (ECK) Operator,426,304,,,,,,,,https://github.com/elastic/cloud-on-k8s +operator_images,Crunchy Postgres for Kubernetes,426,304,,,,,,,,https://github.com/CrunchyData/postgres-operator +operator_images,Knative Operator,426,304,,,,,,,,https://github.com/knative/operator +operator_images,Redis Operator,426,304,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator +operator_images,Rook-Ceph,426,304,,,,,,,,https://github.com/rook/rook +operator_images,Argo CD,426,304,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator +operator_images,Grafana Operator,426,304,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator +operator_images,Starboard Operator,426,304,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard +operator_images,TiDB Operator,426,304,,,,,,,,https://github.com/pingcap/tidb-operator +operator_images,Altinity Operator for ClickHouse,426,304,,,,,,,,https://github.com/altinity/clickhouse-operator +operator_images,Flux,426,304,,,,,,,, +operator_images,Percona Distribution for MySQL Operator,426,304,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator +operator_images,RocketMQ Operator,426,304,,,,,,,,https://github.com/apache/rocketmq-operator +operator_images,StorageOS,426,304,,,,,,,,https://github.com/storageos/operator +operator_images,Alvearie Imaging Ingestion Operator,426,305,,,,,,,,https://github.com/Alvearie/imaging-ingestion +operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,305,,,,,,,,https://github.com/k8ssandra/cass-operator +operator_images,Qserv operator,426,305,,,,,,,,https://github.com/lsst/qserv-operator +operator_images,Strimzi,426,305,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator +operator_images,Keycloak Operator,426,305,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak +operator_images,Prometheus Operator,426,305,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator +operator_images,Elasticsearch (ECK) Operator,426,305,,,,,,,,https://github.com/elastic/cloud-on-k8s +operator_images,Crunchy Postgres for Kubernetes,426,305,,,,,,,,https://github.com/CrunchyData/postgres-operator +operator_images,Knative Operator,426,305,,,,,,,,https://github.com/knative/operator +operator_images,Redis Operator,426,305,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator +operator_images,Rook-Ceph,426,305,,,,,,,,https://github.com/rook/rook +operator_images,Argo CD,426,305,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator +operator_images,Grafana Operator,426,305,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator +operator_images,Starboard Operator,426,305,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard +operator_images,TiDB Operator,426,305,,,,,,,,https://github.com/pingcap/tidb-operator +operator_images,Altinity Operator for ClickHouse,426,305,,,,,,,,https://github.com/altinity/clickhouse-operator +operator_images,Flux,426,305,,,,,,,, +operator_images,Percona Distribution for MySQL Operator,426,305,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator +operator_images,RocketMQ Operator,426,305,,,,,,,,https://github.com/apache/rocketmq-operator +operator_images,StorageOS,426,305,,,,,,,,https://github.com/storageos/operator +operator_images,Joget DX on Apache Tomcat,426,306,,,,,,,,https://github.com/jogetworkflow/ +operator_images,Lightbend Console Operator,426,306,,,,,,,,https://github.com/lightbend/console-charts/tree/master/operator +operator_images,Knative Operator,426,321,,,,,,,,https://github.com/knative/operator +operator_images,PostgreSQL Operator by Dev4Ddevs.com,426,323,,,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator +operator_images,Redis Operator,426,323,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator +operator_images,Logging Operator,426,323,,,,,,,"[""''quay.io/opstree/logging-operator:v0.3.0''""]",https://github.com/ot-container-kit/logging-operator +operator_images,External Secrets Operator,426,323,,,,,,,,https://github.com/external-secrets/external-secrets-helm-operator +operator_images,Intel Device Plugins Operator,426,323,,,,,,,,https://github.com/intel/intel-device-plugins-for-kubernetes +operator_images,MongoDB Operator,426,323,,,,,,,"[""''quay.io/opstree/mongodb-operator:v0.3.0''""]",https://github.com/ot-container-kit/mongodb-operator +operator_images,silicom-sts-operator,426,323,,,,,,,"[""''quay.io/silicom/sts-operator:v0.0.1''""]",github.com/silicomdk/sts-operator +operator_images,Spark Operator,426,323,,,,,,,,https://github.com/GoogleCloudPlatform/spark-on-k8s-operator +operator_images,WildFly,426,331,,,,,,,"[""''quay.io/wildfly/wildfly-operator:0.5.3''""]",https://github.com/wildfly/wildfly-operator +operator_images,Eclipse Che,426,331,,,,,,,"[""''quay.io/eclipse/che-operator''"", ""''quay.io/che-incubator/configbump''"", ""''quay.io/che-incubator/header-rewrite-proxy''"", ""''quay.io/devfile/devworkspace-controller''"", ""''quay.io/eclipse/che--centos--postgresql-13-centos7''"", ""''quay.io/eclipse/che--centos--postgresql-96-centos7''"", ""''quay.io/eclipse/che--traefik''"", ""''quay.io/eclipse/che-backup-server-rest''"", ""''quay.io/eclipse/che-dashboard''"", ""''quay.io/eclipse/che-devfile-registry''"", ""''quay.io/eclipse/che-jwtproxy''"", ""''quay.io/eclipse/che-keycloak''"", ""''quay.io/eclipse/che-plugin-artifacts-broker''"", ""''quay.io/eclipse/che-plugin-metadata-broker''"", ""''quay.io/eclipse/che-plugin-registry''"", ""''quay.io/eclipse/che-server''"", ""''quay.io/eclipse/che-tls-secret-creator''"", ""''quay.io/openshift/origin-kube-rbac-proxy''"", ""''quay.io/openshift/origin-oauth-proxy''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/windupeng/mta-vscode-extension''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-theia''"", ""''quay.io/eclipse/che-machine-exec''"", ""''quay.io/eclipse/che-theia-endpoint-runtime-binary''"", ""''index.docker.io/ksmster/che-editor-jupyter''"", ""''index.docker.io/dirigiblelabs/dirigible-openshift''"", ""''quay.io/che-incubator/che-idea''"", ""''quay.io/che-incubator/che-pycharm''"", ""''index.docker.io/wsskeleton/eclipse-broadway''"", ""''index.docker.io/codercom/code-server''"", ""''quay.io/eclipse/che-buildah-base''"", ""''quay.io/eclipse/che-sidecar-workspace-data-sync''"", ""''quay.io/eclipse/che-buildkit-base''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mysql-57-centos7''"", ""''quay.io/eclipse/che-cpp-rhel7''"", ""''quay.io/eclipse/che-dotnet-2.2''"", ""''quay.io/eclipse/che-dotnet-3.1''"", ""''quay.io/eclipse/che-golang-1.17''"", ""''quay.io/eclipse/che-java11-gradle''"", ""''quay.io/eclipse/che-java11-maven''"", ""''quay.io/eclipse/che-java8-maven''"", ""''quay.io/eclipse/che-nodejs10-community''"", ""''quay.io/eclipse/che-nodejs10-ubi''"", ""''quay.io/eclipse/che-nodejs12-community''"", ""''quay.io/eclipse/che-nodejs8-centos''"", ""''quay.io/eclipse/che-php-7''"", ""''quay.io/eclipse/che-python-3.8''"", ""''quay.io/eclipse/che-quarkus''"", ""''quay.io/eclipse/che-rust-1.39''""]",https://github.com/eclipse-che/che-operator +operator_images,AtlasMap Operator,426,331,,,,,,,"[""''quay.io/atlasmap/atlasmap-operator:0.4.1''""]",https://github.com/atlasmap/atlasmap-operator +operator_images,Appsody Operator,426,331,,,,,,,,https://github.com/appsody/appsody-operator +operator_images,Cryostat Operator,426,331,,,,,,,"[""''quay.io/cryostat/cryostat-operator:2.1.1''""]",github.com/cryostatio/cryostat-operator +operator_images,Open Liberty Operator,426,331,,,,,,,,https://github.com/OpenLiberty/open-liberty-operator +operator_images,Runtime Component Operator,426,331,,,,,,,,https://github.com/application-stacks/runtime-component-operator +operator_images,Azure Service Operator,426,353,,,,,,,,https://github.com/Azure/azure-service-operator +operator_images,API Operator for Kubernetes,426,353,,,,,,,,https://github.com/wso2/k8s-api-operator +operator_images,KEDA,426,353,,,,,,,,https://github.com/kedacore/keda-olm-operator +operator_images,WSO2 API Manager Operator for Kubernetes,426,353,,,,,,,,https://github.com/wso2/k8s-wso2am-operator +operator_images,AWS Controllers for Kubernetes - Amazon API Gateway v2,426,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon Application Auto Scaling,426,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon DynamoDB,426,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon EC2,426,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon ECR,426,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon EKS,426,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon ElastiCache,426,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon EMR on EKS,426,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon IAM,426,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon KMS,426,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon Lambda,426,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon MQ,426,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon OpenSearch Service,426,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon RDS,426,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon S3,426,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon SageMaker,426,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,Strimzi,426,355,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator +operator_images,Keycloak Operator,426,355,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak +operator_images,Prometheus Operator,426,355,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator +operator_images,Elasticsearch (ECK) Operator,426,355,,,,,,,,https://github.com/elastic/cloud-on-k8s +operator_images,Knative Operator,426,355,,,,,,,,https://github.com/knative/operator +operator_images,Redis Operator,426,355,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator +operator_images,Rook-Ceph,426,355,,,,,,,,https://github.com/rook/rook +operator_images,Grafana Operator,426,355,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator +operator_images,Starboard Operator,426,355,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard +operator_images,TiDB Operator,426,355,,,,,,,,https://github.com/pingcap/tidb-operator +operator_images,RocketMQ Operator,426,355,,,,,,,,https://github.com/apache/rocketmq-operator +operator_images,Falco Operator,426,355,,,,,,,"[""''docker.io/falcosecurity/falco-operator-helm:0.7.6''""]",https://github.com/falcosecurity/falco-operator/tree/helm-based-operator +operator_images,Kubemq Enterprise Operator,426,355,,,,,,,"[""''docker.io/kubemq/kubemq-operator:latest''""]",https://github.com/kubemq-io/kubemq-operator +operator_images,Postgres-Operator,426,355,,,,,,,,https://github.com/zalando/postgres-operator +operator_images,AWS S3 Operator,426,355,,,,,,,"[""''quay.io/screeley44/aws-s3-provisioner:v1.0.0''""]",https://github.com/yard-turkey/aws-s3-provisioner +operator_images,Azure Service Operator,426,355,,,,,,,,https://github.com/Azure/azure-service-operator +operator_images,ArangoDB,426,355,,,,,,,,https://github.com/arangodb/kube-arangodb +operator_images,Redis Enterprise,426,355,,,,,,,, +operator_images,Apicurio Registry Operator,426,355,,,,,,,"[""''quay.io/apicurio/apicurio-registry-operator:1.0.0''""]",https://github.com/Apicurio/apicurio-registry-operator +operator_images,API Operator for Kubernetes,426,355,,,,,,,,https://github.com/wso2/k8s-api-operator +operator_images,GitLab,426,360,,,,,,,,https://gitlab.com/gitlab-org/cloud-native/gitlab-operator +operator_images,GitLab Runner,426,360,,,,,,,,https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator +operator_images,nfd-operator,426,362,,,,,,,,https://github.com/kubernetes-sigs/node-feature-discovery-operator +operator_images,Appsody Operator,426,364,,,,,,,,https://github.com/appsody/appsody-operator +operator_images,Runtime Component Operator,426,364,,,,,,,,https://github.com/application-stacks/runtime-component-operator +operator_images,Camel K Operator,426,,378,,,,,,"[""''docker.io/apache/camel-k:1.9.2''""]",https://github.com/apache/camel-k +operator_images,Appsody Operator,426,,398,,,,,,,https://github.com/appsody/appsody-operator +operator_images,Open Liberty Operator,426,,398,,,,,,,https://github.com/OpenLiberty/open-liberty-operator +operator_images,Runtime Component Operator,426,,398,,,,,,,https://github.com/application-stacks/runtime-component-operator +operator_images,Kogito,426,,398,,,,,,"[""''quay.io/kiegroup/kogito-operator:1.24.0''""]",https://github.com/kiegroup/kogito-operator +operator_images,Kubeflow,424,,,,,,,,,https://github.com/kubeflow/kfctl +operator_images,Varnish Operator,424,,,,,,,,,https://github.com/IBM/varnish-operator +operator_images,Composable,424,,,,,,,,,https://github.com/IBM/composable +operator_images,IBM COS Bucket Operator,424,,,,,,,,,https://github.com/IBM/cos-bucket-operator +operator_images,Encrypted Images Key Syncer Helm Operator,424,,,,,,,,"[""''docker.io/lumjjb/enc-key-sync-operator:v0.0.1''""]",https://github.com/IBM/k8s-enc-image-operator +operator_images,Elasticsearch Index Operator,424,,,,,,,,,https://github.com/IBM/esindex-operator +operator_images,Event Streams Topic,424,,,,,,,,,https://github.com/IBM/event-streams-topic +operator_images,External Secrets Operator,424,,,,,,,,,https://github.com/external-secrets/external-secrets-helm-operator +operator_images,Hybrid Application Model Operator,424,,,,,,,,"[""''quay.io/hybridappio/ham-deploy:0.1.0''""]",https://github.com/hybridapp-io/ham-deploy +operator_images,IBM Application Gateway Operator,424,,,,,,,,,https://github.com/IBM-Security/ibm-application-gateway-operator +operator_images,IBM block storage CSI driver operator,424,,,,,,,,,https://github.com/IBM/ibm-block-csi-operator +operator_images,IBM Cloud IAM Operator,424,,,,,,,,,https://github.com/IBM/ibmcloud-iam-operator +operator_images,IBM Cloud Operator,424,,,,,,,,,https://github.com/IBM/cloud-operators +operator_images,Ibm Quantum Operator,424,,,,,,,,"[""''quay.io/application/husky_parul/ibm-quantum-operator''""]",https://github.com/redhat-et/ibm-quantum-operator +operator_images,IBM Security Verify Access Operator,424,,,,,,,,,https://github.com/IBM-Security/verify-access-operator +operator_images,IBM Spectrum Scale CSI Plugin Operator,424,,,,,,,,"[""''quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator''""]",https://github.com/IBM/ibm-spectrum-scale-csi/ +operator_images,Open Liberty Operator,424,,,,,,,,,https://github.com/OpenLiberty/open-liberty-operator +operator_images,QiskitPlayground,424,,,,,,,,"[""''docker.io/qiskit/operator:0.1''""]",https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/kubernetes-qiskit-operator +operator_images,WildFly,426,,,,,,493,,"[""''quay.io/wildfly/wildfly-operator:0.5.3''""]",https://github.com/wildfly/wildfly-operator +operator_images,Knative Operator,426,,,,,,,497,,https://github.com/knative/operator +operator_images,Submariner,426,,,,,,,497,"[""''quay.io/submariner/submariner-operator:0.11.0''""]",https://github.com/submariner-io/submariner-operator +operator_images,Kong Operator,426,,,,,,,497,,https://github.com/kong/kong-operator +operator_images,Traefikee Operator,426,,,,,,,497,, +operator_images,Upbound Universal Crossplane (UXP),426,,,,,,,497,,https://github.com/upbound/universal-crossplane +operator_images,Varnish Operator,426,,,,,,,497,,https://github.com/IBM/varnish-operator +operator_images,BeeGFS CSI Driver,426,,,,,,,497,,https://github.com/netapp/beegfs-csi-driver +operator_images,cluster-impairment-operator,426,,,,,,,497,"[""''quay.io/redhat-performance/cluster-impairment-operator:1.0.4''""]",https://github.com/redhat-performance/cluster-impairment-operator +operator_images,Kogito Knative Eventing Source,426,,,,,,,497,,https://github.com/knative-sandbox/eventing-kogito +operator_images,k8gb,426,,,,,,,497,,https://github.com/k8gb-io/k8gb +operator_images,Kubernetes NMState Operator,426,,,,,,,497,"[""''quay.io/nmstate/kubernetes-nmstate-operator:v0.47.0''""]",https://github.com/nmstate/kubernetes-nmstate +operator_images,MARIN3R,426,,,,,,,497,"[""''quay.io/3scale/marin3r''""]",https://github.com/3scale-ops/marin3r +operator_images,MetalLB Operator,426,,,,,,,497,"[""''quay.io/metallb/metallb-operator''""]",https://github.com/metallb/metallb-operator +operator_images,NetObserv Operator,426,,,,,,,497,"[""''quay.io/netobserv/network-observability-operator:0.1.3''""]",https://github.com/netobserv/network-observability-operator +operator_images,NeuVector Operator,426,,,,,,,497,,https://github.com/neuvector/neuvector-operator +operator_images,Network Service Mesh Operator,426,,,,,,,497,"[""''quay.io/acmenezes/nsm-operator:v0.0.1''""]",https://github.com/acmenezes/nsm-operator +operator_images,Prisma Cloud Compute Operator,426,,,,,,,497,"[""''quay.io/prismacloud/pcc-operator''""]",https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator +operator_images,Routernetes,426,,,,,,,497,"[""''quay.io/routernetes/routernetes-operator:0.0.4''""]",https://github.com/routernetes/routernetes-operator +operator_images,skydive-operator,426,,,,,,,497,"[""''docker.io/skydive/skydive-operator:0.0.50''""]",https://github.com/skydive-project/skydive-golang-operator +operator_images,Tf Operator,426,,,,,,,497,"[""''docker.io/tungstenfabric/tf-operator:latest''""]",https://github.com/tungstenfabric/tf-operator +operator_images,Nexus Operator,426,,,,,,,503,"[""''quay.io/m88i/nexus-operator:0.6.0''""]",https://github.com/m88i/nexus-operator +operator_images,Anchore Engine Operator,426,,,,,,,503,"[""''docker.io/anchore/engine-operator:v0.1.3''""]",https://github.com/anchore/engine-operator +operator_images,Carbonetes Operator,426,,,,,,,503,"[""''docker.io/carbonetes/operator:1.0.4''""]",https://github.com/carbonetes/carbonetes-analyzer +operator_images,Prisma Cloud Compute Operator,426,,,,,,,503,"[""''quay.io/prismacloud/pcc-operator''""]",https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator +operator_images,Multi-Cluster Application Dispatcher,426,,,,,,,,, +operator_images,TiDB Operator,426,,,,,,,,,https://github.com/pingcap/tidb-operator +operator_images,Mariadb Operator,426,,,,,,,,"[""''quay.io/manojdhanorkar/mariadb-operator:v0.0.4''""]",https://github.com/abalki001/mariadb-operator +operator_images,PlanetScale Operator for Vitess,426,,,,,,,,, +operator_images,PostgreSQL Operator by Dev4Ddevs.com,426,,,,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator +operator_images,VerticaDB Operator,426,,,,,,,,"[""''docker.io/vertica/verticadb-operator:1.6.0''""]",https://github.com/vertica/vertica-kubernetes +operator_images,Elasticsearch (ECK) Operator,426,,,,,,,,,https://github.com/elastic/cloud-on-k8s +operator_images,Crunchy Postgres for Kubernetes,426,,,,,,,,,https://github.com/CrunchyData/postgres-operator +operator_images,Redis Operator,426,,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator +operator_images,Altinity Operator for ClickHouse,426,,,,,,,,,https://github.com/altinity/clickhouse-operator +operator_images,Percona Distribution for MySQL Operator,426,,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator +operator_images,Postgres-Operator,426,,,,,,,,,https://github.com/zalando/postgres-operator +operator_images,Couchbase Operator,426,,,,,,,,"[""''registry.hub.docker.com/couchbase/operator:2.3.0''""]", +operator_images,Redis Enterprise,426,,,,,,,,, +operator_images,EDB Postgres for Kubernetes,426,,,,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]", +operator_images,etcd,426,,,,,,,,"[""''quay.io/coreos/etcd-operator''""]",https://github.com/coreos/etcd-operator +operator_images,Percona Distribution for MongoDB Operator,426,,,,,,,,,https://github.com/percona/percona-server-mongodb-operator +operator_images,Upbound Universal Crossplane (UXP),426,,,,,,,,,https://github.com/upbound/universal-crossplane +operator_images,druid-operator,426,,,,,,,,"[""''docker.io/druidio/druid-operator:0.0.9''""]",https://github.com/druid-io/druid-operator +operator_images,Hazelcast Platform Operator,426,,,,,,,,"[""''docker.io/hazelcast/hazelcast-platform-operator:5.3''""]", +operator_images,Infinispan Operator,426,,,,,,,,"[""''quay.io/infinispan/operator:2.2.4.Final''""]",https://github.com/infinispan/infinispan-operator +operator_images,Crunchy Postgres for Kubernetes,426,532,,,,,,,,https://github.com/CrunchyData/postgres-operator +operator_images,TiDB Operator,426,532,,,,,,,,https://github.com/pingcap/tidb-operator +operator_images,EDB Postgres for Kubernetes,426,532,,,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]", +operator_images,GrdsCloud MySQL for Kubernetes,426,532,,,,,,,,https://github.com/GrdsCloud +operator_images,Percona Operator for PostgreSQL,426,532,,,,,,,,https://github.com/percona/percona-postgresql-operator +operator_images,Open Liberty Operator,426,,,,,,,,,https://github.com/OpenLiberty/open-liberty-operator +operator_images,IBM Cloud Operator,426,,,,,,,,,https://github.com/IBM/cloud-operators +operator_images,Prisma Cloud Compute Operator,426,,,,,,,,"[""''quay.io/prismacloud/pcc-operator''""]",https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator +operator_images,IBM Cloud IAM Operator,426,,,,,,,,,https://github.com/IBM/ibmcloud-iam-operator +operator_images,Sosivio Autonomuous Cloud Native,426,,,,,,,,"[""''quay.io/sosivio/sosivio-operator:v1.4.1-78''"", ""''quay.io/sosivio/sosivio-operator''"", ""''quay.io/sosivio/kube-rbac-proxy''"", ""''quay.io/sosivio/nsq''"", ""''quay.io/sosivio/crud-manager''"", ""''quay.io/sosivio/sosivio-node-collector''"", ""''quay.io/sosivio/sosivio-node-pinger''"", ""''quay.io/sosivio/classifier''"", ""''quay.io/sosivio/communicator''"", ""''quay.io/sosivio/analyzer''"", ""''quay.io/sosivio/sosivio-dashboard''"", ""''quay.io/sosivio/authentication''"", ""''quay.io/sosivio/actuator''"", ""''quay.io/sosivio/sequence-recognition''"", ""''quay.io/sosivio/correlation-entities''"", ""''quay.io/sosivio/contract-testing''"", ""''quay.io/sosivio/sosiviodb''"", ""''quay.io/sosivio/draingo''"", ""''quay.io/sosivio/discovery-engine''"", ""''quay.io/sosivio/notifier''""]",https://github.com/Sosivio/operator +operator_images,Robin Cloud Native Storage,426,,,,,,,,, +operator_images,Banzai Cloud Kafka Operator,426,,,,,,,,,https://github.com/banzaicloud/kafka-operator/tree/master +operator_images,EDB Postgres for Kubernetes,426,,,,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]", +operator_images,Elasticsearch (ECK) Operator,426,,,,,,,,,https://github.com/elastic/cloud-on-k8s +operator_images,API Operator for Kubernetes,426,,,,,,,,,https://github.com/wso2/k8s-api-operator +operator_images,Chaosblade Operator,426,,,,,,,,,https://github.com/chaosblade-io/chaosblade-operator +operator_images,clever-operator,426,,,,,,,,"[""''docker.io/clevercloud/clever-operator:e7cfe6efc4c4da80c722416fe1de373b789612f6''""]",https://github.com/CleverCloud/clever-operator +operator_images,IBM COS Bucket Operator,426,,,,,,,,,https://github.com/IBM/cos-bucket-operator +operator_images,Event Streams Topic,426,,,,,,,,,https://github.com/IBM/event-streams-topic +operator_images,Knative Operator,426,,,,,,,,,https://github.com/knative/operator +operator_images,Azure Service Operator,426,,,,,,,,,https://github.com/Azure/azure-service-operator +operator_images,Upbound Universal Crossplane (UXP),426,,,,,,,,,https://github.com/upbound/universal-crossplane +operator_images,Composable,426,,,,,,,,,https://github.com/IBM/composable +operator_images,Elasticsearch Index Operator,426,,,,,,,,,https://github.com/IBM/esindex-operator +operator_images,Kubefed Operator,426,,,,,,,,"[""''quay.io/openshift/kubefed-operator:v0.1.0-rc3''""]",https://github.com/openshift/kubefed-operator +operator_images,GrdsCloud MySQL for Kubernetes,426,,,,,,,,,https://github.com/GrdsCloud +operator_images,AtlasMap Operator,426,,,,,,,,"[""''quay.io/atlasmap/atlasmap-operator:0.4.1''""]",https://github.com/atlasmap/atlasmap-operator +operator_images,Alvearie Imaging Ingestion Operator,426,582,,,,,,,,https://github.com/Alvearie/imaging-ingestion +operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,582,,,,,,,,https://github.com/k8ssandra/cass-operator +operator_images,Qserv operator,426,582,,,,,,,,https://github.com/lsst/qserv-operator +operator_images,Strimzi,426,582,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator +operator_images,Keycloak Operator,426,582,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak +operator_images,Prometheus Operator,426,582,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator +operator_images,Elasticsearch (ECK) Operator,426,582,,,,,,,,https://github.com/elastic/cloud-on-k8s +operator_images,Crunchy Postgres for Kubernetes,426,582,,,,,,,,https://github.com/CrunchyData/postgres-operator +operator_images,Knative Operator,426,582,,,,,,,,https://github.com/knative/operator +operator_images,Redis Operator,426,582,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator +operator_images,Rook-Ceph,426,582,,,,,,,,https://github.com/rook/rook +operator_images,Argo CD,426,582,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator +operator_images,Grafana Operator,426,582,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator +operator_images,Starboard Operator,426,582,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard +operator_images,TiDB Operator,426,582,,,,,,,,https://github.com/pingcap/tidb-operator +operator_images,Altinity Operator for ClickHouse,426,582,,,,,,,,https://github.com/altinity/clickhouse-operator +operator_images,Flux,426,582,,,,,,,, +operator_images,Percona Distribution for MySQL Operator,426,582,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator +operator_images,RocketMQ Operator,426,582,,,,,,,,https://github.com/apache/rocketmq-operator +operator_images,StorageOS,426,582,,,,,,,,https://github.com/storageos/operator +operator_images,Alvearie Imaging Ingestion Operator,426,583,,,,,,,,https://github.com/Alvearie/imaging-ingestion +operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,583,,,,,,,,https://github.com/k8ssandra/cass-operator +operator_images,Qserv operator,426,583,,,,,,,,https://github.com/lsst/qserv-operator +operator_images,Strimzi,426,583,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator +operator_images,Keycloak Operator,426,583,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak +operator_images,Prometheus Operator,426,583,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator +operator_images,Elasticsearch (ECK) Operator,426,583,,,,,,,,https://github.com/elastic/cloud-on-k8s +operator_images,Crunchy Postgres for Kubernetes,426,583,,,,,,,,https://github.com/CrunchyData/postgres-operator +operator_images,Knative Operator,426,583,,,,,,,,https://github.com/knative/operator +operator_images,Redis Operator,426,583,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator +operator_images,Rook-Ceph,426,583,,,,,,,,https://github.com/rook/rook +operator_images,Argo CD,426,583,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator +operator_images,Grafana Operator,426,583,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator +operator_images,Starboard Operator,426,583,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard +operator_images,TiDB Operator,426,583,,,,,,,,https://github.com/pingcap/tidb-operator +operator_images,Altinity Operator for ClickHouse,426,583,,,,,,,,https://github.com/altinity/clickhouse-operator +operator_images,Flux,426,583,,,,,,,, +operator_images,Percona Distribution for MySQL Operator,426,583,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator +operator_images,RocketMQ Operator,426,583,,,,,,,,https://github.com/apache/rocketmq-operator +operator_images,StorageOS,426,583,,,,,,,,https://github.com/storageos/operator +operator_images,WildFly,426,584,,,,,,,"[""''quay.io/wildfly/wildfly-operator:0.5.3''""]",https://github.com/wildfly/wildfly-operator +operator_images,Eclipse Che,426,584,,,,,,,"[""''quay.io/eclipse/che-operator''"", ""''quay.io/che-incubator/configbump''"", ""''quay.io/che-incubator/header-rewrite-proxy''"", ""''quay.io/devfile/devworkspace-controller''"", ""''quay.io/eclipse/che--centos--postgresql-13-centos7''"", ""''quay.io/eclipse/che--centos--postgresql-96-centos7''"", ""''quay.io/eclipse/che--traefik''"", ""''quay.io/eclipse/che-backup-server-rest''"", ""''quay.io/eclipse/che-dashboard''"", ""''quay.io/eclipse/che-devfile-registry''"", ""''quay.io/eclipse/che-jwtproxy''"", ""''quay.io/eclipse/che-keycloak''"", ""''quay.io/eclipse/che-plugin-artifacts-broker''"", ""''quay.io/eclipse/che-plugin-metadata-broker''"", ""''quay.io/eclipse/che-plugin-registry''"", ""''quay.io/eclipse/che-server''"", ""''quay.io/eclipse/che-tls-secret-creator''"", ""''quay.io/openshift/origin-kube-rbac-proxy''"", ""''quay.io/openshift/origin-oauth-proxy''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/windupeng/mta-vscode-extension''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-theia''"", ""''quay.io/eclipse/che-machine-exec''"", ""''quay.io/eclipse/che-theia-endpoint-runtime-binary''"", ""''index.docker.io/ksmster/che-editor-jupyter''"", ""''index.docker.io/dirigiblelabs/dirigible-openshift''"", ""''quay.io/che-incubator/che-idea''"", ""''quay.io/che-incubator/che-pycharm''"", ""''index.docker.io/wsskeleton/eclipse-broadway''"", ""''index.docker.io/codercom/code-server''"", ""''quay.io/eclipse/che-buildah-base''"", ""''quay.io/eclipse/che-sidecar-workspace-data-sync''"", ""''quay.io/eclipse/che-buildkit-base''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mysql-57-centos7''"", ""''quay.io/eclipse/che-cpp-rhel7''"", ""''quay.io/eclipse/che-dotnet-2.2''"", ""''quay.io/eclipse/che-dotnet-3.1''"", ""''quay.io/eclipse/che-golang-1.17''"", ""''quay.io/eclipse/che-java11-gradle''"", ""''quay.io/eclipse/che-java11-maven''"", ""''quay.io/eclipse/che-java8-maven''"", ""''quay.io/eclipse/che-nodejs10-community''"", ""''quay.io/eclipse/che-nodejs10-ubi''"", ""''quay.io/eclipse/che-nodejs12-community''"", ""''quay.io/eclipse/che-nodejs8-centos''"", ""''quay.io/eclipse/che-php-7''"", ""''quay.io/eclipse/che-python-3.8''"", ""''quay.io/eclipse/che-quarkus''"", ""''quay.io/eclipse/che-rust-1.39''""]",https://github.com/eclipse-che/che-operator +operator_images,AtlasMap Operator,426,584,,,,,,,"[""''quay.io/atlasmap/atlasmap-operator:0.4.1''""]",https://github.com/atlasmap/atlasmap-operator +operator_images,Appsody Operator,426,584,,,,,,,,https://github.com/appsody/appsody-operator +operator_images,Cryostat Operator,426,584,,,,,,,"[""''quay.io/cryostat/cryostat-operator:2.1.1''""]",github.com/cryostatio/cryostat-operator +operator_images,Open Liberty Operator,426,584,,,,,,,,https://github.com/OpenLiberty/open-liberty-operator +operator_images,Runtime Component Operator,426,584,,,,,,,,https://github.com/application-stacks/runtime-component-operator +operator_images,IBM Spectrum Scale CSI Plugin Operator,426,,,605,,,,,"[""''quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator''""]",https://github.com/IBM/ibm-spectrum-scale-csi/ +operator_images,Instana Agent Operator,426,,,,,,,611,,https://github.com/instana/instana-agent-operator +operator_images,credstash-operator,426,,,612,,,,,"[""''quay.io/ouzi/credstash-operator:v1.13.0''""]",https://github.com/ouzi-dev/credstash-operator +operator_images,Snyk Operator,426,,,613,,,,,"[""''docker.io/snyk/kubernetes-operator:1.92.0''""]",https://github.com/snyk/kubernetes-monitor +operator_images,Akka Cluster Operator,426,,,614,,,,,,https://github.com/lightbend/akka-cluster-operator +operator_images,Lightbend Console Operator,426,,,614,,,,,,https://github.com/lightbend/console-charts/tree/master/operator +operator_images,Varnish Operator,426,,,,615,,,,,https://github.com/IBM/varnish-operator +operator_images,Datadog Operator,426,,,,,,,616,,https://github.com/DataDog/datadog-operator +operator_images,API Operator for Kubernetes,426,,,,,,,,,https://github.com/wso2/k8s-api-operator +operator_images,WSO2 API Manager Operator for Kubernetes,426,,,,,,,,,https://github.com/wso2/k8s-wso2am-operator +operator_images,AWS Controllers for Kubernetes - Amazon API Gateway v2,426,,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,APIcast,426,,,,,,,,"[""''quay.io/3scale/apicast-operator:v0.4.0''""]",https://github.com/3scale/apicast-operator +operator_images,APIMatic Operator,426,,,,,,,,"[""''docker.io/apimaticio/apimatic-kubernetes-operator:v0.0.1''""]",https://github.com/apimatic/apimatic-kubernetes-operator +operator_images,Microcks Operator,426,,,,,,,,"[""''quay.io/microcks/microcks-ansible-operator:1.5.2''""]",https://github.com/microcks/microcks-ansible-operator +operator_images,Apicurio Registry Operator,426,,,,,,,,"[""''quay.io/apicurio/apicurio-registry-operator:1.0.0''""]",https://github.com/Apicurio/apicurio-registry-operator +operator_images,IoT simulator,426,,,,,,,,,https://github.com/ctron/iot-simulator-operator +operator_images,Kong Operator,426,,,,,,,,,https://github.com/kong/kong-operator +operator_images,Minio Operator,426,,,,,,,,"[""''quay.io/minio/operator''""]",https://github.com/minio/operator +operator_images,IBM COS Bucket Operator,426,,,,,,,,,https://github.com/IBM/cos-bucket-operator +operator_images,DataTrucker.IO,426,,,,,,,,"[""''docker.io/datatruckerio/datatrucker-operator:2.0.0''""]",hhttps://gitlab.com/datatruckerio/datatrucker-server.git +operator_images,IBM Cloud Operator,426,,,,,,,,,https://github.com/IBM/cloud-operators +operator_images,nfd-operator,426,,,,,,,,,https://github.com/kubernetes-sigs/node-feature-discovery-operator +operator_images,SAP BTP Service Operator,426,,,,,,,,,https://github.com/SAP/sap-btp-service-operator +operator_images,IBM Cloud IAM Operator,426,,,,,,,,,https://github.com/IBM/ibmcloud-iam-operator +operator_images,Hazelcast Platform Operator,426,,,,,,,618,"[""''docker.io/hazelcast/hazelcast-platform-operator:5.3''""]", +operator_images,Infinispan Operator,426,,,619,,,,,"[""''quay.io/infinispan/operator:2.2.4.Final''""]",https://github.com/infinispan/infinispan-operator +operator_images,Nuxeo Operator,426,,,,,,,620,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator +operator_images,ArangoDB,426,,,621,,,,,,https://github.com/arangodb/kube-arangodb +operator_images,Eclipse Che,426,,,622,,,,,"[""''quay.io/eclipse/che-operator''"", ""''quay.io/che-incubator/configbump''"", ""''quay.io/che-incubator/header-rewrite-proxy''"", ""''quay.io/devfile/devworkspace-controller''"", ""''quay.io/eclipse/che--centos--postgresql-13-centos7''"", ""''quay.io/eclipse/che--centos--postgresql-96-centos7''"", ""''quay.io/eclipse/che--traefik''"", ""''quay.io/eclipse/che-backup-server-rest''"", ""''quay.io/eclipse/che-dashboard''"", ""''quay.io/eclipse/che-devfile-registry''"", ""''quay.io/eclipse/che-jwtproxy''"", ""''quay.io/eclipse/che-keycloak''"", ""''quay.io/eclipse/che-plugin-artifacts-broker''"", ""''quay.io/eclipse/che-plugin-metadata-broker''"", ""''quay.io/eclipse/che-plugin-registry''"", ""''quay.io/eclipse/che-server''"", ""''quay.io/eclipse/che-tls-secret-creator''"", ""''quay.io/openshift/origin-kube-rbac-proxy''"", ""''quay.io/openshift/origin-oauth-proxy''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/windupeng/mta-vscode-extension''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-theia''"", ""''quay.io/eclipse/che-machine-exec''"", ""''quay.io/eclipse/che-theia-endpoint-runtime-binary''"", ""''index.docker.io/ksmster/che-editor-jupyter''"", ""''index.docker.io/dirigiblelabs/dirigible-openshift''"", ""''quay.io/che-incubator/che-idea''"", ""''quay.io/che-incubator/che-pycharm''"", ""''index.docker.io/wsskeleton/eclipse-broadway''"", ""''index.docker.io/codercom/code-server''"", ""''quay.io/eclipse/che-buildah-base''"", ""''quay.io/eclipse/che-sidecar-workspace-data-sync''"", ""''quay.io/eclipse/che-buildkit-base''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mysql-57-centos7''"", ""''quay.io/eclipse/che-cpp-rhel7''"", ""''quay.io/eclipse/che-dotnet-2.2''"", ""''quay.io/eclipse/che-dotnet-3.1''"", ""''quay.io/eclipse/che-golang-1.17''"", ""''quay.io/eclipse/che-java11-gradle''"", ""''quay.io/eclipse/che-java11-maven''"", ""''quay.io/eclipse/che-java8-maven''"", ""''quay.io/eclipse/che-nodejs10-community''"", ""''quay.io/eclipse/che-nodejs10-ubi''"", ""''quay.io/eclipse/che-nodejs12-community''"", ""''quay.io/eclipse/che-nodejs8-centos''"", ""''quay.io/eclipse/che-php-7''"", ""''quay.io/eclipse/che-python-3.8''"", ""''quay.io/eclipse/che-quarkus''"", ""''quay.io/eclipse/che-rust-1.39''""]",https://github.com/eclipse-che/che-operator +operator_images,AWS Controllers for Kubernetes - Amazon S3,426,,,623,,,,,,https://github.com/aws-controllers-k8s +operator_images,Altinity Operator for ClickHouse,426,,,624,,,,,,https://github.com/altinity/clickhouse-operator +operator_images,Minio Operator,426,,,625,,,,,"[""''quay.io/minio/operator''""]",https://github.com/minio/operator +operator_images,Elasticsearch Index Operator,426,,,626,,,,,,https://github.com/IBM/esindex-operator +operator_images,Elasticsearch (ECK) Operator,426,,,626,,,,,,https://github.com/elastic/cloud-on-k8s +operator_images,Elasticsearch Phenix Operator,426,,,626,,,,,,https://github.com/Carrefour-Group/elastic-phenix-operator +operator_images,Logging Operator,426,,,626,,,,,"[""''quay.io/opstree/logging-operator:v0.3.0''""]",https://github.com/ot-container-kit/logging-operator +operator_images,Nuxeo Operator,426,,,626,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator +operator_images,Prometheus Exporter Operator,426,,,626,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator +operator_images,Percona Distribution for MySQL Operator,426,,,627,,,,,,https://github.com/percona/percona-xtradb-cluster-operator +operator_images,Keycloak Operator,426,,,628,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak +operator_images,Grafana Operator,426,,,629,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator +operator_images,Prometheus Exporter Operator,426,,,629,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator +operator_images,Mattermost Operator,426,,,,,,,630,"[""''docker.io/mattermost/mattermost-operator:v0.5.0''""]",https://github.com/mattermost/mattermost-operator +operator_images,synapse-helm,426,,,631,,,,,"[""''quay.io/mgoerens/synapse-helm:v0.0.11''""]",https://github.com/opdev/synapse-helm +operator_images,IBM Cloud IAM Operator,426,,,632,,,,,,https://github.com/IBM/ibmcloud-iam-operator +operator_images,AWS Controllers for Kubernetes - Amazon IAM,426,,,632,,,,,,https://github.com/aws-controllers-k8s +operator_images,Knative Operator,426,,,,,,,633,,https://github.com/knative/operator +operator_images,Kogito Knative Eventing Source,426,,,,,,,633,,https://github.com/knative-sandbox/eventing-kogito +operator_images,YAKS Operator,426,,,,,,,633,"[""''docker.io/citrusframework/yaks:0.10.0''""]",https://github.com/citrusframework/yaks +operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,,,634,,,,,,https://github.com/k8ssandra/cass-operator +operator_images,Kubeflow,426,,,,,,,635,,https://github.com/kubeflow/kfctl +operator_images,QiskitPlayground,426,,,636,,,,,"[""''docker.io/qiskit/operator:0.1''""]",https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/kubernetes-qiskit-operator +operator_images,Ibm Quantum Operator,426,,,636,,,,,"[""''quay.io/application/husky_parul/ibm-quantum-operator''""]",https://github.com/redhat-et/ibm-quantum-operator +operator_images,Azure Service Operator,426,,,637,,,,,,https://github.com/Azure/azure-service-operator +operator_images,Strimzi,426,,,,,,,638,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator +operator_images,Sematext Operator,426,,,,,,,639,"[""''docker.io/sematext/sematext-operator:1.0.33''""]",https://github.com/sematext/sematext-operator +operator_images,Eclipse Hawkbit,426,,,640,,,,,,https://github.com/ctron/hawkbit-operator +operator_images,Eclipse Ditto,426,,,641,,,,,,https://github.com/ctron/ditto-operator +operator_images,Mariadb Operator,426,,,642,,,,,"[""''quay.io/manojdhanorkar/mariadb-operator:v0.0.4''""]",https://github.com/abalki001/mariadb-operator +operator_images,Zadara Operator,426,,,643,,,,,,https://github.com/zadarastorage/zadara-operator +operator_images,Istio,426,,,644,,,,,,https://github.com/banzaicloud/istio-operator/tree/release-1.1 +operator_images,Istio Workspace,426,,,644,,,,,"[""''quay.io/maistra/istio-workspace:v0.5.0''""]",https://github.com/maistra/istio-workspace +operator_images,Kiali Operator,426,,,644,,,,,"[""''quay.io/kiali/kiali-operator:v1.53.0''""]",https://github.com/kiali/kiali +operator_images,Vault Operator,426,,,645,,,,,,https://github.com/banzaicloud/bank-vaults/tree/master/operator +operator_images,Vault Helm,426,,,645,,,,,"[""''quay.io/brejohns/vault-helm:0.0.2''""]",https://github.com/SDBrett/vault-helm +operator_images,External Secrets Operator,426,,,645,,,,,,https://github.com/external-secrets/external-secrets-helm-operator +operator_images,druid-operator,426,,,646,,,,,"[""''docker.io/druidio/druid-operator:0.0.9''""]",https://github.com/druid-io/druid-operator +operator_images,etcd,426,,,647,,,,,"[""''quay.io/coreos/etcd-operator''""]",https://github.com/coreos/etcd-operator +operator_images,Traefikee Operator,426,,,,648,,,,, +operator_images,IBM Cloud Operator,426,,,649,,,,,,https://github.com/IBM/cloud-operators +operator_images,IBM Cloud IAM Operator,426,,,649,,,,,,https://github.com/IBM/ibmcloud-iam-operator +operator_images,Event Streams Topic,426,,,649,,,,,,https://github.com/IBM/event-streams-topic +operator_images,IBM COS Bucket Operator,426,,,649,,,,,,https://github.com/IBM/cos-bucket-operator +operator_images,Composable,426,,,649,,,,,,https://github.com/IBM/composable +operator_images,Elasticsearch Index Operator,426,,,649,,,,,,https://github.com/IBM/esindex-operator +operator_images,IBM block storage CSI driver operator,426,,,649,,,,,,https://github.com/IBM/ibm-block-csi-operator +operator_images,Yugabyte Operator,426,,,650,,,,,"[""''quay.io/yugabyte/yugabytedb-operator''""]",https://github.com/yugabyte/yugabyte-operator +operator_images,CockroachDB,426,,,651,,,,,"[""''quay.io/helmoperators/cockroachdb:v5.0.4''""]",https://github.com/dmesser/cockroachdb-operator +operator_images,Community Jaeger Operator,426,,,,,,,652,"[""''quay.io/jaegertracing/jaeger-operator:1.35.0''""]",https://github.com/jaegertracing/jaeger-operator +operator_images,PostgreSQL Operator by Dev4Ddevs.com,426,,,,,,,661,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator +operator_images,Strimzi,426,,,,,,,661,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator +operator_images,Keycloak Operator,426,,,,,,,661,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak +operator_images,Prometheus Operator,426,,,,,,,661,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator +operator_images,Elasticsearch (ECK) Operator,426,,,,,,,661,,https://github.com/elastic/cloud-on-k8s +operator_images,Crunchy Postgres for Kubernetes,426,,,,,,,661,,https://github.com/CrunchyData/postgres-operator +operator_images,Knative Operator,426,,,,,,,661,,https://github.com/knative/operator +operator_images,Redis Operator,426,,,,,,,661,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator +operator_images,Rook-Ceph,426,,,,,,,661,,https://github.com/rook/rook +operator_images,Argo CD,426,,,,,,,661,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator +operator_images,Grafana Operator,426,,,,,,,661,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator +operator_images,Starboard Operator,426,,,,,,,661,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard +operator_images,TiDB Operator,426,,,,,,,661,,https://github.com/pingcap/tidb-operator +operator_images,Altinity Operator for ClickHouse,426,,,,,,,661,,https://github.com/altinity/clickhouse-operator +operator_images,Flux,426,,,,,,,661,, +operator_images,Percona Distribution for MySQL Operator,426,,,,,,,661,,https://github.com/percona/percona-xtradb-cluster-operator +operator_images,RocketMQ Operator,426,,,,,,,661,,https://github.com/apache/rocketmq-operator +operator_images,StorageOS,426,,,,,,,661,,https://github.com/storageos/operator +operator_images,Falco Operator,426,,,,,,,661,"[""''docker.io/falcosecurity/falco-operator-helm:0.7.6''""]",https://github.com/falcosecurity/falco-operator/tree/helm-based-operator +operator_images,Community Jaeger Operator,426,,,,,,,661,"[""''quay.io/jaegertracing/jaeger-operator:1.35.0''""]",https://github.com/jaegertracing/jaeger-operator +operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,,,671,,,,,,https://github.com/k8ssandra/cass-operator +operator_images,ks-releaser,426,,,677,,,,,,https://github.com/kubesphere-sigs/ks-releaser-operator +operator_images,Argo CD,426,,,677,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator +operator_images,Flux,426,,,677,,,,,, +operator_images,Argo CD Operator (Helm),426,,,677,,,,,"[""''quay.io/disposab1e/argocd-operator-helm''""]",https://github.com/disposab1e/argocd-operator-helm.git +operator_images,External Secrets Operator,426,,,677,,,,,,https://github.com/external-secrets/external-secrets-helm-operator +operator_images,GitLab,426,,,677,,,,,,https://gitlab.com/gitlab-org/cloud-native/gitlab-operator +operator_images,GitLab Runner,426,,,677,,,,,,https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator +operator_images,Multicluster Subscription Operator,426,,,677,,,,,"[""''quay.io/open-cluster-management/multicluster-operators-subscription:2.3.0''""]",https://github.com/open-cluster-management/multicloud-operators-subscription +operator_images,Weave GitOps Terraform Controller,426,,,677,,,,,, +operator_images,GitLab,426,,,678,,,,,,https://gitlab.com/gitlab-org/cloud-native/gitlab-operator +operator_images,GitLab Runner,426,,,678,,,,,,https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator +operator_images,External Secrets Operator,426,,,678,,,,,,https://github.com/external-secrets/external-secrets-helm-operator +operator_images,GrdsCloud MySQL for Kubernetes,426,,,684,,,,,,https://github.com/GrdsCloud +operator_images,Percona Distribution for MySQL Operator,426,,,684,,,,,,https://github.com/percona/percona-xtradb-cluster-operator +operator_images,PlanetScale Operator for Vitess,426,,,684,,,,,, +operator_images,Prometheus Exporter Operator,426,,,684,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator +operator_images,Postgresql Operator,426,,,686,,,,,"[""''quay.io/deekshah86/postgresql-operator''""]",https://github.com/janepelladinesh/postgresql-operator +operator_images,Percona Operator for PostgreSQL,426,,,686,,,,,,https://github.com/percona/percona-postgresql-operator +operator_images,PostgreSQL Operator by Dev4Ddevs.com,426,,,686,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator +operator_images,Crunchy Postgres for Kubernetes,426,,,686,,,,,,https://github.com/CrunchyData/postgres-operator +operator_images,EDB Postgres for Kubernetes,426,,,686,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]", +operator_images,Postgres-Operator,426,,,686,,,,,,https://github.com/zalando/postgres-operator +operator_images,Ext Postgres Operator,426,,,686,,,,,,https://github.com/movetokube/postgres-operator +operator_images,Nuxeo Operator,426,,,686,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator +operator_images,Prometheus Exporter Operator,426,,,686,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator +operator_images,Robin Cloud Native Storage,426,,,686,,,,,, +operator_images,AWS Controllers for Kubernetes - Amazon RDS,426,,,687,,,,,,https://github.com/aws-controllers-k8s +operator_images,Upbound Universal Crossplane (UXP),426,,,687,,,,,,https://github.com/upbound/universal-crossplane From 5c6445a9d619191480af245ca2a172d6901036bd Mon Sep 17 00:00:00 2001 From: lamwassi Date: Thu, 14 Jul 2022 17:24:33 -0400 Subject: [PATCH 15/30] fixed columns --- kg_utils/search_utils/save_to_csv.py | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/kg_utils/search_utils/save_to_csv.py b/kg_utils/search_utils/save_to_csv.py index c4200be..efc53c0 100644 --- a/kg_utils/search_utils/save_to_csv.py +++ b/kg_utils/search_utils/save_to_csv.py @@ -85,8 +85,7 @@ def write_to_csv(data:dict, file_name:str): ,"app_server": row["app_server"] , "plugin":row["plugin"] , \ "runlib": row["runlib"] , "runtime": row["runtime"] , \ "Operator_Correspondant_Image_Url": row["Operator_Correspondant_Image_Url"] ,\ - "Operator_Repository" : row["Operator_Repository"], "Other_Operators": row["Other_Operators"] - + "Operator_Repository" : row["Operator_Repository"] }) @@ -110,7 +109,7 @@ def write_to_csv(data:dict, file_name:str): , "lang":row["lang"], "lib": row["lib"] , "app": row["app"] \ ,"app_server": row["app_server"] , "plugin":row["plugin"] , \ "runlib": row["runlib"] , "runtime": row["runtime"] , \ - "Opeshift_Correspondent_Image_Url": row["Openshift_Correspondent_Image_Url"] ,\ + "Openshift_Correspondent_Image_Url": row["Openshift_Correspondent_Image_Url"] ,\ "DockerImageType": row["DockerImageType"] }) @@ -160,11 +159,14 @@ def csv_columns( table_name = "operator_images"): columns = { table_name: "", "container_name":"", "OS": 426, "lang" : None, "lib": None, "app": None, "app_server": None,"plugin": None,"runlib": None,"runtime": None } docker_col_extension = {"Docker_Url":"", "Notes": "", "CertOfImageAndPublisher": "" } - openshift_col_extension = {"Opeshift_Correspondent_Image_Url":"", "DockerImageType": ""} - operator_col_extension ={"Operator_Correspondant_Image_Url":[],"Operator_Repository": "", "Other_Operators": ""} + + openshift_col_extension = {"Openshift_Correspondent_Image_Url":"", "DockerImageType": ""} + + operator_col_extension ={"Operator_Correspondant_Image_Url":[],"Operator_Repository": ""} if table_name == "openshift_images": columns.update(openshift_col_extension) + elif table_name == "docker_images": columns.update(docker_col_extension) else: @@ -174,10 +176,11 @@ def csv_columns( table_name = "operator_images"): def operator_images_urls(image_links: list ): - """_summary_ + """ + Add double quote around urls Args: - images_links (list): _description_ + images_links (list): list of urls """ urls = [] if image_links == []: @@ -280,6 +283,7 @@ def openshift_images(): if len(exact_images) != 0: for ky, val in exact_images.items(): + if ky not in ["type","entity_id"]: img_data = cols.copy() img_data["openshift_images"] = "openshift_images" @@ -287,7 +291,9 @@ def openshift_images(): img_data["Openshift_Correspondent_Image_Url"] = val[0]["url"] img_data_type = entity_type_mapper(exact_images["type"] , str(exact_images["entity_id"])) - img_data["DockerImageType"] = list(img_data_type.keys())[0].title() + + if list(img_data_type.keys())[0].title() =='Os': img_data["DockerImageType"] ='OS' + else: img_data["DockerImageType"] = list(img_data_type.keys())[0].title() img_data.update(img_data_type) row_data.append(img_data) From 17dee25214fa9e5145aaf2089797d3f539f97505 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Tue, 19 Jul 2022 12:08:47 -0400 Subject: [PATCH 16/30] Removed 'Other Operators' from operator_images table --- db/1.0.4.sql | 252 ++++++++---------------------- kg_utils/search_utils/__init__.py | 0 2 files changed, 64 insertions(+), 188 deletions(-) create mode 100644 kg_utils/search_utils/__init__.py diff --git a/db/1.0.4.sql b/db/1.0.4.sql index 1011eee..887f392 100644 --- a/db/1.0.4.sql +++ b/db/1.0.4.sql @@ -13785,6 +13785,7 @@ INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (129, 'gitlab', 426, NULL, NULL, 678, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sameersbn/gitlab', 'App'); -- Table: operator_images + CREATE TABLE operator_images ( id integer PRIMARY KEY AUTOINCREMENT, container_name text NOT NULL, @@ -13798,7 +13799,6 @@ CREATE TABLE operator_images ( runtime integer, Operator_Correspondent_Image_URL text NOT NULL, Operator_Repository text, - Other_Operators text, FOREIGN KEY (OS) REFERENCES entities (id), FOREIGN KEY (lang) REFERENCES entities (id), FOREIGN KEY (lib) REFERENCES entities (id), @@ -13808,193 +13808,69 @@ CREATE TABLE operator_images ( FOREIGN KEY (runlib) REFERENCES entities (id), FOREIGN KEY (runtime) REFERENCES entities (id) ); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (1, 'Apache Spark Operator', 426, 331, NULL, 280, NULL, NULL, NULL, NULL, 'quay.io/radanalyticsio/spark-operator:1.0.2', 'https://github.com/radanalyticsio/spark-operator', '[[Spark Operator, gcr.io/spark-operator/spark-operator:v2.4.0-v1beta1-latest, https://github.com/GoogleCloudPlatform/spark-on-k8s-operator]]'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (2, 'Banzai Cloud Kafka Operator', 426, 323, NULL, 9, NULL, NULL, NULL, NULL, 'banzaicloud/kafka-operator:0.3.1', 'https://github.com/banzaicloud/kafka-operator/tree/master', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (3, 'Camel K Operator', 426, 323, NULL, 378, NULL, NULL, NULL, NULL, 'docker.io/apache/camel-k:1.3.0', 'https://github.com/apache/camel-k', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (4, 'GrdsCloud MySQL for Kubernetes', 426, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'grds/mysql-operator:1.0.0', 'https://github.com/GrdsCloud', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (5, 'Hive for Red Hat OpenShift', 426, 323, NULL, 8, NULL, NULL, NULL, NULL, 'quay.io/openshift-hive/hive:v1.0.17', 'https://github.com/openshift/hive', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (6, 'IBM Spectrum Scale CSI Plugin Operator', 426, 323, NULL, 74, NULL, NULL, NULL, NULL, 'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0', 'https://github.com/IBM/ibm-spectrum-scale-csi/', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (7, 'Jenkins Operator', 426, 323, NULL, 90, NULL, NULL, NULL, NULL, 'virtuslab/jenkins-operator:v0.3.0', 'https://github.com/jenkinsci/kubernetes-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (8, 'Postgresql Operator', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'quay.io/deekshah86/postgresql-operator', 'https://github.com/janepelladinesh/postgresql-operator', '[[Crunchy PostgreSQL for Kubernetes, registry.developers.crunchydata.com/crunchydata/postgres-operator:centos8-4.7.0, https://github.com/CrunchyData/postgres-operator], [Postgres-Operator, registry.opensource.zalan.do/acid/postgres-operator:v1.3.0, https://github.com/zalando/postgres-operator], [PostgreSQL Operator by Dev4Ddevs.com, quay.io/dev4devs-com/postgresql-operator:0.1.1, https://github.com/dev4devs-com/postgresql-operator]]'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (9, 'Redis Operator', 426, 323, NULL, 168, NULL, NULL, NULL, NULL, 'quay.io/opstree/redis-operator:v0.3.0', 'https://github.com/ot-container-kit/redis-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (10, 'WildFly', 426, 323, NULL, 493, NULL, NULL, NULL, NULL, 'quay.io/wildfly/wildfly-operator:0.3.0', 'https://github.com/wildfly/wildfly-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (11, 'MongoDB Enterprise Operator', 426, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'quay.io/mongodb/mongodb-enterprise-operator:1.12.0', 'https://github.com/mongodb/mongodb-enterprise-kubernetes', '[[Percona Distribution for MongoDB Operator, percona/percona-server-mongodb-operator:1.9.0, https://github.com/percona/percona-server-mongodb-operator ]]'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (12, 'Apache Spark Operator', 426, NULL, NULL, 280, NULL, NULL, NULL, NULL, 'quay.io/radanalyticsio/spark-operator:1.0.2', 'https://github.com/radanalyticsio/spark-operator', '[[Spark Operator, gcr.io/spark-operator/spark-operator:v2.4.0-v1beta1-latest, https://github.com/GoogleCloudPlatform/spark-on-k8s-operator]]'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (13, 'Banzai Cloud Kafka Operator', 426, NULL, NULL, 9, NULL, NULL, NULL, NULL, 'banzaicloud/kafka-operator:0.3.1', 'https://github.com/banzaicloud/kafka-operator/tree/master', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (14, 'Camel K Operator', 426, NULL, NULL, 378, NULL, NULL, NULL, NULL, 'docker.io/apache/camel-k:1.3.0', 'https://github.com/apache/camel-k', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (15, 'GrdsCloud MySQL for Kubernetes', 426, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'grds/mysql-operator:1.0.0', 'https://github.com/GrdsCloud', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (16, 'Hive for Red Hat OpenShift', 426, NULL, NULL, 8, NULL, NULL, NULL, NULL, 'quay.io/openshift-hive/hive:v1.0.17', 'https://github.com/openshift/hive', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (17, 'IBM Spectrum Scale CSI Plugin Operator', 426, NULL, NULL, 74, NULL, NULL, NULL, NULL, 'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0', 'https://github.com/IBM/ibm-spectrum-scale-csi/', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (18, 'Jenkins Operator', 426, NULL, NULL, 90, NULL, NULL, NULL, NULL, 'virtuslab/jenkins-operator:v0.3.0', 'https://github.com/jenkinsci/kubernetes-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (19, 'Postgresql Operator', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'quay.io/deekshah86/postgresql-operator', 'https://github.com/janepelladinesh/postgresql-operator', '[[Crunchy PostgreSQL for Kubernetes, registry.developers.crunchydata.com/crunchydata/postgres-operator:centos8-4.7.0, https://github.com/CrunchyData/postgres-operator], [Postgres-Operator, registry.opensource.zalan.do/acid/postgres-operator:v1.3.0, https://github.com/zalando/postgres-operator], [PostgreSQL Operator by Dev4Ddevs.com, quay.io/dev4devs-com/postgresql-operator:0.1.1, https://github.com/dev4devs-com/postgresql-operator]]'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (20, 'Redis Operator', 426, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'quay.io/opstree/redis-operator:v0.3.0', 'https://github.com/ot-container-kit/redis-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (21, 'WildFly', 426, NULL, NULL, 493, NULL, NULL, NULL, NULL, 'quay.io/wildfly/wildfly-operator:0.3.0', 'https://github.com/wildfly/wildfly-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (22, 'MongoDB Enterprise Operator', 426, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'quay.io/mongodb/mongodb-enterprise-operator:1.12.0', 'https://github.com/mongodb/mongodb-enterprise-kubernetes', '[[Percona Distribution for MongoDB Operator, percona/percona-server-mongodb-operator:1.9.0, https://github.com/percona/percona-server-mongodb-operator ]]'); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (23, 'Instana Agent Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 611, 'instana/instana-agent-operator:0.3.7', 'https://github.com/instana/instana-agent-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (24, 'credstash-operator', 426, NULL, NULL, 612, NULL, NULL, NULL, NULL, 'quay.io/ouzi/credstash-operator:v1.13.0', 'https://github.com/ouzi-dev/credstash-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (25, 'Snyk Operator', 426, NULL, NULL, 613, NULL, NULL, NULL, NULL, 'docker.io/snyk/kubernetes-operator:1.59.3', 'https://github.com/snyk/kubernetes-monitor', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (26, 'Akka Cluster Operator', 426, NULL, NULL, 614, NULL, NULL, NULL, NULL, 'lightbend-docker-registry.bintray.io/lightbend/akkacluster-operator:v1.0.0', 'https://github.com/lightbend/akka-cluster-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (27, 'Varnish Operator', 426, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'ibmcom/varnish-operator:0.27.2', 'https://github.com/IBM/varnish-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (28, 'Datadog Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 616, 'datadog/operator:0.3.0', 'https://github.com/DataDog/datadog-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (29, 'Hazelcast Enterprise Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 618, 'hazelcast/hazelcast-enterprise-operator:0.3.7', 'https://github.com/hazelcast/hazelcast-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (30, 'infinispan', 426, NULL, NULL, 619, NULL, NULL, NULL, NULL, 'docker.io/jboss/infinispan-operator:0.3.0', 'https://github.com/infinispan/infinispan-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (31, 'Nuxeo Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 620, 'docker.io/appzygy/nuxeo-operator:0.7.1', 'https://github.com/aceeric/nuxeo-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (32, 'ArangoDB', 426, NULL, NULL, 621, NULL, NULL, NULL, NULL, 'arangodb/kube-arangodb:1.0.2', 'https://github.com/arangodb/kube-arangodb', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (33, 'Eclipse Che', 426, NULL, NULL, 622, NULL, NULL, NULL, NULL, 'quay.io/eclipse/che-operator@sha256:ea3641202e11ad00bd639b59809b6f4a6508f2c143d260b1683a9f36d74ed54f', 'https://github.com/eclipse-che/che-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (34, 'AWS S3 Operator', 426, NULL, NULL, 623, NULL, NULL, NULL, NULL, 'quay.io/screeley44/aws-s3-provisioner:v1.0.0', 'https://github.com/yard-turkey/aws-s3-provisioner', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (35, 'Altinity ClickHouse Operator', 426, NULL, NULL, 624, NULL, NULL, NULL, NULL, 'altinity/clickhouse-operator:0.9.9', 'https://github.com/altinity/clickhouse-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (36, 'MinIO Operator', 426, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'minio/k8s-operator:1.0.3', 'https://github.com/minio/minio-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (37, 'Elastic Cloud on Kubernetes', 426, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'docker.elastic.co/eck/eck-operator:1.0.0-beta1', 'https://github.com/elastic/cloud-on-k8s', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (38, 'Percona XtraDB Cluster Operator', 426, NULL, NULL, 627, NULL, NULL, NULL, NULL, 'percona/percona-xtradb-cluster-operator:1.7.0', 'https://github.com/percona/percona-xtradb-cluster-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (39, 'Keycloak Operator', 426, NULL, NULL, 628, NULL, NULL, NULL, NULL, 'quay.io/keycloak/keycloak-operator:9.0.2', 'https://github.com/keycloak/keycloak-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (40, 'Grafana Operator', 426, NULL, NULL, 629, NULL, NULL, NULL, NULL, 'quay.io/integreatly/grafana-operator:v3.10.1', 'https://github.com/integr8ly/grafana-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (41, 'Mattermost Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 630, 'docker.io/mattermost/mattermost-operator:v0.5.0', 'https://github.com/mattermost/mattermost-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (42, 'synapse-helm', 426, NULL, NULL, 631, NULL, NULL, NULL, NULL, 'quay.io/mgoerens/synapse-helm:v0.0.11', 'https://github.com/opdev/synapse-helm', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (43, 'IBM Cloud IAM Operator', 426, NULL, NULL, 632, NULL, NULL, NULL, NULL, 'cloudoperators/ibmcloud-iam-operator:0.1.0', 'https://github.com/IBM/ibmcloud-iam-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (44, 'Knative Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 633, 'gcr.io/knative-releases/knative.dev/operator/cmd/operator:v0.20.0', 'https://github.com/knative/operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (45, 'Cassandra', 426, NULL, NULL, 634, NULL, NULL, NULL, NULL, 'gcr.io/cassandra-operator/cassandra-operator:v2.0.0', 'https://github.com/instaclustr/cassandra-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (46, 'Kubeflow', 426, NULL, NULL, NULL, NULL, NULL, NULL, 635, 'aipipeline/kubeflow-operator:v1.0.0', 'https://github.com/kubeflow/kfctl', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (47, 'Openshift Qiskit Operator', 426, NULL, NULL, 636, NULL, NULL, NULL, NULL, 'https://hub.docker.com/repository/docker/singhp11/openshift-qiskit-operator', 'https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/openshift-qiskit-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (48, 'Azure Service Operator', 426, NULL, NULL, 637, NULL, NULL, NULL, NULL, 'mcr.microsoft.com/k8s/azureserviceoperator:1.0.27207', 'https://github.com/Azure/azure-service-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (49, 'Strimzi', 426, NULL, NULL, NULL, NULL, NULL, NULL, 638, 'docker.io/strimzi/operator@sha256:62218aee7553b31db1f65bc30b3c6b6595c2fd631b2e1792e24e554a47080aa6', 'https://github.com/strimzi/strimzi-kafka-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (50, 'Sematext Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 639, 'docker.io/sematext/sematext-operator:1.0.33', 'https://github.com/sematext/sematext-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (51, 'Eclipse Hawkbit', 426, NULL, NULL, 640, NULL, NULL, NULL, NULL, 'docker.io/ctron/hawkbit-operator:0.1.4', 'https://github.com/ctron/hawkbit-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (52, 'Eclipse Ditto', 426, NULL, NULL, 641, NULL, NULL, NULL, NULL, 'docker.io/ctron/ditto-operator:0.1.0', 'https://github.com/ctron/ditto-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (53, 'Mariadb Operator', 426, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'quay.io/manojdhanorkar/mariadb-operator:v0.0.1', 'https://github.com/abalki001/mariadb-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (54, 'Zadara Operator', 426, NULL, NULL, 643, NULL, NULL, NULL, NULL, 'zadara/zoperator:0.3.6', 'https://github.com/zadarastorage/zadara-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (55, 'Istio', 426, NULL, NULL, 644, NULL, NULL, NULL, NULL, 'banzaicloud/istio-operator:0.1.6', 'https://github.com/banzaicloud/istio-operator/tree/release-1.1', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (56, 'Vault Helm', 426, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'quay.io/brejohns/vault-helm:0.0.1', 'https://github.com/SDBrett/vault-helm', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (57, 'druid-operator', 426, NULL, NULL, 646, NULL, NULL, NULL, NULL, 'druidio/druid-operator:0.0.6', 'https://github.com/druid-io/druid-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (58, 'etcd', 426, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'quay.io/coreos/etcd-operator@sha256:66a37fd61a06a43969854ee6d3e21087a98b93838e284a6086b13917f96b0d9b', 'https://github.com/coreos/etcd-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (59, 'Traefikee Operator', 426, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'containous/traefikee-operator:v0.3.0', 'https://github.com/containous/traefikee-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (60, 'IBM Cloud Operator', 426, NULL, NULL, 649, NULL, NULL, NULL, NULL, 'cloudoperators/ibmcloud-operator:0.1.10', 'https://github.com/IBM/cloud-operators', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (61, 'Yugabyte Operator', 426, NULL, NULL, 650, NULL, NULL, NULL, NULL, 'quay.io/yugabyte/yugabytedb-operator', 'https://github.com/yugabyte/yugabyte-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (62, 'CockroachDB', 426, NULL, NULL, 651, NULL, NULL, NULL, NULL, 'quay.io/helmoperators/cockroachdb:v3.0.7', 'https://github.com/dmesser/cockroachdb-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (63, 'Community Jaeger Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 652, 'docker.io/jaegertracing/jaeger-operator:1.11.1', 'https://github.com/jaegertracing/jaeger-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (64, 'IoT simulator', 426, NULL, NULL, 46, NULL, NULL, NULL, NULL, '[]', 'https://github.com/ctron/iot-simulator-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (65, 'Elasticsearch (ECK) Operator', 426, NULL, NULL, 47, NULL, NULL, NULL, NULL, '[]', 'https://github.com/elastic/cloud-on-k8s', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (66, 'Elasticsearch Phenix Operator', 426, NULL, NULL, 47, NULL, NULL, NULL, NULL, '[]', 'https://github.com/Carrefour-Group/elastic-phenix-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (67, 'Logging Operator', 426, NULL, NULL, 47, NULL, NULL, NULL, NULL, '["''quay.io/opstree/logging-operator:v0.3.0''"]', 'https://github.com/ot-container-kit/logging-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (68, 'AWS Controllers for Kubernetes - Amazon ElastiCache', 426, NULL, NULL, 47, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (69, 'Elasticsearch Index Operator', 426, NULL, NULL, 47, NULL, NULL, NULL, NULL, '[]', 'https://github.com/IBM/esindex-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (70, 'Prometheus Exporter Operator', 426, NULL, NULL, 47, NULL, NULL, NULL, NULL, '["''quay.io/3scale/prometheus-exporter-operator:v0.2.4''"]', 'https://github.com/3scale/prometheus-exporter-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (71, 'Kong Operator', 426, NULL, NULL, 88, NULL, NULL, NULL, NULL, '[]', 'https://github.com/kong/kong-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (72, 'MongoDB Operator', 426, NULL, NULL, 116, NULL, NULL, NULL, NULL, '["''quay.io/opstree/mongodb-operator:v0.3.0''"]', 'https://github.com/ot-container-kit/mongodb-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (73, 'MongoDB Atlas Operator', 426, NULL, NULL, 116, NULL, NULL, NULL, NULL, '[]', '', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (74, 'Percona Distribution for MongoDB Operator', 426, NULL, NULL, 116, NULL, NULL, NULL, NULL, '[]', 'https://github.com/percona/percona-server-mongodb-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (75, 'Percona Distribution for MySQL Operator', 426, NULL, NULL, 122, NULL, NULL, NULL, NULL, '[]', 'https://github.com/percona/percona-xtradb-cluster-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (76, 'PlanetScale Operator for Vitess', 426, NULL, NULL, 122, NULL, NULL, NULL, NULL, '[]', '', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (77, 'Percona Operator for PostgreSQL', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, '[]', 'https://github.com/percona/percona-postgresql-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (78, 'PostgreSQL Operator by Dev4Ddevs.com', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, '["''quay.io/dev4devs-com/postgresql-operator:0.1.1''"]', 'https://github.com/dev4devs-com/postgresql-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (79, 'Crunchy Postgres for Kubernetes', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, '[]', 'https://github.com/CrunchyData/postgres-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (80, 'EDB Postgres for Kubernetes', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, '["''quay.io/enterprisedb/cloud-native-postgresql''"]', '', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (81, 'Postgres-Operator', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, '[]', 'https://github.com/zalando/postgres-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (82, 'Ext Postgres Operator', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, '[]', 'https://github.com/movetokube/postgres-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (83, 'Robin Cloud Native Storage', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, '[]', '', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (84, 'Redis Enterprise', 426, NULL, NULL, 168, NULL, NULL, NULL, NULL, '[]', '', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (85, 'Splunk Operator', 426, NULL, NULL, 188, NULL, NULL, NULL, NULL, '[]', '', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (86, 'Encrypted Images Key Syncer Helm Operator', 426, NULL, NULL, 209, NULL, NULL, NULL, NULL, '["''docker.io/lumjjb/enc-key-sync-operator:v0.0.1''"]', 'https://github.com/IBM/k8s-enc-image-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (87, 'Joget DX on Apache Tomcat', 426, NULL, NULL, NULL, 260, NULL, NULL, NULL, '[]', 'https://github.com/jogetworkflow/', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (88, 'APIcast', 426, NULL, NULL, NULL, 274, NULL, NULL, NULL, '["''quay.io/3scale/apicast-operator:v0.4.0''"]', 'https://github.com/3scale/apicast-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (89, 'Spark Operator', 426, NULL, NULL, NULL, 280, NULL, NULL, NULL, '[]', 'https://github.com/GoogleCloudPlatform/spark-on-k8s-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (90, 'Kubestone', 426, NULL, NULL, NULL, 280, NULL, NULL, NULL, '[]', 'https://github.com/xridge/kubestone', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (91, 'Flink Kubernetes Operator', 426, 301, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/apache/flink-kubernetes-operator:1.0.1''"]', 'https://github.com/apache/flink-kubernetes-operator.git', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (92, 'Alvearie Imaging Ingestion Operator', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/Alvearie/imaging-ingestion', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (93, 'DataStax Kubernetes Operator for Apache Cassandra', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/k8ssandra/cass-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (94, 'Qserv operator', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/lsst/qserv-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (95, 'Prometheus Operator', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/prometheus-operator/prometheus-operator:v0.47.0''"]', 'https://github.com/prometheus-operator/prometheus-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (96, 'Rook-Ceph', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/rook/rook', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (97, 'Argo CD', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/argoprojlabs/argocd-operator''"]', 'https://github.com/argoproj-labs/argocd-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (98, 'Starboard Operator', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/aquasec/starboard-operator:0.15.6''"]', 'https://github.com/aquasecurity/starboard', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (99, 'TiDB Operator', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/pingcap/tidb-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (100, 'Altinity Operator for ClickHouse', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/altinity/clickhouse-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (101, 'Flux', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '[]', '', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (102, 'RocketMQ Operator', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/apache/rocketmq-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (103, 'StorageOS', 426, 303, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/storageos/operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (104, 'Lightbend Console Operator', 426, 306, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/lightbend/console-charts/tree/master/operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (105, 'External Secrets Operator', 426, 323, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/external-secrets/external-secrets-helm-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (106, 'Intel Device Plugins Operator', 426, 323, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/intel/intel-device-plugins-for-kubernetes', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (107, 'silicom-sts-operator', 426, 323, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/silicom/sts-operator:v0.0.1''"]', 'github.com/silicomdk/sts-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (108, 'AtlasMap Operator', 426, 331, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/atlasmap/atlasmap-operator:0.4.1''"]', 'https://github.com/atlasmap/atlasmap-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (109, 'Appsody Operator', 426, 331, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/appsody/appsody-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (110, 'Cryostat Operator', 426, 331, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/cryostat/cryostat-operator:2.1.1''"]', 'github.com/cryostatio/cryostat-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (111, 'Open Liberty Operator', 426, 331, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/OpenLiberty/open-liberty-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (112, 'Runtime Component Operator', 426, 331, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/application-stacks/runtime-component-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (113, 'API Operator for Kubernetes', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/wso2/k8s-api-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (114, 'KEDA', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/kedacore/keda-olm-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (115, 'WSO2 API Manager Operator for Kubernetes', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/wso2/k8s-wso2am-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (116, 'AWS Controllers for Kubernetes - Amazon API Gateway v2', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (117, 'AWS Controllers for Kubernetes - Amazon Application Auto Scaling', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (118, 'AWS Controllers for Kubernetes - Amazon DynamoDB', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (119, 'AWS Controllers for Kubernetes - Amazon EC2', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (120, 'AWS Controllers for Kubernetes - Amazon ECR', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (121, 'AWS Controllers for Kubernetes - Amazon EKS', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (122, 'AWS Controllers for Kubernetes - Amazon EMR on EKS', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (123, 'AWS Controllers for Kubernetes - Amazon IAM', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (124, 'AWS Controllers for Kubernetes - Amazon KMS', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (125, 'AWS Controllers for Kubernetes - Amazon Lambda', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (126, 'AWS Controllers for Kubernetes - Amazon MQ', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (127, 'AWS Controllers for Kubernetes - Amazon OpenSearch Service', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (128, 'AWS Controllers for Kubernetes - Amazon RDS', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (129, 'AWS Controllers for Kubernetes - Amazon S3', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (130, 'AWS Controllers for Kubernetes - Amazon SageMaker', 426, 353, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/aws-controllers-k8s', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (131, 'Falco Operator', 426, 355, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/falcosecurity/falco-operator-helm:0.7.6''"]', 'https://github.com/falcosecurity/falco-operator/tree/helm-based-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (132, 'Kubemq Enterprise Operator', 426, 355, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/kubemq/kubemq-operator:latest''"]', 'https://github.com/kubemq-io/kubemq-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (133, 'Apicurio Registry Operator', 426, 355, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/apicurio/apicurio-registry-operator:1.0.0''"]', 'https://github.com/Apicurio/apicurio-registry-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (134, 'GitLab', 426, 360, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://gitlab.com/gitlab-org/cloud-native/gitlab-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (135, 'GitLab Runner', 426, 360, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (136, 'nfd-operator', 426, 362, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/kubernetes-sigs/node-feature-discovery-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (137, 'Kogito', 426, NULL, 398, NULL, NULL, NULL, NULL, NULL, '["''quay.io/kiegroup/kogito-operator:1.24.0''"]', 'https://github.com/kiegroup/kogito-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (138, 'Composable', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/IBM/composable', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (139, 'IBM COS Bucket Operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/IBM/cos-bucket-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (140, 'Event Streams Topic', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/IBM/event-streams-topic', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (141, 'Hybrid Application Model Operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/hybridappio/ham-deploy:0.1.0''"]', 'https://github.com/hybridapp-io/ham-deploy', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (142, 'IBM Application Gateway Operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/IBM-Security/ibm-application-gateway-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (143, 'IBM block storage CSI driver operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/IBM/ibm-block-csi-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (144, 'Ibm Quantum Operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/application/husky_parul/ibm-quantum-operator''"]', 'https://github.com/redhat-et/ibm-quantum-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (145, 'IBM Security Verify Access Operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/IBM-Security/verify-access-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (146, 'QiskitPlayground', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/qiskit/operator:0.1''"]', 'https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/kubernetes-qiskit-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (147, 'Submariner', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/submariner/submariner-operator:0.11.0''"]', 'https://github.com/submariner-io/submariner-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (148, 'Upbound Universal Crossplane (UXP)', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '[]', 'https://github.com/upbound/universal-crossplane', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (149, 'BeeGFS CSI Driver', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '[]', 'https://github.com/netapp/beegfs-csi-driver', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (150, 'cluster-impairment-operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/redhat-performance/cluster-impairment-operator:1.0.4''"]', 'https://github.com/redhat-performance/cluster-impairment-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (151, 'Kogito Knative Eventing Source', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '[]', 'https://github.com/knative-sandbox/eventing-kogito', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (152, 'k8gb', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '[]', 'https://github.com/k8gb-io/k8gb', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (153, 'Kubernetes NMState Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/nmstate/kubernetes-nmstate-operator:v0.47.0''"]', 'https://github.com/nmstate/kubernetes-nmstate', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (154, 'MARIN3R', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/3scale/marin3r''"]', 'https://github.com/3scale-ops/marin3r', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (155, 'MetalLB Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/metallb/metallb-operator''"]', 'https://github.com/metallb/metallb-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (156, 'NetObserv Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/netobserv/network-observability-operator:0.1.3''"]', 'https://github.com/netobserv/network-observability-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (157, 'NeuVector Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '[]', 'https://github.com/neuvector/neuvector-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (158, 'Network Service Mesh Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/acmenezes/nsm-operator:v0.0.1''"]', 'https://github.com/acmenezes/nsm-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (159, 'Prisma Cloud Compute Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/prismacloud/pcc-operator''"]', 'https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (160, 'Routernetes', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/routernetes/routernetes-operator:0.0.4''"]', 'https://github.com/routernetes/routernetes-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (161, 'skydive-operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''docker.io/skydive/skydive-operator:0.0.50''"]', 'https://github.com/skydive-project/skydive-golang-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (162, 'Tf Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''docker.io/tungstenfabric/tf-operator:latest''"]', 'https://github.com/tungstenfabric/tf-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (163, 'Nexus Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 503, '["''quay.io/m88i/nexus-operator:0.6.0''"]', 'https://github.com/m88i/nexus-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (164, 'Anchore Engine Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 503, '["''docker.io/anchore/engine-operator:v0.1.3''"]', 'https://github.com/anchore/engine-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (165, 'Carbonetes Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 503, '["''docker.io/carbonetes/operator:1.0.4''"]', 'https://github.com/carbonetes/carbonetes-analyzer', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (166, 'Multi-Cluster Application Dispatcher', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', '', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (167, 'VerticaDB Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/vertica/verticadb-operator:1.6.0''"]', 'https://github.com/vertica/vertica-kubernetes', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (168, 'Couchbase Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''registry.hub.docker.com/couchbase/operator:2.3.0''"]', '', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (169, 'Hazelcast Platform Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/hazelcast/hazelcast-platform-operator:5.3''"]', '', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (170, 'Infinispan Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/infinispan/operator:2.2.4.Final''"]', 'https://github.com/infinispan/infinispan-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (171, 'Sosivio Autonomuous Cloud Native', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/sosivio/sosivio-operator:v1.4.1-78''", "''quay.io/sosivio/sosivio-operator''", "''quay.io/sosivio/kube-rbac-proxy''", "''quay.io/sosivio/nsq''", "''quay.io/sosivio/crud-manager''", "''quay.io/sosivio/sosivio-node-collector''", "''quay.io/sosivio/sosivio-node-pinger''", "''quay.io/sosivio/classifier''", "''quay.io/sosivio/communicator''", "''quay.io/sosivio/analyzer''", "''quay.io/sosivio/sosivio-dashboard''", "''quay.io/sosivio/authentication''", "''quay.io/sosivio/actuator''", "''quay.io/sosivio/sequence-recognition''", "''quay.io/sosivio/correlation-entities''", "''quay.io/sosivio/contract-testing''", "''quay.io/sosivio/sosiviodb''", "''quay.io/sosivio/draingo''", "''quay.io/sosivio/discovery-engine''", "''quay.io/sosivio/notifier''"]', 'https://github.com/Sosivio/operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (172, 'Chaosblade Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/chaosblade-io/chaosblade-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (173, 'clever-operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/clevercloud/clever-operator:e7cfe6efc4c4da80c722416fe1de373b789612f6''"]', 'https://github.com/CleverCloud/clever-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (174, 'Kubefed Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/openshift/kubefed-operator:v0.1.0-rc3''"]', 'https://github.com/openshift/kubefed-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (175, 'APIMatic Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/apimaticio/apimatic-kubernetes-operator:v0.0.1''"]', 'https://github.com/apimatic/apimatic-kubernetes-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (176, 'Microcks Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/microcks/microcks-ansible-operator:1.5.2''"]', 'https://github.com/microcks/microcks-ansible-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (177, 'Minio Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/minio/operator''"]', 'https://github.com/minio/operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (178, 'DataTrucker.IO', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/datatruckerio/datatrucker-operator:2.0.0''"]', 'hhttps://gitlab.com/datatruckerio/datatrucker-server.git', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (179, 'SAP BTP Service Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '[]', 'https://github.com/SAP/sap-btp-service-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (180, 'YAKS Operator', 426, NULL, NULL, NULL, NULL, NULL, NULL, 633, '["''docker.io/citrusframework/yaks:0.10.0''"]', 'https://github.com/citrusframework/yaks', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (181, 'Istio Workspace', 426, NULL, NULL, 644, NULL, NULL, NULL, NULL, '["''quay.io/maistra/istio-workspace:v0.5.0''"]', 'https://github.com/maistra/istio-workspace', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (182, 'Kiali Operator', 426, NULL, NULL, 644, NULL, NULL, NULL, NULL, '["''quay.io/kiali/kiali-operator:v1.53.0''"]', 'https://github.com/kiali/kiali', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (183, 'Vault Operator', 426, NULL, NULL, 645, NULL, NULL, NULL, NULL, '[]', 'https://github.com/banzaicloud/bank-vaults/tree/master/operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (184, 'ks-releaser', 426, NULL, NULL, 677, NULL, NULL, NULL, NULL, '[]', 'https://github.com/kubesphere-sigs/ks-releaser-operator', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (185, 'Argo CD Operator (Helm)', 426, NULL, NULL, 677, NULL, NULL, NULL, NULL, '["''quay.io/disposab1e/argocd-operator-helm''"]', 'https://github.com/disposab1e/argocd-operator-helm.git', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (186, 'Multicluster Subscription Operator', 426, NULL, NULL, 677, NULL, NULL, NULL, NULL, '["''quay.io/open-cluster-management/multicluster-operators-subscription:2.3.0''"]', 'https://github.com/open-cluster-management/multicloud-operators-subscription', ''); -INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository, Other_Operators) VALUES (187, 'Weave GitOps Terraform Controller', 426, NULL, NULL, 677, NULL, NULL, NULL, NULL, '[]', '', ''); +INSERT INTO operator_images VALUES(1,'Apache Spark Operator',426,331,NULL,280,NULL,NULL,NULL,NULL,'quay.io/radanalyticsio/spark-operator:1.0.2','https://github.com/radanalyticsio/spark-operator'); +INSERT INTO operator_images VALUES(2,'Banzai Cloud Kafka Operator',426,323,NULL,9,NULL,NULL,NULL,NULL,'banzaicloud/kafka-operator:0.3.1','https://github.com/banzaicloud/kafka-operator/tree/master'); +INSERT INTO operator_images VALUES(3,'Camel K Operator',426,323,NULL,378,NULL,NULL,NULL,NULL,'docker.io/apache/camel-k:1.3.0','https://github.com/apache/camel-k'); +INSERT INTO operator_images VALUES(4,'GrdsCloud MySQL for Kubernetes',426,NULL,NULL,122,NULL,NULL,NULL,NULL,'grds/mysql-operator:1.0.0','https://github.com/GrdsCloud'); +INSERT INTO operator_images VALUES(5,'Hive for Red Hat OpenShift',426,323,NULL,8,NULL,NULL,NULL,NULL,'quay.io/openshift-hive/hive:v1.0.17','https://github.com/openshift/hive'); +INSERT INTO operator_images VALUES(6,'IBM Spectrum Scale CSI Plugin Operator',426,323,NULL,74,NULL,NULL,NULL,NULL,'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0','https://github.com/IBM/ibm-spectrum-scale-csi/'); +INSERT INTO operator_images VALUES(7,'Jenkins Operator',426,323,NULL,90,NULL,NULL,NULL,NULL,'virtuslab/jenkins-operator:v0.3.0','https://github.com/jenkinsci/kubernetes-operator'); +INSERT INTO operator_images VALUES(8,'Postgresql Operator',426,NULL,NULL,157,NULL,NULL,NULL,NULL,'quay.io/deekshah86/postgresql-operator','https://github.com/janepelladinesh/postgresql-operator'); +INSERT INTO operator_images VALUES(9,'Redis Operator',426,323,NULL,168,NULL,NULL,NULL,NULL,'quay.io/opstree/redis-operator:v0.3.0','https://github.com/ot-container-kit/redis-operator'); +INSERT INTO operator_images VALUES(10,'WildFly',426,323,NULL,493,NULL,NULL,NULL,NULL,'quay.io/wildfly/wildfly-operator:0.3.0','https://github.com/wildfly/wildfly-operator'); +INSERT INTO operator_images VALUES(11,'MongoDB Enterprise Operator',426,NULL,NULL,116,NULL,NULL,NULL,NULL,'quay.io/mongodb/mongodb-enterprise-operator:1.12.0','https://github.com/mongodb/mongodb-enterprise-kubernetes'); +INSERT INTO operator_images VALUES(12,'Apache Spark Operator',426,NULL,NULL,280,NULL,NULL,NULL,NULL,'quay.io/radanalyticsio/spark-operator:1.0.2','https://github.com/radanalyticsio/spark-operator'); +INSERT INTO operator_images VALUES(13,'Banzai Cloud Kafka Operator',426,NULL,NULL,9,NULL,NULL,NULL,NULL,'banzaicloud/kafka-operator:0.3.1','https://github.com/banzaicloud/kafka-operator/tree/master'); +INSERT INTO operator_images VALUES(14,'Camel K Operator',426,NULL,NULL,378,NULL,NULL,NULL,NULL,'docker.io/apache/camel-k:1.3.0','https://github.com/apache/camel-k'); +INSERT INTO operator_images VALUES(15,'GrdsCloud MySQL for Kubernetes',426,NULL,NULL,122,NULL,NULL,NULL,NULL,'grds/mysql-operator:1.0.0','https://github.com/GrdsCloud'); +INSERT INTO operator_images VALUES(16,'Hive for Red Hat OpenShift',426,NULL,NULL,8,NULL,NULL,NULL,NULL,'quay.io/openshift-hive/hive:v1.0.17','https://github.com/openshift/hive'); +INSERT INTO operator_images VALUES(17,'IBM Spectrum Scale CSI Plugin Operator',426,NULL,NULL,74,NULL,NULL,NULL,NULL,'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0','https://github.com/IBM/ibm-spectrum-scale-csi/'); +INSERT INTO operator_images VALUES(18,'Jenkins Operator',426,NULL,NULL,90,NULL,NULL,NULL,NULL,'virtuslab/jenkins-operator:v0.3.0','https://github.com/jenkinsci/kubernetes-operator'); +INSERT INTO operator_images VALUES(19,'Postgresql Operator',426,NULL,NULL,157,NULL,NULL,NULL,NULL,'quay.io/deekshah86/postgresql-operator','https://github.com/janepelladinesh/postgresql-operator'); +INSERT INTO operator_images VALUES(20,'Redis Operator',426,NULL,NULL,168,NULL,NULL,NULL,NULL,'quay.io/opstree/redis-operator:v0.3.0','https://github.com/ot-container-kit/redis-operator'); +INSERT INTO operator_images VALUES(21,'WildFly',426,NULL,NULL,493,NULL,NULL,NULL,NULL,'quay.io/wildfly/wildfly-operator:0.3.0','https://github.com/wildfly/wildfly-operator'); +INSERT INTO operator_images VALUES(22,'MongoDB Enterprise Operator',426,NULL,NULL,116,NULL,NULL,NULL,NULL,'quay.io/mongodb/mongodb-enterprise-operator:1.12.0','https://github.com/mongodb/mongodb-enterprise-kubernetes'); +INSERT INTO operator_images VALUES(23,'Instana Agent Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,611,'instana/instana-agent-operator:0.3.7','https://github.com/instana/instana-agent-operator'); +INSERT INTO operator_images VALUES(24,'credstash-operator',426,NULL,NULL,612,NULL,NULL,NULL,NULL,'quay.io/ouzi/credstash-operator:v1.13.0','https://github.com/ouzi-dev/credstash-operator'); +INSERT INTO operator_images VALUES(25,'Snyk Operator',426,NULL,NULL,613,NULL,NULL,NULL,NULL,'docker.io/snyk/kubernetes-operator:1.59.3','https://github.com/snyk/kubernetes-monitor'); +INSERT INTO operator_images VALUES(26,'Akka Cluster Operator',426,NULL,NULL,614,NULL,NULL,NULL,NULL,'lightbend-docker-registry.bintray.io/lightbend/akkacluster-operator:v1.0.0','https://github.com/lightbend/akka-cluster-operator'); +INSERT INTO operator_images VALUES(27,'Varnish Operator',426,NULL,NULL,NULL,615,NULL,NULL,NULL,'ibmcom/varnish-operator:0.27.2','https://github.com/IBM/varnish-operator'); +INSERT INTO operator_images VALUES(28,'Datadog Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,616,'datadog/operator:0.3.0','https://github.com/DataDog/datadog-operator'); +INSERT INTO operator_images VALUES(29,'Hazelcast Enterprise Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,618,'hazelcast/hazelcast-enterprise-operator:0.3.7','https://github.com/hazelcast/hazelcast-operator'); +INSERT INTO operator_images VALUES(30,'infinispan',426,NULL,NULL,619,NULL,NULL,NULL,NULL,'docker.io/jboss/infinispan-operator:0.3.0','https://github.com/infinispan/infinispan-operator'); +INSERT INTO operator_images VALUES(31,'Nuxeo Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,620,'docker.io/appzygy/nuxeo-operator:0.7.1','https://github.com/aceeric/nuxeo-operator'); +INSERT INTO operator_images VALUES(32,'ArangoDB',426,NULL,NULL,621,NULL,NULL,NULL,NULL,'arangodb/kube-arangodb:1.0.2','https://github.com/arangodb/kube-arangodb'); +INSERT INTO operator_images VALUES(33,'Eclipse Che',426,NULL,NULL,622,NULL,NULL,NULL,NULL,'quay.io/eclipse/che-operator@sha256:ea3641202e11ad00bd639b59809b6f4a6508f2c143d260b1683a9f36d74ed54f','https://github.com/eclipse-che/che-operator'); +INSERT INTO operator_images VALUES(34,'AWS S3 Operator',426,NULL,NULL,623,NULL,NULL,NULL,NULL,'quay.io/screeley44/aws-s3-provisioner:v1.0.0','https://github.com/yard-turkey/aws-s3-provisioner'); +INSERT INTO operator_images VALUES(35,'Altinity ClickHouse Operator',426,NULL,NULL,624,NULL,NULL,NULL,NULL,'altinity/clickhouse-operator:0.9.9','https://github.com/altinity/clickhouse-operator'); +INSERT INTO operator_images VALUES(36,'MinIO Operator',426,NULL,NULL,625,NULL,NULL,NULL,NULL,'minio/k8s-operator:1.0.3','https://github.com/minio/minio-operator'); +INSERT INTO operator_images VALUES(37,'Elastic Cloud on Kubernetes',426,NULL,NULL,626,NULL,NULL,NULL,NULL,'docker.elastic.co/eck/eck-operator:1.0.0-beta1','https://github.com/elastic/cloud-on-k8s'); +INSERT INTO operator_images VALUES(38,'Percona XtraDB Cluster Operator',426,NULL,NULL,627,NULL,NULL,NULL,NULL,'percona/percona-xtradb-cluster-operator:1.7.0','https://github.com/percona/percona-xtradb-cluster-operator'); +INSERT INTO operator_images VALUES(39,'Keycloak Operator',426,NULL,NULL,628,NULL,NULL,NULL,NULL,'quay.io/keycloak/keycloak-operator:9.0.2','https://github.com/keycloak/keycloak-operator'); +INSERT INTO operator_images VALUES(40,'Grafana Operator',426,NULL,NULL,629,NULL,NULL,NULL,NULL,'quay.io/integreatly/grafana-operator:v3.10.1','https://github.com/integr8ly/grafana-operator'); +INSERT INTO operator_images VALUES(41,'Mattermost Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,630,'docker.io/mattermost/mattermost-operator:v0.5.0','https://github.com/mattermost/mattermost-operator'); +INSERT INTO operator_images VALUES(42,'synapse-helm',426,NULL,NULL,631,NULL,NULL,NULL,NULL,'quay.io/mgoerens/synapse-helm:v0.0.11','https://github.com/opdev/synapse-helm'); +INSERT INTO operator_images VALUES(43,'IBM Cloud IAM Operator',426,NULL,NULL,632,NULL,NULL,NULL,NULL,'cloudoperators/ibmcloud-iam-operator:0.1.0','https://github.com/IBM/ibmcloud-iam-operator'); +INSERT INTO operator_images VALUES(44,'Knative Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,633,'gcr.io/knative-releases/knative.dev/operator/cmd/operator:v0.20.0','https://github.com/knative/operator'); +INSERT INTO operator_images VALUES(45,'Cassandra',426,NULL,NULL,634,NULL,NULL,NULL,NULL,'gcr.io/cassandra-operator/cassandra-operator:v2.0.0','https://github.com/instaclustr/cassandra-operator'); +INSERT INTO operator_images VALUES(46,'Kubeflow',426,NULL,NULL,NULL,NULL,NULL,NULL,635,'aipipeline/kubeflow-operator:v1.0.0','https://github.com/kubeflow/kfctl'); +INSERT INTO operator_images VALUES(47,'Openshift Qiskit Operator',426,NULL,NULL,636,NULL,NULL,NULL,NULL,'https://hub.docker.com/repository/docker/singhp11/openshift-qiskit-operator','https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/openshift-qiskit-operator'); +INSERT INTO operator_images VALUES(48,'Azure Service Operator',426,NULL,NULL,637,NULL,NULL,NULL,NULL,'mcr.microsoft.com/k8s/azureserviceoperator:1.0.27207','https://github.com/Azure/azure-service-operator'); +INSERT INTO operator_images VALUES(49,'Strimzi',426,NULL,NULL,NULL,NULL,NULL,NULL,638,'docker.io/strimzi/operator@sha256:62218aee7553b31db1f65bc30b3c6b6595c2fd631b2e1792e24e554a47080aa6','https://github.com/strimzi/strimzi-kafka-operator'); +INSERT INTO operator_images VALUES(50,'Sematext Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,639,'docker.io/sematext/sematext-operator:1.0.33','https://github.com/sematext/sematext-operator'); +INSERT INTO operator_images VALUES(51,'Eclipse Hawkbit',426,NULL,NULL,640,NULL,NULL,NULL,NULL,'docker.io/ctron/hawkbit-operator:0.1.4','https://github.com/ctron/hawkbit-operator'); +INSERT INTO operator_images VALUES(52,'Eclipse Ditto',426,NULL,NULL,641,NULL,NULL,NULL,NULL,'docker.io/ctron/ditto-operator:0.1.0','https://github.com/ctron/ditto-operator'); +INSERT INTO operator_images VALUES(53,'Mariadb Operator',426,NULL,NULL,642,NULL,NULL,NULL,NULL,'quay.io/manojdhanorkar/mariadb-operator:v0.0.1','https://github.com/abalki001/mariadb-operator'); +INSERT INTO operator_images VALUES(54,'Zadara Operator',426,NULL,NULL,643,NULL,NULL,NULL,NULL,'zadara/zoperator:0.3.6','https://github.com/zadarastorage/zadara-operator'); +INSERT INTO operator_images VALUES(55,'Istio',426,NULL,NULL,644,NULL,NULL,NULL,NULL,'banzaicloud/istio-operator:0.1.6','https://github.com/banzaicloud/istio-operator/tree/release-1.1'); +INSERT INTO operator_images VALUES(56,'Vault Helm',426,NULL,NULL,645,NULL,NULL,NULL,NULL,'quay.io/brejohns/vault-helm:0.0.1','https://github.com/SDBrett/vault-helm'); +INSERT INTO operator_images VALUES(57,'druid-operator',426,NULL,NULL,646,NULL,NULL,NULL,NULL,'druidio/druid-operator:0.0.6','https://github.com/druid-io/druid-operator'); +INSERT INTO operator_images VALUES(58,'etcd',426,NULL,NULL,647,NULL,NULL,NULL,NULL,'quay.io/coreos/etcd-operator@sha256:66a37fd61a06a43969854ee6d3e21087a98b93838e284a6086b13917f96b0d9b','https://github.com/coreos/etcd-operator'); +INSERT INTO operator_images VALUES(59,'Traefikee Operator',426,NULL,NULL,NULL,648,NULL,NULL,NULL,'containous/traefikee-operator:v0.3.0','https://github.com/containous/traefikee-operator'); +INSERT INTO operator_images VALUES(60,'IBM Cloud Operator',426,NULL,NULL,649,NULL,NULL,NULL,NULL,'cloudoperators/ibmcloud-operator:0.1.10','https://github.com/IBM/cloud-operators'); +INSERT INTO operator_images VALUES(61,'Yugabyte Operator',426,NULL,NULL,650,NULL,NULL,NULL,NULL,'quay.io/yugabyte/yugabytedb-operator','https://github.com/yugabyte/yugabyte-operator'); +INSERT INTO operator_images VALUES(62,'CockroachDB',426,NULL,NULL,651,NULL,NULL,NULL,NULL,'quay.io/helmoperators/cockroachdb:v3.0.7','https://github.com/dmesser/cockroachdb-operator'); +INSERT INTO operator_images VALUES(63,'Community Jaeger Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,652,'docker.io/jaegertracing/jaeger-operator:1.11.1','https://github.com/jaegertracing/jaeger-operator'); COMMIT TRANSACTION; PRAGMA foreign_keys = on; diff --git a/kg_utils/search_utils/__init__.py b/kg_utils/search_utils/__init__.py new file mode 100644 index 0000000..e69de29 From 700af5524a91ab9994427e973190daf01f0e8fec Mon Sep 17 00:00:00 2001 From: lamwassi Date: Tue, 19 Jul 2022 12:10:38 -0400 Subject: [PATCH 17/30] Removed 'Other operator' column operator_images table --- kg_utils/kg_utils.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/kg_utils/kg_utils.py b/kg_utils/kg_utils.py index 0a25288..7a83bf8 100644 --- a/kg_utils/kg_utils.py +++ b/kg_utils/kg_utils.py @@ -989,7 +989,7 @@ def create_operator_image_kg(db_connect): operator_image_kg["Container Images"] = {} for image in operator_cursor.fetchall(): - container_name, os_entity_id, lang_id, lib_id, app_id, app_server_id, plugin_id, runlib_id, runtime_id, operator_URL, operator_repository, other_operators = image[ + container_name, os_entity_id, lang_id, lib_id, app_id, app_server_id, plugin_id, runlib_id, runtime_id, operator_URL, operator_repository = image[ 1:] operator_image_kg["Container Images"][container_name] = {} @@ -1041,8 +1041,7 @@ def create_operator_image_kg(db_connect): operator_image_kg["Container Images"][container_name]["Docker_URL"] = operator_URL operator_image_kg["Container Images"][container_name]["OperatorRepository"] = operator_repository - operator_image_kg["Container Images"][container_name]["OtherOperators"] = other_operators - + save_json(operator_image_kg, "operatorimageKG") @@ -1067,7 +1066,7 @@ def create_inverted_operator_image_kg(database_connect): cur.execute("SELECT * FROM operator_images") for img in cur.fetchall(): - _, os_id, lan_id, libr_id, appl_id, appl_server_id, plug_id, runlibr_id, runtim_id, _, _, _ = img[1:] + _, os_id, lan_id, libr_id, appl_id, appl_server_id, plug_id, runlibr_id, runtim_id, _, _ = img[1:] if os_id == None: pass @@ -1110,7 +1109,7 @@ def create_inverted_operator_image_kg(database_connect): inverted_operator_images_kg[entities[str(runtim_id)]] = [] for image in inverted_cur.fetchall(): - _, container_name, os_entity_id, lang_id, lib_id, app_id, app_server_id, plugin_id, runlib_id, runtime_id, _, _, _ = image[ + _, container_name, os_entity_id, lang_id, lib_id, app_id, app_server_id, plugin_id, runlib_id, runtime_id, _, _ = image[ :] if os_entity_id == None: From 0e9f3452cd563baf07a42baeed3a7671fa1bcaac Mon Sep 17 00:00:00 2001 From: lamwassi Date: Tue, 19 Jul 2022 12:14:28 -0400 Subject: [PATCH 18/30] added comments --- kg_utils/search_images.py | 85 ++++++++++++++------------ kg_utils/search_utils/load_entities.py | 6 +- 2 files changed, 50 insertions(+), 41 deletions(-) diff --git a/kg_utils/search_images.py b/kg_utils/search_images.py index c600fff..128034a 100644 --- a/kg_utils/search_images.py +++ b/kg_utils/search_images.py @@ -16,28 +16,27 @@ import sys -#from tkinter import image_names -sys.path.append("/app") - -import argparse -from audioop import tomono -from encodings import search_function -from search_utils import load_entities , dockerhub_api , utils , save_to_csv -import json +sys.path.append("./kg_utils") import requests import json import itertools import operator import logging -import re import os import docker import configparser -import time +import argparse +import json + +from dotenv import load_dotenv +from search_utils import load_entities , dockerhub_api , utils , save_to_csv + +#load environment variable +load_dotenv() #config file config = configparser.ConfigParser() -config_data = os.path.join("/app/config/kg.ini") +config_data = os.path.join("config/kg.ini") config.read([config_data]) #loggger @@ -51,25 +50,26 @@ #load list of verified and official publishers -with open("image_search_kg/verified_publisher_names.json", "r", encoding="utf-8") as verified_file: +with open("kg_utils/image_search_kg/verified_publisher_names.json", "r", encoding="utf-8") as verified_file: verified_publishers = json.load(verified_file) class Operators(): def __init__(self): - self.api = "https://artifacthub.io/api/v1/" + self.api = "https://artifacthub.io/api/v1/" self.package_query = "packages/search?org=operator-framework&repo=community-operators&ts_query_web=&limit=60&offset=" def remove_tags(self, image_link:str)-> str: - """_summary_ + """ + Remove tags(@) from image_link. Args: - image_link (str): _description_ + image_link (str): URL link Returns: - str: _description_ + str: URL without tags """ if '@' in image_link: img_link = image_link.split('@')[0] @@ -87,6 +87,7 @@ def community_op_images_repos(self, operator_name: str) -> list: Returns: (lst): A list containing all matching operators """ + container_images = [] request_session = requests.session() search_query = self.api + "packages/olm/community-operators/" + operator_name @@ -95,6 +96,7 @@ def community_op_images_repos(self, operator_name: str) -> list: try: image_urls = json.loads(response_.text)["containers_images"] + for imgs in image_urls: if "quay.io" in imgs['image'] or "docker.io" in imgs['image'] or 'registry.hub.docker' in imgs['image']: @@ -102,7 +104,8 @@ def community_op_images_repos(self, operator_name: str) -> list: container_images.append(img_link) except KeyError: - print("No container images registry found") + print(" '{}' is not a key. So container images registry found for {} ".format("containers_images", operator_name)) + return container_images @@ -110,8 +113,10 @@ def community_op_images_repos(self, operator_name: str) -> list: def community_op_git_repos(self, operator_name: str): """ + Search git repositories for an operator. Args: + operator_name (str): entity name Returns: @@ -130,21 +135,27 @@ def community_op_git_repos(self, operator_name: str): for link_data in links: for _ , val in link_data.items(): - if val == "source" or val == "GitHub": + + if val == "source" or val == "GitHub" or val == "Documentation": operator_repository = link_data["url"] + except KeyError: - print("No source urls found") + + print("No git , source , or Documentation url links found.") + + return operator_repository def community_operators(self, entity: str): """ - summary_line: Search community operators from https://artifacthub.io/packages/olm/community-operators/ + Search community operators from https://artifacthub.io/packages/olm/community-operators/ Keyword arguments: entity (str) -- An entity name from from the database Return: list of all matching operators + """ @@ -231,8 +242,6 @@ def exact_image(self, results:list , entity_name:str)->list: image["name"] = img["name"] image["url"] = "https://quay.io"+img['href'] image["popularity"] = img["popularity"] - - exact.append(image) return exact @@ -465,7 +474,7 @@ def top_images(self, entity_name: str, verified_official_images: list): def get_os_architectures(self, images: list ) -> list: """" - sumary_line: Using docker_api_utils, retrieve os arch for each image + Using docker_api_utils, retrieve os arch for each image. Keyword arguments: images(list) -- list of images from Dockerhub @@ -527,7 +536,7 @@ def get_os_architectures(self, images: list ) -> list: def recommend_exact_image(self,entity_name:str , verified_and_official_images:list): """ - Searches for exact Dockerhub images + Searches for exact Dockerhub images. Args: entity_name (str): _description_ @@ -595,6 +604,7 @@ def search_dockerhub_images(self, entity: str) -> tuple: except: + print("ImageNotFound error occurred, check your entry and try again.") if images == []: @@ -615,7 +625,7 @@ def save_to_kb(results: list) -> None: results (dict): dictionary containing search results from Dockerhub , Quay , and Operatorhub.io """ - with open("/app/kg_utils/image_search_kg/images.json", "w" , encoding="utf-8") as images_file: + with open("kg_utils/image_search_kg/images.json", "w" , encoding="utf-8") as images_file: images_file.write(json.dumps(results, indent=2)) @@ -730,7 +740,7 @@ def get_entities(): entity_names= args.entity.split(",") entities , suggest_entities = load_entities.from_database( entity_names = entity_names) - print(entities) + else: print('Try $python -e -db or type $python src/search_images.py --help') @@ -740,9 +750,9 @@ def get_entities(): print("No entity names found for {}. Enter a valid entity from the database.\n".format(args.entity)) - if len(suggest_entities) != 0 and len(entities) == 0: + if len(suggest_entities) != 0: - print("Did you mean the following entity(ies) \n") + print("Some entities from {} could not be found. Did you mean the following entity(ies) \n".format( args.entity.split(','))) for ent in suggest_entities: print("{} \n".format(ent)) @@ -754,19 +764,18 @@ def get_entities(): if __name__ == "__main__": + + entities = get_entities() - # entities = get_entities() - # docker_api =dockerhub_api.DockerHub(username=os.environ.get("DOCKERHUB_USERNAME", None) , password=os.environ.get("DOCKERHUB_PASSWORD", None)) - # docker_ = DockerHubSearch() - # quay = Quay() - # operator_ = Operators() - - # results = search(entities) + docker_api =dockerhub_api.DockerHub(username=os.environ.get("DOCKERHUB_USERNAME", None) , password=os.environ.get("DOCKERHUB_PASSWORD", None)) + + docker_ = DockerHubSearch() + quay = Quay() + operator_ = Operators() - # save_to_kb(results) + results = search(entities) + save_to_kb(results) save_to_csv.docker_images() - save_to_csv.operator_images() - save_to_csv.openshift_images() diff --git a/kg_utils/search_utils/load_entities.py b/kg_utils/search_utils/load_entities.py index 4aea06e..0204881 100644 --- a/kg_utils/search_utils/load_entities.py +++ b/kg_utils/search_utils/load_entities.py @@ -29,7 +29,7 @@ #config file config = configparser.ConfigParser() -config_data = os.path.join("/app/config/kg.ini") +config_data = os.path.join("config/kg.ini") config.read([config_data]) @@ -118,8 +118,7 @@ def from_database( entity_names = None, table_name="entities"): db_path = config["database"]["database_path"] connection = create_db_connection(db_path) - - print(connection) + entities = [] suggest_entities = [] cursor = connection.cursor() @@ -142,6 +141,7 @@ def from_database( entity_names = None, table_name="entities"): entities.append( (entity_name.strip(),entity[2] , entity[0]) ) elif name.lower() in entity[1].lower(): + print(entity[1]) suggest_entities.append(entity[1]) else: continue From 2d4029e6a04cad5238632927d772b8a9ed3cadf0 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Tue, 19 Jul 2022 12:15:52 -0400 Subject: [PATCH 19/30] latest --- kg_utils/search_utils/save_to_csv.py | 55 ++++++++++++++++------------ 1 file changed, 31 insertions(+), 24 deletions(-) diff --git a/kg_utils/search_utils/save_to_csv.py b/kg_utils/search_utils/save_to_csv.py index efc53c0..9c64465 100644 --- a/kg_utils/search_utils/save_to_csv.py +++ b/kg_utils/search_utils/save_to_csv.py @@ -19,6 +19,8 @@ import json import csv + + def search_results(): """ load results @@ -27,7 +29,7 @@ def search_results(): None: Json file containing search results """ - with open("/app/kg_utils/image_search_kg/images.json", "r" , encoding="utf-8") as images: + with open("kg_utils/image_search_kg/images.json", "r" , encoding="utf-8") as images: images_ = json.load(images) return images_ @@ -35,7 +37,7 @@ def search_results(): def entity_type_mapper( entity_type: int , entity_id : str)-> dict: """ - Maps entity_types to an interger ranging from 1 to 12 + Maps entity_types to an integer ranging from 1 to 12 Args: entity_type (int): entity_type id @@ -65,32 +67,33 @@ def write_to_csv(data:dict, file_name:str): """ - with open("/app/kg_utils/image_search_kg/{}.csv".format(file_name) , "w" , encoding="utf-8") as op_csv: + with open("kg_utils/image_search_kg/{}.csv".format(file_name) , "w" , encoding="utf-8") as op_csv: if data == []: print("No {} found".format(file_name)) return columns = list(data[0].keys()) + writer = csv.DictWriter(op_csv, fieldnames=columns) writer.writeheader() if file_name == "operator_images": for row in data: - - + writer.writerow({"operator_images":row["operator_images"],'container_name': row["container_name"], 'OS': row["OS"] \ , "lang":row["lang"], "lib": row["lib"] , "app": row["app"] \ ,"app_server": row["app_server"] , "plugin":row["plugin"] , \ "runlib": row["runlib"] , "runtime": row["runtime"] , \ - "Operator_Correspondant_Image_Url": row["Operator_Correspondant_Image_Url"] ,\ + "Operator_Correspondent_Image_Url": row["Operator_Correspondent_Image_Url"] ,\ "Operator_Repository" : row["Operator_Repository"] }) - + if file_name == "docker_images": for row in data: + writer.writerow({"docker_images":row["docker_images"],'container_name': row["container_name"], 'OS': row["OS"] \ , "lang":row["lang"], "lib": row["lib"] , "app": row["app"] \ ,"app_server": row["app_server"] , "plugin":row["plugin"] , \ @@ -115,12 +118,12 @@ def write_to_csv(data:dict, file_name:str): }) -def get_exact_images(all_images:dict , catalogue ="operators", index = 2): +def get_exact_images(all_images: dict , catalogue ="operators", index = 2): """ - Gather exact image names found during the search proceedure. + Gather exact image names found during the search procedure. Args: - all_images (dict): A large dictionary containg all serach results + all_images (dict): A large dictionary containing all search results catalogue (str, optional): Catalog's name("operator" , "dockerhub_exact_images" ,or "quay_exact_images" ) . Defaults to "operators". index (int, optional): _description_. Defaults to 2. @@ -145,15 +148,15 @@ def get_exact_images(all_images:dict , catalogue ="operators", index = 2): return images -def csv_columns( table_name = "operator_images"): +def csv_columns( table_name:str ): """ Build the columns headers for the csv files. Args: - table_name (str, optional):The name of the table from the database. Defaults to "operator_images". + table_name (str, optional):The name of the table from the database. Returns: - dict: A fomated headers for the csv. + dict: csv header. """ columns = { table_name: "", "container_name":"", "OS": 426, "lang" : None, "lib": None, "app": None, "app_server": None,"plugin": None,"runlib": None,"runtime": None } @@ -162,15 +165,17 @@ def csv_columns( table_name = "operator_images"): openshift_col_extension = {"Openshift_Correspondent_Image_Url":"", "DockerImageType": ""} - operator_col_extension ={"Operator_Correspondant_Image_Url":[],"Operator_Repository": ""} + operator_col_extension ={"Operator_Correspondent_Image_Url":[],"Operator_Repository": ""} if table_name == "openshift_images": columns.update(openshift_col_extension) elif table_name == "docker_images": columns.update(docker_col_extension) - else: + elif table_name == "operator_images": columns.update(operator_col_extension) + else: + print("Wrong table's name. Enter one of the following table's names: docker_images, operator_images,operator_images ") return columns @@ -199,6 +204,7 @@ def operator_images(): row_data = [] cols = csv_columns(table_name="operator_images") images_ = search_results() + op_images = get_exact_images(images_ , catalogue="operators") if op_images == None: @@ -214,13 +220,14 @@ def operator_images(): op_data["operator_images"] = "operator_images" op_data["container_name"] = operator["display_name"] - op_data["Operator_Correspondant_Image_Url"]= operator_images_urls(operator["container_images"]) - - op_data["Operator_Repository"] = operator["git_repos"] img_data_type = entity_type_mapper(op["type"] , str(op["entity_id"])) - op_data.update(img_data_type) - row_data.append(op_data) + if list(img_data_type.keys())[0] in list(op_data.keys()): + op_data.update(img_data_type) + row_data.append(op_data) + op_data["Operator_Correspondent_Image_Url"]= operator_images_urls(operator["container_images"]) + op_data["Operator_Repository"] = operator["git_repos"] + write_to_csv(row_data ,file_name="operator_images") @@ -257,6 +264,7 @@ def docker_images() -> None: if val[0]["Verified Publisher"]: img_data["CertOfImageAndPublisher"] = "Verified Publisher" + img_data_type = entity_type_mapper(exact_images["type"] , str(exact_images["entity_id"])) img_data.update(img_data_type) row_data.append(img_data) @@ -291,12 +299,11 @@ def openshift_images(): img_data["Openshift_Correspondent_Image_Url"] = val[0]["url"] img_data_type = entity_type_mapper(exact_images["type"] , str(exact_images["entity_id"])) - if list(img_data_type.keys())[0].title() =='Os': img_data["DockerImageType"] ='OS' else: img_data["DockerImageType"] = list(img_data_type.keys())[0].title() - - img_data.update(img_data_type) - row_data.append(img_data) + if list(img_data_type.keys())[0] in list(img_data.keys()): + img_data.update(img_data_type) + row_data.append(img_data) write_to_csv(row_data , "openshift_images") From 56814e359c48422d7e8a0ceb256e7f576240f23c Mon Sep 17 00:00:00 2001 From: lamwassi Date: Tue, 19 Jul 2022 12:18:25 -0400 Subject: [PATCH 20/30] Added test_csv_columns , test_filter_entity --- test/unit/test_search_image.py | 66 ++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 test/unit/test_search_image.py diff --git a/test/unit/test_search_image.py b/test/unit/test_search_image.py new file mode 100644 index 0000000..d66b673 --- /dev/null +++ b/test/unit/test_search_image.py @@ -0,0 +1,66 @@ +import unittest + +from kg_utils.search_images import Quay , DockerHubSearch ,Operators +from kg_utils.search_utils.save_to_csv import csv_columns +from kg_utils.search_utils.load_entities import filter_entity + + +class test_search(unittest.TestCase): + + def setUp(self) -> None: + + self.operator = Operators() + self.quay = Quay() + self.docker = DockerHubSearch() + + + def tearDown(self) -> None: + + self.operator = None + self.quay = None + self.docker = None + + + def test_search_operator(self): + + entity = "DB2" + self.assertIsInstance(entity , str) + + + def test_search_dockerhub_images(self): + + entity = "DB2" + self.assertIsInstance(entity , str) + + def test_search_images(self): + entity = "DB2" + self.assertIsInstance(entity , str) + + + def test_csv_columns(self): + + table_name = "operator_images" + + cols = csv_columns(table_name) + + expected = {'operator_images': '', 'container_name': '', 'OS': 426, 'lang': None, 'lib': None, 'app': None, 'app_server': None, 'plugin': None, 'runlib': None, 'runtime': None, 'Operator_Correspondent_Image_Url': [], 'Operator_Repository': ''} + + self.assertEqual(cols , expected) + + + def test_filter_entity(self): + + entity = "Linux(ABC)" + expected = "Linux" + fil_entity = filter_entity(entity) + self.assertEqual(fil_entity , expected) + + + + + + + + + + \ No newline at end of file From c41ce8f8f0f2b98ae1b60e397dbfb71d201ffea8 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Tue, 19 Jul 2022 16:42:00 -0400 Subject: [PATCH 21/30] latest search. Removed 'Other operator' from operator_images.csv --- kg_utils/image_search_kg/images.json | 9606 ++++++++--------- kg_utils/image_search_kg/openshift_images.csv | 10 +- kg_utils/image_search_kg/operator_images.csv | 123 +- 3 files changed, 4403 insertions(+), 5336 deletions(-) diff --git a/kg_utils/image_search_kg/images.json b/kg_utils/image_search_kg/images.json index 3038a24..f9b014a 100644 --- a/kg_utils/image_search_kg/images.json +++ b/kg_utils/image_search_kg/images.json @@ -65,27 +65,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-management-ingress-operator", "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 111760.0 + "popularity": 156321.0 }, { - "name": "ibm-commonui-operator", - "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", - "popularity": 117024.0 + "name": "operator-generic", + "url": "https://quay.io/repository/cilium/operator-generic", + "popularity": 163268.0 } ] }, @@ -125,12 +125,12 @@ { "name": "giant-chatops-slack-reader", "url": "https://quay.io/repository/giantswarm/giant-chatops-slack-reader", - "popularity": 10.0 + "popularity": 20.0 }, { "name": "mig-log-reader", "url": "https://quay.io/repository/konveyor/mig-log-reader", - "popularity": 102.0 + "popularity": 99.0 }, { "name": "perl-fastx-reader", @@ -240,44 +240,44 @@ { "name": "ansible", "url": "https://quay.io/repository/cloudctl/ansible", - "popularity": 589.0 + "popularity": 968.0 }, { "name": "ansible", "url": "https://quay.io/repository/containercraft/ansible", - "popularity": 5.0 + "popularity": 0.0 }, { "name": "ansible", "url": "https://quay.io/repository/osbuild/ansible", - "popularity": 735.0 + "popularity": 723.0 } ], "quay_top_images": [ { "name": "ansible-operator", "url": "https://quay.io/repository/operator-framework/ansible-operator", - "popularity": 20473.0 - }, - { - "name": "origin-ansible", - "url": "https://quay.io/repository/openshift/origin-ansible", - "popularity": 11569.0 + "popularity": 20208.0 }, { "name": "ansible-runner", "url": "https://quay.io/repository/ansible/ansible-runner", - "popularity": 11749.0 + "popularity": 19109.0 }, { - "name": "ansible-core-test-container", - "url": "https://quay.io/repository/ansible/ansible-core-test-container", - "popularity": 8601.0 + "name": "origin-ansible", + "url": "https://quay.io/repository/openshift/origin-ansible", + "popularity": 12114.0 }, { "name": "gitlab-ansible-runner", "url": "https://quay.io/repository/sheogorath/gitlab-ansible-runner", - "popularity": 20160.0 + "popularity": 20164.0 + }, + { + "name": "runner-ansible", + "url": "https://quay.io/repository/startx/runner-ansible", + "popularity": 8187.0 } ] }, @@ -298,7 +298,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 81, + "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ { @@ -399,27 +399,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 826844.0 + "popularity": 883725.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412398.0 + "popularity": 403203.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 } ] }, @@ -440,7 +440,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 81, + "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ { @@ -505,27 +505,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 826844.0 + "popularity": 883725.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412398.0 + "popularity": 403203.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 } ] }, @@ -546,7 +546,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 81, + "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ { @@ -611,27 +611,27 @@ { "name": "hive", "url": "https://quay.io/repository/openshift-hive/hive", - "popularity": 108677.0 + "popularity": 112933.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 + }, + { + "name": "hive", + "url": "https://quay.io/repository/app-sre/hive", + "popularity": 51401.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 826844.0 + "popularity": 883725.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412398.0 - }, - { - "name": "httpd-24-centos7", - "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 403203.0 } ] }, @@ -652,7 +652,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 81, + "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ { @@ -670,7 +670,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 503, + "star_count": 510, "Docker_Url": "https://hub.docker.com/r/bitnami/kafka", "OS": [ { @@ -683,12 +683,30 @@ } ] }, + { + "name": "ibmcom/kafka", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/kafka", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, { "name": "ubuntu/kafka", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 6, + "star_count": 7, "Docker_Url": "https://hub.docker.com/r/ubuntu/kafka", "OS": [ { @@ -725,24 +743,6 @@ } ] }, - { - "name": "ibmcom/kafka", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 5, - "Docker_Url": "https://hub.docker.com/r/ibmcom/kafka", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, { "name": "bitnami/apache-exporter", "Official image": false, @@ -769,27 +769,27 @@ { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 826844.0 + "popularity": 883725.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412398.0 + "popularity": 403203.0 } ] }, @@ -858,7 +858,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 81, + "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ { @@ -923,27 +923,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 826844.0 + "popularity": 883725.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412398.0 + "popularity": 403203.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 } ] }, @@ -982,7 +982,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 913, + "star_count": 916, "Docker_Url": "https://hub.docker.com/_/solr", "OS": [ { @@ -1032,7 +1032,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 81, + "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ { @@ -1097,27 +1097,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 826844.0 + "popularity": 883725.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412398.0 + "popularity": 403203.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 } ] }, @@ -1138,7 +1138,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 81, + "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ { @@ -1203,27 +1203,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 826844.0 + "popularity": 883725.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412398.0 + "popularity": 403203.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 } ] }, @@ -1246,27 +1246,27 @@ { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 159557.0 + "popularity": 163268.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183418.0 + "popularity": 183645.0 }, { "name": "hubble-relay", "url": "https://quay.io/repository/cilium/hubble-relay", - "popularity": 135390.0 + "popularity": 118685.0 } ] }, @@ -1293,7 +1293,7 @@ { "name": "asterisk", "url": "https://quay.io/repository/jorti/asterisk", - "popularity": 23.0 + "popularity": 14.0 }, { "name": "asterisk", @@ -1325,12 +1325,12 @@ { "name": "docker-asterisk-freepbx", "url": "https://quay.io/repository/shaposhnikov/docker-asterisk-freepbx", - "popularity": 1.0 + "popularity": 0.0 }, { "name": "asterisk", "url": "https://quay.io/repository/jorti/asterisk", - "popularity": 23.0 + "popularity": 14.0 } ] }, @@ -1408,27 +1408,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "k8s-job-cleaner", "url": "https://quay.io/repository/dtan4/k8s-job-cleaner", - "popularity": 84111.0 + "popularity": 83785.0 }, { "name": "event-scheduler", "url": "https://quay.io/repository/grworth_analytics/event-scheduler", - "popularity": 10440.0 + "popularity": 10344.0 }, { "name": "origin-cluster-kube-scheduler-operator", "url": "https://quay.io/repository/openshift/origin-cluster-kube-scheduler-operator", - "popularity": 4172.0 + "popularity": 3696.0 }, { "name": "multicluster-scheduler-scheduler", "url": "https://quay.io/repository/admiralty/multicluster-scheduler-scheduler", - "popularity": 4874.0 + "popularity": 4900.0 } ] }, @@ -1490,22 +1490,22 @@ { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 335511.0 + "popularity": 380580.0 }, { "name": "origin-control-plane", "url": "https://quay.io/repository/openshift/origin-control-plane", - "popularity": 2606.0 + "popularity": 2300.0 }, { - "name": "bmc-reverse-proxy", - "url": "https://quay.io/repository/cybozu/bmc-reverse-proxy", - "popularity": 1580.0 + "name": "druid-exporter", + "url": "https://quay.io/repository/opstree/druid-exporter", + "popularity": 562.0 }, { "name": "fastqc", "url": "https://quay.io/repository/biocontainers/fastqc", - "popularity": 11779.0 + "popularity": 24023.0 } ] }, @@ -1615,27 +1615,27 @@ { "name": "icp-identity-manager", "url": "https://quay.io/repository/opencloudio/icp-identity-manager", - "popularity": 234348.0 + "popularity": 229899.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 255406.0 + "popularity": 254930.0 }, { "name": "node-disk-manager-amd64", "url": "https://quay.io/repository/openebs/node-disk-manager-amd64", - "popularity": 159434.0 + "popularity": 171233.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 189232.0 + "popularity": 193426.0 } ] }, @@ -1656,7 +1656,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 46, + "star_count": 48, "Docker_Url": "https://hub.docker.com/r/ibmcom/informix-developer-database", "OS": [ { @@ -1695,27 +1695,27 @@ { "name": "mongodb-enterprise-database", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", - "popularity": 118389.0 + "popularity": 101454.0 }, { "name": "engine", "url": "https://quay.io/repository/codefresh/engine", - "popularity": 334883.0 + "popularity": 67070.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 255406.0 + "popularity": 254930.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 241707.0 + "popularity": 245318.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 189232.0 + "popularity": 193426.0 } ] }, @@ -1738,27 +1738,27 @@ { "name": "ocp-release", "url": "https://quay.io/repository/openshift-release-dev/ocp-release", - "popularity": 39354632.0 + "popularity": 41511623.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "thanos", "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2534311.0 + "popularity": 2526636.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -1781,27 +1781,27 @@ { "name": "vault-next-gen", "url": "https://quay.io/repository/codefreshplugins/vault-next-gen", - "popularity": 28875.0 + "popularity": 28859.0 }, { "name": "doc-gen-container", "url": "https://quay.io/repository/spearow/doc-gen-container", - "popularity": 4831.0 + "popularity": 10692.0 }, { "name": "origin-crd-schema-gen", "url": "https://quay.io/repository/openshift/origin-crd-schema-gen", - "popularity": 3199.0 + "popularity": 2856.0 }, { "name": "thrift-gen", "url": "https://quay.io/repository/m3db/thrift-gen", - "popularity": 290.0 + "popularity": 772.0 }, { "name": "drone-gen-tags", "url": "https://quay.io/repository/natlibfi/drone-gen-tags", - "popularity": 133.0 + "popularity": 132.0 } ] }, @@ -1911,22 +1911,22 @@ { "name": "fmeserver-engine", "url": "https://quay.io/repository/safesoftware/fmeserver-engine", - "popularity": 155.0 + "popularity": 129.0 }, { "name": "fmeserver-core", "url": "https://quay.io/repository/safesoftware/fmeserver-core", - "popularity": 64.0 + "popularity": 65.0 }, { "name": "fmeserver-queue", "url": "https://quay.io/repository/safesoftware/fmeserver-queue", - "popularity": 57.0 + "popularity": 54.0 }, { "name": "fmeserver-web", "url": "https://quay.io/repository/safesoftware/fmeserver-web", - "popularity": 57.0 + "popularity": 58.0 }, { "name": "git-batch", @@ -1954,27 +1954,27 @@ { "name": "machines-endpoints", "url": "https://quay.io/repository/cybozu/machines-endpoints", - "popularity": 3500.0 + "popularity": 1520.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8725.0 + "popularity": 8041.0 }, { "name": "gluster-recycler", "url": "https://quay.io/repository/appuio/gluster-recycler", - "popularity": 2691.0 + "popularity": 1799.0 }, { - "name": "sentinel-snapshot", - "url": "https://quay.io/repository/gatblau/sentinel-snapshot", - "popularity": 668.0 + "name": "books", + "url": "https://quay.io/repository/redhattraining/books", + "popularity": 696.0 } ] }, @@ -1994,30 +1994,30 @@ { "quay_exact_images": [], "quay_top_images": [ + { + "name": "ibm-management-ingress-operator", + "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", + "popularity": 156321.0 + }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 255406.0 + "popularity": 254930.0 }, { "name": "node-disk-manager-amd64", "url": "https://quay.io/repository/openebs/node-disk-manager-amd64", - "popularity": 159434.0 + "popularity": 171233.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 189232.0 - }, - { - "name": "postgresql-13-centos7", - "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 140143.0 + "popularity": 193426.0 } ] }, @@ -2040,27 +2040,27 @@ { "name": "ocp-release", "url": "https://quay.io/repository/openshift-release-dev/ocp-release", - "popularity": 39354632.0 + "popularity": 41511623.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "thanos", "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2534311.0 + "popularity": 2526636.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -2102,27 +2102,27 @@ { "name": "citrix-k8s-ingress-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", - "popularity": 137872.0 + "popularity": 138781.0 }, { "name": "citrix-k8s-node-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", - "popularity": 41494.0 + "popularity": 39371.0 }, { "name": "citrix-adc-metrics-exporter", "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", - "popularity": 39011.0 + "popularity": 39329.0 }, { "name": "citrix-observability-exporter", "url": "https://quay.io/repository/citrix/citrix-observability-exporter", - "popularity": 1975.0 + "popularity": 2000.0 }, { "name": "citrix-k8s-cpx-ingress", "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", - "popularity": 460.0 + "popularity": 391.0 } ] }, @@ -2164,27 +2164,27 @@ { "name": "citrix-k8s-ingress-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", - "popularity": 137872.0 + "popularity": 138781.0 }, { "name": "citrix-k8s-node-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", - "popularity": 41494.0 + "popularity": 39371.0 }, { "name": "citrix-adc-metrics-exporter", "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", - "popularity": 39011.0 + "popularity": 39329.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 74259.0 + "popularity": 148414.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 70825.0 + "popularity": 102256.0 } ] }, @@ -2235,7 +2235,7 @@ { "name": "baobab-lims", "url": "https://quay.io/repository/baobab-lims/baobab-lims", - "popularity": 39.0 + "popularity": 29.0 }, { "name": "lims-backend", @@ -2278,7 +2278,7 @@ { "name": "baobab-lims", "url": "https://quay.io/repository/baobab-lims/baobab-lims", - "popularity": 39.0 + "popularity": 29.0 }, { "name": "lims-backend", @@ -2440,29 +2440,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "my-kafka-connect", - "url": "https://quay.io/repository/pminkows/my-kafka-connect", - "popularity": 21792.0 + "name": "direct-csi", + "url": "https://quay.io/repository/minio/direct-csi", + "popularity": 22477.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183418.0 + "popularity": 183645.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52903.0 + "popularity": 52832.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 } ] }, @@ -2504,27 +2504,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { - "name": "operator-generic", - "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 159557.0 + "name": "ibm-management-ingress-operator", + "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", + "popularity": 156321.0 }, { - "name": "hubble-relay", - "url": "https://quay.io/repository/cilium/hubble-relay", - "popularity": 135390.0 + "name": "operator-generic", + "url": "https://quay.io/repository/cilium/operator-generic", + "popularity": 163268.0 } ] }, @@ -2547,27 +2547,27 @@ { "name": "teleport", "url": "https://quay.io/repository/gravitational/teleport", - "popularity": 157544.0 + "popularity": 145184.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 38116.0 + "popularity": 36573.0 }, { "name": "teleport-ent", "url": "https://quay.io/repository/gravitational/teleport-ent", - "popularity": 38658.0 + "popularity": 25900.0 }, { "name": "multiqc", "url": "https://quay.io/repository/biocontainers/multiqc", - "popularity": 9969.0 + "popularity": 30213.0 }, { "name": "dep-scan", "url": "https://quay.io/repository/appthreat/dep-scan", - "popularity": 606.0 + "popularity": 368.0 } ] }, @@ -2713,7 +2713,7 @@ { "name": "db2", "url": "https://quay.io/repository/quarkusqeteam/db2", - "popularity": 263.0 + "popularity": 195.0 }, { "name": "db2", @@ -2740,27 +2740,27 @@ { "name": "db2", "url": "https://quay.io/repository/quarkusqeteam/db2", - "popularity": 263.0 + "popularity": 195.0 }, { "name": "db2", "url": "https://quay.io/repository/pjgg/db2", "popularity": 52.0 }, - { - "name": "elm-db2", - "url": "https://quay.io/repository/dominik_jergus/elm-db2", - "popularity": 37.0 - }, { "name": "ibm-db2-sfg", "url": "https://quay.io/repository/hollisc/ibm-db2-sfg", - "popularity": 15.0 + "popularity": 9.0 }, { - "name": "db2-pem", - "url": "https://quay.io/repository/vbudi/db2-pem", - "popularity": 16.0 + "name": "elm-db2", + "url": "https://quay.io/repository/dominik_jergus/elm-db2", + "popularity": 6.0 + }, + { + "name": "db2", + "url": "https://quay.io/repository/rhoar_qe/db2", + "popularity": 3.0 } ] }, @@ -2820,27 +2820,27 @@ { "name": "okd-content", "url": "https://quay.io/repository/openshift/okd-content", - "popularity": 9422045.0 + "popularity": 9313637.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -2860,7 +2860,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 930, + "star_count": 932, "Docker_Url": "https://hub.docker.com/_/drupal", "OS": [ { @@ -2964,7 +2964,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 930, + "star_count": 932, "Docker_Url": "https://hub.docker.com/_/drupal", "OS": [ { @@ -3049,12 +3049,12 @@ "quay_exact_images": [ { "name": "drupal", - "url": "https://quay.io/repository/swsmirror/drupal", - "popularity": 1.0 + "url": "https://quay.io/repository/official-images/drupal", + "popularity": 0.0 }, { "name": "drupal", - "url": "https://quay.io/repository/official-images/drupal", + "url": "https://quay.io/repository/swsmirror/drupal", "popularity": 0.0 }, { @@ -3070,7 +3070,7 @@ { "name": "drupal", "url": "https://quay.io/repository/dperez_mulet/drupal", - "popularity": 4.0 + "popularity": 0.0 }, { "name": "drupal", @@ -3081,12 +3081,12 @@ "quay_top_images": [ { "name": "drupal", - "url": "https://quay.io/repository/swsmirror/drupal", - "popularity": 1.0 + "url": "https://quay.io/repository/official-images/drupal", + "popularity": 0.0 }, { "name": "drupal", - "url": "https://quay.io/repository/official-images/drupal", + "url": "https://quay.io/repository/swsmirror/drupal", "popularity": 0.0 }, { @@ -3100,9 +3100,9 @@ "popularity": 0.0 }, { - "name": "drupal", - "url": "https://quay.io/repository/dperez_mulet/drupal", - "popularity": 4.0 + "name": "fuzzy-alpine-nginx-drupal", + "url": "https://quay.io/repository/wunder/fuzzy-alpine-nginx-drupal", + "popularity": 0.0 } ] }, @@ -3125,137 +3125,32 @@ { "name": "che-plugin-artifacts-broker", "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", - "popularity": 20225.0 + "popularity": 19550.0 }, { "name": "che-operator", "url": "https://quay.io/repository/eclipse/che-operator", - "popularity": 36094.0 + "popularity": 34982.0 }, { "name": "che-plugin-sidecar", "url": "https://quay.io/repository/eclipse/che-plugin-sidecar", - "popularity": 15476.0 + "popularity": 21159.0 }, { "name": "che-java11-maven", "url": "https://quay.io/repository/eclipse/che-java11-maven", - "popularity": 19772.0 + "popularity": 25543.0 }, { - "name": "che-machine-exec", - "url": "https://quay.io/repository/eclipse/che-machine-exec", - "popularity": 9244.0 + "name": "che-plugin-registry", + "url": "https://quay.io/repository/eclipse/che-plugin-registry", + "popularity": 14280.0 } ] }, { "operators": [ - { - "package_id": "57488c09-4b44-4ba8-aeed-2c141cf0b30e", - "name": "eclipse-che", - "normalized_name": "eclipse-che", - "logo_image_id": "f2ea20a6-ebd1-42f6-b7e7-b9dd0f36bd22", - "stars": 3, - "display_name": "Eclipse Che", - "description": "A Kube-native development solution that delivers portable and collaborative developer workspaces.", - "version": "7.39.2", - "deprecated": false, - "signed": false, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1637755976, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/eclipse-che/che-operator", - "container_images": [ - "quay.io/eclipse/che-operator", - "quay.io/che-incubator/configbump", - "quay.io/che-incubator/header-rewrite-proxy", - "quay.io/devfile/devworkspace-controller", - "quay.io/eclipse/che--centos--postgresql-13-centos7", - "quay.io/eclipse/che--centos--postgresql-96-centos7", - "quay.io/eclipse/che--traefik", - "quay.io/eclipse/che-backup-server-rest", - "quay.io/eclipse/che-dashboard", - "quay.io/eclipse/che-devfile-registry", - "quay.io/eclipse/che-jwtproxy", - "quay.io/eclipse/che-keycloak", - "quay.io/eclipse/che-plugin-artifacts-broker", - "quay.io/eclipse/che-plugin-metadata-broker", - "quay.io/eclipse/che-plugin-registry", - "quay.io/eclipse/che-server", - "quay.io/eclipse/che-tls-secret-creator", - "quay.io/openshift/origin-kube-rbac-proxy", - "quay.io/openshift/origin-oauth-proxy", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/windupeng/mta-vscode-extension", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-theia", - "quay.io/eclipse/che-machine-exec", - "quay.io/eclipse/che-theia-endpoint-runtime-binary", - "index.docker.io/ksmster/che-editor-jupyter", - "index.docker.io/dirigiblelabs/dirigible-openshift", - "quay.io/che-incubator/che-idea", - "quay.io/che-incubator/che-pycharm", - "index.docker.io/wsskeleton/eclipse-broadway", - "index.docker.io/codercom/code-server", - "quay.io/eclipse/che-buildah-base", - "quay.io/eclipse/che-sidecar-workspace-data-sync", - "quay.io/eclipse/che-buildkit-base", - "quay.io/eclipse/che--centos--mongodb-36-centos7", - "quay.io/eclipse/che--centos--mongodb-36-centos7", - "quay.io/eclipse/che--centos--mysql-57-centos7", - "quay.io/eclipse/che-cpp-rhel7", - "quay.io/eclipse/che-dotnet-2.2", - "quay.io/eclipse/che-dotnet-3.1", - "quay.io/eclipse/che-golang-1.17", - "quay.io/eclipse/che-java11-gradle", - "quay.io/eclipse/che-java11-maven", - "quay.io/eclipse/che-java8-maven", - "quay.io/eclipse/che-nodejs10-community", - "quay.io/eclipse/che-nodejs10-ubi", - "quay.io/eclipse/che-nodejs12-community", - "quay.io/eclipse/che-nodejs8-centos", - "quay.io/eclipse/che-php-7", - "quay.io/eclipse/che-python-3.8", - "quay.io/eclipse/che-quarkus", - "quay.io/eclipse/che-rust-1.39" - ] - }, { "package_id": "0cad4b47-9ae4-4912-934f-4972a4d3d183", "name": "ditto-operator", @@ -3387,18 +3282,13 @@ "name": "elastic", "url": "https://quay.io/repository/yacis/elastic", "popularity": 0.0 - }, - { - "name": "elastic", - "url": "https://quay.io/repository/akretion/elastic", - "popularity": 0.0 } ], "quay_top_images": [ { "name": "elastic-cloud-eck", "url": "https://quay.io/repository/operatorhubio/elastic-cloud-eck", - "popularity": 1630.0 + "popularity": 1036.0 }, { "name": "elastic-curator", @@ -3408,17 +3298,17 @@ { "name": "ibm-elastic-stack-operator", "url": "https://quay.io/repository/opencloudio/ibm-elastic-stack-operator", - "popularity": 38.0 + "popularity": 40.0 }, { "name": "elastic-phenix-operator", "url": "https://quay.io/repository/operatorhubio/elastic-phenix-operator", - "popularity": 44.0 + "popularity": 36.0 }, { "name": "assisted-events-scrape", "url": "https://quay.io/repository/app-sre/assisted-events-scrape", - "popularity": 2443.0 + "popularity": 2622.0 } ] }, @@ -3795,27 +3685,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 92535501.0 + "popularity": 96679165.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 88998175.0 + "popularity": 92762600.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 89089055.0 + "popularity": 92854581.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1306060.0 + "popularity": 1343874.0 } ] }, @@ -3916,27 +3806,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "haproxy-ingress", "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", - "popularity": 929588.0 + "popularity": 909887.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 353617.0 + "popularity": 421059.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 } ] }, @@ -3959,27 +3849,27 @@ { "name": "deployhub-pro", "url": "https://quay.io/repository/deployhub/deployhub-pro", - "popularity": 0.0 + "popularity": 2.0 }, { "name": "msisensor-pro", "url": "https://quay.io/repository/biocontainers/msisensor-pro", - "popularity": 92.0 - }, - { - "name": "rust", - "url": "https://quay.io/repository/instrumentisto/rust", - "popularity": 2946.0 + "popularity": 439.0 }, { "name": "artifactory-pro", "url": "https://quay.io/repository/jfrog/artifactory-pro", - "popularity": 92.0 + "popularity": 98.0 + }, + { + "name": "rust", + "url": "https://quay.io/repository/instrumentisto/rust", + "popularity": 2318.0 }, { "name": "ambassador_pro", "url": "https://quay.io/repository/datawire/ambassador_pro", - "popularity": 100.0 + "popularity": 115.0 } ] }, @@ -4097,27 +3987,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 92535501.0 + "popularity": 96679165.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 88998175.0 + "popularity": 92762600.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 89089055.0 + "popularity": 92854581.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 858875.0 + "popularity": 920253.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1306060.0 + "popularity": 1343874.0 } ] }, @@ -4140,27 +4030,27 @@ { "name": "exonerate", "url": "https://quay.io/repository/biocontainers/exonerate", - "popularity": 2120.0 + "popularity": 3234.0 }, { "name": "apache-ftp", "url": "https://quay.io/repository/fuse_qe/apache-ftp", - "popularity": 65.0 - }, - { - "name": "alpine-ftp-server-tls", - "url": "https://quay.io/repository/aminvakil/alpine-ftp-server-tls", - "popularity": 60.0 + "popularity": 93.0 }, { "name": "blast", "url": "https://quay.io/repository/biocontainers/blast", - "popularity": 938.0 + "popularity": 1674.0 }, { "name": "hisat2", "url": "https://quay.io/repository/biocontainers/hisat2", - "popularity": 143.0 + "popularity": 116.0 + }, + { + "name": "gromacs", + "url": "https://quay.io/repository/biocontainers/gromacs", + "popularity": 82.0 } ] }, @@ -4210,7 +4100,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 42, + "star_count": 43, "Docker_Url": "https://hub.docker.com/r/kasmweb/chrome", "OS": [ { @@ -4249,27 +4139,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "chrome", "url": "https://quay.io/repository/browsers/chrome", - "popularity": 57214.0 + "popularity": 53303.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 38116.0 + "popularity": 36573.0 } ] }, @@ -4309,13 +4199,13 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "greenplum-for-kubernetes", - "url": "https://quay.io/repository/ktenzer/greenplum-for-kubernetes", + "name": "greenplum-operator", + "url": "https://quay.io/repository/ktenzer/greenplum-operator", "popularity": 0.0 }, { - "name": "greenplum-operator", - "url": "https://quay.io/repository/ktenzer/greenplum-operator", + "name": "greenplum-for-kubernetes", + "url": "https://quay.io/repository/ktenzer/greenplum-for-kubernetes", "popularity": 0.0 }, { @@ -4383,7 +4273,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 9, + "star_count": 10, "Docker_Url": "https://hub.docker.com/r/rancher/hadoop-base", "OS": [ { @@ -4413,16 +4303,16 @@ { "name": "hadoop", "url": "https://quay.io/repository/coreos/hadoop", - "popularity": 2.0 + "popularity": 0.0 }, { "name": "hadoop", - "url": "https://quay.io/repository/flysangel/hadoop", - "popularity": 201.0 + "url": "https://quay.io/repository/falkonry/hadoop", + "popularity": 0.0 }, { "name": "hadoop", - "url": "https://quay.io/repository/falkonry/hadoop", + "url": "https://quay.io/repository/flysangel/hadoop", "popularity": 0.0 }, { @@ -4450,27 +4340,27 @@ { "name": "origin-metering-hadoop", "url": "https://quay.io/repository/openshift/origin-metering-hadoop", - "popularity": 4172.0 + "popularity": 3696.0 + }, + { + "name": "metering-hadoop", + "url": "https://quay.io/repository/coreos/metering-hadoop", + "popularity": 53.0 }, { "name": "hadoop-test", "url": "https://quay.io/repository/signalfx/hadoop-test", - "popularity": 234.0 + "popularity": 302.0 }, { "name": "hadoop-namenode", "url": "https://quay.io/repository/falkonry/hadoop-namenode", - "popularity": 108.0 + "popularity": 216.0 }, { "name": "hadoop-datanode", "url": "https://quay.io/repository/falkonry/hadoop-datanode", - "popularity": 52.0 - }, - { - "name": "hadoop", - "url": "https://quay.io/repository/flysangel/hadoop", - "popularity": 201.0 + "popularity": 101.0 } ] }, @@ -4500,20 +4390,20 @@ "url": "https://quay.io/repository/draft/tensorflow-cross-compiler", "popularity": 0.0 }, - { - "name": "compiler", - "url": "https://quay.io/repository/serulian/compiler", - "popularity": 0.0 - }, { "name": "rust-esp", "url": "https://quay.io/repository/ctron/rust-esp", - "popularity": 6.0 + "popularity": 3.0 + }, + { + "name": "ohpc-gnu9", + "url": "https://quay.io/repository/ohpc/ohpc-gnu9", + "popularity": 5.0 }, { "name": "pdftk", "url": "https://quay.io/repository/pdftk/pdftk", - "popularity": 25.0 + "popularity": 14.0 } ] }, @@ -4541,22 +4431,22 @@ { "name": "ansi-sdk", "url": "https://quay.io/repository/theloeki/ansi-sdk", - "popularity": 1.0 + "popularity": 2.0 }, { "name": "ansi-builder", "url": "https://quay.io/repository/exd_infra_plts_cip/ansi-builder", "popularity": 2.0 }, - { - "name": "tensorflow-cross-compiler", - "url": "https://quay.io/repository/draft/tensorflow-cross-compiler", - "popularity": 0.0 - }, { "name": "rust-esp", "url": "https://quay.io/repository/ctron/rust-esp", - "popularity": 6.0 + "popularity": 3.0 + }, + { + "name": "ohpc-gnu9", + "url": "https://quay.io/repository/ohpc/ohpc-gnu9", + "popularity": 5.0 } ] }, @@ -4616,27 +4506,27 @@ { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 159557.0 + "popularity": 163268.0 }, { "name": "hubble-relay", "url": "https://quay.io/repository/cilium/hubble-relay", - "popularity": 135390.0 + "popularity": 118685.0 }, { "name": "operator", "url": "https://quay.io/repository/cilium/operator", - "popularity": 77983.0 + "popularity": 93329.0 }, { - "name": "operator-aws", - "url": "https://quay.io/repository/cilium/operator-aws", - "popularity": 30335.0 + "name": "admission-server", + "url": "https://quay.io/repository/openebs/admission-server", + "popularity": 24346.0 } ] }, @@ -4732,27 +4622,27 @@ { "name": "ocp-release", "url": "https://quay.io/repository/openshift-release-dev/ocp-release", - "popularity": 39354632.0 + "popularity": 41511623.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -4862,27 +4752,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -4992,27 +4882,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -5062,27 +4952,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 92535501.0 + "popularity": 96679165.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 88998175.0 + "popularity": 92762600.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 89089055.0 + "popularity": 92854581.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 858875.0 + "popularity": 920253.0 }, { "name": "cert-manager-ctl", "url": "https://quay.io/repository/jetstack/cert-manager-ctl", - "popularity": 637570.0 + "popularity": 652852.0 } ] }, @@ -5132,27 +5022,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 92535501.0 + "popularity": 96679165.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 88998175.0 + "popularity": 92762600.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 89089055.0 + "popularity": 92854581.0 }, { "name": "okd-content", "url": "https://quay.io/repository/openshift/okd-content", - "popularity": 9422045.0 + "popularity": 9313637.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 858875.0 + "popularity": 920253.0 } ] }, @@ -5262,27 +5152,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -5392,27 +5282,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -5522,27 +5412,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -5652,27 +5542,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { - "name": "ibm-events-operator", - "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 403014.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 } ] }, @@ -5782,27 +5672,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -5912,27 +5802,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { - "name": "ibm-common-service-catalog", - "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "name": "utility", + "url": "https://quay.io/repository/theiagen/utility", + "popularity": 233739.0 } ] }, @@ -6042,27 +5932,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -6130,27 +6020,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 92535501.0 + "popularity": 96679165.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 88998175.0 + "popularity": 92762600.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 89089055.0 + "popularity": 92854581.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 858875.0 + "popularity": 920253.0 }, { "name": "cert-manager-ctl", "url": "https://quay.io/repository/jetstack/cert-manager-ctl", - "popularity": 637570.0 + "popularity": 652852.0 } ] }, @@ -6173,27 +6063,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -6342,27 +6232,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -6412,27 +6302,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 92535501.0 + "popularity": 96679165.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 88998175.0 + "popularity": 92762600.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 89089055.0 + "popularity": 92854581.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 858875.0 + "popularity": 920253.0 }, { "name": "cert-manager-ctl", "url": "https://quay.io/repository/jetstack/cert-manager-ctl", - "popularity": 637570.0 + "popularity": 652852.0 } ] }, @@ -6542,27 +6432,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 } ] }, @@ -6612,27 +6502,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 92535501.0 + "popularity": 96679165.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 88998175.0 + "popularity": 92762600.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 89089055.0 + "popularity": 92854581.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 858875.0 + "popularity": 920253.0 }, { "name": "cert-manager-ctl", "url": "https://quay.io/repository/jetstack/cert-manager-ctl", - "popularity": 637570.0 + "popularity": 652852.0 } ] }, @@ -6674,27 +6564,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "workload-agent", "url": "https://quay.io/repository/sysdig/workload-agent", - "popularity": 242641.0 + "popularity": 260677.0 } ] }, @@ -6783,7 +6673,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 203, + "star_count": 204, "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-traditional", "OS": [ { @@ -6838,27 +6728,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -6952,27 +6842,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -6993,7 +6883,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 10, + "star_count": 12, "Docker_Url": "https://hub.docker.com/r/docker/telemetry", "OS": [ { @@ -7066,27 +6956,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -7103,12 +6993,12 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "ibmcom/websphere-liberty", - "Official image": false, - "Verified Publisher": true, + "name": "websphere-liberty", + "Official image": true, + "Verified Publisher": false, "Description": "", - "star_count": 22, - "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", + "star_count": 286, + "Docker_Url": "https://hub.docker.com/_/websphere-liberty", "OS": [ { "Class": "OS", @@ -7120,7 +7010,7 @@ }, { "Class": "OS", - "Architecture": "s390x", + "Architecture": "ppc64le", "Variants": null, "Versions": null, "Type": "linux", @@ -7128,7 +7018,7 @@ }, { "Class": "OS", - "Architecture": "ppc64le", + "Architecture": "s390x", "Variants": null, "Versions": null, "Type": "linux", @@ -7137,12 +7027,12 @@ ] }, { - "name": "websphere-liberty", - "Official image": true, - "Verified Publisher": false, + "name": "ibmcom/websphere-liberty", + "Official image": false, + "Verified Publisher": true, "Description": "", - "star_count": 286, - "Docker_Url": "https://hub.docker.com/_/websphere-liberty", + "star_count": 22, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", "OS": [ { "Class": "OS", @@ -7154,7 +7044,7 @@ }, { "Class": "OS", - "Architecture": "ppc64le", + "Architecture": "s390x", "Variants": null, "Versions": null, "Type": "linux", @@ -7162,7 +7052,7 @@ }, { "Class": "OS", - "Architecture": "s390x", + "Architecture": "ppc64le", "Variants": null, "Versions": null, "Type": "linux", @@ -7178,27 +7068,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -7273,27 +7163,27 @@ { "name": "argo-hub-workflows-codefresh-csdp-versions-0.0.6-images-image-enricher-git-info", "url": "https://quay.io/repository/codefreshplugins/argo-hub-workflows-codefresh-csdp-versions-0.0.6-images-image-enricher-git-info", - "popularity": 92575.0 + "popularity": 92681.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 159557.0 + "popularity": 163268.0 }, { "name": "hubble-relay", "url": "https://quay.io/repository/cilium/hubble-relay", - "popularity": 135390.0 + "popularity": 118685.0 }, { "name": "operator", "url": "https://quay.io/repository/cilium/operator", - "popularity": 77983.0 + "popularity": 93329.0 } ] }, @@ -7316,27 +7206,27 @@ { "name": "community-e2e-images", "url": "https://quay.io/repository/openshift/community-e2e-images", - "popularity": 4658999.0 + "popularity": 4455599.0 }, { "name": "community-e2e-images", "url": "https://quay.io/repository/multi-arch/community-e2e-images", - "popularity": 250944.0 + "popularity": 207273.0 }, { - "name": "upstream-community-operators", - "url": "https://quay.io/repository/operator-framework/upstream-community-operators", - "popularity": 22909.0 + "name": "community-operator-index", + "url": "https://quay.io/repository/olmqe/community-operator-index", + "popularity": 24124.0 }, { "name": "teleport", "url": "https://quay.io/repository/gravitational/teleport", - "popularity": 157544.0 + "popularity": 145184.0 }, { "name": "hedgedoc", "url": "https://quay.io/repository/hedgedoc/hedgedoc", - "popularity": 90093.0 + "popularity": 97325.0 } ] }, @@ -7514,27 +7404,27 @@ { "name": "common-service-operator", "url": "https://quay.io/repository/opencloudio/common-service-operator", - "popularity": 317405.0 + "popularity": 284079.0 }, { "name": "service-catalog", "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", - "popularity": 330506.0 + "popularity": 330422.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -7554,7 +7444,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 5505, + "star_count": 5512, "Docker_Url": "https://hub.docker.com/_/jenkins", "OS": [ { @@ -7628,7 +7518,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 5505, + "star_count": 5512, "Docker_Url": "https://hub.docker.com/_/jenkins", "OS": [ { @@ -7658,6 +7548,24 @@ "Subtype": "" } ] + }, + { + "name": "rancher/jenkins-master", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/rancher/jenkins-master", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] } ] }, @@ -7666,49 +7574,49 @@ { "name": "jenkins", "url": "https://quay.io/repository/cdis/jenkins", - "popularity": 20978.0 + "popularity": 12007.0 }, { "name": "jenkins", - "url": "https://quay.io/repository/hany_mostafa/jenkins", - "popularity": 3884.0 + "url": "https://quay.io/repository/h3nrique/jenkins", + "popularity": 10068.0 }, { "name": "jenkins", - "url": "https://quay.io/repository/cloudifire/jenkins", - "popularity": 11.0 + "url": "https://quay.io/repository/hany_mostafa/jenkins", + "popularity": 3880.0 }, { "name": "jenkins", - "url": "https://quay.io/repository/h3nrique/jenkins", - "popularity": 10066.0 + "url": "https://quay.io/repository/cloudifire/jenkins", + "popularity": 8.0 } ], "quay_top_images": [ { "name": "origin-jenkins", "url": "https://quay.io/repository/openshift/origin-jenkins", - "popularity": 60692.0 + "popularity": 60337.0 }, { "name": "origin-jenkins-agent-base", "url": "https://quay.io/repository/openshift/origin-jenkins-agent-base", - "popularity": 22801.0 + "popularity": 22979.0 }, { "name": "jenkins", "url": "https://quay.io/repository/cdis/jenkins", - "popularity": 20978.0 + "popularity": 12007.0 }, { "name": "jenkins", "url": "https://quay.io/repository/h3nrique/jenkins", - "popularity": 10066.0 + "popularity": 10068.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183418.0 + "popularity": 183645.0 } ] }, @@ -7799,30 +7707,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "prison-case-notes-to-probation", - "url": "https://quay.io/repository/hmpps/prison-case-notes-to-probation", - "popularity": 28262.0 - }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52903.0 + "popularity": 52832.0 }, { "name": "netbox", "url": "https://quay.io/repository/netboxcommunity/netbox", - "popularity": 12769.0 + "popularity": 11302.0 }, { "name": "signalilo", "url": "https://quay.io/repository/vshn/signalilo", - "popularity": 1317.0 + "popularity": 1448.0 + }, + { + "name": "business-central-workbench-showcase", + "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", + "popularity": 637.0 }, { "name": "kie-server-showcase", "url": "https://quay.io/repository/kiegroup/kie-server-showcase", - "popularity": 661.0 + "popularity": 704.0 } ] }, @@ -7872,7 +7780,7 @@ { "name": "sandfly-server-mgmt", "url": "https://quay.io/repository/sandfly/sandfly-server-mgmt", - "popularity": 21.0 + "popularity": 16.0 }, { "name": "sandfly-server", @@ -7882,7 +7790,7 @@ { "name": "sandfly-node", "url": "https://quay.io/repository/sandfly/sandfly-node", - "popularity": 8.0 + "popularity": 12.0 } ] }, @@ -7905,27 +7813,27 @@ { "name": "contour-plus", "url": "https://quay.io/repository/cybozu/contour-plus", - "popularity": 4286.0 + "popularity": 1593.0 }, { "name": "prinseq-plus-plus", "url": "https://quay.io/repository/biocontainers/prinseq-plus-plus", - "popularity": 4.0 + "popularity": 18.0 }, { "name": "signalilo", "url": "https://quay.io/repository/vshn/signalilo", - "popularity": 1317.0 + "popularity": 1448.0 }, { "name": "dep-scan", "url": "https://quay.io/repository/appthreat/dep-scan", - "popularity": 606.0 + "popularity": 368.0 }, { "name": "circleci-helm", "url": "https://quay.io/repository/cmproductions/circleci-helm", - "popularity": 20.0 + "popularity": 24.0 } ] }, @@ -7981,7 +7889,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 1921, + "star_count": 1923, "Docker_Url": "https://hub.docker.com/_/memcached", "OS": [ { @@ -8177,7 +8085,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 1921, + "star_count": 1923, "Docker_Url": "https://hub.docker.com/_/memcached", "OS": [ { @@ -8289,59 +8197,59 @@ { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52903.0 + "popularity": 52832.0 }, { "name": "memcached", "url": "https://quay.io/repository/factory2/memcached", - "popularity": 9969.0 + "popularity": 10279.0 }, { "name": "memcached", "url": "https://quay.io/repository/exd-guild-distribution/memcached", - "popularity": 4201.0 + "popularity": 4198.0 }, { "name": "memcached", "url": "https://quay.io/repository/cybozu/memcached", - "popularity": 1773.0 + "popularity": 1557.0 }, { "name": "memcached", "url": "https://quay.io/repository/openstack.kolla/memcached", - "popularity": 1091.0 + "popularity": 1906.0 }, { "name": "memcached", "url": "https://quay.io/repository/redhat-aqe/memcached", - "popularity": 693.0 + "popularity": 677.0 } ], "quay_top_images": [ { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 65896.0 + "popularity": 82319.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52903.0 + "popularity": 52832.0 }, { "name": "memcached", "url": "https://quay.io/repository/factory2/memcached", - "popularity": 9969.0 + "popularity": 10279.0 }, { "name": "memcached", "url": "https://quay.io/repository/exd-guild-distribution/memcached", - "popularity": 4201.0 + "popularity": 4198.0 }, { "name": "memcached-operator", "url": "https://quay.io/repository/schamol/memcached-operator", - "popularity": 1967.0 + "popularity": 1969.0 } ] }, @@ -8451,12 +8359,12 @@ ] }, { - "name": "ibmcom/verify-access-dsc", + "name": "ibmcom/verify-access-wrp", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-dsc", + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-wrp", "OS": [ { "Class": "OS", @@ -8469,12 +8377,12 @@ ] }, { - "name": "ibmcom/verify-access-wrp", + "name": "ibmcom/verify-access-dsc", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-wrp", + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-dsc", "OS": [ { "Class": "OS", @@ -8491,30 +8399,30 @@ { "quay_exact_images": [], "quay_top_images": [ + { + "name": "access-logger", + "url": "https://quay.io/repository/solo-io/access-logger", + "popularity": 43378.0 + }, { "name": "ibm-commonui-operator", "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", - "popularity": 117024.0 + "popularity": 113315.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 65896.0 + "popularity": 82319.0 }, { "name": "prometheus-nginxlog-exporter", "url": "https://quay.io/repository/martinhelmich/prometheus-nginxlog-exporter", - "popularity": 63491.0 - }, - { - "name": "chart-testing", - "url": "https://quay.io/repository/helmpack/chart-testing", - "popularity": 37818.0 + "popularity": 48389.0 } ] }, @@ -8537,27 +8445,27 @@ { "name": "rapid-response-host-component", "url": "https://quay.io/repository/sysdig/rapid-response-host-component", - "popularity": 820286.0 + "popularity": 609628.0 }, { "name": "host-analyzer", "url": "https://quay.io/repository/sysdig/host-analyzer", - "popularity": 244302.0 + "popularity": 244492.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 335511.0 + "popularity": 380580.0 } ] }, @@ -8580,27 +8488,27 @@ { "name": "velero-plugin-for-microsoft-azure", "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", - "popularity": 4220.0 + "popularity": 3363.0 }, { "name": "microsoft-edge-stable", "url": "https://quay.io/repository/browser/microsoft-edge-stable", - "popularity": 669.0 + "popularity": 830.0 }, { "name": "che-dotnet-2.2", "url": "https://quay.io/repository/eclipse/che-dotnet-2.2", - "popularity": 561.0 + "popularity": 550.0 }, { "name": "che-dotnet-3.1", "url": "https://quay.io/repository/eclipse/che-dotnet-3.1", - "popularity": 552.0 + "popularity": 548.0 }, { - "name": "dotnet-sonar", - "url": "https://quay.io/repository/rockcentral/dotnet-sonar", - "popularity": 200.0 + "name": "gromacs", + "url": "https://quay.io/repository/biocontainers/gromacs", + "popularity": 82.0 } ] }, @@ -8650,27 +8558,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 92535501.0 + "popularity": 96679165.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 88998175.0 + "popularity": 92762600.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 89089055.0 + "popularity": 92854581.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 858875.0 + "popularity": 920253.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 } ] }, @@ -8693,27 +8601,27 @@ { "name": "velero-plugin-for-microsoft-azure", "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", - "popularity": 4220.0 + "popularity": 3363.0 }, { "name": "microsoft-edge-stable", "url": "https://quay.io/repository/browser/microsoft-edge-stable", - "popularity": 669.0 + "popularity": 830.0 }, { "name": "che-dotnet-2.2", "url": "https://quay.io/repository/eclipse/che-dotnet-2.2", - "popularity": 561.0 + "popularity": 550.0 }, { "name": "che-dotnet-3.1", "url": "https://quay.io/repository/eclipse/che-dotnet-3.1", - "popularity": 552.0 + "popularity": 548.0 }, { "name": "dotnet-sonar", "url": "https://quay.io/repository/rockcentral/dotnet-sonar", - "popularity": 200.0 + "popularity": 27.0 } ] }, @@ -8791,27 +8699,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -8931,27 +8839,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 92535501.0 + "popularity": 96679165.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 88998175.0 + "popularity": 92762600.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 89089055.0 + "popularity": 92854581.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 858875.0 + "popularity": 920253.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1306060.0 + "popularity": 1343874.0 } ] }, @@ -8974,27 +8882,27 @@ { "name": "velero-plugin-for-microsoft-azure", "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", - "popularity": 4220.0 + "popularity": 3363.0 }, { "name": "microsoft-edge-stable", "url": "https://quay.io/repository/browser/microsoft-edge-stable", - "popularity": 669.0 + "popularity": 830.0 }, { "name": "che-dotnet-2.2", "url": "https://quay.io/repository/eclipse/che-dotnet-2.2", - "popularity": 561.0 + "popularity": 550.0 }, { "name": "che-dotnet-3.1", "url": "https://quay.io/repository/eclipse/che-dotnet-3.1", - "popularity": 552.0 + "popularity": 548.0 }, { "name": "dotnet-sonar", "url": "https://quay.io/repository/rockcentral/dotnet-sonar", - "popularity": 200.0 + "popularity": 27.0 } ] }, @@ -9014,30 +8922,30 @@ { "quay_exact_images": [], "quay_top_images": [ + { + "name": "explorer-bff", + "url": "https://quay.io/repository/decentraland/explorer-bff", + "popularity": 251.0 + }, { "name": "velero-plugin-for-microsoft-azure", "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", - "popularity": 4220.0 + "popularity": 3363.0 }, { "name": "microsoft-edge-stable", "url": "https://quay.io/repository/browser/microsoft-edge-stable", - "popularity": 669.0 + "popularity": 830.0 }, { "name": "pso-explorer", "url": "https://quay.io/repository/purestorage/pso-explorer", - "popularity": 62.0 - }, - { - "name": "bitcoin-explorer", - "url": "https://quay.io/repository/hirosystems/bitcoin-explorer", - "popularity": 126.0 + "popularity": 477.0 }, { "name": "explorer", "url": "https://quay.io/repository/jkunstle/explorer", - "popularity": 555.0 + "popularity": 857.0 } ] }, @@ -9097,27 +9005,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -9211,27 +9119,27 @@ { "name": "velero-plugin-for-microsoft-azure", "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", - "popularity": 4220.0 + "popularity": 3363.0 }, { "name": "microsoft-edge-stable", "url": "https://quay.io/repository/browser/microsoft-edge-stable", - "popularity": 669.0 + "popularity": 830.0 }, { "name": "che-dotnet-2.2", "url": "https://quay.io/repository/eclipse/che-dotnet-2.2", - "popularity": 561.0 + "popularity": 550.0 }, { "name": "che-dotnet-3.1", "url": "https://quay.io/repository/eclipse/che-dotnet-3.1", - "popularity": 552.0 + "popularity": 548.0 }, { "name": "dotnet-sonar", "url": "https://quay.io/repository/rockcentral/dotnet-sonar", - "popularity": 200.0 + "popularity": 27.0 } ] }, @@ -9288,6 +9196,22 @@ "Versions": null, "Type": "linux", "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" } ] }, @@ -9327,7 +9251,7 @@ "OS": [ { "Class": "OS", - "Architecture": "s390x", + "Architecture": "amd64", "Variants": null, "Versions": null, "Type": "linux", @@ -9337,24 +9261,24 @@ "Class": "OS", "Architecture": "amd64", "Variants": null, - "Versions": null, - "Type": "linux", + "Versions": "10.0.17763.3165", + "Type": "windows", "Subtype": "" }, { "Class": "OS", "Architecture": "amd64", "Variants": null, - "Versions": "10.0.17763.3046", + "Versions": "10.0.20348.825", "Type": "windows", "Subtype": "" }, { "Class": "OS", - "Architecture": "amd64", + "Architecture": "s390x", "Variants": null, - "Versions": "10.0.20348.768", - "Type": "windows", + "Versions": null, + "Type": "linux", "Subtype": "" } ] @@ -9367,27 +9291,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 335511.0 + "popularity": 380580.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 255406.0 + "popularity": 254930.0 } ] }, @@ -9410,27 +9334,27 @@ { "name": "apicurio-studio-api", "url": "https://quay.io/repository/apicurio/apicurio-studio-api", - "popularity": 14648.0 + "popularity": 13688.0 }, { "name": "apicurio-studio-ui", "url": "https://quay.io/repository/apicurio/apicurio-studio-ui", - "popularity": 10780.0 + "popularity": 9386.0 }, { "name": "apicurio-studio-ws", "url": "https://quay.io/repository/apicurio/apicurio-studio-ws", - "popularity": 6975.0 + "popularity": 6633.0 }, { "name": "visual-qontract", "url": "https://quay.io/repository/app-sre/visual-qontract", - "popularity": 4012.0 + "popularity": 4089.0 }, { "name": "velero-plugin-for-microsoft-azure", "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", - "popularity": 4220.0 + "popularity": 3363.0 } ] }, @@ -9472,27 +9396,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 353182.0 + "popularity": 378922.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 - }, - { - "name": "light-k8s-deploy-tools", - "url": "https://quay.io/repository/presslabs/light-k8s-deploy-tools", - "popularity": 31998.0 + "popularity": 28649423.0 }, { "name": "windup-web-openshift", "url": "https://quay.io/repository/windupeng/windup-web-openshift", - "popularity": 17107.0 + "popularity": 47186.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 + }, + { + "name": "logio", + "url": "https://quay.io/repository/blacklabelops/logio", + "popularity": 221724.0 } ] }, @@ -9515,27 +9439,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 353182.0 + "popularity": 378922.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1306060.0 + "popularity": 1343874.0 }, { "name": "windup-web-openshift", "url": "https://quay.io/repository/windupeng/windup-web-openshift", - "popularity": 17107.0 + "popularity": 47186.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "nginx-116-centos7", "url": "https://quay.io/repository/centos7/nginx-116-centos7", - "popularity": 158502.0 + "popularity": 158256.0 } ] }, @@ -9558,27 +9482,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 353182.0 + "popularity": 378922.0 }, { "name": "icp-platform-auth", "url": "https://quay.io/repository/opencloudio/icp-platform-auth", - "popularity": 65621.0 - }, - { - "name": "ibm-platform-api-operator", - "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", - "popularity": 47566.0 + "popularity": 60267.0 }, { "name": "cni-installer", "url": "https://quay.io/repository/polargeospatialcenter/cni-installer", - "popularity": 150002.0 + "popularity": 149775.0 + }, + { + "name": "windup-web-openshift", + "url": "https://quay.io/repository/windupeng/windup-web-openshift", + "popularity": 47186.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 } ] }, @@ -9601,27 +9525,27 @@ { "name": "workflow-controller", "url": "https://quay.io/repository/argoproj/workflow-controller", - "popularity": 1196920.0 + "popularity": 1182422.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "kubecost-cost-model", "url": "https://quay.io/repository/kubecost1/kubecost-cost-model", - "popularity": 15046.0 + "popularity": 18244.0 }, { "name": "model-api-nginx", "url": "https://quay.io/repository/domino/model-api-nginx", - "popularity": 2726.0 + "popularity": 3160.0 }, { - "name": "workflow-controller", - "url": "https://quay.io/repository/codefresh/workflow-controller", - "popularity": 2760.0 + "name": "model-server", + "url": "https://quay.io/repository/octoml/model-server", + "popularity": 3497.0 } ] }, @@ -9641,7 +9565,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 184, + "star_count": 185, "Docker_Url": "https://hub.docker.com/r/bitnami/mongodb", "OS": [ { @@ -9729,7 +9653,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 184, + "star_count": 185, "Docker_Url": "https://hub.docker.com/r/bitnami/mongodb", "OS": [ { @@ -9786,27 +9710,27 @@ { "name": "mongodb-agent", "url": "https://quay.io/repository/mongodb/mongodb-agent", - "popularity": 275669.0 + "popularity": 270773.0 }, { "name": "mongodb-enterprise-database", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", - "popularity": 118389.0 - }, - { - "name": "mongodb-enterprise-ops-manager", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", - "popularity": 142619.0 + "popularity": 101454.0 }, { "name": "mongodb-36-centos7", "url": "https://quay.io/repository/centos7/mongodb-36-centos7", - "popularity": 100314.0 + "popularity": 99438.0 + }, + { + "name": "mongodb-enterprise-operator", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", + "popularity": 148414.0 }, { "name": "mongodb-kubernetes-operator-version-upgrade-post-start-hook", "url": "https://quay.io/repository/mongodb/mongodb-kubernetes-operator-version-upgrade-post-start-hook", - "popularity": 148136.0 + "popularity": 88895.0 } ] }, @@ -9820,7 +9744,7 @@ "stars": 0, "display_name": "MongoDB Enterprise Operator", "description": "The MongoDB Enterprise Kubernetes Operator enables easy deploys of MongoDB into Kubernetes clusters, using our management, monitoring and backup platforms, Ops Manager and Cloud Manager.", - "version": "1.16.2", + "version": "1.16.3", "deprecated": false, "signed": false, "security_report_summary": { @@ -9832,7 +9756,7 @@ }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656408634, + "ts": 1657830636, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -9847,7 +9771,7 @@ }, "git_repos": "https://github.com/mongodb/mongodb-enterprise-kubernetes", "container_images": [ - "quay.io/mongodb/mongodb-enterprise-operator-ubi:1.16.2" + "quay.io/mongodb/mongodb-enterprise-operator-ubi:1.16.3" ] }, { @@ -9896,19 +9820,19 @@ "stars": 0, "display_name": "MongoDB Atlas Operator", "description": "The MongoDB Atlas Kubernetes Operator enables easy management of Clusters in MongoDB Atlas", - "version": "1.0.0", + "version": "1.1.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 33, - "high": 1, + "high": 0, "medium": 44, "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1653075033, + "ts": 1657778437, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -9922,7 +9846,9 @@ "organization_display_name": "Operator Framework" }, "git_repos": null, - "container_images": [] + "container_images": [ + "quay.io/mongodb/mongodb-atlas-kubernetes-operator:1.1.0" + ] }, { "package_id": "9017b9cb-a997-498e-90a4-918f2fbe68c9", @@ -10076,30 +10002,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "selenium-standalone-firefox-debug", - "url": "https://quay.io/repository/app-sre/selenium-standalone-firefox-debug", - "popularity": 4023.0 - }, { "name": "firefox", "url": "https://quay.io/repository/browsers/firefox", - "popularity": 18818.0 + "popularity": 17507.0 + }, + { + "name": "selenium-standalone-firefox-debug", + "url": "https://quay.io/repository/app-sre/selenium-standalone-firefox-debug", + "popularity": 4364.0 }, { "name": "firefox", "url": "https://quay.io/repository/startx/firefox", - "popularity": 8914.0 + "popularity": 9060.0 }, { - "name": "firefox-mozilla-build", - "url": "https://quay.io/repository/browser/firefox-mozilla-build", - "popularity": 1926.0 + "name": "selenium-standalone", + "url": "https://quay.io/repository/redhatqe/selenium-standalone", + "popularity": 1756.0 }, { "name": "rust", "url": "https://quay.io/repository/instrumentisto/rust", - "popularity": 2946.0 + "popularity": 2318.0 } ] }, @@ -10203,27 +10129,27 @@ { "name": "nfs-client-provisioner", "url": "https://quay.io/repository/external_storage/nfs-client-provisioner", - "popularity": 754210.0 + "popularity": 709351.0 }, { "name": "nfs-client-provisioner-arm", "url": "https://quay.io/repository/external_storage/nfs-client-provisioner-arm", - "popularity": 86392.0 + "popularity": 87885.0 }, { "name": "oc-client-test", "url": "https://quay.io/repository/vishwanath_puranik/oc-client-test", - "popularity": 39222.0 + "popularity": 9309.0 }, { "name": "defectdojo-client", "url": "https://quay.io/repository/sdase/defectdojo-client", - "popularity": 5805.0 + "popularity": 5823.0 }, { "name": "kubernetes-vault-client", "url": "https://quay.io/repository/travelaudience/kubernetes-vault-client", - "popularity": 9887.0 + "popularity": 8807.0 } ] }, @@ -10246,27 +10172,27 @@ { "name": "docker-atlassian-jira-service-desk", "url": "https://quay.io/repository/ukhomeofficedigital/docker-atlassian-jira-service-desk", - "popularity": 33.0 + "popularity": 34.0 }, { "name": "ckan", "url": "https://quay.io/repository/ukhomeofficedigital/ckan", "popularity": 0.0 }, + { + "name": "ts-ticket-office-service", + "url": "https://quay.io/repository/ngii/ts-ticket-office-service", + "popularity": 0.0 + }, { "name": "mbop", "url": "https://quay.io/repository/cloudservices/mbop", - "popularity": 112.0 + "popularity": 26.0 }, { "name": "peframe", "url": "https://quay.io/repository/cincan/peframe", "popularity": 4.0 - }, - { - "name": "milkcartonpackaging", - "url": "https://quay.io/repository/sergioaustin/milkcartonpackaging", - "popularity": 2.0 } ] }, @@ -10326,27 +10252,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -10406,27 +10332,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -10446,7 +10372,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 12857, + "star_count": 12890, "Docker_Url": "https://hub.docker.com/_/mysql", "OS": [ { @@ -10503,48 +10429,6 @@ } ] }, - { - "name": "ubuntu/mysql", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 34, - "Docker_Url": "https://hub.docker.com/r/ubuntu/mysql", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, { "name": "cimg/mysql", "Official image": false, @@ -10563,86 +10447,12 @@ } ] }, - { - "name": "google/mysql", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 21, - "Docker_Url": "https://hub.docker.com/r/google/mysql", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } - ] - }, - { - "name": "mirantis/mysql", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/mirantis/mysql", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ], - "dockerhub_top_images": [ - { - "name": "mirantis/mysql", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/mirantis/mysql", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "google/mysql", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 21, - "Docker_Url": "https://hub.docker.com/r/google/mysql", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } - ] - }, { "name": "ubuntu/mysql", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 34, + "star_count": 36, "Docker_Url": "https://hub.docker.com/r/ubuntu/mysql", "OS": [ { @@ -10679,6 +10489,80 @@ } ] }, + { + "name": "google/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 21, + "Docker_Url": "https://hub.docker.com/r/google/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + }, + { + "name": "mirantis/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/mirantis/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "mirantis/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/mirantis/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "google/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 21, + "Docker_Url": "https://hub.docker.com/r/google/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] + }, { "name": "cimg/mysql", "Official image": false, @@ -10697,6 +10581,48 @@ } ] }, + { + "name": "ubuntu/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 36, + "Docker_Url": "https://hub.docker.com/r/ubuntu/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, { "name": "bitnami/mysql", "Official image": false, @@ -10722,64 +10648,64 @@ { "name": "mysql", "url": "https://quay.io/repository/openshifttest/mysql", - "popularity": 14939.0 + "popularity": 18388.0 }, { "name": "mysql", "url": "https://quay.io/repository/gauravkumar9130/mysql", - "popularity": 13.0 + "popularity": 26256.0 }, { "name": "mysql", "url": "https://quay.io/repository/prsurve/mysql", - "popularity": 6657.0 + "popularity": 62698.0 }, { "name": "mysql", "url": "https://quay.io/repository/cybozu/mysql", - "popularity": 4676.0 + "popularity": 5399.0 }, { "name": "mysql", "url": "https://quay.io/repository/hazelcast_cloud/mysql", - "popularity": 2013.0 + "popularity": 2206.0 }, { "name": "mysql", "url": "https://quay.io/repository/operations/mysql", - "popularity": 1019.0 + "popularity": 1219.0 }, { "name": "mysql", "url": "https://quay.io/repository/bridgez/mysql", - "popularity": 10.0 + "popularity": 3.0 } ], "quay_top_images": [ { "name": "mysql-80-centos7", "url": "https://quay.io/repository/centos7/mysql-80-centos7", - "popularity": 255184.0 + "popularity": 260685.0 }, { "name": "mysql", - "url": "https://quay.io/repository/openshifttest/mysql", - "popularity": 14939.0 + "url": "https://quay.io/repository/gauravkumar9130/mysql", + "popularity": 26256.0 }, { - "name": "mysql-operator", - "url": "https://quay.io/repository/presslabs/mysql-operator", - "popularity": 43507.0 + "name": "mysql", + "url": "https://quay.io/repository/prsurve/mysql", + "popularity": 62698.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 241707.0 + "popularity": 245318.0 }, { "name": "mariadb-105-centos7", "url": "https://quay.io/repository/centos7/mariadb-105-centos7", - "popularity": 136441.0 + "popularity": 142292.0 } ] }, @@ -10931,7 +10857,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 1058, + "star_count": 1061, "Docker_Url": "https://hub.docker.com/_/neo4j", "OS": [ { @@ -11085,7 +11011,7 @@ { "name": "neo4j", "url": "https://quay.io/repository/swsmirror/neo4j", - "popularity": 1.0 + "popularity": 0.0 } ], "quay_top_images": [ @@ -11111,8 +11037,8 @@ }, { "name": "neo4j", - "url": "https://quay.io/repository/swsmirror/neo4j", - "popularity": 1.0 + "url": "https://quay.io/repository/peoplepattern/neo4j", + "popularity": 0.0 } ] }, @@ -11133,7 +11059,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 30, + "star_count": 33, "Docker_Url": "https://hub.docker.com/r/grafana/grafana-oss", "OS": [ { @@ -11222,27 +11148,27 @@ { "name": "ocp-release", "url": "https://quay.io/repository/openshift-release-dev/ocp-release", - "popularity": 39354632.0 + "popularity": 41511623.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "thanos", "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2534311.0 + "popularity": 2526636.0 }, { "name": "nginx-ingress-controller", "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1153447.0 + "popularity": 1214037.0 } ] }, @@ -11292,27 +11218,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 92535501.0 + "popularity": 96679165.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 88998175.0 + "popularity": 92762600.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 89089055.0 + "popularity": 92854581.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 858875.0 + "popularity": 920253.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1306060.0 + "popularity": 1343874.0 } ] }, @@ -11332,7 +11258,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 49, + "star_count": 52, "Docker_Url": "https://hub.docker.com/r/bitnami/openldap", "OS": [ { @@ -11352,7 +11278,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 49, + "star_count": 52, "Docker_Url": "https://hub.docker.com/r/bitnami/openldap", "OS": [ { @@ -11400,7 +11326,7 @@ { "name": "openldap", "url": "https://quay.io/repository/minio/openldap", - "popularity": 770.0 + "popularity": 816.0 }, { "name": "openldap", @@ -11410,36 +11336,36 @@ { "name": "openldap", "url": "https://quay.io/repository/cs-sert/openldap", - "popularity": 98.0 + "popularity": 78.0 }, { "name": "openldap", "url": "https://quay.io/repository/llasmith/openldap", - "popularity": 47.0 + "popularity": 42.0 }, { "name": "openldap", - "url": "https://quay.io/repository/opaqnetworks/openldap", + "url": "https://quay.io/repository/leena_ibm/openldap", "popularity": 0.0 }, { "name": "openldap", - "url": "https://quay.io/repository/leena_ibm/openldap", - "popularity": 0.0 + "url": "https://quay.io/repository/rosalindfranklininstitute/openldap", + "popularity": 35.0 }, { "name": "openldap", - "url": "https://quay.io/repository/rosalindfranklininstitute/openldap", - "popularity": 11.0 + "url": "https://quay.io/repository/feven/openldap", + "popularity": 0.0 }, { "name": "openldap", - "url": "https://quay.io/repository/sacpathak/openldap", + "url": "https://quay.io/repository/opaqnetworks/openldap", "popularity": 0.0 }, { "name": "openldap", - "url": "https://quay.io/repository/nathan5508/openldap", + "url": "https://quay.io/repository/sacpathak/openldap", "popularity": 0.0 }, { @@ -11457,7 +11383,7 @@ { "name": "openldap", "url": "https://quay.io/repository/minio/openldap", - "popularity": 770.0 + "popularity": 816.0 }, { "name": "openldap", @@ -11467,17 +11393,17 @@ { "name": "openldap", "url": "https://quay.io/repository/cs-sert/openldap", - "popularity": 98.0 + "popularity": 78.0 }, { "name": "openldap", "url": "https://quay.io/repository/llasmith/openldap", - "popularity": 47.0 + "popularity": 42.0 }, { - "name": "openldap-s390x", - "url": "https://quay.io/repository/cs-sert/openldap-s390x", - "popularity": 24.0 + "name": "openldap", + "url": "https://quay.io/repository/rosalindfranklininstitute/openldap", + "popularity": 35.0 } ] }, @@ -11546,17 +11472,17 @@ { "name": "openvpn", "url": "https://quay.io/repository/kubermatic/openvpn", - "popularity": 10950.0 + "popularity": 14548.0 }, { "name": "openvpn", "url": "https://quay.io/repository/plange/openvpn", - "popularity": 113.0 + "popularity": 131.0 }, { "name": "openvpn", "url": "https://quay.io/repository/ukhomeofficedigital/openvpn", - "popularity": 61.0 + "popularity": 2.0 }, { "name": "openvpn", @@ -11566,39 +11492,39 @@ { "name": "openvpn", "url": "https://quay.io/repository/hypershift/openvpn", - "popularity": 34.0 + "popularity": 87.0 }, { "name": "openvpn", "url": "https://quay.io/repository/konveyor/openvpn", - "popularity": 4.0 + "popularity": 0.0 } ], "quay_top_images": [ { "name": "openvpn", "url": "https://quay.io/repository/kubermatic/openvpn", - "popularity": 10950.0 - }, - { - "name": "openvpn-authd", - "url": "https://quay.io/repository/ukhomeofficedigital/openvpn-authd", - "popularity": 106.0 + "popularity": 14548.0 }, { "name": "openvpn", "url": "https://quay.io/repository/plange/openvpn", - "popularity": 113.0 + "popularity": 131.0 }, { "name": "openvpn-sessions", "url": "https://quay.io/repository/ukhomeofficedigital/openvpn-sessions", - "popularity": 549.0 + "popularity": 268.0 }, { "name": "openvpn-client-container", "url": "https://quay.io/repository/tkaefer/openvpn-client-container", - "popularity": 163.0 + "popularity": 160.0 + }, + { + "name": "openvpn", + "url": "https://quay.io/repository/hypershift/openvpn", + "popularity": 87.0 } ] }, @@ -11681,30 +11607,30 @@ { "quay_exact_images": [], "quay_top_images": [ + { + "name": "ibm-management-ingress-operator", + "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", + "popularity": 156321.0 + }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 255406.0 + "popularity": 254930.0 }, { "name": "node-disk-manager-amd64", "url": "https://quay.io/repository/openebs/node-disk-manager-amd64", - "popularity": 159434.0 + "popularity": 171233.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 189232.0 - }, - { - "name": "ibm-commonui-operator", - "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", - "popularity": 117024.0 + "popularity": 193426.0 } ] }, @@ -11816,27 +11742,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15052.0 + "popularity": 15042.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 6801.0 + "popularity": 3550.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20112.0 + "popularity": 20354.0 }, { "name": "edb-postgres-advanced", "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 13004.0 + "popularity": 13582.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 19079.0 + "popularity": 17355.0 } ] }, @@ -11948,27 +11874,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15052.0 + "popularity": 15042.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 6801.0 + "popularity": 3550.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20112.0 + "popularity": 20354.0 }, { "name": "edb-postgres-advanced", "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 13004.0 + "popularity": 13582.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 19079.0 + "popularity": 17355.0 } ] }, @@ -11991,27 +11917,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15052.0 + "popularity": 15042.0 }, { - "name": "debezium-container-for-oracle", - "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 6801.0 + "name": "origin-mdns-publisher", + "url": "https://quay.io/repository/openshift/origin-mdns-publisher", + "popularity": 3696.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20112.0 + "popularity": 20354.0 }, { "name": "edb-postgres-advanced", "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 13004.0 + "popularity": 13582.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 19079.0 + "popularity": 17355.0 } ] }, @@ -12123,27 +12049,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15052.0 + "popularity": 15042.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52903.0 + "popularity": 52832.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20112.0 + "popularity": 20354.0 }, { "name": "edb-postgres-advanced", "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 13004.0 + "popularity": 13582.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 19079.0 + "popularity": 17355.0 } ] }, @@ -12211,27 +12137,27 @@ { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 255406.0 + "popularity": 254930.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 241707.0 + "popularity": 245318.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 189232.0 + "popularity": 193426.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183418.0 + "popularity": 183645.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 140143.0 + "popularity": 146710.0 } ] }, @@ -12273,27 +12199,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15052.0 + "popularity": 15042.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 6801.0 + "popularity": 3550.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20112.0 + "popularity": 20354.0 }, { "name": "edb-postgres-advanced", "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 13004.0 + "popularity": 13582.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 19079.0 + "popularity": 17355.0 } ] }, @@ -12405,27 +12331,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 92535501.0 + "popularity": 96679165.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 88998175.0 + "popularity": 92762600.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 89089055.0 + "popularity": 92854581.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 858875.0 + "popularity": 920253.0 }, { "name": "cert-manager-ctl", "url": "https://quay.io/repository/jetstack/cert-manager-ctl", - "popularity": 637570.0 + "popularity": 652852.0 } ] }, @@ -12537,27 +12463,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15052.0 + "popularity": 15042.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52903.0 + "popularity": 52832.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20112.0 + "popularity": 20354.0 }, { "name": "edb-postgres-advanced", "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 13004.0 + "popularity": 13582.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 19079.0 + "popularity": 17355.0 } ] }, @@ -12580,27 +12506,27 @@ { "name": "metering-reporting-operator", "url": "https://quay.io/repository/coreos/metering-reporting-operator", - "popularity": 1263.0 + "popularity": 1261.0 }, { "name": "reporting", "url": "https://quay.io/repository/sisense/reporting", - "popularity": 2475.0 + "popularity": 2466.0 }, { "name": "origin-metering-reporting-operator", "url": "https://quay.io/repository/openshift/origin-metering-reporting-operator", - "popularity": 4176.0 + "popularity": 3696.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52903.0 + "popularity": 52832.0 }, { "name": "rust", "url": "https://quay.io/repository/instrumentisto/rust", - "popularity": 2946.0 + "popularity": 2318.0 } ] }, @@ -12623,12 +12549,12 @@ { "name": "hyperion", "url": "https://quay.io/repository/devtron/hyperion", - "popularity": 922.0 + "popularity": 348.0 }, { "name": "federatorai-operator-ubi", "url": "https://quay.io/repository/prophetstor/federatorai-operator-ubi", - "popularity": 473.0 + "popularity": 466.0 }, { "name": "sentence-planning", @@ -12641,9 +12567,9 @@ "popularity": 0.0 }, { - "name": "ibm-spectrum-scale-csi-driver", - "url": "https://quay.io/repository/mew2057/ibm-spectrum-scale-csi-driver", - "popularity": 0.0 + "name": "we-nspyr", + "url": "https://quay.io/repository/wenspyr/we-nspyr", + "popularity": 1.0 } ] }, @@ -12729,27 +12655,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "haproxy-ingress", "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", - "popularity": 929588.0 + "popularity": 909887.0 }, { - "name": "cilium", - "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 421059.0 }, { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 809370.0 } ] }, @@ -12817,27 +12743,27 @@ { "name": "application-service", "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 72875.0 + "popularity": 116853.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 159557.0 + "popularity": 163268.0 }, { "name": "hubble-relay", "url": "https://quay.io/repository/cilium/hubble-relay", - "popularity": 135390.0 + "popularity": 118685.0 } ] }, @@ -12879,27 +12805,27 @@ { "name": "common-service-operator", "url": "https://quay.io/repository/opencloudio/common-service-operator", - "popularity": 317405.0 + "popularity": 284079.0 }, { "name": "service-catalog", "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", - "popularity": 330506.0 + "popularity": 330422.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 } ] }, @@ -12967,27 +12893,27 @@ { "name": "common-service-operator", "url": "https://quay.io/repository/opencloudio/common-service-operator", - "popularity": 317405.0 + "popularity": 284079.0 }, { "name": "service-catalog", "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", - "popularity": 330506.0 + "popularity": 330422.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 } ] }, @@ -13047,27 +12973,27 @@ { "name": "signalfx-agent", "url": "https://quay.io/repository/signalfx/signalfx-agent", - "popularity": 2424166.0 + "popularity": 3304404.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 159557.0 + "popularity": 163268.0 }, { - "name": "hubble-relay", - "url": "https://quay.io/repository/cilium/hubble-relay", - "popularity": 135390.0 + "name": "audit-syslog-service", + "url": "https://quay.io/repository/opencloudio/audit-syslog-service", + "popularity": 130197.0 }, { - "name": "operator", - "url": "https://quay.io/repository/cilium/operator", - "popularity": 77983.0 + "name": "hubble-relay", + "url": "https://quay.io/repository/cilium/hubble-relay", + "popularity": 118685.0 } ] }, @@ -13179,27 +13105,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15052.0 + "popularity": 15042.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 6801.0 + "popularity": 3550.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20112.0 + "popularity": 20354.0 }, { "name": "edb-postgres-advanced", "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 13004.0 + "popularity": 13582.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 19079.0 + "popularity": 17355.0 } ] }, @@ -13238,30 +13164,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "oracle-12c", - "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15052.0 - }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 241707.0 + "popularity": 245318.0 }, { "name": "mariadb-105-centos7", "url": "https://quay.io/repository/centos7/mariadb-105-centos7", - "popularity": 136441.0 + "popularity": 142292.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 38116.0 + "popularity": 36573.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20112.0 + "popularity": 20354.0 + }, + { + "name": "soketi", + "url": "https://quay.io/repository/soketi/soketi", + "popularity": 31737.0 } ] }, @@ -13329,27 +13255,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 255406.0 + "popularity": 254930.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 241707.0 + "popularity": 245318.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 189232.0 + "popularity": 193426.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183418.0 + "popularity": 183645.0 } ] }, @@ -13453,27 +13379,27 @@ { "name": "upstream-opm-builder", "url": "https://quay.io/repository/operator-framework/upstream-opm-builder", - "popularity": 60936.0 + "popularity": 59515.0 }, { "name": "cf-docker-builder", "url": "https://quay.io/repository/codefresh/cf-docker-builder", - "popularity": 84282.0 + "popularity": 80159.0 }, { "name": "ubuntu20-builder", "url": "https://quay.io/repository/wire/ubuntu20-builder", - "popularity": 25598.0 + "popularity": 25592.0 }, { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15052.0 + "popularity": 15042.0 }, { "name": "alpine-builder", "url": "https://quay.io/repository/wire/alpine-builder", - "popularity": 17078.0 + "popularity": 17065.0 } ] }, @@ -13574,7 +13500,7 @@ { "name": "bioconductor-elmer", "url": "https://quay.io/repository/biocontainers/bioconductor-elmer", - "popularity": 126.0 + "popularity": 123.0 }, { "name": "bioconductor-elmer.data", @@ -13622,12 +13548,12 @@ { "name": "psql", "url": "https://quay.io/repository/manywho/psql", - "popularity": 176.0 + "popularity": 174.0 }, { "name": "sso74-psql-openshift-rhel8", "url": "https://quay.io/repository/mzeny/sso74-psql-openshift-rhel8", - "popularity": 169.0 + "popularity": 168.0 }, { "name": "hocs-psql-exec", @@ -13637,7 +13563,7 @@ { "name": "server", "url": "https://quay.io/repository/codimd/server", - "popularity": 2465.0 + "popularity": 2416.0 } ] }, @@ -13660,7 +13586,7 @@ { "name": "get-pipe", "url": "https://quay.io/repository/igtdp/get-pipe", - "popularity": 193.0 + "popularity": 173.0 }, { "name": "worker-pipe", @@ -13670,17 +13596,17 @@ { "name": "bcftools", "url": "https://quay.io/repository/biocontainers/bcftools", - "popularity": 13048.0 + "popularity": 15877.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8725.0 + "popularity": 8041.0 }, { "name": "udplog-d", "url": "https://quay.io/repository/jcmoraisjr/udplog-d", - "popularity": 20.0 + "popularity": 15.0 } ] }, @@ -13734,7 +13660,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 148, + "star_count": 149, "Docker_Url": "https://hub.docker.com/r/bitnami/postgresql", "OS": [ { @@ -13858,7 +13784,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 148, + "star_count": 149, "Docker_Url": "https://hub.docker.com/r/bitnami/postgresql", "OS": [ { @@ -13919,44 +13845,44 @@ { "name": "postgresql", "url": "https://quay.io/repository/enterprisedb/postgresql", - "popularity": 18302.0 + "popularity": 19585.0 }, { "name": "postgresql", "url": "https://quay.io/repository/aptible/postgresql", - "popularity": 1432.0 + "popularity": 1582.0 }, { "name": "postgresql", "url": "https://quay.io/repository/operatorhubio/postgresql", - "popularity": 1536.0 + "popularity": 1494.0 } ], "quay_top_images": [ { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 255406.0 + "popularity": 254930.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 189232.0 + "popularity": 193426.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 140143.0 + "popularity": 146710.0 }, { - "name": "postgresql-operator", - "url": "https://quay.io/repository/dev4devs-com/postgresql-operator", - "popularity": 18838.0 + "name": "postgresql", + "url": "https://quay.io/repository/enterprisedb/postgresql", + "popularity": 19585.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20112.0 + "popularity": 20354.0 } ] }, @@ -14135,7 +14061,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": null, + "git_repos": "https://www.enterprisedb.com/docs/postgres_for_kubernetes/latest/", "container_images": [ "quay.io/enterprisedb/cloud-native-postgresql" ] @@ -14446,27 +14372,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 353182.0 + "popularity": 378922.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -14584,27 +14510,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 92535501.0 + "popularity": 96679165.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 88998175.0 + "popularity": 92762600.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 89089055.0 + "popularity": 92854581.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 } ] }, @@ -14647,7 +14573,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 4372, + "star_count": 4381, "Docker_Url": "https://hub.docker.com/_/rabbitmq", "OS": [ { @@ -14658,6 +14584,14 @@ "Type": "linux", "Subtype": "" }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v6", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, { "Class": "OS", "Architecture": "arm", @@ -14676,7 +14610,7 @@ }, { "Class": "OS", - "Architecture": "ppc64le", + "Architecture": "386", "Variants": null, "Versions": null, "Type": "linux", @@ -14684,7 +14618,7 @@ }, { "Class": "OS", - "Architecture": "riscv64", + "Architecture": "ppc64le", "Variants": null, "Versions": null, "Type": "linux", @@ -14779,7 +14713,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 4372, + "star_count": 4381, "Docker_Url": "https://hub.docker.com/_/rabbitmq", "OS": [ { @@ -14790,6 +14724,14 @@ "Type": "linux", "Subtype": "" }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v6", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, { "Class": "OS", "Architecture": "arm", @@ -14808,7 +14750,7 @@ }, { "Class": "OS", - "Architecture": "ppc64le", + "Architecture": "386", "Variants": null, "Versions": null, "Type": "linux", @@ -14816,7 +14758,7 @@ }, { "Class": "OS", - "Architecture": "riscv64", + "Architecture": "ppc64le", "Variants": null, "Versions": null, "Type": "linux", @@ -14839,69 +14781,69 @@ { "name": "rabbitmq", "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/rabbitmq", - "popularity": 0.0 + "popularity": 2.0 }, { "name": "rabbitmq", "url": "https://quay.io/repository/domino/rabbitmq", - "popularity": 2353.0 + "popularity": 2461.0 }, { "name": "rabbitmq", "url": "https://quay.io/repository/sisense/rabbitmq", - "popularity": 2149.0 + "popularity": 2073.0 }, { "name": "rabbitmq", "url": "https://quay.io/repository/scentbird/rabbitmq", - "popularity": 3178.0 + "popularity": 2241.0 }, { "name": "rabbitmq", "url": "https://quay.io/repository/aptible/rabbitmq", - "popularity": 1427.0 + "popularity": 1570.0 }, { "name": "rabbitmq", - "url": "https://quay.io/repository/openstack.kolla/rabbitmq", - "popularity": 1088.0 + "url": "https://quay.io/repository/trackmaven/rabbitmq", + "popularity": 1888.0 }, { "name": "rabbitmq", - "url": "https://quay.io/repository/trackmaven/rabbitmq", - "popularity": 1903.0 + "url": "https://quay.io/repository/openstack.kolla/rabbitmq", + "popularity": 1898.0 }, { "name": "rabbitmq", "url": "https://quay.io/repository/lbac/rabbitmq", - "popularity": 1512.0 + "popularity": 1514.0 } ], "quay_top_images": [ { "name": "rabbitmq", "url": "https://quay.io/repository/domino/rabbitmq", - "popularity": 2353.0 + "popularity": 2461.0 }, { "name": "rabbitmq", "url": "https://quay.io/repository/sisense/rabbitmq", - "popularity": 2149.0 + "popularity": 2073.0 }, { "name": "rabbitmq", "url": "https://quay.io/repository/scentbird/rabbitmq", - "popularity": 3178.0 + "popularity": 2241.0 }, { "name": "rabbitmq", "url": "https://quay.io/repository/trackmaven/rabbitmq", - "popularity": 1903.0 + "popularity": 1888.0 }, { "name": "rabbitmq", - "url": "https://quay.io/repository/lbac/rabbitmq", - "popularity": 1512.0 + "url": "https://quay.io/repository/openstack.kolla/rabbitmq", + "popularity": 1898.0 } ] }, @@ -14955,7 +14897,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 11123, + "star_count": 11148, "Docker_Url": "https://hub.docker.com/_/redis", "OS": [ { @@ -15123,12 +15065,12 @@ ], "dockerhub_top_images": [ { - "name": "redis", - "Official image": true, - "Verified Publisher": false, + "name": "cimg/redis", + "Official image": false, + "Verified Publisher": true, "Description": "", - "star_count": 11123, - "Docker_Url": "https://hub.docker.com/_/redis", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/cimg/redis", "OS": [ { "Class": "OS", @@ -15137,34 +15079,20 @@ "Versions": null, "Type": "linux", "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v5", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, + } + ] + }, + { + "name": "ubuntu/redis", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/ubuntu/redis", + "OS": [ { "Class": "OS", - "Architecture": "386", + "Architecture": "s390x", "Variants": null, "Versions": null, "Type": "linux", @@ -15172,7 +15100,7 @@ }, { "Class": "OS", - "Architecture": "mips64le", + "Architecture": "ppc64le", "Variants": null, "Versions": null, "Type": "linux", @@ -15180,7 +15108,7 @@ }, { "Class": "OS", - "Architecture": "ppc64le", + "Architecture": "amd64", "Variants": null, "Versions": null, "Type": "linux", @@ -15188,8 +15116,8 @@ }, { "Class": "OS", - "Architecture": "s390x", - "Variants": null, + "Architecture": "arm64", + "Variants": "v8", "Versions": null, "Type": "linux", "Subtype": "" @@ -15197,12 +15125,12 @@ ] }, { - "name": "cimg/redis", + "name": "circleci/redis", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/cimg/redis", + "star_count": 14, + "Docker_Url": "https://hub.docker.com/r/circleci/redis", "OS": [ { "Class": "OS", @@ -15233,12 +15161,12 @@ ] }, { - "name": "circleci/redis", - "Official image": false, - "Verified Publisher": true, + "name": "redis", + "Official image": true, + "Verified Publisher": false, "Description": "", - "star_count": 14, - "Docker_Url": "https://hub.docker.com/r/circleci/redis", + "star_count": 11148, + "Docker_Url": "https://hub.docker.com/_/redis", "OS": [ { "Class": "OS", @@ -15247,20 +15175,34 @@ "Versions": null, "Type": "linux", "Subtype": "" - } - ] - }, - { - "name": "ubuntu/redis", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 10, - "Docker_Url": "https://hub.docker.com/r/ubuntu/redis", - "OS": [ + }, { "Class": "OS", - "Architecture": "s390x", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", "Variants": null, "Versions": null, "Type": "linux", @@ -15268,7 +15210,7 @@ }, { "Class": "OS", - "Architecture": "ppc64le", + "Architecture": "mips64le", "Variants": null, "Versions": null, "Type": "linux", @@ -15276,7 +15218,7 @@ }, { "Class": "OS", - "Architecture": "amd64", + "Architecture": "ppc64le", "Variants": null, "Versions": null, "Type": "linux", @@ -15284,8 +15226,8 @@ }, { "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", + "Architecture": "s390x", + "Variants": null, "Versions": null, "Type": "linux", "Subtype": "" @@ -15299,7 +15241,7 @@ { "name": "redis", "url": "https://quay.io/repository/sameersbn/redis", - "popularity": 179256.0 + "popularity": 178658.0 }, { "name": "redis", @@ -15309,64 +15251,69 @@ { "name": "redis", "url": "https://quay.io/repository/domino/redis", - "popularity": 2962.0 + "popularity": 3213.0 }, { "name": "redis", "url": "https://quay.io/repository/opstree/redis", - "popularity": 4276.0 + "popularity": 9444.0 }, { "name": "redis", "url": "https://quay.io/repository/quay/redis", - "popularity": 1216.0 + "popularity": 1329.0 }, { "name": "redis", "url": "https://quay.io/repository/scentbird/redis", - "popularity": 3278.0 + "popularity": 2233.0 }, { "name": "redis", - "url": "https://quay.io/repository/libpod/redis", - "popularity": 2380.0 + "url": "https://quay.io/repository/crio/redis", + "popularity": 5418.0 }, { "name": "redis", "url": "https://quay.io/repository/aptible/redis", - "popularity": 1403.0 + "popularity": 1616.0 }, { "name": "redis", - "url": "https://quay.io/repository/crio/redis", - "popularity": 1230.0 + "url": "https://quay.io/repository/libpod/redis", + "popularity": 1944.0 + }, + { + "name": "redis", + "url": "https://quay.io/repository/cloud-bulldozer/redis", + "popularity": 2570.0 } ], "quay_top_images": [ - { - "name": "redis-operator", - "url": "https://quay.io/repository/spotahome/redis-operator", - "popularity": 149335.0 - }, { "name": "redis-5-centos7", "url": "https://quay.io/repository/centos7/redis-5-centos7", - "popularity": 247008.0 + "popularity": 249711.0 + }, + { + "name": "redis-operator", + "url": "https://quay.io/repository/spotahome/redis-operator", + "popularity": 145581.0 }, { "name": "redis", "url": "https://quay.io/repository/sameersbn/redis", - "popularity": 179256.0 + "popularity": 178658.0 }, { "name": "redis-exporter", "url": "https://quay.io/repository/opstree/redis-exporter", - "popularity": 44318.0 + "popularity": 55701.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 70825.0 + "popularity": 102256.0 } ] }, @@ -15443,7 +15390,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": null, + "git_repos": "https://github.com/RedisLabs/redis-enterprise-k8s-docs", "container_images": [] }, { @@ -15696,27 +15643,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -15739,27 +15686,27 @@ { "name": "sap-side-by-side-be", "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", - "popularity": 3358.0 + "popularity": 3641.0 }, { "name": "sap-btp-operator", "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", - "popularity": 132.0 + "popularity": 108.0 }, { "name": "container-image-registry", "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7558.0 + "popularity": 7568.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", - "popularity": 6548.0 + "popularity": 6663.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/miminar/sdi-observer", - "popularity": 165.0 + "popularity": 169.0 } ] }, @@ -15801,27 +15748,27 @@ { "name": "sap-side-by-side-be", "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", - "popularity": 3358.0 + "popularity": 3641.0 }, { "name": "sap-btp-operator", "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", - "popularity": 132.0 + "popularity": 108.0 }, { "name": "container-image-registry", "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7558.0 + "popularity": 7568.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", - "popularity": 6548.0 + "popularity": 6663.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/miminar/sdi-observer", - "popularity": 165.0 + "popularity": 169.0 } ] }, @@ -15844,27 +15791,27 @@ { "name": "sap-side-by-side-be", "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", - "popularity": 3358.0 + "popularity": 3641.0 }, { "name": "sap-btp-operator", "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", - "popularity": 132.0 + "popularity": 108.0 }, { "name": "container-image-registry", "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7558.0 + "popularity": 7568.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", - "popularity": 6548.0 + "popularity": 6663.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/miminar/sdi-observer", - "popularity": 165.0 + "popularity": 169.0 } ] }, @@ -15887,27 +15834,27 @@ { "name": "warehouse", "url": "https://quay.io/repository/sisense/warehouse", - "popularity": 1480.0 + "popularity": 723.0 }, { "name": "sap-side-by-side-be", "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", - "popularity": 3358.0 + "popularity": 3641.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52903.0 + "popularity": 52832.0 }, { "name": "container-image-registry", "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7558.0 + "popularity": 7568.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", - "popularity": 6548.0 + "popularity": 6663.0 } ] }, @@ -15949,27 +15896,27 @@ { "name": "apicurio-registry-sql", "url": "https://quay.io/repository/apicurio/apicurio-registry-sql", - "popularity": 12300.0 + "popularity": 14608.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 241707.0 + "popularity": 245318.0 }, { "name": "mariadb-105-centos7", "url": "https://quay.io/repository/centos7/mariadb-105-centos7", - "popularity": 136441.0 + "popularity": 142292.0 }, { "name": "soketi", "url": "https://quay.io/repository/soketi/soketi", - "popularity": 42567.0 + "popularity": 31737.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 19079.0 + "popularity": 17355.0 } ] }, @@ -15984,34 +15931,7 @@ "SAP Web Dynpro": [ { "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "ibmcom/web-terminal", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/web-terminal", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] + "dockerhub_top_images": [] }, { "quay_exact_images": [], @@ -16019,27 +15939,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 353182.0 + "popularity": 378922.0 }, { "name": "windup-web-openshift", "url": "https://quay.io/repository/windupeng/windup-web-openshift", - "popularity": 17107.0 + "popularity": 47186.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "nginx-116-centos7", "url": "https://quay.io/repository/centos7/nginx-116-centos7", - "popularity": 158502.0 + "popularity": 158256.0 }, { "name": "ibm-commonui-operator", "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", - "popularity": 117024.0 + "popularity": 113315.0 } ] }, @@ -16059,7 +15979,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 623, + "star_count": 625, "Docker_Url": "https://hub.docker.com/_/sentry", "OS": [ { @@ -16079,7 +15999,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 623, + "star_count": 625, "Docker_Url": "https://hub.docker.com/_/sentry", "OS": [ { @@ -16099,17 +16019,17 @@ { "name": "sentry", "url": "https://quay.io/repository/app-sre/sentry", - "popularity": 927.0 + "popularity": 926.0 }, { "name": "sentry", "url": "https://quay.io/repository/swsmirror/sentry", - "popularity": 1.0 + "popularity": 0.0 }, { "name": "sentry", "url": "https://quay.io/repository/dontpayfull/sentry", - "popularity": 31.0 + "popularity": 0.0 }, { "name": "sentry", @@ -16161,27 +16081,27 @@ { "name": "sentry", "url": "https://quay.io/repository/app-sre/sentry", - "popularity": 927.0 + "popularity": 926.0 }, { "name": "sentry", "url": "https://quay.io/repository/swsmirror/sentry", - "popularity": 1.0 + "popularity": 0.0 }, { - "name": "publish-sentry-release", - "url": "https://quay.io/repository/indent/publish-sentry-release", - "popularity": 48.0 + "name": "sentry-operator", + "url": "https://quay.io/repository/thekad/sentry-operator", + "popularity": 0.0 }, { - "name": "sentry", - "url": "https://quay.io/repository/dontpayfull/sentry", - "popularity": 31.0 + "name": "publish-sentry-release", + "url": "https://quay.io/repository/indent/publish-sentry-release", + "popularity": 18.0 }, { "name": "sentry-gateway", "url": "https://quay.io/repository/pingthingsio/sentry-gateway", - "popularity": 9.0 + "popularity": 44.0 } ] }, @@ -16286,27 +16206,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 92535501.0 + "popularity": 96679165.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 88998175.0 + "popularity": 92762600.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 89089055.0 + "popularity": 92854581.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 858875.0 + "popularity": 920253.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1306060.0 + "popularity": 1343874.0 } ] }, @@ -16360,7 +16280,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 2065, + "star_count": 2072, "Docker_Url": "https://hub.docker.com/_/sonarqube", "OS": [ { @@ -16416,7 +16336,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 2065, + "star_count": 2072, "Docker_Url": "https://hub.docker.com/_/sonarqube", "OS": [ { @@ -16454,7 +16374,7 @@ { "name": "sonarqube", "url": "https://quay.io/repository/gpte-devops-automation/sonarqube", - "popularity": 4437.0 + "popularity": 4528.0 }, { "name": "sonarqube", @@ -16469,64 +16389,64 @@ { "name": "sonarqube", "url": "https://quay.io/repository/ukhomeofficedigital/sonarqube", - "popularity": 1950.0 + "popularity": 1974.0 }, { "name": "sonarqube", "url": "https://quay.io/repository/siamaksade/sonarqube", - "popularity": 299.0 - }, - { - "name": "sonarqube", - "url": "https://quay.io/repository/evandenbeld/sonarqube", - "popularity": 0.0 + "popularity": 197.0 }, { "name": "sonarqube", "url": "https://quay.io/repository/ecerquei/sonarqube", - "popularity": 1633.0 + "popularity": 1643.0 }, { "name": "sonarqube", "url": "https://quay.io/repository/an6eel/sonarqube", - "popularity": 458.0 + "popularity": 773.0 }, { "name": "sonarqube", - "url": "https://quay.io/repository/ccee/sonarqube", - "popularity": 347.0 + "url": "https://quay.io/repository/evandenbeld/sonarqube", + "popularity": 0.0 }, { "name": "sonarqube", "url": "https://quay.io/repository/rcarrata/sonarqube", - "popularity": 742.0 + "popularity": 971.0 + }, + { + "name": "sonarqube", + "url": "https://quay.io/repository/ccee/sonarqube", + "popularity": 338.0 }, { "name": "sonarqube", "url": "https://quay.io/repository/swsmirror/sonarqube", - "popularity": 1.0 + "popularity": 0.0 }, { "name": "sonarqube", "url": "https://quay.io/repository/rocep/sonarqube", - "popularity": 173.0 + "popularity": 168.0 }, { "name": "sonarqube", - "url": "https://quay.io/repository/redhatgov/sonarqube", - "popularity": 85.0 + "url": "https://quay.io/repository/bcgov/sonarqube", + "popularity": 96.0 }, { "name": "sonarqube", - "url": "https://quay.io/repository/bcgov/sonarqube", - "popularity": 107.0 + "url": "https://quay.io/repository/redhatgov/sonarqube", + "popularity": 58.0 } ], "quay_top_images": [ { "name": "sonarqube", "url": "https://quay.io/repository/gpte-devops-automation/sonarqube", - "popularity": 4437.0 + "popularity": 4528.0 }, { "name": "sonarqube", @@ -16536,17 +16456,17 @@ { "name": "sonarqube", "url": "https://quay.io/repository/ukhomeofficedigital/sonarqube", - "popularity": 1950.0 + "popularity": 1974.0 }, { "name": "sonarqube-operator", "url": "https://quay.io/repository/redhatgov/sonarqube-operator", - "popularity": 1665.0 + "popularity": 1578.0 }, { "name": "sonarqube", "url": "https://quay.io/repository/ecerquei/sonarqube", - "popularity": 1633.0 + "popularity": 1643.0 } ] }, @@ -16609,34 +16529,34 @@ { "name": "splunk", "url": "https://quay.io/repository/operatorhubio/splunk", - "popularity": 44.0 + "popularity": 37.0 } ], "quay_top_images": [ { "name": "splunk-otel-collector", "url": "https://quay.io/repository/signalfx/splunk-otel-collector", - "popularity": 1697696.0 + "popularity": 806913.0 }, { "name": "splunk-forwarder", "url": "https://quay.io/repository/app-sre/splunk-forwarder", - "popularity": 79844.0 + "popularity": 82862.0 }, { "name": "splunk-audit-exporter", "url": "https://quay.io/repository/app-sre/splunk-audit-exporter", - "popularity": 27209.0 + "popularity": 30897.0 }, { "name": "splunk-forwarder-operator-registry", "url": "https://quay.io/repository/app-sre/splunk-forwarder-operator-registry", - "popularity": 20202.0 + "popularity": 18874.0 }, { "name": "splunk-forwarder", "url": "https://quay.io/repository/jburrell/splunk-forwarder", - "popularity": 20865.0 + "popularity": 19708.0 } ] }, @@ -16741,27 +16661,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -16864,27 +16784,27 @@ { "name": "build-tools-ci", "url": "https://quay.io/repository/pantheon-public/build-tools-ci", - "popularity": 47347.0 + "popularity": 51837.0 }, { "name": "light-k8s-deploy-tools", "url": "https://quay.io/repository/presslabs/light-k8s-deploy-tools", - "popularity": 31998.0 + "popularity": 32369.0 }, { "name": "strimzi-tools", "url": "https://quay.io/repository/rh_integration/strimzi-tools", - "popularity": 8526.0 + "popularity": 8643.0 }, { - "name": "tools", - "url": "https://quay.io/repository/operating_system_ci/tools", - "popularity": 4348.0 + "name": "cloud-tools", + "url": "https://quay.io/repository/osbuild/cloud-tools", + "popularity": 6650.0 }, { "name": "ibm-platform-api-operator", "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", - "popularity": 47566.0 + "popularity": 36619.0 } ] }, @@ -16970,27 +16890,27 @@ { "name": "build-tools-ci", "url": "https://quay.io/repository/pantheon-public/build-tools-ci", - "popularity": 47347.0 + "popularity": 51837.0 }, { "name": "light-k8s-deploy-tools", "url": "https://quay.io/repository/presslabs/light-k8s-deploy-tools", - "popularity": 31998.0 + "popularity": 32369.0 }, { "name": "strimzi-tools", "url": "https://quay.io/repository/rh_integration/strimzi-tools", - "popularity": 8526.0 + "popularity": 8643.0 }, { - "name": "tools", - "url": "https://quay.io/repository/operating_system_ci/tools", - "popularity": 4348.0 + "name": "cloud-tools", + "url": "https://quay.io/repository/osbuild/cloud-tools", + "popularity": 6650.0 }, { "name": "ibm-platform-api-operator", "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", - "popularity": 47566.0 + "popularity": 36619.0 } ] }, @@ -17203,12 +17123,12 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "ibmcom/process-ma-hf-ppc64le", + "name": "ibmcom/process-ma-hf", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/process-ma-hf-ppc64le", + "Docker_Url": "https://hub.docker.com/r/ibmcom/process-ma-hf", "OS": [ { "Class": "null", @@ -17228,27 +17148,27 @@ { "name": "thanos", "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2534311.0 + "popularity": 2526636.0 }, { "name": "process-quarkus-example", "url": "https://quay.io/repository/kiegroup/process-quarkus-example", - "popularity": 3505.0 - }, - { - "name": "examples-process-quarkus-example-nightly", - "url": "https://quay.io/repository/kiegroup/examples-process-quarkus-example-nightly", - "popularity": 122.0 + "popularity": 1796.0 }, { - "name": "examples-process-springboot-example-persistence-nightly", - "url": "https://quay.io/repository/kiegroup/examples-process-springboot-example-persistence-nightly", - "popularity": 123.0 + "name": "examples-process-quarkus-example-persistence-nightly", + "url": "https://quay.io/repository/kiegroup/examples-process-quarkus-example-persistence-nightly", + "popularity": 288.0 }, { "name": "examples-process-quarkus-example-events-persistence-nightly", "url": "https://quay.io/repository/kiegroup/examples-process-quarkus-example-events-persistence-nightly", - "popularity": 126.0 + "popularity": 296.0 + }, + { + "name": "memcached-exporter", + "url": "https://quay.io/repository/prometheus/memcached-exporter", + "popularity": 82319.0 } ] }, @@ -17358,27 +17278,27 @@ { "name": "adguardhome-sync", "url": "https://quay.io/repository/bakito/adguardhome-sync", - "popularity": 39591.0 + "popularity": 45641.0 }, { "name": "export-sync-timescaledb", "url": "https://quay.io/repository/igtdp/export-sync-timescaledb", - "popularity": 21734.0 + "popularity": 21675.0 }, { "name": "normalize-sync", "url": "https://quay.io/repository/igtdp/normalize-sync", - "popularity": 21686.0 + "popularity": 21645.0 }, { "name": "concourse-s3-sync", "url": "https://quay.io/repository/hellofresh/concourse-s3-sync", - "popularity": 13350.0 + "popularity": 13428.0 }, { "name": "group-sync-operator", "url": "https://quay.io/repository/redhat-cop/group-sync-operator", - "popularity": 15452.0 + "popularity": 12593.0 } ] }, @@ -17480,7 +17400,7 @@ { "name": "chlaus", "url": "https://quay.io/repository/appuio/chlaus", - "popularity": 2687.0 + "popularity": 1797.0 }, { "name": "whois-devsensation-es", @@ -17500,7 +17420,7 @@ { "name": "mkpasswd", "url": "https://quay.io/repository/coreos/mkpasswd", - "popularity": 58.0 + "popularity": 79.0 } ] }, @@ -17529,7 +17449,7 @@ { "name": "tableau-server-writer", "url": "https://quay.io/repository/keboola/tableau-server-writer", - "popularity": 984.0 + "popularity": 954.0 }, { "name": "tableau", @@ -17612,27 +17532,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { - "name": "mongodb-enterprise-ops-manager", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", - "popularity": 142619.0 + "name": "mongodb-enterprise-operator", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", + "popularity": 148414.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -17763,27 +17683,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -17806,27 +17726,27 @@ { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52903.0 + "popularity": 52832.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20112.0 + "popularity": 20354.0 }, { "name": "daemon", "url": "https://quay.io/repository/ceph/daemon", - "popularity": 3450.0 + "popularity": 9604.0 }, { "name": "freeipa-server", "url": "https://quay.io/repository/freeipa/freeipa-server", - "popularity": 2325.0 + "popularity": 1243.0 } ] }, @@ -17951,6 +17871,24 @@ "Subtype": "" } ] + }, + { + "name": "ibmcom/verify-access-snapshotmgr", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-snapshotmgr", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] } ] }, @@ -17960,27 +17898,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 92535501.0 + "popularity": 96679165.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 88998175.0 + "popularity": 92762600.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 89089055.0 + "popularity": 92854581.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 858875.0 + "popularity": 920253.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1306060.0 + "popularity": 1343874.0 } ] }, @@ -18185,27 +18123,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -18301,27 +18239,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -18361,27 +18299,27 @@ { "name": "redhat-marketplace-reporter", "url": "https://quay.io/repository/rh-marketplace/redhat-marketplace-reporter", - "popularity": 31410.0 + "popularity": 30011.0 }, { "name": "origin-operator-marketplace", "url": "https://quay.io/repository/openshift/origin-operator-marketplace", - "popularity": 10301.0 + "popularity": 9460.0 }, { "name": "redhat-marketplace-operator", "url": "https://quay.io/repository/rh-marketplace/redhat-marketplace-operator", - "popularity": 8019.0 + "popularity": 7890.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { - "name": "redhat-marketplace-authcheck", - "url": "https://quay.io/repository/rh-marketplace/redhat-marketplace-authcheck", - "popularity": 7001.0 + "name": "redhat-marketplace-operator", + "url": "https://quay.io/repository/operator-pipeline-prod/redhat-marketplace-operator", + "popularity": 1392.0 } ] }, @@ -18404,27 +18342,27 @@ { "name": "build-tools-ci", "url": "https://quay.io/repository/pantheon-public/build-tools-ci", - "popularity": 47347.0 + "popularity": 51837.0 }, { "name": "light-k8s-deploy-tools", "url": "https://quay.io/repository/presslabs/light-k8s-deploy-tools", - "popularity": 31998.0 + "popularity": 32369.0 }, { "name": "strimzi-tools", "url": "https://quay.io/repository/rh_integration/strimzi-tools", - "popularity": 8526.0 + "popularity": 8643.0 }, { - "name": "tools", - "url": "https://quay.io/repository/operating_system_ci/tools", - "popularity": 4348.0 + "name": "cloud-tools", + "url": "https://quay.io/repository/osbuild/cloud-tools", + "popularity": 6650.0 }, { "name": "ibm-platform-api-operator", "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", - "popularity": 47566.0 + "popularity": 36619.0 } ] }, @@ -18447,27 +18385,27 @@ { "name": "vcenter-test-container", "url": "https://quay.io/repository/ansible/vcenter-test-container", - "popularity": 679.0 + "popularity": 540.0 }, { "name": "vcenter-simulator", "url": "https://quay.io/repository/kubevirt/vcenter-simulator", - "popularity": 51.0 + "popularity": 43.0 }, { "name": "vmware-gateway", "url": "https://quay.io/repository/amastbau/vmware-gateway", - "popularity": 1280.0 + "popularity": 684.0 }, { "name": "kubevirt-vmware", "url": "https://quay.io/repository/kubevirt/kubevirt-vmware", - "popularity": 39.0 + "popularity": 32.0 }, { "name": "vmware", "url": "https://quay.io/repository/nickarellano/vmware", - "popularity": 30.0 + "popularity": 16.0 } ] }, @@ -18541,30 +18479,30 @@ { "quay_exact_images": [], "quay_top_images": [ + { + "name": "ai-integration", + "url": "https://quay.io/repository/sisense/ai-integration", + "popularity": 1722.0 + }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 353617.0 + "popularity": 421059.0 }, { "name": "falcon-integration-gateway", "url": "https://quay.io/repository/crowdstrike/falcon-integration-gateway", - "popularity": 6007.0 + "popularity": 5986.0 }, { - "name": "sarus-integration-tests", - "url": "https://quay.io/repository/ethcscs/sarus-integration-tests", - "popularity": 2226.0 + "name": "websocket-integration", + "url": "https://quay.io/repository/vollerchris/websocket-integration", + "popularity": 41775.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183418.0 - }, - { - "name": "websocket-integration", - "url": "https://quay.io/repository/vollerchris/websocket-integration", - "popularity": 2471.0 + "popularity": 183645.0 } ] }, @@ -18653,7 +18591,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 203, + "star_count": 204, "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-traditional", "OS": [ { @@ -18708,27 +18646,27 @@ { "name": "app-build-suite", "url": "https://quay.io/repository/giantswarm/app-build-suite", - "popularity": 1079.0 + "popularity": 1234.0 }, { - "name": "rust", - "url": "https://quay.io/repository/instrumentisto/rust", - "popularity": 2946.0 + "name": "app-test-suite", + "url": "https://quay.io/repository/giantswarm/app-test-suite", + "popularity": 118.0 }, { - "name": "e2e-test-suite-tools", - "url": "https://quay.io/repository/mk-ci-cd/e2e-test-suite-tools", - "popularity": 168.0 + "name": "rust", + "url": "https://quay.io/repository/instrumentisto/rust", + "popularity": 2318.0 }, { "name": "egeria", "url": "https://quay.io/repository/odpi/egeria", - "popularity": 550.0 + "popularity": 443.0 }, { "name": "blast", "url": "https://quay.io/repository/biocontainers/blast", - "popularity": 938.0 + "popularity": 1674.0 } ] }, @@ -18770,27 +18708,27 @@ { "name": "che-plugin-artifacts-broker", "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", - "popularity": 20225.0 - }, - { - "name": "che-plugin-artifacts-broker", - "url": "https://quay.io/repository/devplayground/che-plugin-artifacts-broker", - "popularity": 19235.0 + "popularity": 19550.0 }, { "name": "message-tagging-service", "url": "https://quay.io/repository/factory2/message-tagging-service", - "popularity": 11319.0 + "popularity": 11577.0 + }, + { + "name": "activemq-artemis-broker", + "url": "https://quay.io/repository/artemiscloud/activemq-artemis-broker", + "popularity": 3886.0 }, { "name": "activemq-artemis-broker-kubernetes", "url": "https://quay.io/repository/artemiscloud/activemq-artemis-broker-kubernetes", - "popularity": 6809.0 + "popularity": 6759.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183418.0 + "popularity": 183645.0 } ] }, @@ -18813,27 +18751,27 @@ { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-management-ingress-operator", "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 111760.0 + "popularity": 156321.0 }, { "name": "ibm-commonui-operator", "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", - "popularity": 117024.0 + "popularity": 113315.0 }, { - "name": "ibm-ingress-nginx-operator", - "url": "https://quay.io/repository/opencloudio/ibm-ingress-nginx-operator", - "popularity": 49461.0 + "name": "ibm-platform-api-operator", + "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", + "popularity": 36619.0 }, { - "name": "ibm-cert-manager-operator", - "url": "https://quay.io/repository/opencloudio/ibm-cert-manager-operator", - "popularity": 50181.0 + "name": "ubi-quarkus-native-binary-s2i", + "url": "https://quay.io/repository/quarkus/ubi-quarkus-native-binary-s2i", + "popularity": 60214.0 } ] }, @@ -18898,27 +18836,27 @@ { "name": "common-service-operator", "url": "https://quay.io/repository/opencloudio/common-service-operator", - "popularity": 317405.0 + "popularity": 284079.0 }, { "name": "service-catalog", "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", - "popularity": 330506.0 + "popularity": 330422.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 } ] }, @@ -18986,27 +18924,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -19097,27 +19035,27 @@ { "name": "apicurio-studio-api", "url": "https://quay.io/repository/apicurio/apicurio-studio-api", - "popularity": 14648.0 + "popularity": 13688.0 }, { "name": "dev-platform-package", "url": "https://quay.io/repository/failk8s/dev-platform-package", - "popularity": 8722.0 + "popularity": 8739.0 }, { "name": "contour-package", "url": "https://quay.io/repository/failk8s/contour-package", - "popularity": 8724.0 + "popularity": 8741.0 }, { "name": "apicurio-studio-ui", "url": "https://quay.io/repository/apicurio/apicurio-studio-ui", - "popularity": 10780.0 + "popularity": 9386.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 335511.0 + "popularity": 380580.0 } ] }, @@ -19137,7 +19075,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 4810, + "star_count": 4819, "Docker_Url": "https://hub.docker.com/_/wordpress", "OS": [ { @@ -19151,7 +19089,7 @@ { "Class": "OS", "Architecture": "arm", - "Variants": "v5", + "Variants": "v6", "Versions": null, "Type": "linux", "Subtype": "" @@ -19180,14 +19118,6 @@ "Type": "linux", "Subtype": "" }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, { "Class": "OS", "Architecture": "ppc64le", @@ -19249,7 +19179,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 4810, + "star_count": 4819, "Docker_Url": "https://hub.docker.com/_/wordpress", "OS": [ { @@ -19263,7 +19193,7 @@ { "Class": "OS", "Architecture": "arm", - "Variants": "v5", + "Variants": "v6", "Versions": null, "Type": "linux", "Subtype": "" @@ -19292,14 +19222,6 @@ "Type": "linux", "Subtype": "" }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, { "Class": "OS", "Architecture": "ppc64le", @@ -19323,7 +19245,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, + "star_count": 1, "Docker_Url": "https://hub.docker.com/r/bitnami/wordpress-intel", "OS": [ { @@ -19361,7 +19283,7 @@ { "name": "wordpress", "url": "https://quay.io/repository/redhattraining/wordpress", - "popularity": 6242.0 + "popularity": 7185.0 }, { "name": "wordpress", @@ -19371,22 +19293,22 @@ { "name": "wordpress", "url": "https://quay.io/repository/uninett/wordpress", - "popularity": 7.0 + "popularity": 0.0 }, { "name": "wordpress", "url": "https://quay.io/repository/ashish11_ibm/wordpress", - "popularity": 763.0 + "popularity": 765.0 }, { "name": "wordpress", "url": "https://quay.io/repository/cellosofia/wordpress", - "popularity": 177.0 + "popularity": 170.0 }, { "name": "wordpress", "url": "https://quay.io/repository/swsmirror/wordpress", - "popularity": 1.0 + "popularity": 0.0 }, { "name": "wordpress", @@ -19408,27 +19330,27 @@ { "name": "wordpress", "url": "https://quay.io/repository/redhattraining/wordpress", - "popularity": 6242.0 + "popularity": 7185.0 }, { "name": "wordpress-runtime", "url": "https://quay.io/repository/presslabs/wordpress-runtime", - "popularity": 166.0 + "popularity": 148.0 }, { "name": "wordpress", "url": "https://quay.io/repository/ashish11_ibm/wordpress", - "popularity": 763.0 + "popularity": 765.0 }, { "name": "fbg-wordpress", "url": "https://quay.io/repository/traber/fbg-wordpress", - "popularity": 170.0 + "popularity": 168.0 }, { "name": "wordpress", "url": "https://quay.io/repository/cellosofia/wordpress", - "popularity": 177.0 + "popularity": 170.0 } ] }, @@ -19473,7 +19395,7 @@ { "name": "daemon", "url": "https://quay.io/repository/ceph/daemon", - "popularity": 3450.0 + "popularity": 9604.0 }, { "name": "enablement-zap", @@ -19481,14 +19403,14 @@ "popularity": 0.0 }, { - "name": "zap-full-scan", - "url": "https://quay.io/repository/trickest/zap-full-scan", - "popularity": 2.0 + "name": "owasp-zap", + "url": "https://quay.io/repository/geodannl/owasp-zap", + "popularity": 0.0 }, { "name": "ark-server", "url": "https://quay.io/repository/hermsi1337/ark-server", - "popularity": 5.0 + "popularity": 3.0 } ] }, @@ -19575,29 +19497,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "memcached-exporter", - "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 65896.0 + "name": "virtual-environments", + "url": "https://quay.io/repository/catthehacker/virtual-environments", + "popularity": 52890.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183418.0 + "popularity": 183645.0 + }, + { + "name": "memcached-exporter", + "url": "https://quay.io/repository/prometheus/memcached-exporter", + "popularity": 82319.0 }, { "name": "kata-deploy", "url": "https://quay.io/repository/kata-containers/kata-deploy", - "popularity": 7211.0 + "popularity": 15324.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 19079.0 - }, - { - "name": "daemon", - "url": "https://quay.io/repository/ceph/daemon", - "popularity": 3450.0 + "popularity": 17355.0 } ] }, @@ -19707,27 +19629,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -19880,27 +19802,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -20010,27 +19932,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -20140,27 +20062,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -20215,22 +20137,6 @@ "Versions": null, "Type": "linux", "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" } ] }, @@ -20239,7 +20145,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 4, + "star_count": 3, "Docker_Url": "https://hub.docker.com/r/circleci/elixir", "OS": [ { @@ -20278,27 +20184,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -20408,27 +20314,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -20451,26 +20357,26 @@ { "name": "solver-rhel-8-py36", "url": "https://quay.io/repository/thoth-station/solver-rhel-8-py36", - "popularity": 2178.0 + "popularity": 2102.0 }, { "name": "solver-rhel-8-py38", "url": "https://quay.io/repository/thoth-station/solver-rhel-8-py38", - "popularity": 2177.0 + "popularity": 2104.0 }, { "name": "solver-fedora-34-py39", "url": "https://quay.io/repository/thoth-station/solver-fedora-34-py39", - "popularity": 2178.0 + "popularity": 2104.0 }, { "name": "solver-fedora-35-py310", "url": "https://quay.io/repository/thoth-station/solver-fedora-35-py310", - "popularity": 836.0 + "popularity": 1186.0 }, { - "name": "solver-error-classifier-job", - "url": "https://quay.io/repository/thoth-station/solver-error-classifier-job", + "name": "solver-project-url-job", + "url": "https://quay.io/repository/thoth-station/solver-project-url-job", "popularity": 6.0 } ] @@ -20505,12 +20411,12 @@ { "name": "ara-api", "url": "https://quay.io/repository/recordsansible/ara-api", - "popularity": 1160.0 + "popularity": 1211.0 }, { "name": "mailman-web", "url": "https://quay.io/repository/maxking/mailman-web", - "popularity": 23.0 + "popularity": 1.0 }, { "name": "mailman-core", @@ -20523,9 +20429,9 @@ "popularity": 738.0 }, { - "name": "sqlite-backup-tool", - "url": "https://quay.io/repository/remram44/sqlite-backup-tool", - "popularity": 11.0 + "name": "freshrss", + "url": "https://quay.io/repository/thegeeklab/freshrss", + "popularity": 3.0 } ] }, @@ -20548,27 +20454,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 }, { "name": "nginx-ingress-controller", "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1153447.0 + "popularity": 1214037.0 } ] }, @@ -20607,7 +20513,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 3358, + "star_count": 3361, "Docker_Url": "https://hub.docker.com/_/tomcat", "OS": [ { @@ -20633,7 +20539,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 81, + "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ { @@ -20698,27 +20604,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 826844.0 + "popularity": 883725.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412398.0 + "popularity": 403203.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 } ] }, @@ -20869,27 +20775,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -20967,27 +20873,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -21082,7 +20988,7 @@ { "name": "server", "url": "https://quay.io/repository/glassfish/server", - "popularity": 14.0 + "popularity": 29.0 } ] }, @@ -21326,49 +21232,49 @@ { "name": "haproxy", "url": "https://quay.io/repository/jduimovich0/haproxy", - "popularity": 40024.0 + "popularity": 45440.0 }, { "name": "haproxy", "url": "https://quay.io/repository/openstack.kolla/haproxy", - "popularity": 1416.0 + "popularity": 2490.0 }, { "name": "haproxy", "url": "https://quay.io/repository/official-images/haproxy", - "popularity": 6.0 + "popularity": 4.0 }, { "name": "haproxy", "url": "https://quay.io/repository/karmab/haproxy", - "popularity": 807.0 + "popularity": 739.0 } ], "quay_top_images": [ { "name": "haproxy-ingress", "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", - "popularity": 929588.0 + "popularity": 909887.0 }, { "name": "haproxy", "url": "https://quay.io/repository/jduimovich0/haproxy", - "popularity": 40024.0 + "popularity": 45440.0 }, { "name": "haproxy-exporter", "url": "https://quay.io/repository/prometheus/haproxy-exporter", - "popularity": 12544.0 + "popularity": 13460.0 }, { "name": "origin-haproxy-router", "url": "https://quay.io/repository/openshift/origin-haproxy-router", - "popularity": 6924.0 + "popularity": 6245.0 }, { "name": "haproxy", "url": "https://quay.io/repository/openstack.kolla/haproxy", - "popularity": 1416.0 + "popularity": 2490.0 } ] }, @@ -21449,7 +21355,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 17, + "star_count": 18, "Docker_Url": "https://hub.docker.com/_/ibm-semeru-runtimes", "OS": [ { @@ -21494,27 +21400,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 } ] }, @@ -21560,27 +21466,27 @@ { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 }, { "name": "jboss-eap-6.4-switchyard", "url": "https://quay.io/repository/ubpo/jboss-eap-6.4-switchyard", - "popularity": 3360.0 + "popularity": 3350.0 }, { "name": "jboss-kie-mysql-extension-openshift-image", "url": "https://quay.io/repository/kiegroup/jboss-kie-mysql-extension-openshift-image", - "popularity": 2495.0 - }, - { - "name": "egeria", - "url": "https://quay.io/repository/odpi/egeria", - "popularity": 550.0 + "popularity": 2608.0 }, { "name": "wildfly", "url": "https://quay.io/repository/wildfly/wildfly", - "popularity": 5428.0 + "popularity": 7410.0 + }, + { + "name": "business-central-workbench-showcase", + "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", + "popularity": 637.0 } ] }, @@ -21603,27 +21509,27 @@ { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 }, { "name": "jboss-eap-6.4-switchyard", "url": "https://quay.io/repository/ubpo/jboss-eap-6.4-switchyard", - "popularity": 3360.0 + "popularity": 3350.0 }, { "name": "jboss-kie-mysql-extension-openshift-image", "url": "https://quay.io/repository/kiegroup/jboss-kie-mysql-extension-openshift-image", - "popularity": 2495.0 - }, - { - "name": "egeria", - "url": "https://quay.io/repository/odpi/egeria", - "popularity": 550.0 + "popularity": 2608.0 }, { "name": "wildfly", "url": "https://quay.io/repository/wildfly/wildfly", - "popularity": 5428.0 + "popularity": 7410.0 + }, + { + "name": "business-central-workbench-showcase", + "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", + "popularity": 637.0 } ] }, @@ -21702,6 +21608,11 @@ "url": "https://quay.io/repository/biocontainers/domino", "popularity": 0.0 }, + { + "name": "domino", + "url": "https://quay.io/repository/ryan_fuller/domino", + "popularity": 154.0 + }, { "name": "domino-nab", "url": "https://quay.io/repository/numenta/domino-nab", @@ -21713,14 +21624,9 @@ "popularity": 0.0 }, { - "name": "domino-osjs", - "url": "https://quay.io/repository/jradchenko/domino-osjs", - "popularity": 0.0 - }, - { - "name": "domino", - "url": "https://quay.io/repository/ryan_fuller/domino", - "popularity": 10.0 + "name": "ngc-rapids", + "url": "https://quay.io/repository/domino/ngc-rapids", + "popularity": 2.0 } ] }, @@ -21742,19 +21648,19 @@ { "name": "lucee", "url": "https://quay.io/repository/daemonite/lucee", - "popularity": 28.0 + "popularity": 6.0 } ], "quay_top_images": [ { "name": "lucee-shibboleth", "url": "https://quay.io/repository/daemonite/lucee-shibboleth", - "popularity": 64.0 + "popularity": 111.0 }, { "name": "lucee", "url": "https://quay.io/repository/daemonite/lucee", - "popularity": 28.0 + "popularity": 6.0 }, { "name": "alpine-lucee", @@ -21829,27 +21735,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "application-service", "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 72875.0 + "popularity": 116853.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -21927,27 +21833,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { - "name": "mongodb-enterprise-ops-manager", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", - "popularity": 142619.0 + "name": "mongodb-enterprise-operator", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", + "popularity": 148414.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -21967,7 +21873,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 17081, + "star_count": 17123, "Docker_Url": "https://hub.docker.com/_/nginx", "OS": [ { @@ -22041,7 +21947,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 136, + "star_count": 137, "Docker_Url": "https://hub.docker.com/r/bitnami/nginx", "OS": [ { @@ -22059,7 +21965,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 52, + "star_count": 55, "Docker_Url": "https://hub.docker.com/r/ubuntu/nginx", "OS": [ { @@ -22147,34 +22053,42 @@ "Subtype": "" } ] - }, + } + ], + "dockerhub_top_images": [ { - "name": "circleci/nginx", + "name": "rancher/nginx", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/circleci/nginx", + "Docker_Url": "https://hub.docker.com/r/rancher/nginx", "OS": [ { "Class": "OS", "Architecture": "amd64", "Variants": null, "Versions": null, - "Type": "", + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", "Subtype": "" } ] - } - ], - "dockerhub_top_images": [ + }, { - "name": "nginx", - "Official image": true, - "Verified Publisher": false, + "name": "kasmweb/nginx", + "Official image": false, + "Verified Publisher": true, "Description": "", - "star_count": 17081, - "Docker_Url": "https://hub.docker.com/_/nginx", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/nginx", "OS": [ { "Class": "OS", @@ -22186,31 +22100,43 @@ }, { "Class": "OS", - "Architecture": "arm", - "Variants": "v5", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", + "Architecture": "arm64", + "Variants": null, "Versions": null, "Type": "linux", "Subtype": "" - }, + } + ] + }, + { + "name": "bitnami/nginx", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 137, + "Docker_Url": "https://hub.docker.com/r/bitnami/nginx", + "OS": [ { "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", + "Architecture": "amd64", + "Variants": null, "Versions": null, "Type": "linux", "Subtype": "" - }, + } + ] + }, + { + "name": "ubuntu/nginx", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 55, + "Docker_Url": "https://hub.docker.com/r/ubuntu/nginx", + "OS": [ { "Class": "OS", - "Architecture": "386", + "Architecture": "amd64", "Variants": null, "Versions": null, "Type": "linux", @@ -22218,7 +22144,7 @@ }, { "Class": "OS", - "Architecture": "mips64le", + "Architecture": "s390x", "Variants": null, "Versions": null, "Type": "linux", @@ -22234,8 +22160,8 @@ }, { "Class": "OS", - "Architecture": "s390x", - "Variants": null, + "Architecture": "arm64", + "Variants": "v8", "Versions": null, "Type": "linux", "Subtype": "" @@ -22243,68 +22169,48 @@ ] }, { - "name": "circleci/nginx", - "Official image": false, - "Verified Publisher": true, + "name": "nginx", + "Official image": true, + "Verified Publisher": false, "Description": "", - "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/circleci/nginx", + "star_count": 17123, + "Docker_Url": "https://hub.docker.com/_/nginx", "OS": [ { "Class": "OS", "Architecture": "amd64", "Variants": null, "Versions": null, - "Type": "", + "Type": "linux", "Subtype": "" - } - ] - }, - { - "name": "bitnami/nginx", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 136, - "Docker_Url": "https://hub.docker.com/r/bitnami/nginx", - "OS": [ + }, { "Class": "OS", - "Architecture": "amd64", - "Variants": null, + "Architecture": "arm", + "Variants": "v5", "Versions": null, "Type": "linux", "Subtype": "" - } - ] - }, - { - "name": "ubuntu/nginx", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 52, - "Docker_Url": "https://hub.docker.com/r/ubuntu/nginx", - "OS": [ + }, { "Class": "OS", - "Architecture": "amd64", - "Variants": null, + "Architecture": "arm", + "Variants": "v7", "Versions": null, "Type": "linux", "Subtype": "" }, { "Class": "OS", - "Architecture": "s390x", - "Variants": null, + "Architecture": "arm64", + "Variants": "v8", "Versions": null, "Type": "linux", "Subtype": "" }, { "Class": "OS", - "Architecture": "ppc64le", + "Architecture": "386", "Variants": null, "Versions": null, "Type": "linux", @@ -22312,25 +22218,15 @@ }, { "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", + "Architecture": "mips64le", + "Variants": null, "Versions": null, "Type": "linux", "Subtype": "" - } - ] - }, - { - "name": "kasmweb/nginx", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/kasmweb/nginx", - "OS": [ + }, { "Class": "OS", - "Architecture": "amd64", + "Architecture": "ppc64le", "Variants": null, "Versions": null, "Type": "linux", @@ -22338,7 +22234,7 @@ }, { "Class": "OS", - "Architecture": "arm64", + "Architecture": "s390x", "Variants": null, "Versions": null, "Type": "linux", @@ -22353,69 +22249,69 @@ { "name": "nginx", "url": "https://quay.io/repository/openshift-scale/nginx", - "popularity": 89226.0 + "popularity": 91926.0 }, { "name": "nginx", - "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/nginx", - "popularity": 0.0 + "url": "https://quay.io/repository/jitesoft/nginx", + "popularity": 79034.0 }, { "name": "nginx", - "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 80338.0 + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/nginx", + "popularity": 0.0 }, { "name": "nginx", "url": "https://quay.io/repository/cloud-bulldozer/nginx", - "popularity": 205743.0 + "popularity": 88855.0 }, { "name": "nginx", "url": "https://quay.io/repository/ocsci/nginx", - "popularity": 26367.0 + "popularity": 16125.0 }, { "name": "nginx", "url": "https://quay.io/repository/bedrock/nginx", - "popularity": 30433.0 + "popularity": 30560.0 }, { "name": "nginx", - "url": "https://quay.io/repository/testing-farm/nginx", - "popularity": 7833.0 + "url": "https://quay.io/repository/aptible/nginx", + "popularity": 25109.0 }, { "name": "nginx", - "url": "https://quay.io/repository/aptible/nginx", - "popularity": 17063.0 + "url": "https://quay.io/repository/testing-farm/nginx", + "popularity": 7887.0 } ], "quay_top_images": [ { "name": "nginx-ingress-controller", "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1153447.0 + "popularity": 1214037.0 }, { "name": "nginx-116-centos7", "url": "https://quay.io/repository/centos7/nginx-116-centos7", - "popularity": 158502.0 + "popularity": 158256.0 }, { "name": "nginx-proxy", "url": "https://quay.io/repository/ukhomeofficedigital/nginx-proxy", - "popularity": 90012.0 + "popularity": 89079.0 }, { "name": "nginx", "url": "https://quay.io/repository/openshift-scale/nginx", - "popularity": 89226.0 + "popularity": 91926.0 }, { "name": "nginx", "url": "https://quay.io/repository/cloud-bulldozer/nginx", - "popularity": 205743.0 + "popularity": 88855.0 } ] }, @@ -22496,27 +22392,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "application-service", "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 72875.0 + "popularity": 116853.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -22549,104 +22445,6 @@ "Subtype": "" } ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "okd-content", - "url": "https://quay.io/repository/openshift/okd-content", - "popularity": 9422045.0 - }, - { - "name": "node-exporter", - "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 - }, - { - "name": "shadowbox", - "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 - }, - { - "name": "wildfly-runtime-centos7", - "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 8, - "entity_id": 276 - }, - { - "Pivotal tc Server": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "rancher/server", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "rancher/server-base", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/rancher/server-base", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "circleci/server-nomad", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] }, { "name": "atlassian/server-client-plugins", @@ -22671,30 +22469,146 @@ { "quay_exact_images": [], "quay_top_images": [ + { + "name": "okd-content", + "url": "https://quay.io/repository/openshift/okd-content", + "popularity": 9313637.0 + }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 + }, + { + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2524052.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 276 + }, + { + "Pivotal tc Server": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "rancher/server", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 602, + "Docker_Url": "https://hub.docker.com/r/rancher/server", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "rancher/server-base", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/server-base", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/server-nomad", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 28649423.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5908670.0 + }, + { + "name": "shadowbox", + "url": "https://quay.io/repository/outline/shadowbox", + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -22754,27 +22668,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 353182.0 + "popularity": 378922.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -22816,27 +22730,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "cap-app-proxy", "url": "https://quay.io/repository/codefresh/cap-app-proxy", - "popularity": 75183.0 + "popularity": 76322.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -22856,7 +22770,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 106, + "star_count": 108, "Docker_Url": "https://hub.docker.com/r/bitnami/spark", "OS": [ { @@ -22912,7 +22826,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 106, + "star_count": 108, "Docker_Url": "https://hub.docker.com/r/bitnami/spark", "OS": [ { @@ -22955,44 +22869,44 @@ { "name": "spark", "url": "https://quay.io/repository/diem/spark", - "popularity": 1673.0 + "popularity": 2025.0 }, { "name": "spark", "url": "https://quay.io/repository/domino/spark", - "popularity": 189.0 + "popularity": 242.0 }, { "name": "spark", "url": "https://quay.io/repository/iguazio/spark", - "popularity": 26.0 + "popularity": 33.0 } ], "quay_top_images": [ { "name": "spark-operator", "url": "https://quay.io/repository/radanalyticsio/spark-operator", - "popularity": 25798.0 + "popularity": 25565.0 }, { "name": "s2i-spark-minimal-notebook", "url": "https://quay.io/repository/odh-jupyterhub/s2i-spark-minimal-notebook", - "popularity": 23719.0 + "popularity": 25471.0 }, { "name": "s2i-spark-scipy-notebook", "url": "https://quay.io/repository/odh-jupyterhub/s2i-spark-scipy-notebook", - "popularity": 23298.0 + "popularity": 24988.0 }, { "name": "apache.spark", "url": "https://quay.io/repository/klovercloud/apache.spark", - "popularity": 12669.0 + "popularity": 18195.0 }, { - "name": "spark-environment", - "url": "https://quay.io/repository/domino/spark-environment", - "popularity": 2980.0 + "name": "spark-dependencies", + "url": "https://quay.io/repository/jaegertracing/spark-dependencies", + "popularity": 2441.0 } ] }, @@ -23138,27 +23052,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 353182.0 + "popularity": 378922.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -23181,27 +23095,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 353182.0 + "popularity": 378922.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -23261,27 +23175,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -23391,27 +23305,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "application-service", "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 72875.0 + "popularity": 116853.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -23518,30 +23432,30 @@ { "quay_exact_images": [], "quay_top_images": [ + { + "name": "open-liberty", + "url": "https://quay.io/repository/shipwright-samples/open-liberty", + "popularity": 21.0 + }, { "name": "open-liberty-certified", "url": "https://quay.io/repository/operator-pipeline-prod/open-liberty-certified", - "popularity": 336.0 + "popularity": 348.0 }, { "name": "open-liberty", "url": "https://quay.io/repository/operatorhubio/open-liberty", - "popularity": 308.0 + "popularity": 252.0 }, { - "name": "liberty-bell", - "url": "https://quay.io/repository/jakolehm/liberty-bell", - "popularity": 19.0 + "name": "open-liberty", + "url": "https://quay.io/repository/mmondics/open-liberty", + "popularity": 109.0 }, { "name": "liberty-rest", "url": "https://quay.io/repository/marrober/liberty-rest", - "popularity": 63.0 - }, - { - "name": "liberty-appimage", - "url": "https://quay.io/repository/kennedn/liberty-appimage", - "popularity": 67.0 + "popularity": 116.0 } ] }, @@ -23583,27 +23497,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -23636,92 +23550,6 @@ "Subtype": "" } ] - }, - { - "name": "ibmcom/websphere-liberty", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 22, - "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "websphere-liberty", - "Official image": true, - "Verified Publisher": false, - "Description": "", - "star_count": 286, - "Docker_Url": "https://hub.docker.com/_/websphere-liberty", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "atlassian/server-client-plugins", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] } ] }, @@ -23731,27 +23559,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "thanos", "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2534311.0 + "popularity": 2526636.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -23784,92 +23612,6 @@ "Subtype": "" } ] - }, - { - "name": "ibmcom/websphere-liberty", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 22, - "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "websphere-liberty", - "Official image": true, - "Verified Publisher": false, - "Description": "", - "star_count": 286, - "Docker_Url": "https://hub.docker.com/_/websphere-liberty", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "atlassian/server-client-plugins", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] } ] }, @@ -23879,27 +23621,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "thanos", "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2534311.0 + "popularity": 2526636.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -24011,27 +23753,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 - }, - { - "name": "oracle-12c", - "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15052.0 + "popularity": 28649423.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 65896.0 + "popularity": 82319.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20112.0 + "popularity": 20354.0 + }, + { + "name": "soketi", + "url": "https://quay.io/repository/soketi/soketi", + "popularity": 31737.0 } ] }, @@ -24074,12 +23816,12 @@ ] }, { - "name": "kaazing-gateway", + "name": "express-gateway", "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 62, - "Docker_Url": "https://hub.docker.com/_/kaazing-gateway", + "star_count": 66, + "Docker_Url": "https://hub.docker.com/_/express-gateway", "OS": [ { "Class": "OS", @@ -24096,20 +23838,10 @@ "Versions": null, "Type": "linux", "Subtype": "" - } - ] - }, - { - "name": "express-gateway", - "Official image": true, - "Verified Publisher": false, - "Description": "", - "star_count": 66, - "Docker_Url": "https://hub.docker.com/_/express-gateway", - "OS": [ + }, { "Class": "OS", - "Architecture": "amd64", + "Architecture": "ppc64le", "Variants": null, "Versions": null, "Type": "linux", @@ -24117,15 +23849,25 @@ }, { "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", + "Architecture": "s390x", + "Variants": null, "Versions": null, "Type": "linux", "Subtype": "" - }, + } + ] + }, + { + "name": "kaazing-gateway", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 62, + "Docker_Url": "https://hub.docker.com/_/kaazing-gateway", + "OS": [ { "Class": "OS", - "Architecture": "ppc64le", + "Architecture": "amd64", "Variants": null, "Versions": null, "Type": "linux", @@ -24133,8 +23875,8 @@ }, { "Class": "OS", - "Architecture": "s390x", - "Variants": null, + "Architecture": "arm64", + "Variants": "v8", "Versions": null, "Type": "linux", "Subtype": "" @@ -24146,7 +23888,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 23, + "star_count": 24, "Docker_Url": "https://hub.docker.com/r/wallarm/api-firewall", "OS": [ { @@ -24196,7 +23938,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 17, + "star_count": 18, "Docker_Url": "https://hub.docker.com/_/api-firewall", "OS": [ { @@ -24233,27 +23975,27 @@ { "name": "gateway", "url": "https://quay.io/repository/solo-io/gateway", - "popularity": 190213.0 + "popularity": 345983.0 }, { "name": "ibm-platform-api-operator", "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", - "popularity": 47566.0 + "popularity": 36619.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 - }, - { - "name": "insights-api", - "url": "https://quay.io/repository/fairwinds/insights-api", - "popularity": 31210.0 + "popularity": 5908670.0 }, { "name": "k8s-sidecar", "url": "https://quay.io/repository/kiwigrid/k8s-sidecar", - "popularity": 1320477.0 + "popularity": 1297028.0 + }, + { + "name": "third-party-api-resolver-server", + "url": "https://quay.io/repository/decentraland/third-party-api-resolver-server", + "popularity": 52834.0 } ] }, @@ -24295,27 +24037,27 @@ { "name": "citrix-k8s-ingress-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", - "popularity": 137872.0 + "popularity": 138781.0 }, { "name": "citrix-k8s-node-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", - "popularity": 41494.0 + "popularity": 39371.0 }, { "name": "citrix-adc-metrics-exporter", "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", - "popularity": 39011.0 + "popularity": 39329.0 }, { "name": "citrix-observability-exporter", "url": "https://quay.io/repository/citrix/citrix-observability-exporter", - "popularity": 1975.0 + "popularity": 2000.0 }, { "name": "citrix-k8s-cpx-ingress", "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", - "popularity": 460.0 + "popularity": 391.0 } ] }, @@ -24357,27 +24099,27 @@ { "name": "citrix-k8s-ingress-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", - "popularity": 137872.0 + "popularity": 138781.0 }, { "name": "citrix-k8s-node-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", - "popularity": 41494.0 + "popularity": 39371.0 }, { "name": "citrix-adc-metrics-exporter", "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", - "popularity": 39011.0 + "popularity": 39329.0 }, { "name": "citrix-observability-exporter", "url": "https://quay.io/repository/citrix/citrix-observability-exporter", - "popularity": 1975.0 + "popularity": 2000.0 }, { "name": "citrix-k8s-cpx-ingress", "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", - "popularity": 460.0 + "popularity": 391.0 } ] }, @@ -24397,11 +24139,6 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "hildafrederica", - "url": "https://quay.io/repository/hfredca/hildafrederica", - "popularity": 0.0 - }, { "name": "viva99situsjudionline", "url": "https://quay.io/repository/kimjoohon98/viva99situsjudionline", @@ -24412,6 +24149,11 @@ "url": "https://quay.io/repository/elixirclinictcr1/12", "popularity": 0.0 }, + { + "name": "hildafrederica", + "url": "https://quay.io/repository/hfredca/hildafrederica", + "popularity": 0.0 + }, { "name": "viva99char", "url": "https://quay.io/repository/viva99char/viva99char", @@ -24462,27 +24204,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 } ] }, @@ -24505,27 +24247,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { - "name": "ibm-events-operator", - "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 403014.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 } ] }, @@ -24548,27 +24290,27 @@ { "name": "hacbs-jvm-build-request-processor", "url": "https://quay.io/repository/redhat-appstudio/hacbs-jvm-build-request-processor", - "popularity": 461.0 + "popularity": 5685.0 + }, + { + "name": "hacbs-jvm-build-request-processor", + "url": "https://quay.io/repository/sdouglas/hacbs-jvm-build-request-processor", + "popularity": 767.0 }, { "name": "visa-processor", "url": "https://quay.io/repository/rhacs-demo/visa-processor", - "popularity": 1208.0 + "popularity": 1607.0 }, { "name": "mastercard-processor", "url": "https://quay.io/repository/rhacs-demo/mastercard-processor", - "popularity": 670.0 - }, - { - "name": "hacbs-jvm-build-request-processor", - "url": "https://quay.io/repository/gabemontero/hacbs-jvm-build-request-processor", - "popularity": 349.0 + "popularity": 875.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8725.0 + "popularity": 8041.0 } ] }, @@ -24610,27 +24352,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 }, { "name": "samtools", "url": "https://quay.io/repository/biocontainers/samtools", - "popularity": 47366.0 + "popularity": 109822.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 } ] }, @@ -24742,27 +24484,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15052.0 + "popularity": 15042.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 6801.0 + "popularity": 3550.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20112.0 + "popularity": 20354.0 }, { "name": "edb-postgres-advanced", "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 13004.0 + "popularity": 13582.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 19079.0 + "popularity": 17355.0 } ] }, @@ -24808,27 +24550,27 @@ { "name": "gawk", "url": "https://quay.io/repository/biocontainers/gawk", - "popularity": 2812.0 + "popularity": 12927.0 }, { "name": "nfs-client-provisioner", "url": "https://quay.io/repository/vbouchaud/nfs-client-provisioner", - "popularity": 2310.0 + "popularity": 4650.0 }, { "name": "kie-server-showcase", "url": "https://quay.io/repository/kiegroup/kie-server-showcase", - "popularity": 661.0 + "popularity": 704.0 }, { "name": "bioawk", "url": "https://quay.io/repository/biocontainers/bioawk", - "popularity": 426.0 + "popularity": 280.0 }, { - "name": "ubuntu", - "url": "https://quay.io/repository/ibm/ubuntu", - "popularity": 14.0 + "name": "php", + "url": "https://quay.io/repository/islamic-network/php", + "popularity": 30.0 } ] }, @@ -24850,34 +24592,34 @@ { "name": "basic", "url": "https://quay.io/repository/biocontainers/basic", - "popularity": 420.0 + "popularity": 410.0 } ], "quay_top_images": [ { "name": "nginx-basic-auth-proxy", "url": "https://quay.io/repository/dtan4/nginx-basic-auth-proxy", - "popularity": 6015.0 + "popularity": 6316.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 80338.0 - }, - { - "name": "pushgateway", - "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 79034.0 }, { "name": "basic-ocp-demo", "url": "https://quay.io/repository/freedomben/basic-ocp-demo", - "popularity": 1050.0 + "popularity": 1694.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 30456.0 }, { "name": "haproxy-exporter", "url": "https://quay.io/repository/prometheus/haproxy-exporter", - "popularity": 12544.0 + "popularity": 13460.0 } ] }, @@ -25267,19 +25009,12 @@ "stars": 12, "display_name": "Knative Operator", "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", - "version": "1.5.1", + "version": "1.6.0", "deprecated": false, "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656460800, + "ts": 1626134400, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -25415,19 +25150,19 @@ "stars": 7, "display_name": "Grafana Operator", "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", - "version": "4.4.1", + "version": "4.5.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 4, "high": 0, "medium": 3, - "unknown": 1, + "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1652090412, + "ts": 1657706412, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -25442,7 +25177,7 @@ }, "git_repos": "https://github.com/grafana-operator/grafana-operator", "container_images": [ - "quay.io/grafana-operator/grafana-operator:v4.4.1" + "quay.io/grafana-operator/grafana-operator:v4.5.0" ] }, { @@ -25581,7 +25316,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": null, + "git_repos": "https://fluxcd.io/docs/", "container_images": [] }, { @@ -26021,19 +25756,12 @@ "stars": 12, "display_name": "Knative Operator", "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", - "version": "1.5.1", + "version": "1.6.0", "deprecated": false, "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656460800, + "ts": 1626134400, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -26169,19 +25897,19 @@ "stars": 7, "display_name": "Grafana Operator", "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", - "version": "4.4.1", + "version": "4.5.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 4, "high": 0, "medium": 3, - "unknown": 1, + "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1652090412, + "ts": 1657706412, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -26196,7 +25924,7 @@ }, "git_repos": "https://github.com/grafana-operator/grafana-operator", "container_images": [ - "quay.io/grafana-operator/grafana-operator:v4.4.1" + "quay.io/grafana-operator/grafana-operator:v4.5.0" ] }, { @@ -26335,7 +26063,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": null, + "git_repos": "https://fluxcd.io/docs/", "container_images": [] }, { @@ -26775,19 +26503,12 @@ "stars": 12, "display_name": "Knative Operator", "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", - "version": "1.5.1", + "version": "1.6.0", "deprecated": false, "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656460800, + "ts": 1626134400, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -26923,19 +26644,19 @@ "stars": 7, "display_name": "Grafana Operator", "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", - "version": "4.4.1", + "version": "4.5.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 4, "high": 0, "medium": 3, - "unknown": 1, + "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1652090412, + "ts": 1657706412, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -26950,7 +26671,7 @@ }, "git_repos": "https://github.com/grafana-operator/grafana-operator", "container_images": [ - "quay.io/grafana-operator/grafana-operator:v4.4.1" + "quay.io/grafana-operator/grafana-operator:v4.5.0" ] }, { @@ -27089,7 +26810,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": null, + "git_repos": "https://fluxcd.io/docs/", "container_images": [] }, { @@ -27218,12 +26939,12 @@ { "name": "visual-qontract", "url": "https://quay.io/repository/app-sre/visual-qontract", - "popularity": 4012.0 + "popularity": 4089.0 }, { "name": "visual-regression", "url": "https://quay.io/repository/babylonhealth/visual-regression", - "popularity": 70.0 + "popularity": 138.0 }, { "name": "ccc", @@ -27327,27 +27048,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 65896.0 + "popularity": 82319.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 70825.0 + "popularity": 102256.0 } ] }, @@ -27508,27 +27229,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 }, { "name": "spicedb", "url": "https://quay.io/repository/authzed/spicedb", - "popularity": 12045.0 + "popularity": 13555.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8725.0 + "popularity": 8041.0 } ] }, @@ -27551,27 +27272,27 @@ { "name": "zen-data-sorcerer", "url": "https://quay.io/repository/opencloudio/zen-data-sorcerer", - "popularity": 236759.0 + "popularity": 225384.0 }, { "name": "metering-data-manager", "url": "https://quay.io/repository/opencloudio/metering-data-manager", - "popularity": 211902.0 + "popularity": 212073.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 } ] }, @@ -27594,7 +27315,7 @@ { "name": "delphi-council-is", "url": "https://quay.io/repository/klenkes74/delphi-council-is", - "popularity": 1848.0 + "popularity": 1882.0 } ] }, @@ -27640,27 +27361,27 @@ { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 - }, - { - "name": "expect", - "url": "https://quay.io/repository/baseimage/expect", - "popularity": 0.0 + "popularity": 90723.0 }, { "name": "roundcube", "url": "https://quay.io/repository/instrumentisto/roundcube", - "popularity": 0.0 + "popularity": 1.0 }, { "name": "php", "url": "https://quay.io/repository/islamic-network/php", - "popularity": 9.0 + "popularity": 30.0 + }, + { + "name": "fastq-screen", + "url": "https://quay.io/repository/biocontainers/fastq-screen", + "popularity": 13.0 }, { "name": "exporter-merger", "url": "https://quay.io/repository/jkreileder/exporter-merger", - "popularity": 9.0 + "popularity": 3.0 } ] }, @@ -27720,27 +27441,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 }, { "name": "gateway", "url": "https://quay.io/repository/bluecat/gateway", - "popularity": 20475.0 + "popularity": 20583.0 } ] }, @@ -27800,27 +27521,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 }, { "name": "gateway", "url": "https://quay.io/repository/bluecat/gateway", - "popularity": 20475.0 + "popularity": 20583.0 } ] }, @@ -27880,27 +27601,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 }, { "name": "gateway", "url": "https://quay.io/repository/bluecat/gateway", - "popularity": 20475.0 + "popularity": 20583.0 } ] }, @@ -27960,27 +27681,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 }, { "name": "gateway", "url": "https://quay.io/repository/bluecat/gateway", - "popularity": 20475.0 + "popularity": 20583.0 } ] }, @@ -28040,27 +27761,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 }, { "name": "gateway", "url": "https://quay.io/repository/bluecat/gateway", - "popularity": 20475.0 + "popularity": 20583.0 } ] }, @@ -28086,30 +27807,30 @@ } ], "quay_top_images": [ - { - "name": "ruby", - "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/ruby", - "popularity": 0.0 - }, { "name": "bioconductor-affyio", "url": "https://quay.io/repository/biocontainers/bioconductor-affyio", - "popularity": 756.0 + "popularity": 720.0 }, { "name": "sogo", "url": "https://quay.io/repository/sheogorath/sogo", - "popularity": 6.0 + "popularity": 4.0 + }, + { + "name": "uptime-kuma", + "url": "https://quay.io/repository/k3rnel-pan1c/uptime-kuma", + "popularity": 160.0 }, { "name": "web-archives", "url": "https://quay.io/repository/glamworkbench/web-archives", - "popularity": 2.0 + "popularity": 4.0 }, { - "name": "uptime-kuma", - "url": "https://quay.io/repository/k3rnel-pan1c/uptime-kuma", - "popularity": 58.0 + "name": "anu-archives", + "url": "https://quay.io/repository/glamworkbench/anu-archives", + "popularity": 2.0 } ] }, @@ -28123,19 +27844,12 @@ "stars": 12, "display_name": "Knative Operator", "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", - "version": "1.5.1", + "version": "1.6.0", "deprecated": false, "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656460800, + "ts": 1626134400, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -28318,7 +28032,7 @@ "stars": 0, "display_name": "External Secrets Operator", "description": "Operator to configure external-secrets helm-chart based operator", - "version": "0.5.7", + "version": "0.5.8", "deprecated": false, "signed": false, "security_report_summary": { @@ -28511,27 +28225,27 @@ { "name": "model-graphql", "url": "https://quay.io/repository/sisense/model-graphql", - "popularity": 2057.0 + "popularity": 1731.0 }, { "name": "graphql-api", "url": "https://quay.io/repository/stoplight/graphql-api", - "popularity": 2240.0 + "popularity": 3150.0 }, { "name": "concourse-resource-github-list-repos", "url": "https://quay.io/repository/coralogix/concourse-resource-github-list-repos", - "popularity": 55422.0 + "popularity": 55307.0 }, { "name": "hasura-graphql-engine", "url": "https://quay.io/repository/ivanch77/hasura-graphql-engine", - "popularity": 218.0 + "popularity": 338.0 }, { "name": "hasura-graphql-engine", "url": "https://quay.io/repository/eskorn/hasura-graphql-engine", - "popularity": 258.0 + "popularity": 338.0 } ] }, @@ -28596,7 +28310,7 @@ { "name": "groovy", "url": "https://quay.io/repository/swsmirror/groovy", - "popularity": 1.0 + "popularity": 0.0 }, { "name": "groovy", @@ -28613,21 +28327,21 @@ { "name": "groovy", "url": "https://quay.io/repository/swsmirror/groovy", - "popularity": 1.0 + "popularity": 0.0 }, { "name": "defectdojo-client", "url": "https://quay.io/repository/sdase/defectdojo-client", - "popularity": 5805.0 + "popularity": 5823.0 }, { - "name": "ansible-groovy", - "url": "https://quay.io/repository/andrewrothstein/ansible-groovy", + "name": "groovy", + "url": "https://quay.io/repository/dockerlibrary/groovy", "popularity": 0.0 }, { - "name": "groovy", - "url": "https://quay.io/repository/dockerlibrary/groovy", + "name": "ansible-groovy", + "url": "https://quay.io/repository/andrewrothstein/ansible-groovy", "popularity": 0.0 } ] @@ -28705,27 +28419,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 }, { "name": "kafka-bridge", "url": "https://quay.io/repository/strimzi/kafka-bridge", - "popularity": 14377.0 + "popularity": 14244.0 }, { "name": "spicedb", "url": "https://quay.io/repository/authzed/spicedb", - "popularity": 12045.0 + "popularity": 13555.0 } ] }, @@ -28767,6 +28481,32 @@ } ] }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, { "name": "ibmcom/ibm-operator-catalog", "Official image": false, @@ -28806,7 +28546,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 17, + "star_count": 18, "Docker_Url": "https://hub.docker.com/_/ibm-semeru-runtimes", "OS": [ { @@ -28851,27 +28591,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 } ] }, @@ -28952,7 +28692,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 17, + "star_count": 18, "Docker_Url": "https://hub.docker.com/_/ibm-semeru-runtimes", "OS": [ { @@ -28997,27 +28737,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 } ] }, @@ -29127,27 +28867,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -29219,12 +28959,12 @@ ], "dockerhub_top_images": [ { - "name": "circleci/java", - "Official image": false, - "Verified Publisher": true, + "name": "java", + "Official image": true, + "Verified Publisher": false, "Description": "", - "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/circleci/java", + "star_count": 1976, + "Docker_Url": "https://hub.docker.com/_/java", "OS": [ { "Class": "OS", @@ -29255,12 +28995,12 @@ ] }, { - "name": "java", - "Official image": true, - "Verified Publisher": false, + "name": "circleci/java", + "Official image": false, + "Verified Publisher": true, "Description": "", - "star_count": 1976, - "Docker_Url": "https://hub.docker.com/_/java", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/circleci/java", "OS": [ { "Class": "OS", @@ -29299,12 +29039,12 @@ ] }, { - "name": "circleci/java-nginx", + "name": "appdynamics/java-agent", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/circleci/java-nginx", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/appdynamics/java-agent", "OS": [ { "Class": "OS", @@ -29323,44 +29063,44 @@ { "name": "java", "url": "https://quay.io/repository/tamr/java", - "popularity": 492.0 + "popularity": 480.0 }, { "name": "java", "url": "https://quay.io/repository/enxadahost/java", - "popularity": 19927.0 + "popularity": 21708.0 }, { "name": "java", "url": "https://quay.io/repository/reishost/java", - "popularity": 3686.0 + "popularity": 4728.0 } ], "quay_top_images": [ { "name": "java", "url": "https://quay.io/repository/enxadahost/java", - "popularity": 19927.0 + "popularity": 21708.0 }, { "name": "docker-java-swiss-knife", "url": "https://quay.io/repository/scentbird/docker-java-swiss-knife", - "popularity": 9651.0 + "popularity": 7657.0 }, { "name": "jkube-java", "url": "https://quay.io/repository/jkube/jkube-java", - "popularity": 4274.0 + "popularity": 4537.0 }, { "name": "java", "url": "https://quay.io/repository/reishost/java", - "popularity": 3686.0 + "popularity": 4728.0 }, { "name": "ubi-quarkus-native-s2i", "url": "https://quay.io/repository/quarkus/ubi-quarkus-native-s2i", - "popularity": 35834.0 + "popularity": 35973.0 } ] }, @@ -29404,111 +29144,6 @@ "quay.io/wildfly/wildfly-operator:0.5.3" ] }, - { - "package_id": "57488c09-4b44-4ba8-aeed-2c141cf0b30e", - "name": "eclipse-che", - "normalized_name": "eclipse-che", - "logo_image_id": "f2ea20a6-ebd1-42f6-b7e7-b9dd0f36bd22", - "stars": 3, - "display_name": "Eclipse Che", - "description": "A Kube-native development solution that delivers portable and collaborative developer workspaces.", - "version": "7.39.2", - "deprecated": false, - "signed": false, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1637755976, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/eclipse-che/che-operator", - "container_images": [ - "quay.io/eclipse/che-operator", - "quay.io/che-incubator/configbump", - "quay.io/che-incubator/header-rewrite-proxy", - "quay.io/devfile/devworkspace-controller", - "quay.io/eclipse/che--centos--postgresql-13-centos7", - "quay.io/eclipse/che--centos--postgresql-96-centos7", - "quay.io/eclipse/che--traefik", - "quay.io/eclipse/che-backup-server-rest", - "quay.io/eclipse/che-dashboard", - "quay.io/eclipse/che-devfile-registry", - "quay.io/eclipse/che-jwtproxy", - "quay.io/eclipse/che-keycloak", - "quay.io/eclipse/che-plugin-artifacts-broker", - "quay.io/eclipse/che-plugin-metadata-broker", - "quay.io/eclipse/che-plugin-registry", - "quay.io/eclipse/che-server", - "quay.io/eclipse/che-tls-secret-creator", - "quay.io/openshift/origin-kube-rbac-proxy", - "quay.io/openshift/origin-oauth-proxy", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/windupeng/mta-vscode-extension", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-theia", - "quay.io/eclipse/che-machine-exec", - "quay.io/eclipse/che-theia-endpoint-runtime-binary", - "index.docker.io/ksmster/che-editor-jupyter", - "index.docker.io/dirigiblelabs/dirigible-openshift", - "quay.io/che-incubator/che-idea", - "quay.io/che-incubator/che-pycharm", - "index.docker.io/wsskeleton/eclipse-broadway", - "index.docker.io/codercom/code-server", - "quay.io/eclipse/che-buildah-base", - "quay.io/eclipse/che-sidecar-workspace-data-sync", - "quay.io/eclipse/che-buildkit-base", - "quay.io/eclipse/che--centos--mongodb-36-centos7", - "quay.io/eclipse/che--centos--mongodb-36-centos7", - "quay.io/eclipse/che--centos--mysql-57-centos7", - "quay.io/eclipse/che-cpp-rhel7", - "quay.io/eclipse/che-dotnet-2.2", - "quay.io/eclipse/che-dotnet-3.1", - "quay.io/eclipse/che-golang-1.17", - "quay.io/eclipse/che-java11-gradle", - "quay.io/eclipse/che-java11-maven", - "quay.io/eclipse/che-java8-maven", - "quay.io/eclipse/che-nodejs10-community", - "quay.io/eclipse/che-nodejs10-ubi", - "quay.io/eclipse/che-nodejs12-community", - "quay.io/eclipse/che-nodejs8-centos", - "quay.io/eclipse/che-php-7", - "quay.io/eclipse/che-python-3.8", - "quay.io/eclipse/che-quarkus", - "quay.io/eclipse/che-rust-1.39" - ] - }, { "package_id": "e1d953c6-0d94-4f74-b053-dfc343b8f64b", "name": "atlasmap-operator", @@ -29748,27 +29383,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 }, { "name": "gateway", "url": "https://quay.io/repository/bluecat/gateway", - "popularity": 20475.0 + "popularity": 20583.0 } ] }, @@ -29882,27 +29517,27 @@ { "name": "mongodb-enterprise-database", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", - "popularity": 118389.0 + "popularity": 101454.0 }, { "name": "mongodb-enterprise-ops-manager", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", - "popularity": 142619.0 + "popularity": 86254.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 74259.0 + "popularity": 148414.0 }, { - "name": "mongodb-enterprise-appdb", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-appdb", - "popularity": 63629.0 + "name": "java", + "url": "https://quay.io/repository/enxadahost/java", + "popularity": 21708.0 }, { - "name": "mongodb-enterprise-init-ops-manager", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-init-ops-manager", - "popularity": 20087.0 + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 29981.0 } ] }, @@ -30024,27 +29659,27 @@ { "name": "standard-environment", "url": "https://quay.io/repository/domino/standard-environment", - "popularity": 55752.0 + "popularity": 53544.0 }, { "name": "java", "url": "https://quay.io/repository/enxadahost/java", - "popularity": 19927.0 - }, - { - "name": "docker-java-swiss-knife", - "url": "https://quay.io/repository/scentbird/docker-java-swiss-knife", - "popularity": 9651.0 + "popularity": 21708.0 }, { "name": "teleport", "url": "https://quay.io/repository/gravitational/teleport", - "popularity": 157544.0 + "popularity": 145184.0 }, { "name": "audit-syslog-service", "url": "https://quay.io/repository/opencloudio/audit-syslog-service", - "popularity": 74047.0 + "popularity": 130197.0 + }, + { + "name": "ubi-quarkus-native-s2i", + "url": "https://quay.io/repository/quarkus/ubi-quarkus-native-s2i", + "popularity": 35973.0 } ] }, @@ -30067,27 +29702,27 @@ { "name": "custom-error-pages-amd64", "url": "https://quay.io/repository/kubernetes-ingress-controller/custom-error-pages-amd64", - "popularity": 1627.0 + "popularity": 1846.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 65896.0 + "popularity": 82319.0 }, { "name": "error-pages", "url": "https://quay.io/repository/fivium/error-pages", - "popularity": 180.0 + "popularity": 252.0 }, { "name": "gitlab-pages", "url": "https://quay.io/repository/gnome_infrastructure/gitlab-pages", - "popularity": 843.0 + "popularity": 842.0 }, { - "name": "custom-error-pages", - "url": "https://quay.io/repository/kubernetes-ingress-controller/custom-error-pages", - "popularity": 142.0 + "name": "javaserver", + "url": "https://quay.io/repository/ctrack/javaserver", + "popularity": 45.0 } ] }, @@ -30110,27 +29745,27 @@ { "name": "custom-error-pages-amd64", "url": "https://quay.io/repository/kubernetes-ingress-controller/custom-error-pages-amd64", - "popularity": 1627.0 + "popularity": 1846.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 65896.0 + "popularity": 82319.0 }, { "name": "error-pages", "url": "https://quay.io/repository/fivium/error-pages", - "popularity": 180.0 + "popularity": 252.0 }, { "name": "gitlab-pages", "url": "https://quay.io/repository/gnome_infrastructure/gitlab-pages", - "popularity": 843.0 + "popularity": 842.0 }, { - "name": "custom-error-pages", - "url": "https://quay.io/repository/kubernetes-ingress-controller/custom-error-pages", - "popularity": 142.0 + "name": "javaserver", + "url": "https://quay.io/repository/ctrack/javaserver", + "popularity": 45.0 } ] }, @@ -30180,27 +29815,27 @@ { "name": "sandbox-javascript", "url": "https://quay.io/repository/redsift/sandbox-javascript", - "popularity": 88221.0 + "popularity": 115728.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 38116.0 + "popularity": 36573.0 + }, + { + "name": "node", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/node", + "popularity": 0.0 }, { "name": "ploigos-tool-javascript", "url": "https://quay.io/repository/ploigos/ploigos-tool-javascript", "popularity": 56.0 }, - { - "name": "jump-app-front-javascript", - "url": "https://quay.io/repository/acidonpe/jump-app-front-javascript", - "popularity": 76.0 - }, { "name": "loftsh-javascript-flyway", "url": "https://quay.io/repository/buildo/loftsh-javascript-flyway", - "popularity": 4.0 + "popularity": 12.0 } ] }, @@ -30307,27 +29942,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 826844.0 + "popularity": 883725.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412398.0 + "popularity": 403203.0 } ] }, @@ -30367,7 +30002,7 @@ { "name": "lisp-10-ubi8", "url": "https://quay.io/repository/containerlisp/lisp-10-ubi8", - "popularity": 336.0 + "popularity": 337.0 }, { "name": "ruby", @@ -30437,27 +30072,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 }, { "name": "spicedb", "url": "https://quay.io/repository/authzed/spicedb", - "popularity": 12045.0 + "popularity": 13555.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8725.0 + "popularity": 8041.0 } ] }, @@ -30480,7 +30115,7 @@ { "name": "sogo", "url": "https://quay.io/repository/sheogorath/sogo", - "popularity": 6.0 + "popularity": 4.0 }, { "name": "sonar-scanner-cli", @@ -30493,8 +30128,8 @@ "popularity": 0.0 }, { - "name": "prestigeparkgrove", - "url": "https://quay.io/repository/prestigeparkgrove/prestigeparkgrove", + "name": "contentwriter", + "url": "https://quay.io/repository/mackheath/contentwriter", "popularity": 0.0 }, { @@ -30551,7 +30186,7 @@ { "name": "smeeclient", "url": "https://quay.io/repository/schabrolles/smeeclient", - "popularity": 1190.0 + "popularity": 1278.0 } ] }, @@ -30574,27 +30209,27 @@ { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 374426.0 + "popularity": 382812.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 255406.0 + "popularity": 254930.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 189232.0 + "popularity": 193426.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 140143.0 + "popularity": 146710.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20112.0 + "popularity": 20354.0 } ] }, @@ -30766,39 +30401,39 @@ { "name": "perl", "url": "https://quay.io/repository/biocontainers/perl", - "popularity": 848.0 + "popularity": 448.0 }, { "name": "perl", "url": "https://quay.io/repository/swsmirror/perl", - "popularity": 1.0 + "popularity": 0.0 } ], "quay_top_images": [ { "name": "perl-530-centos7", "url": "https://quay.io/repository/centos7/perl-530-centos7", - "popularity": 221365.0 + "popularity": 225577.0 }, { "name": "docker-perl-app-base", "url": "https://quay.io/repository/wakaba/docker-perl-app-base", - "popularity": 371.0 + "popularity": 345.0 + }, + { + "name": "ci-perl", + "url": "https://quay.io/repository/travisci/ci-perl", + "popularity": 0.0 }, { "name": "perl", "url": "https://quay.io/repository/biocontainers/perl", - "popularity": 848.0 + "popularity": 448.0 }, { "name": "perl-test", "url": "https://quay.io/repository/modellaachen/perl-test", - "popularity": 4.0 - }, - { - "name": "perl", - "url": "https://quay.io/repository/swsmirror/perl", - "popularity": 1.0 + "popularity": 0.0 } ] }, @@ -30852,7 +30487,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 6659, + "star_count": 6668, "Docker_Url": "https://hub.docker.com/_/php", "OS": [ { @@ -30866,7 +30501,7 @@ { "Class": "OS", "Architecture": "arm", - "Variants": "v5", + "Variants": "v6", "Versions": null, "Type": "linux", "Subtype": "" @@ -30895,14 +30530,6 @@ "Type": "linux", "Subtype": "" }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, { "Class": "OS", "Architecture": "ppc64le", @@ -31000,7 +30627,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 6659, + "star_count": 6668, "Docker_Url": "https://hub.docker.com/_/php", "OS": [ { @@ -31014,7 +30641,7 @@ { "Class": "OS", "Architecture": "arm", - "Variants": "v5", + "Variants": "v6", "Versions": null, "Type": "linux", "Subtype": "" @@ -31043,14 +30670,6 @@ "Type": "linux", "Subtype": "" }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, { "Class": "OS", "Architecture": "ppc64le", @@ -31112,54 +30731,54 @@ { "name": "php", "url": "https://quay.io/repository/kissj/php", - "popularity": 8612.0 + "popularity": 8614.0 }, { "name": "php", "url": "https://quay.io/repository/startx/php", - "popularity": 15915.0 + "popularity": 16380.0 }, { "name": "php", "url": "https://quay.io/repository/api-platform/php", - "popularity": 650.0 + "popularity": 454.0 }, { "name": "php", "url": "https://quay.io/repository/swsmirror/php", - "popularity": 275.0 + "popularity": 339.0 }, { "name": "php", "url": "https://quay.io/repository/official-images/php", - "popularity": 22.0 + "popularity": 101.0 } ], "quay_top_images": [ { "name": "php-73-centos7", "url": "https://quay.io/repository/centos7/php-73-centos7", - "popularity": 212402.0 - }, - { - "name": "php-hello-dockerfile", - "url": "https://quay.io/repository/redhattraining/php-hello-dockerfile", - "popularity": 7765.0 + "popularity": 215385.0 }, { "name": "php", "url": "https://quay.io/repository/kissj/php", - "popularity": 8612.0 + "popularity": 8614.0 }, { "name": "php", "url": "https://quay.io/repository/startx/php", - "popularity": 15915.0 + "popularity": 16380.0 + }, + { + "name": "php-fpm_exporter", + "url": "https://quay.io/repository/cuppett/php-fpm_exporter", + "popularity": 41803.0 }, { "name": "runner-php", "url": "https://quay.io/repository/startx/runner-php", - "popularity": 8117.0 + "popularity": 8113.0 } ] }, @@ -31199,27 +30818,27 @@ { "name": "apicurio-registry-sql", "url": "https://quay.io/repository/apicurio/apicurio-registry-sql", - "popularity": 12300.0 + "popularity": 14608.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 241707.0 + "popularity": 245318.0 }, { "name": "mariadb-105-centos7", "url": "https://quay.io/repository/centos7/mariadb-105-centos7", - "popularity": 136441.0 + "popularity": 142292.0 }, { "name": "soketi", "url": "https://quay.io/repository/soketi/soketi", - "popularity": 42567.0 + "popularity": 31737.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 19079.0 + "popularity": 17355.0 } ] }, @@ -31242,12 +30861,12 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 65896.0 + "popularity": 82319.0 }, { "name": "perl-proc-fork", @@ -31255,14 +30874,14 @@ "popularity": 0.0 }, { - "name": "video-proc", - "url": "https://quay.io/repository/cirruslogicweb/video-proc", - "popularity": 0.0 + "name": "freshrss", + "url": "https://quay.io/repository/thegeeklab/freshrss", + "popularity": 3.0 }, { "name": "php-caddy", "url": "https://quay.io/repository/webhippie/php-caddy", - "popularity": 86.0 + "popularity": 31.0 } ] }, @@ -31491,7 +31110,7 @@ "stars": 0, "display_name": "AWS Controllers for Kubernetes - Amazon DynamoDB", "description": "AWS DynamoDB controller is a service controller for managing DynamoDB resources in Kubernetes", - "version": "0.1.1", + "version": "0.1.3", "deprecated": false, "signed": false, "security_report_summary": { @@ -31503,7 +31122,7 @@ }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1655314657, + "ts": 1657654650, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -32002,7 +31621,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 7678, + "star_count": 7699, "Docker_Url": "https://hub.docker.com/_/python", "OS": [ { @@ -32016,7 +31635,7 @@ { "Class": "OS", "Architecture": "arm", - "Variants": "v5", + "Variants": "v6", "Versions": null, "Type": "linux", "Subtype": "" @@ -32045,14 +31664,6 @@ "Type": "linux", "Subtype": "" }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, { "Class": "OS", "Architecture": "ppc64le", @@ -32068,22 +31679,6 @@ "Versions": null, "Type": "linux", "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.20348.768", - "Type": "windows", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.17763.3046", - "Type": "windows", - "Subtype": "" } ] }, @@ -32092,7 +31687,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 50, + "star_count": 51, "Docker_Url": "https://hub.docker.com/r/circleci/python", "OS": [ { @@ -32106,12 +31701,12 @@ ] }, { - "name": "cimg/python", + "name": "bitnami/python", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, - "Docker_Url": "https://hub.docker.com/r/cimg/python", + "star_count": 22, + "Docker_Url": "https://hub.docker.com/r/bitnami/python", "OS": [ { "Class": "OS", @@ -32124,12 +31719,12 @@ ] }, { - "name": "bitnami/python", + "name": "cimg/python", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 21, - "Docker_Url": "https://hub.docker.com/r/bitnami/python", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/cimg/python", "OS": [ { "Class": "OS", @@ -32148,7 +31743,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 7678, + "star_count": 7699, "Docker_Url": "https://hub.docker.com/_/python", "OS": [ { @@ -32162,7 +31757,7 @@ { "Class": "OS", "Architecture": "arm", - "Variants": "v5", + "Variants": "v6", "Versions": null, "Type": "linux", "Subtype": "" @@ -32191,14 +31786,6 @@ "Type": "linux", "Subtype": "" }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, { "Class": "OS", "Architecture": "ppc64le", @@ -32214,22 +31801,6 @@ "Versions": null, "Type": "linux", "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.20348.768", - "Type": "windows", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.17763.3046", - "Type": "windows", - "Subtype": "" } ] }, @@ -32238,7 +31809,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 50, + "star_count": 51, "Docker_Url": "https://hub.docker.com/r/circleci/python", "OS": [ { @@ -32252,12 +31823,12 @@ ] }, { - "name": "bitnami/python", + "name": "cimg/python", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 21, - "Docker_Url": "https://hub.docker.com/r/bitnami/python", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/cimg/python", "OS": [ { "Class": "OS", @@ -32270,12 +31841,12 @@ ] }, { - "name": "cimg/python", + "name": "bitnami/python", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, - "Docker_Url": "https://hub.docker.com/r/cimg/python", + "star_count": 22, + "Docker_Url": "https://hub.docker.com/r/bitnami/python", "OS": [ { "Class": "OS", @@ -32299,49 +31870,54 @@ { "name": "python", "url": "https://quay.io/repository/biocontainers/python", - "popularity": 4627.0 + "popularity": 4090.0 }, { "name": "python", "url": "https://quay.io/repository/cdis/python", - "popularity": 8336.0 + "popularity": 5246.0 }, { "name": "python", "url": "https://quay.io/repository/agari/python", - "popularity": 2129.0 + "popularity": 1939.0 }, { "name": "python", "url": "https://quay.io/repository/sctregistry/python", - "popularity": 1554.0 + "popularity": 1465.0 + }, + { + "name": "python", + "url": "https://quay.io/repository/mlrun/python", + "popularity": 1214.0 } ], "quay_top_images": [ { "name": "python-27-centos7", "url": "https://quay.io/repository/centos7/python-27-centos7", - "popularity": 197342.0 + "popularity": 202676.0 }, { - "name": "python", - "url": "https://quay.io/repository/biocontainers/python", - "popularity": 4627.0 - }, - { - "name": "python-predictor-gpu", - "url": "https://quay.io/repository/cortexlabs/python-predictor-gpu", - "popularity": 4848.0 + "name": "python-predictor-cpu", + "url": "https://quay.io/repository/cortexlabs/python-predictor-cpu", + "popularity": 4979.0 }, { "name": "python-nginx", "url": "https://quay.io/repository/cdis/python-nginx", - "popularity": 17682.0 + "popularity": 10155.0 + }, + { + "name": "python-predictor-gpu", + "url": "https://quay.io/repository/cortexlabs/python-predictor-gpu", + "popularity": 5165.0 }, { "name": "python", "url": "https://quay.io/repository/cdis/python", - "popularity": 8336.0 + "popularity": 5246.0 } ] }, @@ -32531,19 +32107,12 @@ "stars": 12, "display_name": "Knative Operator", "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", - "version": "1.5.1", + "version": "1.6.0", "deprecated": false, "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656460800, + "ts": 1626134400, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -32641,19 +32210,19 @@ "stars": 7, "display_name": "Grafana Operator", "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", - "version": "4.4.1", + "version": "4.5.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 4, "high": 0, "medium": 3, - "unknown": 1, + "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1652090412, + "ts": 1657706412, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -32668,7 +32237,7 @@ }, "git_repos": "https://github.com/grafana-operator/grafana-operator", "container_images": [ - "quay.io/grafana-operator/grafana-operator:v4.4.1" + "quay.io/grafana-operator/grafana-operator:v4.5.0" ] }, { @@ -33021,7 +32590,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": null, + "git_repos": "https://github.com/RedisLabs/redis-enterprise-k8s-docs", "container_images": [] }, { @@ -33133,7 +32702,7 @@ { "name": "kp-rpg-discord-bot", "url": "https://quay.io/repository/klenkes74/kp-rpg-discord-bot", - "popularity": 1687.0 + "popularity": 1706.0 } ] }, @@ -33153,7 +32722,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 2149, + "star_count": 2150, "Docker_Url": "https://hub.docker.com/_/ruby", "OS": [ { @@ -33167,7 +32736,7 @@ { "Class": "OS", "Architecture": "arm", - "Variants": "v5", + "Variants": "v6", "Versions": null, "Type": "linux", "Subtype": "" @@ -33196,14 +32765,6 @@ "Type": "linux", "Subtype": "" }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, { "Class": "OS", "Architecture": "ppc64le", @@ -33315,12 +32876,12 @@ ] }, { - "name": "bitnami/ruby", + "name": "cimg/ruby", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 21, - "Docker_Url": "https://hub.docker.com/r/bitnami/ruby", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/cimg/ruby", "OS": [ { "Class": "OS", @@ -33333,12 +32894,12 @@ ] }, { - "name": "cimg/ruby", + "name": "bitnami/ruby", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, - "Docker_Url": "https://hub.docker.com/r/cimg/ruby", + "star_count": 21, + "Docker_Url": "https://hub.docker.com/r/bitnami/ruby", "OS": [ { "Class": "OS", @@ -33373,7 +32934,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 2149, + "star_count": 2150, "Docker_Url": "https://hub.docker.com/_/ruby", "OS": [ { @@ -33387,7 +32948,7 @@ { "Class": "OS", "Architecture": "arm", - "Variants": "v5", + "Variants": "v6", "Versions": null, "Type": "linux", "Subtype": "" @@ -33416,14 +32977,6 @@ "Type": "linux", "Subtype": "" }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, { "Class": "OS", "Architecture": "ppc64le", @@ -33454,12 +33007,12 @@ { "name": "ruby", "url": "https://quay.io/repository/aptible/ruby", - "popularity": 333.0 + "popularity": 147.0 }, { "name": "ruby", "url": "https://quay.io/repository/swsmirror/ruby", - "popularity": 1.0 + "popularity": 0.0 }, { "name": "ruby", @@ -33474,12 +33027,12 @@ { "name": "ruby", "url": "https://quay.io/repository/springest/ruby", - "popularity": 20.0 + "popularity": 30.0 }, { "name": "ruby", "url": "https://quay.io/repository/forem/ruby", - "popularity": 46.0 + "popularity": 100.0 }, { "name": "ruby", @@ -33491,27 +33044,27 @@ { "name": "ruby-27-centos7", "url": "https://quay.io/repository/centos7/ruby-27-centos7", - "popularity": 251822.0 + "popularity": 254382.0 }, { "name": "ruby-26-centos7", "url": "https://quay.io/repository/centos7/ruby-26-centos7", - "popularity": 165969.0 + "popularity": 170674.0 }, { "name": "ruby-25-centos7", "url": "https://quay.io/repository/centos7/ruby-25-centos7", - "popularity": 74049.0 + "popularity": 73389.0 }, { "name": "ruby-27", "url": "https://quay.io/repository/openshifttest/ruby-27", - "popularity": 14124.0 + "popularity": 16742.0 }, { "name": "ruby-cron", "url": "https://quay.io/repository/palettecloud/ruby-cron", - "popularity": 11018.0 + "popularity": 10816.0 } ] }, @@ -33534,27 +33087,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 374426.0 + "popularity": 382812.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 255406.0 + "popularity": 254930.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 189232.0 + "popularity": 193426.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 140143.0 + "popularity": 146710.0 } ] }, @@ -33595,7 +33148,7 @@ { "name": "sas", "url": "https://quay.io/repository/domino/sas", - "popularity": 401.0 + "popularity": 276.0 }, { "name": "sas", @@ -33617,7 +33170,7 @@ { "name": "sas", "url": "https://quay.io/repository/domino/sas", - "popularity": 401.0 + "popularity": 276.0 }, { "name": "egeria-connector-sas-viya", @@ -33802,18 +33355,13 @@ { "name": "scala", "url": "https://quay.io/repository/opaqnetworks/scala", - "popularity": 2.0 + "popularity": 4.0 } ], "quay_top_images": [ { "name": "scala-sbt", "url": "https://quay.io/repository/ukhomeofficedigital/scala-sbt", - "popularity": 16.0 - }, - { - "name": "scala-play", - "url": "https://quay.io/repository/ukhomeofficedigital/scala-play", "popularity": 4.0 }, { @@ -33824,12 +33372,17 @@ { "name": "cimg-scala-builder", "url": "https://quay.io/repository/whisk/cimg-scala-builder", - "popularity": 15.0 + "popularity": 21.0 + }, + { + "name": "scala", + "url": "https://quay.io/repository/opaqnetworks/scala", + "popularity": 4.0 }, { "name": "scala-sbt-nodejs", "url": "https://quay.io/repository/ukhomeofficedigital/scala-sbt-nodejs", - "popularity": 6.0 + "popularity": 4.0 } ] }, @@ -33914,7 +33467,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 599, + "star_count": 600, "Docker_Url": "https://hub.docker.com/_/swift", "OS": [ { @@ -33942,7 +33495,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 599, + "star_count": 600, "Docker_Url": "https://hub.docker.com/_/swift", "OS": [ { @@ -34015,27 +33568,27 @@ { "name": "swift-pipeline", "url": "https://quay.io/repository/greninger-lab/swift-pipeline", - "popularity": 5510.0 + "popularity": 5680.0 }, { "name": "centos-binary-swift-account", "url": "https://quay.io/repository/tripleotraincentos8/centos-binary-swift-account", - "popularity": 334.0 + "popularity": 409.0 }, { "name": "centos-binary-swift-object", "url": "https://quay.io/repository/tripleotraincentos8/centos-binary-swift-object", - "popularity": 333.0 + "popularity": 409.0 }, { "name": "centos-binary-swift-container", "url": "https://quay.io/repository/tripleotraincentos8/centos-binary-swift-container", - "popularity": 334.0 + "popularity": 409.0 }, { "name": "centos-binary-swift-proxy-server", "url": "https://quay.io/repository/tripleotraincentos8/centos-binary-swift-proxy-server", - "popularity": 332.0 + "popularity": 408.0 } ] }, @@ -34148,27 +33701,27 @@ { "name": "apicurio-registry-sql", "url": "https://quay.io/repository/apicurio/apicurio-registry-sql", - "popularity": 12300.0 + "popularity": 14608.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 241707.0 + "popularity": 245318.0 }, { "name": "mariadb-105-centos7", "url": "https://quay.io/repository/centos7/mariadb-105-centos7", - "popularity": 136441.0 + "popularity": 142292.0 }, { "name": "soketi", "url": "https://quay.io/repository/soketi/soketi", - "popularity": 42567.0 + "popularity": 31737.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 19079.0 + "popularity": 17355.0 } ] }, @@ -34202,7 +33755,7 @@ { "name": "hmpps-template-typescript", "url": "https://quay.io/repository/hmpps/hmpps-template-typescript", - "popularity": 86.0 + "popularity": 29.0 }, { "name": "typescript-docker", @@ -34222,7 +33775,7 @@ { "name": "che-e2e", "url": "https://quay.io/repository/eclipse/che-e2e", - "popularity": 8.0 + "popularity": 14.0 } ] }, @@ -34245,27 +33798,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 }, { "name": "samtools", "url": "https://quay.io/repository/biocontainers/samtools", - "popularity": 47366.0 + "popularity": 109822.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 } ] }, @@ -34305,27 +33858,27 @@ { "name": "nginx-basic-auth-proxy", "url": "https://quay.io/repository/dtan4/nginx-basic-auth-proxy", - "popularity": 6015.0 + "popularity": 6316.0 }, { "name": "visual-qontract", "url": "https://quay.io/repository/app-sre/visual-qontract", - "popularity": 4012.0 + "popularity": 4089.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 80338.0 + "popularity": 79034.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 }, { "name": "haproxy-exporter", "url": "https://quay.io/repository/prometheus/haproxy-exporter", - "popularity": 12544.0 + "popularity": 13460.0 } ] }, @@ -34348,27 +33901,27 @@ { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1306060.0 + "popularity": 1343874.0 }, { "name": "audit-syslog-service", "url": "https://quay.io/repository/opencloudio/audit-syslog-service", - "popularity": 74047.0 + "popularity": 130197.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 74259.0 + "popularity": 148414.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 80338.0 + "popularity": 79034.0 }, { - "name": "soketi", - "url": "https://quay.io/repository/soketi/soketi", - "popularity": 42567.0 + "name": "ubi-quarkus-native-s2i", + "url": "https://quay.io/repository/quarkus/ubi-quarkus-native-s2i", + "popularity": 35973.0 } ] }, @@ -34391,12 +33944,12 @@ { "name": "visual-qontract", "url": "https://quay.io/repository/app-sre/visual-qontract", - "popularity": 4012.0 + "popularity": 4089.0 }, { "name": "visual-regression", "url": "https://quay.io/repository/babylonhealth/visual-regression", - "popularity": 70.0 + "popularity": 138.0 }, { "name": "ccc", @@ -34466,7 +34019,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 81, + "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ { @@ -34531,27 +34084,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 826844.0 + "popularity": 883725.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412398.0 + "popularity": 403203.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 } ] }, @@ -34572,7 +34125,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 81, + "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ { @@ -34673,27 +34226,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 826844.0 + "popularity": 883725.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412398.0 + "popularity": 403203.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 } ] }, @@ -34716,27 +34269,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 65896.0 + "popularity": 82319.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 70825.0 + "popularity": 102256.0 } ] }, @@ -34757,7 +34310,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 81, + "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ { @@ -34822,27 +34375,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 826844.0 + "popularity": 883725.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412398.0 + "popularity": 403203.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 } ] }, @@ -34902,7 +34455,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 81, + "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ { @@ -34967,27 +34520,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 826844.0 + "popularity": 883725.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412398.0 + "popularity": 403203.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 } ] }, @@ -35008,7 +34561,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 81, + "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ { @@ -35073,27 +34626,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 826844.0 + "popularity": 883725.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412398.0 + "popularity": 403203.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 } ] }, @@ -35114,7 +34667,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 81, + "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ { @@ -35153,27 +34706,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 826844.0 + "popularity": 883725.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412398.0 + "popularity": 403203.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 } ] }, @@ -35283,7 +34836,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 10, + "star_count": 11, "Docker_Url": "https://hub.docker.com/r/grafana/grafana-enterprise", "OS": [ { @@ -35320,27 +34873,27 @@ { "name": "mongodb-enterprise-database", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", - "popularity": 118389.0 + "popularity": 101454.0 }, { "name": "mongodb-enterprise-ops-manager", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", - "popularity": 142619.0 + "popularity": 86254.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 74259.0 + "popularity": 148414.0 }, { - "name": "mongodb-enterprise-appdb", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-appdb", - "popularity": 63629.0 + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 29981.0 }, { - "name": "mongodb-enterprise-init-ops-manager", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-init-ops-manager", - "popularity": 20087.0 + "name": "mongodb-enterprise-init-database", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-init-database", + "popularity": 16271.0 } ] }, @@ -35380,27 +34933,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 353182.0 + "popularity": 378922.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1306060.0 - }, - { - "name": "google-chrome-stable", - "url": "https://quay.io/repository/browser/google-chrome-stable", - "popularity": 25418.0 + "popularity": 1343874.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 + }, + { + "name": "busybox", + "url": "https://quay.io/repository/prometheus/busybox", + "popularity": 216402.0 } ] }, @@ -35442,7 +34995,7 @@ { "name": "hibernate-github-bot", "url": "https://quay.io/repository/hibernate/hibernate-github-bot", - "popularity": 5.0 + "popularity": 3.0 }, { "name": "hibernate-orm-panache-quickstart", @@ -35462,7 +35015,7 @@ { "name": "awestruct-build-env", "url": "https://quay.io/repository/hibernate/awestruct-build-env", - "popularity": 27.0 + "popularity": 34.0 } ] }, @@ -35572,27 +35125,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -35670,27 +35223,27 @@ { "name": "java", "url": "https://quay.io/repository/enxadahost/java", - "popularity": 19927.0 + "popularity": 21708.0 }, { "name": "docker-java-swiss-knife", "url": "https://quay.io/repository/scentbird/docker-java-swiss-knife", - "popularity": 9651.0 - }, - { - "name": "jkube-java", - "url": "https://quay.io/repository/jkube/jkube-java", - "popularity": 4274.0 + "popularity": 7657.0 }, { "name": "java", "url": "https://quay.io/repository/reishost/java", - "popularity": 3686.0 + "popularity": 4728.0 + }, + { + "name": "bench-army-knife", + "url": "https://quay.io/repository/rkrawitz/bench-army-knife", + "popularity": 826651.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183418.0 + "popularity": 183645.0 } ] }, @@ -35820,27 +35373,27 @@ { "name": "common-service-operator", "url": "https://quay.io/repository/opencloudio/common-service-operator", - "popularity": 317405.0 + "popularity": 284079.0 }, { "name": "service-catalog", "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", - "popularity": 330506.0 + "popularity": 330422.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 } ] }, @@ -35918,27 +35471,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 353182.0 + "popularity": 378922.0 }, { "name": "mongodb-kubernetes-operator-version-upgrade-post-start-hook", "url": "https://quay.io/repository/mongodb/mongodb-kubernetes-operator-version-upgrade-post-start-hook", - "popularity": 148136.0 + "popularity": 88895.0 }, { "name": "java", "url": "https://quay.io/repository/enxadahost/java", - "popularity": 19927.0 + "popularity": 21708.0 }, { "name": "windup-web-openshift-messaging-executor", "url": "https://quay.io/repository/windupeng/windup-web-openshift-messaging-executor", - "popularity": 14612.0 + "popularity": 12140.0 }, { "name": "windup-web-openshift", "url": "https://quay.io/repository/windupeng/windup-web-openshift", - "popularity": 17107.0 + "popularity": 47186.0 } ] }, @@ -35966,7 +35519,7 @@ { "name": "javaserver", "url": "https://quay.io/repository/ctrack/javaserver", - "popularity": 9.0 + "popularity": 45.0 }, { "name": "antennae", @@ -36017,8 +35570,8 @@ "popularity": 0.0 }, { - "name": "webspoon-jdbc", - "url": "https://quay.io/repository/hingstarne/webspoon-jdbc", + "name": "elasticsearch-jdbc-river", + "url": "https://quay.io/repository/v4lproik/elasticsearch-jdbc-river", "popularity": 0.0 }, { @@ -36107,7 +35660,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 8, + "star_count": 9, "Docker_Url": "https://hub.docker.com/r/kasmweb/core", "OS": [ { @@ -36146,27 +35699,27 @@ { "name": "core", "url": "https://quay.io/repository/pterodactyl/core", - "popularity": 107406.0 + "popularity": 108260.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "viral-core", "url": "https://quay.io/repository/broadinstitute/viral-core", - "popularity": 23949.0 + "popularity": 13905.0 }, { "name": "ansible-core-test-container", "url": "https://quay.io/repository/ansible/ansible-core-test-container", - "popularity": 8601.0 + "popularity": 6954.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 } ] }, @@ -36234,7 +35787,7 @@ { "name": "log4shell", "url": "https://quay.io/repository/swains/log4shell", - "popularity": 15.0 + "popularity": 6.0 } ] }, @@ -36296,30 +35849,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "simple-remote-directory-resource", - "url": "https://quay.io/repository/qiime2/simple-remote-directory-resource", - "popularity": 19633.0 - }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183418.0 + "popularity": 183645.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 74259.0 + "popularity": 148414.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 + }, + { + "name": "ubuntu", + "url": "https://quay.io/repository/baselibrary/ubuntu", + "popularity": 79437.0 } ] }, @@ -36422,27 +35975,27 @@ { "name": "spring-petclinic", "url": "https://quay.io/repository/service-binding/spring-petclinic", - "popularity": 13195.0 + "popularity": 16335.0 }, { "name": "spring-petclinic", "url": "https://quay.io/repository/siamaksade/spring-petclinic", - "popularity": 5798.0 + "popularity": 5824.0 }, { "name": "spring-sample", "url": "https://quay.io/repository/enesk/spring-sample", - "popularity": 2638.0 + "popularity": 2938.0 }, { "name": "spring-boot-sample", "url": "https://quay.io/repository/efeluzy/spring-boot-sample", - "popularity": 357.0 + "popularity": 356.0 }, { "name": "spring-boot-admin", "url": "https://quay.io/repository/evryfs/spring-boot-admin", - "popularity": 998.0 + "popularity": 937.0 } ] }, @@ -36624,27 +36177,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "spring-petclinic", "url": "https://quay.io/repository/service-binding/spring-petclinic", - "popularity": 13195.0 + "popularity": 16335.0 }, { "name": "alpine-ext-kernel-boot-demo", "url": "https://quay.io/repository/kubevirt/alpine-ext-kernel-boot-demo", - "popularity": 5672.0 + "popularity": 7437.0 }, { "name": "spring-petclinic", "url": "https://quay.io/repository/siamaksade/spring-petclinic", - "popularity": 5798.0 + "popularity": 5824.0 }, { "name": "spring-sample", "url": "https://quay.io/repository/enesk/spring-sample", - "popularity": 2638.0 + "popularity": 2938.0 } ] }, @@ -36667,27 +36220,27 @@ { "name": "cloud-connector", "url": "https://quay.io/repository/sysdig/cloud-connector", - "popularity": 1263418.0 + "popularity": 1192367.0 }, { "name": "cloud-connector-s3-bucket-config", "url": "https://quay.io/repository/sysdig/cloud-connector-s3-bucket-config", - "popularity": 644351.0 + "popularity": 629482.0 }, { "name": "zen-data-sorcerer", "url": "https://quay.io/repository/opencloudio/zen-data-sorcerer", - "popularity": 236759.0 + "popularity": 225384.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 374426.0 + "popularity": 382812.0 } ] }, @@ -36747,27 +36300,27 @@ { "name": "spring-petclinic", "url": "https://quay.io/repository/service-binding/spring-petclinic", - "popularity": 13195.0 + "popularity": 16335.0 }, { "name": "spring-petclinic", "url": "https://quay.io/repository/siamaksade/spring-petclinic", - "popularity": 5798.0 + "popularity": 5824.0 }, { "name": "spring-sample", "url": "https://quay.io/repository/enesk/spring-sample", - "popularity": 2638.0 + "popularity": 2938.0 }, { "name": "spring-boot-sample", "url": "https://quay.io/repository/efeluzy/spring-boot-sample", - "popularity": 357.0 + "popularity": 356.0 }, { "name": "spring-boot-admin", "url": "https://quay.io/repository/evryfs/spring-boot-admin", - "popularity": 998.0 + "popularity": 937.0 } ] }, @@ -36907,7 +36460,7 @@ { "name": "agbiz-logic", "url": "https://quay.io/repository/seanhammond/agbiz-logic", - "popularity": 51.0 + "popularity": 0.0 }, { "name": "functional-angularjs", @@ -36967,27 +36520,27 @@ { "name": "express-microservice", "url": "https://quay.io/repository/codefresh_sa/express-microservice", - "popularity": 914.0 + "popularity": 1076.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52903.0 + "popularity": 52832.0 }, { "name": "express-microservice-cache", "url": "https://quay.io/repository/codefresh_sa/express-microservice-cache", - "popularity": 312.0 + "popularity": 348.0 }, { - "name": "express-sample-app", - "url": "https://quay.io/repository/waynecabanto/express-sample-app", - "popularity": 176.0 + "name": "rabbitmq", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/rabbitmq", + "popularity": 2.0 }, { - "name": "express-ts", - "url": "https://quay.io/repository/tetchell/express-ts", - "popularity": 2.0 + "name": "express-sample-app", + "url": "https://quay.io/repository/waynecabanto/express-sample-app", + "popularity": 175.0 } ] }, @@ -37010,27 +36563,27 @@ { "name": "alpine-ext-kernel-boot-demo", "url": "https://quay.io/repository/kubevirt/alpine-ext-kernel-boot-demo", - "popularity": 5672.0 + "popularity": 7437.0 }, { "name": "ibm-monitoring-prometheus-operator-ext-bundle", "url": "https://quay.io/repository/opencloudio/ibm-monitoring-prometheus-operator-ext-bundle", - "popularity": 434.0 + "popularity": 326.0 }, { - "name": "ext-postgres-operator", - "url": "https://quay.io/repository/operatorhubio/ext-postgres-operator", - "popularity": 132.0 - }, - { - "name": "egeria", - "url": "https://quay.io/repository/odpi/egeria", - "popularity": 550.0 + "name": "ext-auth-service", + "url": "https://quay.io/repository/solo-io/ext-auth-service", + "popularity": 110.0 }, { "name": "pam-oracledb-ext-img", "url": "https://quay.io/repository/mmaset/pam-oracledb-ext-img", - "popularity": 140.0 + "popularity": 337.0 + }, + { + "name": "egeria", + "url": "https://quay.io/repository/odpi/egeria", + "popularity": 443.0 } ] }, @@ -37162,12 +36715,12 @@ ] }, { - "name": "ibmcom/jquery-cookie", + "name": "ibmcom/jquery-deparam", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/jquery-cookie", + "Docker_Url": "https://hub.docker.com/r/ibmcom/jquery-deparam", "OS": [ { "Class": "null", @@ -37285,7 +36838,12 @@ { "name": "react", "url": "https://quay.io/repository/profects/react", - "popularity": 40.0 + "popularity": 15.0 + }, + { + "name": "react", + "url": "https://quay.io/repository/masoud_rahimi/react", + "popularity": 0.0 }, { "name": "react", @@ -37302,7 +36860,7 @@ { "name": "egeria-react-ui", "url": "https://quay.io/repository/odpi/egeria-react-ui", - "popularity": 242.0 + "popularity": 211.0 }, { "name": "react-app", @@ -37312,12 +36870,12 @@ { "name": "react", "url": "https://quay.io/repository/profects/react", - "popularity": 40.0 + "popularity": 15.0 }, { - "name": "portal-react-prototype-data", - "url": "https://quay.io/repository/battelleecology/portal-react-prototype-data", - "popularity": 4.0 + "name": "docker-react", + "url": "https://quay.io/repository/girol/docker-react", + "popularity": 0.0 } ] }, @@ -37340,27 +36898,27 @@ { "name": "startup-script", "url": "https://quay.io/repository/cilium/startup-script", - "popularity": 166460.0 + "popularity": 257361.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 80338.0 + "popularity": 79034.0 }, { "name": "podman", "url": "https://quay.io/repository/containers/podman", - "popularity": 21241.0 + "popularity": 20563.0 }, { "name": "netbox", "url": "https://quay.io/repository/netboxcommunity/netbox", - "popularity": 12769.0 + "popularity": 11302.0 }, { "name": "ubuntu", "url": "https://quay.io/repository/baselibrary/ubuntu", - "popularity": 63580.0 + "popularity": 79437.0 } ] }, @@ -37383,27 +36941,27 @@ { "name": "concourse-file-resource", "url": "https://quay.io/repository/henry40408/concourse-file-resource", - "popularity": 668842.0 + "popularity": 662170.0 }, { "name": "insights-uploader", "url": "https://quay.io/repository/fairwinds/insights-uploader", - "popularity": 759383.0 + "popularity": 781550.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 } ] }, @@ -37497,27 +37055,27 @@ { "name": "mongodb-enterprise-database", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", - "popularity": 118389.0 + "popularity": 101454.0 + }, + { + "name": "ibm-platform-api-operator", + "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", + "popularity": 36619.0 }, { "name": "mongodb-enterprise-ops-manager", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", - "popularity": 142619.0 + "popularity": 86254.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 74259.0 - }, - { - "name": "mongodb-enterprise-appdb", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-appdb", - "popularity": 63629.0 + "popularity": 148414.0 }, { "name": "k8s-sidecar", "url": "https://quay.io/repository/kiwigrid/k8s-sidecar", - "popularity": 1320477.0 + "popularity": 1297028.0 } ] }, @@ -37630,13 +37188,18 @@ { "name": "android", "url": "https://quay.io/repository/bitriseio/android", - "popularity": 262.0 + "popularity": 91.0 }, { "name": "android", "url": "https://quay.io/repository/opaqnetworks/android", "popularity": 0.0 }, + { + "name": "android", + "url": "https://quay.io/repository/amal5alshaikh/android", + "popularity": 12.0 + }, { "name": "android", "url": "https://quay.io/repository/logistio/android", @@ -37647,27 +37210,27 @@ { "name": "android", "url": "https://quay.io/repository/bitriseio/android", - "popularity": 262.0 + "popularity": 91.0 }, { "name": "android-ndk", "url": "https://quay.io/repository/bitriseio/android-ndk", - "popularity": 18.0 + "popularity": 24.0 }, { "name": "alpine-android", "url": "https://quay.io/repository/alvr/alpine-android", - "popularity": 26.0 + "popularity": 16.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 38116.0 + "popularity": 36573.0 }, { "name": "build-environment-android", "url": "https://quay.io/repository/callsign/build-environment-android", - "popularity": 255.0 + "popularity": 300.0 } ] }, @@ -37707,12 +37270,12 @@ { "name": "cisco-hxcsi-operator", "url": "https://quay.io/repository/operator-pipeline-prod/cisco-hxcsi-operator", - "popularity": 168.0 + "popularity": 189.0 }, { "name": "cisco-hxcsi-operator-index", "url": "https://quay.io/repository/operator-pipeline-prod/cisco-hxcsi-operator-index", - "popularity": 0.0 + "popularity": 8.0 }, { "name": "cisco-200-301-dumps", @@ -37727,7 +37290,7 @@ { "name": "ee-general-image", "url": "https://quay.io/repository/nleiva/ee-general-image", - "popularity": 1.0 + "popularity": 2.0 } ] }, @@ -37747,7 +37310,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 68, + "star_count": 69, "Docker_Url": "https://hub.docker.com/_/dart", "OS": [ { @@ -37819,7 +37382,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 68, + "star_count": 69, "Docker_Url": "https://hub.docker.com/_/dart", "OS": [ { @@ -37853,7 +37416,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 32, + "star_count": 33, "Docker_Url": "https://hub.docker.com/r/google/dart-runtime", "OS": [ { @@ -37895,12 +37458,12 @@ }, { "name": "dart", - "url": "https://quay.io/repository/spivegin/dart", + "url": "https://quay.io/repository/official-images/dart", "popularity": 0.0 }, { "name": "dart", - "url": "https://quay.io/repository/official-images/dart", + "url": "https://quay.io/repository/spivegin/dart", "popularity": 0.0 }, { @@ -37918,17 +37481,17 @@ { "name": "dart-caps-listen", "url": "https://quay.io/repository/geonet/dart-caps-listen", - "popularity": 1021.0 + "popularity": 1017.0 }, { "name": "dart-tilde-listen", "url": "https://quay.io/repository/geonet/dart-tilde-listen", - "popularity": 682.0 + "popularity": 679.0 }, { "name": "dart-rapid", "url": "https://quay.io/repository/geonet/dart-rapid", - "popularity": 681.0 + "popularity": 679.0 }, { "name": "bioconductor-dart", @@ -37980,17 +37543,17 @@ { "name": "flannel", "url": "https://quay.io/repository/coreos/flannel", - "popularity": 1589952.0 + "popularity": 1674754.0 }, { "name": "fabric-peer", "url": "https://quay.io/repository/kfsoftware/fabric-peer", - "popularity": 318.0 + "popularity": 134.0 }, { "name": "netop-fabric-manager", "url": "https://quay.io/repository/noirolabs/netop-fabric-manager", - "popularity": 4.0 + "popularity": 6.0 }, { "name": "cortex-fabric-operator-image", @@ -38000,7 +37563,7 @@ { "name": "flannel", "url": "https://quay.io/repository/microshift/flannel", - "popularity": 8.0 + "popularity": 58.0 } ] }, @@ -38023,27 +37586,27 @@ { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 38116.0 + "popularity": 36573.0 }, { "name": "postgresql", "url": "https://quay.io/repository/enterprisedb/postgresql", - "popularity": 18302.0 - }, - { - "name": "rseqc", - "url": "https://quay.io/repository/biocontainers/rseqc", - "popularity": 9885.0 + "popularity": 19585.0 }, { "name": "multiqc", "url": "https://quay.io/repository/biocontainers/multiqc", - "popularity": 9969.0 + "popularity": 30213.0 + }, + { + "name": "gawk", + "url": "https://quay.io/repository/biocontainers/gawk", + "popularity": 12927.0 } ] }, @@ -38153,27 +37716,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -38441,7 +38004,7 @@ "stars": 0, "display_name": "External Secrets Operator", "description": "Operator to configure external-secrets helm-chart based operator", - "version": "0.5.7", + "version": "0.5.8", "deprecated": false, "signed": false, "security_report_summary": { @@ -38853,7 +38416,7 @@ { "name": "ee-general-image", "url": "https://quay.io/repository/nleiva/ee-general-image", - "popularity": 1.0 + "popularity": 2.0 }, { "name": "cisco_exporter", @@ -38891,27 +38454,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 }, { "name": "ibm-management-ingress-operator", "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 111760.0 + "popularity": 156321.0 }, { - "name": "ibm-commonui-operator", - "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", - "popularity": 117024.0 + "name": "audit-syslog-service", + "url": "https://quay.io/repository/opencloudio/audit-syslog-service", + "popularity": 130197.0 } ] }, @@ -38931,7 +38494,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 7234, + "star_count": 7249, "Docker_Url": "https://hub.docker.com/_/centos", "OS": [ { @@ -38967,7 +38530,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 7234, + "star_count": 7249, "Docker_Url": "https://hub.docker.com/_/centos", "OS": [ { @@ -39019,7 +38582,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 21, + "star_count": 22, "Docker_Url": "https://hub.docker.com/r/kasmweb/centos-7-desktop", "OS": [ { @@ -39039,44 +38602,49 @@ { "name": "centos", "url": "https://quay.io/repository/centos/centos", - "popularity": 412636.0 + "popularity": 401763.0 }, { "name": "centos", "url": "https://quay.io/repository/containerdisks/centos", - "popularity": 6511.0 + "popularity": 10089.0 }, { "name": "centos", "url": "https://quay.io/repository/openshifttest/centos", - "popularity": 1166.0 + "popularity": 1168.0 + }, + { + "name": "centos", + "url": "https://quay.io/repository/libpod/centos", + "popularity": 2086.0 } ], "quay_top_images": [ { "name": "centos", "url": "https://quay.io/repository/centos/centos", - "popularity": 412636.0 + "popularity": 401763.0 }, { "name": "centos-base", "url": "https://quay.io/repository/ukhomeofficedigital/centos-base", - "popularity": 43188.0 + "popularity": 43122.0 }, { "name": "centos-stream", "url": "https://quay.io/repository/containerdisks/centos-stream", - "popularity": 14022.0 + "popularity": 13723.0 }, { - "name": "centos-quarkus-maven", - "url": "https://quay.io/repository/quarkus/centos-quarkus-maven", - "popularity": 9816.0 + "name": "centos", + "url": "https://quay.io/repository/containerdisks/centos", + "popularity": 10089.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 335511.0 + "popularity": 380580.0 } ] }, @@ -39118,27 +38686,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "check-aws-tags", "url": "https://quay.io/repository/sergioballesteros/check-aws-tags", - "popularity": 42674.0 + "popularity": 32462.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 38116.0 + "popularity": 36573.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52903.0 + "popularity": 52832.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20112.0 + "popularity": 20354.0 } ] }, @@ -39158,7 +38726,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 4370, + "star_count": 4382, "Docker_Url": "https://hub.docker.com/_/debian", "OS": [ { @@ -39242,7 +38810,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 4370, + "star_count": 4382, "Docker_Url": "https://hub.docker.com/_/debian", "OS": [ { @@ -39344,44 +38912,44 @@ { "name": "debian", "url": "https://quay.io/repository/official-images/debian", - "popularity": 162.0 + "popularity": 70.0 }, { "name": "debian", "url": "https://quay.io/repository/libpod/debian", - "popularity": 1214.0 + "popularity": 1178.0 }, { "name": "debian", "url": "https://quay.io/repository/broadstripes/debian", - "popularity": 45.0 + "popularity": 39.0 } ], "quay_top_images": [ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 }, { "name": "debian", "url": "https://quay.io/repository/libpod/debian", - "popularity": 1214.0 + "popularity": 1178.0 }, { "name": "debian-source-haproxy", "url": "https://quay.io/repository/openstack.kolla/debian-source-haproxy", - "popularity": 422.0 + "popularity": 384.0 }, { "name": "debian-tall", "url": "https://quay.io/repository/gravitational/debian-tall", - "popularity": 869.0 + "popularity": 431.0 } ] }, @@ -39483,18 +39051,23 @@ "name": "opensuse", "url": "https://quay.io/repository/ucomesdag/opensuse", "popularity": 0.0 + }, + { + "name": "opensuse", + "url": "https://quay.io/repository/quay-qetest/opensuse", + "popularity": 3.0 } ], "quay_top_images": [ { "name": "opensuse-systemd", "url": "https://quay.io/repository/gotmax23/opensuse-systemd", - "popularity": 26.0 + "popularity": 34.0 }, { "name": "vm-opensuse-leap-15", "url": "https://quay.io/repository/kubespray/vm-opensuse-leap-15", - "popularity": 40.0 + "popularity": 56.0 }, { "name": "opensuse-tumbleweed-systemd", @@ -39507,9 +39080,9 @@ "popularity": 8.0 }, { - "name": "fedora-systemd", - "url": "https://quay.io/repository/gotmax23/fedora-systemd", - "popularity": 24.0 + "name": "opensuse-15-container-disk", + "url": "https://quay.io/repository/edgestack/opensuse-15-container-disk", + "popularity": 4.0 } ] }, @@ -39532,27 +39105,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 }, { "name": "ibm-management-ingress-operator", "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 111760.0 + "popularity": 156321.0 }, { - "name": "ibm-commonui-operator", - "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", - "popularity": 117024.0 + "name": "audit-syslog-service", + "url": "https://quay.io/repository/opencloudio/audit-syslog-service", + "popularity": 130197.0 } ] }, @@ -39594,7 +39167,7 @@ { "name": "goharbor-clair-photon", "url": "https://quay.io/repository/klovercloud/goharbor-clair-photon", - "popularity": 1005.0 + "popularity": 1006.0 }, { "name": "nginx-photon", @@ -39674,27 +39247,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "mongodb-enterprise-database", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", - "popularity": 118389.0 + "popularity": 101454.0 }, { "name": "mongodb-enterprise-ops-manager", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", - "popularity": 142619.0 + "popularity": 86254.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 74259.0 + "popularity": 148414.0 }, { - "name": "mongodb-enterprise-appdb", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-appdb", - "popularity": 63629.0 + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 29981.0 } ] }, @@ -39717,27 +39290,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { - "name": "mongodb-enterprise-ops-manager", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", - "popularity": 142619.0 + "name": "mongodb-enterprise-operator", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", + "popularity": 148414.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -39757,7 +39330,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 14569, + "star_count": 14618, "Docker_Url": "https://hub.docker.com/_/ubuntu", "OS": [ { @@ -39817,7 +39390,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 14569, + "star_count": 14618, "Docker_Url": "https://hub.docker.com/_/ubuntu", "OS": [ { @@ -39929,7 +39502,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 29, + "star_count": 31, "Docker_Url": "https://hub.docker.com/r/kasmweb/ubuntu-bionic-desktop", "OS": [ { @@ -39956,60 +39529,60 @@ "quay_exact_images": [ { "name": "ubuntu", - "url": "https://quay.io/repository/tamr/ubuntu", - "popularity": 517.0 + "url": "https://quay.io/repository/libpod/ubuntu", + "popularity": 29997.0 }, { "name": "ubuntu", - "url": "https://quay.io/repository/libpod/ubuntu", - "popularity": 30651.0 + "url": "https://quay.io/repository/tamr/ubuntu", + "popularity": 504.0 }, { "name": "ubuntu", "url": "https://quay.io/repository/bedrock/ubuntu", - "popularity": 28370.0 + "popularity": 28372.0 }, { "name": "ubuntu", - "url": "https://quay.io/repository/cybozu/ubuntu", - "popularity": 5255.0 + "url": "https://quay.io/repository/baselibrary/ubuntu", + "popularity": 79437.0 }, { "name": "ubuntu", - "url": "https://quay.io/repository/baselibrary/ubuntu", - "popularity": 63580.0 + "url": "https://quay.io/repository/cybozu/ubuntu", + "popularity": 3730.0 }, { "name": "ubuntu", "url": "https://quay.io/repository/widen/ubuntu", - "popularity": 123.0 + "popularity": 6.0 } ], "quay_top_images": [ { "name": "ubuntu", "url": "https://quay.io/repository/libpod/ubuntu", - "popularity": 30651.0 + "popularity": 29997.0 }, { "name": "ubuntu", "url": "https://quay.io/repository/bedrock/ubuntu", - "popularity": 28370.0 + "popularity": 28372.0 }, { "name": "ubuntu", - "url": "https://quay.io/repository/cybozu/ubuntu", - "popularity": 5255.0 + "url": "https://quay.io/repository/baselibrary/ubuntu", + "popularity": 79437.0 }, { "name": "ubuntu", - "url": "https://quay.io/repository/baselibrary/ubuntu", - "popularity": 63580.0 + "url": "https://quay.io/repository/cybozu/ubuntu", + "popularity": 3730.0 }, { "name": "ubuntu-debug", "url": "https://quay.io/repository/cybozu/ubuntu-debug", - "popularity": 2425.0 + "popularity": 1950.0 } ] }, @@ -40049,12 +39622,12 @@ { "name": "bowtie2", "url": "https://quay.io/repository/biocontainers/bowtie2", - "popularity": 720.0 + "popularity": 689.0 }, { "name": "rhel8_runtime", "url": "https://quay.io/repository/openvino/rhel8_runtime", - "popularity": 20.0 + "popularity": 45.0 }, { "name": "rust", @@ -40177,22 +39750,22 @@ { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 65896.0 + "popularity": 82319.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8725.0 + "popularity": 8041.0 }, { "name": "entrez-direct", "url": "https://quay.io/repository/biocontainers/entrez-direct", - "popularity": 69.0 + "popularity": 216.0 }, { "name": "rsync-ssh", "url": "https://quay.io/repository/instrumentisto/rsync-ssh", - "popularity": 30.0 + "popularity": 46.0 }, { "name": "watchtower", @@ -40258,27 +39831,27 @@ { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 80338.0 + "popularity": 79034.0 }, { "name": "mafft", "url": "https://quay.io/repository/biocontainers/mafft", - "popularity": 1380.0 + "popularity": 5335.0 }, { "name": "diamond", "url": "https://quay.io/repository/biocontainers/diamond", - "popularity": 747.0 + "popularity": 1022.0 }, { - "name": "redis", - "url": "https://quay.io/repository/smile/redis", - "popularity": 465.0 + "name": "krona", + "url": "https://quay.io/repository/biocontainers/krona", + "popularity": 803.0 }, { "name": "alignlib-lite", "url": "https://quay.io/repository/biocontainers/alignlib-lite", - "popularity": 630.0 + "popularity": 615.0 } ] }, @@ -40307,12 +39880,12 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "golang-builder", "url": "https://quay.io/repository/prometheus/golang-builder", - "popularity": 3618.0 + "popularity": 2871.0 }, { "name": "freebsd", @@ -40320,13 +39893,13 @@ "popularity": 0.0 }, { - "name": "freebsd-minimal", - "url": "https://quay.io/repository/dougrabson/freebsd-minimal", + "name": "freebsd-container-disk-demo", + "url": "https://quay.io/repository/karmab/freebsd-container-disk-demo", "popularity": 0.0 }, { - "name": "freebsd-container-disk-demo", - "url": "https://quay.io/repository/karmab/freebsd-container-disk-demo", + "name": "freebsd-minimal", + "url": "https://quay.io/repository/dougrabson/freebsd-minimal", "popularity": 0.0 } ] @@ -40420,7 +39993,7 @@ { "name": "windows", "url": "https://quay.io/repository/mhallin/windows", - "popularity": 37.0 + "popularity": 23.0 }, { "name": "windows", @@ -40432,27 +40005,27 @@ { "name": "windows-upgrade", "url": "https://quay.io/repository/calico/windows-upgrade", - "popularity": 7833.0 + "popularity": 7607.0 }, { "name": "community-windows-machine-config-operator", "url": "https://quay.io/repository/openshift-windows/community-windows-machine-config-operator", - "popularity": 228.0 + "popularity": 181.0 + }, + { + "name": "community-windows-machine-config-operator", + "url": "https://quay.io/repository/openshift-community-operators/community-windows-machine-config-operator", + "popularity": 398.0 }, { "name": "golang-builder", "url": "https://quay.io/repository/prometheus/golang-builder", - "popularity": 3618.0 + "popularity": 2871.0 }, { "name": "server", "url": "https://quay.io/repository/codimd/server", - "popularity": 2465.0 - }, - { - "name": "fmeserver-engine", - "url": "https://quay.io/repository/safesoftware/fmeserver-engine", - "popularity": 155.0 + "popularity": 2416.0 } ] }, @@ -40494,27 +40067,27 @@ { "name": "desktop", "url": "https://quay.io/repository/capesos/desktop", - "popularity": 878313.0 + "popularity": 897351.0 }, { "name": "desktop", "url": "https://quay.io/repository/mocaccino/desktop", - "popularity": 28816.0 + "popularity": 144644.0 }, { "name": "windows-upgrade", "url": "https://quay.io/repository/calico/windows-upgrade", - "popularity": 7833.0 + "popularity": 7607.0 }, { "name": "golang-builder", "url": "https://quay.io/repository/prometheus/golang-builder", - "popularity": 3618.0 + "popularity": 2871.0 }, { "name": "server", "url": "https://quay.io/repository/codimd/server", - "popularity": 2465.0 + "popularity": 2416.0 } ] }, @@ -40549,48 +40122,12 @@ ] }, { - "name": "rancher/server-base", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/rancher/server-base", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "circleci/server-nomad", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "atlassian/server-client-plugins", + "name": "rancher/windows-scheduler", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/rancher/windows-scheduler", "OS": [ { "Class": "OS", @@ -40610,27 +40147,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -40650,7 +40187,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 1068, + "star_count": 1073, "Docker_Url": "https://hub.docker.com/_/fedora", "OS": [ { @@ -40702,7 +40239,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 1068, + "star_count": 1073, "Docker_Url": "https://hub.docker.com/_/fedora", "OS": [ { @@ -40780,54 +40317,54 @@ { "name": "fedora", "url": "https://quay.io/repository/fedora/fedora", - "popularity": 23547.0 + "popularity": 26452.0 }, { "name": "fedora", "url": "https://quay.io/repository/containerdisks/fedora", - "popularity": 9671.0 + "popularity": 6861.0 }, { "name": "fedora", "url": "https://quay.io/repository/kubevirtci/fedora", - "popularity": 6124.0 + "popularity": 8127.0 }, { "name": "fedora", "url": "https://quay.io/repository/libpod/fedora", - "popularity": 6324.0 + "popularity": 5462.0 }, { "name": "fedora", "url": "https://quay.io/repository/startx/fedora", - "popularity": 8720.0 + "popularity": 8731.0 } ], "quay_top_images": [ { "name": "fedora", "url": "https://quay.io/repository/fedora/fedora", - "popularity": 23547.0 - }, - { - "name": "fedora", - "url": "https://quay.io/repository/containerdisks/fedora", - "popularity": 9671.0 + "popularity": 26452.0 }, { "name": "fedora-for-psi-ocp-monitoring", "url": "https://quay.io/repository/psi-ocp/fedora-for-psi-ocp-monitoring", - "popularity": 12667.0 + "popularity": 16759.0 + }, + { + "name": "fedora", + "url": "https://quay.io/repository/kubevirtci/fedora", + "popularity": 8127.0 }, { "name": "fedora", "url": "https://quay.io/repository/startx/fedora", - "popularity": 8720.0 + "popularity": 8731.0 }, { "name": "stable", "url": "https://quay.io/repository/buildah/stable", - "popularity": 52927.0 + "popularity": 56394.0 } ] }, @@ -40895,27 +40432,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 }, { "name": "ibm-management-ingress-operator", "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 111760.0 + "popularity": 156321.0 }, { - "name": "ibm-commonui-operator", - "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", - "popularity": 117024.0 + "name": "audit-syslog-service", + "url": "https://quay.io/repository/opencloudio/audit-syslog-service", + "popularity": 130197.0 } ] }, @@ -40938,27 +40475,27 @@ { "name": "nginx-basic-auth-proxy", "url": "https://quay.io/repository/dtan4/nginx-basic-auth-proxy", - "popularity": 6015.0 + "popularity": 6316.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 80338.0 - }, - { - "name": "pushgateway", - "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 79034.0 }, { "name": "basic-ocp-demo", "url": "https://quay.io/repository/freedomben/basic-ocp-demo", - "popularity": 1050.0 + "popularity": 1694.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 30456.0 }, { "name": "haproxy-exporter", "url": "https://quay.io/repository/prometheus/haproxy-exporter", - "popularity": 12544.0 + "popularity": 13460.0 } ] }, @@ -41008,40 +40545,6 @@ } ] }, - { - "name": "ibmcom/transformation-advisor-operator", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/transformation-advisor-operator", - "OS": [ - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, { "name": "ibmcom/transformation-advisor-ui", "Official image": false, @@ -41118,27 +40621,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "backend-atlas", "url": "https://quay.io/repository/rhacs-demo/backend-atlas", - "popularity": 10330.0 + "popularity": 2244.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 - }, - { - "name": "yaml-language-server", - "url": "https://quay.io/repository/redhat-developer/yaml-language-server", - "popularity": 2235.0 + "popularity": 90723.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 + }, + { + "name": "mongodb-atlas-kubernetes-operator-catalog", + "url": "https://quay.io/repository/igorkarpukhin/mongodb-atlas-kubernetes-operator-catalog", + "popularity": 1845.0 } ] }, @@ -41198,27 +40701,27 @@ { "name": "nfs-client-provisioner", "url": "https://quay.io/repository/external_storage/nfs-client-provisioner", - "popularity": 754210.0 + "popularity": 709351.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "nfs-client-provisioner-arm", "url": "https://quay.io/repository/external_storage/nfs-client-provisioner-arm", - "popularity": 86392.0 + "popularity": 87885.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "gitlab-runner-docker-cleanup", "url": "https://quay.io/repository/gitlab/gitlab-runner-docker-cleanup", - "popularity": 802500.0 + "popularity": 796772.0 } ] }, @@ -41241,17 +40744,12 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 - }, - { - "name": "query", - "url": "https://quay.io/repository/sisense/query", - "popularity": 2407.0 + "popularity": 5908670.0 }, { "name": "jaeger-query", "url": "https://quay.io/repository/jaegertracing/jaeger-query", - "popularity": 10012.0 + "popularity": 9786.0 }, { "name": "k8s-config-connector-extended", @@ -41261,7 +40759,12 @@ { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 + }, + { + "name": "redis-operator", + "url": "https://quay.io/repository/opstree/redis-operator", + "popularity": 102256.0 } ] }, @@ -41284,27 +40787,27 @@ { "name": "discovery", "url": "https://quay.io/repository/solo-io/discovery", - "popularity": 128877.0 + "popularity": 285808.0 }, { "name": "node-feature-discovery", "url": "https://quay.io/repository/kubernetes_incubator/node-feature-discovery", - "popularity": 65756.0 + "popularity": 53647.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "origin-node-feature-discovery", "url": "https://quay.io/repository/openshift/origin-node-feature-discovery", - "popularity": 81718.0 + "popularity": 69615.0 }, { - "name": "asset-cache", - "url": "https://quay.io/repository/rhacs-demo/asset-cache", - "popularity": 23508.0 + "name": "redis-operator", + "url": "https://quay.io/repository/opstree/redis-operator", + "popularity": 102256.0 } ] }, @@ -41351,7 +40854,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 17, + "star_count": 18, "Docker_Url": "https://hub.docker.com/_/api-firewall", "OS": [ { @@ -41385,7 +40888,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 23, + "star_count": 24, "Docker_Url": "https://hub.docker.com/r/wallarm/api-firewall", "OS": [ { @@ -41438,27 +40941,27 @@ { "name": "ibm-platform-api-operator", "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", - "popularity": 47566.0 + "popularity": 36619.0 }, { "name": "virt-api", "url": "https://quay.io/repository/kubevirt/virt-api", - "popularity": 23947.0 - }, - { - "name": "insights-api", - "url": "https://quay.io/repository/fairwinds/insights-api", - "popularity": 31210.0 + "popularity": 33904.0 }, { "name": "k8s-sidecar", "url": "https://quay.io/repository/kiwigrid/k8s-sidecar", - "popularity": 1320477.0 + "popularity": 1297028.0 + }, + { + "name": "third-party-api-resolver-server", + "url": "https://quay.io/repository/decentraland/third-party-api-resolver-server", + "popularity": 52834.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 353617.0 + "popularity": 421059.0 } ] }, @@ -41572,27 +41075,27 @@ { "name": "nfs-client-provisioner", "url": "https://quay.io/repository/external_storage/nfs-client-provisioner", - "popularity": 754210.0 + "popularity": 709351.0 }, { "name": "nfs-client-provisioner-arm", "url": "https://quay.io/repository/external_storage/nfs-client-provisioner-arm", - "popularity": 86392.0 + "popularity": 87885.0 }, { "name": "oc-client-test", "url": "https://quay.io/repository/vishwanath_puranik/oc-client-test", - "popularity": 39222.0 + "popularity": 9309.0 }, { "name": "defectdojo-client", "url": "https://quay.io/repository/sdase/defectdojo-client", - "popularity": 5805.0 + "popularity": 5823.0 }, { "name": "kubernetes-vault-client", "url": "https://quay.io/repository/travelaudience/kubernetes-vault-client", - "popularity": 9887.0 + "popularity": 8807.0 } ] }, @@ -41613,7 +41116,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 88, + "star_count": 89, "Docker_Url": "https://hub.docker.com/r/datadog/agent", "OS": [ { @@ -41697,7 +41200,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 155, + "star_count": 158, "Docker_Url": "https://hub.docker.com/r/portainer/agent", "OS": [ { @@ -41842,27 +41345,27 @@ { "name": "signalfx-agent", "url": "https://quay.io/repository/signalfx/signalfx-agent", - "popularity": 2424166.0 + "popularity": 3304404.0 }, { "name": "agent", "url": "https://quay.io/repository/sysdig/agent", - "popularity": 250479.0 + "popularity": 259479.0 }, { "name": "mongodb-agent", "url": "https://quay.io/repository/mongodb/mongodb-agent", - "popularity": 275669.0 + "popularity": 270773.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "workload-agent", "url": "https://quay.io/repository/sysdig/workload-agent", - "popularity": 242641.0 + "popularity": 260677.0 } ] }, @@ -41885,7 +41388,7 @@ { "name": "requestor", "url": "https://quay.io/repository/cdis/requestor", - "popularity": 3588.0 + "popularity": 3148.0 }, { "name": "qpid-requestor", @@ -41918,27 +41421,27 @@ { "name": "explorer-bff", "url": "https://quay.io/repository/decentraland/explorer-bff", - "popularity": 40.0 + "popularity": 251.0 }, { "name": "pso-explorer", "url": "https://quay.io/repository/purestorage/pso-explorer", - "popularity": 62.0 + "popularity": 477.0 }, { - "name": "explorer-metrics", - "url": "https://quay.io/repository/decentraland/explorer-metrics", - "popularity": 38.0 + "name": "explorer", + "url": "https://quay.io/repository/jkunstle/explorer", + "popularity": 857.0 }, { "name": "bitcoin-explorer", "url": "https://quay.io/repository/hirosystems/bitcoin-explorer", - "popularity": 126.0 + "popularity": 123.0 }, { - "name": "explorer", - "url": "https://quay.io/repository/jkunstle/explorer", - "popularity": 555.0 + "name": "explorer-metrics", + "url": "https://quay.io/repository/decentraland/explorer-metrics", + "popularity": 2.0 } ] }, @@ -41998,27 +41501,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -42144,27 +41647,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "haproxy-ingress", "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", - "popularity": 929588.0 + "popularity": 909887.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 353617.0 + "popularity": 421059.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 } ] }, @@ -42206,27 +41709,27 @@ { "name": "signalfx-agent", "url": "https://quay.io/repository/signalfx/signalfx-agent", - "popularity": 2424166.0 + "popularity": 3304404.0 }, { "name": "bored-agent", "url": "https://quay.io/repository/k8slens/bored-agent", - "popularity": 168797.0 + "popularity": 174771.0 }, { "name": "agent", "url": "https://quay.io/repository/sysdig/agent", - "popularity": 250479.0 + "popularity": 259479.0 }, { "name": "mongodb-agent", "url": "https://quay.io/repository/mongodb/mongodb-agent", - "popularity": 275669.0 + "popularity": 270773.0 }, { "name": "workload-agent", "url": "https://quay.io/repository/sysdig/workload-agent", - "popularity": 242641.0 + "popularity": 260677.0 } ] }, @@ -42286,27 +41789,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -42329,27 +41832,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { - "name": "engine", - "url": "https://quay.io/repository/codefresh/engine", - "popularity": 334883.0 + "name": "mongodb-enterprise-database", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", + "popularity": 101454.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -42409,27 +41912,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -42471,27 +41974,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "ibm-management-ingress-operator", "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 111760.0 + "popularity": 156321.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -42569,27 +42072,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "cf-docker-builder", "url": "https://quay.io/repository/codefresh/cf-docker-builder", - "popularity": 84282.0 + "popularity": 80159.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -42649,27 +42152,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -42709,27 +42212,27 @@ { "name": "ocp-release", "url": "https://quay.io/repository/openshift-release-dev/ocp-release", - "popularity": 39354632.0 + "popularity": 41511623.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "thanos", "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2534311.0 + "popularity": 2526636.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -42752,27 +42255,27 @@ { "name": "sap-side-by-side-be", "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", - "popularity": 3358.0 + "popularity": 3641.0 }, { "name": "sap-btp-operator", "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", - "popularity": 132.0 + "popularity": 108.0 }, { "name": "container-image-registry", "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7558.0 + "popularity": 7568.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", - "popularity": 6548.0 + "popularity": 6663.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/miminar/sdi-observer", - "popularity": 165.0 + "popularity": 169.0 } ] }, @@ -42848,27 +42351,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { - "name": "kernel-stable", - "url": "https://quay.io/repository/capesos/kernel-stable", - "popularity": 6937.0 + "name": "alpine-ext-kernel-boot-demo", + "url": "https://quay.io/repository/kubevirt/alpine-ext-kernel-boot-demo", + "popularity": 7437.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 70825.0 + "popularity": 102256.0 }, { "name": "container-image-registry", "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7558.0 + "popularity": 7568.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8725.0 + "popularity": 8041.0 } ] }, @@ -42919,27 +42422,27 @@ { "name": "central-db", "url": "https://quay.io/repository/stackrox-io/central-db", - "popularity": 1121.0 + "popularity": 884.0 }, { "name": "centos-binary-ceilometer-central", "url": "https://quay.io/repository/tripleotraincentos8/centos-binary-ceilometer-central", - "popularity": 330.0 - }, - { - "name": "openstack-ceilometer-central", - "url": "https://quay.io/repository/tripleowallaby/openstack-ceilometer-central", - "popularity": 302.0 + "popularity": 414.0 }, { "name": "business-central-workbench-showcase", "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", - "popularity": 609.0 + "popularity": 637.0 + }, + { + "name": "openstack-ceilometer-central", + "url": "https://quay.io/repository/tripleowallaby/openstack-ceilometer-central", + "popularity": 384.0 }, { "name": "business-central-workbench", "url": "https://quay.io/repository/kiegroup/business-central-workbench", - "popularity": 592.0 + "popularity": 600.0 } ] }, @@ -42979,27 +42482,27 @@ { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52903.0 + "popularity": 52832.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20112.0 + "popularity": 20354.0 }, { "name": "daemon", "url": "https://quay.io/repository/ceph/daemon", - "popularity": 3450.0 + "popularity": 9604.0 }, { "name": "freeipa-server", "url": "https://quay.io/repository/freeipa/freeipa-server", - "popularity": 2325.0 + "popularity": 1243.0 } ] }, @@ -43201,27 +42704,27 @@ { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 }, { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 353182.0 + "popularity": 378922.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 } ] }, @@ -43261,27 +42764,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 }, { "name": "samtools", "url": "https://quay.io/repository/biocontainers/samtools", - "popularity": 47366.0 + "popularity": 109822.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 } ] }, @@ -43341,27 +42844,27 @@ { "name": "windows-upgrade", "url": "https://quay.io/repository/calico/windows-upgrade", - "popularity": 7833.0 + "popularity": 7607.0 }, { "name": "community-windows-machine-config-operator", "url": "https://quay.io/repository/openshift-windows/community-windows-machine-config-operator", - "popularity": 228.0 + "popularity": 181.0 }, { "name": "community-windows-machine-config-operator", "url": "https://quay.io/repository/openshift-community-operators/community-windows-machine-config-operator", - "popularity": 131.0 + "popularity": 398.0 }, { "name": "che-machine-exec", "url": "https://quay.io/repository/eclipse/che-machine-exec", - "popularity": 9244.0 + "popularity": 7797.0 }, { "name": "golang-builder", "url": "https://quay.io/repository/prometheus/golang-builder", - "popularity": 3618.0 + "popularity": 2871.0 } ] }, @@ -43421,27 +42924,27 @@ { "name": "workflow-controller", "url": "https://quay.io/repository/argoproj/workflow-controller", - "popularity": 1196920.0 + "popularity": 1182422.0 }, { "name": "workflow-service", "url": "https://quay.io/repository/ukhomeofficedigital/workflow-service", - "popularity": 315.0 + "popularity": 211.0 }, { "name": "windows-upgrade", "url": "https://quay.io/repository/calico/windows-upgrade", - "popularity": 7833.0 + "popularity": 7607.0 }, { "name": "workflow-helpers", "url": "https://quay.io/repository/thoth-station/workflow-helpers", - "popularity": 2349.0 + "popularity": 2545.0 }, { "name": "workflow-controller", "url": "https://quay.io/repository/codefresh/workflow-controller", - "popularity": 2760.0 + "popularity": 2429.0 } ] }, @@ -43573,27 +43076,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "insights-db-migration", "url": "https://quay.io/repository/fairwinds/insights-db-migration", - "popularity": 75903.0 + "popularity": 65723.0 }, { "name": "gitlab-runner-docker-cleanup", "url": "https://quay.io/repository/gitlab/gitlab-runner-docker-cleanup", - "popularity": 802500.0 + "popularity": 796772.0 }, { "name": "tool-box", "url": "https://quay.io/repository/redhat-cop/tool-box", - "popularity": 4928.0 + "popularity": 3871.0 }, { "name": "audit-syslog-service", "url": "https://quay.io/repository/opencloudio/audit-syslog-service", - "popularity": 74047.0 + "popularity": 130197.0 } ] }, @@ -43635,27 +43138,27 @@ { "name": "application-service", "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 72875.0 + "popularity": 116853.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 159557.0 + "popularity": 163268.0 }, { "name": "hubble-relay", "url": "https://quay.io/repository/cilium/hubble-relay", - "popularity": 135390.0 + "popularity": 118685.0 } ] }, @@ -43773,27 +43276,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 92535501.0 + "popularity": 96679165.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 88998175.0 + "popularity": 92762600.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 89089055.0 + "popularity": 92854581.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 858875.0 + "popularity": 920253.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1306060.0 + "popularity": 1343874.0 } ] }, @@ -43816,27 +43319,27 @@ { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 }, { "name": "jboss-eap-6.4-switchyard", "url": "https://quay.io/repository/ubpo/jboss-eap-6.4-switchyard", - "popularity": 3360.0 + "popularity": 3350.0 }, { "name": "jboss-kie-mysql-extension-openshift-image", "url": "https://quay.io/repository/kiegroup/jboss-kie-mysql-extension-openshift-image", - "popularity": 2495.0 - }, - { - "name": "egeria", - "url": "https://quay.io/repository/odpi/egeria", - "popularity": 550.0 + "popularity": 2608.0 }, { "name": "wildfly", "url": "https://quay.io/repository/wildfly/wildfly", - "popularity": 5428.0 + "popularity": 7410.0 + }, + { + "name": "business-central-workbench-showcase", + "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", + "popularity": 637.0 } ] }, @@ -43856,7 +43359,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 18, + "star_count": 19, "Docker_Url": "https://hub.docker.com/r/bitnami/wildfly", "OS": [ { @@ -43876,7 +43379,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 18, + "star_count": 19, "Docker_Url": "https://hub.docker.com/r/bitnami/wildfly", "OS": [ { @@ -43913,55 +43416,55 @@ "quay_exact_images": [ { "name": "wildfly", - "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/wildfly", - "popularity": 0.0 + "url": "https://quay.io/repository/wildfly/wildfly", + "popularity": 7410.0 }, { "name": "wildfly", - "url": "https://quay.io/repository/wildfly/wildfly", - "popularity": 5428.0 + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/wildfly", + "popularity": 0.0 }, { "name": "wildfly", "url": "https://quay.io/repository/operatorhubio/wildfly", - "popularity": 352.0 + "popularity": 288.0 }, { "name": "wildfly", "url": "https://quay.io/repository/halconsole/wildfly", - "popularity": 619.0 + "popularity": 520.0 }, { "name": "wildfly", "url": "https://quay.io/repository/alousta_us/wildfly", - "popularity": 168.0 + "popularity": 172.0 } ], "quay_top_images": [ { "name": "wildfly-centos7", "url": "https://quay.io/repository/wildfly/wildfly-centos7", - "popularity": 2759592.0 + "popularity": 2789449.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 }, { "name": "wildfly", "url": "https://quay.io/repository/wildfly/wildfly", - "popularity": 5428.0 + "popularity": 7410.0 }, { "name": "wildfly-s2i-jdk11", "url": "https://quay.io/repository/wildfly/wildfly-s2i-jdk11", - "popularity": 793.0 + "popularity": 740.0 }, { "name": "wildfly", "url": "https://quay.io/repository/halconsole/wildfly", - "popularity": 619.0 + "popularity": 520.0 } ] }, @@ -44017,12 +43520,12 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "kasmweb/oracle-7-desktop", + "name": "kasmweb/oracle-8-desktop", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", "OS": [ { "Class": "OS", @@ -44031,16 +43534,24 @@ "Versions": null, "Type": "linux", "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" } ] }, { - "name": "kasmweb/oracle-8-desktop", + "name": "kasmweb/oracle-7-desktop", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", "OS": [ { "Class": "OS", @@ -44049,14 +43560,6 @@ "Versions": null, "Type": "linux", "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" } ] } @@ -44068,27 +43571,27 @@ { "name": "gateway", "url": "https://quay.io/repository/solo-io/gateway", - "popularity": 190213.0 + "popularity": 345983.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15052.0 + "popularity": 15042.0 }, { "name": "gateway", "url": "https://quay.io/repository/bluecat/gateway", - "popularity": 20475.0 + "popularity": 20583.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 353617.0 + "popularity": 421059.0 } ] }, @@ -44130,27 +43633,27 @@ { "name": "startup-script", "url": "https://quay.io/repository/cilium/startup-script", - "popularity": 166460.0 + "popularity": 257361.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 80338.0 + "popularity": 79034.0 }, { "name": "podman", "url": "https://quay.io/repository/containers/podman", - "popularity": 21241.0 + "popularity": 20563.0 }, { "name": "netbox", "url": "https://quay.io/repository/netboxcommunity/netbox", - "popularity": 12769.0 + "popularity": 11302.0 }, { "name": "ubuntu", "url": "https://quay.io/repository/baselibrary/ubuntu", - "popularity": 63580.0 + "popularity": 79437.0 } ] }, @@ -44190,27 +43693,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1306060.0 + "popularity": 1343874.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 }, { "name": "samtools", "url": "https://quay.io/repository/biocontainers/samtools", - "popularity": 47366.0 + "popularity": 109822.0 } ] }, @@ -44224,19 +43727,12 @@ "stars": 12, "display_name": "Knative Operator", "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", - "version": "1.5.1", + "version": "1.6.0", "deprecated": false, "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656460800, + "ts": 1626134400, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -44345,7 +43841,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": null, + "git_repos": "https://docs.containo.us", "container_images": [] }, { @@ -44642,16 +44138,9 @@ "stars": 0, "display_name": "MetalLB Operator", "description": "An operator for deploying MetalLB on a kubernetes cluster.", - "version": "0.12.0", + "version": "0.13.3", "deprecated": false, "signed": false, - "security_report_summary": { - "low": 2, - "high": 1, - "medium": 4, - "unknown": 1, - "critical": 0 - }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, "ts": 1624838400, @@ -44822,7 +44311,7 @@ "logo_image_id": "1688e00c-16af-4fc8-8a21-239609e2d091", "stars": 0, "display_name": "Routernetes", - "version": "0.0.4", + "version": "0.0.5", "deprecated": false, "signed": false, "security_report_summary": { @@ -44834,7 +44323,7 @@ }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1655510438, + "ts": 1657636238, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -44849,7 +44338,7 @@ }, "git_repos": "https://github.com/routernetes/routernetes-operator", "container_images": [ - "quay.io/routernetes/routernetes-operator:0.0.4" + "quay.io/routernetes/routernetes-operator:0.0.5" ] }, { @@ -44945,27 +44434,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 65896.0 + "popularity": 82319.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 80338.0 + "popularity": 79034.0 }, { "name": "chart-testing", "url": "https://quay.io/repository/helmpack/chart-testing", - "popularity": 37818.0 + "popularity": 36767.0 }, { "name": "soketi", "url": "https://quay.io/repository/soketi/soketi", - "popularity": 42567.0 + "popularity": 31737.0 } ] }, @@ -45007,27 +44496,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -45065,7 +44554,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 81, + "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ { @@ -45130,27 +44619,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 826844.0 + "popularity": 883725.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412398.0 + "popularity": 403203.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 } ] }, @@ -45213,7 +44702,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 1978, + "star_count": 1989, "Docker_Url": "https://hub.docker.com/_/docker", "OS": [ { @@ -45235,34 +44724,7 @@ ] } ], - "dockerhub_top_images": [ - { - "name": "docker", - "Official image": true, - "Verified Publisher": false, - "Description": "", - "star_count": 1978, - "Docker_Url": "https://hub.docker.com/_/docker", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] + "dockerhub_top_images": [] }, { "quay_exact_images": [], @@ -45270,27 +44732,27 @@ { "name": "gitlab-runner-docker-cleanup", "url": "https://quay.io/repository/gitlab/gitlab-runner-docker-cleanup", - "popularity": 802500.0 + "popularity": 796772.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "thanos", "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2534311.0 + "popularity": 2526636.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -45495,7 +44957,7 @@ { "name": "flash", "url": "https://quay.io/repository/biocontainers/flash", - "popularity": 30.0 + "popularity": 26.0 }, { "name": "flash", @@ -45522,7 +44984,12 @@ { "name": "flash", "url": "https://quay.io/repository/biocontainers/flash", - "popularity": 30.0 + "popularity": 26.0 + }, + { + "name": "flash", + "url": "https://quay.io/repository/logiq/flash", + "popularity": 0.0 }, { "name": "flash-brew-beetle", @@ -45534,11 +45001,6 @@ "url": "https://quay.io/repository/logiq/flash-brew-coffee", "popularity": 0.0 }, - { - "name": "flash", - "url": "https://quay.io/repository/logiq/flash", - "popularity": 0.0 - }, { "name": "flash", "url": "https://quay.io/repository/refgenomics/flash", @@ -45584,27 +45046,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 }, { "name": "nginx-ingress-controller", "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1153447.0 + "popularity": 1214037.0 } ] }, @@ -45700,27 +45162,27 @@ { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "standard-environment", "url": "https://quay.io/repository/domino/standard-environment", - "popularity": 55752.0 - }, - { - "name": "java", - "url": "https://quay.io/repository/enxadahost/java", - "popularity": 19927.0 + "popularity": 53544.0 }, { "name": "astro-runtime", "url": "https://quay.io/repository/astronomer/astro-runtime", - "popularity": 35420.0 + "popularity": 40355.0 + }, + { + "name": "vuln-runtime-scanner", + "url": "https://quay.io/repository/sysdig/vuln-runtime-scanner", + "popularity": 28715.0 } ] }, @@ -45737,12 +45199,12 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "bitnami/node", + "name": "cimg/node", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 64, - "Docker_Url": "https://hub.docker.com/r/bitnami/node", + "star_count": 13, + "Docker_Url": "https://hub.docker.com/r/cimg/node", "OS": [ { "Class": "OS", @@ -45755,12 +45217,12 @@ ] }, { - "name": "cimg/node", + "name": "bitnami/node", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 12, - "Docker_Url": "https://hub.docker.com/r/cimg/node", + "star_count": 64, + "Docker_Url": "https://hub.docker.com/r/bitnami/node", "OS": [ { "Class": "OS", @@ -45795,7 +45257,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 11676, + "star_count": 11711, "Docker_Url": "https://hub.docker.com/_/node", "OS": [ { @@ -45806,6 +45268,14 @@ "Type": "linux", "Subtype": "" }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v6", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, { "Class": "OS", "Architecture": "arm", @@ -45848,27 +45318,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "node", "url": "https://quay.io/repository/calico/node", - "popularity": 14415135.0 + "popularity": 15166971.0 }, { "name": "csi-node-driver-registrar", "url": "https://quay.io/repository/k8scsi/csi-node-driver-registrar", - "popularity": 1069739.0 + "popularity": 1095732.0 }, { "name": "node-image-analyzer", "url": "https://quay.io/repository/sysdig/node-image-analyzer", - "popularity": 332066.0 + "popularity": 326015.0 }, { "name": "node-disk-manager-amd64", "url": "https://quay.io/repository/openebs/node-disk-manager-amd64", - "popularity": 159434.0 + "popularity": 171233.0 } ] }, @@ -45889,7 +45359,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 28, + "star_count": 29, "Docker_Url": "https://hub.docker.com/r/bitnami/rails", "OS": [ { @@ -45925,7 +45395,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 2149, + "star_count": 2150, "Docker_Url": "https://hub.docker.com/_/ruby", "OS": [ { @@ -45939,7 +45409,7 @@ { "Class": "OS", "Architecture": "arm", - "Variants": "v5", + "Variants": "v6", "Versions": null, "Type": "linux", "Subtype": "" @@ -45968,14 +45438,6 @@ "Type": "linux", "Subtype": "" }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, { "Class": "OS", "Architecture": "ppc64le", @@ -46038,27 +45500,27 @@ { "name": "ruby-27-centos7", "url": "https://quay.io/repository/centos7/ruby-27-centos7", - "popularity": 251822.0 + "popularity": 254382.0 }, { "name": "ruby-26-centos7", "url": "https://quay.io/repository/centos7/ruby-26-centos7", - "popularity": 165969.0 + "popularity": 170674.0 }, { "name": "ruby-25-centos7", "url": "https://quay.io/repository/centos7/ruby-25-centos7", - "popularity": 74049.0 + "popularity": 73389.0 }, { "name": "ruby-27", "url": "https://quay.io/repository/openshifttest/ruby-27", - "popularity": 14124.0 + "popularity": 16742.0 }, { "name": "ruby-cron", "url": "https://quay.io/repository/palettecloud/ruby-cron", - "popularity": 11018.0 + "popularity": 10816.0 } ] }, @@ -46098,7 +45560,7 @@ { "name": "powerstore_exporter", "url": "https://quay.io/repository/kckecheng/powerstore_exporter", - "popularity": 0.0 + "popularity": 1.0 }, { "name": "emc-neo-antigen", @@ -46128,30 +45590,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "ibm-management-ingress-operator", - "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 111760.0 - }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1306060.0 + "popularity": 1343874.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 + }, + { + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 254930.0 } ] }, @@ -46240,27 +45702,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "coreos-assembler", "url": "https://quay.io/repository/coreos-assembler/coreos-assembler", - "popularity": 24483.0 + "popularity": 25078.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 }, { "name": "rust", "url": "https://quay.io/repository/instrumentisto/rust", - "popularity": 2946.0 + "popularity": 2318.0 } ] }, @@ -46302,27 +45764,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 255406.0 + "popularity": 254930.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 189232.0 + "popularity": 193426.0 } ] }, @@ -46345,27 +45807,27 @@ { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 374426.0 + "popularity": 382812.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 255406.0 + "popularity": 254930.0 }, { "name": "teleport", "url": "https://quay.io/repository/gravitational/teleport", - "popularity": 157544.0 + "popularity": 145184.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 189232.0 + "popularity": 193426.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 140143.0 + "popularity": 146710.0 } ] }, @@ -46450,12 +45912,12 @@ ] }, { - "name": "ibmcom/voice-gateway-sms", + "name": "ibmcom/voice-gateway-so", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/ibmcom/voice-gateway-sms", + "star_count": 11, + "Docker_Url": "https://hub.docker.com/r/ibmcom/voice-gateway-so", "OS": [ { "Class": "OS", @@ -46468,12 +45930,12 @@ ] }, { - "name": "ibmcom/voice-gateway-so", + "name": "ibmcom/voice-gateway-mr", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 11, - "Docker_Url": "https://hub.docker.com/r/ibmcom/voice-gateway-so", + "star_count": 9, + "Docker_Url": "https://hub.docker.com/r/ibmcom/voice-gateway-mr", "OS": [ { "Class": "OS", @@ -46486,12 +45948,12 @@ ] }, { - "name": "ibmcom/voice-gateway-mr", + "name": "ibmcom/secure-gateway-client", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 9, - "Docker_Url": "https://hub.docker.com/r/ibmcom/voice-gateway-mr", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/ibmcom/secure-gateway-client", "OS": [ { "Class": "OS", @@ -46511,27 +45973,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 353617.0 + "popularity": 421059.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 } ] }, @@ -46573,27 +46035,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 374426.0 + "popularity": 382812.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 255406.0 + "popularity": 254930.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 189232.0 + "popularity": 193426.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 140143.0 + "popularity": 146710.0 } ] }, @@ -46626,36 +46088,54 @@ "Subtype": "" } ] + }, + { + "name": "intel/object-detection", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/object-detection", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] } ] }, { "quay_exact_images": [], "quay_top_images": [ - { - "name": "common-web-ui", - "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 353182.0 - }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 }, { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 374426.0 + "popularity": 382812.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 + }, + { + "name": "ceph", + "url": "https://quay.io/repository/ceph/ceph", + "popularity": 380580.0 } ] }, @@ -46715,27 +46195,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 }, { "name": "gateway", "url": "https://quay.io/repository/bluecat/gateway", - "popularity": 20475.0 + "popularity": 20583.0 } ] }, @@ -46758,27 +46238,27 @@ { "name": "zen-data-sorcerer", "url": "https://quay.io/repository/opencloudio/zen-data-sorcerer", - "popularity": 236759.0 + "popularity": 225384.0 }, { "name": "metering-data-manager", "url": "https://quay.io/repository/opencloudio/metering-data-manager", - "popularity": 211902.0 + "popularity": 212073.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 335511.0 + "popularity": 380580.0 } ] }, @@ -46799,7 +46279,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 46, + "star_count": 48, "Docker_Url": "https://hub.docker.com/r/ibmcom/informix-developer-database", "OS": [ { @@ -46826,27 +46306,27 @@ { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 255406.0 + "popularity": 254930.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 241707.0 + "popularity": 245318.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 189232.0 + "popularity": 193426.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183418.0 + "popularity": 183645.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 140143.0 + "popularity": 146710.0 } ] }, @@ -47267,7 +46747,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": null, + "git_repos": "https://docs.couchbase.com/operator/current/overview.html", "container_images": [ "registry.hub.docker.com/couchbase/operator:2.3.0" ] @@ -47305,7 +46785,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": null, + "git_repos": "https://github.com/RedisLabs/redis-enterprise-k8s-docs", "container_images": [] }, { @@ -47341,7 +46821,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": null, + "git_repos": "https://www.enterprisedb.com/docs/postgres_for_kubernetes/latest/", "container_images": [ "quay.io/enterprisedb/cloud-native-postgresql" ] @@ -47513,7 +46993,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": null, + "git_repos": "https://docs.hazelcast.com/operator/latest/", "container_images": [ "docker.io/hazelcast/hazelcast-platform-operator:5.3" ] @@ -47574,27 +47054,27 @@ { "name": "zen-data-sorcerer", "url": "https://quay.io/repository/opencloudio/zen-data-sorcerer", - "popularity": 236759.0 + "popularity": 225384.0 }, { "name": "metering-data-manager", "url": "https://quay.io/repository/opencloudio/metering-data-manager", - "popularity": 211902.0 + "popularity": 212073.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { - "name": "data-portal", - "url": "https://quay.io/repository/cdis/data-portal", - "popularity": 26339.0 + "name": "s2i-generic-data-science-notebook", + "url": "https://quay.io/repository/thoth-station/s2i-generic-data-science-notebook", + "popularity": 21846.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 } ] }, @@ -47617,27 +47097,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 353182.0 + "popularity": 378922.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -47660,27 +47140,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "java", "url": "https://quay.io/repository/enxadahost/java", - "popularity": 19927.0 + "popularity": 21708.0 }, { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 374426.0 + "popularity": 382812.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 335511.0 + "popularity": 380580.0 }, { - "name": "busybox", - "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 254930.0 } ] }, @@ -47794,27 +47274,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 353617.0 + "popularity": 421059.0 }, { "name": "concourse-ssh-resource", "url": "https://quay.io/repository/henry40408/concourse-ssh-resource", - "popularity": 130586.0 + "popularity": 149507.0 }, { "name": "ibm-commonui-operator", "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", - "popularity": 117024.0 + "popularity": 113315.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 } ] }, @@ -47837,27 +47317,27 @@ { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1306060.0 + "popularity": 1343874.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 353617.0 + "popularity": 421059.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 255406.0 + "popularity": 254930.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 241707.0 + "popularity": 245318.0 } ] }, @@ -47909,7 +47389,7 @@ "OS": [ { "Class": "OS", - "Architecture": "s390x", + "Architecture": "amd64", "Variants": null, "Versions": null, "Type": "linux", @@ -47919,24 +47399,24 @@ "Class": "OS", "Architecture": "amd64", "Variants": null, - "Versions": null, - "Type": "linux", + "Versions": "10.0.17763.3165", + "Type": "windows", "Subtype": "" }, { "Class": "OS", "Architecture": "amd64", "Variants": null, - "Versions": "10.0.17763.3046", + "Versions": "10.0.20348.825", "Type": "windows", "Subtype": "" }, { "Class": "OS", - "Architecture": "amd64", + "Architecture": "s390x", "Variants": null, - "Versions": "10.0.20348.768", - "Type": "windows", + "Versions": null, + "Type": "linux", "Subtype": "" } ] @@ -47949,27 +47429,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 335511.0 + "popularity": 380580.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 255406.0 + "popularity": 254930.0 } ] }, @@ -47985,6 +47465,24 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ + { + "name": "kasmweb/oracle-7-desktop", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, { "name": "kasmweb/oracle-8-desktop", "Official image": false, @@ -48019,27 +47517,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 353182.0 + "popularity": 378922.0 }, { "name": "haproxy-ingress", "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", - "popularity": 929588.0 + "popularity": 909887.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 353617.0 + "popularity": 421059.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 } ] }, @@ -48062,27 +47560,27 @@ { "name": "haproxy-ingress", "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", - "popularity": 929588.0 + "popularity": 909887.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 353617.0 + "popularity": 421059.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 159557.0 + "popularity": 163268.0 } ] }, @@ -48124,27 +47622,27 @@ { "name": "kube-state-metrics", "url": "https://quay.io/repository/coreos/kube-state-metrics", - "popularity": 997310.0 + "popularity": 1016002.0 }, { "name": "origin-openshift-state-metrics", "url": "https://quay.io/repository/openshift/origin-openshift-state-metrics", - "popularity": 5854.0 + "popularity": 5812.0 }, { "name": "origin-kube-state-metrics", "url": "https://quay.io/repository/openshift/origin-kube-state-metrics", - "popularity": 4003.0 + "popularity": 3528.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 }, { "name": "kafka-bridge", "url": "https://quay.io/repository/strimzi/kafka-bridge", - "popularity": 14377.0 + "popularity": 14244.0 } ] }, @@ -48167,27 +47665,27 @@ { "name": "common-service-operator", "url": "https://quay.io/repository/opencloudio/common-service-operator", - "popularity": 317405.0 + "popularity": 284079.0 }, { "name": "service-catalog", "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", - "popularity": 330506.0 + "popularity": 330422.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 } ] }, @@ -48210,27 +47708,27 @@ { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 353617.0 + "popularity": 421059.0 }, { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 374426.0 + "popularity": 382812.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 255406.0 + "popularity": 254930.0 }, { "name": "concourse-ssh-resource", "url": "https://quay.io/repository/henry40408/concourse-ssh-resource", - "popularity": 130586.0 + "popularity": 149507.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 189232.0 + "popularity": 193426.0 } ] }, @@ -48272,27 +47770,27 @@ { "name": "apicurio-registry-sql", "url": "https://quay.io/repository/apicurio/apicurio-registry-sql", - "popularity": 12300.0 + "popularity": 14608.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 241707.0 + "popularity": 245318.0 }, { "name": "mariadb-105-centos7", "url": "https://quay.io/repository/centos7/mariadb-105-centos7", - "popularity": 136441.0 + "popularity": 142292.0 }, { "name": "soketi", "url": "https://quay.io/repository/soketi/soketi", - "popularity": 42567.0 + "popularity": 31737.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 19079.0 + "popularity": 17355.0 } ] }, @@ -48403,7 +47901,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": null, + "git_repos": "https://www.enterprisedb.com/docs/postgres_for_kubernetes/latest/", "container_images": [ "quay.io/enterprisedb/cloud-native-postgresql" ] @@ -48491,27 +47989,27 @@ { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183418.0 - }, - { - "name": "che-plugin-artifacts-broker", - "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", - "popularity": 20225.0 + "popularity": 183645.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 70825.0 + "popularity": 102256.0 + }, + { + "name": "che-plugin-artifacts-broker", + "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", + "popularity": 19550.0 }, { "name": "spark-operator", "url": "https://quay.io/repository/radanalyticsio/spark-operator", - "popularity": 25798.0 + "popularity": 25565.0 }, { - "name": "centos-stream", - "url": "https://quay.io/repository/containerdisks/centos-stream", - "popularity": 14022.0 + "name": "kata-deploy", + "url": "https://quay.io/repository/kata-containers/kata-deploy", + "popularity": 15324.0 } ] }, @@ -48534,27 +48032,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 92535501.0 + "popularity": 96679165.0 }, { "name": "nginx-ingress-controller", "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1153447.0 + "popularity": 1214037.0 }, { "name": "workflow-controller", "url": "https://quay.io/repository/argoproj/workflow-controller", - "popularity": 1196920.0 + "popularity": 1182422.0 }, { "name": "controller", "url": "https://quay.io/repository/metallb/controller", - "popularity": 228321.0 + "popularity": 241290.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 } ] }, @@ -48614,27 +48112,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "application-service", "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 72875.0 + "popularity": 116853.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -48692,7 +48190,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 382, + "star_count": 383, "Docker_Url": "https://hub.docker.com/r/google/cloud-sdk", "OS": [ { @@ -48713,27 +48211,27 @@ { "name": "cloud-connector", "url": "https://quay.io/repository/sysdig/cloud-connector", - "popularity": 1263418.0 + "popularity": 1192367.0 }, { "name": "cloud-connector-s3-bucket-config", "url": "https://quay.io/repository/sysdig/cloud-connector-s3-bucket-config", - "popularity": 644351.0 + "popularity": 629482.0 }, { "name": "cloud-scanning", "url": "https://quay.io/repository/sysdig/cloud-scanning", - "popularity": 167068.0 + "popularity": 167476.0 }, { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 374426.0 + "popularity": 382812.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 } ] }, @@ -49011,7 +48509,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": null, + "git_repos": "https://www.enterprisedb.com/docs/postgres_for_kubernetes/latest/", "container_images": [ "quay.io/enterprisedb/cloud-native-postgresql" ] @@ -49241,19 +48739,12 @@ "stars": 12, "display_name": "Knative Operator", "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", - "version": "1.5.1", + "version": "1.6.0", "deprecated": false, "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656460800, + "ts": 1626134400, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -49497,27 +48988,27 @@ { "name": "ocp-release", "url": "https://quay.io/repository/openshift-release-dev/ocp-release", - "popularity": 39354632.0 + "popularity": 41511623.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "thanos", "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2534311.0 + "popularity": 2526636.0 } ] }, @@ -49540,27 +49031,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "device-plugin-network-bridge", "url": "https://quay.io/repository/kubevirt/device-plugin-network-bridge", - "popularity": 171212.0 + "popularity": 170849.0 }, { "name": "node-disk-manager-amd64", "url": "https://quay.io/repository/openebs/node-disk-manager-amd64", - "popularity": 159434.0 + "popularity": 171233.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 74259.0 + "popularity": 148414.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 70825.0 + "popularity": 102256.0 } ] }, @@ -49583,27 +49074,27 @@ { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "business-central-workbench-showcase", "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", - "popularity": 609.0 + "popularity": 637.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52903.0 + "popularity": 52832.0 }, { "name": "vouch-proxy", "url": "https://quay.io/repository/vouch/vouch-proxy", - "popularity": 24168.0 + "popularity": 23665.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8725.0 + "popularity": 8041.0 } ] }, @@ -49717,27 +49208,27 @@ { "name": "common-service-operator", "url": "https://quay.io/repository/opencloudio/common-service-operator", - "popularity": 317405.0 + "popularity": 284079.0 }, { "name": "service-catalog", "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", - "popularity": 330506.0 + "popularity": 330422.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 } ] }, @@ -49815,27 +49306,27 @@ { "name": "concourse-file-resource", "url": "https://quay.io/repository/henry40408/concourse-file-resource", - "popularity": 668842.0 + "popularity": 662170.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -49858,27 +49349,27 @@ { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 38116.0 + "popularity": 36573.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 19079.0 - }, - { - "name": "rseqc", - "url": "https://quay.io/repository/biocontainers/rseqc", - "popularity": 9885.0 + "popularity": 17355.0 }, { "name": "multiqc", "url": "https://quay.io/repository/biocontainers/multiqc", - "popularity": 9969.0 + "popularity": 30213.0 + }, + { + "name": "rseqc", + "url": "https://quay.io/repository/biocontainers/rseqc", + "popularity": 5788.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8725.0 + "popularity": 8041.0 } ] }, @@ -49920,27 +49411,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "nginx-ingress-controller", "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1153447.0 + "popularity": 1214037.0 }, { "name": "haproxy-ingress", "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", - "popularity": 929588.0 + "popularity": 909887.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 826844.0 + "popularity": 883725.0 } ] }, @@ -50000,27 +49491,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 }, { "name": "nginx-ingress-controller", "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1153447.0 + "popularity": 1214037.0 } ] }, @@ -50043,27 +49534,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 353617.0 + "popularity": 421059.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 335511.0 + "popularity": 380580.0 } ] }, @@ -50086,27 +49577,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "monitoring-stack-operator-catalog", "url": "https://quay.io/repository/tsisodia10/monitoring-stack-operator-catalog", - "popularity": 20627.0 + "popularity": 19229.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 335511.0 + "popularity": 380580.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183418.0 + "popularity": 183645.0 }, { "name": "ibm-monitoring-grafana-operator", "url": "https://quay.io/repository/opencloudio/ibm-monitoring-grafana-operator", - "popularity": 18830.0 + "popularity": 19136.0 } ] }, @@ -50220,27 +49711,27 @@ { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 353617.0 + "popularity": 421059.0 }, { "name": "concourse-ssh-resource", "url": "https://quay.io/repository/henry40408/concourse-ssh-resource", - "popularity": 130586.0 + "popularity": 149507.0 }, { "name": "ibm-commonui-operator", "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", - "popularity": 117024.0 + "popularity": 113315.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183418.0 + "popularity": 183645.0 } ] }, @@ -50301,27 +49792,27 @@ { "name": "json-mock", "url": "https://quay.io/repository/cilium/json-mock", - "popularity": 16745.0 + "popularity": 17844.0 }, { "name": "json-exporter", "url": "https://quay.io/repository/prometheuscommunity/json-exporter", - "popularity": 16119.0 + "popularity": 22627.0 }, { "name": "audit-syslog-service", "url": "https://quay.io/repository/opencloudio/audit-syslog-service", - "popularity": 74047.0 + "popularity": 130197.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20112.0 + "popularity": 20354.0 }, { - "name": "netbox", - "url": "https://quay.io/repository/netboxcommunity/netbox", - "popularity": 12769.0 + "name": "haproxy-exporter", + "url": "https://quay.io/repository/prometheus/haproxy-exporter", + "popularity": 13460.0 } ] }, @@ -50420,27 +49911,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "application-service", "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 72875.0 + "popularity": 116853.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -50518,27 +50009,27 @@ { "name": "concourse-file-resource", "url": "https://quay.io/repository/henry40408/concourse-file-resource", - "popularity": 668842.0 + "popularity": 662170.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -50616,27 +50107,27 @@ { "name": "oauth2-proxy", "url": "https://quay.io/repository/oauth2-proxy/oauth2-proxy", - "popularity": 3150266.0 + "popularity": 3324058.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -50758,6 +50249,22 @@ "Versions": null, "Type": "linux", "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" } ] }, @@ -50797,7 +50304,7 @@ "OS": [ { "Class": "OS", - "Architecture": "s390x", + "Architecture": "amd64", "Variants": null, "Versions": null, "Type": "linux", @@ -50807,24 +50314,24 @@ "Class": "OS", "Architecture": "amd64", "Variants": null, - "Versions": null, - "Type": "linux", + "Versions": "10.0.17763.3165", + "Type": "windows", "Subtype": "" }, { "Class": "OS", "Architecture": "amd64", "Variants": null, - "Versions": "10.0.17763.3046", + "Versions": "10.0.20348.825", "Type": "windows", "Subtype": "" }, { "Class": "OS", - "Architecture": "amd64", + "Architecture": "s390x", "Variants": null, - "Versions": "10.0.20348.768", - "Type": "windows", + "Versions": null, + "Type": "linux", "Subtype": "" } ] @@ -50837,27 +50344,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 335511.0 + "popularity": 380580.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 255406.0 + "popularity": 254930.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 189232.0 + "popularity": 193426.0 } ] }, @@ -50890,17 +50397,17 @@ { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 38116.0 + "popularity": 36573.0 + }, + { + "name": "mobile-security-framework-mobsf", + "url": "https://quay.io/repository/amal5alshaikh/mobile-security-framework-mobsf", + "popularity": 1940.0 }, { "name": "mobile-developer-console", "url": "https://quay.io/repository/aerogear/mobile-developer-console", "popularity": 0.0 - }, - { - "name": "mobile-security-framework-mobsf", - "url": "https://quay.io/repository/amal5alshaikh/mobile-security-framework-mobsf", - "popularity": 1596.0 } ] }, @@ -50940,12 +50447,7 @@ { "name": "saas-operator-catalog", "url": "https://quay.io/repository/3scale/saas-operator-catalog", - "popularity": 1011.0 - }, - { - "name": "saas-operator", - "url": "https://quay.io/repository/3scale/saas-operator", - "popularity": 2.0 + "popularity": 1013.0 }, { "name": "push-saas-metrics", @@ -50955,12 +50457,17 @@ { "name": "trial-saas", "url": "https://quay.io/repository/opsmxpublic/trial-saas", - "popularity": 37.0 + "popularity": 6.0 + }, + { + "name": "kiwi", + "url": "https://quay.io/repository/kiwitcms/kiwi", + "popularity": 8.0 }, { "name": "testssl", "url": "https://quay.io/repository/jumanjiman/testssl", - "popularity": 7.0 + "popularity": 4.0 } ] }, @@ -51020,27 +50527,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "flannel", "url": "https://quay.io/repository/coreos/flannel", - "popularity": 1589952.0 + "popularity": 1674754.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 }, { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 374426.0 + "popularity": 382812.0 } ] }, @@ -51063,27 +50570,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "application-service", "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 72875.0 + "popularity": 116853.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -51104,29 +50611,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "postgresql", - "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/postgresql", - "popularity": 0.0 + "name": "virtual-environments", + "url": "https://quay.io/repository/catthehacker/virtual-environments", + "popularity": 52890.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 65896.0 + "popularity": 82319.0 + }, + { + "name": "rabbitmq", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/rabbitmq", + "popularity": 2.0 }, { "name": "kata-deploy", "url": "https://quay.io/repository/kata-containers/kata-deploy", - "popularity": 7211.0 + "popularity": 15324.0 }, { "name": "chlaus", "url": "https://quay.io/repository/appuio/chlaus", - "popularity": 2687.0 - }, - { - "name": "federatorai-operator-ubi", - "url": "https://quay.io/repository/prophetstor/federatorai-operator-ubi", - "popularity": 473.0 + "popularity": 1797.0 } ] }, @@ -51148,14 +50655,14 @@ { "name": "webtop", "url": "https://quay.io/repository/linuxserver.io/webtop", - "popularity": 406.0 + "popularity": 511.0 } ], "quay_top_images": [ { "name": "webtop", "url": "https://quay.io/repository/linuxserver.io/webtop", - "popularity": 406.0 + "popularity": 511.0 }, { "name": "lspipepr-webtop", @@ -51253,27 +50760,27 @@ { "name": "oauth2-proxy", "url": "https://quay.io/repository/oauth2-proxy/oauth2-proxy", - "popularity": 3150266.0 + "popularity": 3324058.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -51314,44 +50821,44 @@ { "name": "utility", "url": "https://quay.io/repository/theiagen/utility", - "popularity": 60840.0 + "popularity": 233739.0 }, { "name": "utility", "url": "https://quay.io/repository/rbean/utility", - "popularity": 68.0 + "popularity": 70.0 }, { "name": "utility", "url": "https://quay.io/repository/dyleck/utility", - "popularity": 42.0 + "popularity": 16.0 } ], "quay_top_images": [ { "name": "utility", "url": "https://quay.io/repository/theiagen/utility", - "popularity": 60840.0 + "popularity": 233739.0 }, { "name": "terraform-docs", "url": "https://quay.io/repository/terraform-docs/terraform-docs", - "popularity": 6960.0 + "popularity": 7213.0 }, { "name": "image-exporter", "url": "https://quay.io/repository/plotly/image-exporter", - "popularity": 3278.0 - }, - { - "name": "drain-cleaner", - "url": "https://quay.io/repository/strimzi/drain-cleaner", - "popularity": 2902.0 + "popularity": 1667.0 }, { "name": "gawk", "url": "https://quay.io/repository/biocontainers/gawk", - "popularity": 2812.0 + "popularity": 12927.0 + }, + { + "name": "drain-cleaner", + "url": "https://quay.io/repository/strimzi/drain-cleaner", + "popularity": 2727.0 } ] }, @@ -51393,27 +50900,27 @@ { "name": "citrix-k8s-ingress-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", - "popularity": 137872.0 + "popularity": 138781.0 }, { "name": "citrix-k8s-node-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", - "popularity": 41494.0 + "popularity": 39371.0 }, { "name": "citrix-adc-metrics-exporter", "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", - "popularity": 39011.0 + "popularity": 39329.0 }, { "name": "citrix-observability-exporter", "url": "https://quay.io/repository/citrix/citrix-observability-exporter", - "popularity": 1975.0 + "popularity": 2000.0 }, { "name": "citrix-k8s-cpx-ingress", "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", - "popularity": 460.0 + "popularity": 391.0 } ] }, @@ -51455,27 +50962,27 @@ { "name": "citrix-k8s-ingress-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", - "popularity": 137872.0 + "popularity": 138781.0 }, { "name": "citrix-k8s-node-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", - "popularity": 41494.0 + "popularity": 39371.0 }, { "name": "citrix-adc-metrics-exporter", "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", - "popularity": 39011.0 + "popularity": 39329.0 }, { "name": "citrix-observability-exporter", "url": "https://quay.io/repository/citrix/citrix-observability-exporter", - "popularity": 1975.0 + "popularity": 2000.0 }, { "name": "citrix-k8s-cpx-ingress", "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", - "popularity": 460.0 + "popularity": 391.0 } ] }, @@ -51517,27 +51024,27 @@ { "name": "citrix-k8s-ingress-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", - "popularity": 137872.0 + "popularity": 138781.0 }, { "name": "citrix-k8s-node-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", - "popularity": 41494.0 + "popularity": 39371.0 }, { "name": "citrix-adc-metrics-exporter", "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", - "popularity": 39011.0 + "popularity": 39329.0 }, { "name": "citrix-observability-exporter", "url": "https://quay.io/repository/citrix/citrix-observability-exporter", - "popularity": 1975.0 + "popularity": 2000.0 }, { "name": "citrix-k8s-cpx-ingress", "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", - "popularity": 460.0 + "popularity": 391.0 } ] }, @@ -51554,21 +51061,31 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "ibmcom/security-advisor-onboarding", + "name": "ibmcom/security-tools", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/security-advisor-onboarding", + "Docker_Url": "https://hub.docker.com/r/ibmcom/security-tools", "OS": [ { "Class": "OS", - "Architecture": "s390x", + "Architecture": "amd64", "Variants": null, "Versions": null, "Type": "linux", "Subtype": "" - }, + } + ] + }, + { + "name": "rancher/security-scan", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 4, + "Docker_Url": "https://hub.docker.com/r/rancher/security-scan", + "OS": [ { "Class": "OS", "Architecture": "amd64", @@ -51579,7 +51096,7 @@ }, { "Class": "OS", - "Architecture": "ppc64le", + "Architecture": "arm64", "Variants": null, "Versions": null, "Type": "linux", @@ -51588,31 +51105,21 @@ ] }, { - "name": "ibmcom/security-tools", + "name": "ibmcom/security-advisor-onboarding", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/security-tools", + "Docker_Url": "https://hub.docker.com/r/ibmcom/security-advisor-onboarding", "OS": [ { "Class": "OS", - "Architecture": "amd64", + "Architecture": "s390x", "Variants": null, "Versions": null, "Type": "linux", "Subtype": "" - } - ] - }, - { - "name": "rancher/security-scan", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 4, - "Docker_Url": "https://hub.docker.com/r/rancher/security-scan", - "OS": [ + }, { "Class": "OS", "Architecture": "amd64", @@ -51623,7 +51130,7 @@ }, { "Class": "OS", - "Architecture": "arm64", + "Architecture": "ppc64le", "Variants": null, "Versions": null, "Type": "linux", @@ -51639,27 +51146,27 @@ { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "popularity": 809370.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 335511.0 + "popularity": 380580.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 159557.0 + "popularity": 163268.0 }, { "name": "hubble-relay", "url": "https://quay.io/repository/cilium/hubble-relay", - "popularity": 135390.0 + "popularity": 118685.0 } ] }, @@ -51717,27 +51224,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15052.0 + "popularity": 15042.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 6801.0 + "popularity": 3550.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20112.0 + "popularity": 20354.0 }, { "name": "edb-postgres-advanced", "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 13004.0 + "popularity": 13582.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 19079.0 + "popularity": 17355.0 } ] }, @@ -51770,17 +51277,17 @@ { "name": "vmware-gateway", "url": "https://quay.io/repository/amastbau/vmware-gateway", - "popularity": 1280.0 + "popularity": 684.0 }, { "name": "kubevirt-vmware", "url": "https://quay.io/repository/kubevirt/kubevirt-vmware", - "popularity": 39.0 + "popularity": 32.0 }, { "name": "vmware", "url": "https://quay.io/repository/nickarellano/vmware", - "popularity": 30.0 + "popularity": 16.0 } ] }, @@ -51822,27 +51329,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -51934,27 +51441,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -51996,27 +51503,27 @@ { "name": "common-service-operator", "url": "https://quay.io/repository/opencloudio/common-service-operator", - "popularity": 317405.0 + "popularity": 284079.0 }, { "name": "service-catalog", "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", - "popularity": 330506.0 + "popularity": 330422.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 } ] }, @@ -52120,27 +51627,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "query", "url": "https://quay.io/repository/sisense/query", - "popularity": 2407.0 + "popularity": 2191.0 }, { "name": "jaeger-query", "url": "https://quay.io/repository/jaegertracing/jaeger-query", - "popularity": 10012.0 + "popularity": 9786.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 70825.0 + "popularity": 102256.0 } ] }, @@ -52186,27 +51693,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 92535501.0 + "popularity": 96679165.0 }, { "name": "nginx-ingress-controller", "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1153447.0 + "popularity": 1214037.0 }, { "name": "workflow-controller", "url": "https://quay.io/repository/argoproj/workflow-controller", - "popularity": 1196920.0 + "popularity": 1182422.0 }, { "name": "controller", "url": "https://quay.io/repository/metallb/controller", - "popularity": 228321.0 + "popularity": 241290.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 } ] }, @@ -52229,27 +51736,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 }, { "name": "ibm-management-ingress-operator", "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 111760.0 + "popularity": 156321.0 }, { - "name": "ibm-commonui-operator", - "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", - "popularity": 117024.0 + "name": "audit-syslog-service", + "url": "https://quay.io/repository/opencloudio/audit-syslog-service", + "popularity": 130197.0 } ] }, @@ -52289,22 +51796,22 @@ { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 65896.0 + "popularity": 82319.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8725.0 + "popularity": 8041.0 }, { "name": "entrez-direct", "url": "https://quay.io/repository/biocontainers/entrez-direct", - "popularity": 69.0 + "popularity": 216.0 }, { "name": "rsync-ssh", "url": "https://quay.io/repository/instrumentisto/rsync-ssh", - "popularity": 30.0 + "popularity": 46.0 }, { "name": "watchtower", @@ -52332,27 +51839,27 @@ { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 65896.0 + "popularity": 82319.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 80338.0 + "popularity": 79034.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8725.0 + "popularity": 8041.0 }, { "name": "mafft", "url": "https://quay.io/repository/biocontainers/mafft", - "popularity": 1380.0 + "popularity": 5335.0 }, { "name": "diamond", "url": "https://quay.io/repository/biocontainers/diamond", - "popularity": 747.0 + "popularity": 1022.0 } ] }, @@ -52411,7 +51918,7 @@ { "name": "windows", "url": "https://quay.io/repository/mhallin/windows", - "popularity": 37.0 + "popularity": 23.0 }, { "name": "windows", @@ -52423,27 +51930,27 @@ { "name": "windows-upgrade", "url": "https://quay.io/repository/calico/windows-upgrade", - "popularity": 7833.0 + "popularity": 7607.0 }, { "name": "community-windows-machine-config-operator", "url": "https://quay.io/repository/openshift-windows/community-windows-machine-config-operator", - "popularity": 228.0 + "popularity": 181.0 + }, + { + "name": "community-windows-machine-config-operator", + "url": "https://quay.io/repository/openshift-community-operators/community-windows-machine-config-operator", + "popularity": 398.0 }, { "name": "golang-builder", "url": "https://quay.io/repository/prometheus/golang-builder", - "popularity": 3618.0 + "popularity": 2871.0 }, { "name": "server", "url": "https://quay.io/repository/codimd/server", - "popularity": 2465.0 - }, - { - "name": "fmeserver-engine", - "url": "https://quay.io/repository/safesoftware/fmeserver-engine", - "popularity": 155.0 + "popularity": 2416.0 } ] }, @@ -52503,27 +52010,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -52857,19 +52364,12 @@ "stars": 12, "display_name": "Knative Operator", "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", - "version": "1.5.1", + "version": "1.6.0", "deprecated": false, "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656460800, + "ts": 1626134400, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -53005,19 +52505,19 @@ "stars": 7, "display_name": "Grafana Operator", "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", - "version": "4.4.1", + "version": "4.5.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 4, "high": 0, "medium": 3, - "unknown": 1, + "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1652090412, + "ts": 1657706412, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -53032,7 +52532,7 @@ }, "git_repos": "https://github.com/grafana-operator/grafana-operator", "container_images": [ - "quay.io/grafana-operator/grafana-operator:v4.4.1" + "quay.io/grafana-operator/grafana-operator:v4.5.0" ] }, { @@ -53171,7 +52671,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": null, + "git_repos": "https://fluxcd.io/docs/", "container_images": [] }, { @@ -53611,19 +53111,12 @@ "stars": 12, "display_name": "Knative Operator", "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", - "version": "1.5.1", + "version": "1.6.0", "deprecated": false, "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656460800, + "ts": 1626134400, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -53759,19 +53252,19 @@ "stars": 7, "display_name": "Grafana Operator", "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", - "version": "4.4.1", + "version": "4.5.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 4, "high": 0, "medium": 3, - "unknown": 1, + "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1652090412, + "ts": 1657706412, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -53786,7 +53279,7 @@ }, "git_repos": "https://github.com/grafana-operator/grafana-operator", "container_images": [ - "quay.io/grafana-operator/grafana-operator:v4.4.1" + "quay.io/grafana-operator/grafana-operator:v4.5.0" ] }, { @@ -53925,7 +53418,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": null, + "git_repos": "https://fluxcd.io/docs/", "container_images": [] }, { @@ -54102,24 +53595,6 @@ } ], "dockerhub_top_images": [ - { - "name": "circleci/java", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/circleci/java", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, { "name": "java", "Official image": true, @@ -54157,12 +53632,12 @@ ] }, { - "name": "appdynamics/java-agent", + "name": "circleci/java", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 6, - "Docker_Url": "https://hub.docker.com/r/appdynamics/java-agent", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/circleci/java", "OS": [ { "Class": "OS", @@ -54199,6 +53674,24 @@ "Subtype": "" } ] + }, + { + "name": "appdynamics/java-agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/appdynamics/java-agent", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] } ] }, @@ -54207,44 +53700,44 @@ { "name": "java", "url": "https://quay.io/repository/tamr/java", - "popularity": 492.0 + "popularity": 480.0 }, { "name": "java", "url": "https://quay.io/repository/enxadahost/java", - "popularity": 19927.0 + "popularity": 21708.0 }, { "name": "java", "url": "https://quay.io/repository/reishost/java", - "popularity": 3686.0 + "popularity": 4728.0 } ], "quay_top_images": [ { "name": "java", "url": "https://quay.io/repository/enxadahost/java", - "popularity": 19927.0 + "popularity": 21708.0 }, { "name": "docker-java-swiss-knife", "url": "https://quay.io/repository/scentbird/docker-java-swiss-knife", - "popularity": 9651.0 + "popularity": 7657.0 }, { "name": "jkube-java", "url": "https://quay.io/repository/jkube/jkube-java", - "popularity": 4274.0 + "popularity": 4537.0 }, { "name": "java", "url": "https://quay.io/repository/reishost/java", - "popularity": 3686.0 + "popularity": 4728.0 }, { "name": "ubi-quarkus-native-s2i", "url": "https://quay.io/repository/quarkus/ubi-quarkus-native-s2i", - "popularity": 35834.0 + "popularity": 35973.0 } ] }, @@ -54288,111 +53781,6 @@ "quay.io/wildfly/wildfly-operator:0.5.3" ] }, - { - "package_id": "57488c09-4b44-4ba8-aeed-2c141cf0b30e", - "name": "eclipse-che", - "normalized_name": "eclipse-che", - "logo_image_id": "f2ea20a6-ebd1-42f6-b7e7-b9dd0f36bd22", - "stars": 3, - "display_name": "Eclipse Che", - "description": "A Kube-native development solution that delivers portable and collaborative developer workspaces.", - "version": "7.39.2", - "deprecated": false, - "signed": false, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1637755976, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/eclipse-che/che-operator", - "container_images": [ - "quay.io/eclipse/che-operator", - "quay.io/che-incubator/configbump", - "quay.io/che-incubator/header-rewrite-proxy", - "quay.io/devfile/devworkspace-controller", - "quay.io/eclipse/che--centos--postgresql-13-centos7", - "quay.io/eclipse/che--centos--postgresql-96-centos7", - "quay.io/eclipse/che--traefik", - "quay.io/eclipse/che-backup-server-rest", - "quay.io/eclipse/che-dashboard", - "quay.io/eclipse/che-devfile-registry", - "quay.io/eclipse/che-jwtproxy", - "quay.io/eclipse/che-keycloak", - "quay.io/eclipse/che-plugin-artifacts-broker", - "quay.io/eclipse/che-plugin-metadata-broker", - "quay.io/eclipse/che-plugin-registry", - "quay.io/eclipse/che-server", - "quay.io/eclipse/che-tls-secret-creator", - "quay.io/openshift/origin-kube-rbac-proxy", - "quay.io/openshift/origin-oauth-proxy", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/windupeng/mta-vscode-extension", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-theia", - "quay.io/eclipse/che-machine-exec", - "quay.io/eclipse/che-theia-endpoint-runtime-binary", - "index.docker.io/ksmster/che-editor-jupyter", - "index.docker.io/dirigiblelabs/dirigible-openshift", - "quay.io/che-incubator/che-idea", - "quay.io/che-incubator/che-pycharm", - "index.docker.io/wsskeleton/eclipse-broadway", - "index.docker.io/codercom/code-server", - "quay.io/eclipse/che-buildah-base", - "quay.io/eclipse/che-sidecar-workspace-data-sync", - "quay.io/eclipse/che-buildkit-base", - "quay.io/eclipse/che--centos--mongodb-36-centos7", - "quay.io/eclipse/che--centos--mongodb-36-centos7", - "quay.io/eclipse/che--centos--mysql-57-centos7", - "quay.io/eclipse/che-cpp-rhel7", - "quay.io/eclipse/che-dotnet-2.2", - "quay.io/eclipse/che-dotnet-3.1", - "quay.io/eclipse/che-golang-1.17", - "quay.io/eclipse/che-java11-gradle", - "quay.io/eclipse/che-java11-maven", - "quay.io/eclipse/che-java8-maven", - "quay.io/eclipse/che-nodejs10-community", - "quay.io/eclipse/che-nodejs10-ubi", - "quay.io/eclipse/che-nodejs12-community", - "quay.io/eclipse/che-nodejs8-centos", - "quay.io/eclipse/che-php-7", - "quay.io/eclipse/che-python-3.8", - "quay.io/eclipse/che-quarkus", - "quay.io/eclipse/che-rust-1.39" - ] - }, { "package_id": "e1d953c6-0d94-4f74-b053-dfc343b8f64b", "name": "atlasmap-operator", @@ -54744,39 +54132,39 @@ { "name": "perl", "url": "https://quay.io/repository/biocontainers/perl", - "popularity": 848.0 + "popularity": 448.0 }, { "name": "perl", "url": "https://quay.io/repository/swsmirror/perl", - "popularity": 1.0 + "popularity": 0.0 } ], "quay_top_images": [ { "name": "perl-530-centos7", "url": "https://quay.io/repository/centos7/perl-530-centos7", - "popularity": 221365.0 + "popularity": 225577.0 }, { "name": "docker-perl-app-base", "url": "https://quay.io/repository/wakaba/docker-perl-app-base", - "popularity": 371.0 + "popularity": 345.0 + }, + { + "name": "ci-perl", + "url": "https://quay.io/repository/travisci/ci-perl", + "popularity": 0.0 }, { "name": "perl", "url": "https://quay.io/repository/biocontainers/perl", - "popularity": 848.0 + "popularity": 448.0 }, { "name": "perl-test", "url": "https://quay.io/repository/modellaachen/perl-test", - "popularity": 4.0 - }, - { - "name": "perl", - "url": "https://quay.io/repository/swsmirror/perl", - "popularity": 1.0 + "popularity": 0.0 } ] }, @@ -54796,7 +54184,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 6659, + "star_count": 6668, "Docker_Url": "https://hub.docker.com/_/php", "OS": [ { @@ -54810,7 +54198,7 @@ { "Class": "OS", "Architecture": "arm", - "Variants": "v5", + "Variants": "v6", "Versions": null, "Type": "linux", "Subtype": "" @@ -54839,14 +54227,6 @@ "Type": "linux", "Subtype": "" }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, { "Class": "OS", "Architecture": "ppc64le", @@ -54944,7 +54324,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 6659, + "star_count": 6668, "Docker_Url": "https://hub.docker.com/_/php", "OS": [ { @@ -54958,7 +54338,7 @@ { "Class": "OS", "Architecture": "arm", - "Variants": "v5", + "Variants": "v6", "Versions": null, "Type": "linux", "Subtype": "" @@ -54987,14 +54367,6 @@ "Type": "linux", "Subtype": "" }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, { "Class": "OS", "Architecture": "ppc64le", @@ -55056,54 +54428,54 @@ { "name": "php", "url": "https://quay.io/repository/kissj/php", - "popularity": 8612.0 + "popularity": 8614.0 }, { "name": "php", "url": "https://quay.io/repository/startx/php", - "popularity": 15915.0 + "popularity": 16380.0 }, { "name": "php", "url": "https://quay.io/repository/api-platform/php", - "popularity": 650.0 + "popularity": 454.0 }, { "name": "php", "url": "https://quay.io/repository/swsmirror/php", - "popularity": 275.0 + "popularity": 339.0 }, { "name": "php", "url": "https://quay.io/repository/official-images/php", - "popularity": 22.0 + "popularity": 101.0 } ], "quay_top_images": [ { "name": "php-73-centos7", "url": "https://quay.io/repository/centos7/php-73-centos7", - "popularity": 212402.0 - }, - { - "name": "php-hello-dockerfile", - "url": "https://quay.io/repository/redhattraining/php-hello-dockerfile", - "popularity": 7765.0 + "popularity": 215385.0 }, { "name": "php", "url": "https://quay.io/repository/kissj/php", - "popularity": 8612.0 + "popularity": 8614.0 }, { "name": "php", "url": "https://quay.io/repository/startx/php", - "popularity": 15915.0 + "popularity": 16380.0 + }, + { + "name": "php-fpm_exporter", + "url": "https://quay.io/repository/cuppett/php-fpm_exporter", + "popularity": 41803.0 }, { "name": "runner-php", "url": "https://quay.io/repository/startx/runner-php", - "popularity": 8117.0 + "popularity": 8113.0 } ] }, @@ -55123,7 +54495,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 7678, + "star_count": 7699, "Docker_Url": "https://hub.docker.com/_/python", "OS": [ { @@ -55137,7 +54509,7 @@ { "Class": "OS", "Architecture": "arm", - "Variants": "v5", + "Variants": "v6", "Versions": null, "Type": "linux", "Subtype": "" @@ -55166,14 +54538,6 @@ "Type": "linux", "Subtype": "" }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, { "Class": "OS", "Architecture": "ppc64le", @@ -55189,22 +54553,6 @@ "Versions": null, "Type": "linux", "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.20348.768", - "Type": "windows", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.17763.3046", - "Type": "windows", - "Subtype": "" } ] }, @@ -55213,7 +54561,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 50, + "star_count": 51, "Docker_Url": "https://hub.docker.com/r/circleci/python", "OS": [ { @@ -55231,7 +54579,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 21, + "star_count": 22, "Docker_Url": "https://hub.docker.com/r/bitnami/python", "OS": [ { @@ -55269,7 +54617,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 7678, + "star_count": 7699, "Docker_Url": "https://hub.docker.com/_/python", "OS": [ { @@ -55283,7 +54631,7 @@ { "Class": "OS", "Architecture": "arm", - "Variants": "v5", + "Variants": "v6", "Versions": null, "Type": "linux", "Subtype": "" @@ -55312,14 +54660,6 @@ "Type": "linux", "Subtype": "" }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, { "Class": "OS", "Architecture": "ppc64le", @@ -55335,22 +54675,6 @@ "Versions": null, "Type": "linux", "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.20348.768", - "Type": "windows", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": "10.0.17763.3046", - "Type": "windows", - "Subtype": "" } ] }, @@ -55359,7 +54683,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 50, + "star_count": 51, "Docker_Url": "https://hub.docker.com/r/circleci/python", "OS": [ { @@ -55395,7 +54719,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 21, + "star_count": 22, "Docker_Url": "https://hub.docker.com/r/bitnami/python", "OS": [ { @@ -55420,49 +54744,54 @@ { "name": "python", "url": "https://quay.io/repository/biocontainers/python", - "popularity": 4627.0 + "popularity": 4090.0 }, { "name": "python", "url": "https://quay.io/repository/cdis/python", - "popularity": 8336.0 + "popularity": 5246.0 }, { "name": "python", "url": "https://quay.io/repository/agari/python", - "popularity": 2129.0 + "popularity": 1939.0 }, { "name": "python", "url": "https://quay.io/repository/sctregistry/python", - "popularity": 1554.0 + "popularity": 1465.0 + }, + { + "name": "python", + "url": "https://quay.io/repository/mlrun/python", + "popularity": 1214.0 } ], "quay_top_images": [ { "name": "python-27-centos7", "url": "https://quay.io/repository/centos7/python-27-centos7", - "popularity": 197342.0 + "popularity": 202676.0 }, { - "name": "python", - "url": "https://quay.io/repository/biocontainers/python", - "popularity": 4627.0 - }, - { - "name": "python-predictor-gpu", - "url": "https://quay.io/repository/cortexlabs/python-predictor-gpu", - "popularity": 4848.0 + "name": "python-predictor-cpu", + "url": "https://quay.io/repository/cortexlabs/python-predictor-cpu", + "popularity": 4979.0 }, { "name": "python-nginx", "url": "https://quay.io/repository/cdis/python-nginx", - "popularity": 17682.0 + "popularity": 10155.0 + }, + { + "name": "python-predictor-gpu", + "url": "https://quay.io/repository/cortexlabs/python-predictor-gpu", + "popularity": 5165.0 }, { "name": "python", "url": "https://quay.io/repository/cdis/python", - "popularity": 8336.0 + "popularity": 5246.0 } ] }, @@ -55482,7 +54811,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 2149, + "star_count": 2150, "Docker_Url": "https://hub.docker.com/_/ruby", "OS": [ { @@ -55496,7 +54825,7 @@ { "Class": "OS", "Architecture": "arm", - "Variants": "v5", + "Variants": "v6", "Versions": null, "Type": "linux", "Subtype": "" @@ -55525,14 +54854,6 @@ "Type": "linux", "Subtype": "" }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, { "Class": "OS", "Architecture": "ppc64le", @@ -55570,12 +54891,12 @@ ] }, { - "name": "cimg/ruby", + "name": "bitnami/ruby", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, - "Docker_Url": "https://hub.docker.com/r/cimg/ruby", + "star_count": 21, + "Docker_Url": "https://hub.docker.com/r/bitnami/ruby", "OS": [ { "Class": "OS", @@ -55588,12 +54909,12 @@ ] }, { - "name": "bitnami/ruby", + "name": "cimg/ruby", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 21, - "Docker_Url": "https://hub.docker.com/r/bitnami/ruby", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/cimg/ruby", "OS": [ { "Class": "OS", @@ -55702,7 +55023,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 2149, + "star_count": 2150, "Docker_Url": "https://hub.docker.com/_/ruby", "OS": [ { @@ -55716,7 +55037,7 @@ { "Class": "OS", "Architecture": "arm", - "Variants": "v5", + "Variants": "v6", "Versions": null, "Type": "linux", "Subtype": "" @@ -55745,14 +55066,6 @@ "Type": "linux", "Subtype": "" }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, { "Class": "OS", "Architecture": "ppc64le", @@ -55783,12 +55096,12 @@ { "name": "ruby", "url": "https://quay.io/repository/aptible/ruby", - "popularity": 333.0 + "popularity": 147.0 }, { "name": "ruby", "url": "https://quay.io/repository/swsmirror/ruby", - "popularity": 1.0 + "popularity": 0.0 }, { "name": "ruby", @@ -55803,12 +55116,12 @@ { "name": "ruby", "url": "https://quay.io/repository/springest/ruby", - "popularity": 20.0 + "popularity": 30.0 }, { "name": "ruby", "url": "https://quay.io/repository/forem/ruby", - "popularity": 46.0 + "popularity": 100.0 }, { "name": "ruby", @@ -55820,27 +55133,27 @@ { "name": "ruby-27-centos7", "url": "https://quay.io/repository/centos7/ruby-27-centos7", - "popularity": 251822.0 + "popularity": 254382.0 }, { "name": "ruby-26-centos7", "url": "https://quay.io/repository/centos7/ruby-26-centos7", - "popularity": 165969.0 + "popularity": 170674.0 }, { "name": "ruby-25-centos7", "url": "https://quay.io/repository/centos7/ruby-25-centos7", - "popularity": 74049.0 + "popularity": 73389.0 }, { "name": "ruby-27", "url": "https://quay.io/repository/openshifttest/ruby-27", - "popularity": 14124.0 + "popularity": 16742.0 }, { "name": "ruby-cron", "url": "https://quay.io/repository/palettecloud/ruby-cron", - "popularity": 11018.0 + "popularity": 10816.0 } ] }, @@ -55890,27 +55203,27 @@ { "name": "sandbox-javascript", "url": "https://quay.io/repository/redsift/sandbox-javascript", - "popularity": 88221.0 + "popularity": 115728.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 38116.0 + "popularity": 36573.0 + }, + { + "name": "node", + "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/node", + "popularity": 0.0 }, { "name": "ploigos-tool-javascript", "url": "https://quay.io/repository/ploigos/ploigos-tool-javascript", "popularity": 56.0 }, - { - "name": "jump-app-front-javascript", - "url": "https://quay.io/repository/acidonpe/jump-app-front-javascript", - "popularity": 76.0 - }, { "name": "loftsh-javascript-flyway", "url": "https://quay.io/repository/buildo/loftsh-javascript-flyway", - "popularity": 4.0 + "popularity": 12.0 } ] }, @@ -55933,27 +55246,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "golang-builder", "url": "https://quay.io/repository/prometheus/golang-builder", - "popularity": 3618.0 + "popularity": 2871.0 + }, + { + "name": "rpki-client", + "url": "https://quay.io/repository/rpki/rpki-client", + "popularity": 27.0 }, { "name": "docker_networking_utils", "url": "https://quay.io/repository/wienczny/docker_networking_utils", "popularity": 0.0 }, - { - "name": "rpki-client", - "url": "https://quay.io/repository/rpki/rpki-client", - "popularity": 25.0 - }, { "name": "openbgpd", "url": "https://quay.io/repository/openbgpd/openbgpd", - "popularity": 15.0 + "popularity": 14.0 } ] }, @@ -56012,27 +55325,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -56195,27 +55508,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 }, { "name": "gateway", "url": "https://quay.io/repository/bluecat/gateway", - "popularity": 20475.0 + "popularity": 20583.0 } ] }, @@ -56298,7 +55611,7 @@ { "name": "smeeclient", "url": "https://quay.io/repository/schabrolles/smeeclient", - "popularity": 1190.0 + "popularity": 1278.0 } ] }, @@ -56358,27 +55671,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -56488,7 +55801,7 @@ { "name": "websphere-liberty", "url": "https://quay.io/repository/swsmirror/websphere-liberty", - "popularity": 5.0 + "popularity": 4.0 }, { "name": "websphere-ordermgmt", @@ -56531,12 +55844,12 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "golang-builder", "url": "https://quay.io/repository/prometheus/golang-builder", - "popularity": 3618.0 + "popularity": 2871.0 } ] }, @@ -56624,27 +55937,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 92535501.0 + "popularity": 96679165.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 88998175.0 + "popularity": 92762600.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 89089055.0 + "popularity": 92854581.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 858875.0 + "popularity": 920253.0 }, { "name": "cert-manager-ctl", "url": "https://quay.io/repository/jetstack/cert-manager-ctl", - "popularity": 637570.0 + "popularity": 652852.0 } ] }, @@ -56667,27 +55980,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -56836,27 +56149,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -56968,27 +56281,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15052.0 + "popularity": 15042.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 6801.0 + "popularity": 3550.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20112.0 + "popularity": 20354.0 }, { "name": "edb-postgres-advanced", "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 13004.0 + "popularity": 13582.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 19079.0 + "popularity": 17355.0 } ] }, @@ -57070,27 +56383,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "application-service", "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 72875.0 + "popularity": 116853.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -57119,27 +56432,27 @@ { "name": "instana-agent-operator", "url": "https://quay.io/repository/operator-pipeline-prod/instana-agent-operator", - "popularity": 1008.0 + "popularity": 1044.0 }, { "name": "instana-agent-operator-rhmp", "url": "https://quay.io/repository/operator-pipeline-prod/instana-agent-operator-rhmp", - "popularity": 840.0 + "popularity": 870.0 }, { "name": "z-instana", "url": "https://quay.io/repository/trumanbrown/z-instana", - "popularity": 1092.0 + "popularity": 1693.0 }, { "name": "instana-agent-operator", "url": "https://quay.io/repository/operatorhubio/instana-agent-operator", - "popularity": 664.0 + "popularity": 504.0 }, { "name": "z-instana-leader-elector", "url": "https://quay.io/repository/trumanbrown/z-instana-leader-elector", - "popularity": 6.0 + "popularity": 23.0 } ] }, @@ -57205,12 +56518,12 @@ { "name": "credstash-operator", "url": "https://quay.io/repository/ouzi/credstash-operator", - "popularity": 105.0 + "popularity": 104.0 }, { "name": "credstash-operator", "url": "https://quay.io/repository/operatorhubio/credstash-operator", - "popularity": 44.0 + "popularity": 36.0 }, { "name": "credstash", @@ -57367,12 +56680,12 @@ ] }, { - "name": "snyk/snyk-operator-bundle", + "name": "snyk/snyk-operator-index", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/snyk/snyk-operator-bundle", + "Docker_Url": "https://hub.docker.com/r/snyk/snyk-operator-index", "OS": [ { "Class": "OS", @@ -57391,34 +56704,34 @@ { "name": "snyk", "url": "https://quay.io/repository/exd_infra_plts_cip/snyk", - "popularity": 40.0 + "popularity": 33.0 } ], "quay_top_images": [ { "name": "snyk-cli", "url": "https://quay.io/repository/codefresh/snyk-cli", - "popularity": 203.0 + "popularity": 336.0 }, { "name": "snyk-operator", "url": "https://quay.io/repository/operatorhubio/snyk-operator", - "popularity": 1188.0 + "popularity": 972.0 }, { "name": "snyk-operator", "url": "https://quay.io/repository/openshift-community-operators/snyk-operator", - "popularity": 833.0 + "popularity": 653.0 }, { "name": "snyk", "url": "https://quay.io/repository/exd_infra_plts_cip/snyk", - "popularity": 40.0 + "popularity": 33.0 }, { "name": "snyk_exporter", "url": "https://quay.io/repository/lunarway/snyk_exporter", - "popularity": 2026.0 + "popularity": 2016.0 } ] }, @@ -57491,17 +56804,17 @@ { "name": "akka-cluster-operator", "url": "https://quay.io/repository/operatorhubio/akka-cluster-operator", - "popularity": 178.0 + "popularity": 146.0 }, { "name": "akka-cluster-operator", "url": "https://quay.io/repository/openshift-community-operators/akka-cluster-operator", - "popularity": 99.0 + "popularity": 79.0 }, { "name": "akka-operator", "url": "https://quay.io/repository/openshifttest/akka-operator", - "popularity": 34.0 + "popularity": 40.0 }, { "name": "akka-simple-cluster-k8s", @@ -57764,7 +57077,7 @@ { "name": "varnish", "url": "https://quay.io/repository/api-platform/varnish", - "popularity": 197.0 + "popularity": 223.0 }, { "name": "varnish", @@ -57774,7 +57087,7 @@ { "name": "varnish", "url": "https://quay.io/repository/akretion/varnish", - "popularity": 8.0 + "popularity": 0.0 }, { "name": "varnish", @@ -57801,27 +57114,27 @@ { "name": "varnish", "url": "https://quay.io/repository/api-platform/varnish", - "popularity": 197.0 + "popularity": 223.0 }, { "name": "kube-httpcache", "url": "https://quay.io/repository/mittwald/kube-httpcache", - "popularity": 4713.0 + "popularity": 5758.0 }, { "name": "prometheus-varnish-exporter", "url": "https://quay.io/repository/vshn/prometheus-varnish-exporter", - "popularity": 72.0 + "popularity": 28.0 }, { "name": "varnish-operator", "url": "https://quay.io/repository/operatorhubio/varnish-operator", - "popularity": 44.0 + "popularity": 36.0 }, { "name": "varnish-operator", "url": "https://quay.io/repository/openshift-community-operators/varnish-operator", - "popularity": 39.0 + "popularity": 32.0 } ] }, @@ -57906,27 +57219,27 @@ { "name": "logstash-datadog", "url": "https://quay.io/repository/yugabyte/logstash-datadog", - "popularity": 604.0 + "popularity": 556.0 }, { "name": "datadog-operator", "url": "https://quay.io/repository/operatorhubio/datadog-operator", - "popularity": 623.0 + "popularity": 648.0 }, { "name": "datadog-operator", "url": "https://quay.io/repository/openshift-community-operators/datadog-operator", - "popularity": 340.0 + "popularity": 1335.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8725.0 + "popularity": 8041.0 }, { "name": "datalink-datadogd", "url": "https://quay.io/repository/geonet/datalink-datadogd", - "popularity": 3035.0 + "popularity": 3043.0 } ] }, @@ -57940,19 +57253,19 @@ "stars": 0, "display_name": "Datadog Operator", "description": "Datadog provides a modern monitoring and analytics platform. Gather metrics, logs and traces for full observability of your Kubernetes cluster with Datadog Operator.", - "version": "0.8.0", + "version": "0.8.1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 23, - "high": 1, - "medium": 32, + "low": 0, + "high": 0, + "medium": 0, "unknown": 1, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1653481834, + "ts": 1657832439, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -58037,7 +57350,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 23, + "star_count": 24, "Docker_Url": "https://hub.docker.com/r/wallarm/api-firewall", "OS": [ { @@ -58087,7 +57400,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 17, + "star_count": 18, "Docker_Url": "https://hub.docker.com/_/api-firewall", "OS": [ { @@ -58123,34 +57436,34 @@ { "name": "api", "url": "https://quay.io/repository/infrabox/api", - "popularity": 26.0 + "popularity": 42.0 } ], "quay_top_images": [ { "name": "ibm-platform-api-operator", "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", - "popularity": 47566.0 + "popularity": 36619.0 }, { "name": "virt-api", "url": "https://quay.io/repository/kubevirt/virt-api", - "popularity": 23947.0 - }, - { - "name": "insights-api", - "url": "https://quay.io/repository/fairwinds/insights-api", - "popularity": 31210.0 + "popularity": 33904.0 }, { "name": "k8s-sidecar", "url": "https://quay.io/repository/kiwigrid/k8s-sidecar", - "popularity": 1320477.0 + "popularity": 1297028.0 + }, + { + "name": "third-party-api-resolver-server", + "url": "https://quay.io/repository/decentraland/third-party-api-resolver-server", + "popularity": 52834.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 353617.0 + "popularity": 421059.0 } ] }, @@ -58753,7 +58066,7 @@ { "name": "hazelcast", "url": "https://quay.io/repository/hazelcast_cloud/hazelcast", - "popularity": 1124.0 + "popularity": 864.0 }, { "name": "hazelcast", @@ -58770,27 +58083,27 @@ { "name": "hazelcast-platform-operator", "url": "https://quay.io/repository/operator-pipeline-prod/hazelcast-platform-operator", - "popularity": 672.0 + "popularity": 696.0 }, { "name": "hazelcast", "url": "https://quay.io/repository/hazelcast_cloud/hazelcast", - "popularity": 1124.0 + "popularity": 864.0 }, { "name": "ipm-hazelcast", "url": "https://quay.io/repository/mitaei/ipm-hazelcast", - "popularity": 397.0 + "popularity": 389.0 }, { "name": "public.hazelcast.hazelcast", "url": "https://quay.io/repository/siav/public.hazelcast.hazelcast", - "popularity": 1008.0 + "popularity": 711.0 }, { "name": "hazelcast-platform-operator", "url": "https://quay.io/repository/operatorhubio/hazelcast-platform-operator", - "popularity": 178.0 + "popularity": 144.0 } ] }, @@ -58829,7 +58142,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": null, + "git_repos": "https://docs.hazelcast.com/operator/latest/", "container_images": [ "docker.io/hazelcast/hazelcast-platform-operator:5.3" ] @@ -58851,17 +58164,17 @@ { "name": "infinispan", "url": "https://quay.io/repository/operatorhubio/infinispan", - "popularity": 2189.0 + "popularity": 1688.0 }, { "name": "infinispan", "url": "https://quay.io/repository/openshift-community-operators/infinispan", - "popularity": 785.0 + "popularity": 650.0 }, { "name": "infinispan", "url": "https://quay.io/repository/ramgopireddy/infinispan", - "popularity": 171.0 + "popularity": 169.0 }, { "name": "infinispan", @@ -58878,27 +58191,27 @@ { "name": "kogito-data-index-infinispan", "url": "https://quay.io/repository/kiegroup/kogito-data-index-infinispan", - "popularity": 2032.0 + "popularity": 2143.0 }, { "name": "infinispan", "url": "https://quay.io/repository/operatorhubio/infinispan", - "popularity": 2189.0 + "popularity": 1688.0 }, { "name": "infinispan", "url": "https://quay.io/repository/openshift-community-operators/infinispan", - "popularity": 785.0 + "popularity": 650.0 }, { "name": "server", "url": "https://quay.io/repository/infinispan/server", - "popularity": 10005.0 + "popularity": 12283.0 }, { "name": "operator", "url": "https://quay.io/repository/infinispan/operator", - "popularity": 3234.0 + "popularity": 3309.0 } ] }, @@ -58997,7 +58310,7 @@ { "name": "nuxeo", "url": "https://quay.io/repository/swsmirror/nuxeo", - "popularity": 1.0 + "popularity": 0.0 }, { "name": "nuxeo", @@ -59014,12 +58327,12 @@ { "name": "nuxeo-operator", "url": "https://quay.io/repository/operatorhubio/nuxeo-operator", - "popularity": 44.0 + "popularity": 36.0 }, { "name": "nuxeo", "url": "https://quay.io/repository/swsmirror/nuxeo", - "popularity": 1.0 + "popularity": 0.0 }, { "name": "nuxeo-base", @@ -59027,13 +58340,13 @@ "popularity": 0.0 }, { - "name": "nuxeo-che", - "url": "https://quay.io/repository/akervern/nuxeo-che", + "name": "nuxeo", + "url": "https://quay.io/repository/dockerlibrary/nuxeo", "popularity": 0.0 }, { - "name": "nuxeo", - "url": "https://quay.io/repository/dockerlibrary/nuxeo", + "name": "nuxeo-che", + "url": "https://quay.io/repository/akervern/nuxeo-che", "popularity": 0.0 } ] @@ -59133,7 +58446,7 @@ { "name": "arangodb", "url": "https://quay.io/repository/swsmirror/arangodb", - "popularity": 1.0 + "popularity": 0.0 }, { "name": "arangodb", @@ -59145,11 +58458,6 @@ "url": "https://quay.io/repository/onet/arangodb", "popularity": 0.0 }, - { - "name": "arangodb", - "url": "https://quay.io/repository/rh_integration/arangodb", - "popularity": 3.0 - }, { "name": "arangodb", "url": "https://quay.io/repository/vpavlin/arangodb", @@ -59164,33 +58472,38 @@ "name": "arangodb", "url": "https://quay.io/repository/insightpool/arangodb", "popularity": 0.0 + }, + { + "name": "arangodb", + "url": "https://quay.io/repository/rh_integration/arangodb", + "popularity": 0.0 } ], "quay_top_images": [ { "name": "arangodb", "url": "https://quay.io/repository/swsmirror/arangodb", - "popularity": 1.0 + "popularity": 0.0 }, { "name": "arangodb", "url": "https://quay.io/repository/official-images/arangodb", "popularity": 0.0 }, + { + "name": "kube-arangodb", + "url": "https://quay.io/repository/operatorhubio/kube-arangodb", + "popularity": 38.0 + }, { "name": "ansible-arangodb", "url": "https://quay.io/repository/andrewrothstein/ansible-arangodb", "popularity": 0.0 }, - { - "name": "kube-arangodb", - "url": "https://quay.io/repository/operatorhubio/kube-arangodb", - "popularity": 44.0 - }, { "name": "arangodb", - "url": "https://quay.io/repository/rh_integration/arangodb", - "popularity": 3.0 + "url": "https://quay.io/repository/onet/arangodb", + "popularity": 0.0 } ] }, @@ -59331,141 +58644,35 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "che-plugin-artifacts-broker", - "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", - "popularity": 20225.0 - }, { "name": "che-operator", "url": "https://quay.io/repository/eclipse/che-operator", - "popularity": 36094.0 + "popularity": 34982.0 + }, + { + "name": "che-server", + "url": "https://quay.io/repository/eclipse/che-server", + "popularity": 23998.0 + }, + { + "name": "che-plugin-sidecar", + "url": "https://quay.io/repository/eclipse/che-plugin-sidecar", + "popularity": 21159.0 }, { "name": "che-theia", "url": "https://quay.io/repository/eclipse/che-theia", - "popularity": 18151.0 + "popularity": 19734.0 }, { "name": "che-java11-maven", "url": "https://quay.io/repository/eclipse/che-java11-maven", - "popularity": 19772.0 - }, - { - "name": "che-plugin-artifacts-broker", - "url": "https://quay.io/repository/devplayground/che-plugin-artifacts-broker", - "popularity": 19235.0 + "popularity": 25543.0 } ] }, { - "operators": [ - { - "package_id": "57488c09-4b44-4ba8-aeed-2c141cf0b30e", - "name": "eclipse-che", - "normalized_name": "eclipse-che", - "logo_image_id": "f2ea20a6-ebd1-42f6-b7e7-b9dd0f36bd22", - "stars": 3, - "display_name": "Eclipse Che", - "description": "A Kube-native development solution that delivers portable and collaborative developer workspaces.", - "version": "7.39.2", - "deprecated": false, - "signed": false, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1637755976, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/eclipse-che/che-operator", - "container_images": [ - "quay.io/eclipse/che-operator", - "quay.io/che-incubator/configbump", - "quay.io/che-incubator/header-rewrite-proxy", - "quay.io/devfile/devworkspace-controller", - "quay.io/eclipse/che--centos--postgresql-13-centos7", - "quay.io/eclipse/che--centos--postgresql-96-centos7", - "quay.io/eclipse/che--traefik", - "quay.io/eclipse/che-backup-server-rest", - "quay.io/eclipse/che-dashboard", - "quay.io/eclipse/che-devfile-registry", - "quay.io/eclipse/che-jwtproxy", - "quay.io/eclipse/che-keycloak", - "quay.io/eclipse/che-plugin-artifacts-broker", - "quay.io/eclipse/che-plugin-metadata-broker", - "quay.io/eclipse/che-plugin-registry", - "quay.io/eclipse/che-server", - "quay.io/eclipse/che-tls-secret-creator", - "quay.io/openshift/origin-kube-rbac-proxy", - "quay.io/openshift/origin-oauth-proxy", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/windupeng/mta-vscode-extension", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-plugin-sidecar", - "quay.io/eclipse/che-theia", - "quay.io/eclipse/che-machine-exec", - "quay.io/eclipse/che-theia-endpoint-runtime-binary", - "index.docker.io/ksmster/che-editor-jupyter", - "index.docker.io/dirigiblelabs/dirigible-openshift", - "quay.io/che-incubator/che-idea", - "quay.io/che-incubator/che-pycharm", - "index.docker.io/wsskeleton/eclipse-broadway", - "index.docker.io/codercom/code-server", - "quay.io/eclipse/che-buildah-base", - "quay.io/eclipse/che-sidecar-workspace-data-sync", - "quay.io/eclipse/che-buildkit-base", - "quay.io/eclipse/che--centos--mongodb-36-centos7", - "quay.io/eclipse/che--centos--mongodb-36-centos7", - "quay.io/eclipse/che--centos--mysql-57-centos7", - "quay.io/eclipse/che-cpp-rhel7", - "quay.io/eclipse/che-dotnet-2.2", - "quay.io/eclipse/che-dotnet-3.1", - "quay.io/eclipse/che-golang-1.17", - "quay.io/eclipse/che-java11-gradle", - "quay.io/eclipse/che-java11-maven", - "quay.io/eclipse/che-java8-maven", - "quay.io/eclipse/che-nodejs10-community", - "quay.io/eclipse/che-nodejs10-ubi", - "quay.io/eclipse/che-nodejs12-community", - "quay.io/eclipse/che-nodejs8-centos", - "quay.io/eclipse/che-php-7", - "quay.io/eclipse/che-python-3.8", - "quay.io/eclipse/che-quarkus", - "quay.io/eclipse/che-rust-1.39" - ] - } - ] + "operators": [] } ], "entity_type": 2, @@ -59528,27 +58735,27 @@ { "name": "amazon-eks-pod-identity-webhook", "url": "https://quay.io/repository/giantswarm/amazon-eks-pod-identity-webhook", - "popularity": 118.0 + "popularity": 357.0 }, { - "name": "amazon-aws-efs-csi-driver", - "url": "https://quay.io/repository/dperez_mulet/amazon-aws-efs-csi-driver", - "popularity": 51.0 + "name": "amazon-aws-cli", + "url": "https://quay.io/repository/100x/amazon-aws-cli", + "popularity": 913.0 }, { "name": "sensu-go-tests-amazon", "url": "https://quay.io/repository/xlab-steampunk/sensu-go-tests-amazon", - "popularity": 42.0 + "popularity": 44.0 }, { "name": "business-central-workbench-showcase", "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", - "popularity": 609.0 + "popularity": 637.0 }, { "name": "jbpm-server-full", "url": "https://quay.io/repository/kiegroup/jbpm-server-full", - "popularity": 309.0 + "popularity": 236.0 } ] }, @@ -59607,7 +58814,7 @@ { "name": "clickhouse", "url": "https://quay.io/repository/operatorhubio/clickhouse", - "popularity": 1144.0 + "popularity": 936.0 }, { "name": "clickhouse", @@ -59634,27 +58841,27 @@ { "name": "clickhouse", "url": "https://quay.io/repository/operatorhubio/clickhouse", - "popularity": 1144.0 + "popularity": 936.0 }, { - "name": "falcon-test-clickhouse", - "url": "https://quay.io/repository/plotly/falcon-test-clickhouse", - "popularity": 2.0 + "name": "clickhouse", + "url": "https://quay.io/repository/binarysoftware/clickhouse", + "popularity": 0.0 }, { "name": "clickhouse-exporter", "url": "https://quay.io/repository/whisk/clickhouse-exporter", "popularity": 7.0 }, + { + "name": "clickhouse-docker-rootless", + "url": "https://quay.io/repository/kryptonite/clickhouse-docker-rootless", + "popularity": 3.0 + }, { "name": "ckman", "url": "https://quay.io/repository/housepower/ckman", "popularity": 10.0 - }, - { - "name": "clickhouse_sinker", - "url": "https://quay.io/repository/housepower/clickhouse_sinker", - "popularity": 6.0 } ] }, @@ -59704,7 +58911,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 42, + "star_count": 43, "Docker_Url": "https://hub.docker.com/r/bitnami/minio", "OS": [ { @@ -59810,7 +59017,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 42, + "star_count": 43, "Docker_Url": "https://hub.docker.com/r/bitnami/minio", "OS": [ { @@ -59864,32 +59071,32 @@ { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 374426.0 + "popularity": 382812.0 }, { "name": "minio", "url": "https://quay.io/repository/cloudservices/minio", - "popularity": 3179.0 + "popularity": 2834.0 }, { "name": "minio", "url": "https://quay.io/repository/uninett/minio", - "popularity": 27.0 + "popularity": 29.0 }, { "name": "minio", - "url": "https://quay.io/repository/riotkit/minio", - "popularity": 0.0 + "url": "https://quay.io/repository/devtron/minio", + "popularity": 3957.0 }, { "name": "minio", - "url": "https://quay.io/repository/devtron/minio", - "popularity": 3454.0 + "url": "https://quay.io/repository/riotkit/minio", + "popularity": 0.0 }, { "name": "minio", "url": "https://quay.io/repository/ricardbejarano/minio", - "popularity": 13.0 + "popularity": 11.0 }, { "name": "minio", @@ -59898,55 +59105,55 @@ }, { "name": "minio", - "url": "https://quay.io/repository/kubevirt/minio", - "popularity": 632.0 + "url": "https://quay.io/repository/nird-toolkit/minio", + "popularity": 0.0 }, { "name": "minio", - "url": "https://quay.io/repository/nird-toolkit/minio", - "popularity": 0.0 + "url": "https://quay.io/repository/kubevirt/minio", + "popularity": 254.0 }, { "name": "minio", "url": "https://quay.io/repository/stackstate/minio", - "popularity": 295.0 + "popularity": 356.0 }, { "name": "minio", "url": "https://quay.io/repository/wakaba/minio", - "popularity": 207.0 + "popularity": 205.0 }, { "name": "minio", "url": "https://quay.io/repository/anuta/minio", - "popularity": 250.0 + "popularity": 268.0 } ], "quay_top_images": [ { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 374426.0 + "popularity": 382812.0 }, { "name": "minio", "url": "https://quay.io/repository/cloudservices/minio", - "popularity": 3179.0 + "popularity": 2834.0 }, { "name": "minio-s3-test-harness", "url": "https://quay.io/repository/fossa/minio-s3-test-harness", - "popularity": 5172.0 + "popularity": 5176.0 }, { "name": "minio", "url": "https://quay.io/repository/devtron/minio", - "popularity": 3454.0 + "popularity": 3957.0 }, { "name": "minio-operator-rhmp", "url": "https://quay.io/repository/operator-pipeline-prod/minio-operator-rhmp", - "popularity": 1680.0 + "popularity": 1740.0 } ] }, @@ -60005,7 +59212,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 5691, + "star_count": 5706, "Docker_Url": "https://hub.docker.com/_/elasticsearch", "OS": [ { @@ -60095,7 +59302,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 5691, + "star_count": 5706, "Docker_Url": "https://hub.docker.com/_/elasticsearch", "OS": [ { @@ -60203,69 +59410,69 @@ { "name": "elasticsearch", "url": "https://quay.io/repository/fluentd_elasticsearch/elasticsearch", - "popularity": 68607.0 + "popularity": 66427.0 }, { "name": "elasticsearch", "url": "https://quay.io/repository/crowdworks/elasticsearch", - "popularity": 34114.0 + "popularity": 38990.0 }, { "name": "elasticsearch", "url": "https://quay.io/repository/trackmaven/elasticsearch", - "popularity": 9476.0 + "popularity": 18211.0 }, { "name": "elasticsearch", - "url": "https://quay.io/repository/agari/elasticsearch", - "popularity": 1266.0 + "url": "https://quay.io/repository/centerforopenscience/elasticsearch", + "popularity": 7648.0 }, { "name": "elasticsearch", - "url": "https://quay.io/repository/centerforopenscience/elasticsearch", - "popularity": 7608.0 + "url": "https://quay.io/repository/agari/elasticsearch", + "popularity": 1361.0 }, { "name": "elasticsearch", "url": "https://quay.io/repository/openshifttest/elasticsearch", - "popularity": 396.0 + "popularity": 377.0 }, { "name": "elasticsearch", "url": "https://quay.io/repository/karbon/elasticsearch", - "popularity": 1441.0 + "popularity": 1231.0 }, { "name": "elasticsearch", "url": "https://quay.io/repository/stackstate/elasticsearch", - "popularity": 845.0 + "popularity": 946.0 } ], "quay_top_images": [ { "name": "elasticsearch-exporter", "url": "https://quay.io/repository/prometheuscommunity/elasticsearch-exporter", - "popularity": 377871.0 + "popularity": 368361.0 }, { "name": "elasticsearch", "url": "https://quay.io/repository/fluentd_elasticsearch/elasticsearch", - "popularity": 68607.0 + "popularity": 66427.0 }, { "name": "elasticsearch", "url": "https://quay.io/repository/crowdworks/elasticsearch", - "popularity": 34114.0 + "popularity": 38990.0 }, { "name": "docker-elasticsearch-kubernetes", "url": "https://quay.io/repository/pires/docker-elasticsearch-kubernetes", - "popularity": 41072.0 + "popularity": 40657.0 }, { "name": "elasticsearch-curator", "url": "https://quay.io/repository/widen/elasticsearch-curator", - "popularity": 30941.0 + "popularity": 26344.0 } ] }, @@ -60509,7 +59716,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 155, + "star_count": 156, "Docker_Url": "https://hub.docker.com/r/percona/percona-xtradb-cluster", "OS": [ { @@ -60548,27 +59755,27 @@ { "name": "percona-xtradb-cluster-operator", "url": "https://quay.io/repository/operatorhubio/percona-xtradb-cluster-operator", - "popularity": 356.0 + "popularity": 312.0 }, { "name": "percona-xtradb-cluster-operator", "url": "https://quay.io/repository/openshift-community-operators/percona-xtradb-cluster-operator", - "popularity": 294.0 + "popularity": 722.0 }, { "name": "percona-xtradb-cluster-operator-certified", "url": "https://quay.io/repository/operator-pipeline-prod/percona-xtradb-cluster-operator-certified", - "popularity": 168.0 + "popularity": 294.0 }, { "name": "percona-xtradb-cluster-operator-certified-rhmp", "url": "https://quay.io/repository/operator-pipeline-prod/percona-xtradb-cluster-operator-certified-rhmp", - "popularity": 168.0 + "popularity": 293.0 }, { - "name": "rancher-percona-xtradb-cluster", - "url": "https://quay.io/repository/rubenmch/rancher-percona-xtradb-cluster", - "popularity": 0.0 + "name": "percona-xtradb-cluster-operator", + "url": "https://quay.io/repository/operator_testing/percona-xtradb-cluster-operator", + "popularity": 198.0 } ] }, @@ -60625,7 +59832,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 29, + "star_count": 30, "Docker_Url": "https://hub.docker.com/r/bitnami/keycloak", "OS": [ { @@ -60645,7 +59852,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 29, + "star_count": 30, "Docker_Url": "https://hub.docker.com/r/bitnami/keycloak", "OS": [ { @@ -60683,7 +59890,7 @@ { "name": "keycloak", "url": "https://quay.io/repository/keycloak/keycloak", - "popularity": 1992349.0 + "popularity": 1942852.0 }, { "name": "keycloak", @@ -60693,34 +59900,34 @@ { "name": "keycloak", "url": "https://quay.io/repository/ukhomeofficedigital/keycloak", - "popularity": 48.0 + "popularity": 31.0 } ], "quay_top_images": [ { "name": "keycloak", "url": "https://quay.io/repository/keycloak/keycloak", - "popularity": 1992349.0 + "popularity": 1942852.0 }, { "name": "keycloak-operator", "url": "https://quay.io/repository/keycloak/keycloak-operator", - "popularity": 53461.0 + "popularity": 52527.0 }, { "name": "keycloak-init-container", "url": "https://quay.io/repository/keycloak/keycloak-init-container", - "popularity": 47962.0 + "popularity": 48312.0 }, { "name": "keycloak-gatekeeper", "url": "https://quay.io/repository/keycloak/keycloak-gatekeeper", - "popularity": 12631.0 + "popularity": 12400.0 }, { "name": "keycloak-proxy", "url": "https://quay.io/repository/gambol99/keycloak-proxy", - "popularity": 6022.0 + "popularity": 5837.0 } ] }, @@ -60779,7 +59986,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2266, + "star_count": 2284, "Docker_Url": "https://hub.docker.com/r/grafana/grafana", "OS": [ { @@ -60815,7 +60022,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2266, + "star_count": 2284, "Docker_Url": "https://hub.docker.com/r/grafana/grafana", "OS": [ { @@ -60849,7 +60056,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 30, + "star_count": 33, "Docker_Url": "https://hub.docker.com/r/grafana/grafana-oss", "OS": [ { @@ -60883,7 +60090,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 10, + "star_count": 11, "Docker_Url": "https://hub.docker.com/r/grafana/grafana-enterprise", "OS": [ { @@ -60953,27 +60160,27 @@ { "name": "grafana", "url": "https://quay.io/repository/tamr/grafana", - "popularity": 87.0 + "popularity": 84.0 }, { "name": "grafana", "url": "https://quay.io/repository/opencloudio/grafana", - "popularity": 2273.0 + "popularity": 1812.0 }, { "name": "grafana", "url": "https://quay.io/repository/testing-farm/grafana", - "popularity": 170.0 + "popularity": 172.0 }, { "name": "grafana", "url": "https://quay.io/repository/cybozu/grafana", - "popularity": 771.0 + "popularity": 682.0 }, { "name": "grafana", "url": "https://quay.io/repository/sisense/grafana", - "popularity": 821.0 + "popularity": 857.0 }, { "name": "grafana", @@ -60985,27 +60192,27 @@ { "name": "grafana-operator", "url": "https://quay.io/repository/grafana-operator/grafana-operator", - "popularity": 188424.0 + "popularity": 208648.0 }, { "name": "grafana-operator", "url": "https://quay.io/repository/integreatly/grafana-operator", - "popularity": 57357.0 + "popularity": 55467.0 }, { "name": "ibm-monitoring-grafana-operator", "url": "https://quay.io/repository/opencloudio/ibm-monitoring-grafana-operator", - "popularity": 18830.0 + "popularity": 19136.0 }, { "name": "ceph-grafana", "url": "https://quay.io/repository/ceph/ceph-grafana", - "popularity": 11101.0 + "popularity": 10807.0 }, { - "name": "origin-grafana", - "url": "https://quay.io/repository/openshift/origin-grafana", - "popularity": 4513.0 + "name": "grafana-operator", + "url": "https://quay.io/repository/openshift-community-operators/grafana-operator", + "popularity": 4768.0 } ] }, @@ -61019,19 +60226,19 @@ "stars": 7, "display_name": "Grafana Operator", "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", - "version": "4.4.1", + "version": "4.5.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 4, "high": 0, "medium": 3, - "unknown": 1, + "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1652090412, + "ts": 1657706412, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -61046,7 +60253,7 @@ }, "git_repos": "https://github.com/grafana-operator/grafana-operator", "container_images": [ - "quay.io/grafana-operator/grafana-operator:v4.4.1" + "quay.io/grafana-operator/grafana-operator:v4.5.0" ] }, { @@ -61104,7 +60311,7 @@ { "name": "mattermost", "url": "https://quay.io/repository/jostone/mattermost", - "popularity": 167.0 + "popularity": 170.0 }, { "name": "mattermost", @@ -61114,7 +60321,7 @@ { "name": "mattermost", "url": "https://quay.io/repository/fodoj/mattermost", - "popularity": 34.0 + "popularity": 16.0 }, { "name": "mattermost", @@ -61128,30 +60335,30 @@ } ], "quay_top_images": [ + { + "name": "mattermost", + "url": "https://quay.io/repository/jostone/mattermost", + "popularity": 170.0 + }, { "name": "mattermost-openshift-customized", "url": "https://quay.io/repository/duke253/mattermost-openshift-customized", "popularity": 0.0 }, - { - "name": "mattermost", - "url": "https://quay.io/repository/jostone/mattermost", - "popularity": 167.0 - }, { "name": "mattermost-operator", "url": "https://quay.io/repository/operatorhubio/mattermost-operator", - "popularity": 44.0 + "popularity": 36.0 }, { "name": "mattermost", "url": "https://quay.io/repository/fodoj/mattermost", - "popularity": 34.0 + "popularity": 16.0 }, { "name": "mattermost-operator", "url": "https://quay.io/repository/openshift-community-operators/mattermost-operator", - "popularity": 23.0 + "popularity": 16.0 } ] }, @@ -61217,13 +60424,18 @@ { "name": "synapse", "url": "https://quay.io/repository/jostone/synapse", - "popularity": 167.0 + "popularity": 171.0 }, { "name": "synapse", "url": "https://quay.io/repository/snapserv/synapse", "popularity": 0.0 }, + { + "name": "synapse", + "url": "https://quay.io/repository/opentelekomcloud/synapse", + "popularity": 0.0 + }, { "name": "synapse", "url": "https://quay.io/repository/carloscarnero/synapse", @@ -61231,30 +60443,30 @@ } ], "quay_top_images": [ - { - "name": "synapse", - "url": "https://quay.io/repository/dockernohub/synapse", - "popularity": 0.0 - }, { "name": "synapse", "url": "https://quay.io/repository/jostone/synapse", - "popularity": 167.0 + "popularity": 171.0 }, { - "name": "dockstore-tool-synapse-submit", - "url": "https://quay.io/repository/ga4gh-dream/dockstore-tool-synapse-submit", - "popularity": 0.0 + "name": "matrix-synapse", + "url": "https://quay.io/repository/tlemarchand/matrix-synapse", + "popularity": 13.0 }, { "name": "synapse-helm", "url": "https://quay.io/repository/operatorhubio/synapse-helm", - "popularity": 44.0 + "popularity": 36.0 }, { "name": "synapse-helm", "url": "https://quay.io/repository/mgoerens/synapse-helm", - "popularity": 14.0 + "popularity": 15.0 + }, + { + "name": "fedora-synapse", + "url": "https://quay.io/repository/mugful/fedora-synapse", + "popularity": 10.0 } ] }, @@ -61313,7 +60525,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 382, + "star_count": 383, "Docker_Url": "https://hub.docker.com/r/google/cloud-sdk", "OS": [ { @@ -61334,27 +60546,27 @@ { "name": "cloud-connector", "url": "https://quay.io/repository/sysdig/cloud-connector", - "popularity": 1263418.0 - }, - { - "name": "icp-iam-onboarding", - "url": "https://quay.io/repository/opencloudio/icp-iam-onboarding", - "popularity": 521927.0 + "popularity": 1192367.0 }, { "name": "cloud-connector-s3-bucket-config", "url": "https://quay.io/repository/sysdig/cloud-connector-s3-bucket-config", - "popularity": 644351.0 + "popularity": 629482.0 }, { - "name": "minio", - "url": "https://quay.io/repository/minio/minio", - "popularity": 374426.0 + "name": "icp-iam-onboarding", + "url": "https://quay.io/repository/opencloudio/icp-iam-onboarding", + "popularity": 542731.0 + }, + { + "name": "iam-policy-decision", + "url": "https://quay.io/repository/opencloudio/iam-policy-decision", + "popularity": 383695.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 } ] }, @@ -61450,27 +60662,27 @@ { "name": "knative-serving-package", "url": "https://quay.io/repository/failk8s/knative-serving-package", - "popularity": 6781.0 + "popularity": 6793.0 }, { "name": "knative-eventing-sources-heartbeats", "url": "https://quay.io/repository/openshift-knative/knative-eventing-sources-heartbeats", - "popularity": 12012.0 + "popularity": 10998.0 }, { - "name": "knative-client-test-helloworld", - "url": "https://quay.io/repository/openshift-knative/knative-client-test-helloworld", - "popularity": 2345.0 + "name": "knative-operator", + "url": "https://quay.io/repository/vollerchris/knative-operator", + "popularity": 41791.0 }, { "name": "knative-serving-storage-version-migration", "url": "https://quay.io/repository/openshift-knative/knative-serving-storage-version-migration", - "popularity": 2968.0 + "popularity": 2994.0 }, { "name": "knative-eventing-storage-version-migration", "url": "https://quay.io/repository/openshift-knative/knative-eventing-storage-version-migration", - "popularity": 2805.0 + "popularity": 2836.0 } ] }, @@ -61484,19 +60696,12 @@ "stars": 12, "display_name": "Knative Operator", "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", - "version": "1.5.1", + "version": "1.6.0", "deprecated": false, "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656460800, + "ts": 1626134400, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -61594,7 +60799,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 81, + "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ { @@ -61690,7 +60895,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 1388, + "star_count": 1390, "Docker_Url": "https://hub.docker.com/_/cassandra", "OS": [ { @@ -61743,27 +60948,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 826844.0 + "popularity": 883725.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412398.0 + "popularity": 403203.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 } ] }, @@ -61841,7 +61046,7 @@ { "name": "kubeflow", "url": "https://quay.io/repository/operatorhubio/kubeflow", - "popularity": 153.0 + "popularity": 849.0 }, { "name": "kubeflow", @@ -61850,30 +61055,30 @@ } ], "quay_top_images": [ + { + "name": "kubeflow-notebook-controller-ppc64le", + "url": "https://quay.io/repository/ibm/kubeflow-notebook-controller-ppc64le", + "popularity": 14.0 + }, { "name": "kubeflow", "url": "https://quay.io/repository/operatorhubio/kubeflow", - "popularity": 153.0 + "popularity": 849.0 }, { "name": "kubeflow-notebook-controller", "url": "https://quay.io/repository/opendatahub/kubeflow-notebook-controller", - "popularity": 142.0 - }, - { - "name": "kubeflow-notebook-image-ppc64le", - "url": "https://quay.io/repository/ibm/kubeflow-notebook-image-ppc64le", - "popularity": 38.0 + "popularity": 162.0 }, { - "name": "kubeflow-component-tensorflow-cpu", - "url": "https://quay.io/repository/ibm/kubeflow-component-tensorflow-cpu", - "popularity": 8.0 + "name": "kubeflow-viewer-crd-controller-ppc64le", + "url": "https://quay.io/repository/ibm/kubeflow-viewer-crd-controller-ppc64le", + "popularity": 17.0 }, { - "name": "kubeflow-component-base-image-k8s-client", - "url": "https://quay.io/repository/ibm/kubeflow-component-base-image-k8s-client", - "popularity": 45.0 + "name": "kubeflow-notebook-image-ppc64le", + "url": "https://quay.io/repository/ibm/kubeflow-notebook-image-ppc64le", + "popularity": 55.0 } ] }, @@ -61933,17 +61138,17 @@ { "name": "openshift-qiskit-operator", "url": "https://quay.io/repository/operatorhubio/openshift-qiskit-operator", - "popularity": 132.0 + "popularity": 108.0 }, { "name": "openshift-qiskit-operator", "url": "https://quay.io/repository/openshift-community-operators/openshift-qiskit-operator", - "popularity": 123.0 + "popularity": 96.0 }, { "name": "qiskit-op", "url": "https://quay.io/repository/husky_parul/qiskit-op", - "popularity": 2.0 + "popularity": 34.0 }, { "name": "centos-qiskit-jupyter", @@ -62065,27 +61270,27 @@ { "name": "azure-pipelines-test-container", "url": "https://quay.io/repository/ansible/azure-pipelines-test-container", - "popularity": 29866.0 + "popularity": 39219.0 }, { "name": "origin-azure-machine-controllers", "url": "https://quay.io/repository/openshift/origin-azure-machine-controllers", - "popularity": 4171.0 - }, - { - "name": "origin-azure-cloud-node-manager", - "url": "https://quay.io/repository/openshift/origin-azure-cloud-node-manager", - "popularity": 3170.0 + "popularity": 3696.0 }, { - "name": "origin-azure-cloud-controller-manager", - "url": "https://quay.io/repository/openshift/origin-azure-cloud-controller-manager", - "popularity": 3170.0 + "name": "origin-azure-disk-csi-driver", + "url": "https://quay.io/repository/openshift/origin-azure-disk-csi-driver", + "popularity": 2688.0 }, { "name": "velero-plugin-for-microsoft-azure", "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", - "popularity": 4220.0 + "popularity": 3363.0 + }, + { + "name": "operator-azure-ci", + "url": "https://quay.io/repository/cilium/operator-azure-ci", + "popularity": 5825.0 } ] }, @@ -62141,30 +61346,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "strimzi-tools", - "url": "https://quay.io/repository/rh_integration/strimzi-tools", - "popularity": 8526.0 - }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 826844.0 + "popularity": 883725.0 + }, + { + "name": "topic-strimzi-operator", + "url": "https://quay.io/repository/vollerchris/topic-strimzi-operator", + "popularity": 41798.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412398.0 + "popularity": 403203.0 }, { "name": "jmxtrans", "url": "https://quay.io/repository/strimzi/jmxtrans", - "popularity": 21909.0 + "popularity": 22891.0 }, { "name": "kafka-bridge", "url": "https://quay.io/repository/strimzi/kafka-bridge", - "popularity": 14377.0 + "popularity": 14244.0 } ] }, @@ -62234,7 +61439,7 @@ { "name": "sematext", "url": "https://quay.io/repository/operatorhubio/sematext", - "popularity": 144.0 + "popularity": 151.0 }, { "name": "sematext", @@ -62251,7 +61456,7 @@ { "name": "sematext", "url": "https://quay.io/repository/operatorhubio/sematext", - "popularity": 144.0 + "popularity": 151.0 }, { "name": "sematext", @@ -62275,19 +61480,12 @@ "stars": 0, "display_name": "Sematext Operator", "description": "Full stack observability with Sematext Monitoring Platform!", - "version": "1.0.33", + "version": "1.0.46", "deprecated": false, "signed": false, - "security_report_summary": { - "low": 66, - "high": 24, - "medium": 219, - "unknown": 5, - "critical": 0 - }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1627632000, + "ts": 1560412800, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -62302,7 +61500,7 @@ }, "git_repos": "https://github.com/sematext/sematext-operator", "container_images": [ - "docker.io/sematext/sematext-operator:1.0.33" + "docker.io/sematext/sematext-operator:1.0.46" ] } ] @@ -62323,27 +61521,27 @@ { "name": "che-plugin-artifacts-broker", "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", - "popularity": 20225.0 + "popularity": 19550.0 }, { "name": "che-operator", "url": "https://quay.io/repository/eclipse/che-operator", - "popularity": 36094.0 + "popularity": 34982.0 }, { "name": "che-plugin-sidecar", "url": "https://quay.io/repository/eclipse/che-plugin-sidecar", - "popularity": 15476.0 + "popularity": 21159.0 }, { "name": "che-java11-maven", "url": "https://quay.io/repository/eclipse/che-java11-maven", - "popularity": 19772.0 + "popularity": 25543.0 }, { - "name": "che-machine-exec", - "url": "https://quay.io/repository/eclipse/che-machine-exec", - "popularity": 9244.0 + "name": "che-plugin-registry", + "url": "https://quay.io/repository/eclipse/che-plugin-registry", + "popularity": 14280.0 } ] }, @@ -62400,30 +61598,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "ditto-index", - "url": "https://quay.io/repository/olmqe/ditto-index", - "popularity": 9117.0 - }, { "name": "che-plugin-artifacts-broker", "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", - "popularity": 20225.0 + "popularity": 19550.0 }, { "name": "che-operator", "url": "https://quay.io/repository/eclipse/che-operator", - "popularity": 36094.0 + "popularity": 34982.0 }, { "name": "che-plugin-sidecar", "url": "https://quay.io/repository/eclipse/che-plugin-sidecar", - "popularity": 15476.0 + "popularity": 21159.0 }, { "name": "che-java11-maven", "url": "https://quay.io/repository/eclipse/che-java11-maven", - "popularity": 19772.0 + "popularity": 25543.0 + }, + { + "name": "che-plugin-registry", + "url": "https://quay.io/repository/eclipse/che-plugin-registry", + "popularity": 14280.0 } ] }, @@ -62480,7 +61678,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 4928, + "star_count": 4943, "Docker_Url": "https://hub.docker.com/_/mariadb", "OS": [ { @@ -62522,7 +61720,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 162, + "star_count": 163, "Docker_Url": "https://hub.docker.com/r/bitnami/mariadb", "OS": [ { @@ -62650,7 +61848,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 162, + "star_count": 163, "Docker_Url": "https://hub.docker.com/r/bitnami/mariadb", "OS": [ { @@ -62668,7 +61866,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 4928, + "star_count": 4943, "Docker_Url": "https://hub.docker.com/_/mariadb", "OS": [ { @@ -62712,44 +61910,44 @@ { "name": "mariadb", "url": "https://quay.io/repository/startx/mariadb", - "popularity": 15551.0 + "popularity": 15691.0 }, { "name": "mariadb", "url": "https://quay.io/repository/metal3-io/mariadb", - "popularity": 1946.0 + "popularity": 1976.0 }, { "name": "mariadb", "url": "https://quay.io/repository/linuxserver.io/mariadb", - "popularity": 63.0 + "popularity": 7.0 } ], "quay_top_images": [ { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 241707.0 + "popularity": 245318.0 }, { "name": "mariadb-105-centos7", "url": "https://quay.io/repository/centos7/mariadb-105-centos7", - "popularity": 136441.0 + "popularity": 142292.0 }, { "name": "mariadb", "url": "https://quay.io/repository/startx/mariadb", - "popularity": 15551.0 + "popularity": 15691.0 }, { - "name": "mariadb", - "url": "https://quay.io/repository/metal3-io/mariadb", - "popularity": 1946.0 + "name": "mariadb-server", + "url": "https://quay.io/repository/openstack.kolla/mariadb-server", + "popularity": 2041.0 }, { - "name": "todolist-mariadb-go", - "url": "https://quay.io/repository/mferrato/todolist-mariadb-go", - "popularity": 1590.0 + "name": "mariadb", + "url": "https://quay.io/repository/metal3-io/mariadb", + "popularity": 1976.0 } ] }, @@ -62871,27 +62069,27 @@ { "name": "istio-workspace", "url": "https://quay.io/repository/maistra/istio-workspace", - "popularity": 42505.0 + "popularity": 41484.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 353617.0 + "popularity": 421059.0 }, { "name": "am-istio", "url": "https://quay.io/repository/aspenmesh/am-istio", - "popularity": 3163.0 + "popularity": 7879.0 }, { "name": "istio-ubi8-operator", "url": "https://quay.io/repository/maistra/istio-ubi8-operator", - "popularity": 3061.0 + "popularity": 2078.0 }, { "name": "cert-manager-istio-csr", "url": "https://quay.io/repository/jetstack/cert-manager-istio-csr", - "popularity": 2540.0 + "popularity": 2621.0 } ] }, @@ -62941,7 +62139,7 @@ "stars": 0, "display_name": "Istio Workspace", "description": "Safely develop and test on any Kubernetes cluster without affecting others.", - "version": "0.5.0", + "version": "0.5.1", "deprecated": false, "signed": false, "security_report_summary": { @@ -62953,7 +62151,7 @@ }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656964194, + "ts": 1657820866, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -62968,7 +62166,7 @@ }, "git_repos": "https://github.com/maistra/istio-workspace", "container_images": [ - "quay.io/maistra/istio-workspace:v0.5.0" + "quay.io/maistra/istio-workspace:v0.5.1" ] }, { @@ -63106,39 +62304,39 @@ { "name": "vault", "url": "https://quay.io/repository/cybozu/vault", - "popularity": 2656.0 + "popularity": 1054.0 }, { "name": "vault", "url": "https://quay.io/repository/giantswarm/vault", - "popularity": 185.0 + "popularity": 345.0 } ], "quay_top_images": [ { "name": "file-vault", "url": "https://quay.io/repository/ukhomeofficedigital/file-vault", - "popularity": 42590.0 + "popularity": 42988.0 }, { "name": "vault-next-gen", "url": "https://quay.io/repository/codefreshplugins/vault-next-gen", - "popularity": 28875.0 + "popularity": 28859.0 }, { "name": "vault-sidekick", "url": "https://quay.io/repository/ukhomeofficedigital/vault-sidekick", - "popularity": 7842.0 + "popularity": 7265.0 }, { "name": "kubernetes-vault-client", "url": "https://quay.io/repository/travelaudience/kubernetes-vault-client", - "popularity": 9887.0 + "popularity": 8807.0 }, { "name": "ibm-cert-manager-operator", "url": "https://quay.io/repository/opencloudio/ibm-cert-manager-operator", - "popularity": 50181.0 + "popularity": 35871.0 } ] }, @@ -63226,7 +62424,7 @@ "stars": 0, "display_name": "External Secrets Operator", "description": "Operator to configure external-secrets helm-chart based operator", - "version": "0.5.7", + "version": "0.5.8", "deprecated": false, "signed": false, "security_report_summary": { @@ -63270,7 +62468,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 81, + "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ { @@ -63335,27 +62533,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 826844.0 + "popularity": 883725.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412398.0 + "popularity": 403203.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 } ] }, @@ -63407,7 +62605,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 129, + "star_count": 130, "Docker_Url": "https://hub.docker.com/r/bitnami/etcd", "OS": [ { @@ -63567,7 +62765,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 129, + "star_count": 130, "Docker_Url": "https://hub.docker.com/r/bitnami/etcd", "OS": [ { @@ -63587,59 +62785,54 @@ { "name": "etcd", "url": "https://quay.io/repository/coreos/etcd", - "popularity": 5050380.0 + "popularity": 5144331.0 }, { "name": "etcd", "url": "https://quay.io/repository/openshift-community-operators/etcd", - "popularity": 2742.0 + "popularity": 3705.0 }, { "name": "etcd", "url": "https://quay.io/repository/cybozu/etcd", - "popularity": 3971.0 + "popularity": 1623.0 }, { "name": "etcd", "url": "https://quay.io/repository/olmqe/etcd", - "popularity": 2211.0 + "popularity": 3064.0 }, { "name": "etcd", "url": "https://quay.io/repository/karbon/etcd", - "popularity": 1873.0 - }, - { - "name": "etcd", - "url": "https://quay.io/repository/giantswarm/etcd", - "popularity": 680.0 + "popularity": 1912.0 } ], "quay_top_images": [ { "name": "etcd", "url": "https://quay.io/repository/coreos/etcd", - "popularity": 5050380.0 + "popularity": 5144331.0 }, { "name": "etcd-operator", "url": "https://quay.io/repository/coreos/etcd-operator", - "popularity": 65170.0 + "popularity": 66783.0 }, { "name": "flannel", "url": "https://quay.io/repository/coreos/flannel", - "popularity": 1589952.0 + "popularity": 1674754.0 }, { "name": "etcd-bundle", "url": "https://quay.io/repository/olmqe/etcd-bundle", - "popularity": 12948.0 + "popularity": 14562.0 }, { "name": "etcd-index", "url": "https://quay.io/repository/olmqe/etcd-index", - "popularity": 11805.0 + "popularity": 14290.0 } ] }, @@ -63691,39 +62884,15 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 2570, + "star_count": 2578, "Docker_Url": "https://hub.docker.com/_/traefik", "OS": [ { "Class": "OS", "Architecture": "amd64", "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", + "Versions": "10.0.17763.3165", + "Type": "windows", "Subtype": "" } ] @@ -63735,39 +62904,15 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 2570, + "star_count": 2578, "Docker_Url": "https://hub.docker.com/_/traefik", "OS": [ { "Class": "OS", "Architecture": "amd64", "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", + "Versions": "10.0.17763.3165", + "Type": "windows", "Subtype": "" } ] @@ -63779,27 +62924,27 @@ { "name": "traefik", "url": "https://quay.io/repository/widen/traefik", - "popularity": 1209.0 + "popularity": 1127.0 }, { "name": "traefik", - "url": "https://quay.io/repository/sylr/traefik", - "popularity": 0.0 + "url": "https://quay.io/repository/internaldatahub/traefik", + "popularity": 949.0 }, { "name": "traefik", - "url": "https://quay.io/repository/internaldatahub/traefik", - "popularity": 992.0 + "url": "https://quay.io/repository/sylr/traefik", + "popularity": 0.0 }, { "name": "traefik", - "url": "https://quay.io/repository/swsmirror/traefik", - "popularity": 1.0 + "url": "https://quay.io/repository/fivium/traefik", + "popularity": 226.0 }, { "name": "traefik", - "url": "https://quay.io/repository/fivium/traefik", - "popularity": 157.0 + "url": "https://quay.io/repository/swsmirror/traefik", + "popularity": 0.0 }, { "name": "traefik", @@ -63809,12 +62954,12 @@ { "name": "traefik", "url": "https://quay.io/repository/rizoa/traefik", - "popularity": 0.0 + "popularity": 3.0 }, { "name": "traefik", "url": "https://quay.io/repository/procentive/traefik", - "popularity": 120.0 + "popularity": 93.0 }, { "name": "traefik", @@ -63824,44 +62969,44 @@ { "name": "traefik", "url": "https://quay.io/repository/kube-ops/traefik", - "popularity": 34.0 + "popularity": 26.0 }, { "name": "traefik", - "url": "https://quay.io/repository/octoblu/traefik", - "popularity": 0.0 + "url": "https://quay.io/repository/ecasa/traefik", + "popularity": 49.0 }, { "name": "traefik", - "url": "https://quay.io/repository/ecasa/traefik", - "popularity": 49.0 + "url": "https://quay.io/repository/octoblu/traefik", + "popularity": 0.0 } ], "quay_top_images": [ { "name": "che--traefik", "url": "https://quay.io/repository/eclipse/che--traefik", - "popularity": 1113.0 + "popularity": 1164.0 }, { "name": "traefik", "url": "https://quay.io/repository/widen/traefik", - "popularity": 1209.0 + "popularity": 1127.0 }, { "name": "traefik", "url": "https://quay.io/repository/internaldatahub/traefik", - "popularity": 992.0 + "popularity": 949.0 }, { "name": "odh-traefik-container", "url": "https://quay.io/repository/modh/odh-traefik-container", - "popularity": 1140.0 + "popularity": 1155.0 }, { "name": "traefik-rhel8", "url": "https://quay.io/repository/devspaces/traefik-rhel8", - "popularity": 441.0 + "popularity": 298.0 } ] }, @@ -63900,7 +63045,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": null, + "git_repos": "https://docs.containo.us", "container_images": [] } ] @@ -63958,27 +63103,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 - }, - { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 486693.0 }, { "name": "cloud-connector", "url": "https://quay.io/repository/sysdig/cloud-connector", - "popularity": 1263418.0 + "popularity": 1192367.0 + }, + { + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 523368.0 }, { "name": "cloud-connector-s3-bucket-config", "url": "https://quay.io/repository/sysdig/cloud-connector-s3-bucket-config", - "popularity": 644351.0 + "popularity": 629482.0 }, { - "name": "ibm-events-operator", - "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 403014.0 } ] }, @@ -64272,20 +63417,20 @@ "url": "https://quay.io/repository/marco_antonioni/yugabytedb", "popularity": 0.0 }, + { + "name": "debezium-connector", + "url": "https://quay.io/repository/yugabyte/debezium-connector", + "popularity": 15.0 + }, { "name": "yugabytedb", "url": "https://quay.io/repository/gitpodified-workspace-images/yugabytedb", "popularity": 0.0 }, - { - "name": "debezium-connector", - "url": "https://quay.io/repository/yugabyte/debezium-connector", - "popularity": 93.0 - }, { "name": "cdcsdk-server", "url": "https://quay.io/repository/yugabyte/cdcsdk-server", - "popularity": 3.0 + "popularity": 0.0 } ] }, @@ -64346,12 +63491,12 @@ { "name": "cockroachdb", "url": "https://quay.io/repository/helmoperators/cockroachdb", - "popularity": 2464.0 + "popularity": 2815.0 }, { "name": "cockroachdb", "url": "https://quay.io/repository/operatorhubio/cockroachdb", - "popularity": 264.0 + "popularity": 218.0 }, { "name": "cockroachdb", @@ -64361,34 +63506,34 @@ { "name": "cockroachdb", "url": "https://quay.io/repository/openshift-community-operators/cockroachdb", - "popularity": 159.0 + "popularity": 131.0 } ], "quay_top_images": [ { "name": "cockroachdb-index", "url": "https://quay.io/repository/olmqe/cockroachdb-index", - "popularity": 6461.0 + "popularity": 6902.0 }, { "name": "cockroachdb-operator", "url": "https://quay.io/repository/olmqe/cockroachdb-operator", - "popularity": 5116.0 + "popularity": 5413.0 }, { "name": "cockroachdb", "url": "https://quay.io/repository/helmoperators/cockroachdb", - "popularity": 2464.0 + "popularity": 2815.0 }, { "name": "cockroachdb-operator", "url": "https://quay.io/repository/kuiwang/cockroachdb-operator", - "popularity": 1096.0 + "popularity": 1428.0 }, { "name": "spicedb", "url": "https://quay.io/repository/authzed/spicedb", - "popularity": 12045.0 + "popularity": 13555.0 } ] }, @@ -64449,39 +63594,39 @@ { "name": "jaeger", "url": "https://quay.io/repository/operatorhubio/jaeger", - "popularity": 1398.0 + "popularity": 1333.0 }, { "name": "jaeger", "url": "https://quay.io/repository/openshift-community-operators/jaeger", - "popularity": 814.0 + "popularity": 642.0 } ], "quay_top_images": [ { "name": "jaeger-operator", "url": "https://quay.io/repository/jaegertracing/jaeger-operator", - "popularity": 56323.0 + "popularity": 54266.0 }, { "name": "jaeger-agent", "url": "https://quay.io/repository/jaegertracing/jaeger-agent", - "popularity": 22847.0 + "popularity": 20565.0 }, { "name": "jaeger-query", "url": "https://quay.io/repository/jaegertracing/jaeger-query", - "popularity": 10012.0 + "popularity": 9786.0 }, { "name": "jaeger-collector", "url": "https://quay.io/repository/jaegertracing/jaeger-collector", - "popularity": 15227.0 + "popularity": 45020.0 }, { "name": "jaeger", "url": "https://quay.io/repository/operatorhubio/jaeger", - "popularity": 1398.0 + "popularity": 1333.0 } ] }, @@ -64573,27 +63718,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 91508.0 + "popularity": 90723.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 }, { "name": "spicedb", "url": "https://quay.io/repository/authzed/spicedb", - "popularity": 12045.0 + "popularity": 13555.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8725.0 + "popularity": 8041.0 } ] }, @@ -64641,19 +63786,19 @@ "popularity": 0.0 }, { - "name": "ruby", - "url": "https://quay.io/repository/ibmz/ruby", - "popularity": 0.0 + "name": "138-slot-gacor-maxwin-anti-rungkat", + "url": "https://quay.io/repository/138slot/138-slot-gacor-maxwin-anti-rungkat", + "popularity": 3.0 }, { - "name": "ruby", - "url": "https://quay.io/repository/ibm/ruby", - "popularity": 0.0 + "name": "coloktotofyp", + "url": "https://quay.io/repository/coloktotofyp/coloktotofyp", + "popularity": 1.0 }, { - "name": "hildafrederica", - "url": "https://quay.io/repository/hfredca/hildafrederica", - "popularity": 0.0 + "name": "laetoto", + "url": "https://quay.io/repository/togelonlinelae/laetoto", + "popularity": 1.0 } ] }, @@ -64782,44 +63927,44 @@ { "name": "ansible", "url": "https://quay.io/repository/cloudctl/ansible", - "popularity": 589.0 + "popularity": 968.0 }, { "name": "ansible", "url": "https://quay.io/repository/containercraft/ansible", - "popularity": 5.0 + "popularity": 0.0 }, { "name": "ansible", "url": "https://quay.io/repository/osbuild/ansible", - "popularity": 735.0 + "popularity": 723.0 } ], "quay_top_images": [ { "name": "ansible-operator", "url": "https://quay.io/repository/operator-framework/ansible-operator", - "popularity": 20473.0 - }, - { - "name": "origin-ansible", - "url": "https://quay.io/repository/openshift/origin-ansible", - "popularity": 11569.0 + "popularity": 20208.0 }, { "name": "ansible-runner", "url": "https://quay.io/repository/ansible/ansible-runner", - "popularity": 11749.0 + "popularity": 19109.0 }, { - "name": "ansible-core-test-container", - "url": "https://quay.io/repository/ansible/ansible-core-test-container", - "popularity": 8601.0 + "name": "origin-ansible", + "url": "https://quay.io/repository/openshift/origin-ansible", + "popularity": 12114.0 }, { "name": "gitlab-ansible-runner", "url": "https://quay.io/repository/sheogorath/gitlab-ansible-runner", - "popularity": 20160.0 + "popularity": 20164.0 + }, + { + "name": "runner-ansible", + "url": "https://quay.io/repository/startx/runner-ansible", + "popularity": 8187.0 } ] }, @@ -64842,7 +63987,7 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "cloud-batch", @@ -64852,17 +63997,17 @@ { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 32086.0 + "popularity": 30456.0 }, { "name": "batch-export", "url": "https://quay.io/repository/cdis/batch-export", - "popularity": 679.0 + "popularity": 418.0 }, { - "name": "batch-job-controller", - "url": "https://quay.io/repository/bakito/batch-job-controller", - "popularity": 66.0 + "name": "batch-export-service", + "url": "https://quay.io/repository/cdis/batch-export-service", + "popularity": 64.0 } ] }, @@ -64929,9 +64074,9 @@ "popularity": 0.0 }, { - "name": "vsts-agent-ubuntu-16.04-standard", - "url": "https://quay.io/repository/10thmagnitude/vsts-agent-ubuntu-16.04-standard", - "popularity": 1.0 + "name": "powershell-plus", + "url": "https://quay.io/repository/powerdock/powershell-plus", + "popularity": 0.0 }, { "name": "box-ps", @@ -65193,19 +64338,12 @@ "stars": 12, "display_name": "Knative Operator", "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", - "version": "1.5.1", + "version": "1.6.0", "deprecated": false, "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1656460800, + "ts": 1626134400, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -65341,19 +64479,19 @@ "stars": 7, "display_name": "Grafana Operator", "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", - "version": "4.4.1", + "version": "4.5.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 4, "high": 0, "medium": 3, - "unknown": 1, + "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 1, - "ts": 1652090412, + "ts": 1657706412, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -65368,7 +64506,7 @@ }, "git_repos": "https://github.com/grafana-operator/grafana-operator", "container_images": [ - "quay.io/grafana-operator/grafana-operator:v4.4.1" + "quay.io/grafana-operator/grafana-operator:v4.5.0" ] }, { @@ -65507,7 +64645,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": null, + "git_repos": "https://fluxcd.io/docs/", "container_images": [] }, { @@ -65838,27 +64976,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -65972,7 +65110,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 81, + "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ { @@ -66068,7 +65206,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 1388, + "star_count": 1390, "Docker_Url": "https://hub.docker.com/_/cassandra", "OS": [ { @@ -66121,27 +65259,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 826844.0 + "popularity": 883725.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412398.0 + "popularity": 403203.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 } ] }, @@ -66288,27 +65426,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 201157.0 + "popularity": 203269.0 } ] }, @@ -66471,27 +65609,27 @@ { "name": "teleport", "url": "https://quay.io/repository/gravitational/teleport", - "popularity": 157544.0 + "popularity": 145184.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 38116.0 + "popularity": 36573.0 }, { "name": "teleport-ent", "url": "https://quay.io/repository/gravitational/teleport-ent", - "popularity": 38658.0 + "popularity": 25900.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20112.0 + "popularity": 20354.0 }, { - "name": "mysqld-exporter", - "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 19079.0 + "name": "multiqc", + "url": "https://quay.io/repository/biocontainers/multiqc", + "popularity": 30213.0 } ] }, @@ -66587,27 +65725,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -66627,7 +65765,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 26, + "star_count": 27, "Docker_Url": "https://hub.docker.com/r/bitnami/git", "OS": [ { @@ -66647,7 +65785,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 26, + "star_count": 27, "Docker_Url": "https://hub.docker.com/r/bitnami/git", "OS": [ { @@ -66679,12 +65817,12 @@ ] }, { - "name": "rancher/git-serve", + "name": "rancher/git-logrotate", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/rancher/git-serve", + "Docker_Url": "https://hub.docker.com/r/rancher/git-logrotate", "OS": [ { "Class": "OS", @@ -66697,12 +65835,12 @@ ] }, { - "name": "rancher/git-logrotate", + "name": "rancher/git-mirror", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/rancher/git-logrotate", + "Docker_Url": "https://hub.docker.com/r/rancher/git-mirror", "OS": [ { "Class": "OS", @@ -66715,12 +65853,12 @@ ] }, { - "name": "rancher/git-mirror", + "name": "rancher/git-serve", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/rancher/git-mirror", + "Docker_Url": "https://hub.docker.com/r/rancher/git-serve", "OS": [ { "Class": "OS", @@ -66739,34 +65877,34 @@ { "name": "git", "url": "https://quay.io/repository/sisense/git", - "popularity": 959.0 + "popularity": 1236.0 } ], "quay_top_images": [ { "name": "cf-git-cloner", "url": "https://quay.io/repository/codefresh/cf-git-cloner", - "popularity": 164003.0 + "popularity": 158921.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "argo-hub-workflows-codefresh-csdp-versions-0.0.6-images-image-enricher-git-info", "url": "https://quay.io/repository/codefreshplugins/argo-hub-workflows-codefresh-csdp-versions-0.0.6-images-image-enricher-git-info", - "popularity": 92575.0 + "popularity": 92681.0 }, { "name": "git-chglog", "url": "https://quay.io/repository/git-chglog/git-chglog", - "popularity": 9716.0 + "popularity": 9762.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 } ] }, @@ -66879,7 +66017,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": null, + "git_repos": "https://fluxcd.io/docs/", "container_images": [] }, { @@ -66928,7 +66066,7 @@ "stars": 0, "display_name": "External Secrets Operator", "description": "Operator to configure external-secrets helm-chart based operator", - "version": "0.5.7", + "version": "0.5.8", "deprecated": false, "signed": false, "security_report_summary": { @@ -67084,7 +66222,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": null, + "git_repos": "https://weaveworks.github.io/tf-controller/", "container_images": [] } ] @@ -67141,39 +66279,34 @@ { "name": "gitlab", "url": "https://quay.io/repository/sameersbn/gitlab", - "popularity": 603.0 - }, - { - "name": "gitlab", - "url": "https://quay.io/repository/stoplight/gitlab", - "popularity": 0.0 + "popularity": 618.0 } ], "quay_top_images": [ { "name": "gitlab-runner-docker-cleanup", "url": "https://quay.io/repository/gitlab/gitlab-runner-docker-cleanup", - "popularity": 802500.0 - }, - { - "name": "gitlab-runner", - "url": "https://quay.io/repository/gitlab/gitlab-runner", - "popularity": 19926.0 + "popularity": 796772.0 }, { "name": "gitlab-ansible-runner", "url": "https://quay.io/repository/sheogorath/gitlab-ansible-runner", - "popularity": 20160.0 + "popularity": 20164.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 80338.0 + "popularity": 79034.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 38116.0 + "popularity": 36573.0 + }, + { + "name": "memcached", + "url": "https://quay.io/repository/jitesoft/memcached", + "popularity": 52832.0 } ] }, @@ -67244,7 +66377,7 @@ "stars": 0, "display_name": "External Secrets Operator", "description": "Operator to configure external-secrets helm-chart based operator", - "version": "0.5.7", + "version": "0.5.8", "deprecated": false, "signed": false, "security_report_summary": { @@ -67307,27 +66440,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 }, { "name": "nginx-ingress-controller", "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1153447.0 + "popularity": 1214037.0 } ] }, @@ -67362,12 +66495,48 @@ ] }, { - "name": "rancher/windows-scheduler", + "name": "rancher/server-base", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/rancher/windows-scheduler", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/server-base", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "circleci/server-nomad", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "atlassian/server-client-plugins", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", "OS": [ { "Class": "OS", @@ -67387,27 +66556,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -67467,27 +66636,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42591.0 + "popularity": 42557.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -67510,27 +66679,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "mongodb-enterprise-database", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", - "popularity": 118389.0 + "popularity": 101454.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6909853.0 + "popularity": 6926549.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2476799.0 + "popularity": 2524052.0 } ] }, @@ -67550,7 +66719,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 12858, + "star_count": 12890, "Docker_Url": "https://hub.docker.com/_/mysql", "OS": [ { @@ -67612,7 +66781,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 34, + "star_count": 36, "Docker_Url": "https://hub.docker.com/r/ubuntu/mysql", "OS": [ { @@ -67741,12 +66910,30 @@ } ] }, + { + "name": "cimg/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/cimg/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, { "name": "ubuntu/mysql", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 34, + "star_count": 36, "Docker_Url": "https://hub.docker.com/r/ubuntu/mysql", "OS": [ { @@ -67783,24 +66970,6 @@ } ] }, - { - "name": "cimg/mysql", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/cimg/mysql", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, { "name": "bitnami/mysql", "Official image": false, @@ -67826,64 +66995,64 @@ { "name": "mysql", "url": "https://quay.io/repository/openshifttest/mysql", - "popularity": 14939.0 + "popularity": 18388.0 }, { "name": "mysql", "url": "https://quay.io/repository/gauravkumar9130/mysql", - "popularity": 13.0 + "popularity": 26256.0 }, { "name": "mysql", "url": "https://quay.io/repository/prsurve/mysql", - "popularity": 6657.0 + "popularity": 62698.0 }, { "name": "mysql", "url": "https://quay.io/repository/cybozu/mysql", - "popularity": 4676.0 + "popularity": 5399.0 }, { "name": "mysql", "url": "https://quay.io/repository/hazelcast_cloud/mysql", - "popularity": 2013.0 + "popularity": 2206.0 }, { "name": "mysql", "url": "https://quay.io/repository/operations/mysql", - "popularity": 1019.0 + "popularity": 1219.0 }, { "name": "mysql", "url": "https://quay.io/repository/bridgez/mysql", - "popularity": 10.0 + "popularity": 3.0 } ], "quay_top_images": [ { "name": "mysql-80-centos7", "url": "https://quay.io/repository/centos7/mysql-80-centos7", - "popularity": 255184.0 + "popularity": 260685.0 }, { "name": "mysql", - "url": "https://quay.io/repository/openshifttest/mysql", - "popularity": 14939.0 + "url": "https://quay.io/repository/gauravkumar9130/mysql", + "popularity": 26256.0 }, { - "name": "mysql-operator", - "url": "https://quay.io/repository/presslabs/mysql-operator", - "popularity": 43507.0 + "name": "mysql", + "url": "https://quay.io/repository/prsurve/mysql", + "popularity": 62698.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 241707.0 + "popularity": 245318.0 }, { "name": "mariadb-105-centos7", "url": "https://quay.io/repository/centos7/mariadb-105-centos7", - "popularity": 136441.0 + "popularity": 142292.0 } ] }, @@ -68083,27 +67252,27 @@ { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 255406.0 + "popularity": 254930.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 241707.0 + "popularity": 245318.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 189232.0 + "popularity": 193426.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183418.0 + "popularity": 183645.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 140143.0 + "popularity": 146710.0 } ] }, @@ -68123,7 +67292,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 148, + "star_count": 149, "Docker_Url": "https://hub.docker.com/r/bitnami/postgresql", "OS": [ { @@ -68247,7 +67416,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 148, + "star_count": 149, "Docker_Url": "https://hub.docker.com/r/bitnami/postgresql", "OS": [ { @@ -68308,44 +67477,44 @@ { "name": "postgresql", "url": "https://quay.io/repository/enterprisedb/postgresql", - "popularity": 18302.0 + "popularity": 19585.0 }, { "name": "postgresql", "url": "https://quay.io/repository/aptible/postgresql", - "popularity": 1432.0 + "popularity": 1582.0 }, { "name": "postgresql", "url": "https://quay.io/repository/operatorhubio/postgresql", - "popularity": 1536.0 + "popularity": 1494.0 } ], "quay_top_images": [ { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 255406.0 + "popularity": 254930.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 189232.0 + "popularity": 193426.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 140143.0 + "popularity": 146710.0 }, { - "name": "postgresql-operator", - "url": "https://quay.io/repository/dev4devs-com/postgresql-operator", - "popularity": 18838.0 + "name": "postgresql", + "url": "https://quay.io/repository/enterprisedb/postgresql", + "popularity": 19585.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20112.0 + "popularity": 20354.0 } ] }, @@ -68524,7 +67693,7 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": null, + "git_repos": "https://www.enterprisedb.com/docs/postgres_for_kubernetes/latest/", "container_images": [ "quay.io/enterprisedb/cloud-native-postgresql" ] @@ -68722,34 +67891,7 @@ "AWS RDS": [ { "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "amazon/aws-cli", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 176, - "Docker_Url": "https://hub.docker.com/r/amazon/aws-cli", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] + "dockerhub_top_images": [] }, { "quay_exact_images": [], @@ -68757,27 +67899,27 @@ { "name": "check-aws-tags", "url": "https://quay.io/repository/sergioballesteros/check-aws-tags", - "popularity": 42674.0 + "popularity": 32462.0 }, { "name": "aws-account-operator-registry", "url": "https://quay.io/repository/app-sre/aws-account-operator-registry", - "popularity": 27710.0 + "popularity": 27747.0 }, { "name": "aws-nuke", "url": "https://quay.io/repository/rebuy/aws-nuke", - "popularity": 33368.0 + "popularity": 34602.0 }, { - "name": "operator-aws", - "url": "https://quay.io/repository/cilium/operator-aws", - "popularity": 30335.0 + "name": "aws-fsx-csi-driver", + "url": "https://quay.io/repository/sisense/aws-fsx-csi-driver", + "popularity": 20812.0 }, { "name": "aws-vpce-operator", "url": "https://quay.io/repository/app-sre/aws-vpce-operator", - "popularity": 53183.0 + "popularity": 41520.0 } ] }, @@ -68892,27 +68034,27 @@ { "name": "sap-side-by-side-be", "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", - "popularity": 3358.0 + "popularity": 3641.0 }, { "name": "sap-btp-operator", "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", - "popularity": 132.0 + "popularity": 108.0 }, { "name": "container-image-registry", "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7558.0 + "popularity": 7568.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", - "popularity": 6548.0 + "popularity": 6663.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/miminar/sdi-observer", - "popularity": 165.0 + "popularity": 169.0 } ] }, @@ -68954,27 +68096,27 @@ { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 353617.0 + "popularity": 421059.0 }, { "name": "etl-map-omop-vocabulary", "url": "https://quay.io/repository/lifebitai/etl-map-omop-vocabulary", - "popularity": 230.0 + "popularity": 98.0 }, { "name": "spark-operator", "url": "https://quay.io/repository/radanalyticsio/spark-operator", - "popularity": 25798.0 + "popularity": 25565.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8725.0 + "popularity": 8041.0 }, { "name": "daemon", "url": "https://quay.io/repository/ceph/daemon", - "popularity": 3450.0 + "popularity": 9604.0 } ] }, @@ -69011,11 +68153,6 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "takipzade", - "url": "https://quay.io/repository/takipzadetakipci/takipzade", - "popularity": 0.0 - }, { "name": "instagram-takipci-satin-al", "url": "https://quay.io/repository/instagramtakipcial/instagram-takipci-satin-al", @@ -69035,6 +68172,11 @@ "name": "bitcoin-hesabi-acma", "url": "https://quay.io/repository/bitcoinhesabiacma/bitcoin-hesabi-acma", "popularity": 0.0 + }, + { + "name": "takipci", + "url": "https://quay.io/repository/mobilodemetakipci/takipci", + "popularity": 0.0 } ] }, @@ -69057,27 +68199,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "nginx-ingress-controller", "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1153447.0 + "popularity": 1214037.0 }, { "name": "k8s-sidecar", "url": "https://quay.io/repository/kiwigrid/k8s-sidecar", - "popularity": 1320477.0 + "popularity": 1297028.0 }, { - "name": "cilium", - "url": "https://quay.io/repository/cilium/cilium", - "popularity": 746280.0 + "name": "ambassador", + "url": "https://quay.io/repository/datawire/ambassador", + "popularity": 421059.0 }, { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 809370.0 } ] }, @@ -69216,27 +68358,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15052.0 + "popularity": 15042.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 6801.0 + "popularity": 3550.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20112.0 + "popularity": 20354.0 }, { "name": "edb-postgres-advanced", "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 13004.0 + "popularity": 13582.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 19079.0 + "popularity": 17355.0 } ] }, @@ -69259,27 +68401,27 @@ { "name": "sap-side-by-side-be", "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", - "popularity": 3358.0 + "popularity": 3641.0 }, { "name": "sap-btp-operator", "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", - "popularity": 132.0 + "popularity": 108.0 }, { "name": "container-image-registry", "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7558.0 + "popularity": 7568.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", - "popularity": 6548.0 + "popularity": 6663.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/miminar/sdi-observer", - "popularity": 165.0 + "popularity": 169.0 } ] }, @@ -69302,27 +68444,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28370212.0 + "popularity": 28649423.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 }, { "name": "ibm-management-ingress-operator", "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 111760.0 + "popularity": 156321.0 }, { - "name": "ibm-commonui-operator", - "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", - "popularity": 117024.0 + "name": "audit-syslog-service", + "url": "https://quay.io/repository/opencloudio/audit-syslog-service", + "popularity": 130197.0 } ] }, @@ -69361,7 +68503,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 1382, + "star_count": 1384, "Docker_Url": "https://hub.docker.com/_/maven", "OS": [ { @@ -69371,14 +68513,6 @@ "Versions": null, "Type": "linux", "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" } ] }, @@ -69387,7 +68521,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 81, + "star_count": 82, "Docker_Url": "https://hub.docker.com/r/bitnami/apache", "OS": [ { @@ -69452,27 +68586,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 826844.0 + "popularity": 883725.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 412398.0 + "popularity": 403203.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 260690.0 + "popularity": 261758.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 204679.0 + "popularity": 216402.0 } ] }, @@ -69553,7 +68687,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 17, + "star_count": 18, "Docker_Url": "https://hub.docker.com/_/ibm-semeru-runtimes", "OS": [ { @@ -69598,27 +68732,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 501119.0 + "popularity": 486693.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 537774.0 + "popularity": 523368.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 374265.0 + "popularity": 372869.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 365187.0 + "popularity": 403014.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5802611.0 + "popularity": 5908670.0 } ] }, diff --git a/kg_utils/image_search_kg/openshift_images.csv b/kg_utils/image_search_kg/openshift_images.csv index 67e349c..1752119 100644 --- a/kg_utils/image_search_kg/openshift_images.csv +++ b/kg_utils/image_search_kg/openshift_images.csv @@ -2,7 +2,7 @@ openshift_images,container_name,OS,lang,lib,app,app_server,plugin,runlib,runtime openshift_images,ansible,426,,,5,,,,,https://quay.io/repository/cloudctl/ansible,App openshift_images,asterisk,426,,,14,,,,,https://quay.io/repository/citybaseinc/asterisk,App openshift_images,db2,426,,,43,,,,,https://quay.io/repository/quarkusqeteam/db2,App -openshift_images,drupal,426,,,45,,,,,https://quay.io/repository/swsmirror/drupal,App +openshift_images,drupal,426,,,45,,,,,https://quay.io/repository/official-images/drupal,App openshift_images,elastic,426,,,47,,,,,https://quay.io/repository/kmamgain/elastic,App openshift_images,genymotion,426,,,54,,,,,https://quay.io/repository/alaska/genymotion,App openshift_images,hadoop,426,,,57,,,,,https://quay.io/repository/iguazio/hadoop,App @@ -55,16 +55,13 @@ openshift_images,dart,421,,,,,,,,https://quay.io/repository/biocontainers/dart,O openshift_images,centos,427,,,,,,,,https://quay.io/repository/centos/centos,OS openshift_images,debian,429,,,,,,,,https://quay.io/repository/official-images/debian,OS openshift_images,opensuse,431,,,,,,,,https://quay.io/repository/wstein/opensuse,OS -openshift_images,ubuntu,436,,,,,,,,https://quay.io/repository/tamr/ubuntu,OS +openshift_images,ubuntu,436,,,,,,,,https://quay.io/repository/libpod/ubuntu,OS openshift_images,freebsd,447,,,,,,,,https://quay.io/repository/uchida/freebsd,OS openshift_images,windows,450,,,,,,,,https://quay.io/repository/mhallin/windows,OS openshift_images,fedora,453,,,,,,,,https://quay.io/repository/fedora/fedora,OS openshift_images,ado,426,,,,,,488,,https://quay.io/repository/scottlezberg/ado,Runlib -openshift_images,wildfly,426,,,,,,493,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/wildfly,Runlib +openshift_images,wildfly,426,,,,,,493,,https://quay.io/repository/wildfly/wildfly,Runlib openshift_images,flash,426,,,,,,,504,https://quay.io/repository/biocontainers/flash,Runtime -openshift_images,database,426,,,,,,,,https://quay.io/repository/deisci/database,Technology -openshift_images,webtop,426,,,,,,,,https://quay.io/repository/linuxserver.io/webtop,Technology -openshift_images,utility,426,,,,,,,,https://quay.io/repository/theiagen/utility,Technology openshift_images,windows,580,,,,,,,,https://quay.io/repository/mhallin/windows,OS openshift_images,java,426,584,,,,,,,https://quay.io/repository/tamr/java,Lang openshift_images,perl,426,585,,,,,,,https://quay.io/repository/biocontainers/perl,Lang @@ -77,7 +74,6 @@ openshift_images,snyk,426,,,613,,,,,https://quay.io/repository/exd_infra_plts_ci openshift_images,akka,426,,,614,,,,,https://quay.io/repository/j0zi/akka,App openshift_images,varnish,426,,,,615,,,,https://quay.io/repository/api-platform/varnish,App_Server openshift_images,datadog,426,,,,,,,616,https://quay.io/repository/blondie/datadog,Runtime -openshift_images,api,426,,,,,,,,https://quay.io/repository/infrabox/api,Technology openshift_images,hazelcast,426,,,,,,,618,https://quay.io/repository/hazelcast_cloud/hazelcast,Runtime openshift_images,infinispan,426,,,619,,,,,https://quay.io/repository/operatorhubio/infinispan,App openshift_images,nuxeo,426,,,,,,,620,https://quay.io/repository/swsmirror/nuxeo,Runtime diff --git a/kg_utils/image_search_kg/operator_images.csv b/kg_utils/image_search_kg/operator_images.csv index 438b664..b30565d 100644 --- a/kg_utils/image_search_kg/operator_images.csv +++ b/kg_utils/image_search_kg/operator_images.csv @@ -1,6 +1,5 @@ -operator_images,container_name,OS,lang,lib,app,app_server,plugin,runlib,runtime,Operator_Correspondant_Image_Url,Operator_Repository +operator_images,container_name,OS,lang,lib,app,app_server,plugin,runlib,runtime,Operator_Correspondent_Image_Url,Operator_Repository operator_images,Strimzi,426,,,9,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator -operator_images,Eclipse Che,426,,,46,,,,,"[""''quay.io/eclipse/che-operator''"", ""''quay.io/che-incubator/configbump''"", ""''quay.io/che-incubator/header-rewrite-proxy''"", ""''quay.io/devfile/devworkspace-controller''"", ""''quay.io/eclipse/che--centos--postgresql-13-centos7''"", ""''quay.io/eclipse/che--centos--postgresql-96-centos7''"", ""''quay.io/eclipse/che--traefik''"", ""''quay.io/eclipse/che-backup-server-rest''"", ""''quay.io/eclipse/che-dashboard''"", ""''quay.io/eclipse/che-devfile-registry''"", ""''quay.io/eclipse/che-jwtproxy''"", ""''quay.io/eclipse/che-keycloak''"", ""''quay.io/eclipse/che-plugin-artifacts-broker''"", ""''quay.io/eclipse/che-plugin-metadata-broker''"", ""''quay.io/eclipse/che-plugin-registry''"", ""''quay.io/eclipse/che-server''"", ""''quay.io/eclipse/che-tls-secret-creator''"", ""''quay.io/openshift/origin-kube-rbac-proxy''"", ""''quay.io/openshift/origin-oauth-proxy''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/windupeng/mta-vscode-extension''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-theia''"", ""''quay.io/eclipse/che-machine-exec''"", ""''quay.io/eclipse/che-theia-endpoint-runtime-binary''"", ""''index.docker.io/ksmster/che-editor-jupyter''"", ""''index.docker.io/dirigiblelabs/dirigible-openshift''"", ""''quay.io/che-incubator/che-idea''"", ""''quay.io/che-incubator/che-pycharm''"", ""''index.docker.io/wsskeleton/eclipse-broadway''"", ""''index.docker.io/codercom/code-server''"", ""''quay.io/eclipse/che-buildah-base''"", ""''quay.io/eclipse/che-sidecar-workspace-data-sync''"", ""''quay.io/eclipse/che-buildkit-base''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mysql-57-centos7''"", ""''quay.io/eclipse/che-cpp-rhel7''"", ""''quay.io/eclipse/che-dotnet-2.2''"", ""''quay.io/eclipse/che-dotnet-3.1''"", ""''quay.io/eclipse/che-golang-1.17''"", ""''quay.io/eclipse/che-java11-gradle''"", ""''quay.io/eclipse/che-java11-maven''"", ""''quay.io/eclipse/che-java8-maven''"", ""''quay.io/eclipse/che-nodejs10-community''"", ""''quay.io/eclipse/che-nodejs10-ubi''"", ""''quay.io/eclipse/che-nodejs12-community''"", ""''quay.io/eclipse/che-nodejs8-centos''"", ""''quay.io/eclipse/che-php-7''"", ""''quay.io/eclipse/che-python-3.8''"", ""''quay.io/eclipse/che-quarkus''"", ""''quay.io/eclipse/che-rust-1.39''""]",https://github.com/eclipse-che/che-operator operator_images,Eclipse Ditto,426,,,46,,,,,,https://github.com/ctron/ditto-operator operator_images,Eclipse Hawkbit,426,,,46,,,,,,https://github.com/ctron/hawkbit-operator operator_images,IoT simulator,426,,,46,,,,,,https://github.com/ctron/iot-simulator-operator @@ -15,9 +14,9 @@ operator_images,IBM Spectrum Scale CSI Plugin Operator,426,,,74,,,,,"[""''quay.i operator_images,Kong Operator,426,,,88,,,,,,https://github.com/kong/kong-operator operator_images,Jenkins Operator,426,,,90,,,,,,https://github.com/jenkinsci/kubernetes-operator operator_images,Prometheus Exporter Operator,426,,,98,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator -operator_images,MongoDB Enterprise Operator,426,,,116,,,,,"[""''quay.io/mongodb/mongodb-enterprise-operator-ubi:1.16.2''""]",https://github.com/mongodb/mongodb-enterprise-kubernetes +operator_images,MongoDB Enterprise Operator,426,,,116,,,,,"[""''quay.io/mongodb/mongodb-enterprise-operator-ubi:1.16.3''""]",https://github.com/mongodb/mongodb-enterprise-kubernetes operator_images,MongoDB Operator,426,,,116,,,,,"[""''quay.io/opstree/mongodb-operator:v0.3.0''""]",https://github.com/ot-container-kit/mongodb-operator -operator_images,MongoDB Atlas Operator,426,,,116,,,,,, +operator_images,MongoDB Atlas Operator,426,,,116,,,,,"[""''quay.io/mongodb/mongodb-atlas-kubernetes-operator:1.1.0''""]", operator_images,Percona Distribution for MongoDB Operator,426,,,116,,,,,,https://github.com/percona/percona-server-mongodb-operator operator_images,Nuxeo Operator,426,,,116,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator operator_images,GrdsCloud MySQL for Kubernetes,426,,,122,,,,,,https://github.com/GrdsCloud @@ -28,14 +27,14 @@ operator_images,Postgresql Operator,426,,,157,,,,,"[""''quay.io/deekshah86/postg operator_images,Percona Operator for PostgreSQL,426,,,157,,,,,,https://github.com/percona/percona-postgresql-operator operator_images,PostgreSQL Operator by Dev4Ddevs.com,426,,,157,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator operator_images,Crunchy Postgres for Kubernetes,426,,,157,,,,,,https://github.com/CrunchyData/postgres-operator -operator_images,EDB Postgres for Kubernetes,426,,,157,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]", +operator_images,EDB Postgres for Kubernetes,426,,,157,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]",https://www.enterprisedb.com/docs/postgres_for_kubernetes/latest/ operator_images,Postgres-Operator,426,,,157,,,,,,https://github.com/zalando/postgres-operator operator_images,Ext Postgres Operator,426,,,157,,,,,,https://github.com/movetokube/postgres-operator operator_images,Nuxeo Operator,426,,,157,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator operator_images,Prometheus Exporter Operator,426,,,157,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator operator_images,Robin Cloud Native Storage,426,,,157,,,,,, operator_images,Redis Operator,426,,,168,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator -operator_images,Redis Enterprise,426,,,168,,,,,, +operator_images,Redis Enterprise,426,,,168,,,,,,https://github.com/RedisLabs/redis-enterprise-k8s-docs operator_images,Prometheus Exporter Operator,426,,,168,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator operator_images,Splunk Operator,426,,,188,,,,,, operator_images,Encrypted Images Key Syncer Helm Operator,426,,,209,,,,,"[""''docker.io/lumjjb/enc-key-sync-operator:v0.0.1''""]",https://github.com/IBM/k8s-enc-image-operator @@ -57,11 +56,11 @@ operator_images,Knative Operator,426,303,,,,,,,,https://github.com/knative/opera operator_images,Redis Operator,426,303,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator operator_images,Rook-Ceph,426,303,,,,,,,,https://github.com/rook/rook operator_images,Argo CD,426,303,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator -operator_images,Grafana Operator,426,303,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator +operator_images,Grafana Operator,426,303,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator operator_images,Starboard Operator,426,303,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard operator_images,TiDB Operator,426,303,,,,,,,,https://github.com/pingcap/tidb-operator operator_images,Altinity Operator for ClickHouse,426,303,,,,,,,,https://github.com/altinity/clickhouse-operator -operator_images,Flux,426,303,,,,,,,, +operator_images,Flux,426,303,,,,,,,,https://fluxcd.io/docs/ operator_images,Percona Distribution for MySQL Operator,426,303,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator operator_images,RocketMQ Operator,426,303,,,,,,,,https://github.com/apache/rocketmq-operator operator_images,StorageOS,426,303,,,,,,,,https://github.com/storageos/operator @@ -77,11 +76,11 @@ operator_images,Knative Operator,426,304,,,,,,,,https://github.com/knative/opera operator_images,Redis Operator,426,304,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator operator_images,Rook-Ceph,426,304,,,,,,,,https://github.com/rook/rook operator_images,Argo CD,426,304,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator -operator_images,Grafana Operator,426,304,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator +operator_images,Grafana Operator,426,304,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator operator_images,Starboard Operator,426,304,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard operator_images,TiDB Operator,426,304,,,,,,,,https://github.com/pingcap/tidb-operator operator_images,Altinity Operator for ClickHouse,426,304,,,,,,,,https://github.com/altinity/clickhouse-operator -operator_images,Flux,426,304,,,,,,,, +operator_images,Flux,426,304,,,,,,,,https://fluxcd.io/docs/ operator_images,Percona Distribution for MySQL Operator,426,304,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator operator_images,RocketMQ Operator,426,304,,,,,,,,https://github.com/apache/rocketmq-operator operator_images,StorageOS,426,304,,,,,,,,https://github.com/storageos/operator @@ -97,11 +96,11 @@ operator_images,Knative Operator,426,305,,,,,,,,https://github.com/knative/opera operator_images,Redis Operator,426,305,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator operator_images,Rook-Ceph,426,305,,,,,,,,https://github.com/rook/rook operator_images,Argo CD,426,305,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator -operator_images,Grafana Operator,426,305,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator +operator_images,Grafana Operator,426,305,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator operator_images,Starboard Operator,426,305,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard operator_images,TiDB Operator,426,305,,,,,,,,https://github.com/pingcap/tidb-operator operator_images,Altinity Operator for ClickHouse,426,305,,,,,,,,https://github.com/altinity/clickhouse-operator -operator_images,Flux,426,305,,,,,,,, +operator_images,Flux,426,305,,,,,,,,https://fluxcd.io/docs/ operator_images,Percona Distribution for MySQL Operator,426,305,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator operator_images,RocketMQ Operator,426,305,,,,,,,,https://github.com/apache/rocketmq-operator operator_images,StorageOS,426,305,,,,,,,,https://github.com/storageos/operator @@ -117,7 +116,6 @@ operator_images,MongoDB Operator,426,323,,,,,,,"[""''quay.io/opstree/mongodb-ope operator_images,silicom-sts-operator,426,323,,,,,,,"[""''quay.io/silicom/sts-operator:v0.0.1''""]",github.com/silicomdk/sts-operator operator_images,Spark Operator,426,323,,,,,,,,https://github.com/GoogleCloudPlatform/spark-on-k8s-operator operator_images,WildFly,426,331,,,,,,,"[""''quay.io/wildfly/wildfly-operator:0.5.3''""]",https://github.com/wildfly/wildfly-operator -operator_images,Eclipse Che,426,331,,,,,,,"[""''quay.io/eclipse/che-operator''"", ""''quay.io/che-incubator/configbump''"", ""''quay.io/che-incubator/header-rewrite-proxy''"", ""''quay.io/devfile/devworkspace-controller''"", ""''quay.io/eclipse/che--centos--postgresql-13-centos7''"", ""''quay.io/eclipse/che--centos--postgresql-96-centos7''"", ""''quay.io/eclipse/che--traefik''"", ""''quay.io/eclipse/che-backup-server-rest''"", ""''quay.io/eclipse/che-dashboard''"", ""''quay.io/eclipse/che-devfile-registry''"", ""''quay.io/eclipse/che-jwtproxy''"", ""''quay.io/eclipse/che-keycloak''"", ""''quay.io/eclipse/che-plugin-artifacts-broker''"", ""''quay.io/eclipse/che-plugin-metadata-broker''"", ""''quay.io/eclipse/che-plugin-registry''"", ""''quay.io/eclipse/che-server''"", ""''quay.io/eclipse/che-tls-secret-creator''"", ""''quay.io/openshift/origin-kube-rbac-proxy''"", ""''quay.io/openshift/origin-oauth-proxy''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/windupeng/mta-vscode-extension''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-theia''"", ""''quay.io/eclipse/che-machine-exec''"", ""''quay.io/eclipse/che-theia-endpoint-runtime-binary''"", ""''index.docker.io/ksmster/che-editor-jupyter''"", ""''index.docker.io/dirigiblelabs/dirigible-openshift''"", ""''quay.io/che-incubator/che-idea''"", ""''quay.io/che-incubator/che-pycharm''"", ""''index.docker.io/wsskeleton/eclipse-broadway''"", ""''index.docker.io/codercom/code-server''"", ""''quay.io/eclipse/che-buildah-base''"", ""''quay.io/eclipse/che-sidecar-workspace-data-sync''"", ""''quay.io/eclipse/che-buildkit-base''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mysql-57-centos7''"", ""''quay.io/eclipse/che-cpp-rhel7''"", ""''quay.io/eclipse/che-dotnet-2.2''"", ""''quay.io/eclipse/che-dotnet-3.1''"", ""''quay.io/eclipse/che-golang-1.17''"", ""''quay.io/eclipse/che-java11-gradle''"", ""''quay.io/eclipse/che-java11-maven''"", ""''quay.io/eclipse/che-java8-maven''"", ""''quay.io/eclipse/che-nodejs10-community''"", ""''quay.io/eclipse/che-nodejs10-ubi''"", ""''quay.io/eclipse/che-nodejs12-community''"", ""''quay.io/eclipse/che-nodejs8-centos''"", ""''quay.io/eclipse/che-php-7''"", ""''quay.io/eclipse/che-python-3.8''"", ""''quay.io/eclipse/che-quarkus''"", ""''quay.io/eclipse/che-rust-1.39''""]",https://github.com/eclipse-che/che-operator operator_images,AtlasMap Operator,426,331,,,,,,,"[""''quay.io/atlasmap/atlasmap-operator:0.4.1''""]",https://github.com/atlasmap/atlasmap-operator operator_images,Appsody Operator,426,331,,,,,,,,https://github.com/appsody/appsody-operator operator_images,Cryostat Operator,426,331,,,,,,,"[""''quay.io/cryostat/cryostat-operator:2.1.1''""]",github.com/cryostatio/cryostat-operator @@ -150,7 +148,7 @@ operator_images,Elasticsearch (ECK) Operator,426,355,,,,,,,,https://github.com/e operator_images,Knative Operator,426,355,,,,,,,,https://github.com/knative/operator operator_images,Redis Operator,426,355,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator operator_images,Rook-Ceph,426,355,,,,,,,,https://github.com/rook/rook -operator_images,Grafana Operator,426,355,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator +operator_images,Grafana Operator,426,355,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator operator_images,Starboard Operator,426,355,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard operator_images,TiDB Operator,426,355,,,,,,,,https://github.com/pingcap/tidb-operator operator_images,RocketMQ Operator,426,355,,,,,,,,https://github.com/apache/rocketmq-operator @@ -160,7 +158,7 @@ operator_images,Postgres-Operator,426,355,,,,,,,,https://github.com/zalando/post operator_images,AWS S3 Operator,426,355,,,,,,,"[""''quay.io/screeley44/aws-s3-provisioner:v1.0.0''""]",https://github.com/yard-turkey/aws-s3-provisioner operator_images,Azure Service Operator,426,355,,,,,,,,https://github.com/Azure/azure-service-operator operator_images,ArangoDB,426,355,,,,,,,,https://github.com/arangodb/kube-arangodb -operator_images,Redis Enterprise,426,355,,,,,,,, +operator_images,Redis Enterprise,426,355,,,,,,,,https://github.com/RedisLabs/redis-enterprise-k8s-docs operator_images,Apicurio Registry Operator,426,355,,,,,,,"[""''quay.io/apicurio/apicurio-registry-operator:1.0.0''""]",https://github.com/Apicurio/apicurio-registry-operator operator_images,API Operator for Kubernetes,426,355,,,,,,,,https://github.com/wso2/k8s-api-operator operator_images,GitLab,426,360,,,,,,,,https://gitlab.com/gitlab-org/cloud-native/gitlab-operator @@ -195,7 +193,7 @@ operator_images,WildFly,426,,,,,,493,,"[""''quay.io/wildfly/wildfly-operator:0.5 operator_images,Knative Operator,426,,,,,,,497,,https://github.com/knative/operator operator_images,Submariner,426,,,,,,,497,"[""''quay.io/submariner/submariner-operator:0.11.0''""]",https://github.com/submariner-io/submariner-operator operator_images,Kong Operator,426,,,,,,,497,,https://github.com/kong/kong-operator -operator_images,Traefikee Operator,426,,,,,,,497,, +operator_images,Traefikee Operator,426,,,,,,,497,,https://docs.containo.us operator_images,Upbound Universal Crossplane (UXP),426,,,,,,,497,,https://github.com/upbound/universal-crossplane operator_images,Varnish Operator,426,,,,,,,497,,https://github.com/IBM/varnish-operator operator_images,BeeGFS CSI Driver,426,,,,,,,497,,https://github.com/netapp/beegfs-csi-driver @@ -209,61 +207,18 @@ operator_images,NetObserv Operator,426,,,,,,,497,"[""''quay.io/netobserv/network operator_images,NeuVector Operator,426,,,,,,,497,,https://github.com/neuvector/neuvector-operator operator_images,Network Service Mesh Operator,426,,,,,,,497,"[""''quay.io/acmenezes/nsm-operator:v0.0.1''""]",https://github.com/acmenezes/nsm-operator operator_images,Prisma Cloud Compute Operator,426,,,,,,,497,"[""''quay.io/prismacloud/pcc-operator''""]",https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator -operator_images,Routernetes,426,,,,,,,497,"[""''quay.io/routernetes/routernetes-operator:0.0.4''""]",https://github.com/routernetes/routernetes-operator +operator_images,Routernetes,426,,,,,,,497,"[""''quay.io/routernetes/routernetes-operator:0.0.5''""]",https://github.com/routernetes/routernetes-operator operator_images,skydive-operator,426,,,,,,,497,"[""''docker.io/skydive/skydive-operator:0.0.50''""]",https://github.com/skydive-project/skydive-golang-operator operator_images,Tf Operator,426,,,,,,,497,"[""''docker.io/tungstenfabric/tf-operator:latest''""]",https://github.com/tungstenfabric/tf-operator operator_images,Nexus Operator,426,,,,,,,503,"[""''quay.io/m88i/nexus-operator:0.6.0''""]",https://github.com/m88i/nexus-operator operator_images,Anchore Engine Operator,426,,,,,,,503,"[""''docker.io/anchore/engine-operator:v0.1.3''""]",https://github.com/anchore/engine-operator operator_images,Carbonetes Operator,426,,,,,,,503,"[""''docker.io/carbonetes/operator:1.0.4''""]",https://github.com/carbonetes/carbonetes-analyzer operator_images,Prisma Cloud Compute Operator,426,,,,,,,503,"[""''quay.io/prismacloud/pcc-operator''""]",https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator -operator_images,Multi-Cluster Application Dispatcher,426,,,,,,,,, -operator_images,TiDB Operator,426,,,,,,,,,https://github.com/pingcap/tidb-operator -operator_images,Mariadb Operator,426,,,,,,,,"[""''quay.io/manojdhanorkar/mariadb-operator:v0.0.4''""]",https://github.com/abalki001/mariadb-operator -operator_images,PlanetScale Operator for Vitess,426,,,,,,,,, -operator_images,PostgreSQL Operator by Dev4Ddevs.com,426,,,,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator -operator_images,VerticaDB Operator,426,,,,,,,,"[""''docker.io/vertica/verticadb-operator:1.6.0''""]",https://github.com/vertica/vertica-kubernetes -operator_images,Elasticsearch (ECK) Operator,426,,,,,,,,,https://github.com/elastic/cloud-on-k8s -operator_images,Crunchy Postgres for Kubernetes,426,,,,,,,,,https://github.com/CrunchyData/postgres-operator -operator_images,Redis Operator,426,,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator -operator_images,Altinity Operator for ClickHouse,426,,,,,,,,,https://github.com/altinity/clickhouse-operator -operator_images,Percona Distribution for MySQL Operator,426,,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator -operator_images,Postgres-Operator,426,,,,,,,,,https://github.com/zalando/postgres-operator -operator_images,Couchbase Operator,426,,,,,,,,"[""''registry.hub.docker.com/couchbase/operator:2.3.0''""]", -operator_images,Redis Enterprise,426,,,,,,,,, -operator_images,EDB Postgres for Kubernetes,426,,,,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]", -operator_images,etcd,426,,,,,,,,"[""''quay.io/coreos/etcd-operator''""]",https://github.com/coreos/etcd-operator -operator_images,Percona Distribution for MongoDB Operator,426,,,,,,,,,https://github.com/percona/percona-server-mongodb-operator -operator_images,Upbound Universal Crossplane (UXP),426,,,,,,,,,https://github.com/upbound/universal-crossplane -operator_images,druid-operator,426,,,,,,,,"[""''docker.io/druidio/druid-operator:0.0.9''""]",https://github.com/druid-io/druid-operator -operator_images,Hazelcast Platform Operator,426,,,,,,,,"[""''docker.io/hazelcast/hazelcast-platform-operator:5.3''""]", -operator_images,Infinispan Operator,426,,,,,,,,"[""''quay.io/infinispan/operator:2.2.4.Final''""]",https://github.com/infinispan/infinispan-operator operator_images,Crunchy Postgres for Kubernetes,426,532,,,,,,,,https://github.com/CrunchyData/postgres-operator operator_images,TiDB Operator,426,532,,,,,,,,https://github.com/pingcap/tidb-operator -operator_images,EDB Postgres for Kubernetes,426,532,,,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]", +operator_images,EDB Postgres for Kubernetes,426,532,,,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]",https://www.enterprisedb.com/docs/postgres_for_kubernetes/latest/ operator_images,GrdsCloud MySQL for Kubernetes,426,532,,,,,,,,https://github.com/GrdsCloud operator_images,Percona Operator for PostgreSQL,426,532,,,,,,,,https://github.com/percona/percona-postgresql-operator -operator_images,Open Liberty Operator,426,,,,,,,,,https://github.com/OpenLiberty/open-liberty-operator -operator_images,IBM Cloud Operator,426,,,,,,,,,https://github.com/IBM/cloud-operators -operator_images,Prisma Cloud Compute Operator,426,,,,,,,,"[""''quay.io/prismacloud/pcc-operator''""]",https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator -operator_images,IBM Cloud IAM Operator,426,,,,,,,,,https://github.com/IBM/ibmcloud-iam-operator -operator_images,Sosivio Autonomuous Cloud Native,426,,,,,,,,"[""''quay.io/sosivio/sosivio-operator:v1.4.1-78''"", ""''quay.io/sosivio/sosivio-operator''"", ""''quay.io/sosivio/kube-rbac-proxy''"", ""''quay.io/sosivio/nsq''"", ""''quay.io/sosivio/crud-manager''"", ""''quay.io/sosivio/sosivio-node-collector''"", ""''quay.io/sosivio/sosivio-node-pinger''"", ""''quay.io/sosivio/classifier''"", ""''quay.io/sosivio/communicator''"", ""''quay.io/sosivio/analyzer''"", ""''quay.io/sosivio/sosivio-dashboard''"", ""''quay.io/sosivio/authentication''"", ""''quay.io/sosivio/actuator''"", ""''quay.io/sosivio/sequence-recognition''"", ""''quay.io/sosivio/correlation-entities''"", ""''quay.io/sosivio/contract-testing''"", ""''quay.io/sosivio/sosiviodb''"", ""''quay.io/sosivio/draingo''"", ""''quay.io/sosivio/discovery-engine''"", ""''quay.io/sosivio/notifier''""]",https://github.com/Sosivio/operator -operator_images,Robin Cloud Native Storage,426,,,,,,,,, -operator_images,Banzai Cloud Kafka Operator,426,,,,,,,,,https://github.com/banzaicloud/kafka-operator/tree/master -operator_images,EDB Postgres for Kubernetes,426,,,,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]", -operator_images,Elasticsearch (ECK) Operator,426,,,,,,,,,https://github.com/elastic/cloud-on-k8s -operator_images,API Operator for Kubernetes,426,,,,,,,,,https://github.com/wso2/k8s-api-operator -operator_images,Chaosblade Operator,426,,,,,,,,,https://github.com/chaosblade-io/chaosblade-operator -operator_images,clever-operator,426,,,,,,,,"[""''docker.io/clevercloud/clever-operator:e7cfe6efc4c4da80c722416fe1de373b789612f6''""]",https://github.com/CleverCloud/clever-operator -operator_images,IBM COS Bucket Operator,426,,,,,,,,,https://github.com/IBM/cos-bucket-operator -operator_images,Event Streams Topic,426,,,,,,,,,https://github.com/IBM/event-streams-topic -operator_images,Knative Operator,426,,,,,,,,,https://github.com/knative/operator -operator_images,Azure Service Operator,426,,,,,,,,,https://github.com/Azure/azure-service-operator -operator_images,Upbound Universal Crossplane (UXP),426,,,,,,,,,https://github.com/upbound/universal-crossplane -operator_images,Composable,426,,,,,,,,,https://github.com/IBM/composable -operator_images,Elasticsearch Index Operator,426,,,,,,,,,https://github.com/IBM/esindex-operator -operator_images,Kubefed Operator,426,,,,,,,,"[""''quay.io/openshift/kubefed-operator:v0.1.0-rc3''""]",https://github.com/openshift/kubefed-operator -operator_images,GrdsCloud MySQL for Kubernetes,426,,,,,,,,,https://github.com/GrdsCloud -operator_images,AtlasMap Operator,426,,,,,,,,"[""''quay.io/atlasmap/atlasmap-operator:0.4.1''""]",https://github.com/atlasmap/atlasmap-operator operator_images,Alvearie Imaging Ingestion Operator,426,582,,,,,,,,https://github.com/Alvearie/imaging-ingestion operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,582,,,,,,,,https://github.com/k8ssandra/cass-operator operator_images,Qserv operator,426,582,,,,,,,,https://github.com/lsst/qserv-operator @@ -276,11 +231,11 @@ operator_images,Knative Operator,426,582,,,,,,,,https://github.com/knative/opera operator_images,Redis Operator,426,582,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator operator_images,Rook-Ceph,426,582,,,,,,,,https://github.com/rook/rook operator_images,Argo CD,426,582,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator -operator_images,Grafana Operator,426,582,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator +operator_images,Grafana Operator,426,582,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator operator_images,Starboard Operator,426,582,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard operator_images,TiDB Operator,426,582,,,,,,,,https://github.com/pingcap/tidb-operator operator_images,Altinity Operator for ClickHouse,426,582,,,,,,,,https://github.com/altinity/clickhouse-operator -operator_images,Flux,426,582,,,,,,,, +operator_images,Flux,426,582,,,,,,,,https://fluxcd.io/docs/ operator_images,Percona Distribution for MySQL Operator,426,582,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator operator_images,RocketMQ Operator,426,582,,,,,,,,https://github.com/apache/rocketmq-operator operator_images,StorageOS,426,582,,,,,,,,https://github.com/storageos/operator @@ -296,16 +251,15 @@ operator_images,Knative Operator,426,583,,,,,,,,https://github.com/knative/opera operator_images,Redis Operator,426,583,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator operator_images,Rook-Ceph,426,583,,,,,,,,https://github.com/rook/rook operator_images,Argo CD,426,583,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator -operator_images,Grafana Operator,426,583,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator +operator_images,Grafana Operator,426,583,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator operator_images,Starboard Operator,426,583,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard operator_images,TiDB Operator,426,583,,,,,,,,https://github.com/pingcap/tidb-operator operator_images,Altinity Operator for ClickHouse,426,583,,,,,,,,https://github.com/altinity/clickhouse-operator -operator_images,Flux,426,583,,,,,,,, +operator_images,Flux,426,583,,,,,,,,https://fluxcd.io/docs/ operator_images,Percona Distribution for MySQL Operator,426,583,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator operator_images,RocketMQ Operator,426,583,,,,,,,,https://github.com/apache/rocketmq-operator operator_images,StorageOS,426,583,,,,,,,,https://github.com/storageos/operator operator_images,WildFly,426,584,,,,,,,"[""''quay.io/wildfly/wildfly-operator:0.5.3''""]",https://github.com/wildfly/wildfly-operator -operator_images,Eclipse Che,426,584,,,,,,,"[""''quay.io/eclipse/che-operator''"", ""''quay.io/che-incubator/configbump''"", ""''quay.io/che-incubator/header-rewrite-proxy''"", ""''quay.io/devfile/devworkspace-controller''"", ""''quay.io/eclipse/che--centos--postgresql-13-centos7''"", ""''quay.io/eclipse/che--centos--postgresql-96-centos7''"", ""''quay.io/eclipse/che--traefik''"", ""''quay.io/eclipse/che-backup-server-rest''"", ""''quay.io/eclipse/che-dashboard''"", ""''quay.io/eclipse/che-devfile-registry''"", ""''quay.io/eclipse/che-jwtproxy''"", ""''quay.io/eclipse/che-keycloak''"", ""''quay.io/eclipse/che-plugin-artifacts-broker''"", ""''quay.io/eclipse/che-plugin-metadata-broker''"", ""''quay.io/eclipse/che-plugin-registry''"", ""''quay.io/eclipse/che-server''"", ""''quay.io/eclipse/che-tls-secret-creator''"", ""''quay.io/openshift/origin-kube-rbac-proxy''"", ""''quay.io/openshift/origin-oauth-proxy''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/windupeng/mta-vscode-extension''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-theia''"", ""''quay.io/eclipse/che-machine-exec''"", ""''quay.io/eclipse/che-theia-endpoint-runtime-binary''"", ""''index.docker.io/ksmster/che-editor-jupyter''"", ""''index.docker.io/dirigiblelabs/dirigible-openshift''"", ""''quay.io/che-incubator/che-idea''"", ""''quay.io/che-incubator/che-pycharm''"", ""''index.docker.io/wsskeleton/eclipse-broadway''"", ""''index.docker.io/codercom/code-server''"", ""''quay.io/eclipse/che-buildah-base''"", ""''quay.io/eclipse/che-sidecar-workspace-data-sync''"", ""''quay.io/eclipse/che-buildkit-base''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mysql-57-centos7''"", ""''quay.io/eclipse/che-cpp-rhel7''"", ""''quay.io/eclipse/che-dotnet-2.2''"", ""''quay.io/eclipse/che-dotnet-3.1''"", ""''quay.io/eclipse/che-golang-1.17''"", ""''quay.io/eclipse/che-java11-gradle''"", ""''quay.io/eclipse/che-java11-maven''"", ""''quay.io/eclipse/che-java8-maven''"", ""''quay.io/eclipse/che-nodejs10-community''"", ""''quay.io/eclipse/che-nodejs10-ubi''"", ""''quay.io/eclipse/che-nodejs12-community''"", ""''quay.io/eclipse/che-nodejs8-centos''"", ""''quay.io/eclipse/che-php-7''"", ""''quay.io/eclipse/che-python-3.8''"", ""''quay.io/eclipse/che-quarkus''"", ""''quay.io/eclipse/che-rust-1.39''""]",https://github.com/eclipse-che/che-operator operator_images,AtlasMap Operator,426,584,,,,,,,"[""''quay.io/atlasmap/atlasmap-operator:0.4.1''""]",https://github.com/atlasmap/atlasmap-operator operator_images,Appsody Operator,426,584,,,,,,,,https://github.com/appsody/appsody-operator operator_images,Cryostat Operator,426,584,,,,,,,"[""''quay.io/cryostat/cryostat-operator:2.1.1''""]",github.com/cryostatio/cryostat-operator @@ -319,27 +273,10 @@ operator_images,Akka Cluster Operator,426,,,614,,,,,,https://github.com/lightben operator_images,Lightbend Console Operator,426,,,614,,,,,,https://github.com/lightbend/console-charts/tree/master/operator operator_images,Varnish Operator,426,,,,615,,,,,https://github.com/IBM/varnish-operator operator_images,Datadog Operator,426,,,,,,,616,,https://github.com/DataDog/datadog-operator -operator_images,API Operator for Kubernetes,426,,,,,,,,,https://github.com/wso2/k8s-api-operator -operator_images,WSO2 API Manager Operator for Kubernetes,426,,,,,,,,,https://github.com/wso2/k8s-wso2am-operator -operator_images,AWS Controllers for Kubernetes - Amazon API Gateway v2,426,,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,APIcast,426,,,,,,,,"[""''quay.io/3scale/apicast-operator:v0.4.0''""]",https://github.com/3scale/apicast-operator -operator_images,APIMatic Operator,426,,,,,,,,"[""''docker.io/apimaticio/apimatic-kubernetes-operator:v0.0.1''""]",https://github.com/apimatic/apimatic-kubernetes-operator -operator_images,Microcks Operator,426,,,,,,,,"[""''quay.io/microcks/microcks-ansible-operator:1.5.2''""]",https://github.com/microcks/microcks-ansible-operator -operator_images,Apicurio Registry Operator,426,,,,,,,,"[""''quay.io/apicurio/apicurio-registry-operator:1.0.0''""]",https://github.com/Apicurio/apicurio-registry-operator -operator_images,IoT simulator,426,,,,,,,,,https://github.com/ctron/iot-simulator-operator -operator_images,Kong Operator,426,,,,,,,,,https://github.com/kong/kong-operator -operator_images,Minio Operator,426,,,,,,,,"[""''quay.io/minio/operator''""]",https://github.com/minio/operator -operator_images,IBM COS Bucket Operator,426,,,,,,,,,https://github.com/IBM/cos-bucket-operator -operator_images,DataTrucker.IO,426,,,,,,,,"[""''docker.io/datatruckerio/datatrucker-operator:2.0.0''""]",hhttps://gitlab.com/datatruckerio/datatrucker-server.git -operator_images,IBM Cloud Operator,426,,,,,,,,,https://github.com/IBM/cloud-operators -operator_images,nfd-operator,426,,,,,,,,,https://github.com/kubernetes-sigs/node-feature-discovery-operator -operator_images,SAP BTP Service Operator,426,,,,,,,,,https://github.com/SAP/sap-btp-service-operator -operator_images,IBM Cloud IAM Operator,426,,,,,,,,,https://github.com/IBM/ibmcloud-iam-operator -operator_images,Hazelcast Platform Operator,426,,,,,,,618,"[""''docker.io/hazelcast/hazelcast-platform-operator:5.3''""]", +operator_images,Hazelcast Platform Operator,426,,,,,,,618,"[""''docker.io/hazelcast/hazelcast-platform-operator:5.3''""]",https://docs.hazelcast.com/operator/latest/ operator_images,Infinispan Operator,426,,,619,,,,,"[""''quay.io/infinispan/operator:2.2.4.Final''""]",https://github.com/infinispan/infinispan-operator operator_images,Nuxeo Operator,426,,,,,,,620,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator operator_images,ArangoDB,426,,,621,,,,,,https://github.com/arangodb/kube-arangodb -operator_images,Eclipse Che,426,,,622,,,,,"[""''quay.io/eclipse/che-operator''"", ""''quay.io/che-incubator/configbump''"", ""''quay.io/che-incubator/header-rewrite-proxy''"", ""''quay.io/devfile/devworkspace-controller''"", ""''quay.io/eclipse/che--centos--postgresql-13-centos7''"", ""''quay.io/eclipse/che--centos--postgresql-96-centos7''"", ""''quay.io/eclipse/che--traefik''"", ""''quay.io/eclipse/che-backup-server-rest''"", ""''quay.io/eclipse/che-dashboard''"", ""''quay.io/eclipse/che-devfile-registry''"", ""''quay.io/eclipse/che-jwtproxy''"", ""''quay.io/eclipse/che-keycloak''"", ""''quay.io/eclipse/che-plugin-artifacts-broker''"", ""''quay.io/eclipse/che-plugin-metadata-broker''"", ""''quay.io/eclipse/che-plugin-registry''"", ""''quay.io/eclipse/che-server''"", ""''quay.io/eclipse/che-tls-secret-creator''"", ""''quay.io/openshift/origin-kube-rbac-proxy''"", ""''quay.io/openshift/origin-oauth-proxy''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/windupeng/mta-vscode-extension''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-plugin-sidecar''"", ""''quay.io/eclipse/che-theia''"", ""''quay.io/eclipse/che-machine-exec''"", ""''quay.io/eclipse/che-theia-endpoint-runtime-binary''"", ""''index.docker.io/ksmster/che-editor-jupyter''"", ""''index.docker.io/dirigiblelabs/dirigible-openshift''"", ""''quay.io/che-incubator/che-idea''"", ""''quay.io/che-incubator/che-pycharm''"", ""''index.docker.io/wsskeleton/eclipse-broadway''"", ""''index.docker.io/codercom/code-server''"", ""''quay.io/eclipse/che-buildah-base''"", ""''quay.io/eclipse/che-sidecar-workspace-data-sync''"", ""''quay.io/eclipse/che-buildkit-base''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mongodb-36-centos7''"", ""''quay.io/eclipse/che--centos--mysql-57-centos7''"", ""''quay.io/eclipse/che-cpp-rhel7''"", ""''quay.io/eclipse/che-dotnet-2.2''"", ""''quay.io/eclipse/che-dotnet-3.1''"", ""''quay.io/eclipse/che-golang-1.17''"", ""''quay.io/eclipse/che-java11-gradle''"", ""''quay.io/eclipse/che-java11-maven''"", ""''quay.io/eclipse/che-java8-maven''"", ""''quay.io/eclipse/che-nodejs10-community''"", ""''quay.io/eclipse/che-nodejs10-ubi''"", ""''quay.io/eclipse/che-nodejs12-community''"", ""''quay.io/eclipse/che-nodejs8-centos''"", ""''quay.io/eclipse/che-php-7''"", ""''quay.io/eclipse/che-python-3.8''"", ""''quay.io/eclipse/che-quarkus''"", ""''quay.io/eclipse/che-rust-1.39''""]",https://github.com/eclipse-che/che-operator operator_images,AWS Controllers for Kubernetes - Amazon S3,426,,,623,,,,,,https://github.com/aws-controllers-k8s operator_images,Altinity Operator for ClickHouse,426,,,624,,,,,,https://github.com/altinity/clickhouse-operator operator_images,Minio Operator,426,,,625,,,,,"[""''quay.io/minio/operator''""]",https://github.com/minio/operator @@ -351,7 +288,7 @@ operator_images,Nuxeo Operator,426,,,626,,,,,"[""''docker.io/appzygy/nuxeo-opera operator_images,Prometheus Exporter Operator,426,,,626,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator operator_images,Percona Distribution for MySQL Operator,426,,,627,,,,,,https://github.com/percona/percona-xtradb-cluster-operator operator_images,Keycloak Operator,426,,,628,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak -operator_images,Grafana Operator,426,,,629,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator +operator_images,Grafana Operator,426,,,629,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator operator_images,Prometheus Exporter Operator,426,,,629,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator operator_images,Mattermost Operator,426,,,,,,,630,"[""''docker.io/mattermost/mattermost-operator:v0.5.0''""]",https://github.com/mattermost/mattermost-operator operator_images,synapse-helm,426,,,631,,,,,"[""''quay.io/mgoerens/synapse-helm:v0.0.11''""]",https://github.com/opdev/synapse-helm @@ -366,20 +303,20 @@ operator_images,QiskitPlayground,426,,,636,,,,,"[""''docker.io/qiskit/operator:0 operator_images,Ibm Quantum Operator,426,,,636,,,,,"[""''quay.io/application/husky_parul/ibm-quantum-operator''""]",https://github.com/redhat-et/ibm-quantum-operator operator_images,Azure Service Operator,426,,,637,,,,,,https://github.com/Azure/azure-service-operator operator_images,Strimzi,426,,,,,,,638,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator -operator_images,Sematext Operator,426,,,,,,,639,"[""''docker.io/sematext/sematext-operator:1.0.33''""]",https://github.com/sematext/sematext-operator +operator_images,Sematext Operator,426,,,,,,,639,"[""''docker.io/sematext/sematext-operator:1.0.46''""]",https://github.com/sematext/sematext-operator operator_images,Eclipse Hawkbit,426,,,640,,,,,,https://github.com/ctron/hawkbit-operator operator_images,Eclipse Ditto,426,,,641,,,,,,https://github.com/ctron/ditto-operator operator_images,Mariadb Operator,426,,,642,,,,,"[""''quay.io/manojdhanorkar/mariadb-operator:v0.0.4''""]",https://github.com/abalki001/mariadb-operator operator_images,Zadara Operator,426,,,643,,,,,,https://github.com/zadarastorage/zadara-operator operator_images,Istio,426,,,644,,,,,,https://github.com/banzaicloud/istio-operator/tree/release-1.1 -operator_images,Istio Workspace,426,,,644,,,,,"[""''quay.io/maistra/istio-workspace:v0.5.0''""]",https://github.com/maistra/istio-workspace +operator_images,Istio Workspace,426,,,644,,,,,"[""''quay.io/maistra/istio-workspace:v0.5.1''""]",https://github.com/maistra/istio-workspace operator_images,Kiali Operator,426,,,644,,,,,"[""''quay.io/kiali/kiali-operator:v1.53.0''""]",https://github.com/kiali/kiali operator_images,Vault Operator,426,,,645,,,,,,https://github.com/banzaicloud/bank-vaults/tree/master/operator operator_images,Vault Helm,426,,,645,,,,,"[""''quay.io/brejohns/vault-helm:0.0.2''""]",https://github.com/SDBrett/vault-helm operator_images,External Secrets Operator,426,,,645,,,,,,https://github.com/external-secrets/external-secrets-helm-operator operator_images,druid-operator,426,,,646,,,,,"[""''docker.io/druidio/druid-operator:0.0.9''""]",https://github.com/druid-io/druid-operator operator_images,etcd,426,,,647,,,,,"[""''quay.io/coreos/etcd-operator''""]",https://github.com/coreos/etcd-operator -operator_images,Traefikee Operator,426,,,,648,,,,, +operator_images,Traefikee Operator,426,,,,648,,,,,https://docs.containo.us operator_images,IBM Cloud Operator,426,,,649,,,,,,https://github.com/IBM/cloud-operators operator_images,IBM Cloud IAM Operator,426,,,649,,,,,,https://github.com/IBM/ibmcloud-iam-operator operator_images,Event Streams Topic,426,,,649,,,,,,https://github.com/IBM/event-streams-topic @@ -400,11 +337,11 @@ operator_images,Knative Operator,426,,,,,,,661,,https://github.com/knative/opera operator_images,Redis Operator,426,,,,,,,661,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator operator_images,Rook-Ceph,426,,,,,,,661,,https://github.com/rook/rook operator_images,Argo CD,426,,,,,,,661,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator -operator_images,Grafana Operator,426,,,,,,,661,"[""''quay.io/grafana-operator/grafana-operator:v4.4.1''""]",https://github.com/grafana-operator/grafana-operator +operator_images,Grafana Operator,426,,,,,,,661,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator operator_images,Starboard Operator,426,,,,,,,661,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard operator_images,TiDB Operator,426,,,,,,,661,,https://github.com/pingcap/tidb-operator operator_images,Altinity Operator for ClickHouse,426,,,,,,,661,,https://github.com/altinity/clickhouse-operator -operator_images,Flux,426,,,,,,,661,, +operator_images,Flux,426,,,,,,,661,,https://fluxcd.io/docs/ operator_images,Percona Distribution for MySQL Operator,426,,,,,,,661,,https://github.com/percona/percona-xtradb-cluster-operator operator_images,RocketMQ Operator,426,,,,,,,661,,https://github.com/apache/rocketmq-operator operator_images,StorageOS,426,,,,,,,661,,https://github.com/storageos/operator @@ -413,13 +350,13 @@ operator_images,Community Jaeger Operator,426,,,,,,,661,"[""''quay.io/jaegertrac operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,,,671,,,,,,https://github.com/k8ssandra/cass-operator operator_images,ks-releaser,426,,,677,,,,,,https://github.com/kubesphere-sigs/ks-releaser-operator operator_images,Argo CD,426,,,677,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator -operator_images,Flux,426,,,677,,,,,, +operator_images,Flux,426,,,677,,,,,,https://fluxcd.io/docs/ operator_images,Argo CD Operator (Helm),426,,,677,,,,,"[""''quay.io/disposab1e/argocd-operator-helm''""]",https://github.com/disposab1e/argocd-operator-helm.git operator_images,External Secrets Operator,426,,,677,,,,,,https://github.com/external-secrets/external-secrets-helm-operator operator_images,GitLab,426,,,677,,,,,,https://gitlab.com/gitlab-org/cloud-native/gitlab-operator operator_images,GitLab Runner,426,,,677,,,,,,https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator operator_images,Multicluster Subscription Operator,426,,,677,,,,,"[""''quay.io/open-cluster-management/multicluster-operators-subscription:2.3.0''""]",https://github.com/open-cluster-management/multicloud-operators-subscription -operator_images,Weave GitOps Terraform Controller,426,,,677,,,,,, +operator_images,Weave GitOps Terraform Controller,426,,,677,,,,,,https://weaveworks.github.io/tf-controller/ operator_images,GitLab,426,,,678,,,,,,https://gitlab.com/gitlab-org/cloud-native/gitlab-operator operator_images,GitLab Runner,426,,,678,,,,,,https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator operator_images,External Secrets Operator,426,,,678,,,,,,https://github.com/external-secrets/external-secrets-helm-operator @@ -431,7 +368,7 @@ operator_images,Postgresql Operator,426,,,686,,,,,"[""''quay.io/deekshah86/postg operator_images,Percona Operator for PostgreSQL,426,,,686,,,,,,https://github.com/percona/percona-postgresql-operator operator_images,PostgreSQL Operator by Dev4Ddevs.com,426,,,686,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator operator_images,Crunchy Postgres for Kubernetes,426,,,686,,,,,,https://github.com/CrunchyData/postgres-operator -operator_images,EDB Postgres for Kubernetes,426,,,686,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]", +operator_images,EDB Postgres for Kubernetes,426,,,686,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]",https://www.enterprisedb.com/docs/postgres_for_kubernetes/latest/ operator_images,Postgres-Operator,426,,,686,,,,,,https://github.com/zalando/postgres-operator operator_images,Ext Postgres Operator,426,,,686,,,,,,https://github.com/movetokube/postgres-operator operator_images,Nuxeo Operator,426,,,686,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator From 8f7ca1f49cd15020941f0c9aa200dc5b1f58d7ce Mon Sep 17 00:00:00 2001 From: lamwassi Date: Wed, 20 Jul 2022 09:36:49 -0400 Subject: [PATCH 22/30] updated README --- kg_utils/README.md | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/kg_utils/README.md b/kg_utils/README.md index acfdb4a..19cf77f 100644 --- a/kg_utils/README.md +++ b/kg_utils/README.md @@ -58,28 +58,24 @@ Allows users to search relevant or exact container images from DockerHub ,Quai. - Use [TCA_KG_Aumentation](https://github.ibm.com/tca-team/TCA_KG_Augmentation) repos to augmment new entities to the database by following the instructions from the README file. You can add a single entity or a batch of entities from a csv file to the entities table. - Make sure you have [docker](https://docs.docker.com/engine/install/) installed locally. - - git clone ```git@github.ibm.com:tca-team/tackle_image_search_apis.git``` - - - Move the newly augmented db the this path ```kb\{db_version}.db``` - - - The path "kb\{db_version}.db", where "db_version" is the latest TCA database version and contains all entities to search(see "entity_name" table) for images. + - The path "db\{db_version}.db", where "db_version" is the latest TCA database version and contains all entities to search(see "entity_name" table) for images. - In VSCODE, Open the folder in a container, which will install all dependencies needed to run the script. #### Input data to the search engine. - Data are loaded from the entities table from the database. you can load a single entity or all entities from the database. + Data are loaded from the entities table from the database. You may search a single entity or all entities from the database. Sample entities table - ![This is an image](https://github.ibm.com/tca-team/tackle_image_search_apis/blob/master/resources/entity_names.png) + ![This is an image](https://github.com/divsan93/tackle-container-advisor/blob/kb_expansion/images/entities.png) #### Running the script - ```python src/search_images.py -e -db kb\{db_version}.db``` This loads entity(ies) from the entity_name table and searches images across all catalogues. + ```python kg_utils/search_images.py -e -db db\{db_version}.db``` This loads entity(ies) from the entity_name table and searches images across all catalogues. ``` -python src/search_images.py -h +python kg_utils/search_images.py -h usage: Search container images from dockerhub , Quay.io , and Artifacthub.io @@ -97,7 +93,7 @@ Try $python -e -db or type $python src/se ``` -Results are saved into the following files: ```kb\images.json``` , ```kb\operator_images.csv``` ,```kb\openshift_images.csv``` ,and ```kb\docker_images.csv``` +Results are saved into the following files: ```kg_utils\image_search_kg\images.json``` , ```kg_utils\image_search_kg\operator_images.csv``` ,```kg_utils\image_search_kg\openshift_images.csv``` ,and ```kg_utils\image_search_kg\docker_images.csv``` From be064b8e8f6c1b88aafe82119f299d6b6bcdbb46 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Thu, 21 Jul 2022 16:06:43 -0400 Subject: [PATCH 23/30] Changed default OS to 576(Linux|*) --- kg_utils/search_utils/save_to_csv.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kg_utils/search_utils/save_to_csv.py b/kg_utils/search_utils/save_to_csv.py index 9c64465..6601484 100644 --- a/kg_utils/search_utils/save_to_csv.py +++ b/kg_utils/search_utils/save_to_csv.py @@ -159,7 +159,7 @@ def csv_columns( table_name:str ): dict: csv header. """ - columns = { table_name: "", "container_name":"", "OS": 426, "lang" : None, "lib": None, "app": None, "app_server": None,"plugin": None,"runlib": None,"runtime": None } + columns = { table_name: "", "container_name":"", "OS": 576, "lang" : None, "lib": None, "app": None, "app_server": None,"plugin": None,"runlib": None,"runtime": None } docker_col_extension = {"Docker_Url":"", "Notes": "", "CertOfImageAndPublisher": "" } @@ -220,7 +220,9 @@ def operator_images(): op_data["operator_images"] = "operator_images" op_data["container_name"] = operator["display_name"] + img_data_type = entity_type_mapper(op["type"] , str(op["entity_id"])) + if list(img_data_type.keys())[0] in list(op_data.keys()): op_data.update(img_data_type) row_data.append(op_data) From 2c18251f1161a2bee887babccff82ea6e5184c6f Mon Sep 17 00:00:00 2001 From: divsan93 Date: Wed, 20 Jul 2022 10:59:34 -0400 Subject: [PATCH 24/30] Adding test case for KG augmentation --- kg_utils/kg_aug.py | 77 +++++++++++++++++++++++++------------------ test/unit/test.csv | 2 ++ test/unit/test_aug.py | 28 ++++++++++++++++ 3 files changed, 75 insertions(+), 32 deletions(-) create mode 100644 test/unit/test.csv create mode 100644 test/unit/test_aug.py diff --git a/kg_utils/kg_aug.py b/kg_utils/kg_aug.py index b4e2158..2be8e16 100644 --- a/kg_utils/kg_aug.py +++ b/kg_utils/kg_aug.py @@ -251,10 +251,10 @@ def alter_case_format(table_name, userColVals): def insert_into_table(table_name, userColVals, cur): """ - set of validation checks (format, type, length etc.) before inserting into KB + Constructs the insert query for adding values into teh database args: table_name: table name - userColVals: + userColVals: column values to be inserted cur: cursor pointer to the KB database returns: dictionary of the data to be inserted into KB """ @@ -312,7 +312,7 @@ def generate_mentions_wiki(cur, my_entity_name): def enter_mentions_to_table(cur, gen_mentions, entity_id, entity_type_id): """ - add the newly generated mentions generated from + add the newly generated mentions generated from wikidata args: cur: cursor pointer to the KB database my_entity_name: new entity thats added to the KB @@ -327,24 +327,28 @@ def enter_mentions_to_table(cur, gen_mentions, entity_id, entity_type_id): print("Mention " + val[0] + " inserted to table..") -# main insert new entry function -def insert_to_kg(mode, batch_filename, cur): +# main function +def insert_to_kg(mode, batch_filename, cur, testExec): """ - set of validation checks (format, type, length etc.) before inserting into KB + Main function that gets the mode from the user and processes the inputs based on it args: - table_name: table name - userColVals: + mode: interactive or batch + batch_filename: CSV file for batch processing cur: cursor pointer to the KB database - returns: dictionary of the data to be inserted into KB + returns: none """ assert (mode == "batch" or mode == "interactive"), 'Mode is either batch or interactive' num_entries = 1 batch_data = [] + returnString = "" if mode == "batch": batch_data = get_input_batch(batch_filename) num_entries = len(batch_data) if num_entries == 0: - print("No entries to process") + if testExec: + returnString += "No entries to process" + else: + print("No entries to process") else: for i in range(0, num_entries): table_name = "" @@ -359,29 +363,38 @@ def insert_to_kg(mode, batch_filename, cur): alter_case_format(table_name, userColVals) add_to_table = check_if_duplicate(table_name, userColVals, cur) if add_to_table: - insert_into_table(table_name, userColVals, cur) - print("Entry " + str(i) + " inserted to table..") - if table_name == "entities": - my_entity_name = userColVals[0] - # autogenerate mentions.. - gen_mentions = generate_mentions_wiki(cur, my_entity_name) - # generate a entity mention with just upper case if not found in wiki. - if len(gen_mentions) == 0: - gen_mentions.append((my_entity_name.upper(), "others")) - if len(gen_mentions) > 0: - sqlquery = "SELECT id,entity_type_id FROM entities WHERE entity_name" + " = \"" + my_entity_name + "\"" - # print(sqlquery) - answer = cur.execute(sqlquery) - result = answer.fetchall()[0] - entity_id = str(result[0]) - entity_type_id = str(result[1]) - # print(entity_id,entity_type_id) - enter_mentions_to_table(cur, gen_mentions, entity_id, entity_type_id) + if testExec: + returnString += "Entry " + str(i) + " inserted to table.." + else: + insert_into_table(table_name, userColVals, cur) + print("Entry " + str(i) + " inserted to table..") + if table_name == "entities": + my_entity_name = userColVals[0] + # autogenerate mentions.. + gen_mentions = generate_mentions_wiki(cur, my_entity_name) + # generate a entity mention with just upper case if not found in wiki. + if len(gen_mentions) == 0: + gen_mentions.append((my_entity_name.upper(), "others")) + if len(gen_mentions) > 0: + sqlquery = "SELECT id,entity_type_id FROM entities WHERE entity_name" + " = \"" + my_entity_name + "\"" + # print(sqlquery) + answer = cur.execute(sqlquery) + result = answer.fetchall()[0] + entity_id = str(result[0]) + entity_type_id = str(result[1]) + # print(entity_id,entity_type_id) + enter_mentions_to_table(cur, gen_mentions, entity_id, entity_type_id) else: - print("Entry " + str(i) + " is a duplicate and skipped..") + if testExec: + returnString += "Entry " + str(i) + " is a duplicate and skipped.." + else: + print("Entry " + str(i) + " is a duplicate and skipped..") else: - print("Entry " + str(i) + " cannot be processed..") - + if testExec: + returnString += "Entry " + str(i) + " cannot be processed.." + else: + print("Entry " + str(i) + " cannot be processed..") + return returnString # edit entities table def remove_from_entities(table_name, cur, entities_to_remove): @@ -883,7 +896,7 @@ def main(): if del_file != "": delete_from_kg(del_file, cur, table_names) else: - insert_to_kg(mode, batch_filename, cur) + insert_to_kg(mode, batch_filename, cur, False) # commit changes and close connection conn.commit() diff --git a/test/unit/test.csv b/test/unit/test.csv new file mode 100644 index 0000000..3e953ce --- /dev/null +++ b/test/unit/test.csv @@ -0,0 +1,2 @@ +entities, comtran, 9,{''qid'': ''Q5013384'',''url'': ''https://www.wikidata.org/wiki/Q5013384''}, N, Y, Y, N +entities, comtran, 9,{''qid'': ''Q5013384'',''url'': ''https://www.wikidata.org/wiki/Q5013384''}, N, Y, Y, N, diff --git a/test/unit/test_aug.py b/test/unit/test_aug.py new file mode 100644 index 0000000..b626570 --- /dev/null +++ b/test/unit/test_aug.py @@ -0,0 +1,28 @@ +################################################################################ +# Copyright IBM Corporation 2021, 2022 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +################################################################################ + +import unittest +import sqlite3 +import os +from kg_utils import kg_aug + +class TestAug(unittest.TestCase): + def test_insert_to_kg(self): + conn = sqlite3.connect("./db/1.0.4.db") + cur = conn.cursor() + appL = kg_aug.insert_to_kg("batch", "./test/unit/test.csv", cur, True) + expected = "Entry 0 cannot be processed..Entry 1 cannot be processed.." + self.assertTrue(appL == expected) From 6647126cc53c10965431647e4c9b5fc7cbb39f21 Mon Sep 17 00:00:00 2001 From: divsan93 Date: Thu, 21 Jul 2022 14:16:03 -0400 Subject: [PATCH 25/30] Creating a requirements.txt in the root folder --- Dockerfile | 5 +++-- requirements.txt | 49 ++++++++++++++++++++++++++++++++++++++++++++++++ setup.sh | 6 +++--- 3 files changed, 55 insertions(+), 5 deletions(-) create mode 100644 requirements.txt diff --git a/Dockerfile b/Dockerfile index fb0e902..62f35f8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,13 +27,14 @@ COPY ./service /app/service COPY ./kg /app/kg COPY ./config /app/config COPY ./entity_standardizer /app/entity_standardizer +COPY ./requirements.txt /app/requirements.txt RUN python -m pip install --upgrade pip wheel build setuptools; \ pip install -r entity_standardizer/requirements.txt; \ cd entity_standardizer; python -m build; pip install dist/entity_standardizer_tca-1.0-py3-none-any.whl; cd ..; \ - pip install -r service/requirements.txt; \ + pip install -r /app/requirements.txt; \ python benchmarks/generate_data.py; \ python benchmarks/run_models.py; - + RUN chown -R 1001:0 ./ # Become a non-root user again diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..9811854 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,49 @@ +# App Dependencies +itsdangerous==2.0.1 +Flask==1.1.1 +Flask-API==1.1 +flask-restplus==0.13.0 +Werkzeug==0.16.1 +scikit-learn==1.1.1 #1.0.2 +joblib>= 1.0.0 #0.15.1 +scipy==1.8.0 +scikit-multilearn==0.2.0 +requests==2.28.1 #2.27.1 +packaging==21.0 +Jinja2==2.11.3 +MarkupSafe==2.0.1 +deepdiff==5.7.0 +#pycryptodome==3.10.1 + +# Runtime dependencies +podman==3.2.1 +docker==5.0.3 +Flask-Bootstrap==3.3.7.1 +Flask-Nav==0.6 +Flask-WTF==0.15.1 +python-dotenv==0.10.3 +xlrd==1.2.0 +pandas==1.4.3 +openpyxl==3.0.10 +xlutils==2.0.0 +bs4==0.0.1 +requests-html==0.10.0 +PyGithub==1.55 +networkx==2.6. +furl==2.1.3 +qwikidata==0.4.1 + +# Runtime +gunicorn==20.0.0 +waitress==2.1.1 +matplotlib==3.5.2 +honcho==1.0.1 + +# Testing +nose==1.3.7 +pinocchio==0.4.2 +coverage==4.5.4 +pylint>=2.9.4 + +backoff_utils==1.0.1 +scikit_learn>=1.0.2 diff --git a/setup.sh b/setup.sh index ceb5c6b..730ec25 100644 --- a/setup.sh +++ b/setup.sh @@ -44,7 +44,7 @@ fi echo "-----------------Dependency Checks PASSED------------------" ###################################################################### -## Install dependencies for +## Install dependencies for ###################################################################### echo "------------------Installing requirements--------------------" $pip install -r entity_standardizer/requirements.txt @@ -67,9 +67,9 @@ else cd .. fi -$pip install -r service/requirements.txt +pip3 install -r requirements.txt if [ $? -ne 0 ]; then - echo "**** ERROR: Failed to install service dependencies. Cannot continue." + echo "**** ERROR: Failed to install main dependencies. Cannot continue." exit 1 fi From 00bcecd1e9a55db60ba53bfb67e2977f052bde85 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Thu, 21 Jul 2022 16:31:16 -0400 Subject: [PATCH 26/30] latest --- db/1.0.3.sql | 128 +- db/1.0.4.sql | 26429 ++++++++-------- kg_utils/image_search_kg/docker_images.csv | 101 +- kg_utils/image_search_kg/images.json | 16044 ++++------ kg_utils/image_search_kg/openshift_images.csv | 182 +- kg_utils/image_search_kg/operator_images.csv | 665 +- kg_utils/input.csv | 7 +- kg_utils/kg_aug.py | 1 + kg_utils/kg_utils.py | 7 +- kg_utils/search_utils/load_entities.py | 23 +- requirements.txt | 7 +- setup.sh | 6 +- test/unit/test_search_image.py | 11 +- 13 files changed, 18566 insertions(+), 25045 deletions(-) diff --git a/db/1.0.3.sql b/db/1.0.3.sql index 13f6009..3a440c4 100644 --- a/db/1.0.3.sql +++ b/db/1.0.3.sql @@ -9913,7 +9913,6 @@ CREATE TABLE operator_images ( runtime integer, Operator_Correspondent_Image_URL text NOT NULL, Operator_Repository text, - Other_Operators text, FOREIGN KEY (OS) REFERENCES entities (id), FOREIGN KEY (lang) REFERENCES entities (id), FOREIGN KEY (lib) REFERENCES entities (id), @@ -9923,69 +9922,70 @@ CREATE TABLE operator_images ( FOREIGN KEY (runlib) REFERENCES entities (id), FOREIGN KEY (runtime) REFERENCES entities (id) ); -INSERT INTO operator_images VALUES(1,'Apache Spark Operator',426,331,NULL,280,NULL,NULL,NULL,NULL,'quay.io/radanalyticsio/spark-operator:1.0.2','https://github.com/radanalyticsio/spark-operator','[[Spark Operator, gcr.io/spark-operator/spark-operator:v2.4.0-v1beta1-latest, https://github.com/GoogleCloudPlatform/spark-on-k8s-operator]]'); -INSERT INTO operator_images VALUES(2,'Banzai Cloud Kafka Operator',426,323,NULL,9,NULL,NULL,NULL,NULL,'banzaicloud/kafka-operator:0.3.1','https://github.com/banzaicloud/kafka-operator/tree/master',''); -INSERT INTO operator_images VALUES(3,'Camel K Operator',426,323,NULL,378,NULL,NULL,NULL,NULL,'docker.io/apache/camel-k:1.3.0','https://github.com/apache/camel-k',''); -INSERT INTO operator_images VALUES(4,'GrdsCloud MySQL for Kubernetes',426,NULL,NULL,122,NULL,NULL,NULL,NULL,'grds/mysql-operator:1.0.0','https://github.com/GrdsCloud',''); -INSERT INTO operator_images VALUES(5,'Hive for Red Hat OpenShift',426,323,NULL,8,NULL,NULL,NULL,NULL,'quay.io/openshift-hive/hive:v1.0.17','https://github.com/openshift/hive',''); -INSERT INTO operator_images VALUES(6,'IBM Spectrum Scale CSI Plugin Operator',426,323,NULL,74,NULL,NULL,NULL,NULL,'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0','https://github.com/IBM/ibm-spectrum-scale-csi/',''); -INSERT INTO operator_images VALUES(7,'Jenkins Operator',426,323,NULL,90,NULL,NULL,NULL,NULL,'virtuslab/jenkins-operator:v0.3.0','https://github.com/jenkinsci/kubernetes-operator',''); -INSERT INTO operator_images VALUES(8,'Postgresql Operator',426,NULL,NULL,157,NULL,NULL,NULL,NULL,'quay.io/deekshah86/postgresql-operator','https://github.com/janepelladinesh/postgresql-operator','[[Crunchy PostgreSQL for Kubernetes, registry.developers.crunchydata.com/crunchydata/postgres-operator:centos8-4.7.0, https://github.com/CrunchyData/postgres-operator], [Postgres-Operator, registry.opensource.zalan.do/acid/postgres-operator:v1.3.0, https://github.com/zalando/postgres-operator], [PostgreSQL Operator by Dev4Ddevs.com, quay.io/dev4devs-com/postgresql-operator:0.1.1, https://github.com/dev4devs-com/postgresql-operator]]'); -INSERT INTO operator_images VALUES(9,'Redis Operator',426,323,NULL,168,NULL,NULL,NULL,NULL,'quay.io/opstree/redis-operator:v0.3.0','https://github.com/ot-container-kit/redis-operator',''); -INSERT INTO operator_images VALUES(10,'WildFly',426,323,NULL,493,NULL,NULL,NULL,NULL,'quay.io/wildfly/wildfly-operator:0.3.0','https://github.com/wildfly/wildfly-operator',''); -INSERT INTO operator_images VALUES(11,'MongoDB Enterprise Operator',426,NULL,NULL,116,NULL,NULL,NULL,NULL,'quay.io/mongodb/mongodb-enterprise-operator:1.12.0','https://github.com/mongodb/mongodb-enterprise-kubernetes','[[Percona Distribution for MongoDB Operator, percona/percona-server-mongodb-operator:1.9.0, https://github.com/percona/percona-server-mongodb-operator ]]'); -INSERT INTO operator_images VALUES(12,'Apache Spark Operator',426,NULL,NULL,280,NULL,NULL,NULL,NULL,'quay.io/radanalyticsio/spark-operator:1.0.2','https://github.com/radanalyticsio/spark-operator','[[Spark Operator, gcr.io/spark-operator/spark-operator:v2.4.0-v1beta1-latest, https://github.com/GoogleCloudPlatform/spark-on-k8s-operator]]'); -INSERT INTO operator_images VALUES(13,'Banzai Cloud Kafka Operator',426,NULL,NULL,9,NULL,NULL,NULL,NULL,'banzaicloud/kafka-operator:0.3.1','https://github.com/banzaicloud/kafka-operator/tree/master',''); -INSERT INTO operator_images VALUES(14,'Camel K Operator',426,NULL,NULL,378,NULL,NULL,NULL,NULL,'docker.io/apache/camel-k:1.3.0','https://github.com/apache/camel-k',''); -INSERT INTO operator_images VALUES(15,'GrdsCloud MySQL for Kubernetes',426,NULL,NULL,122,NULL,NULL,NULL,NULL,'grds/mysql-operator:1.0.0','https://github.com/GrdsCloud',''); -INSERT INTO operator_images VALUES(16,'Hive for Red Hat OpenShift',426,NULL,NULL,8,NULL,NULL,NULL,NULL,'quay.io/openshift-hive/hive:v1.0.17','https://github.com/openshift/hive',''); -INSERT INTO operator_images VALUES(17,'IBM Spectrum Scale CSI Plugin Operator',426,NULL,NULL,74,NULL,NULL,NULL,NULL,'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0','https://github.com/IBM/ibm-spectrum-scale-csi/',''); -INSERT INTO operator_images VALUES(18,'Jenkins Operator',426,NULL,NULL,90,NULL,NULL,NULL,NULL,'virtuslab/jenkins-operator:v0.3.0','https://github.com/jenkinsci/kubernetes-operator',''); -INSERT INTO operator_images VALUES(19,'Postgresql Operator',426,NULL,NULL,157,NULL,NULL,NULL,NULL,'quay.io/deekshah86/postgresql-operator','https://github.com/janepelladinesh/postgresql-operator','[[Crunchy PostgreSQL for Kubernetes, registry.developers.crunchydata.com/crunchydata/postgres-operator:centos8-4.7.0, https://github.com/CrunchyData/postgres-operator], [Postgres-Operator, registry.opensource.zalan.do/acid/postgres-operator:v1.3.0, https://github.com/zalando/postgres-operator], [PostgreSQL Operator by Dev4Ddevs.com, quay.io/dev4devs-com/postgresql-operator:0.1.1, https://github.com/dev4devs-com/postgresql-operator]]'); -INSERT INTO operator_images VALUES(20,'Redis Operator',426,NULL,NULL,168,NULL,NULL,NULL,NULL,'quay.io/opstree/redis-operator:v0.3.0','https://github.com/ot-container-kit/redis-operator',''); -INSERT INTO operator_images VALUES(21,'WildFly',426,NULL,NULL,493,NULL,NULL,NULL,NULL,'quay.io/wildfly/wildfly-operator:0.3.0','https://github.com/wildfly/wildfly-operator',''); -INSERT INTO operator_images VALUES(22,'MongoDB Enterprise Operator',426,NULL,NULL,116,NULL,NULL,NULL,NULL,'quay.io/mongodb/mongodb-enterprise-operator:1.12.0','https://github.com/mongodb/mongodb-enterprise-kubernetes','[[Percona Distribution for MongoDB Operator, percona/percona-server-mongodb-operator:1.9.0, https://github.com/percona/percona-server-mongodb-operator ]]'); -INSERT INTO operator_images VALUES(23,'Instana Agent Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,611,'instana/instana-agent-operator:0.3.7','https://github.com/instana/instana-agent-operator',''); -INSERT INTO operator_images VALUES(24,'credstash-operator',426,NULL,NULL,612,NULL,NULL,NULL,NULL,'quay.io/ouzi/credstash-operator:v1.13.0','https://github.com/ouzi-dev/credstash-operator',''); -INSERT INTO operator_images VALUES(25,'Snyk Operator',426,NULL,NULL,613,NULL,NULL,NULL,NULL,'docker.io/snyk/kubernetes-operator:1.59.3','https://github.com/snyk/kubernetes-monitor',''); -INSERT INTO operator_images VALUES(26,'Akka Cluster Operator',426,NULL,NULL,614,NULL,NULL,NULL,NULL,'lightbend-docker-registry.bintray.io/lightbend/akkacluster-operator:v1.0.0','https://github.com/lightbend/akka-cluster-operator',''); -INSERT INTO operator_images VALUES(27,'Varnish Operator',426,NULL,NULL,NULL,615,NULL,NULL,NULL,'ibmcom/varnish-operator:0.27.2','https://github.com/IBM/varnish-operator',''); -INSERT INTO operator_images VALUES(28,'Datadog Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,616,'datadog/operator:0.3.0','https://github.com/DataDog/datadog-operator',''); -INSERT INTO operator_images VALUES(29,'Hazelcast Enterprise Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,618,'hazelcast/hazelcast-enterprise-operator:0.3.7','https://github.com/hazelcast/hazelcast-operator',''); -INSERT INTO operator_images VALUES(30,'infinispan',426,NULL,NULL,619,NULL,NULL,NULL,NULL,'docker.io/jboss/infinispan-operator:0.3.0','https://github.com/infinispan/infinispan-operator',''); -INSERT INTO operator_images VALUES(31,'Nuxeo Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,620,'docker.io/appzygy/nuxeo-operator:0.7.1','https://github.com/aceeric/nuxeo-operator',''); -INSERT INTO operator_images VALUES(32,'ArangoDB',426,NULL,NULL,621,NULL,NULL,NULL,NULL,'arangodb/kube-arangodb:1.0.2','https://github.com/arangodb/kube-arangodb',''); -INSERT INTO operator_images VALUES(33,'Eclipse Che',426,NULL,NULL,622,NULL,NULL,NULL,NULL,'quay.io/eclipse/che-operator@sha256:ea3641202e11ad00bd639b59809b6f4a6508f2c143d260b1683a9f36d74ed54f','https://github.com/eclipse-che/che-operator',''); -INSERT INTO operator_images VALUES(34,'AWS S3 Operator',426,NULL,NULL,623,NULL,NULL,NULL,NULL,'quay.io/screeley44/aws-s3-provisioner:v1.0.0','https://github.com/yard-turkey/aws-s3-provisioner',''); -INSERT INTO operator_images VALUES(35,'Altinity ClickHouse Operator',426,NULL,NULL,624,NULL,NULL,NULL,NULL,'altinity/clickhouse-operator:0.9.9','https://github.com/altinity/clickhouse-operator',''); -INSERT INTO operator_images VALUES(36,'MinIO Operator',426,NULL,NULL,625,NULL,NULL,NULL,NULL,'minio/k8s-operator:1.0.3','https://github.com/minio/minio-operator',''); -INSERT INTO operator_images VALUES(37,'Elastic Cloud on Kubernetes',426,NULL,NULL,626,NULL,NULL,NULL,NULL,'docker.elastic.co/eck/eck-operator:1.0.0-beta1','https://github.com/elastic/cloud-on-k8s',''); -INSERT INTO operator_images VALUES(38,'Percona XtraDB Cluster Operator',426,NULL,NULL,627,NULL,NULL,NULL,NULL,'percona/percona-xtradb-cluster-operator:1.7.0','https://github.com/percona/percona-xtradb-cluster-operator',''); -INSERT INTO operator_images VALUES(39,'Keycloak Operator',426,NULL,NULL,628,NULL,NULL,NULL,NULL,'quay.io/keycloak/keycloak-operator:9.0.2','https://github.com/keycloak/keycloak-operator',''); -INSERT INTO operator_images VALUES(40,'Grafana Operator',426,NULL,NULL,629,NULL,NULL,NULL,NULL,'quay.io/integreatly/grafana-operator:v3.10.1','https://github.com/integr8ly/grafana-operator',''); -INSERT INTO operator_images VALUES(41,'Mattermost Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,630,'docker.io/mattermost/mattermost-operator:v0.5.0','https://github.com/mattermost/mattermost-operator',''); -INSERT INTO operator_images VALUES(42,'synapse-helm',426,NULL,NULL,631,NULL,NULL,NULL,NULL,'quay.io/mgoerens/synapse-helm:v0.0.11','https://github.com/opdev/synapse-helm',''); -INSERT INTO operator_images VALUES(43,'IBM Cloud IAM Operator',426,NULL,NULL,632,NULL,NULL,NULL,NULL,'cloudoperators/ibmcloud-iam-operator:0.1.0','https://github.com/IBM/ibmcloud-iam-operator',''); -INSERT INTO operator_images VALUES(44,'Knative Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,633,'gcr.io/knative-releases/knative.dev/operator/cmd/operator:v0.20.0','https://github.com/knative/operator',''); -INSERT INTO operator_images VALUES(45,'Cassandra',426,NULL,NULL,634,NULL,NULL,NULL,NULL,'gcr.io/cassandra-operator/cassandra-operator:v2.0.0','https://github.com/instaclustr/cassandra-operator',''); -INSERT INTO operator_images VALUES(46,'Kubeflow',426,NULL,NULL,NULL,NULL,NULL,NULL,635,'aipipeline/kubeflow-operator:v1.0.0','https://github.com/kubeflow/kfctl',''); -INSERT INTO operator_images VALUES(47,'Openshift Qiskit Operator',426,NULL,NULL,636,NULL,NULL,NULL,NULL,'https://hub.docker.com/repository/docker/singhp11/openshift-qiskit-operator','https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/openshift-qiskit-operator',''); -INSERT INTO operator_images VALUES(48,'Azure Service Operator',426,NULL,NULL,637,NULL,NULL,NULL,NULL,'mcr.microsoft.com/k8s/azureserviceoperator:1.0.27207','https://github.com/Azure/azure-service-operator',''); -INSERT INTO operator_images VALUES(49,'Strimzi',426,NULL,NULL,NULL,NULL,NULL,NULL,638,'docker.io/strimzi/operator@sha256:62218aee7553b31db1f65bc30b3c6b6595c2fd631b2e1792e24e554a47080aa6','https://github.com/strimzi/strimzi-kafka-operator',''); -INSERT INTO operator_images VALUES(50,'Sematext Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,639,'docker.io/sematext/sematext-operator:1.0.33','https://github.com/sematext/sematext-operator',''); -INSERT INTO operator_images VALUES(51,'Eclipse Hawkbit',426,NULL,NULL,640,NULL,NULL,NULL,NULL,'docker.io/ctron/hawkbit-operator:0.1.4','https://github.com/ctron/hawkbit-operator',''); -INSERT INTO operator_images VALUES(52,'Eclipse Ditto',426,NULL,NULL,641,NULL,NULL,NULL,NULL,'docker.io/ctron/ditto-operator:0.1.0','https://github.com/ctron/ditto-operator',''); -INSERT INTO operator_images VALUES(53,'Mariadb Operator',426,NULL,NULL,642,NULL,NULL,NULL,NULL,'quay.io/manojdhanorkar/mariadb-operator:v0.0.1','https://github.com/abalki001/mariadb-operator',''); -INSERT INTO operator_images VALUES(54,'Zadara Operator',426,NULL,NULL,643,NULL,NULL,NULL,NULL,'zadara/zoperator:0.3.6','https://github.com/zadarastorage/zadara-operator',''); -INSERT INTO operator_images VALUES(55,'Istio',426,NULL,NULL,644,NULL,NULL,NULL,NULL,'banzaicloud/istio-operator:0.1.6','https://github.com/banzaicloud/istio-operator/tree/release-1.1',''); -INSERT INTO operator_images VALUES(56,'Vault Helm',426,NULL,NULL,645,NULL,NULL,NULL,NULL,'quay.io/brejohns/vault-helm:0.0.1','https://github.com/SDBrett/vault-helm',''); -INSERT INTO operator_images VALUES(57,'druid-operator',426,NULL,NULL,646,NULL,NULL,NULL,NULL,'druidio/druid-operator:0.0.6','https://github.com/druid-io/druid-operator',''); -INSERT INTO operator_images VALUES(58,'etcd',426,NULL,NULL,647,NULL,NULL,NULL,NULL,'quay.io/coreos/etcd-operator@sha256:66a37fd61a06a43969854ee6d3e21087a98b93838e284a6086b13917f96b0d9b','https://github.com/coreos/etcd-operator',''); -INSERT INTO operator_images VALUES(59,'Traefikee Operator',426,NULL,NULL,NULL,648,NULL,NULL,NULL,'containous/traefikee-operator:v0.3.0','https://github.com/containous/traefikee-operator',''); -INSERT INTO operator_images VALUES(60,'IBM Cloud Operator',426,NULL,NULL,649,NULL,NULL,NULL,NULL,'cloudoperators/ibmcloud-operator:0.1.10','https://github.com/IBM/cloud-operators',''); -INSERT INTO operator_images VALUES(61,'Yugabyte Operator',426,NULL,NULL,650,NULL,NULL,NULL,NULL,'quay.io/yugabyte/yugabytedb-operator','https://github.com/yugabyte/yugabyte-operator',''); -INSERT INTO operator_images VALUES(62,'CockroachDB',426,NULL,NULL,651,NULL,NULL,NULL,NULL,'quay.io/helmoperators/cockroachdb:v3.0.7','https://github.com/dmesser/cockroachdb-operator',''); -INSERT INTO operator_images VALUES(63,'Community Jaeger Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,652,'docker.io/jaegertracing/jaeger-operator:1.11.1','https://github.com/jaegertracing/jaeger-operator',''); +INSERT INTO operator_images VALUES(1,'Apache Spark Operator',426,331,NULL,280,NULL,NULL,NULL,NULL,'quay.io/radanalyticsio/spark-operator:1.0.2','https://github.com/radanalyticsio/spark-operator'); +INSERT INTO operator_images VALUES(2,'Banzai Cloud Kafka Operator',426,323,NULL,9,NULL,NULL,NULL,NULL,'banzaicloud/kafka-operator:0.3.1','https://github.com/banzaicloud/kafka-operator/tree/master'); +INSERT INTO operator_images VALUES(3,'Camel K Operator',426,323,NULL,378,NULL,NULL,NULL,NULL,'docker.io/apache/camel-k:1.3.0','https://github.com/apache/camel-k'); +INSERT INTO operator_images VALUES(4,'GrdsCloud MySQL for Kubernetes',426,NULL,NULL,122,NULL,NULL,NULL,NULL,'grds/mysql-operator:1.0.0','https://github.com/GrdsCloud'); +INSERT INTO operator_images VALUES(5,'Hive for Red Hat OpenShift',426,323,NULL,8,NULL,NULL,NULL,NULL,'quay.io/openshift-hive/hive:v1.0.17','https://github.com/openshift/hive'); +INSERT INTO operator_images VALUES(6,'IBM Spectrum Scale CSI Plugin Operator',426,323,NULL,74,NULL,NULL,NULL,NULL,'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0','https://github.com/IBM/ibm-spectrum-scale-csi/'); +INSERT INTO operator_images VALUES(7,'Jenkins Operator',426,323,NULL,90,NULL,NULL,NULL,NULL,'virtuslab/jenkins-operator:v0.3.0','https://github.com/jenkinsci/kubernetes-operator'); +INSERT INTO operator_images VALUES(8,'Postgresql Operator',426,NULL,NULL,157,NULL,NULL,NULL,NULL,'quay.io/deekshah86/postgresql-operator','https://github.com/janepelladinesh/postgresql-operator'); +INSERT INTO operator_images VALUES(9,'Redis Operator',426,323,NULL,168,NULL,NULL,NULL,NULL,'quay.io/opstree/redis-operator:v0.3.0','https://github.com/ot-container-kit/redis-operator'); +INSERT INTO operator_images VALUES(10,'WildFly',426,323,NULL,493,NULL,NULL,NULL,NULL,'quay.io/wildfly/wildfly-operator:0.3.0','https://github.com/wildfly/wildfly-operator'); +INSERT INTO operator_images VALUES(11,'MongoDB Enterprise Operator',426,NULL,NULL,116,NULL,NULL,NULL,NULL,'quay.io/mongodb/mongodb-enterprise-operator:1.12.0','https://github.com/mongodb/mongodb-enterprise-kubernetes'); +INSERT INTO operator_images VALUES(12,'Apache Spark Operator',426,NULL,NULL,280,NULL,NULL,NULL,NULL,'quay.io/radanalyticsio/spark-operator:1.0.2','https://github.com/radanalyticsio/spark-operator'); +INSERT INTO operator_images VALUES(13,'Banzai Cloud Kafka Operator',426,NULL,NULL,9,NULL,NULL,NULL,NULL,'banzaicloud/kafka-operator:0.3.1','https://github.com/banzaicloud/kafka-operator/tree/master'); +INSERT INTO operator_images VALUES(14,'Camel K Operator',426,NULL,NULL,378,NULL,NULL,NULL,NULL,'docker.io/apache/camel-k:1.3.0','https://github.com/apache/camel-k'); +INSERT INTO operator_images VALUES(15,'GrdsCloud MySQL for Kubernetes',426,NULL,NULL,122,NULL,NULL,NULL,NULL,'grds/mysql-operator:1.0.0','https://github.com/GrdsCloud'); +INSERT INTO operator_images VALUES(16,'Hive for Red Hat OpenShift',426,NULL,NULL,8,NULL,NULL,NULL,NULL,'quay.io/openshift-hive/hive:v1.0.17','https://github.com/openshift/hive'); +INSERT INTO operator_images VALUES(17,'IBM Spectrum Scale CSI Plugin Operator',426,NULL,NULL,74,NULL,NULL,NULL,NULL,'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0','https://github.com/IBM/ibm-spectrum-scale-csi/'); +INSERT INTO operator_images VALUES(18,'Jenkins Operator',426,NULL,NULL,90,NULL,NULL,NULL,NULL,'virtuslab/jenkins-operator:v0.3.0','https://github.com/jenkinsci/kubernetes-operator'); +INSERT INTO operator_images VALUES(19,'Postgresql Operator',426,NULL,NULL,157,NULL,NULL,NULL,NULL,'quay.io/deekshah86/postgresql-operator','https://github.com/janepelladinesh/postgresql-operator'); +INSERT INTO operator_images VALUES(20,'Redis Operator',426,NULL,NULL,168,NULL,NULL,NULL,NULL,'quay.io/opstree/redis-operator:v0.3.0','https://github.com/ot-container-kit/redis-operator'); +INSERT INTO operator_images VALUES(21,'WildFly',426,NULL,NULL,493,NULL,NULL,NULL,NULL,'quay.io/wildfly/wildfly-operator:0.3.0','https://github.com/wildfly/wildfly-operator'); +INSERT INTO operator_images VALUES(22,'MongoDB Enterprise Operator',426,NULL,NULL,116,NULL,NULL,NULL,NULL,'quay.io/mongodb/mongodb-enterprise-operator:1.12.0','https://github.com/mongodb/mongodb-enterprise-kubernetes'); +INSERT INTO operator_images VALUES(23,'Instana Agent Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,611,'instana/instana-agent-operator:0.3.7','https://github.com/instana/instana-agent-operator'); +INSERT INTO operator_images VALUES(24,'credstash-operator',426,NULL,NULL,612,NULL,NULL,NULL,NULL,'quay.io/ouzi/credstash-operator:v1.13.0','https://github.com/ouzi-dev/credstash-operator'); +INSERT INTO operator_images VALUES(25,'Snyk Operator',426,NULL,NULL,613,NULL,NULL,NULL,NULL,'docker.io/snyk/kubernetes-operator:1.59.3','https://github.com/snyk/kubernetes-monitor'); +INSERT INTO operator_images VALUES(26,'Akka Cluster Operator',426,NULL,NULL,614,NULL,NULL,NULL,NULL,'lightbend-docker-registry.bintray.io/lightbend/akkacluster-operator:v1.0.0','https://github.com/lightbend/akka-cluster-operator'); +INSERT INTO operator_images VALUES(27,'Varnish Operator',426,NULL,NULL,NULL,615,NULL,NULL,NULL,'ibmcom/varnish-operator:0.27.2','https://github.com/IBM/varnish-operator'); +INSERT INTO operator_images VALUES(28,'Datadog Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,616,'datadog/operator:0.3.0','https://github.com/DataDog/datadog-operator'); +INSERT INTO operator_images VALUES(29,'Hazelcast Enterprise Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,618,'hazelcast/hazelcast-enterprise-operator:0.3.7','https://github.com/hazelcast/hazelcast-operator'); +INSERT INTO operator_images VALUES(30,'infinispan',426,NULL,NULL,619,NULL,NULL,NULL,NULL,'docker.io/jboss/infinispan-operator:0.3.0','https://github.com/infinispan/infinispan-operator'); +INSERT INTO operator_images VALUES(31,'Nuxeo Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,620,'docker.io/appzygy/nuxeo-operator:0.7.1','https://github.com/aceeric/nuxeo-operator'); +INSERT INTO operator_images VALUES(32,'ArangoDB',426,NULL,NULL,621,NULL,NULL,NULL,NULL,'arangodb/kube-arangodb:1.0.2','https://github.com/arangodb/kube-arangodb'); +INSERT INTO operator_images VALUES(33,'Eclipse Che',426,NULL,NULL,622,NULL,NULL,NULL,NULL,'quay.io/eclipse/che-operator@sha256:ea3641202e11ad00bd639b59809b6f4a6508f2c143d260b1683a9f36d74ed54f','https://github.com/eclipse-che/che-operator'); +INSERT INTO operator_images VALUES(34,'AWS S3 Operator',426,NULL,NULL,623,NULL,NULL,NULL,NULL,'quay.io/screeley44/aws-s3-provisioner:v1.0.0','https://github.com/yard-turkey/aws-s3-provisioner'); +INSERT INTO operator_images VALUES(35,'Altinity ClickHouse Operator',426,NULL,NULL,624,NULL,NULL,NULL,NULL,'altinity/clickhouse-operator:0.9.9','https://github.com/altinity/clickhouse-operator'); +INSERT INTO operator_images VALUES(36,'MinIO Operator',426,NULL,NULL,625,NULL,NULL,NULL,NULL,'minio/k8s-operator:1.0.3','https://github.com/minio/minio-operator'); +INSERT INTO operator_images VALUES(37,'Elastic Cloud on Kubernetes',426,NULL,NULL,626,NULL,NULL,NULL,NULL,'docker.elastic.co/eck/eck-operator:1.0.0-beta1','https://github.com/elastic/cloud-on-k8s'); +INSERT INTO operator_images VALUES(38,'Percona XtraDB Cluster Operator',426,NULL,NULL,627,NULL,NULL,NULL,NULL,'percona/percona-xtradb-cluster-operator:1.7.0','https://github.com/percona/percona-xtradb-cluster-operator'); +INSERT INTO operator_images VALUES(39,'Keycloak Operator',426,NULL,NULL,628,NULL,NULL,NULL,NULL,'quay.io/keycloak/keycloak-operator:9.0.2','https://github.com/keycloak/keycloak-operator'); +INSERT INTO operator_images VALUES(40,'Grafana Operator',426,NULL,NULL,629,NULL,NULL,NULL,NULL,'quay.io/integreatly/grafana-operator:v3.10.1','https://github.com/integr8ly/grafana-operator'); +INSERT INTO operator_images VALUES(41,'Mattermost Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,630,'docker.io/mattermost/mattermost-operator:v0.5.0','https://github.com/mattermost/mattermost-operator'); +INSERT INTO operator_images VALUES(42,'synapse-helm',426,NULL,NULL,631,NULL,NULL,NULL,NULL,'quay.io/mgoerens/synapse-helm:v0.0.11','https://github.com/opdev/synapse-helm'); +INSERT INTO operator_images VALUES(43,'IBM Cloud IAM Operator',426,NULL,NULL,632,NULL,NULL,NULL,NULL,'cloudoperators/ibmcloud-iam-operator:0.1.0','https://github.com/IBM/ibmcloud-iam-operator'); +INSERT INTO operator_images VALUES(44,'Knative Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,633,'gcr.io/knative-releases/knative.dev/operator/cmd/operator:v0.20.0','https://github.com/knative/operator'); +INSERT INTO operator_images VALUES(45,'Cassandra',426,NULL,NULL,634,NULL,NULL,NULL,NULL,'gcr.io/cassandra-operator/cassandra-operator:v2.0.0','https://github.com/instaclustr/cassandra-operator'); +INSERT INTO operator_images VALUES(46,'Kubeflow',426,NULL,NULL,NULL,NULL,NULL,NULL,635,'aipipeline/kubeflow-operator:v1.0.0','https://github.com/kubeflow/kfctl'); +INSERT INTO operator_images VALUES(47,'Openshift Qiskit Operator',426,NULL,NULL,636,NULL,NULL,NULL,NULL,'https://hub.docker.com/repository/docker/singhp11/openshift-qiskit-operator','https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/openshift-qiskit-operator'); +INSERT INTO operator_images VALUES(48,'Azure Service Operator',426,NULL,NULL,637,NULL,NULL,NULL,NULL,'mcr.microsoft.com/k8s/azureserviceoperator:1.0.27207','https://github.com/Azure/azure-service-operator'); +INSERT INTO operator_images VALUES(49,'Strimzi',426,NULL,NULL,NULL,NULL,NULL,NULL,638,'docker.io/strimzi/operator@sha256:62218aee7553b31db1f65bc30b3c6b6595c2fd631b2e1792e24e554a47080aa6','https://github.com/strimzi/strimzi-kafka-operator'); +INSERT INTO operator_images VALUES(50,'Sematext Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,639,'docker.io/sematext/sematext-operator:1.0.33','https://github.com/sematext/sematext-operator'); +INSERT INTO operator_images VALUES(51,'Eclipse Hawkbit',426,NULL,NULL,640,NULL,NULL,NULL,NULL,'docker.io/ctron/hawkbit-operator:0.1.4','https://github.com/ctron/hawkbit-operator'); +INSERT INTO operator_images VALUES(52,'Eclipse Ditto',426,NULL,NULL,641,NULL,NULL,NULL,NULL,'docker.io/ctron/ditto-operator:0.1.0','https://github.com/ctron/ditto-operator'); +INSERT INTO operator_images VALUES(53,'Mariadb Operator',426,NULL,NULL,642,NULL,NULL,NULL,NULL,'quay.io/manojdhanorkar/mariadb-operator:v0.0.1','https://github.com/abalki001/mariadb-operator'); +INSERT INTO operator_images VALUES(54,'Zadara Operator',426,NULL,NULL,643,NULL,NULL,NULL,NULL,'zadara/zoperator:0.3.6','https://github.com/zadarastorage/zadara-operator'); +INSERT INTO operator_images VALUES(55,'Istio',426,NULL,NULL,644,NULL,NULL,NULL,NULL,'banzaicloud/istio-operator:0.1.6','https://github.com/banzaicloud/istio-operator/tree/release-1.1'); +INSERT INTO operator_images VALUES(56,'Vault Helm',426,NULL,NULL,645,NULL,NULL,NULL,NULL,'quay.io/brejohns/vault-helm:0.0.1','https://github.com/SDBrett/vault-helm'); +INSERT INTO operator_images VALUES(57,'druid-operator',426,NULL,NULL,646,NULL,NULL,NULL,NULL,'druidio/druid-operator:0.0.6','https://github.com/druid-io/druid-operator'); +INSERT INTO operator_images VALUES(58,'etcd',426,NULL,NULL,647,NULL,NULL,NULL,NULL,'quay.io/coreos/etcd-operator@sha256:66a37fd61a06a43969854ee6d3e21087a98b93838e284a6086b13917f96b0d9b','https://github.com/coreos/etcd-operator'); +INSERT INTO operator_images VALUES(59,'Traefikee Operator',426,NULL,NULL,NULL,648,NULL,NULL,NULL,'containous/traefikee-operator:v0.3.0','https://github.com/containous/traefikee-operator'); +INSERT INTO operator_images VALUES(60,'IBM Cloud Operator',426,NULL,NULL,649,NULL,NULL,NULL,NULL,'cloudoperators/ibmcloud-operator:0.1.10','https://github.com/IBM/cloud-operators'); +INSERT INTO operator_images VALUES(61,'Yugabyte Operator',426,NULL,NULL,650,NULL,NULL,NULL,NULL,'quay.io/yugabyte/yugabytedb-operator','https://github.com/yugabyte/yugabyte-operator'); +INSERT INTO operator_images VALUES(62,'CockroachDB',426,NULL,NULL,651,NULL,NULL,NULL,NULL,'quay.io/helmoperators/cockroachdb:v3.0.7','https://github.com/dmesser/cockroachdb-operator'); +INSERT INTO operator_images VALUES(63,'Community Jaeger Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,652,'docker.io/jaegertracing/jaeger-operator:1.11.1','https://github.com/jaegertracing/jaeger-operator'); + CREATE TABLE docker_environment_variables( id integer NOT NULL PRIMARY KEY AUTOINCREMENT, Environment_Variables text, diff --git a/db/1.0.4.sql b/db/1.0.4.sql index 887f392..1b33b3c 100644 --- a/db/1.0.4.sql +++ b/db/1.0.4.sql @@ -1,7 +1,5 @@ -PRAGMA foreign_keys = off; +PRAGMA foreign_keys=OFF; BEGIN TRANSACTION; - --- Table: docker_baseos_images CREATE TABLE docker_baseos_images ( id integer PRIMARY KEY AUTOINCREMENT, container_name text NOT NULL, @@ -16,59 +14,19 @@ CREATE TABLE docker_baseos_images ( OpenShiftStatus text, FOREIGN KEY (OS) REFERENCES entity_types (id) ); -INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (1, 'Windows Server Core', 452, 'https://hub.docker.com/_/microsoft-windows-servercore', 'Base Images', 'not_certified', 'Verified Publisher', 'no', 'Yes (Microsoft)', '', ''); -INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (2, 'Red Hat Enterprise Linux', 434, 'https://hub.docker.com/r/roboxes/rhel7', '', 'certified', '', 'NotApplicable', 'NotApplicable', 'https://catalog.redhat.com/software/containers/rhel7/57ea8cee9c624c035f96f3af', ''); -INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (3, 'Ubuntu', 436, 'https://hub.docker.com/_/ubuntu', 'Base Images', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); -INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (4, 'Debian', 429, 'https://hub.docker.com/_/debian', 'Base Images', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); -INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (5, 'CentOS', 427, 'https://hub.docker.com/_/centos', '', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); -INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (6, 'Fedora', 453, 'https://hub.docker.com/_/fedora', '', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); -INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (7, 'Oracle Linux', 432, 'https://hub.docker.com/_/oraclelinux', '', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); -INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (8, 'Amazon Linux', 454, 'https://hub.docker.com/_/amazonlinux', '', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); -INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (9, 'openSUSE', 431, 'https://hub.docker.com/r/opensuse/leap', '', 'not_certified', '', 'no', 'NotApplicable', '', ''); -INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (10, 'SUSE Linux Enterprise Server', 435, 'https://www.suse.com/c/first-sles-container/', 'https://github.com/SUSE/sle2docker', 'unknown', '', 'NotApplicable', 'NotApplicable', '', ''); -INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (11, 'Junos OS', 430, 'https://www.juniper.net/us/en/products-services/nos/junos/', '', 'unknown', '', 'NotApplicable', 'NotApplicable', '', ''); -INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (12, 'Photon OS', 433, 'https://hub.docker.com/_/photon', '', 'not_certified', '', 'NotApplicable', 'NotApplicable', '', ''); -INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (13, 'Windows', 450, 'https://hub.docker.com/_/microsoft-windows', 'Base Images', 'not_certified', 'Verified Publisher', 'no', 'Yes (Microsoft)', '', ''); - --- Table: docker_environment_variables -CREATE TABLE docker_environment_variables( - id integer NOT NULL PRIMARY KEY AUTOINCREMENT, - Environment_Variables text, - Container_Name text, - Required text, - Default_Values text, - FOREIGN KEY (Container_Name) REFERENCES docker_images (id) - ); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (1, 'DB2INSTANCE', 'db2', 'Y', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (2, 'DB2INST1_PASSWORD', 'db2', 'Y', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (3, 'DBNAME', 'db2', 'Y', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (4, 'BLU', 'db2', 'N', 'True'); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (5, 'ENABLE_ORACLE_COMPATIBILITY', 'db2', '', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (6, 'SAMPLEDB', 'db2', '', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (7, 'PERSISTENT_HOME', 'db2', '', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (8, 'HADR_ENABLED', 'db2', '', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (9, 'ETCD_ENDPOINT', 'db2', '', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (10, 'ETCD_USERNAME', 'db2', '', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (11, 'ETCD_PASSWORD', 'db2', '', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (12, 'TEXT_SEARCH', 'db2', 'N', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (13, 'ARCHIVE_LOGS', 'db2', 'N', 'True'); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (14, 'AUTOCONFIG', 'db2', 'N', 'True'); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (15, 'MYSQL_HOST', 'mysql', '', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (16, 'MYSQL_ROOT_PASSWORD', 'mysql', '', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (17, 'MYSQL_DATABASE', 'mysql', '', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (18, 'MYSQL_USER', 'mysql', '', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (19, 'MYSQL_PASSWORD', 'mysql', '', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (20, 'MYSQL_ALLOW_EMPTY_PASSWORD', 'mysql', '', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (21, 'MYSQL_RANDOM_ROOT_PASSWORD', 'mysql', '', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (22, 'MYSQL_ONETIME_PASSWORD', 'mysql', '', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (23, 'MYSQL_INITDB_SKIP_TZINFO', 'mysql', '', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (24, 'CATALINA_BASE', 'tomcat', '', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (25, 'CATALINA_HOME', 'tomcat', '', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (26, 'CATALINA_TMPDIR', 'tomcat', '', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (27, 'JRE_HOME', 'tomcat', '', ''); -INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (28, 'CLASSPATH', 'tomcat', '', ''); - --- Table: docker_images +INSERT INTO docker_baseos_images VALUES(1,'Windows Server Core',452,'https://hub.docker.com/_/microsoft-windows-servercore','Base Images','not_certified','Verified Publisher','no','Yes (Microsoft)','',''); +INSERT INTO docker_baseos_images VALUES(2,'Red Hat Enterprise Linux',434,'https://hub.docker.com/r/roboxes/rhel7','','certified','','NotApplicable','NotApplicable','https://catalog.redhat.com/software/containers/rhel7/57ea8cee9c624c035f96f3af',''); +INSERT INTO docker_baseos_images VALUES(3,'Ubuntu',436,'https://hub.docker.com/_/ubuntu','Base Images','not_certified','Official Image','yes','Yes (Docker)','',''); +INSERT INTO docker_baseos_images VALUES(4,'Debian',429,'https://hub.docker.com/_/debian','Base Images','not_certified','Official Image','yes','Yes (Docker)','',''); +INSERT INTO docker_baseos_images VALUES(5,'CentOS',427,'https://hub.docker.com/_/centos','','not_certified','Official Image','yes','Yes (Docker)','',''); +INSERT INTO docker_baseos_images VALUES(6,'Fedora',453,'https://hub.docker.com/_/fedora','','not_certified','Official Image','yes','Yes (Docker)','',''); +INSERT INTO docker_baseos_images VALUES(7,'Oracle Linux',432,'https://hub.docker.com/_/oraclelinux','','not_certified','Official Image','yes','Yes (Docker)','',''); +INSERT INTO docker_baseos_images VALUES(8,'Amazon Linux',454,'https://hub.docker.com/_/amazonlinux','','not_certified','Official Image','yes','Yes (Docker)','',''); +INSERT INTO docker_baseos_images VALUES(9,'openSUSE',431,'https://hub.docker.com/r/opensuse/leap','','not_certified','','no','NotApplicable','',''); +INSERT INTO docker_baseos_images VALUES(10,'SUSE Linux Enterprise Server',435,'https://www.suse.com/c/first-sles-container/','https://github.com/SUSE/sle2docker','unknown','','NotApplicable','NotApplicable','',''); +INSERT INTO docker_baseos_images VALUES(11,'Junos OS',430,'https://www.juniper.net/us/en/products-services/nos/junos/','','unknown','','NotApplicable','NotApplicable','',''); +INSERT INTO docker_baseos_images VALUES(12,'Photon OS',433,'https://hub.docker.com/_/photon','','not_certified','','NotApplicable','NotApplicable','',''); +INSERT INTO docker_baseos_images VALUES(13,'Windows',580,'https://hub.docker.com/_/microsoft-windows','Base Images','not_certified','Verified Publisher','no','Yes (Microsoft)','',''); CREATE TABLE docker_images ( id integer PRIMARY KEY AUTOINCREMENT, container_name text NOT NULL, @@ -92,208 +50,177 @@ CREATE TABLE docker_images ( FOREIGN KEY (runlib) REFERENCES entity_types (id), FOREIGN KEY (runtime) REFERENCES entity_types (id) ); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (1, 'Oracle Middleware (including Oracle Forms & Reports and Oracle Traffic Director)', 426, NULL, NULL, 137, NULL, NULL, NULL, NULL, 'https://github.com/DirkNachbar/Docker', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (2, 'eclipse', 436, NULL, NULL, 46, NULL, NULL, NULL, NULL, 'https://github.com/fgrehm/docker-eclipse', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (3, 'SAP MaxDB', 436, NULL, NULL, 176, NULL, NULL, NULL, NULL, 'https://github.com/kr428/maxdb-docker', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (4, 'IBM Maximo Asset Management', 436, NULL, NULL, 70, NULL, NULL, NULL, NULL, 'https://github.com/nishi2go/maximo-docker', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (5, 'Oracle Designer', 426, NULL, NULL, 135, NULL, NULL, NULL, NULL, 'https://github.com/oracle/docker-images', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (6, 'Oracle Real Application Clusters (RAC) Database', 432, NULL, NULL, 141, NULL, NULL, NULL, NULL, 'https://github.com/oracle/docker-images/blob/master/OracleDatabase/RAC/OracleRealApplicationClusters/README.md', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (7, 'Oracle Database Windows', 450, NULL, NULL, 134, NULL, NULL, NULL, NULL, 'https://github.com/oracle/docker-images/issues/1054', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (8, 'Oracle Siebel', 432, NULL, NULL, 182, NULL, NULL, NULL, NULL, 'https://github.com/OracleSiebel/ConfiguringSiebel/tree/master/Containerization/Docker', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (9, 'OpenLDAP', 426, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://github.com/osixia/docker-openldap', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (10, 'Tivoli Monitoring Server (HUB TEMS)', 426, NULL, NULL, 77, NULL, NULL, NULL, NULL, 'https://github.com/sambr7/itm6hub', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (11, 'CA Wily Introscope', 426, NULL, NULL, 23, NULL, NULL, NULL, NULL, 'https://github.com/stefansiegl/docker-introscope', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (12, 'drupal', 426, NULL, NULL, 45, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/drupal/', 'Application Frameworks', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (13, 'gcc', 426, 305, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/gcc', 'DevOps Tools|Application Frameworks', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (14, 'glassfish', 426, 333, NULL, NULL, 263, NULL, NULL, NULL, 'https://hub.docker.com/_/glassfish', '', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (15, 'golang_Windows', 450, 323, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/golang', 'Programming Languages', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (16, 'golang_Linux', 426, 323, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/golang', 'Programming Languages', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (17, 'groovy', 426, 325, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/groovy/', 'Programming Languages', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (18, 'haproxy', 426, NULL, NULL, NULL, 264, NULL, NULL, NULL, 'https://hub.docker.com/_/haproxy', 'Application Infrastructure', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (19, 'httpd', 426, NULL, NULL, NULL, 259, NULL, NULL, NULL, 'https://hub.docker.com/_/httpd', 'Application Infrastructure', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (20, 'IBM Security Access Manager', 426, NULL, NULL, 220, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/isam', 'Security|Application Infrastructure', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (21, 'jenkins', 426, NULL, NULL, 90, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/jenkins/', 'DevOps Tools', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (22, 'MarkLogic', 426, NULL, NULL, 97, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/marklogic', 'Analytics|Databases|Application Infrastructure', 'Verified Publisher'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (23, 'memcached', 426, NULL, NULL, 98, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/memcached', 'Storage', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (24, '.NET Framework', 450, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'https://hub.docker.com/_/microsoft-dotnet-framework', 'Base Images ::: runtime library : uClibc, musl', 'Verified Publisher, Docker Certified'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (25, 'ASP.NET', 450, NULL, NULL, NULL, NULL, NULL, NULL, 499, 'https://hub.docker.com/_/microsoft-dotnet-framework-aspnet', '', 'Verified Publisher, Docker Certified'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (26, 'Java SE JRE_Windows', 450, NULL, NULL, NULL, NULL, NULL, NULL, 506, 'https://hub.docker.com/_/microsoft-java-jre', 'Base Images', 'Verified Publisher, Docker Certified'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (27, 'Java SE JRE_Linux', 426, NULL, NULL, NULL, NULL, NULL, NULL, 506, 'https://hub.docker.com/_/microsoft-java-jre', 'Base Images ::: splitted from original Row #35: "Java SE JRE"', 'Verified Publisher, Docker Certified'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (28, 'Microsoft SQL Server', 426, NULL, NULL, 120, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/microsoft-mssql-server', 'Base Images', 'Verified Publisher'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (29, 'Windows IIS', 450, NULL, NULL, NULL, 266, NULL, NULL, NULL, 'https://hub.docker.com/_/microsoft-windows-servercore-iis', 'Base Images', 'Verified Publisher'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (30, 'Mongo_Windows', 452, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/mongo', 'Databases', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (31, 'Mongo_Linux', 426, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/mongo', 'Databases', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (32, 'mysql', 426, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/mysql', 'Databases', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (33, 'neo4j', 426, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/neo4j', 'Databases', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (34, 'nginx', 426, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://hub.docker.com/_/nginx', 'Application Infrastructure', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (35, 'node', 426, NULL, NULL, NULL, NULL, NULL, NULL, 507, 'https://hub.docker.com/_/node/', 'Application Infrastructure', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (36, 'Oracle Database Enterprise Edition', 426, NULL, NULL, 134, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/oracle-database-enterprise-edition', 'Databases', 'Verified Publisher, Docker Certified'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (37, 'Oracle WebLogic Server', 426, 333, NULL, NULL, 262, NULL, NULL, NULL, 'https://hub.docker.com/_/oracle-weblogic-server-12c', 'Application Frameworks|Application Infrastructure', 'Verified Publisher, Docker Certified'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (38, 'Progress Application Server (PAS) for OpenEdge', 426, 344, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/pasoe', 'Application Infrastructure|Base Images', 'Verified Publisher, Docker Certified'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (39, 'php', 426, 350, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/php', 'Programming Languages', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (40, 'Python_Windows', 450, 354, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/python', 'Programming Languages', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (41, 'Python_Linux', 426, 354, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/python', 'Programming Languages', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (42, 'r-base', 426, 355, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/r-base', 'Application Services', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (43, 'rabbitmq', 426, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/rabbitmq', 'Messaging Services', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (44, 'rails', 426, 358, NULL, NULL, NULL, NULL, NULL, 508, 'https://hub.docker.com/_/rails/', '', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (45, 'redis_Windows', 450, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/redis/', 'Databases', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (46, 'redis_Linux', 426, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/redis/', 'Databases', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (47, 'ruby', 426, 358, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/ruby', 'Programming Languages', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (48, 'SAP HANA, express edition (database and application services)', 426, NULL, NULL, 175, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/sap-hana-express-edition-incl-application-services', 'Analytics|Application Infrastructure|Databases', 'Verified Publisher'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (49, 'Sentry', 426, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/sentry/', 'Application Infrastructure|DevOps Tools|Monitoring', 'Verified Publisher'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (50, 'sonarqube', 426, 331, NULL, 186, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/sonarqube/', 'DevOps Tools', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (51, 'swift', 426, 364, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/swift', 'Base Images|Programming Languages', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (52, 'tomcat', 426, 331, NULL, NULL, 260, NULL, NULL, NULL, 'https://hub.docker.com/_/tomcat', 'Application Infrastructure', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (53, 'websphere-liberty', 426, 331, NULL, NULL, 285, NULL, NULL, NULL, 'https://hub.docker.com/_/websphere-liberty', '', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (54, 'wordpress', 426, 350, NULL, 245, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/wordpress/', 'Application Services', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (55, 'xml-to-bootstrap', 426, NULL, NULL, 317, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/acch/xml-to-bootstrap/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (56, 'asterisk', 429, NULL, NULL, 14, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/andrius/asterisk', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (57, 'ansible', 436, NULL, NULL, 5, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ansible/ansible', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (58, 'ahfcmd', 426, NULL, NULL, 319, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/antennahouse/ahfcmd', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (59, 'oracle-apex-ords', 436, NULL, NULL, 131, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/araczkowski/oracle-apex-ords/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (60, 'siebelapp', 434, NULL, NULL, 182, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/azeemdin/siebelapp/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (61, 'bmc', 436, NULL, NULL, 19, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/baremetalcontainer/bmc', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (62, 'riak-kv_Ubuntu', 436, 331, NULL, 170, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/basho/riak-kv/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (63, 'riak-kv_CentOS', 427, 331, NULL, 170, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/basho/riak-kv/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (64, 'hive', 426, NULL, NULL, 8, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bde2020/hive', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (65, 'cordova', 426, NULL, NULL, NULL, NULL, NULL, NULL, 501, 'https://hub.docker.com/r/beevelop/cordova', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (66, 'kafka', 429, NULL, NULL, 9, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/kafka/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (67, 'postgresql', 429, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/postgresql/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (68, 'reportserver', 429, NULL, NULL, 21, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/reportserver/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (69, 'spark', 429, NULL, NULL, NULL, 280, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/spark/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (70, 'chrome', 426, NULL, NULL, 55, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/browserless/chrome/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (71, 'docker-pentaho', 426, NULL, NULL, 150, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ca0abinary/docker-pentaho/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (72, 'chef', 436, NULL, NULL, 27, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/chef/chef/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (73, 'zerto-exporter', 426, NULL, NULL, 249, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/claranet/zerto-exporter/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (74, 'management_frontend', 426, NULL, NULL, 308, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/clipper/management_frontend/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (75, 'vmware-tools', 436, NULL, NULL, 230, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/corfr/vmware-tools/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (76, 'xampp', 436, NULL, NULL, 246, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/cswl/xampp', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (77, 'activiti', 426, NULL, NULL, 3, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/cwoodcock/activiti/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (78, 'sqlanywhere', 436, NULL, NULL, 178, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/danpmelo/sqlanywhere/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (79, 'lisp', 429, 341, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/dexec/lisp', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (80, 'webfocus', 426, NULL, NULL, 232, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/dimitrislp/webfocus', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (81, 'apache-servicemix', 427, NULL, NULL, 10, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/dskow/apache-servicemix/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (82, 'tcl', 436, NULL, NULL, 365, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/efrecon/tcl/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (83, 'alpine-sass', 426, NULL, NULL, 361, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ellerbrock/alpine-sass', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (84, 'oracle-soa-suite-12c', 426, NULL, NULL, 145, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/enomoto/oracle-soa-suite-12c/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (85, 'resin', 427, NULL, NULL, NULL, 278, NULL, NULL, NULL, 'https://hub.docker.com/r/expertsystems/resin/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (86, 'docker-cobol', 426, 310, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/gregcoleman/docker-cobol/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (87, 'svn-apache', 426, NULL, NULL, 12, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/h0h4/svn-apache/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (88, 'static-file-server', 426, NULL, NULL, NULL, NULL, NULL, NULL, 505, 'https://hub.docker.com/r/halverneus/static-file-server/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (89, 'hbase', 426, NULL, NULL, 7, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/harisekhon/hbase/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (90, 'ooce', 450, NULL, NULL, 60, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/hpoo/ooce', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (91, 'scala-sbt', 426, 362, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/hseeberger/scala-sbt/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (92, 'delphi-prod', 429, 313, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/hunsche/delphi-prod', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (93, 'fabric-ca', 426, NULL, NULL, 422, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/hyperledger/fabric-ca', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (94, 'db2', 426, NULL, NULL, 43, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/db2', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (95, 'ibm-http-server', 426, NULL, NULL, NULL, 265, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/ibm-http-server/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (96, 'iib', 426, NULL, NULL, 68, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/iib/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (97, 'informix-developer-database', 426, NULL, NULL, 330, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/informix-developer-database/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (98, 'kitura-ubuntu', 436, NULL, NULL, NULL, 269, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/kitura-ubuntu/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (99, 'mq', 426, NULL, NULL, 81, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/mq/', 'IBM MQ Advanced for Developers', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (100, 'websphere-portal', 426, 331, NULL, NULL, 286, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/websphere-portal/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (101, 'websphere-traditional', 426, 331, NULL, NULL, 284, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/websphere-traditional/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (102, 'opentext', 426, NULL, NULL, 127, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ikelso/opentext', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (103, 'cognos', 426, NULL, NULL, 36, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ingvarch/cognos/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (104, 'base', 426, NULL, NULL, NULL, 267, NULL, NULL, NULL, 'https://hub.docker.com/r/jboss/base/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (105, 'wildfly', 426, NULL, NULL, NULL, 493, NULL, NULL, NULL, 'https://hub.docker.com/r/jboss/wildfly/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (106, 'docker-teradata-client', 426, NULL, NULL, 215, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/jeremymarshall/docker-teradata-client', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (107, 'firefox', 426, NULL, NULL, 117, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/jlesage/firefox', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (108, 'nginx-proxy', 426, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://hub.docker.com/r/jwilder/nginx-proxy/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (109, 'remedy-admin', 426, NULL, NULL, 169, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/kliremedy/remedy-admin/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (110, 'uniface', 426, NULL, NULL, 225, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/lammersma/uniface', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (111, 'rv-tibco', 426, NULL, NULL, 219, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/lingya/rv-tibco', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (112, 'openvpn-as', 426, NULL, NULL, 128, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/linuxserver/openvpn-as/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (113, 'lucee52', 426, NULL, NULL, NULL, 271, NULL, NULL, NULL, 'https://hub.docker.com/r/lucee/lucee52', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (114, 'sqldeveloper', 426, NULL, NULL, 146, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/marcelhuberfoo/sqldeveloper/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (115, 'term_ssh_wine_winmerge', 426, NULL, NULL, 241, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/marchandd/term_ssh_wine_winmerge/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (116, 'openbd', 426, 311, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/marcusf/openbd/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (117, 'mdw', 426, NULL, NULL, 115, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/mdwcore/mdw', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (118, 'infobright', 426, NULL, NULL, 86, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/meatcar/infobright/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (119, 'alpine-expect', 426, 315, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/mesosphere/alpine-expect/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (120, 'acroread', 426, NULL, NULL, 4, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/mgor/acroread/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (121, 'dynamics-nav', 450, NULL, NULL, 101, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/microsoft/dynamics-nav', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (122, 'fortran-gfortran', 426, 322, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nacyot/fortran-gfortran/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (123, 'javascript-node.js', 426, 337, NULL, NULL, NULL, NULL, NULL, 507, 'https://hub.docker.com/r/nacyot/javascript-node.js/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (124, 'objectivec-gcc', 426, 343, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nacyot/objectivec-gcc/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (125, 'pascal-fp_compiler', 426, 345, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nacyot/pascal-fp_compiler/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (126, 'smalltalk-gnu', 426, 363, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nacyot/smalltalk-gnu/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (127, 'asp-docker', 450, NULL, NULL, NULL, NULL, NULL, NULL, 499, 'https://hub.docker.com/r/nagaozen/asp-docker', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (128, 'nginx-ingress', 426, NULL, NULL, 88, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nginx/nginx-ingress/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (129, 'nix', 426, NULL, NULL, 125, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nixos/nix/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (130, 'node-red-docker', 426, NULL, NULL, 236, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nodered/node-red-docker/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (131, 'graphql-demo', 426, 324, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/npalm/graphql-demo', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (132, 'sas', 426, 360, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/paulohms/sas/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (133, 'flash', 426, NULL, NULL, NULL, NULL, NULL, NULL, 504, 'https://hub.docker.com/r/pegi3s/flash/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (134, 'vcenter', 426, NULL, NULL, 231, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/peterneln/vcenter', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (135, 'gpdb-devel', 426, NULL, NULL, 56, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/pivotaldata/gpdb-devel/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (136, 'pivotal-tc-server', 426, NULL, NULL, NULL, 277, NULL, NULL, NULL, 'https://hub.docker.com/r/rbosse/pivotal-tc-server/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (137, 'activemq', 426, NULL, NULL, 6, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/rmohr/activemq/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (138, 'svf', 426, NULL, NULL, 240, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/rockysui/svf', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (139, 'typescript', 426, 367, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/sandrokeil/typescript/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (140, 'hadoop-docker', 426, NULL, NULL, 57, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/sequenceiq/hadoop-docker/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (141, 'nexus3', 426, NULL, NULL, 124, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/sonatype/nexus3/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (142, 'splunk', 426, NULL, NULL, 188, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/splunk/splunk/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (143, 'docker-eas-peoplesoft-base', 426, NULL, NULL, 151, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/uaecs/docker-eas-peoplesoft-base/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (144, 'imsdb', 426, NULL, NULL, 84, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/vineela/imsdb', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (145, 'spfx', 426, NULL, NULL, 181, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/waldekm/spfx/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (146, 'sysinternals', 450, NULL, NULL, 192, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/weshigbee/sysinternals/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (147, 'arcgisserver', 426, NULL, NULL, NULL, 261, NULL, NULL, NULL, 'https://hub.docker.com/r/xzdbd/arcgisserver/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (148, 'zeromq', 426, NULL, NULL, 248, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/zeromq/zeromq/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (149, 'IBM Workload Scheduler 9.5', 426, NULL, NULL, 79, NULL, NULL, NULL, NULL, 'https://www.ibm.com/support/pages/ibm-workload-scheduler-95-docker-container-images', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (150, 'IBM Transformation Extender', 426, NULL, NULL, 83, NULL, NULL, NULL, NULL, 'https://www.ibm.com/support/pages/release-notes-ibm-transformation-extender-v1000', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (151, 'openjdk_Windows', 450, 331, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/openjdk', 'Programming Languages', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (152, 'openjdk_Linux', 426, 331, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/openjdk', 'Programming Languages', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (153, 'perl', 426, 347, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/perl/', 'Programming Languages', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (154, 'postgres', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/postgres', 'Databases', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (155, 'solr', 426, NULL, NULL, 11, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/solr/', 'Analytics|Application Services', 'Official Image'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (156, 'odm', 426, NULL, NULL, 73, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/odm/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (157, 'maxdb-provider', 426, NULL, NULL, 176, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/integra/maxdb-provider/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (158, 'mssql-server-windows-developer', 450, NULL, NULL, 120, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/microsoft/mssql-server-windows-developer/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (159, 'mssql-server-windows-express', 450, NULL, NULL, 121, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/microsoft/mssql-server-windows-express/', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (160, 'docker-sybase', 426, NULL, NULL, 190, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nguoianphu/docker-sybase', '', ''); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (161, 'netscaler-cpx', 426, NULL, NULL, 31, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/netscaler-cpx', '', 'Verified Publisher'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (162, 'sqlite', 426, NULL, NULL, 258, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/microsoft-azureiotedge-sqlite', '', 'Verified Publisher'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (163, 'vb', 426, 368, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/microsoft-dotnet-framework', 'Programming Languages', 'Verified Publisher'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (164, 'adobecoldfusion/coldfusion', 426, NULL, NULL, 37, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/adobecoldfusion/coldfusion', '', 'False'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (165, 'ibmcom/db2', 426, NULL, NULL, 43, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/db2', '', 'False'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (166, 'bitnami/mongodb', 426, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/mongodb', '', 'False'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (167, 'bitnami/openldap', 426, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/openldap', '', 'False'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (168, 'bitnami/postgresql', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/postgresql', '', 'False'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (169, 'redis', 426, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/redis', '', 'True'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (170, 'sentry', 426, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/sentry', '', 'True'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (171, 'ibmcom/zeromq', 426, NULL, NULL, 248, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/zeromq', '', 'False'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (172, 'bitnami/spark', 426, NULL, NULL, NULL, 280, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/spark', '', 'False'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (173, 'java', 426, 331, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/java', '', 'True'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (174, 'python', 426, 354, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/python', '', 'True'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (175, 'ibmcom/react', 426, NULL, 413, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/react', '', 'False'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (176, 'circleci/android', 418, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/circleci/android', '', 'False'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (177, 'dart', 421, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/dart', '', 'True'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (178, 'centos', 427, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/centos', '', 'True'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (179, 'debian', 429, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/debian', '', 'True'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (180, 'opensuse', 431, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/opensuse', '', 'True'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (181, 'ubuntu', 436, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/ubuntu', '', 'True'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (182, 'fedora', 453, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/fedora', '', 'True'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (183, 'bitnami/wildfly', 426, NULL, NULL, NULL, NULL, NULL, 493, NULL, 'https://hub.docker.com/r/bitnami/wildfly', '', 'False'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (184, 'docker', 426, NULL, NULL, NULL, NULL, NULL, NULL, 503, 'https://hub.docker.com/_/docker', '', 'True'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (185, 'ibmcom/json', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/json', '', 'False'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (186, 'snyk/snyk', 426, NULL, NULL, 613, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/snyk/snyk', '', 'False'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (187, 'varnish', 426, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'https://hub.docker.com/_/varnish', '', 'True'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (188, 'kasmweb/api', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/kasmweb/api', '', 'False'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (189, 'nuxeo', 426, NULL, NULL, NULL, NULL, NULL, NULL, 620, 'https://hub.docker.com/_/nuxeo', '', 'True'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (190, 'arangodb', 426, NULL, NULL, 621, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/arangodb', '', 'True'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (191, 'bitnami/minio', 426, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/minio', '', 'False'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (192, 'elasticsearch', 426, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/elasticsearch', '', 'True'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (193, 'bitnami/keycloak', 426, NULL, NULL, 628, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/keycloak', '', 'False'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (194, 'grafana/grafana', 426, NULL, NULL, 629, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/grafana/grafana', '', 'False'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (195, 'mariadb', 426, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/mariadb', '', 'True'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (196, 'vault', 426, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/vault', '', 'True'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (197, 'bitnami/etcd', 426, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/etcd', '', 'False'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (198, 'traefik', 426, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://hub.docker.com/_/traefik', '', 'True'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (199, 'bitnami/git', 426, NULL, NULL, 677, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/git', '', 'False'); -INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (200, 'ibmcom/isam', 426, NULL, NULL, 693, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/isam', '', 'False'); - --- Table: entities +INSERT INTO docker_images VALUES(1,'Oracle Middleware (including Oracle Forms & Reports and Oracle Traffic Director)',576,NULL,NULL,137,NULL,NULL,NULL,NULL,'https://github.com/DirkNachbar/Docker','',''); +INSERT INTO docker_images VALUES(2,'eclipse',436,NULL,NULL,46,NULL,NULL,NULL,NULL,'https://github.com/fgrehm/docker-eclipse','',''); +INSERT INTO docker_images VALUES(3,'SAP MaxDB',436,NULL,NULL,176,NULL,NULL,NULL,NULL,'https://github.com/kr428/maxdb-docker','',''); +INSERT INTO docker_images VALUES(4,'IBM Maximo Asset Management',436,NULL,NULL,70,NULL,NULL,NULL,NULL,'https://github.com/nishi2go/maximo-docker','',''); +INSERT INTO docker_images VALUES(5,'Oracle Designer',576,NULL,NULL,135,NULL,NULL,NULL,NULL,'https://github.com/oracle/docker-images','',''); +INSERT INTO docker_images VALUES(6,'Oracle Real Application Clusters (RAC) Database',432,NULL,NULL,141,NULL,NULL,NULL,NULL,'https://github.com/oracle/docker-images/blob/master/OracleDatabase/RAC/OracleRealApplicationClusters/README.md','',''); +INSERT INTO docker_images VALUES(7,'Oracle Database Windows',580,NULL,NULL,134,NULL,NULL,NULL,NULL,'https://github.com/oracle/docker-images/issues/1054','',''); +INSERT INTO docker_images VALUES(8,'Oracle Siebel',432,NULL,NULL,182,NULL,NULL,NULL,NULL,'https://github.com/OracleSiebel/ConfiguringSiebel/tree/master/Containerization/Docker','',''); +INSERT INTO docker_images VALUES(9,'OpenLDAP',576,NULL,NULL,126,NULL,NULL,NULL,NULL,'https://github.com/osixia/docker-openldap','',''); +INSERT INTO docker_images VALUES(10,'Tivoli Monitoring Server (HUB TEMS)',576,NULL,NULL,77,NULL,NULL,NULL,NULL,'https://github.com/sambr7/itm6hub','',''); +INSERT INTO docker_images VALUES(11,'CA Wily Introscope',576,NULL,NULL,23,NULL,NULL,NULL,NULL,'https://github.com/stefansiegl/docker-introscope','',''); +INSERT INTO docker_images VALUES(12,'drupal',576,NULL,NULL,45,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/drupal/','Application Frameworks','Official Image'); +INSERT INTO docker_images VALUES(13,'gcc',576,583,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/gcc','DevOps Tools|Application Frameworks','Official Image'); +INSERT INTO docker_images VALUES(14,'glassfish',576,333,NULL,NULL,263,NULL,NULL,NULL,'https://hub.docker.com/_/glassfish','','Official Image'); +INSERT INTO docker_images VALUES(15,'golang_Windows',580,323,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/golang','Programming Languages','Official Image'); +INSERT INTO docker_images VALUES(16,'golang_Linux',576,323,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/golang','Programming Languages','Official Image'); +INSERT INTO docker_images VALUES(17,'groovy',576,325,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/groovy/','Programming Languages','Official Image'); +INSERT INTO docker_images VALUES(18,'haproxy',576,NULL,NULL,NULL,264,NULL,NULL,NULL,'https://hub.docker.com/_/haproxy','Application Infrastructure','Official Image'); +INSERT INTO docker_images VALUES(19,'httpd',576,NULL,NULL,NULL,259,NULL,NULL,NULL,'https://hub.docker.com/_/httpd','Application Infrastructure','Official Image'); +INSERT INTO docker_images VALUES(20,'IBM Security Access Manager',576,NULL,NULL,220,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/isam','Security|Application Infrastructure',''); +INSERT INTO docker_images VALUES(21,'jenkins',576,NULL,NULL,90,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/jenkins/','DevOps Tools','Official Image'); +INSERT INTO docker_images VALUES(22,'MarkLogic',576,NULL,NULL,97,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/marklogic','Analytics|Databases|Application Infrastructure','Verified Publisher'); +INSERT INTO docker_images VALUES(23,'memcached',576,NULL,NULL,98,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/memcached','Storage','Official Image'); +INSERT INTO docker_images VALUES(24,'.NET Framework',580,NULL,NULL,NULL,NULL,NULL,NULL,497,'https://hub.docker.com/_/microsoft-dotnet-framework','Base Images ::: runtime library : uClibc, musl','Verified Publisher, Docker Certified'); +INSERT INTO docker_images VALUES(25,'ASP.NET',580,NULL,NULL,NULL,NULL,NULL,NULL,592,'https://hub.docker.com/_/microsoft-dotnet-framework-aspnet','','Verified Publisher, Docker Certified'); +INSERT INTO docker_images VALUES(26,'Java SE JRE_Windows',580,NULL,NULL,NULL,NULL,NULL,NULL,506,'https://hub.docker.com/_/microsoft-java-jre','Base Images','Verified Publisher, Docker Certified'); +INSERT INTO docker_images VALUES(27,'Java SE JRE_Linux',576,NULL,NULL,NULL,NULL,NULL,NULL,506,'https://hub.docker.com/_/microsoft-java-jre','Base Images ::: splitted from original Row #35: "Java SE JRE"','Verified Publisher, Docker Certified'); +INSERT INTO docker_images VALUES(28,'Microsoft SQL Server',576,NULL,NULL,581,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-mssql-server','Base Images','Verified Publisher'); +INSERT INTO docker_images VALUES(29,'Windows IIS',580,NULL,NULL,NULL,609,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-windows-servercore-iis','Base Images','Verified Publisher'); +INSERT INTO docker_images VALUES(30,'Mongo_Windows',452,NULL,NULL,116,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/mongo','Databases','Official Image'); +INSERT INTO docker_images VALUES(31,'Mongo_Linux',576,NULL,NULL,116,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/mongo','Databases','Official Image'); +INSERT INTO docker_images VALUES(32,'mysql',576,NULL,NULL,122,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/mysql','Databases','Official Image'); +INSERT INTO docker_images VALUES(33,'neo4j',576,NULL,NULL,123,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/neo4j','Databases','Official Image'); +INSERT INTO docker_images VALUES(34,'nginx',576,NULL,NULL,NULL,274,NULL,NULL,NULL,'https://hub.docker.com/_/nginx','Application Infrastructure','Official Image'); +INSERT INTO docker_images VALUES(35,'node',576,NULL,NULL,NULL,NULL,NULL,NULL,507,'https://hub.docker.com/_/node/','Application Infrastructure','Official Image'); +INSERT INTO docker_images VALUES(36,'Oracle Database Enterprise Edition',576,NULL,NULL,134,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/oracle-database-enterprise-edition','Databases','Verified Publisher, Docker Certified'); +INSERT INTO docker_images VALUES(37,'Oracle WebLogic Server',576,333,NULL,NULL,600,NULL,NULL,NULL,'https://hub.docker.com/_/oracle-weblogic-server-12c','Application Frameworks|Application Infrastructure','Verified Publisher, Docker Certified'); +INSERT INTO docker_images VALUES(38,'Progress Application Server (PAS) for OpenEdge',576,344,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/pasoe','Application Infrastructure|Base Images','Verified Publisher, Docker Certified'); +INSERT INTO docker_images VALUES(39,'php',576,586,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/php','Programming Languages','Official Image'); +INSERT INTO docker_images VALUES(40,'Python_Windows',580,587,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/python','Programming Languages','Official Image'); +INSERT INTO docker_images VALUES(41,'Python_Linux',576,587,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/python','Programming Languages','Official Image'); +INSERT INTO docker_images VALUES(42,'r-base',576,355,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/r-base','Application Services','Official Image'); +INSERT INTO docker_images VALUES(43,'rabbitmq',576,NULL,NULL,165,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/rabbitmq','Messaging Services','Official Image'); +INSERT INTO docker_images VALUES(44,'rails',576,588,NULL,NULL,NULL,NULL,NULL,508,'https://hub.docker.com/_/rails/','','Official Image'); +INSERT INTO docker_images VALUES(45,'redis_Windows',580,NULL,NULL,168,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/redis/','Databases','Official Image'); +INSERT INTO docker_images VALUES(46,'redis_Linux',576,NULL,NULL,168,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/redis/','Databases','Official Image'); +INSERT INTO docker_images VALUES(47,'ruby',576,588,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/ruby','Programming Languages','Official Image'); +INSERT INTO docker_images VALUES(48,'SAP HANA, express edition (database and application services)',576,NULL,NULL,175,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/sap-hana-express-edition-incl-application-services','Analytics|Application Infrastructure|Databases','Verified Publisher'); +INSERT INTO docker_images VALUES(49,'Sentry',576,NULL,NULL,180,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/sentry/','Application Infrastructure|DevOps Tools|Monitoring','Verified Publisher'); +INSERT INTO docker_images VALUES(50,'sonarqube',576,584,NULL,186,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/sonarqube/','DevOps Tools','Official Image'); +INSERT INTO docker_images VALUES(51,'swift',576,364,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/swift','Base Images|Programming Languages','Official Image'); +INSERT INTO docker_images VALUES(52,'tomcat',576,584,NULL,NULL,260,NULL,NULL,NULL,'https://hub.docker.com/_/tomcat','Application Infrastructure','Official Image'); +INSERT INTO docker_images VALUES(53,'websphere-liberty',576,584,NULL,NULL,285,NULL,NULL,NULL,'https://hub.docker.com/_/websphere-liberty','','Official Image'); +INSERT INTO docker_images VALUES(54,'wordpress',576,586,NULL,245,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/wordpress/','Application Services','Official Image'); +INSERT INTO docker_images VALUES(55,'xml-to-bootstrap',576,NULL,NULL,596,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/acch/xml-to-bootstrap/','',''); +INSERT INTO docker_images VALUES(56,'asterisk',429,NULL,NULL,14,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/andrius/asterisk','',''); +INSERT INTO docker_images VALUES(57,'ansible',436,NULL,NULL,5,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ansible/ansible','',''); +INSERT INTO docker_images VALUES(58,'ahfcmd',576,NULL,NULL,319,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/antennahouse/ahfcmd','',''); +INSERT INTO docker_images VALUES(59,'oracle-apex-ords',436,NULL,NULL,131,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/araczkowski/oracle-apex-ords/','',''); +INSERT INTO docker_images VALUES(60,'siebelapp',434,NULL,NULL,182,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/azeemdin/siebelapp/','',''); +INSERT INTO docker_images VALUES(61,'bmc',436,NULL,NULL,19,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/baremetalcontainer/bmc','',''); +INSERT INTO docker_images VALUES(62,'riak-kv_Ubuntu',436,584,NULL,170,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/basho/riak-kv/','',''); +INSERT INTO docker_images VALUES(63,'riak-kv_CentOS',427,584,NULL,170,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/basho/riak-kv/','',''); +INSERT INTO docker_images VALUES(64,'hive',576,NULL,NULL,8,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/bde2020/hive','',''); +INSERT INTO docker_images VALUES(65,'cordova',576,NULL,NULL,NULL,NULL,NULL,NULL,501,'https://hub.docker.com/r/beevelop/cordova','',''); +INSERT INTO docker_images VALUES(66,'kafka',429,NULL,NULL,9,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/kafka/','',''); +INSERT INTO docker_images VALUES(67,'postgresql',429,NULL,NULL,157,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/postgresql/','',''); +INSERT INTO docker_images VALUES(68,'reportserver',429,NULL,NULL,21,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/reportserver/','',''); +INSERT INTO docker_images VALUES(69,'spark',429,NULL,NULL,NULL,280,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/spark/','',''); +INSERT INTO docker_images VALUES(70,'chrome',576,NULL,NULL,55,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/browserless/chrome/','',''); +INSERT INTO docker_images VALUES(71,'docker-pentaho',576,NULL,NULL,150,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ca0abinary/docker-pentaho/','',''); +INSERT INTO docker_images VALUES(72,'chef',436,NULL,NULL,27,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/chef/chef/','',''); +INSERT INTO docker_images VALUES(73,'zerto-exporter',576,NULL,NULL,249,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/claranet/zerto-exporter/','',''); +INSERT INTO docker_images VALUES(74,'management_frontend',576,NULL,NULL,308,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/clipper/management_frontend/','',''); +INSERT INTO docker_images VALUES(75,'vmware-tools',436,NULL,NULL,230,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/corfr/vmware-tools/','',''); +INSERT INTO docker_images VALUES(76,'xampp',436,NULL,NULL,246,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/cswl/xampp','',''); +INSERT INTO docker_images VALUES(77,'activiti',576,NULL,NULL,3,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/cwoodcock/activiti/','',''); +INSERT INTO docker_images VALUES(78,'sqlanywhere',436,NULL,NULL,178,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/danpmelo/sqlanywhere/','',''); +INSERT INTO docker_images VALUES(79,'lisp',429,341,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/dexec/lisp','',''); +INSERT INTO docker_images VALUES(80,'webfocus',576,NULL,NULL,232,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/dimitrislp/webfocus','',''); +INSERT INTO docker_images VALUES(81,'apache-servicemix',427,NULL,NULL,10,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/dskow/apache-servicemix/','',''); +INSERT INTO docker_images VALUES(82,'tcl',436,NULL,NULL,365,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/efrecon/tcl/','',''); +INSERT INTO docker_images VALUES(83,'alpine-sass',576,NULL,NULL,361,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ellerbrock/alpine-sass','',''); +INSERT INTO docker_images VALUES(84,'oracle-soa-suite-12c',576,NULL,NULL,145,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/enomoto/oracle-soa-suite-12c/','',''); +INSERT INTO docker_images VALUES(85,'resin',427,NULL,NULL,NULL,278,NULL,NULL,NULL,'https://hub.docker.com/r/expertsystems/resin/','',''); +INSERT INTO docker_images VALUES(86,'docker-cobol',576,594,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/gregcoleman/docker-cobol/','',''); +INSERT INTO docker_images VALUES(87,'svn-apache',576,NULL,NULL,12,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/h0h4/svn-apache/','',''); +INSERT INTO docker_images VALUES(88,'static-file-server',576,NULL,NULL,NULL,NULL,NULL,NULL,505,'https://hub.docker.com/r/halverneus/static-file-server/','',''); +INSERT INTO docker_images VALUES(89,'hbase',576,NULL,NULL,7,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/harisekhon/hbase/','',''); +INSERT INTO docker_images VALUES(90,'ooce',580,NULL,NULL,60,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/hpoo/ooce','',''); +INSERT INTO docker_images VALUES(91,'scala-sbt',576,362,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/hseeberger/scala-sbt/','',''); +INSERT INTO docker_images VALUES(92,'delphi-prod',429,313,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/hunsche/delphi-prod','',''); +INSERT INTO docker_images VALUES(93,'fabric-ca',576,NULL,NULL,422,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/hyperledger/fabric-ca','',''); +INSERT INTO docker_images VALUES(94,'db2',576,NULL,NULL,43,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/db2','',''); +INSERT INTO docker_images VALUES(95,'ibm-http-server',576,NULL,NULL,NULL,265,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/ibm-http-server/','',''); +INSERT INTO docker_images VALUES(96,'iib',576,NULL,NULL,68,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/iib/','',''); +INSERT INTO docker_images VALUES(97,'informix-developer-database',576,NULL,NULL,330,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/informix-developer-database/','',''); +INSERT INTO docker_images VALUES(98,'kitura-ubuntu',436,NULL,NULL,NULL,269,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/kitura-ubuntu/','',''); +INSERT INTO docker_images VALUES(99,'mq',576,NULL,NULL,81,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/mq/','IBM MQ Advanced for Developers',''); +INSERT INTO docker_images VALUES(100,'websphere-portal',576,584,NULL,NULL,286,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/websphere-portal/','',''); +INSERT INTO docker_images VALUES(101,'websphere-traditional',576,584,NULL,NULL,284,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/websphere-traditional/','',''); +INSERT INTO docker_images VALUES(102,'opentext',576,NULL,NULL,127,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ikelso/opentext','',''); +INSERT INTO docker_images VALUES(103,'cognos',576,NULL,NULL,36,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ingvarch/cognos/','',''); +INSERT INTO docker_images VALUES(104,'base',576,NULL,NULL,NULL,268,NULL,NULL,NULL,'https://hub.docker.com/r/jboss/base/','',''); +INSERT INTO docker_images VALUES(105,'wildfly',576,NULL,NULL,NULL,493,NULL,NULL,NULL,'https://hub.docker.com/r/jboss/wildfly/','',''); +INSERT INTO docker_images VALUES(106,'docker-teradata-client',576,NULL,NULL,215,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/jeremymarshall/docker-teradata-client','',''); +INSERT INTO docker_images VALUES(107,'firefox',576,NULL,NULL,117,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/jlesage/firefox','',''); +INSERT INTO docker_images VALUES(108,'nginx-proxy',576,NULL,NULL,NULL,274,NULL,NULL,NULL,'https://hub.docker.com/r/jwilder/nginx-proxy/','',''); +INSERT INTO docker_images VALUES(109,'remedy-admin',576,NULL,NULL,169,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/kliremedy/remedy-admin/','',''); +INSERT INTO docker_images VALUES(110,'uniface',576,NULL,NULL,225,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/lammersma/uniface','',''); +INSERT INTO docker_images VALUES(111,'rv-tibco',576,NULL,NULL,219,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/lingya/rv-tibco','',''); +INSERT INTO docker_images VALUES(112,'openvpn-as',576,NULL,NULL,128,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/linuxserver/openvpn-as/','',''); +INSERT INTO docker_images VALUES(113,'lucee52',576,NULL,NULL,NULL,271,NULL,NULL,NULL,'https://hub.docker.com/r/lucee/lucee52','',''); +INSERT INTO docker_images VALUES(114,'sqldeveloper',576,NULL,NULL,146,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/marcelhuberfoo/sqldeveloper/','',''); +INSERT INTO docker_images VALUES(115,'term_ssh_wine_winmerge',576,NULL,NULL,241,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/marchandd/term_ssh_wine_winmerge/','',''); +INSERT INTO docker_images VALUES(116,'openbd',576,311,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/marcusf/openbd/','',''); +INSERT INTO docker_images VALUES(117,'mdw',576,NULL,NULL,115,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/mdwcore/mdw','',''); +INSERT INTO docker_images VALUES(118,'infobright',576,NULL,NULL,86,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/meatcar/infobright/','',''); +INSERT INTO docker_images VALUES(119,'alpine-expect',576,315,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/mesosphere/alpine-expect/','',''); +INSERT INTO docker_images VALUES(120,'acroread',576,NULL,NULL,4,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/mgor/acroread/','',''); +INSERT INTO docker_images VALUES(121,'dynamics-nav',580,NULL,NULL,101,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/microsoft/dynamics-nav','',''); +INSERT INTO docker_images VALUES(122,'fortran-gfortran',576,322,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nacyot/fortran-gfortran/','',''); +INSERT INTO docker_images VALUES(123,'javascript-node.js',576,589,NULL,NULL,NULL,NULL,NULL,507,'https://hub.docker.com/r/nacyot/javascript-node.js/','',''); +INSERT INTO docker_images VALUES(124,'objectivec-gcc',576,343,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nacyot/objectivec-gcc/','',''); +INSERT INTO docker_images VALUES(125,'pascal-fp_compiler',576,599,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nacyot/pascal-fp_compiler/','',''); +INSERT INTO docker_images VALUES(126,'smalltalk-gnu',576,363,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nacyot/smalltalk-gnu/','',''); +INSERT INTO docker_images VALUES(127,'asp-docker',580,NULL,NULL,NULL,NULL,NULL,NULL,592,'https://hub.docker.com/r/nagaozen/asp-docker','',''); +INSERT INTO docker_images VALUES(128,'nginx-ingress',576,NULL,NULL,88,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nginx/nginx-ingress/','',''); +INSERT INTO docker_images VALUES(129,'nix',576,NULL,NULL,125,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nixos/nix/','',''); +INSERT INTO docker_images VALUES(130,'node-red-docker',576,NULL,NULL,236,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nodered/node-red-docker/','',''); +INSERT INTO docker_images VALUES(131,'graphql-demo',576,324,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/npalm/graphql-demo','',''); +INSERT INTO docker_images VALUES(132,'sas',576,360,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/paulohms/sas/','',''); +INSERT INTO docker_images VALUES(133,'flash',576,NULL,NULL,NULL,NULL,NULL,NULL,504,'https://hub.docker.com/r/pegi3s/flash/','',''); +INSERT INTO docker_images VALUES(134,'vcenter',576,NULL,NULL,231,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/peterneln/vcenter','',''); +INSERT INTO docker_images VALUES(135,'gpdb-devel',576,NULL,NULL,56,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/pivotaldata/gpdb-devel/','',''); +INSERT INTO docker_images VALUES(136,'pivotal-tc-server',576,NULL,NULL,NULL,277,NULL,NULL,NULL,'https://hub.docker.com/r/rbosse/pivotal-tc-server/','',''); +INSERT INTO docker_images VALUES(137,'activemq',576,NULL,NULL,6,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/rmohr/activemq/','',''); +INSERT INTO docker_images VALUES(138,'svf',576,NULL,NULL,240,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/rockysui/svf','',''); +INSERT INTO docker_images VALUES(139,'typescript',576,367,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/sandrokeil/typescript/','',''); +INSERT INTO docker_images VALUES(140,'hadoop-docker',576,NULL,NULL,57,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/sequenceiq/hadoop-docker/','',''); +INSERT INTO docker_images VALUES(141,'nexus3',576,NULL,NULL,124,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/sonatype/nexus3/','',''); +INSERT INTO docker_images VALUES(142,'splunk',576,NULL,NULL,188,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/splunk/splunk/','',''); +INSERT INTO docker_images VALUES(143,'docker-eas-peoplesoft-base',576,NULL,NULL,151,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/uaecs/docker-eas-peoplesoft-base/','',''); +INSERT INTO docker_images VALUES(144,'imsdb',576,NULL,NULL,84,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/vineela/imsdb','',''); +INSERT INTO docker_images VALUES(145,'spfx',576,NULL,NULL,603,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/waldekm/spfx/','',''); +INSERT INTO docker_images VALUES(146,'sysinternals',580,NULL,NULL,193,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/weshigbee/sysinternals/','',''); +INSERT INTO docker_images VALUES(147,'arcgisserver',576,NULL,NULL,NULL,261,NULL,NULL,NULL,'https://hub.docker.com/r/xzdbd/arcgisserver/','',''); +INSERT INTO docker_images VALUES(148,'zeromq',576,NULL,NULL,248,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/zeromq/zeromq/','',''); +INSERT INTO docker_images VALUES(149,'IBM Workload Scheduler 9.5',576,NULL,NULL,79,NULL,NULL,NULL,NULL,'https://www.ibm.com/support/pages/ibm-workload-scheduler-95-docker-container-images','',''); +INSERT INTO docker_images VALUES(150,'IBM Transformation Extender',576,NULL,NULL,83,NULL,NULL,NULL,NULL,'https://www.ibm.com/support/pages/release-notes-ibm-transformation-extender-v1000','',''); +INSERT INTO docker_images VALUES(151,'openjdk_Windows',580,584,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/openjdk','Programming Languages','Official Image'); +INSERT INTO docker_images VALUES(152,'openjdk_Linux',576,584,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/openjdk','Programming Languages','Official Image'); +INSERT INTO docker_images VALUES(153,'perl',576,585,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/perl/','Programming Languages','Official Image'); +INSERT INTO docker_images VALUES(154,'postgres',576,NULL,NULL,157,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/postgres','Databases','Official Image'); +INSERT INTO docker_images VALUES(155,'solr',576,NULL,NULL,11,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/solr/','Analytics|Application Services','Official Image'); +INSERT INTO docker_images VALUES(156,'odm',576,NULL,NULL,73,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/odm/','',''); +INSERT INTO docker_images VALUES(157,'maxdb-provider',576,NULL,NULL,176,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/integra/maxdb-provider/','',''); +INSERT INTO docker_images VALUES(158,'mssql-server-windows-developer',580,NULL,NULL,581,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/microsoft/mssql-server-windows-developer/','',''); +INSERT INTO docker_images VALUES(159,'mssql-server-windows-express',580,NULL,NULL,121,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/microsoft/mssql-server-windows-express/','',''); +INSERT INTO docker_images VALUES(160,'docker-sybase',576,NULL,NULL,190,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nguoianphu/docker-sybase','',''); +INSERT INTO docker_images VALUES(161,'netscaler-cpx',576,NULL,NULL,31,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/netscaler-cpx','','Verified Publisher'); +INSERT INTO docker_images VALUES(162,'sqlite',576,NULL,NULL,258,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-azureiotedge-sqlite','','Verified Publisher'); +INSERT INTO docker_images VALUES(163,'vb',576,368,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-dotnet-framework','Programming Languages','Verified Publisher'); +INSERT INTO docker_images VALUES(164,'Software AG Adabas CE',576,NULL,NULL,656,NULL,NULL,NULL,NULL,'https://github.com/DirkNachbar/Docker','Databases','Verified Publisher'); +INSERT INTO docker_images VALUES(165,'Software AG Natural CE',576,653,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/softwareag-natural-ce','Programming Languages','Verified Publisher'); +INSERT INTO docker_images VALUES(166,'ansible/ansible',576,NULL,NULL,5,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ansible/ansible','',''); +INSERT INTO docker_images VALUES(167,'PowerShell',576,660,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-powershell','','Verified Publisher'); +INSERT INTO docker_images VALUES(168,'PowerShell',580,660,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-powershell','','Verified Publisher'); +INSERT INTO docker_images VALUES(169,'cassandra',576,NULL,NULL,634,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/cassandra','Databases','Official Image'); +INSERT INTO docker_images VALUES(170,'Gitlab Community Edition',576,NULL,NULL,678,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/gitlab-community-edition','DevOps Tool','Verified Publisher'); +INSERT INTO docker_images VALUES(171,'maven',576,584,388,697,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/maven','',NULL); CREATE TABLE entities ( id integer PRIMARY KEY AUTOINCREMENT, entity_name text NOT NULL, @@ -301,706 +228,664 @@ CREATE TABLE entities ( external_link text, COTS TEXT(10) DEFAULT N NOT NULL, Legacy TEXT(10) DEFAULT N NOT NULL, ContainerImage TEXT(10) DEFAULT N NOT NULL, OpenSource TEXT(10) DEFAULT N NOT NULL, FOREIGN KEY (entity_type_id) REFERENCES entity_types (id) ); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (1, '(E)JES', 2, '{''qid'': ''Q355203'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q355203''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (2, 'A-Auto Job Scheduling Software', 2, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (3, 'Activiti', 2, '{''qid'': ''Q344370'', ''types'': [''Q341'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Activiti_(software)''}', 'N', 'Y', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (4, 'Adobe Acrobat Reader', 2, '{''qid'': ''Q207902'', ''types'': [''Q29364197'', ''Q166142''], ''url'': ''http://dbpedia.org/resource/Adobe_Acrobat''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (5, 'Ansible', 2, '{''qid'': ''Q2852503'', ''types'': [''Q29032804''], ''url'': ''http://dbpedia.org/resource/Ansible_(software)''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (6, 'Apache ActiveMQ', 2, '{''qid'': ''Q773135'', ''types'': [''Q6821765'', ''Q1092177'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_ActiveMQ''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (7, 'Apache Hbase', 2, '{''qid'': ''Q2538066'', ''types'': [''Q341'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Apache_HBase''}', 'N', 'Y', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (8, 'Apache Hive', 2, '{''qid'': ''Q4778914'', ''types'': [''Q341'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Apache_Hive''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (9, 'Apache Kafka', 2, '{''qid'': ''Q16235208'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/Apache_Kafka''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (10, 'Apache ServiceMix', 2, '{''qid'': ''Q773212'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_ServiceMix''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (11, 'Apache Solr', 2, '{''qid'': ''Q2858103'', ''types'': [''Q19541'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_Solr''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (12, 'Apache Subversion', 2, '{''qid'': ''Q46794'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Apache_Subversion''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (13, 'Application Development Facility (ADF)', 2, '{''qid'': ''Q5285237'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Django_Software_Foundation''}', 'N', 'Y', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (14, 'Asterisk', 2, '{''qid'': ''Q622754'', ''types'': [''Q1978634''], ''url'': ''http://dbpedia.org/resource/Asterisk_(PBX)''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (15, 'Automic Job Scheduler', 2, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (16, 'Autosys', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (17, 'Bluebeam|Bluebeam Q', 2, '{''qid'': ''Q4930191'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Bluebeam_Software,_Inc.''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (18, 'BMC Control-M', 2, '{''qid'': ''Q4835944'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q4835944''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (19, 'BMC Identity Management', 2, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (20, 'Borland Database Engine (BDE)', 2, '{''qid'': ''Q893888'', ''types'': [''Q537993''], ''url'': ''http://dbpedia.org/resource/Borland_Database_Engine''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (21, 'Business Intelligence and Reporting Tools (BIRT)', 2, '{''qid'': ''Q796007'', ''types'': [''Q341'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/BIRT_Project''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (22, 'CA Gen', 2, '{''qid'': ''Q2125673'', ''types'': [''Q28059995''], ''url'': ''http://dbpedia.org/resource/CA_Gen''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (23, 'CA Introscope', 2, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (24, 'CA-Panvalet', 2, '{''qid'': ''Q17073931'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Panvalet''}', 'Y', 'Y', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (25, 'CA-TELON', 2, '{''qid'': ''Q2383975'', ''types'': [''Q238137''], ''url'': ''http://dbpedia.org/resource/CA-Telon''}', 'Y', 'Y', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (26, 'Casegen', 2, '{}', 'Y', 'Y', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (27, 'Chef Automate', 2, '{''qid'': ''Q24479'', ''types'': [''Q29032804''], ''url'': ''http://dbpedia.org/resource/Chef_(software)''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (28, 'Cisco AMP for Endpoints', 2, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (29, 'CiscoWorks LAN Management Solution (LMS)', 2, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (30, 'Citrix Virtual Apps and Desktops', 2, '{''qid'': ''Q1093482'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/XenApp''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (31, 'Citrix ADC CPX', 2, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (32, 'Citrix Provisioning', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (33, 'Clarify', 2, '{''qid'': ''Q17105097'', ''types'': [''Q1058914''], ''url'': ''http://dbpedia.org/resource/Clarify_Op3nvoice''}', 'Y', 'Y', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (34, 'Clarity LIMS', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (35, 'LabWare LIMS', 2, '{''qid'': ''Q1798149'', ''types'': [''Q121182''], ''url'': ''http://dbpedia.org/resource/Laboratory_information_management_system''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (36, 'Cognos', 2, '{''qid'': ''Q1107048'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Cognos''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (37, 'Coldfusion', 2, '{''qid'': ''Q468446'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Adobe_ColdFusion''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (38, 'ConceptWave', 2, '{}', 'Y', 'Y', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (39, 'CONNAPI', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (40, 'Connect Direct', 2, '{''qid'': ''Q369085'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Connect:Direct''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (41, 'Cornerstone software', 2, '{''qid'': ''Q5171657'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Cornerstone_(software)''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (42, 'Crystal Reports', 2, '{''qid'': ''Q1142403'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/Crystal_Reports''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (43, 'DB2', 2, '{''qid'': ''Q431195'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/IBM_DB2''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (44, 'Documentum Content Server', 2, '{''qid'': ''Q5287684'', ''types'': [''Q247423'', ''Q1344636''], ''url'': ''http://dbpedia.org/resource/Documentum''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (45, 'Drupal', 2, '{''qid'': ''Q170855'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/Drupal''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (46, 'Eclipse', 2, '{''qid'': ''Q82268'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/Eclipse_(software)''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (47, 'Elastic (ELK) Stack', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (48, 'ETAP License Manager (LM)', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (49, 'ExamDiff', 2, '{''qid'': ''Q5419269'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ExamDiff_Pro''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (50, 'F5 Secure Web Gateway Services', 2, '{}', 'Y', 'Y', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (51, 'FileMaker Pro', 2, '{''qid'': ''Q1982831'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/FileMaker''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (52, 'FlexNet Manager Suite', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (53, 'FTP Voyager', 2, '{''qid'': ''Q1389773'', ''types'': [''Q3503189'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/FTP_Voyager''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (54, 'Genymotion', 2, '{''qid'': ''Q105239167'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105239167''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (55, 'Google Chrome', 2, '{''qid'': ''Q777'', ''types'': [''Q6368''], ''url'': ''http://dbpedia.org/resource/Google_Chrome''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (56, 'Greenplum DB', 2, '{''qid'': ''Q4039706'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Greenplum''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (57, 'Hadoop', 2, '{''qid'': ''Q29120'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Apache_Hadoop''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (58, 'HP aC++ compiler', 2, '{''qid'': ''Q5635754'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/HP_aC++''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (59, 'HP C/ANSI C compiler', 2, '{''qid'': ''Q4045464'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Norcroft_C_compiler''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (60, 'HP Operations Orchestration (HPOO)', 2, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (61, 'HP Server Automation (HPSA)', 2, '{}', 'Y', 'Y', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (62, 'IBM BigFix Platform', 2, '{''qid'': ''Q7810432'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_BigFix''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (63, 'IBM Business Monitor', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (64, 'IBM Business Process Manager', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (65, 'IBM Content Manager OnDemand (CMOD)', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (66, 'IBM FileNet P8 Platform', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (67, 'IBM InfoSphere DataStage', 2, '{''qid'': ''Q5968866'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_InfoSphere_DataStage''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (68, 'IBM Integration Bus', 2, '{''qid'': ''Q5969139'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Integration_Bus''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (69, 'IBM License Metric Tool', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (70, 'IBM Maximo', 2, '{''qid'': ''Q55622518'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Maximo_(MRO)''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (71, 'IBM Migration Utility', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (72, 'IBM Mobile Foundation', 2, '{''qid'': ''Q25324136'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_MobileFirst''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (73, 'IBM Operational Decision Manager (ODM)', 2, '{''qid'': ''Q16928000'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Operational_Decision_Management''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (74, 'IBM Spectrum Scale', 2, '{''qid'': ''Q2389927'', ''types'': [''Q174989'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_General_Parallel_File_System''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (75, 'IBM Tivoli Asset Management', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (76, 'IBM Tivoli Composite Application Manager', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (77, 'IBM Tivoli Monitoring', 2, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (78, 'IBM Tivoli Storage Manager', 2, '{''qid'': ''Q2001900'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Storage_Manager''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (79, 'IBM Tivoli Workload Scheduler (TWS)', 2, '{''qid'': ''None'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Workload_Scheduler''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (80, 'IBM WebSphere Business Integration Adaptor', 2, '{''qid'': ''Q5969131'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Adapters''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (81, 'IBM Websphere MQ', 2, '{''qid'': ''Q528294'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_MQ''}', 'N', 'Y', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (82, 'IBM WebSphere MQ Telemetry', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (83, 'IBM WebSphere Transformation Extender (WTX)', 2, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (84, 'IMS DB', 2, '{''qid'': ''Q1571984'', ''types'': [''Q871236'', ''Q4388320'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/IBM_Information_Management_System''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (85, 'Info-ZIP', 2, '{''qid'': ''Q1662431'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Info-ZIP''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (86, 'Infobright Community Edition (ICE)', 2, '{''qid'': ''Q3150805'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Infobright''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (87, 'Informatica PowerCenter', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (88, 'Ingres', 2, '{''qid'': ''Q60463'', ''types'': [''Q1130645'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Ingres_(database)''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (89, 'JBoss|JBoss Enterprise Service Bus', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (90, 'Jenkins', 2, '{''qid'': ''Q7491312'', ''types'': [''Q16947796''], ''url'': ''http://dbpedia.org/resource/Jenkins_(software)''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (91, 'joinIT', 2, '{}', 'N', 'N', 'Y*', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (92, 'LifeFlow', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (93, 'Lotus Notes', 2, '{''qid'': ''Q60198'', ''types'': [''Q474157'', ''Q28601953'', ''Q131093''], ''url'': ''http://dbpedia.org/resource/IBM_Notes''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (94, 'MaaS360', 2, '{''qid'': ''Q39089630'', ''types'': [''None''], ''url'': ''None''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (95, 'Malwarebytes Anti-Malware', 2, '{''qid'': ''Q1783235'', ''types'': [''Q13429867''], ''url'': ''http://dbpedia.org/resource/Malwarebytes_Anti-Malware''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (96, 'ManageEngine ADSelfService Plus', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (97, 'MarkLogic DB', 2, '{''qid'': ''Q6766381'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/MarkLogic''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (98, 'Memcached', 2, '{''qid'': ''Q306661'', ''types'': [''Q165596'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Memcached''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (99, 'Microsoft Access', 2, '{''qid'': ''Q80689'', ''types'': [''Q218616'', ''Q176165'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_Access''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (100, 'Microsoft BizTalk Adapters for Host Systems', 2, '{''qid'': ''Q904150'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_BizTalk_Server''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (101, 'Microsoft Dynamics AX', 2, '{''qid'': ''Q675860'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_Dynamics_AX''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (102, 'Microsoft Endpoint Configuration Manager (SCCM)', 2, '{''qid'': ''Q2061082'', ''types'': [''Q312466'', ''Q1371279''], ''url'': ''http://dbpedia.org/resource/System_Center_Configuration_Manager''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (103, 'Microsoft Excel', 2, '{''qid'': ''Q11272'', ''types'': [''Q218616'', ''Q183197''], ''url'': ''http://dbpedia.org/resource/Microsoft_Excel''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (104, 'Microsoft Exchange Server', 2, '{''qid'': ''Q223653'', ''types'': [''Q474157'', ''Q859477'', ''Q2933820''], ''url'': ''http://dbpedia.org/resource/Microsoft_Exchange_Server''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (105, 'Microsoft Forefront Identity Manager (FIM)', 2, '{''qid'': ''Q5468182'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Forefront_Identity_Manager''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (106, 'Microsoft InfoPath', 2, '{''qid'': ''Q706294'', ''types'': [''Q474157'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_InfoPath''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (107, 'Microsoft Internet Explorer', 2, '{''qid'': ''Q1575'', ''types'': [''Q218616'', ''Q498267'', ''Q6368''], ''url'': ''http://dbpedia.org/resource/Internet_Explorer''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (108, 'Microsoft ISA Server', 2, '{''qid'': ''Q632851'', ''types'': [''Q40056''], ''url'': ''http://dbpedia.org/resource/Microsoft_Forefront_Threat_Management_Gateway''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (109, 'Microsoft MQ', 2, '{''qid'': ''Q1931595'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Microsoft_Message_Queuing''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (110, 'Microsoft System Center Endpoint Protection', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (111, 'Microsoft Visual Studio', 2, '{''qid'': ''Q134067'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/Microsoft_Visual_Studio''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (112, 'Microsoft Web Deploy', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (113, 'Microsoft Web Farm Framework (WFF)', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (114, 'Microsoft Web Platform Installer', 2, '{''qid'': ''Q976637'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Web_Platform_Installer''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (115, 'Model Driven Workflow (MDW)', 2, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (116, 'MongoDB', 2, '{''qid'': ''Q1165204'', ''types'': [''Q1235236'', ''Q176165'', ''Q82231''], ''url'': ''http://dbpedia.org/resource/MongoDB''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (117, 'Mozilla Firefox', 2, '{''qid'': ''Q698'', ''types'': [''Q6368''], ''url'': ''http://dbpedia.org/resource/Firefox''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (118, 'MQ Client', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (119, 'MS Office 365', 2, '{''qid'': ''Q775811'', ''types'': [''Q1254596'', ''Q26674207''], ''url'': ''http://dbpedia.org/resource/Office_365''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (120, 'MS SQL Server', 2, '{''qid'': ''Q215819'', ''types'': [''Q218616'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_SQL_Server''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (121, 'MS SQL Server Compact', 2, '{''qid'': ''Q1814028'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Compact''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (122, 'MySQL', 2, '{''qid'': ''Q850'', ''types'': [''Q1371279'', ''Q1130645'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/MySQL''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (123, 'Neo4j', 2, '{''qid'': ''Q1628290'', ''types'': [''Q99510066'', ''Q218616'', ''Q595971'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Neo4j''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (124, 'Nexus Repository OSS', 2, '{}', 'N', 'Y', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (125, 'Nix package manager', 2, '{''qid'': ''Q7041957'', ''types'': [''Q891055'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Nix_package_manager''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (126, 'OpenLDAP', 2, '{''qid'': ''Q682918'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/OpenLDAP''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (127, 'OpenText Exstream', 2, '{''qid'': ''Q5421776'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Exstream_Software''}', 'N', 'Y', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (128, 'OpenVPN', 2, '{''qid'': ''Q509075'', ''types'': [''Q166142'', ''Q341''], ''url'': ''http://dbpedia.org/resource/OpenVPN''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (129, 'Oracle Access Management', 2, '{''qid'': ''Q7099276'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Identity_Management''}', 'Y', 'Y', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (130, 'Oracle ADF', 2, '{''qid'': ''Q1853309'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Development_Framework''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (131, 'Oracle APEX', 2, '{''qid'': ''Q1908291'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Express''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (132, 'Oracle BI Publisher', 2, '{''qid'': ''Q7099244'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_BI_Publisher''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (133, 'Oracle Business Intelligence', 2, '{''qid'': ''Q7099251'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Business_Intelligence_Suite_Enterprise_Edition''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (134, 'Oracle Database', 2, '{''qid'': ''Q185524'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/Oracle_Database''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (135, 'Oracle Designer', 2, '{''qid'': ''Q7099261'', ''types'': [''Q28059995''], ''url'': ''http://dbpedia.org/resource/Oracle_Designer''}', 'N', 'Y', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (136, 'Oracle Enterprise Manager', 2, '{''qid'': ''Q7099266'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Enterprise_Manager''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (137, 'Oracle Forms', 2, '{''qid'': ''Q744707'', ''types'': [''Q756637''], ''url'': ''http://dbpedia.org/resource/Oracle_Forms''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (138, 'Oracle Hyperion|Hyperion Interactive Reporting', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (139, 'Oracle Hyperion|Hyperion Planning', 2, '{''qid'': ''Q5958168'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q5958168''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (140, 'Oracle Net Services', 2, '{''qid'': ''Q7099283'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Net_Services''}', 'Y', 'Y', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (141, 'Oracle Real Application Clusters (RAC)', 2, '{''qid'': ''Q1418481'', ''types'': [''Q28057052''], ''url'': ''http://dbpedia.org/resource/Oracle_RAC''}', 'N', 'Y', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (142, 'Oracle Retail Point-of-Service', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (143, 'Oracle Service Bus', 2, '{''qid'': ''Q7099295'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Service_Bus''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (144, 'Oracle Smart View', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (145, 'Oracle SOA Suite', 2, '{''qid'': ''Q7099294'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_SOA_Suite''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (146, 'Oracle SQL Developer', 2, '{''qid'': ''Q931351'', ''types'': [''Q13741'', ''Q47607''], ''url'': ''http://dbpedia.org/resource/Oracle_SQL_Developer''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (147, 'Oracle TimesTen In-Memory Database', 2, '{''qid'': ''Q3991449'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/TimesTen''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (148, 'Oracle Warehouse Builder (OWB)', 2, '{''qid'': ''Q3354986'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Warehouse_Builder''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (149, 'Orbix', 2, '{''qid'': ''Q4045955'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Orbix_(software)''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (150, 'Pentaho', 2, '{''qid'': ''Q644841'', ''types'': [''Q341'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Pentaho''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (151, 'PeopleSoft', 2, '{''qid'': ''Q1928814'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/PeopleSoft''}', 'N', 'Y', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (152, 'Perkin Elmer Informatics (PKI)', 2, '{}', 'Y', 'Y', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (153, 'Pervasive PSQL', 2, '{''qid'': ''Q7171236'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Pervasive_PSQL''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (154, 'PIPE-FLO', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (155, 'PKZIP', 2, '{''qid'': ''Q1602149'', ''types'': [''Q25303924''], ''url'': ''http://dbpedia.org/resource/PKZIP''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (156, 'Planview', 2, '{''qid'': ''Q19903554'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Planview''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (157, 'PostgreSQL', 2, '{''qid'': ''Q192490'', ''types'': [''Q341'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/PostgreSQL''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (158, 'Powerbuilder', 2, '{''qid'': ''Q580882'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/PowerBuilder''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (159, 'Primavera P6', 2, '{''qid'': ''Q2111327'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Primavera_(software)''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (160, 'Pro*COBOL', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (161, 'ProjectWise', 2, '{''qid'': ''Q7248950'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/ProjectWise''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (162, 'ProjectWise Web Server', 2, '{''qid'': ''Q7248950'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/ProjectWise''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (163, 'PVCS Version Manager', 2, '{''qid'': ''Q3359906'', ''types'': [''Q3257930'', ''Q55680343''], ''url'': ''http://dbpedia.org/resource/PVCS''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (164, 'QlikView', 2, '{''qid'': ''Q105859488'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105859488''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (165, 'RabbitMQ', 2, '{''qid'': ''Q2081413'', ''types'': [''Q6821765'', ''Q341''], ''url'': ''http://dbpedia.org/resource/RabbitMQ''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (166, 'Rational ClearCase', 2, '{''qid'': ''Q593863'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Rational_ClearCase''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (167, 'Rational ClearQuest', 2, '{''qid'': ''Q1493633'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Rational_ClearQuest''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (168, 'Redis', 2, '{''qid'': ''Q2136322'', ''types'': [''Q82231''], ''url'': ''http://dbpedia.org/resource/Redis''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (169, 'Remedy', 2, '{''qid'': ''Q7311616'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Remedy_Debugger''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (170, 'Riak', 2, '{''qid'': ''Q2328712'', ''types'': [''Q506883'', ''Q20706915'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Riak''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (171, 'RightFax', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (172, 'Rumba', 2, '{''qid'': ''Q21684437'', ''types'': [''Q1544863'', ''Q3328778''], ''url'': ''http://dbpedia.org/resource/Rumba''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (173, 'SAP BusinessObjects BI server', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (174, 'SAP ERP', 2, '{''qid'': ''Q167533'', ''types'': [''Q28057030''], ''url'': ''http://dbpedia.org/resource/SAP_ERP''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (175, 'SAP HANA DB', 2, '{''qid'': ''Q951374'', ''types'': [''Q1572823'', ''Q166142'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/SAP_HANA''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (176, 'SAP MaxDB', 2, '{''qid'': ''Q2143312'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/MaxDB''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (177, 'SAP NetWeaver Business Warehouse', 2, '{''qid'': ''Q1269377'', ''types'': [''Q193351''], ''url'': ''http://dbpedia.org/resource/SAP_NetWeaver_Business_Warehouse''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (178, 'SAP SQL Anywhere', 2, '{''qid'': ''Q2247564'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQL_Anywhere''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (179, 'SAP Web Dynpro', 2, '{''qid'': ''Q1804792'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Web_Dynpro''}', 'Y', 'Y', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (180, 'Sentry', 2, '{''qid'': ''Q3478803'', ''types'': [''Q58778''], ''url'': ''http://dbpedia.org/resource/Sentry_(monitoring_system)''}', 'N', 'Y', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (181, 'SharePoint', 2, '{''qid'': ''Q18833'', ''types'': [''Q1371279'', ''Q1344636'', ''Q131093'', ''Q831677'', ''Q615985''], ''url'': ''http://dbpedia.org/resource/SharePoint''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (182, 'Siebel', 2, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (183, 'SNA Manager', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (184, 'SnagIt', 2, '{''qid'': ''Q1776235'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Snagit''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (185, 'solidDB', 2, '{''qid'': ''Q7557804'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SolidDB''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (186, 'SonarQube', 2, '{''qid'': ''Q541691'', ''types'': [''Q28061130'', ''Q341''], ''url'': ''http://dbpedia.org/resource/SonarQube''}', 'N', 'Y', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (187, 'SpaceMonger', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (188, 'Splunk', 2, '{''qid'': ''Q1835753'', ''types'': [''Q1058914'', ''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Splunk''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (189, 'SQLIO', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (190, 'Sybase SQL Server', 2, '{''qid'': ''Q2576415'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/Adaptive_Server_Enterprise''}', 'N', 'Y', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (191, 'Syncsort', 2, '{''qid'': ''Q7662279'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Syncsort''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (192, 'Sysinternal Tools', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (193, 'Sysinternal Tools|*', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (194, 'Sysinternal Tools|AccessEnum', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (195, 'Sysinternal Tools|ClockRes', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (196, 'Sysinternal Tools|Coreinfo', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (197, 'Sysinternal Tools|DiskExt', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (198, 'Sysinternal Tools|DiskMon', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (199, 'Sysinternal Tools|Hex2dec', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (200, 'Sysinternal Tools|Junction', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (201, 'Sysinternal Tools|LDMDump', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (202, 'Sysinternal Tools|LoadOrder', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (203, 'Sysinternal Tools|PipeList', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (204, 'Sysinternal Tools|Process Explorer', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (205, 'Sysinternal Tools|PsKill', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (206, 'Sysinternal Tools|PsPasswd', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (207, 'Sysinternal Tools|SDelete', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (208, 'Sysinternal Tools|ShareEnum', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (209, 'Sysinternal Tools|Sync', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (210, 'Sysinternal Tools|TCPView', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (211, 'Sysinternal Tools|VMMap', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (212, 'Sysinternal Tools|Whois', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (213, 'Tableau', 2, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (214, 'TCPLink Enterprise Server', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (215, 'Teradata', 2, '{''qid'': ''Q430745'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Teradata''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (216, 'Teradata QS Server', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (217, 'TIBCO Business Works (BW)', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (218, 'TIBCO InConcert', 2, '{}', 'Y', 'Y', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (219, 'TIBCO Rendezvous', 2, '{''qid'': ''Q11198794'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/TIBCO_Rendezvous''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (220, 'Tivoli Access Manager (TAM)', 2, '{''qid'': ''None'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Access_Manager''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (221, 'TortoiseCVS', 2, '{''qid'': ''Q2883113'', ''types'': [''Q166142'', ''Q341''], ''url'': ''http://dbpedia.org/resource/TortoiseCVS''}', 'Y', 'N', 'N', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (222, 'TortoiseSVN', 2, '{''qid'': ''Q1062467'', ''types'': [''Q166142'', ''Q1130645''], ''url'': ''http://dbpedia.org/resource/TortoiseSVN''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (223, 'TSO/ISPF', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (224, 'TWS zCentric', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (225, 'Uniface', 2, '{''qid'': ''Q2143563'', ''types'': [''Q9143'', ''Q13741'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/Uniface_(programming_language)''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (226, 'ViewNow X Server', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (227, 'Virtual I/O Server', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (228, 'Visibroker', 2, '{''qid'': ''Q7936097'', ''types'': [''Q146768''], ''url'': ''http://dbpedia.org/resource/Visibroker''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (229, 'VMware Solution Exchange Marketplace (VSX)', 2, '{}', 'Y', 'Y', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (230, 'VMware Tools', 2, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (231, 'VMware vCenter', 2, '{''qid'': ''Q55636858'', ''types'': [''Q218616'', ''Q1371279''], ''url'': ''None''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (232, 'WebFOCUS', 2, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (233, 'WebLogic Integration', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (234, 'WebSphere Commerce Suite (WCS)', 2, '{''qid'': ''Q5969126'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebSphere_Commerce''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (235, 'WebSphere Message Broker', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (236, 'Wherescape Red', 2, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (237, 'Windchill', 2, '{''qid'': ''Q8024086'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Windchill_(software)''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (238, 'Windows Indexing Service', 2, '{''qid'': ''Q575974'', ''types'': [''Q1138815''], ''url'': ''http://dbpedia.org/resource/Indexing_Service''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (239, 'Windows Terminal Server (WTS)', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (240, 'WingArc SVF', 2, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (241, 'WinMerge', 2, '{''qid'': ''Q250602'', ''types'': [''Q341'', ''Q2990323''], ''url'': ''http://dbpedia.org/resource/WinMerge''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (242, 'WinRAR', 2, '{''qid'': ''Q242747'', ''types'': [''Q25303924'', ''Q185534''], ''url'': ''http://dbpedia.org/resource/WinRAR''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (243, 'WinSCP', 2, '{''qid'': ''Q1160381'', ''types'': [''Q3503189'', ''Q2158576'', ''Q341''], ''url'': ''http://dbpedia.org/resource/WinSCP''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (244, 'Wise Package Studio', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (245, 'Wordpress', 2, '{''qid'': ''Q13166'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/WordPress''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (246, 'XAMPP', 2, '{''qid'': ''Q324073'', ''types'': [''Q100528793'', ''Q341''], ''url'': ''http://dbpedia.org/resource/XAMPP''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (247, 'ZAP BI', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (248, 'ZeroMQ', 2, '{''qid'': ''Q8079189'', ''types'': [''Q188860'', ''Q341''], ''url'': ''http://dbpedia.org/resource/ZeroMQ''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (249, 'Zerto Virtual Replication', 2, '{''qid'': ''Q8069662'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Zerto''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (250, 'IBM PowerHA', 2, '{''qid'': ''Q10850880'', ''types'': [''Q28057052'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_High_Availability_Cluster_Multiprocessing''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (251, 'Tivoli Netcool/OMNIbus', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (252, 'IBM ILOG Views', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (253, 'IBM ILOG CPLEX', 2, '{''qid'': ''Q2372381'', ''types'': [''Q74086777''], ''url'': ''http://dbpedia.org/resource/CPLEX''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (254, 'IBM ILOG Jviews', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (255, 'IBM ILOG Elixir', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (256, 'IBM ILOG Supply Chain Apps', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (257, 'ILOG Solver', 2, '{''qid'': ''Q2011386'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/ILOG''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (258, 'SQLite', 2, '{''qid'': ''Q319417'', ''types'': [''Q35687379'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQLite''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (259, 'Apache HTTP Server', 8, '{''qid'': ''Q11354'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/Apache_HTTP_Server''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (260, 'Apache Tomcat', 8, '{''qid'': ''Q507430'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Apache_Tomcat''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (261, 'ArcGIS Server', 8, '{''qid'': ''Q4784987'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ArcGIS_Server''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (262, 'Oracle WebLogic Server', 8, '{''qid'': ''Q83589'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_WebLogic_Server''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (263, 'GlassFish', 8, '{''qid'': ''Q68847'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/GlassFish''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (264, 'HAProxy', 8, '{''qid'': ''Q5628948'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/HAProxy''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (265, 'IBM HTTP Server', 8, '{''qid'': ''Q821668'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/IBM_HTTP_Server''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (266, 'IIS', 8, '{''qid'': ''Q11341'', ''types'': [''Q218616'', ''Q18287040''], ''url'': ''http://dbpedia.org/resource/Internet_Information_Services''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (267, 'JBoss', 8, '{''qid'': ''Q485593'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/JBoss_(company)''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (268, 'JBoss|*', 8, '{''qid'': ''Q485593'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/JBoss_(company)''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (269, 'Kitura', 8, '{''qid'': ''Q28130427'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Kitura''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (270, 'Lotus Domino', 8, '{''qid'': ''Q1069529'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q1069529''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (271, 'Lucee', 8, '{''qid'': ''Q105180640'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Lucee''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (272, 'Netscape Application Server (NAS)', 8, '{''qid'': ''Q7000305'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Netscape_Application_Server''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (273, 'Netscape Enterprise Server (NES)', 8, '{''qid'': ''Q478430'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q478430''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (274, 'Nginx', 8, '{''qid'': ''Q306144'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/Nginx''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (275, 'Oracle Application Server', 8, '{''qid'': ''Q2027912'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Server''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (276, 'Oracle WebCenter Content Server', 8, '{''qid'': ''Q2309159'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/Oracle_WebCenter''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (277, 'Pivotal tc Server', 8, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (278, 'Resin Web Server', 8, '{''qid'': ''Q2145742'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Resin_(software)''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (279, 'SAP NetWeaver App Server', 8, '{''qid'': ''Q2204924'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/SAP_NetWeaver''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (280, 'Spark', 8, '{''qid'': ''Q20712258'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Spark_(software)''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (281, 'Oracle iPlanet Web Server', 8, '{''qid'': ''Q1225115'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_iPlanet_Web_Server''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (282, 'UltiDev Web Server Pro (UWS)', 8, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (283, 'webMethods Integration Server', 8, '{''qid'': ''Q7978461'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebMethods_Integration_Server''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (284, 'Websphere Application Server (WAS)', 8, '{''qid'': ''Q81612'', ''types'': [''Q1330336'', ''Q71550''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Application_Server''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (285, 'WebSphere Liberty', 8, '{''qid'': ''Q2536917'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q2536917''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (286, 'WebSphere Portal Server', 8, '{''qid'': ''Q4053022'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebSphere_Portal''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (287, 'Websphere Process Server', 8, '{''qid'': ''Q5969143'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Process_Server''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (288, 'WebSphere Process Server', 8, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (289, 'Oracle Real-Time Decisions (RTD)', 8, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (290, 'CA API Gateway', 4, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (291, 'Citrix ADC SDX', 4, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (292, 'Citrix ADC MPX', 4, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (293, 'HP Nonstop', 4, '{''qid'': ''Q826798'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/NonStop_(server_computers)''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (294, 'IBM DataPower Gateway', 4, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (295, 'IBM Power Systems', 4, '{''qid'': ''Q2040857'', ''types'': [''Q10929058''], ''url'': ''http://dbpedia.org/resource/IBM_Power_Systems''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (296, 'Intel Xeon Processor', 4, '{''qid'': ''Q656154'', ''types'': [''Q431289'', ''Q12047070''], ''url'': ''http://dbpedia.org/resource/Xeon''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (297, 'Net Optics Taps', 4, '{''qid'': ''Q17114213'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Net_Optics''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (298, 'Oracle Exadata', 4, '{''qid'': ''Q4038419'', ''types'': [''Q68''], ''url'': ''http://dbpedia.org/resource/Oracle_Exadata''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (299, 'AutoIt', 9, '{''qid'': ''Q784845'', ''types'': [''Q187432'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/AutoIt''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (300, 'AWK', 9, '{''qid'': ''Q213970'', ''types'': [''Q1418502'', ''Q187432'', ''Q28919945'', ''Q18343316'', ''Q287472''], ''url'': ''http://dbpedia.org/resource/AWK''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (301, 'BASIC', 9, '{''qid'': ''Q42979'', ''types'': [''Q79872'', ''Q1418502'', ''Q28922854'', ''Q9143'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/BASIC''}', 'N', 'Y', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (302, 'Brainscript', 9, '{}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (303, 'C', 9, '{''qid'': ''Q15777'', ''types'': [''Q28922885'', ''Q28920117'', ''Q9143'', ''Q21562092'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C_(programming_language)''}', 'N', 'Y', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (304, 'C#', 9, '{''qid'': ''Q2370'', ''types'': [''Q9143'', ''Q12772052''], ''url'': ''http://dbpedia.org/resource/C_Sharp_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (305, 'C++', 9, '{''qid'': ''Q2407'', ''types'': [''Q28923026'', ''Q12772052'', ''Q28922885'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q5499621'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C++''}', 'Y', 'Y', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (306, 'C++|Visual C++', 9, '{''qid'': ''Q847296'', ''types'': [''Q13741'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_C++''}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (307, 'Cascading Style Sheets (CSS)', 9, '{''qid'': ''Q46441'', ''types'': [''Q1029123''], ''url'': ''http://dbpedia.org/resource/Cascading_Style_Sheets''}', 'Y', 'Y', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (308, 'Clipper', 9, '{''qid'': ''Q834358'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Clipper_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (309, 'CLIST', 9, '{''qid'': ''Q579880'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/CLIST''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (310, 'COBOL', 9, '{''qid'': ''Q131140'', ''types'': [''Q9143'', ''Q28922885'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/COBOL''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (311, 'ColdFusion Markup Language (CFML)', 9, '{''qid'': ''Q2524362'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ColdFusion_Markup_Language''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (312, 'Data Language Interface (DL/I)', 9, '{''qid'': ''Q2299300'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Data_Language_Interface''}', 'N', 'Y', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (313, 'Delphi', 9, '{''qid'': ''Q487378'', ''types'': [''Q9143'', ''Q218616'', ''Q13741''], ''url'': ''http://dbpedia.org/resource/Delphi_(programming_language)''}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (314, 'Easytrieve', 9, '{''qid'': ''Q1278381'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Easytrieve''}', 'Y', 'Y', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (315, 'Expect', 9, '{''qid'': ''Q2642029'', ''types'': [''Q9143'', ''Q28937412'', ''Q4826135'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Expect''}', 'Y', 'Y', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (316, 'eXtensible HyperText Markup Language (XHTML)', 9, '{''qid'': ''Q166074'', ''types'': [''Q20155966'', ''Q317623'', ''Q37045''], ''url'': ''http://dbpedia.org/resource/XHTML''}', 'N', 'Y', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (317, 'Extensible Markup Language (XML)', 9, '{''qid'': ''Q2115'', ''types'': [''Q82753'', ''Q37045'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/XML''}', 'Y', 'Y', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (318, 'Extensible Markup Language (XML)|MSXML', 9, '{''qid'': ''Q1133470'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/MSXML''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (319, 'Extensible Stylesheet Language (XSL)', 9, '{''qid'': ''Q32061'', ''types'': [''Q1029123'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/XSL''}', 'N', 'Y', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (320, 'Extensible Stylesheet Language Transformations (XLST)', 9, '{''qid'': ''Q32110'', ''types'': [''Q2661442'', ''Q9143'', ''Q1144882'', ''Q3217190''], ''url'': ''http://dbpedia.org/resource/XSLT''}', 'N', 'Y', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (321, 'FOCUS', 9, '{''qid'': ''Q5426833'', ''types'': [''Q238137''], ''url'': ''http://dbpedia.org/resource/FOCUS''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (322, 'Fortran', 9, '{''qid'': ''Q83303'', ''types'': [''Q28923026'', ''Q28922885'', ''Q899523'', ''Q28920117'', ''Q9143'', ''Q28920142'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Fortran''}', 'Y', 'Y', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (323, 'Go', 9, '{''qid'': ''Q37227'', ''types'': [''Q12772052'', ''Q28922885'', ''Q899523'', ''Q28920117'', ''Q9143'', ''Q28919943'', ''Q21562092'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/Go_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (324, 'GraphQL', 9, '{''qid'': ''Q25104949'', ''types'': [''Q557770'', ''Q9143'', ''Q60551191''], ''url'': ''http://dbpedia.org/resource/GraphQL''}', 'Y', 'Y', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (325, 'Groovy', 9, '{''qid'': ''Q16886826'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Skeevy''}', 'Y', 'Y', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (326, 'HiveQL', 9, '{}', 'N', 'Y', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (327, 'Hypertext Markup Language (HTML)', 9, '{''qid'': ''Q8811'', ''types'': [''Q2661442'', ''Q17537576'', ''Q37045'', ''Q235557'', ''Q20202982''], ''url'': ''http://dbpedia.org/resource/HTML''}', 'N', 'Y', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (328, 'IBM High Level Assembler (HLASM)', 9, '{''qid'': ''Q4039976'', ''types'': [''Q6470767''], ''url'': ''http://dbpedia.org/resource/IBM_High_Level_Assembler''}', 'N', 'Y', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (329, 'IBM i Control Language (CL)', 9, '{''qid'': ''Q263490'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/IBM_i_Control_Language''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (330, 'IBM Informix-4GL', 9, '{''qid'': ''Q2816938'', ''types'': [''Q9143'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/IBM_Informix-4GL''}', 'N', 'Y', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (331, 'Java', 9, '{''qid'': ''Q251'', ''types'': [''Q12772052'', ''Q56062429'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Java_(programming_language)''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (332, 'Java|Extensible Stylesheet Language (XSL)', 9, '{''qid'': ''Q32061'', ''types'': [''Q1029123'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/XSL''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (333, 'Java|Java Enterprise Edition (Java EE)', 9, '{''qid'': ''Q193247'', ''types'': [''Q1330336'', ''Q27493'', ''Q241317''], ''url'': ''http://dbpedia.org/resource/Java_Platform,_Enterprise_Edition''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (334, 'Java|Java Standard Edition (Java SE)', 9, '{''qid'': ''Q747478'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Java_Platform,_Standard_Edition''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (335, 'Java|JavaServer Pages (JSP)', 9, '{''qid'': ''Q183169'', ''types'': [''Q351507'', ''Q20819677'', ''Q1650567'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/JavaServer_Pages''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (336, 'Java|JavaServer Pages (JSP)|Scriptlets', 9, '{''qid'': ''Q3476475'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Scriptlet''}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (337, 'JavaScript', 9, '{''qid'': ''Q2005'', ''types'': [''Q241317'', ''Q12772052'', ''Q3839507'', ''Q187432'', ''Q9143'', ''Q28920810'', ''Q21562092'', ''Q28920813'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/JavaScript''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (338, 'JCL', 9, '{''qid'': ''Q1505372'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Job_Control_Language''}', 'Y', 'Y', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (339, 'Job Information Language (JIL)', 9, '{}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (340, 'JScript', 9, '{''qid'': ''Q553514'', ''types'': [''Q4117406''], ''url'': ''http://dbpedia.org/resource/JScript''}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (341, 'Lisp', 9, '{''qid'': ''Q132874'', ''types'': [''Q12772052'', ''Q28922885'', ''Q3839507'', ''Q28922887'', ''Q28922893'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Lisp_(programming_language)''}', 'N', 'Y', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (342, 'Niakwa Programming Language (NPL)', 9, '{''qid'': ''Q6955040'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/NPL_(programming_language)''}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (343, 'Objective C', 9, '{''qid'': ''Q188531'', ''types'': [''Q12772052'', ''Q28922858'', ''Q899523'', ''Q9143'', ''Q28922893''], ''url'': ''http://dbpedia.org/resource/Objective-C''}', 'Y', 'Y', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (344, 'OpenEdge ABL', 9, '{''qid'': ''Q1963461'', ''types'': [''Q899523'', ''Q9143'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/OpenEdge_Advanced_Business_Language''}', 'Y', 'Y', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (345, 'Pascal', 9, '{''qid'': ''Q81571'', ''types'': [''Q9143'', ''Q21562092'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Pascal_(programming_language)''}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (346, 'Pascal|Object Pascal', 9, '{''qid'': ''Q633894'', ''types'': [''Q12772052'', ''Q9143'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/Object_Pascal''}', 'Y', 'Y', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (347, 'Perl', 9, '{''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (348, 'Perl|ActivePerl', 9, '{''qid'': ''Q4033363'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ActivePerl''}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (349, 'Perl|Rex', 9, '{''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl''}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (350, 'PHP', 9, '{''qid'': ''Q59'', ''types'': [''Q1993334''], ''url'': ''http://dbpedia.org/resource/PHP''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (351, 'PL/I', 9, '{''qid'': ''Q223433'', ''types'': [''Q9143'', ''Q28922885''], ''url'': ''http://dbpedia.org/resource/PL/I''}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (352, 'PL/SQL', 9, '{''qid'': ''Q41574'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/PL/SQL''}', 'Y', 'Y', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (353, 'PRO*C', 9, '{''qid'': ''Q2111340'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Pro*C''}', 'N', 'Y', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (354, 'Python', 9, '{''qid'': ''Q28865'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Python_(programming_language)''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (355, 'R', 9, '{''qid'': ''Q206904'', ''types'': [''Q9143'', ''Q1004415''], ''url'': ''http://dbpedia.org/resource/R_(programming_language)''}', 'N', 'Y', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (356, 'Rexx', 9, '{''qid'': ''Q685820'', ''types'': [''Q9143'', ''Q28937412'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Rexx''}', 'N', 'Y', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (357, 'RPG', 9, '{''qid'': ''Q840543'', ''types'': [''Q9143'', ''Q28922885''], ''url'': ''http://dbpedia.org/resource/IBM_RPG''}', 'Y', 'Y', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (358, 'Ruby', 9, '{''qid'': ''Q161053'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Ruby_(programming_language)''}', 'N', 'Y', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (359, 'Salesforce Object Query Language (SOQL)', 9, '{}', 'N', 'Y', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (360, 'SAS', 9, '{''qid'': ''Q2003932'', ''types'': [''Q9143'', ''Q13199995'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/SAS_(software)''}', 'N', 'Y', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (361, 'Sass', 9, '{''qid'': ''Q1572865'', ''types'': [''Q9143'', ''Q1029123'', ''Q50843083'', ''Q918333''], ''url'': ''http://dbpedia.org/resource/Sass_(stylesheet_language)''}', 'N', 'Y', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (362, 'Scala', 9, '{''qid'': ''Q460584'', ''types'': [''Q12772052'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q56062429''], ''url'': ''http://dbpedia.org/resource/Scala_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (363, 'Smalltalk', 9, '{''qid'': ''Q235086'', ''types'': [''Q9143'', ''Q28922858'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/Smalltalk''}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (364, 'Swift', 9, '{''qid'': ''Q17118377'', ''types'': [''Q12772052'', ''Q28923023'', ''Q3839507'', ''Q899523'', ''Q341'', ''Q9143'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Swift_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (365, 'TCL', 9, '{''qid'': ''Q5288'', ''types'': [''Q12772052'', ''Q28922885'', ''Q899523'', ''Q187432'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Tcl''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (366, 'Transact-SQL', 9, '{''qid'': ''Q1411245'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Transact-SQL''}', 'Y', 'Y', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (367, 'TypeScript', 9, '{''qid'': ''Q978185'', ''types'': [''Q9143'', ''Q341''], ''url'': ''http://dbpedia.org/resource/TypeScript''}', 'Y', 'Y', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (368, 'VB.NET', 9, '{''qid'': ''Q50077'', ''types'': [''Q2378'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_Basic_.NET''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (369, 'VBScript', 9, '{''qid'': ''Q13743'', ''types'': [''Q187432'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/VBScript''}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (370, 'Visual Basic', 9, '{''qid'': ''Q2378'', ''types'': [''Q28922885'', ''Q899523'', ''Q9143'', ''Q42979'', ''Q28920813''], ''url'': ''http://dbpedia.org/resource/Visual_Basic''}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (371, 'Visual Basic for Applications (VBA)', 9, '{''qid'': ''Q667566'', ''types'': [''Q2378'', ''Q9143'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_Basic_for_Applications''}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (372, 'Visual FoxPro', 9, '{''qid'': ''Q753868'', ''types'': [''Q9143'', ''Q28922885'', ''Q899523'', ''Q13741''], ''url'': ''http://dbpedia.org/resource/Visual_FoxPro''}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (373, 'VoiceXML', 9, '{''qid'': ''Q776038'', ''types'': [''Q20155966''], ''url'': ''http://dbpedia.org/resource/VoiceXML''}', 'Y', 'Y', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (374, 'Xbase++', 9, '{''qid'': ''Q1753410'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/XBase++''}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (375, 'Apache Lucene', 12, '{''qid'': ''Q773196'', ''types'': [''Q188860'', ''Q19541'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Lucene''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (376, 'Apache Xerces', 12, '{''qid'': ''Q629740'', ''types'': [''Q188860'', ''Q1130645''], ''url'': ''http://dbpedia.org/resource/Xerces''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (377, 'Cascading Style Sheets (CSS)|Bootstrap', 12, '{''qid'': ''Q1195936'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Bootstrapping''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (378, 'Java|Apache Camel', 12, '{''qid'': ''Q616626'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_Camel''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (379, 'Java|Apache Commons BeanUtils', 12, '{''qid'': ''Q28916245'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q28916245''}', 'Y', 'N', 'N', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (380, 'Java|Apache PDFBox', 12, '{''qid'': ''Q17512395'', ''types'': [''Q21127166'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_PDFBox''}', 'Y', 'N', 'N', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (381, 'Java|Apache Velocity', 12, '{''qid'': ''Q617156'', ''types'': [''Q351507'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Apache_Velocity''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (382, 'Java|EclipseLink', 12, '{''qid'': ''Q897058'', ''types'': [''Q506883''], ''url'': ''http://dbpedia.org/resource/EclipseLink''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (383, 'Java|Enterprise JavaBeans (EJB)', 12, '{''qid'': ''Q742961'', ''types'': [''Q20819677'', ''Q609588''], ''url'': ''http://dbpedia.org/resource/Enterprise_JavaBeans''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (384, 'Java|EZMorph', 12, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (385, 'Java|Google Web Toolkit (GWT)', 12, '{''qid'': ''Q79578'', ''types'': [''Q2533324'', ''Q1193246'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Google_Web_Toolkit''}', 'Y', 'N', 'N', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (386, 'Java|Hibernate', 12, '{''qid'': ''Q747866'', ''types'': [''Q1172354'', ''Q7170392'', ''Q58748'', ''Q5227234'', ''Q341'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Hibernate_(framework)''}', 'Y', 'N', 'N', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (387, 'Java|IBM SDK', 12, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (388, 'Java|Java Development Kit (JDK)', 12, '{''qid'': ''Q741303'', ''types'': [''Q467707''], ''url'': ''http://dbpedia.org/resource/Java_Development_Kit''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (389, 'Java|Java Message Service (JMS)', 12, '{''qid'': ''Q755515'', ''types'': [''Q20819677'', ''Q1092177''], ''url'': ''http://dbpedia.org/resource/Java_Message_Service''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (390, 'Java|Java Web Start', 12, '{''qid'': ''Q33079'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Java_Web_Start''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (391, 'Java|JavaServer Faces (JSF)', 12, '{''qid'': ''Q729427'', ''types'': [''Q1330336'', ''Q20819677''], ''url'': ''http://dbpedia.org/resource/JavaServer_Faces''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (392, 'Java|JDBC', 12, '{''qid'': ''Q722772'', ''types'': [''Q1172354'', ''Q165194'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/Java_Database_Connectivity''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (393, 'Java|JRuby Core', 12, '{''qid'': ''Q605718'', ''types'': [], ''url'': ''http://dbpedia.org/resource/JRuby''}', 'Y', 'N', 'N', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (394, 'Java|Log4j', 12, '{''qid'': ''Q286923'', ''types'': [''Q22003134''], ''url'': ''http://dbpedia.org/resource/Log4j''}', 'Y', 'N', 'N', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (395, 'Java|Quartz', 12, '{''qid'': ''Q2122405'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Quartz_(scheduler)''}', 'Y', 'N', 'N', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (396, 'Java|Remote Method Invocation (RMI)', 12, '{''qid'': ''Q61902'', ''types'': [''Q1799072''], ''url'': ''http://dbpedia.org/resource/Java_remote_method_invocation''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (397, 'Java|Servlet', 12, '{''qid'': ''Q341'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Free_software''}', 'Y', 'N', 'N', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (398, 'Java|Spring', 12, '{''qid'': ''Q720314'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q720314''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (399, 'Java|Spring|Spring Boot', 12, '{''qid'': ''Q98731994'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q98731994''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (400, 'Java|Spring|Spring Cloud Data Flow', 12, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (401, 'Java|Spring|Spring MVC', 12, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (402, 'Java|Struts', 12, '{''qid'': ''Q900957'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Apache_Struts_1''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (403, 'Java|Swing', 12, '{''qid'': ''Q859221'', ''types'': [''Q21127166''], ''url'': ''http://dbpedia.org/resource/Swing_(Java)''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (404, 'Java|Vaadin', 12, '{''qid'': ''Q1400683'', ''types'': [''Q1330336'', ''Q386275'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Vaadin''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (405, 'JavaScript|AJAX', 12, '{''qid'': ''Q134471'', ''types'': [''Q9143'', ''Q918270'', ''Q101244''], ''url'': ''http://dbpedia.org/resource/Ajax_(programming)''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (406, 'JavaScript|AngularJS', 12, '{''qid'': ''Q2849803'', ''types'': [''Q188860'', ''Q783866'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/AngularJS''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (407, 'JavaScript|Draw2D', 12, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (408, 'JavaScript|Express.js', 12, '{''qid'': ''Q16878131'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Express.js''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (409, 'JavaScript|Ext JS', 12, '{''qid'': ''Q515393'', ''types'': [''Q1193246'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/Ext_JS''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (410, 'JavaScript|jqGrid', 12, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (411, 'JavaScript|JQuery', 12, '{''qid'': ''Q230036'', ''types'': [''Q170584'', ''Q188860'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/JQuery''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (412, 'JavaScript|Jquery|jQuery UI', 12, '{''qid'': ''Q285960'', ''types'': [], ''url'': ''http://dbpedia.org/resource/JQuery_UI''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (413, 'JavaScript|React', 12, '{''qid'': ''Q19399674'', ''types'': [''Q1330336'', ''Q783866'', ''Q341''], ''url'': ''http://dbpedia.org/resource/React_(JavaScript_library)''}', 'Y', 'N', 'N', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (414, 'JavaScript|script.aculo.us', 12, '{''qid'': ''Q309509'', ''types'': [''Q188860'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/Script.aculo.us''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (415, 'JavaScript|Valums AJAX File Uploader', 12, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (416, 'OWASP Enterprise Security API (ESAPI)', 12, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (417, 'Perl|Oraperl', 12, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (418, 'Android', 6, '{''qid'': ''Q94'', ''types'': [''Q920890''], ''url'': ''http://dbpedia.org/resource/Android_(operating_system)''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (419, 'BeOS', 6, '{''qid'': ''Q62563'', ''types'': [''Q218616'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/BeOS''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (420, 'Cisco IOS', 6, '{''qid'': ''Q753576'', ''types'': [''Q282080''], ''url'': ''http://dbpedia.org/resource/Cisco_IOS''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (421, 'DART', 6, '{''qid'': ''Q406009'', ''types'': [''Q1330336'', ''Q12772052'', ''Q899523'', ''Q3839507'', ''Q187432'', ''Q28922893'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Dart_(programming_language)''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (422, 'Fabric OS', 6, '{''qid'': ''Q5428124'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Fabric_OS''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (423, 'GNU', 6, '{''qid'': ''Q44571'', ''types'': [''Q9135'', ''Q11368''], ''url'': ''http://dbpedia.org/resource/GNU''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (424, 'IBM i', 6, '{''qid'': ''Q15637561'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/IBM_i''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (425, 'iOS', 6, '{''qid'': ''Q48493'', ''types'': [''Q920890'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/IOS''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (426, 'Linux', 6, '{''qid'': ''Q388'', ''types'': [''Q14656'', ''Q16889133'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Linux''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (427, 'Linux|CentOS', 6, '{''qid'': ''Q207542'', ''types'': [''Q131669'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/CentOS''}', 'Y', 'N', 'N', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (428, 'Linux|Check Point', 6, '{''qid'': ''Q751519'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q751519''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (429, 'Linux|Debian', 6, '{''qid'': ''Q7715973'', ''types'': [''Q20983788'', ''Q3251801''], ''url'': ''http://dbpedia.org/resource/Debian''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (430, 'Linux|Junos OS', 6, '{''qid'': ''Q4041744'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Junos_OS''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (431, 'Linux|openSUSE', 6, '{''qid'': ''Q16691'', ''types'': [''Q131669'', ''Q388'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/OpenSUSE''}', 'Y', 'N', 'N', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (432, 'Linux|Oracle Linux', 6, '{''qid'': ''Q46094'', ''types'': [''Q131669'', ''Q977076''], ''url'': ''http://dbpedia.org/resource/Oracle_Linux''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (433, 'Linux|Photon OS', 6, '{''qid'': ''Q105703682'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105703682''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (434, 'Linux|Red Hat Enterprise Linux', 6, '{''qid'': ''Q215273'', ''types'': [''Q9135'', ''Q131669''], ''url'': ''http://dbpedia.org/resource/Red_Hat_Enterprise_Linux''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (435, 'Linux|SUSE Linux Enterprise Server', 6, '{''qid'': ''Q1759786'', ''types'': [''Q131669''], ''url'': ''http://dbpedia.org/resource/SUSE_Linux_Enterprise_Server''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (436, 'Linux|Ubuntu', 6, '{''qid'': ''Q381'', ''types'': [''Q131669'', ''Q5276054'', ''Q20983788'', ''Q3251801''], ''url'': ''http://dbpedia.org/resource/Ubuntu_(operating_system)''}', 'Y', 'N', 'N', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (437, 'Linux|zLinux', 6, '{''qid'': ''Q136277'', ''types'': [''Q388''], ''url'': ''http://dbpedia.org/resource/Linux_on_z_Systems''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (438, 'macOS', 6, '{''qid'': ''Q14116'', ''types'': [''Q43627'', ''Q218616'', ''Q811701'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/MacOS''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (439, 'MVS', 6, '{''qid'': ''Q781443'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/MVS''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (440, 'MVS|OS/390', 6, '{''qid'': ''Q1726891'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/OS/390''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (441, 'MVS|z/OS', 6, '{''qid'': ''Q283705'', ''types'': [''Q14656''], ''url'': ''http://dbpedia.org/resource/Z/OS''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (442, 'OpenVMS', 6, '{''qid'': ''Q479882'', ''types'': [''Q9135'', ''Q218616'', ''Q3496042''], ''url'': ''http://dbpedia.org/resource/OpenVMS''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (443, 'OS/2', 6, '{''qid'': ''Q189794'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/OS/2''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (444, 'Unix', 6, '{''qid'': ''Q11368'', ''types'': [''Q170584'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/Unix''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (445, 'Unix|AIX', 6, '{''qid'': ''Q269856'', ''types'': [''Q218616'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/IBM_AIX''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (446, 'Unix|BSD', 6, '{''qid'': ''Q34264'', ''types'': [''Q11368''], ''url'': ''http://dbpedia.org/resource/Berkeley_Software_Distribution''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (447, 'Unix|BSD|FreeBSD', 6, '{''qid'': ''Q34236'', ''types'': [], ''url'': ''http://dbpedia.org/resource/FreeBSD''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (448, 'Unix|BSD|SunOS', 6, '{''qid'': ''Q1208460'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/SunOS''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (449, 'Unix|HP-UX', 6, '{''qid'': ''Q847593'', ''types'': [''Q14656''], ''url'': ''http://dbpedia.org/resource/HP-UX''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (450, 'Windows', 6, '{''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (451, 'Windows|Windows Desktop', 6, '{''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (452, 'Windows|Windows Server', 6, '{''qid'': ''Q11219'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Windows_Server''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (453, 'Linux|Fedora', 6, '{''qid'': ''Q48267'', ''types'': [''Q131669'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/Fedora_(operating_system)''}', 'Y', 'N', 'N', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (454, 'Linux|Amazon Linux', 6, '{''qid'': ''Q68223191'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q68223191''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (455, 'Clarify|Clear Basic', 5, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (456, 'Eclipse|ATLAS Transformation Language (ATL)', 5, '{''qid'': ''Q667812'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ATLAS_Transformation_Language''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (457, 'IBM BigFix Platform|Client Deploy Tool', 5, '{''qid'': ''Q1420900'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Microsoft_Deployment_Toolkit''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (458, 'IBM Integration Bus|Extended Structured Query Language (ESQL)', 5, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (459, 'IBM Tivoli Asset Management|Asset Discovery for Distributed', 5, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (460, 'IBM Tivoli Storage Manager|TSM API', 5, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (461, 'IBM Tivoli Storage Manager|TSM Client', 5, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (462, 'IBM Tivoli Storage Manager|TSM Storage Agent', 5, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (463, 'IBM Tivoli Storage Manager|VSS Requestor', 5, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (464, 'Microsoft Exchange Server|Veeam Explorer', 5, '{''qid'': ''Q22096414'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q22096414''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (465, 'MS SQL Server|MS SQL Server Browser', 5, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (466, 'MS SQL Server|Data Transformation Services', 5, '{''qid'': ''Q644775'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Data_Transformation_Services''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (467, 'MS SQL Server|Log Reader Agent', 5, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (468, 'MS SQL Server|SQL Server Analysis Services (SSAS)', 5, '{''qid'': ''Q2067216'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_Analysis_Services''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (469, 'MS SQL Server|SQL Server Database Engine', 5, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (470, 'MS SQL Server|SQL Server Integration Services (SSIS)', 5, '{''qid'': ''Q1231051'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Integration_Services''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (471, 'MS SQL Server|SQL Server Management Studio', 5, '{''qid'': ''Q4048883'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Management_Studio''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (472, 'MS SQL Server|SQL Server Report Builder', 5, '{''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (473, 'MS SQL Server|SQL Server Reporting Services (SSRS)', 5, '{''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (474, 'Oracle Database|Jserver', 5, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (475, 'Oracle Database|Oracle Spatial and Graph', 5, '{''qid'': ''Q3508244'', ''types'': [''Q7397'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Oracle_Spatial_and_Graph''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (476, 'SAP ERP|SAP EHP', 5, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (477, 'SAP ERP|SAP Kernel', 5, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (478, 'Oracle Database|SQL*Plus', 5, '{''qid'': ''Q2575010'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL*Plus''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (479, 'Sybase SQL Server|Sybase Central', 5, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (480, 'Sybase SQL Server|Sybase Dsedit', 5, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (481, 'TIBCO Business Works (BW)|Integration Manager', 5, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (482, '.NET Framework|Common Runtime Library', 7, '{''qid'': ''Q1444922'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Runtime_library''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (483, '.NET Framework|log4net', 7, '{''qid'': ''Q7884429'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q7884429''}', 'Y', 'N', 'N', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (484, '.NET Framework|Magick.NET', 7, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (485, '.NET Framework|Windows Communication Foundation (WCF)', 7, '{''qid'': ''Q261595'', ''types'': [''Q40056'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Communication_Foundation''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (486, '.NET Framework|Windows Workflow Foundation (WF)', 7, '{''qid'': ''Q1154450'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Workflow_Foundation''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (487, '.NET Framework|WinForms', 7, '{''qid'': ''Q613361'', ''types'': [''Q1193246'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Forms''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (488, 'ActiveX|ADO', 7, '{''qid'': ''Q344005'', ''types'': [''Q165194''], ''url'': ''http://dbpedia.org/resource/ActiveX_Data_Objects''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (489, 'IIS|Easy Migration Tool (IEMT)', 7, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (490, 'IIS|Application Request Routing (ARR)', 7, '{''qid'': ''Q16987674'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Application_Request_Routing''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (491, 'IIS|IIS Manager', 7, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (492, 'JBoss|JBoss Seam', 7, '{''qid'': ''Q923560'', ''types'': [''Q1330336'', ''Q341''], ''url'': ''http://dbpedia.org/resource/JBoss_Seam''}', 'Y', 'N', 'N', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (493, 'JBoss|Wildfly', 7, '{''qid'': ''Q68850'', ''types'': [''Q71550'', ''Q341''], ''url'': ''http://dbpedia.org/resource/WildFly''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (494, 'Oracle Application Server|Oracle Transparent Gateway', 7, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (495, 'Oracle WebCenter Content Server|Idoc Script', 7, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (496, 'SAP NetWeaver App Server|ABAP', 7, '{''qid'': ''Q380523'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ABAP''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (497, '.NET Framework', 10, '{''qid'': ''Q5289'', ''types'': [''Q241317'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/.NET_Framework''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (498, 'Active Directory (AD)', 10, '{''qid'': ''Q55692'', ''types'': [''Q756230''], ''url'': ''http://dbpedia.org/resource/Active_Directory''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (499, 'Active Server Pages (ASP)', 10, '{''qid'': ''Q344266'', ''types'': [''Q1330336'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Active_Server_Pages''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (500, 'ActiveX', 10, '{''qid'': ''Q302022'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/ActiveX''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (501, 'Apache Cordova', 10, '{''qid'': ''Q16626338'', ''types'': [''Q6934955''], ''url'': ''http://dbpedia.org/resource/Apache_Cordova''}', 'Y', 'N', 'N', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (502, 'CICS', 10, '{''qid'': ''Q1146247'', ''types'': [''Q9143'', ''Q4388320''], ''url'': ''http://dbpedia.org/resource/CICS''}', 'Y', 'Y', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (503, 'Docker', 10, '{''qid'': ''Q15206305'', ''types'': [''Q167772'', ''Q7935198'', ''Q506883''], ''url'': ''http://dbpedia.org/resource/Docker_(software)''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (504, 'Flash', 10, '{''qid'': ''Q165658'', ''types'': [''Q1155404'', ''Q241317'', ''Q2622299'', ''Q166142''], ''url'': ''http://dbpedia.org/resource/Adobe_Flash''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (505, 'HTTP File Server', 10, '{''qid'': ''Q1566096'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/HTTP_File_Server''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (506, 'Java Runtime Environment (JRE)', 10, '{''qid'': ''Q1504505'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q1504505''}', 'Y', 'Y', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (507, 'Node.js', 10, '{''qid'': ''Q756100'', ''types'': [''Q28920813''], ''url'': ''http://dbpedia.org/resource/Node.js''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (508, 'Ruby on Rails', 10, '{''qid'': ''Q190478'', ''types'': [''Q1330336'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Ruby_on_Rails''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (509, 'VisualForce', 10, '{}', 'Y', 'Y', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (510, 'EMC Celerra', 11, '{''qid'': ''Q5057823'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Celerra''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (511, 'Application Lifecycle Management (ALM)', 1, '{''qid'': ''Q621590'', ''types'': [''Q1780667''], ''url'': ''http://dbpedia.org/resource/Application_lifecycle_management''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (512, 'Assembler Language', 1, '{''qid'': ''Q165436'', ''types'': [''Q28922854'', ''Q9143'', ''Q558937''], ''url'': ''http://dbpedia.org/resource/Assembly_language''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (513, 'Batch Management Software (BMS)', 1, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (514, 'Business Object Reports', 1, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (515, 'Common Gateway Interface (CGI)', 1, '{''qid'': ''Q264364'', ''types'': [''Q11016'', ''Q132364''], ''url'': ''http://dbpedia.org/resource/Common_Gateway_Interface''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (516, 'Compopent Object Model (COM)', 1, '{''qid'': ''Q662200'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Component_Object_Model''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (517, 'Common Object Request Broker Architecture (CORBA)', 1, '{''qid'': ''Q691593'', ''types'': [''Q317623''], ''url'': ''http://dbpedia.org/resource/Common_Object_Request_Broker_Architecture''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (518, 'CORBA Interface Definition Language (CORBA IDL)', 1, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (519, 'Data Control Language (DCL)', 1, '{''qid'': ''Q604737'', ''types'': [''Q41591651''], ''url'': ''http://dbpedia.org/resource/Data_control_language''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (520, 'Database (DB)', 1, '{''qid'': ''Q8513'', ''types'': [''Q15401930'', ''Q386724'', ''Q28813620''], ''url'': ''http://dbpedia.org/resource/Database''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (521, 'Electronic Data Interchange (EDI)', 1, '{''qid'': ''Q690189'', ''types'': [''Q2989673''], ''url'': ''http://dbpedia.org/resource/Electronic_data_interchange''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (522, 'Application Web Server', 1, '{''qid'': ''Q11288'', ''types'': [''Q1371279'', ''Q4485156'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Web_server''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (523, 'Java-based Document Object Model for XML (JDOM)', 1, '{''qid'': ''Q359595'', ''types'': [''Q341'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/JDOM''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (524, 'Lightweight Directory Access Protocol (LDAP)', 1, '{''qid'': ''Q188816'', ''types'': [''Q756230'', ''Q15836568''], ''url'': ''http://dbpedia.org/resource/Lightweight_Directory_Access_Protocol''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (525, 'Open Database Connectivity (ODBC)', 1, '{''qid'': ''Q212606'', ''types'': [''Q165194'', ''Q1172367''], ''url'': ''http://dbpedia.org/resource/Open_Database_Connectivity''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (526, 'Order Management System (OMS)', 1, '{''qid'': ''Q7100437'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Order_management_system''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (527, 'Oracle Web Services', 1, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (528, 'Reporting Services', 1, '{''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (529, 'Representational State Transfer (REST)', 1, '{''qid'': ''Q749568'', ''types'': [''Q220644''], ''url'': ''http://dbpedia.org/resource/Representational_state_transfer''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (530, 'Service-Oriented Architecture (SOA)', 1, '{''qid'': ''Q220644'', ''types'': [''Q846636''], ''url'': ''http://dbpedia.org/resource/Service-oriented_architecture''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (531, 'Simple Object Access Protocol (SOAP)', 1, '{''qid'': ''Q189620'', ''types'': [''Q15836568''], ''url'': ''http://dbpedia.org/resource/SOAP''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (532, 'SQL', 9, '{''qid'': ''Q47607'', ''types'': [''Q9143'', ''Q1144882'', ''Q845739'', ''Q691358''], ''url'': ''http://dbpedia.org/resource/SQL''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (533, 'YAML', 1, '{''qid'': ''Q281876'', ''types'': [''Q37045'', ''Q50843083'', ''Q235557'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/YAML''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (534, 'Model-view-controller (MVC)', 1, '{''qid'': ''Q44860'', ''types'': [''Q635346'', ''Q181156''], ''url'': ''http://dbpedia.org/resource/Modelûviewûcontroller''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (535, 'Application Server', 1, '{''qid'': ''Q71550'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/Application_server''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (536, 'Cloud', 1, '{''qid'': ''Q483639'', ''types'': [''Q771906'', ''Q241317''], ''url'': ''http://dbpedia.org/resource/Cloud_computing''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (537, 'Competency and Quality Assurance Server', 1, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (538, 'Device Provisioning Engines (DPE)', 1, '{''qid'': ''Q5318925'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Dynamic_provisioning_environment''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (539, 'E-business solution', 1, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (540, 'Enterprise Service Bus(ESB)', 1, '{''qid'': ''Q1061460'', ''types'': [''Q146923''], ''url'': ''http://dbpedia.org/resource/Enterprise_service_bus''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (541, 'File Server', 1, '{''qid'': ''Q513349'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/File_server''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (542, 'General Ledger', 1, '{''qid'': ''Q1977520'', ''types'': [''Q3831821'', ''Q4116214''], ''url'': ''http://dbpedia.org/resource/General_ledger''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (543, 'HTTP client', 1, '{''qid'': ''Q2979024'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q2979024''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (544, 'HTTP Server', 1, '{''qid'': ''Q11288'', ''types'': [''Q1371279'', ''Q4485156'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Web_server''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (545, 'Integrated Safe System of Work (ISSOW)', 1, '{''qid'': ''Q5974495'', ''types'': [''Q317623''], ''url'': ''http://dbpedia.org/resource/ISSOW''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (546, 'Internet Exchange Point - Full Stack (ixp-ft)', 1, '{''qid'': ''Q1433061'', ''types'': [''Q173106'', ''Q1293220''], ''url'': ''http://dbpedia.org/resource/Internet_exchange_point''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (547, 'Internet Message Access Protocol (IMAP)', 1, '{''qid'': ''Q166936'', ''types'': [''Q16935517'', ''Q15836568''], ''url'': ''http://dbpedia.org/resource/Internet_Message_Access_Protocol''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (548, 'JSON', 1, '{''qid'': ''Q2063'', ''types'': [''Q681263'', ''Q235557'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/JSON''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (549, 'KVS Application Server', 1, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (550, 'KVS File Server', 1, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (551, 'KVS Proxy Server', 1, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (552, 'mainframe', 1, '{''qid'': ''Q177234'', ''types'': [''Q64729893''], ''url'': ''http://dbpedia.org/resource/Mainframe_computer''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (553, 'Manufacturing Execution System (MES)', 1, '{''qid'': ''Q1404943'', ''types'': [''Q489371''], ''url'': ''http://dbpedia.org/resource/Manufacturing_execution_system''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (554, 'Mobile', 1, '{''qid'': ''Q2738570'', ''types'': [''Q179310''], ''url'': ''http://dbpedia.org/resource/Mobile_computing''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (555, 'NonSQL', 1, '{''qid'': ''Q5999165'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q5999165''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (556, 'SaaS', 1, '{''qid'': ''Q1254596'', ''types'': [''Q8187769'', ''Q25036597'', ''Q17155032'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/Software_as_a_service''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (557, 'Storage Area Network (SAN)', 1, '{''qid'': ''Q237576'', ''types'': [''Q15141646'', ''Q994895'', ''Q1301371''], ''url'': ''http://dbpedia.org/resource/Storage_area_network''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (558, 'Supplier Registration System Application Server', 1, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (559, 'Virtual Appliance', 1, '{''qid'': ''Q752708'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Virtual_appliance''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (560, 'Webtop', 1, '{''qid'': ''Q1780763'', ''types'': [''Q1668024''], ''url'': ''http://dbpedia.org/resource/Web_desktop''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (561, 'Proxy Server', 1, '{''qid'': ''Q11189'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/Proxy_server''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (562, 'Utility', 1, '{''qid'': ''Q312466'', ''types'': [''Q40056'', ''Q676202'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Utility_software''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (563, 'Citrix ADC', 3, '{''qid'': ''Q12040775'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q12040775''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (564, 'Citrix ADC VPX', 3, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (565, 'Citrix ADC BLX', 3, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (566, 'InterScan Messaging Security Virtual Appliance (IMSVA)', 3, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (567, 'Oracle VM', 3, '{''qid'': ''Q10852040'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Oracle_VM_Server_for_x86''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (568, 'VMware ESXi', 3, '{''qid'': ''Q179116'', ''types'': [''Q1077480'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/VMware_ESXi''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (569, 'VMware Server', 3, '{''qid'': ''Q4007037'', ''types'': [''Q1077480''], ''url'': ''http://dbpedia.org/resource/VMware_Server''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (570, 'IBM WebSphere Transformation Extender (WTX)', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (571, 'Oracle Retail Point-of-Service', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (572, 'Structured Query Language (SQL)', 1, '{''qid'': ''Q47607'', ''types'': [''Q9143'', ''Q1144882'', ''Q845739'', ''Q691358''], ''url'': ''http://dbpedia.org/resource/SQL''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (573, 'TSO/ISPF', 2, '{''qid'': ''Q679906'', ''types'': [''Q131212''], ''url'': ''http://dbpedia.org/resource/ISPF''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (574, 'Model view controller (MVC)', 1, '{''qid'': ''Q44860'', ''types'': [''Q635346'', ''Q181156''], ''url'': ''http://dbpedia.org/resource/Modelûviewûcontroller''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (575, '|*', 6, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (576, 'Linux|*', 6, '{''qid'': ''Q388'', ''types'': [''Q14656'', ''Q16889133'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Linux''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (577, 'MVS|*', 6, '{''qid'': ''Q781443'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/MVS''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (578, 'Unix|*', 6, '{''qid'': ''Q11368'', ''types'': [''Q170584'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/Unix''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (579, 'Unix|BSD|*', 6, '{''qid'': ''Q34264'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34264''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (580, 'Windows|*', 6, '{''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (581, 'MS SQL Server|*', 2, '{''qid'': ''Q215819'', ''types'': [''Q218616'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_SQL_Server''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (582, 'C#|*', 9, '{''qid'': ''Q2370'', ''types'': [''Q9143'', ''Q12772052''], ''url'': ''http://dbpedia.org/resource/C_Sharp_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (583, 'C++|*', 9, '{''qid'': ''Q2407'', ''types'': [''Q28923026'', ''Q12772052'', ''Q28922885'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q5499621'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C++''}', 'Y', 'Y', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (584, 'Java|*', 9, '{''qid'': ''Q251'', ''types'': [''Q12772052'', ''Q56062429'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Java_(programming_language)''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (585, 'Perl|*', 9, '{''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (586, 'PHP|*', 9, '{}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (587, 'Python|*', 9, '{''qid'': ''Q28865'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Python_(programming_language)''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (588, 'Ruby|*', 9, '{}', 'N', 'Y', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (589, 'JavaScript|*', 9, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (590, 'Unix|BSD|OpenBSD', 6, '{''qid'': ''Q34215'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34215''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (591, 'z/VSE', 6, '{''qid'': ''Q289345'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/VSE_(operating_system)''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (592, 'Active Server Pages (ASP)|*', 9, '{''qid'': ''Q344266'', ''types'': [''Q1330336'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Active_Server_Pages''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (593, 'MS-DOS', 6, '{''qid'': ''Q47604'', ''types'': [''Q9135'', ''Q241317'', ''Q170434''], ''url'': ''http://dbpedia.org/resource/MS-DOS''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (594, 'COBOL|*', 9, '{''qid'': ''Q131140'', ''types'': [''Q9143'', ''Q28922885'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/COBOL''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (595, 'VME', 6, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (596, 'Extensible Markup Language (XML)|*', 9, '{''qid'': ''Q2115'', ''types'': [''Q82753'', ''Q37045'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/XML''}', 'Y', 'Y', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (597, 'DOS/360', 6, '{''qid'': ''Q3487917'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/DOS/360_and_successors''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (598, 'z/TPF', 6, '{''qid'': ''Q1426122'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Transaction_Processing_Facility''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (599, 'Pascal|*', 9, '{''qid'': ''Q81571'', ''types'': [''Q9143'', ''Q21562092'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Pascal_(programming_language)''}', 'Y', 'Y', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (600, 'Oracle WebLogic Server|*', 8, '{''qid'': ''Q83589'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_WebLogic_Server''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (601, 'Websphere ILOG JRules BRMS', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (602, 'Unix|BSD|NetBSD', 6, '{''qid'': ''Q34225'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34225''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (603, 'SharePoint|*', 2, '{''qid'': ''Q18833'', ''types'': [''Q1371279'', ''Q1344636'', ''Q131093'', ''Q831677'', ''Q615985''], ''url'': ''http://dbpedia.org/resource/SharePoint''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (604, 'IBM Tivoli Storage Manager|*', 2, '{''qid'': ''Q2001900'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Storage_Manager''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (605, 'IBM Spectrum Scale|*', 2, '{''qid'': ''Q2389927'', ''types'': [''Q174989'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_General_Parallel_File_System''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (606, 'IBM Tivoli Asset Management|*', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (607, 'Oracle Hyperion|*', 2, '{''qid'': ''Q1431991'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Oracle_Hyperion''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (608, 'z/VM', 6, '{''qid'': ''Q1399696'', ''types'': [''Q9135'', ''Q1077480''], ''url'': ''http://dbpedia.org/resource/Z/VM''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (609, 'IIS|*', 8, '{''qid'': ''Q11341'', ''types'': [''Q218616'', ''Q18287040''], ''url'': ''http://dbpedia.org/resource/Internet_Information_Services''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (610, 'Oracle Application Server|*', 8, '{''qid'': ''Q2027912'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Server''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (611, 'instana', 10, '{''qid'': ''Q107383927'', ''url'': ''https://www.wikidata.org/wiki/Q107383927''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (612, 'credstash', 2, '{''qid'': ''Q107384165'', ''url'': ''https://www.wikidata.org/wiki/Q107384165''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (613, 'Snyk', 2, '{''qid'': ''Q108282404'', ''url'': ''https://www.wikidata.org/wiki/Q108282404''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (614, 'Akka', 2, '{''qid'': ''Q16002307'', ''url'': ''https://www.wikidata.org/wiki/Q16002307''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (615, 'Varnish', 8, '{''qid'': ''Q1602447'', ''url'': ''https://www.wikidata.org/wiki/Q1602447''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (616, 'Datadog', 10, '{''qid'': ''Q16248637'', ''url'': ''https://www.wikidata.org/wiki/Q16248637''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (617, 'API', 1, '{''qid'': ''Q165194'', ''url'': ''https://www.wikidata.org/wiki/Q165194''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (618, 'Hazelcast', 10, '{''qid'': ''Q17021540'', ''url'': ''https://www.wikidata.org/wiki/Q17021540''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (619, 'Infinispan', 2, '{''qid'': ''Q18152516'', ''url'': ''https://www.wikidata.org/wiki/Q18152516''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (620, 'Nuxeo', 10, '{''qid'': ''Q2004521'', ''url'': ''https://www.wikidata.org/wiki/Q2004521''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (621, 'ArangoDB', 2, '{''qid'': ''Q20072115'', ''url'': ''https://www.wikidata.org/wiki/Q20072115''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (622, 'Eclipse Che', 2, '{''qid'': ''Q25000883'', ''url'': ''https://www.wikidata.org/wiki/Q25000883''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (623, 'Amazon S3', 2, '{''qid'': ''Q2593067'', ''url'': ''https://www.wikidata.org/wiki/Q2593067''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (624, 'ClickHouse', 2, '{''qid'': ''Q27825826'', ''url'': ''https://www.wikidata.org/wiki/Q27825826''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (625, 'MinIO', 2, '{''qid'': ''Q28956397'', ''url'': ''https://www.wikidata.org/wiki/Q28956397''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (626, 'Elasticsearch', 2, '{''qid'': ''Q3050461'', ''url'': ''https://www.wikidata.org/wiki/Q3050461''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (627, 'XtraDB', 2, '{''qid'': ''Q4021858'', ''url'': ''https://www.wikidata.org/wiki/Q4021858''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (628, 'Keycloak', 2, '{''qid'': ''Q42916195'', ''url'': ''https://www.wikidata.org/wiki/Q42916195''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (629, 'Grafana', 2, '{''qid'': ''Q43399271'', ''url'': ''https://www.wikidata.org/wiki/Q43399271''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (630, 'Mattermost', 10, '{''qid'': ''Q55478510'', ''url'': ''https://www.wikidata.org/wiki/Q55478510''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (631, 'Synapse', 2, '{''qid'': ''Q56328412'', ''url'': ''https://www.wikidata.org/wiki/Q56328412''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (632, 'Cloud IAM', 2, '{''qid'': ''Q59852253'', ''url'': ''https://www.wikidata.org/wiki/Q59852253''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (633, 'Knative', 10, '{''qid'': ''Q59905591'', ''url'': ''https://www.wikidata.org/wiki/Q59905591''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (634, 'Apache Cassandra', 2, '{''qid'': ''Q616639'', ''url'': ''https://www.wikidata.org/wiki/Q616639''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (635, 'Kubeflow', 10, '{''qid'': ''Q65048974'', ''url'': ''https://www.wikidata.org/wiki/Q65048974''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (636, 'Qiskit', 2, '{''qid'': ''Q70490607'', ''url'': ''https://www.wikidata.org/wiki/Q70490607''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (637, 'Microsoft Azure', 2, '{''qid'': ''Q725967'', ''url'': ''https://www.wikidata.org/wiki/Q725967''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (638, 'Strimzi', 10, '{''qid'': ''Q72711423'', ''url'': ''https://www.wikidata.org/wiki/Q72711423''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (639, 'Sematext', 10, '{''qid'': ''Q7449130'', ''url'': ''https://www.wikidata.org/wiki/Q7449130''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (640, 'Eclipse hawkBit', 2, '{''qid'': ''Q76178253'', ''url'': ''https://www.wikidata.org/wiki/Q76178253''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (641, 'Eclipse Ditto', 2, '{''qid'': ''Q76178650'', ''url'': ''https://www.wikidata.org/wiki/Q76178650''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (642, 'MariaDB', 2, '{''qid'': ''Q787177'', ''url'': ''https://www.wikidata.org/wiki/Q787177''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (643, 'Zadara', 2, '{''qid'': ''Q8064144'', ''url'': ''https://www.wikidata.org/wiki/Q8064144''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (644, 'Istio', 2, '{''qid'': ''Q88464464'', ''url'': ''https://www.wikidata.org/wiki/Q88464464''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (645, 'Vault', 2, '{''qid'': ''Q88664426'', ''url'': ''https://www.wikidata.org/wiki/Q88664426''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (646, 'Apache Druid', 2, '{''qid'': ''Q89693799'', ''url'': ''https://www.wikidata.org/wiki/Q89693799''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (647, 'etcd', 2, '{''qid'': ''Q96324273'', ''url'': ''https://www.wikidata.org/wiki/Q96324273''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (648, 'Traefik', 8, '{''qid'': ''Q96332968'', ''url'': ''https://www.wikidata.org/wiki/Q96332968''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (649, 'IBM Cloud', 2, '{''qid'': ''Q96381605'', ''url'': ''https://www.wikidata.org/wiki/Q96381605''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (650, 'YugabyteDB', 2, '{''qid'': ''Q97187861'', ''url'': ''https://www.wikidata.org/wiki/Q97187861''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (651, 'CockroachDB', 2, '{''qid'': ''Q98731903'', ''url'': ''https://www.wikidata.org/wiki/Q98731903''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (652, 'Jaeger', 10, '{''qid'': ''Q98799449'', ''url'': ''https://www.wikidata.org/wiki/Q98799449''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (653, 'Natural Programming Language', 9, '{}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (654, 'AcuCOBOL', 9, '{''qid'': ''Q288844'', ''url'': ''https://www.wikidata.org/wiki/Q288844''}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (655, 'Ada', 9, '{''qid'': ''Q154755'', ''url'': ''https://www.wikidata.org/wiki/Q154755''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (656, 'ADABAS', 2, '{''qid'': ''Q346434'', ''url'': ''https://www.wikidata.org/wiki/Q346434''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (657, 'ADSO', 9, '{''qid'': ''Q4685839'', ''url'': ''https://www.wikidata.org/wiki/Q4685839''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (658, 'Ansible', 2, '{''qid'': ''Q2852503'', ''url'': ''https://www.wikidata.org/wiki/Q2852503''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (659, 'Batch', 9, '{''qid'': ''Q479833'', ''url'': ''https://www.wikidata.org/wiki/Q479833''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (660, 'Powershell', 9, '{''qid'': ''Q840410'', ''url'': ''https://www.wikidata.org/wiki/Q840410''}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (661, 'COM+', 10, '{''qid'': ''Q9670606'', ''url'': ''https://www.wikidata.org/wiki/Q9670606''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (662, 'Dataflex', 9, '{''qid'': ''Q2391203'', ''url'': ''https://www.wikidata.org/wiki/Q2391203''}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (663, 'DDS', 9, '{''qid'': ''Q1149607'', ''url'': ''https://www.wikidata.org/wiki/Q1149607''}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (664, 'Forte', 9, '{''qid'': ''Q3748867'', ''url'': ''https://www.wikidata.org/wiki/Q3748867''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (665, 'Foxpro', 9, '{''qid'': ''Q2507721'', ''url'': ''https://www.wikidata.org/wiki/Q2507721''}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (666, 'IBM DB2 Purescale', 2, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (667, 'IDMS DB', 2, '{}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (668, 'IDMS DML', 9, '{}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (669, 'Jaguar', 8, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (670, 'EAServer', 8, '{''qid'': ''Q5816084'', ''url'': ''https://www.wikidata.org/wiki/Q5816084''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (671, 'Apache Cassandra', 2, '{''qid'': ''Q616639'', ''url'': ''https://www.wikidata.org/wiki/Q616639''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (672, 'IBM Netezza', 4, '{''qid'': ''Q3874960'', ''url'': ''https://www.wikidata.org/wiki/Q3874960''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (673, 'OpenEdge', 9, '{''qid'': ''Q1963461'', ''url'': ''https://www.wikidata.org/wiki/Q1963461''}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (674, 'OpenROAD', 9, '{''qid'': ''Q2025504'', ''url'': ''https://www.wikidata.org/wiki/Q2025504''}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (675, 'Oracle Reports', 2, '{''qid'': ''Q4045946'', ''url'': ''https://www.wikidata.org/wiki/Q4045946''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (676, 'SAP Replication Server', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (677, 'Git', 2, '{''qid'': ''Q186055'', ''url'': ''https://www.wikidata.org/wiki/Q186055''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (678, 'GitLab', 2, '{''qid'': ''Q16639197'', ''url'': ''https://www.wikidata.org/wiki/Q16639197''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (679, 'VSAM', 2, '{''qid'': ''Q1514276'', ''url'': ''https://www.wikidata.org/wiki/Q1514276''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (680, 'Cloud<>Apache HTTP Server', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (681, 'Cloud<>Windows|Windows Server', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (682, 'Cloud<>MS SQL Server', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (683, 'Cloud<>Azure SQL Server Database', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (684, 'Cloud<>MySQL', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (685, 'Cloud<>Oracle Database', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (686, 'Cloud<>PostgreSQL', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (687, 'Cloud<>AWS RDS', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (688, 'Cloud<>SAP HANA DB', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (689, 'BMS Map', 9, '{}', 'Y', 'N', 'N', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (690, 'DB400', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (691, 'ILE', 9, '{''qid'': ''Q16889435'', ''url'': ''https://www.wikidata.org/wiki/Q16889435''}', 'N', 'N', 'Y', 'N/A'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (692, 'Integrated Data Store (IDS)', 2, '{''qid'': ''Q3799287'', ''url'': ''https://www.wikidata.org/wiki/Q3799287''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (693, 'ISAM', 2, '{''qid'': ''Q1154755'', ''url'': ''https://www.wikidata.org/wiki/Q1154755''}', 'N', 'N', 'Y', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (694, 'Oracle RDS', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (695, 'SAP IQ', 2, '{''qid'': ''Q948492'', ''url'': ''https://www.wikidata.org/wiki/Q948492''}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (696, 'Cloud<>Linux', 2, '{}', 'Y', 'N', 'N', 'N'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (697, 'Apache Maven', 2, '{''qid'': ''Q139941'', ''url'': ''https://www.wikidata.org/wiki/Q139941''}', 'N', 'N', 'Y', 'Y'); -INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (698, 'IBM Basic Assembly Language (BAL)', 9, '{''qid'': ''Q5968762'', ''url'': ''https://www.wikidata.org/wiki/Q5968762''}', 'Y', 'N', 'N', 'N'); - --- Table: entity_mentions +INSERT INTO entities VALUES(1,'(E)JES',2,'{''qid'': ''Q355203'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q355203''}','Y','N','N','N'); +INSERT INTO entities VALUES(2,'A-Auto Job Scheduling Software',2,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(3,'Activiti',2,'{''qid'': ''Q344370'', ''types'': [''Q341'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Activiti_(software)''}','N','Y','Y','Y'); +INSERT INTO entities VALUES(4,'Adobe Acrobat Reader',2,'{''qid'': ''Q207902'', ''types'': [''Q29364197'', ''Q166142''], ''url'': ''http://dbpedia.org/resource/Adobe_Acrobat''}','N','N','Y','N'); +INSERT INTO entities VALUES(5,'Ansible',2,'{''qid'': ''Q2852503'', ''types'': [''Q29032804''], ''url'': ''http://dbpedia.org/resource/Ansible_(software)''}','N','N','Y','Y'); +INSERT INTO entities VALUES(6,'Apache ActiveMQ',2,'{''qid'': ''Q773135'', ''types'': [''Q6821765'', ''Q1092177'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_ActiveMQ''}','N','N','Y','Y'); +INSERT INTO entities VALUES(7,'Apache Hbase',2,'{''qid'': ''Q2538066'', ''types'': [''Q341'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Apache_HBase''}','N','Y','Y','N'); +INSERT INTO entities VALUES(8,'Apache Hive',2,'{''qid'': ''Q4778914'', ''types'': [''Q341'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Apache_Hive''}','N','N','Y','Y'); +INSERT INTO entities VALUES(9,'Apache Kafka',2,'{''qid'': ''Q16235208'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/Apache_Kafka''}','N','N','Y','Y'); +INSERT INTO entities VALUES(10,'Apache ServiceMix',2,'{''qid'': ''Q773212'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_ServiceMix''}','N','N','Y','Y'); +INSERT INTO entities VALUES(11,'Apache Solr',2,'{''qid'': ''Q2858103'', ''types'': [''Q19541'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_Solr''}','N','N','Y','Y'); +INSERT INTO entities VALUES(12,'Apache Subversion',2,'{''qid'': ''Q46794'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Apache_Subversion''}','N','N','Y','Y'); +INSERT INTO entities VALUES(13,'Application Development Facility (ADF)',2,'{''qid'': ''Q5285237'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Django_Software_Foundation''}','N','Y','Y','N'); +INSERT INTO entities VALUES(14,'Asterisk',2,'{''qid'': ''Q622754'', ''types'': [''Q1978634''], ''url'': ''http://dbpedia.org/resource/Asterisk_(PBX)''}','N','N','Y','Y'); +INSERT INTO entities VALUES(15,'Automic Job Scheduler',2,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(16,'Autosys',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(17,'Bluebeam',2,'{''qid'': ''Q4930191'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Bluebeam_Software,_Inc.''}','Y','N','N','N'); +INSERT INTO entities VALUES(18,'BMC Control-M',2,'{''qid'': ''Q4835944'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q4835944''}','Y','N','N','N'); +INSERT INTO entities VALUES(19,'BMC Identity Management',2,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(20,'Borland Database Engine (BDE)',2,'{''qid'': ''Q893888'', ''types'': [''Q537993''], ''url'': ''http://dbpedia.org/resource/Borland_Database_Engine''}','N','N','Y','N'); +INSERT INTO entities VALUES(21,'Business Intelligence and Reporting Tools (BIRT)',2,'{''qid'': ''Q796007'', ''types'': [''Q341'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/BIRT_Project''}','N','N','Y','Y'); +INSERT INTO entities VALUES(22,'CA Gen',2,'{''qid'': ''Q2125673'', ''types'': [''Q28059995''], ''url'': ''http://dbpedia.org/resource/CA_Gen''}','N','N','Y','N'); +INSERT INTO entities VALUES(23,'CA Introscope',2,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(24,'CA-Panvalet',2,'{''qid'': ''Q17073931'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Panvalet''}','Y','Y','N','N'); +INSERT INTO entities VALUES(25,'CA-TELON',2,'{''qid'': ''Q2383975'', ''types'': [''Q238137''], ''url'': ''http://dbpedia.org/resource/CA-Telon''}','Y','Y','N','N'); +INSERT INTO entities VALUES(26,'Casegen',2,'{}','Y','Y','N','N'); +INSERT INTO entities VALUES(27,'Chef Automate',2,'{''qid'': ''Q24479'', ''types'': [''Q29032804''], ''url'': ''http://dbpedia.org/resource/Chef_(software)''}','N','N','Y','Y'); +INSERT INTO entities VALUES(28,'Cisco AMP for Endpoints',2,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(29,'CiscoWorks LAN Management Solution (LMS)',2,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(30,'Citrix Virtual Apps and Desktops',2,'{''qid'': ''Q1093482'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/XenApp''}','Y','N','N','N'); +INSERT INTO entities VALUES(31,'Citrix ADC CPX',2,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(32,'Citrix Provisioning',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(33,'Clarify|*',2,'{''qid'': ''Q17105097'', ''types'': [''Q1058914''], ''url'': ''http://dbpedia.org/resource/Clarify_Op3nvoice''}','Y','Y','N','N'); +INSERT INTO entities VALUES(34,'Clarity LIMS',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(35,'LabWare LIMS',2,'{''qid'': ''Q1798149'', ''types'': [''Q121182''], ''url'': ''http://dbpedia.org/resource/Laboratory_information_management_system''}','Y','N','N','N'); +INSERT INTO entities VALUES(36,'Cognos',2,'{''qid'': ''Q1107048'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Cognos''}','N','N','Y','N'); +INSERT INTO entities VALUES(37,'Coldfusion',2,'{''qid'': ''Q468446'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Adobe_ColdFusion''}','Y','N','N','N'); +INSERT INTO entities VALUES(38,'ConceptWave',2,'{}','Y','Y','N','N'); +INSERT INTO entities VALUES(39,'CONNAPI',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(40,'Connect Direct',2,'{''qid'': ''Q369085'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Connect:Direct''}','Y','N','N','N'); +INSERT INTO entities VALUES(41,'Cornerstone software',2,'{''qid'': ''Q5171657'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Cornerstone_(software)''}','Y','N','N','N'); +INSERT INTO entities VALUES(42,'Crystal Reports',2,'{''qid'': ''Q1142403'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/Crystal_Reports''}','Y','N','N','N'); +INSERT INTO entities VALUES(43,'DB2',2,'{''qid'': ''Q431195'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/IBM_DB2''}','N','N','Y','N'); +INSERT INTO entities VALUES(44,'Documentum Content Server',2,'{''qid'': ''Q5287684'', ''types'': [''Q247423'', ''Q1344636''], ''url'': ''http://dbpedia.org/resource/Documentum''}','Y','N','N','N'); +INSERT INTO entities VALUES(45,'Drupal',2,'{''qid'': ''Q170855'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/Drupal''}','N','N','Y','Y'); +INSERT INTO entities VALUES(46,'Eclipse|*',2,'{''qid'': ''Q82268'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/Eclipse_(software)''}','N','N','Y','Y'); +INSERT INTO entities VALUES(47,'Elastic (ELK) Stack',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(48,'ETAP License Manager (LM)',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(49,'ExamDiff',2,'{''qid'': ''Q5419269'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ExamDiff_Pro''}','Y','N','N','N'); +INSERT INTO entities VALUES(50,'F5 Secure Web Gateway Services',2,'{}','Y','Y','N','N'); +INSERT INTO entities VALUES(51,'FileMaker Pro',2,'{''qid'': ''Q1982831'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/FileMaker''}','Y','N','N','N'); +INSERT INTO entities VALUES(52,'FlexNet Manager Suite',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(53,'FTP Voyager',2,'{''qid'': ''Q1389773'', ''types'': [''Q3503189'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/FTP_Voyager''}','Y','N','N','N'); +INSERT INTO entities VALUES(54,'Genymotion',2,'{''qid'': ''Q105239167'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105239167''}','Y','N','N','N'); +INSERT INTO entities VALUES(55,'Google Chrome',2,'{''qid'': ''Q777'', ''types'': [''Q6368''], ''url'': ''http://dbpedia.org/resource/Google_Chrome''}','N','N','Y','N'); +INSERT INTO entities VALUES(56,'Greenplum DB',2,'{''qid'': ''Q4039706'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Greenplum''}','N','N','Y','N'); +INSERT INTO entities VALUES(57,'Hadoop',2,'{''qid'': ''Q29120'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Apache_Hadoop''}','N','N','Y','Y'); +INSERT INTO entities VALUES(58,'HP aC++ compiler',2,'{''qid'': ''Q5635754'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/HP_aC++''}','Y','N','N','N'); +INSERT INTO entities VALUES(59,'HP C/ANSI C compiler',2,'{''qid'': ''Q4045464'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Norcroft_C_compiler''}','Y','N','N','N'); +INSERT INTO entities VALUES(60,'HP Operations Orchestration (HPOO)',2,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(61,'HP Server Automation (HPSA)',2,'{}','Y','Y','N','N'); +INSERT INTO entities VALUES(62,'IBM BigFix Platform|*',2,'{''qid'': ''Q7810432'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_BigFix''}','Y','N','N','N'); +INSERT INTO entities VALUES(63,'IBM Business Monitor',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(64,'IBM Business Process Manager',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(65,'IBM Content Manager OnDemand (CMOD)',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(66,'IBM FileNet P8 Platform',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(67,'IBM InfoSphere DataStage',2,'{''qid'': ''Q5968866'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_InfoSphere_DataStage''}','Y','N','N','N'); +INSERT INTO entities VALUES(68,'IBM Integration Bus|*',2,'{''qid'': ''Q5969139'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Integration_Bus''}','N','N','Y','N'); +INSERT INTO entities VALUES(69,'IBM License Metric Tool',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(70,'IBM Maximo',2,'{''qid'': ''Q55622518'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Maximo_(MRO)''}','N','N','Y','N'); +INSERT INTO entities VALUES(71,'IBM Migration Utility',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(72,'IBM Mobile Foundation',2,'{''qid'': ''Q25324136'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_MobileFirst''}','Y','N','N','N'); +INSERT INTO entities VALUES(73,'IBM Operational Decision Manager (ODM)',2,'{''qid'': ''Q16928000'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Operational_Decision_Management''}','N','N','Y','N'); +INSERT INTO entities VALUES(76,'IBM Tivoli Composite Application Manager',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(77,'IBM Tivoli Monitoring',2,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(79,'IBM Tivoli Workload Scheduler (TWS)',2,'{''qid'': ''None'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Workload_Scheduler''}','N','N','Y','N'); +INSERT INTO entities VALUES(80,'IBM WebSphere Business Integration Adaptor',2,'{''qid'': ''Q5969131'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Adapters''}','Y','N','N','N'); +INSERT INTO entities VALUES(81,'IBM Websphere MQ',2,'{''qid'': ''Q528294'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_MQ''}','N','Y','Y','N'); +INSERT INTO entities VALUES(82,'IBM WebSphere MQ Telemetry',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(83,'IBM WebSphere Transformation Extender (WTX)',2,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(84,'IMS DB',2,'{''qid'': ''Q1571984'', ''types'': [''Q871236'', ''Q4388320'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/IBM_Information_Management_System''}','N','N','Y','N'); +INSERT INTO entities VALUES(85,'Info-ZIP',2,'{''qid'': ''Q1662431'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Info-ZIP''}','Y','N','N','N'); +INSERT INTO entities VALUES(86,'Infobright Community Edition (ICE)',2,'{''qid'': ''Q3150805'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Infobright''}','N','N','Y','N'); +INSERT INTO entities VALUES(87,'Informatica PowerCenter',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(88,'Ingres',2,'{''qid'': ''Q60463'', ''types'': [''Q1130645'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Ingres_(database)''}','N','N','Y','N'); +INSERT INTO entities VALUES(89,'JBoss|JBoss Enterprise Service Bus',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(90,'Jenkins',2,'{''qid'': ''Q7491312'', ''types'': [''Q16947796''], ''url'': ''http://dbpedia.org/resource/Jenkins_(software)''}','N','N','Y','N'); +INSERT INTO entities VALUES(91,'joinIT',2,'{}','N','N','Y*','N'); +INSERT INTO entities VALUES(92,'LifeFlow',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(93,'Lotus Notes',2,'{''qid'': ''Q60198'', ''types'': [''Q474157'', ''Q28601953'', ''Q131093''], ''url'': ''http://dbpedia.org/resource/IBM_Notes''}','Y','N','N','N'); +INSERT INTO entities VALUES(94,'MaaS360',2,'{''qid'': ''Q39089630'', ''types'': [''None''], ''url'': ''None''}','Y','N','N','N'); +INSERT INTO entities VALUES(95,'Malwarebytes Anti-Malware',2,'{''qid'': ''Q1783235'', ''types'': [''Q13429867''], ''url'': ''http://dbpedia.org/resource/Malwarebytes_Anti-Malware''}','Y','N','N','N'); +INSERT INTO entities VALUES(96,'ManageEngine ADSelfService Plus',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(97,'MarkLogic DB',2,'{''qid'': ''Q6766381'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/MarkLogic''}','N','N','Y','N'); +INSERT INTO entities VALUES(98,'Memcached',2,'{''qid'': ''Q306661'', ''types'': [''Q165596'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Memcached''}','N','N','Y','Y'); +INSERT INTO entities VALUES(99,'Microsoft Access',2,'{''qid'': ''Q80689'', ''types'': [''Q218616'', ''Q176165'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_Access''}','Y','N','N','N'); +INSERT INTO entities VALUES(100,'Microsoft BizTalk Adapters for Host Systems',2,'{''qid'': ''Q904150'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_BizTalk_Server''}','Y','N','N','N'); +INSERT INTO entities VALUES(101,'Microsoft Dynamics AX',2,'{''qid'': ''Q675860'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_Dynamics_AX''}','N','N','Y','N'); +INSERT INTO entities VALUES(102,'Microsoft Endpoint Configuration Manager (SCCM)',2,'{''qid'': ''Q2061082'', ''types'': [''Q312466'', ''Q1371279''], ''url'': ''http://dbpedia.org/resource/System_Center_Configuration_Manager''}','Y','N','N','N'); +INSERT INTO entities VALUES(103,'Microsoft Excel',2,'{''qid'': ''Q11272'', ''types'': [''Q218616'', ''Q183197''], ''url'': ''http://dbpedia.org/resource/Microsoft_Excel''}','Y','N','N','N'); +INSERT INTO entities VALUES(104,'Microsoft Exchange Server|*',2,'{''qid'': ''Q223653'', ''types'': [''Q474157'', ''Q859477'', ''Q2933820''], ''url'': ''http://dbpedia.org/resource/Microsoft_Exchange_Server''}','Y','N','N','N'); +INSERT INTO entities VALUES(105,'Microsoft Forefront Identity Manager (FIM)',2,'{''qid'': ''Q5468182'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Forefront_Identity_Manager''}','Y','N','N','N'); +INSERT INTO entities VALUES(106,'Microsoft InfoPath',2,'{''qid'': ''Q706294'', ''types'': [''Q474157'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_InfoPath''}','Y','N','N','N'); +INSERT INTO entities VALUES(107,'Microsoft Internet Explorer',2,'{''qid'': ''Q1575'', ''types'': [''Q218616'', ''Q498267'', ''Q6368''], ''url'': ''http://dbpedia.org/resource/Internet_Explorer''}','Y','N','N','N'); +INSERT INTO entities VALUES(108,'Microsoft ISA Server',2,'{''qid'': ''Q632851'', ''types'': [''Q40056''], ''url'': ''http://dbpedia.org/resource/Microsoft_Forefront_Threat_Management_Gateway''}','Y','N','N','N'); +INSERT INTO entities VALUES(109,'Microsoft MQ',2,'{''qid'': ''Q1931595'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Microsoft_Message_Queuing''}','Y','N','N','N'); +INSERT INTO entities VALUES(110,'Microsoft System Center Endpoint Protection',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(111,'Microsoft Visual Studio',2,'{''qid'': ''Q134067'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/Microsoft_Visual_Studio''}','Y','N','N','N'); +INSERT INTO entities VALUES(112,'Microsoft Web Deploy',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(113,'Microsoft Web Farm Framework (WFF)',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(114,'Microsoft Web Platform Installer',2,'{''qid'': ''Q976637'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Web_Platform_Installer''}','Y','N','N','N'); +INSERT INTO entities VALUES(115,'Model Driven Workflow (MDW)',2,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(116,'MongoDB',2,'{''qid'': ''Q1165204'', ''types'': [''Q1235236'', ''Q176165'', ''Q82231''], ''url'': ''http://dbpedia.org/resource/MongoDB''}','N','N','Y','N'); +INSERT INTO entities VALUES(117,'Mozilla Firefox',2,'{''qid'': ''Q698'', ''types'': [''Q6368''], ''url'': ''http://dbpedia.org/resource/Firefox''}','N','N','Y','Y'); +INSERT INTO entities VALUES(118,'MQ Client',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(119,'MS Office 365',2,'{''qid'': ''Q775811'', ''types'': [''Q1254596'', ''Q26674207''], ''url'': ''http://dbpedia.org/resource/Office_365''}','Y','N','N','N'); +INSERT INTO entities VALUES(121,'MS SQL Server Compact',2,'{''qid'': ''Q1814028'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Compact''}','N','N','Y','N'); +INSERT INTO entities VALUES(122,'MySQL',2,'{''qid'': ''Q850'', ''types'': [''Q1371279'', ''Q1130645'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/MySQL''}','N','N','Y','Y'); +INSERT INTO entities VALUES(123,'Neo4j',2,'{''qid'': ''Q1628290'', ''types'': [''Q99510066'', ''Q218616'', ''Q595971'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Neo4j''}','N','N','Y','Y'); +INSERT INTO entities VALUES(124,'Nexus Repository OSS',2,'{}','N','Y','Y','N'); +INSERT INTO entities VALUES(125,'Nix package manager',2,'{''qid'': ''Q7041957'', ''types'': [''Q891055'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Nix_package_manager''}','N','N','Y','Y'); +INSERT INTO entities VALUES(126,'OpenLDAP',2,'{''qid'': ''Q682918'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/OpenLDAP''}','N','N','Y','Y'); +INSERT INTO entities VALUES(127,'OpenText Exstream',2,'{''qid'': ''Q5421776'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Exstream_Software''}','N','Y','Y','N'); +INSERT INTO entities VALUES(128,'OpenVPN',2,'{''qid'': ''Q509075'', ''types'': [''Q166142'', ''Q341''], ''url'': ''http://dbpedia.org/resource/OpenVPN''}','N','N','Y','Y'); +INSERT INTO entities VALUES(129,'Oracle Access Management',2,'{''qid'': ''Q7099276'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Identity_Management''}','Y','Y','N','N'); +INSERT INTO entities VALUES(130,'Oracle ADF',2,'{''qid'': ''Q1853309'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Development_Framework''}','Y','N','N','N'); +INSERT INTO entities VALUES(131,'Oracle APEX',2,'{''qid'': ''Q1908291'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Express''}','N','N','Y','N'); +INSERT INTO entities VALUES(132,'Oracle BI Publisher',2,'{''qid'': ''Q7099244'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_BI_Publisher''}','Y','N','N','N'); +INSERT INTO entities VALUES(133,'Oracle Business Intelligence',2,'{''qid'': ''Q7099251'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Business_Intelligence_Suite_Enterprise_Edition''}','Y','N','N','N'); +INSERT INTO entities VALUES(134,'Oracle Database|*',2,'{''qid'': ''Q185524'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/Oracle_Database''}','N','N','Y','N'); +INSERT INTO entities VALUES(135,'Oracle Designer',2,'{''qid'': ''Q7099261'', ''types'': [''Q28059995''], ''url'': ''http://dbpedia.org/resource/Oracle_Designer''}','N','Y','Y','N'); +INSERT INTO entities VALUES(136,'Oracle Enterprise Manager',2,'{''qid'': ''Q7099266'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Enterprise_Manager''}','Y','N','N','N'); +INSERT INTO entities VALUES(137,'Oracle Forms',2,'{''qid'': ''Q744707'', ''types'': [''Q756637''], ''url'': ''http://dbpedia.org/resource/Oracle_Forms''}','N','N','Y','N'); +INSERT INTO entities VALUES(138,'Oracle Hyperion|Hyperion Interactive Reporting',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(139,'Oracle Hyperion|Hyperion Planning',2,'{''qid'': ''Q5958168'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q5958168''}','Y','N','N','N'); +INSERT INTO entities VALUES(140,'Oracle Net Services',2,'{''qid'': ''Q7099283'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Net_Services''}','Y','Y','N','N'); +INSERT INTO entities VALUES(141,'Oracle Real Application Clusters (RAC)',2,'{''qid'': ''Q1418481'', ''types'': [''Q28057052''], ''url'': ''http://dbpedia.org/resource/Oracle_RAC''}','N','Y','Y','N'); +INSERT INTO entities VALUES(142,'Oracle Retail Point-of-Service',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(143,'Oracle Service Bus',2,'{''qid'': ''Q7099295'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Service_Bus''}','Y','N','N','N'); +INSERT INTO entities VALUES(144,'Oracle Smart View',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(145,'Oracle SOA Suite',2,'{''qid'': ''Q7099294'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_SOA_Suite''}','N','N','Y','N'); +INSERT INTO entities VALUES(146,'Oracle SQL Developer',2,'{''qid'': ''Q931351'', ''types'': [''Q13741'', ''Q47607''], ''url'': ''http://dbpedia.org/resource/Oracle_SQL_Developer''}','N','N','Y','N'); +INSERT INTO entities VALUES(147,'Oracle TimesTen In-Memory Database',2,'{''qid'': ''Q3991449'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/TimesTen''}','Y','N','N','N'); +INSERT INTO entities VALUES(148,'Oracle Warehouse Builder (OWB)',2,'{''qid'': ''Q3354986'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Warehouse_Builder''}','Y','N','N','N'); +INSERT INTO entities VALUES(149,'Orbix',2,'{''qid'': ''Q4045955'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Orbix_(software)''}','Y','N','N','N'); +INSERT INTO entities VALUES(150,'Pentaho',2,'{''qid'': ''Q644841'', ''types'': [''Q341'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Pentaho''}','N','N','Y','Y'); +INSERT INTO entities VALUES(151,'PeopleSoft',2,'{''qid'': ''Q1928814'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/PeopleSoft''}','N','Y','Y','N'); +INSERT INTO entities VALUES(152,'Perkin Elmer Informatics (PKI)',2,'{}','Y','Y','N','N'); +INSERT INTO entities VALUES(153,'Pervasive PSQL',2,'{''qid'': ''Q7171236'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Pervasive_PSQL''}','Y','N','N','N'); +INSERT INTO entities VALUES(154,'PIPE-FLO',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(155,'PKZIP',2,'{''qid'': ''Q1602149'', ''types'': [''Q25303924''], ''url'': ''http://dbpedia.org/resource/PKZIP''}','Y','N','N','N'); +INSERT INTO entities VALUES(156,'Planview',2,'{''qid'': ''Q19903554'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Planview''}','Y','N','N','N'); +INSERT INTO entities VALUES(157,'PostgreSQL',2,'{''qid'': ''Q192490'', ''types'': [''Q341'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/PostgreSQL''}','N','N','Y','Y'); +INSERT INTO entities VALUES(158,'Powerbuilder',2,'{''qid'': ''Q580882'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/PowerBuilder''}','Y','N','N','N'); +INSERT INTO entities VALUES(159,'Primavera P6',2,'{''qid'': ''Q2111327'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Primavera_(software)''}','Y','N','N','N'); +INSERT INTO entities VALUES(160,'Pro*COBOL',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(161,'ProjectWise',2,'{''qid'': ''Q7248950'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/ProjectWise''}','Y','N','N','N'); +INSERT INTO entities VALUES(162,'ProjectWise Web Server',2,'{''qid'': ''Q7248950'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/ProjectWise''}','Y','N','N','N'); +INSERT INTO entities VALUES(163,'PVCS Version Manager',2,'{''qid'': ''Q3359906'', ''types'': [''Q3257930'', ''Q55680343''], ''url'': ''http://dbpedia.org/resource/PVCS''}','Y','N','N','N'); +INSERT INTO entities VALUES(164,'QlikView',2,'{''qid'': ''Q105859488'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105859488''}','Y','N','N','N'); +INSERT INTO entities VALUES(165,'RabbitMQ',2,'{''qid'': ''Q2081413'', ''types'': [''Q6821765'', ''Q341''], ''url'': ''http://dbpedia.org/resource/RabbitMQ''}','N','N','Y','Y'); +INSERT INTO entities VALUES(166,'Rational ClearCase',2,'{''qid'': ''Q593863'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Rational_ClearCase''}','Y','N','N','N'); +INSERT INTO entities VALUES(167,'Rational ClearQuest',2,'{''qid'': ''Q1493633'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Rational_ClearQuest''}','Y','N','N','N'); +INSERT INTO entities VALUES(168,'Redis',2,'{''qid'': ''Q2136322'', ''types'': [''Q82231''], ''url'': ''http://dbpedia.org/resource/Redis''}','N','N','Y','Y'); +INSERT INTO entities VALUES(169,'Remedy',2,'{''qid'': ''Q7311616'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Remedy_Debugger''}','N','N','Y','N'); +INSERT INTO entities VALUES(170,'Riak',2,'{''qid'': ''Q2328712'', ''types'': [''Q506883'', ''Q20706915'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Riak''}','N','N','Y','N'); +INSERT INTO entities VALUES(171,'RightFax',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(172,'Rumba',2,'{''qid'': ''Q21684437'', ''types'': [''Q1544863'', ''Q3328778''], ''url'': ''http://dbpedia.org/resource/Rumba''}','N','N','Y','N'); +INSERT INTO entities VALUES(173,'SAP BusinessObjects BI server',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(174,'SAP ERP|*',2,'{''qid'': ''Q167533'', ''types'': [''Q28057030''], ''url'': ''http://dbpedia.org/resource/SAP_ERP''}','Y','N','N','N'); +INSERT INTO entities VALUES(175,'SAP HANA DB',2,'{''qid'': ''Q951374'', ''types'': [''Q1572823'', ''Q166142'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/SAP_HANA''}','N','N','Y','N'); +INSERT INTO entities VALUES(176,'SAP MaxDB',2,'{''qid'': ''Q2143312'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/MaxDB''}','N','N','Y','N'); +INSERT INTO entities VALUES(177,'SAP NetWeaver Business Warehouse',2,'{''qid'': ''Q1269377'', ''types'': [''Q193351''], ''url'': ''http://dbpedia.org/resource/SAP_NetWeaver_Business_Warehouse''}','Y','N','N','N'); +INSERT INTO entities VALUES(178,'SAP SQL Anywhere',2,'{''qid'': ''Q2247564'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQL_Anywhere''}','N','N','Y','N'); +INSERT INTO entities VALUES(179,'SAP Web Dynpro',2,'{''qid'': ''Q1804792'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Web_Dynpro''}','Y','Y','N','N'); +INSERT INTO entities VALUES(180,'Sentry',2,'{''qid'': ''Q3478803'', ''types'': [''Q58778''], ''url'': ''http://dbpedia.org/resource/Sentry_(monitoring_system)''}','N','Y','Y','N'); +INSERT INTO entities VALUES(182,'Siebel',2,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(183,'SNA Manager',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(184,'SnagIt',2,'{''qid'': ''Q1776235'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Snagit''}','Y','N','N','N'); +INSERT INTO entities VALUES(185,'solidDB',2,'{''qid'': ''Q7557804'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SolidDB''}','Y','N','N','N'); +INSERT INTO entities VALUES(186,'SonarQube',2,'{''qid'': ''Q541691'', ''types'': [''Q28061130'', ''Q341''], ''url'': ''http://dbpedia.org/resource/SonarQube''}','N','Y','Y','Y'); +INSERT INTO entities VALUES(187,'SpaceMonger',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(188,'Splunk',2,'{''qid'': ''Q1835753'', ''types'': [''Q1058914'', ''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Splunk''}','N','N','Y','N'); +INSERT INTO entities VALUES(189,'SQLIO',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(190,'Sybase SQL Server|*',2,'{''qid'': ''Q2576415'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/Adaptive_Server_Enterprise''}','N','Y','Y','N'); +INSERT INTO entities VALUES(191,'Syncsort',2,'{''qid'': ''Q7662279'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Syncsort''}','Y','N','N','N'); +INSERT INTO entities VALUES(193,'Sysinternal Tools|*',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(194,'Sysinternal Tools|AccessEnum',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(195,'Sysinternal Tools|ClockRes',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(196,'Sysinternal Tools|Coreinfo',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(197,'Sysinternal Tools|DiskExt',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(198,'Sysinternal Tools|DiskMon',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(199,'Sysinternal Tools|Hex2dec',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(200,'Sysinternal Tools|Junction',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(201,'Sysinternal Tools|LDMDump',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(202,'Sysinternal Tools|LoadOrder',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(203,'Sysinternal Tools|PipeList',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(204,'Sysinternal Tools|Process Explorer',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(205,'Sysinternal Tools|PsKill',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(206,'Sysinternal Tools|PsPasswd',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(207,'Sysinternal Tools|SDelete',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(208,'Sysinternal Tools|ShareEnum',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(209,'Sysinternal Tools|Sync',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(210,'Sysinternal Tools|TCPView',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(211,'Sysinternal Tools|VMMap',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(212,'Sysinternal Tools|Whois',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(213,'Tableau',2,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(214,'TCPLink Enterprise Server',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(215,'Teradata',2,'{''qid'': ''Q430745'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Teradata''}','N','N','Y','N'); +INSERT INTO entities VALUES(216,'Teradata QS Server',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(217,'TIBCO Business Works (BW)|*',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(218,'TIBCO InConcert',2,'{}','Y','Y','N','N'); +INSERT INTO entities VALUES(219,'TIBCO Rendezvous',2,'{''qid'': ''Q11198794'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/TIBCO_Rendezvous''}','N','N','Y','N'); +INSERT INTO entities VALUES(220,'Tivoli Access Manager (TAM)',2,'{''qid'': ''None'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Access_Manager''}','N','N','Y','N'); +INSERT INTO entities VALUES(221,'TortoiseCVS',2,'{''qid'': ''Q2883113'', ''types'': [''Q166142'', ''Q341''], ''url'': ''http://dbpedia.org/resource/TortoiseCVS''}','Y','N','N','Y'); +INSERT INTO entities VALUES(222,'TortoiseSVN',2,'{''qid'': ''Q1062467'', ''types'': [''Q166142'', ''Q1130645''], ''url'': ''http://dbpedia.org/resource/TortoiseSVN''}','Y','N','N','N'); +INSERT INTO entities VALUES(223,'TSO/ISPF',2,'{''qid'': ''Q679906'', ''types'': [''Q131212''], ''url'': ''http://dbpedia.org/resource/ISPF''}','Y','N','N','N'); +INSERT INTO entities VALUES(224,'TWS zCentric',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(225,'Uniface',2,'{''qid'': ''Q2143563'', ''types'': [''Q9143'', ''Q13741'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/Uniface_(programming_language)''}','N','N','Y','N'); +INSERT INTO entities VALUES(226,'ViewNow X Server',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(227,'Virtual I/O Server',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(228,'Visibroker',2,'{''qid'': ''Q7936097'', ''types'': [''Q146768''], ''url'': ''http://dbpedia.org/resource/Visibroker''}','Y','N','N','N'); +INSERT INTO entities VALUES(229,'VMware Solution Exchange Marketplace (VSX)',2,'{}','Y','Y','N','N'); +INSERT INTO entities VALUES(230,'VMware Tools',2,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(231,'VMware vCenter',2,'{''qid'': ''Q55636858'', ''types'': [''Q218616'', ''Q1371279''], ''url'': ''None''}','N','N','Y','N'); +INSERT INTO entities VALUES(232,'WebFOCUS',2,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(233,'WebLogic Integration',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(234,'WebSphere Commerce Suite (WCS)',2,'{''qid'': ''Q5969126'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebSphere_Commerce''}','Y','N','N','N'); +INSERT INTO entities VALUES(235,'WebSphere Message Broker',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(236,'Wherescape Red',2,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(237,'Windchill',2,'{''qid'': ''Q8024086'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Windchill_(software)''}','Y','N','N','N'); +INSERT INTO entities VALUES(238,'Windows Indexing Service',2,'{''qid'': ''Q575974'', ''types'': [''Q1138815''], ''url'': ''http://dbpedia.org/resource/Indexing_Service''}','Y','N','N','N'); +INSERT INTO entities VALUES(239,'Windows Terminal Server (WTS)',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(240,'WingArc SVF',2,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(241,'WinMerge',2,'{''qid'': ''Q250602'', ''types'': [''Q341'', ''Q2990323''], ''url'': ''http://dbpedia.org/resource/WinMerge''}','N','N','Y','Y'); +INSERT INTO entities VALUES(242,'WinRAR',2,'{''qid'': ''Q242747'', ''types'': [''Q25303924'', ''Q185534''], ''url'': ''http://dbpedia.org/resource/WinRAR''}','Y','N','N','N'); +INSERT INTO entities VALUES(243,'WinSCP',2,'{''qid'': ''Q1160381'', ''types'': [''Q3503189'', ''Q2158576'', ''Q341''], ''url'': ''http://dbpedia.org/resource/WinSCP''}','Y','N','N','N'); +INSERT INTO entities VALUES(244,'Wise Package Studio',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(245,'Wordpress',2,'{''qid'': ''Q13166'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/WordPress''}','N','N','Y','Y'); +INSERT INTO entities VALUES(246,'XAMPP',2,'{''qid'': ''Q324073'', ''types'': [''Q100528793'', ''Q341''], ''url'': ''http://dbpedia.org/resource/XAMPP''}','N','N','Y','Y'); +INSERT INTO entities VALUES(247,'ZAP BI',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(248,'ZeroMQ',2,'{''qid'': ''Q8079189'', ''types'': [''Q188860'', ''Q341''], ''url'': ''http://dbpedia.org/resource/ZeroMQ''}','N','N','Y','Y'); +INSERT INTO entities VALUES(249,'Zerto Virtual Replication',2,'{''qid'': ''Q8069662'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Zerto''}','N','N','Y','N'); +INSERT INTO entities VALUES(250,'IBM PowerHA',2,'{''qid'': ''Q10850880'', ''types'': [''Q28057052'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_High_Availability_Cluster_Multiprocessing''}','Y','N','N','N'); +INSERT INTO entities VALUES(251,'Tivoli Netcool/OMNIbus',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(252,'IBM ILOG Views',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(253,'IBM ILOG CPLEX',2,'{''qid'': ''Q2372381'', ''types'': [''Q74086777''], ''url'': ''http://dbpedia.org/resource/CPLEX''}','Y','N','N','N'); +INSERT INTO entities VALUES(254,'IBM ILOG Jviews',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(255,'IBM ILOG Elixir',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(256,'IBM ILOG Supply Chain Apps',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(257,'ILOG Solver',2,'{''qid'': ''Q2011386'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/ILOG''}','Y','N','N','N'); +INSERT INTO entities VALUES(258,'SQLite',2,'{''qid'': ''Q319417'', ''types'': [''Q35687379'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQLite''}','N','N','Y','Y'); +INSERT INTO entities VALUES(259,'Apache HTTP Server',8,'{''qid'': ''Q11354'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/Apache_HTTP_Server''}','N','N','Y','Y'); +INSERT INTO entities VALUES(260,'Apache Tomcat',8,'{''qid'': ''Q507430'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Apache_Tomcat''}','N','N','Y','Y'); +INSERT INTO entities VALUES(261,'ArcGIS Server',8,'{''qid'': ''Q4784987'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ArcGIS_Server''}','N','N','Y','N'); +INSERT INTO entities VALUES(263,'GlassFish',8,'{''qid'': ''Q68847'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/GlassFish''}','N','N','Y','N'); +INSERT INTO entities VALUES(264,'HAProxy',8,'{''qid'': ''Q5628948'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/HAProxy''}','N','N','Y','Y'); +INSERT INTO entities VALUES(265,'IBM HTTP Server',8,'{''qid'': ''Q821668'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/IBM_HTTP_Server''}','N','N','Y','N'); +INSERT INTO entities VALUES(268,'JBoss|*',8,'{''qid'': ''Q485593'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/JBoss_(company)''}','N','N','Y','N'); +INSERT INTO entities VALUES(269,'Kitura',8,'{''qid'': ''Q28130427'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Kitura''}','N','N','Y','N'); +INSERT INTO entities VALUES(270,'Lotus Domino',8,'{''qid'': ''Q1069529'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q1069529''}','Y','N','N','N'); +INSERT INTO entities VALUES(271,'Lucee',8,'{''qid'': ''Q105180640'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Lucee''}','N','N','Y','Y'); +INSERT INTO entities VALUES(272,'Netscape Application Server (NAS)',8,'{''qid'': ''Q7000305'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Netscape_Application_Server''}','Y','N','N','N'); +INSERT INTO entities VALUES(273,'Netscape Enterprise Server (NES)',8,'{''qid'': ''Q478430'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q478430''}','Y','N','N','N'); +INSERT INTO entities VALUES(274,'Nginx',8,'{''qid'': ''Q306144'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/Nginx''}','N','N','Y','Y'); +INSERT INTO entities VALUES(276,'Oracle WebCenter Content Server|*',8,'{''qid'': ''Q2309159'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/Oracle_WebCenter''}','Y','N','N','N'); +INSERT INTO entities VALUES(277,'Pivotal tc Server',8,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(278,'Resin Web Server',8,'{''qid'': ''Q2145742'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Resin_(software)''}','N','N','Y','Y'); +INSERT INTO entities VALUES(279,'SAP NetWeaver App Server|*',8,'{''qid'': ''Q2204924'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/SAP_NetWeaver''}','Y','N','N','N'); +INSERT INTO entities VALUES(280,'Spark',8,'{''qid'': ''Q20712258'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Spark_(software)''}','N','N','Y','N'); +INSERT INTO entities VALUES(281,'Oracle iPlanet Web Server',8,'{''qid'': ''Q1225115'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_iPlanet_Web_Server''}','Y','N','N','N'); +INSERT INTO entities VALUES(282,'UltiDev Web Server Pro (UWS)',8,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(283,'webMethods Integration Server',8,'{''qid'': ''Q7978461'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebMethods_Integration_Server''}','Y','N','N','N'); +INSERT INTO entities VALUES(284,'Websphere Application Server (WAS)',8,'{''qid'': ''Q81612'', ''types'': [''Q1330336'', ''Q71550''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Application_Server''}','N','N','Y','N'); +INSERT INTO entities VALUES(285,'WebSphere Liberty',8,'{''qid'': ''Q2536917'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q2536917''}','N','N','Y','N'); +INSERT INTO entities VALUES(286,'WebSphere Portal Server',8,'{''qid'': ''Q4053022'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebSphere_Portal''}','N','N','Y','N'); +INSERT INTO entities VALUES(287,'Websphere Process Server',8,'{''qid'': ''Q5969143'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Process_Server''}','Y','N','N','N'); +INSERT INTO entities VALUES(289,'Oracle Real-Time Decisions (RTD)',8,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(290,'CA API Gateway',4,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(291,'Citrix ADC SDX',4,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(292,'Citrix ADC MPX',4,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(293,'HP Nonstop',4,'{''qid'': ''Q826798'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/NonStop_(server_computers)''}','Y','N','N','N'); +INSERT INTO entities VALUES(294,'IBM DataPower Gateway',4,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(295,'IBM Power Systems',4,'{''qid'': ''Q2040857'', ''types'': [''Q10929058''], ''url'': ''http://dbpedia.org/resource/IBM_Power_Systems''}','Y','N','N','N'); +INSERT INTO entities VALUES(296,'Intel Xeon Processor',4,'{''qid'': ''Q656154'', ''types'': [''Q431289'', ''Q12047070''], ''url'': ''http://dbpedia.org/resource/Xeon''}','Y','N','N','N'); +INSERT INTO entities VALUES(297,'Net Optics Taps',4,'{''qid'': ''Q17114213'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Net_Optics''}','Y','N','N','N'); +INSERT INTO entities VALUES(298,'Oracle Exadata',4,'{''qid'': ''Q4038419'', ''types'': [''Q68''], ''url'': ''http://dbpedia.org/resource/Oracle_Exadata''}','Y','N','N','N'); +INSERT INTO entities VALUES(299,'AutoIt',9,'{''qid'': ''Q784845'', ''types'': [''Q187432'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/AutoIt''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(300,'AWK',9,'{''qid'': ''Q213970'', ''types'': [''Q1418502'', ''Q187432'', ''Q28919945'', ''Q18343316'', ''Q287472''], ''url'': ''http://dbpedia.org/resource/AWK''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(301,'BASIC',9,'{''qid'': ''Q42979'', ''types'': [''Q79872'', ''Q1418502'', ''Q28922854'', ''Q9143'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/BASIC''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(302,'Brainscript',9,'{}','Y','N','N','N/A'); +INSERT INTO entities VALUES(303,'C',9,'{''qid'': ''Q15777'', ''types'': [''Q28922885'', ''Q28920117'', ''Q9143'', ''Q21562092'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C_(programming_language)''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(306,'C++|Visual C++',9,'{''qid'': ''Q847296'', ''types'': [''Q13741'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_C++''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(307,'Cascading Style Sheets (CSS)|*',9,'{''qid'': ''Q46441'', ''types'': [''Q1029123''], ''url'': ''http://dbpedia.org/resource/Cascading_Style_Sheets''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(308,'Clipper',9,'{''qid'': ''Q834358'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Clipper_(programming_language)''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(309,'CLIST',9,'{''qid'': ''Q579880'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/CLIST''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(311,'ColdFusion Markup Language (CFML)',9,'{''qid'': ''Q2524362'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ColdFusion_Markup_Language''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(312,'Data Language Interface (DL/I)',9,'{''qid'': ''Q2299300'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Data_Language_Interface''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(313,'Delphi',9,'{''qid'': ''Q487378'', ''types'': [''Q9143'', ''Q218616'', ''Q13741''], ''url'': ''http://dbpedia.org/resource/Delphi_(programming_language)''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(314,'Easytrieve',9,'{''qid'': ''Q1278381'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Easytrieve''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(315,'Expect',9,'{''qid'': ''Q2642029'', ''types'': [''Q9143'', ''Q28937412'', ''Q4826135'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Expect''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(316,'eXtensible HyperText Markup Language (XHTML)',9,'{''qid'': ''Q166074'', ''types'': [''Q20155966'', ''Q317623'', ''Q37045''], ''url'': ''http://dbpedia.org/resource/XHTML''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(318,'Extensible Markup Language (XML)|MSXML',9,'{''qid'': ''Q1133470'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/MSXML''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(319,'Extensible Stylesheet Language (XSL)',9,'{''qid'': ''Q32061'', ''types'': [''Q1029123'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/XSL''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(320,'Extensible Stylesheet Language Transformations (XLST)',9,'{''qid'': ''Q32110'', ''types'': [''Q2661442'', ''Q9143'', ''Q1144882'', ''Q3217190''], ''url'': ''http://dbpedia.org/resource/XSLT''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(321,'FOCUS',9,'{''qid'': ''Q5426833'', ''types'': [''Q238137''], ''url'': ''http://dbpedia.org/resource/FOCUS''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(322,'Fortran',9,'{''qid'': ''Q83303'', ''types'': [''Q28923026'', ''Q28922885'', ''Q899523'', ''Q28920117'', ''Q9143'', ''Q28920142'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Fortran''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(323,'Go',9,'{''qid'': ''Q37227'', ''types'': [''Q12772052'', ''Q28922885'', ''Q899523'', ''Q28920117'', ''Q9143'', ''Q28919943'', ''Q21562092'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/Go_(programming_language)''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(324,'GraphQL',9,'{''qid'': ''Q25104949'', ''types'': [''Q557770'', ''Q9143'', ''Q60551191''], ''url'': ''http://dbpedia.org/resource/GraphQL''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(325,'Groovy',9,'{''qid'': ''Q16886826'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Skeevy''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(326,'HiveQL',9,'{}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(327,'Hypertext Markup Language (HTML)',9,'{''qid'': ''Q8811'', ''types'': [''Q2661442'', ''Q17537576'', ''Q37045'', ''Q235557'', ''Q20202982''], ''url'': ''http://dbpedia.org/resource/HTML''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(328,'IBM High Level Assembler (HLASM)',9,'{''qid'': ''Q4039976'', ''types'': [''Q6470767''], ''url'': ''http://dbpedia.org/resource/IBM_High_Level_Assembler''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(329,'IBM i Control Language (CL)',9,'{''qid'': ''Q263490'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/IBM_i_Control_Language''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(330,'IBM Informix-4GL',9,'{''qid'': ''Q2816938'', ''types'': [''Q9143'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/IBM_Informix-4GL''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(333,'Java|Java Enterprise Edition (Java EE)',9,'{''qid'': ''Q193247'', ''types'': [''Q1330336'', ''Q27493'', ''Q241317''], ''url'': ''http://dbpedia.org/resource/Java_Platform,_Enterprise_Edition''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(334,'Java|Java Standard Edition (Java SE)',9,'{''qid'': ''Q747478'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Java_Platform,_Standard_Edition''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(335,'Java|JavaServer Pages (JSP)',9,'{''qid'': ''Q183169'', ''types'': [''Q351507'', ''Q20819677'', ''Q1650567'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/JavaServer_Pages''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(336,'Java|JavaServer Pages (JSP)|Scriptlets',9,'{''qid'': ''Q3476475'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Scriptlet''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(338,'JCL',9,'{''qid'': ''Q1505372'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Job_Control_Language''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(339,'Job Information Language (JIL)',9,'{}','Y','N','N','N/A'); +INSERT INTO entities VALUES(340,'JScript',9,'{''qid'': ''Q553514'', ''types'': [''Q4117406''], ''url'': ''http://dbpedia.org/resource/JScript''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(341,'Lisp',9,'{''qid'': ''Q132874'', ''types'': [''Q12772052'', ''Q28922885'', ''Q3839507'', ''Q28922887'', ''Q28922893'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Lisp_(programming_language)''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(342,'Niakwa Programming Language (NPL)',9,'{''qid'': ''Q6955040'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/NPL_(programming_language)''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(343,'Objective C',9,'{''qid'': ''Q188531'', ''types'': [''Q12772052'', ''Q28922858'', ''Q899523'', ''Q9143'', ''Q28922893''], ''url'': ''http://dbpedia.org/resource/Objective-C''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(344,'OpenEdge ABL',9,'{''qid'': ''Q1963461'', ''types'': [''Q899523'', ''Q9143'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/OpenEdge_Advanced_Business_Language''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(346,'Pascal|Object Pascal',9,'{''qid'': ''Q633894'', ''types'': [''Q12772052'', ''Q9143'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/Object_Pascal''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(348,'Perl|ActivePerl',9,'{''qid'': ''Q4033363'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ActivePerl''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(349,'Perl|Rex',9,'{''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(351,'PL/I',9,'{''qid'': ''Q223433'', ''types'': [''Q9143'', ''Q28922885''], ''url'': ''http://dbpedia.org/resource/PL/I''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(352,'PL/SQL',9,'{''qid'': ''Q41574'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/PL/SQL''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(353,'PRO*C',9,'{''qid'': ''Q2111340'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Pro*C''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(355,'R',9,'{''qid'': ''Q206904'', ''types'': [''Q9143'', ''Q1004415''], ''url'': ''http://dbpedia.org/resource/R_(programming_language)''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(356,'Rexx',9,'{''qid'': ''Q685820'', ''types'': [''Q9143'', ''Q28937412'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Rexx''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(357,'RPG',9,'{''qid'': ''Q840543'', ''types'': [''Q9143'', ''Q28922885''], ''url'': ''http://dbpedia.org/resource/IBM_RPG''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(359,'Salesforce Object Query Language (SOQL)',9,'{}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(360,'SAS',9,'{''qid'': ''Q2003932'', ''types'': [''Q9143'', ''Q13199995'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/SAS_(software)''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(361,'Sass',9,'{''qid'': ''Q1572865'', ''types'': [''Q9143'', ''Q1029123'', ''Q50843083'', ''Q918333''], ''url'': ''http://dbpedia.org/resource/Sass_(stylesheet_language)''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(362,'Scala',9,'{''qid'': ''Q460584'', ''types'': [''Q12772052'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q56062429''], ''url'': ''http://dbpedia.org/resource/Scala_(programming_language)''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(363,'Smalltalk',9,'{''qid'': ''Q235086'', ''types'': [''Q9143'', ''Q28922858'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/Smalltalk''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(364,'Swift',9,'{''qid'': ''Q17118377'', ''types'': [''Q12772052'', ''Q28923023'', ''Q3839507'', ''Q899523'', ''Q341'', ''Q9143'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Swift_(programming_language)''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(365,'TCL',9,'{''qid'': ''Q5288'', ''types'': [''Q12772052'', ''Q28922885'', ''Q899523'', ''Q187432'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Tcl''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(366,'Transact-SQL',9,'{''qid'': ''Q1411245'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Transact-SQL''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(367,'TypeScript',9,'{''qid'': ''Q978185'', ''types'': [''Q9143'', ''Q341''], ''url'': ''http://dbpedia.org/resource/TypeScript''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(368,'VB.NET',9,'{''qid'': ''Q50077'', ''types'': [''Q2378'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_Basic_.NET''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(369,'VBScript',9,'{''qid'': ''Q13743'', ''types'': [''Q187432'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/VBScript''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(370,'Visual Basic',9,'{''qid'': ''Q2378'', ''types'': [''Q28922885'', ''Q899523'', ''Q9143'', ''Q42979'', ''Q28920813''], ''url'': ''http://dbpedia.org/resource/Visual_Basic''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(371,'Visual Basic for Applications (VBA)',9,'{''qid'': ''Q667566'', ''types'': [''Q2378'', ''Q9143'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_Basic_for_Applications''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(372,'Visual FoxPro',9,'{''qid'': ''Q753868'', ''types'': [''Q9143'', ''Q28922885'', ''Q899523'', ''Q13741''], ''url'': ''http://dbpedia.org/resource/Visual_FoxPro''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(373,'VoiceXML',9,'{''qid'': ''Q776038'', ''types'': [''Q20155966''], ''url'': ''http://dbpedia.org/resource/VoiceXML''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(374,'Xbase++',9,'{''qid'': ''Q1753410'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/XBase++''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(375,'Apache Lucene',12,'{''qid'': ''Q773196'', ''types'': [''Q188860'', ''Q19541'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Lucene''}','Y','N','N','N'); +INSERT INTO entities VALUES(376,'Apache Xerces',12,'{''qid'': ''Q629740'', ''types'': [''Q188860'', ''Q1130645''], ''url'': ''http://dbpedia.org/resource/Xerces''}','Y','N','N','N'); +INSERT INTO entities VALUES(377,'Cascading Style Sheets (CSS)|Bootstrap',12,'{''qid'': ''Q1195936'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Bootstrapping''}','Y','N','N','N'); +INSERT INTO entities VALUES(378,'Java|Apache Camel',12,'{''qid'': ''Q616626'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_Camel''}','N','N','Y','Y'); +INSERT INTO entities VALUES(379,'Java|Apache Commons BeanUtils',12,'{''qid'': ''Q28916245'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q28916245''}','Y','N','N','Y'); +INSERT INTO entities VALUES(380,'Java|Apache PDFBox',12,'{''qid'': ''Q17512395'', ''types'': [''Q21127166'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_PDFBox''}','Y','N','N','Y'); +INSERT INTO entities VALUES(381,'Java|Apache Velocity',12,'{''qid'': ''Q617156'', ''types'': [''Q351507'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Apache_Velocity''}','Y','N','N','N'); +INSERT INTO entities VALUES(382,'Java|EclipseLink',12,'{''qid'': ''Q897058'', ''types'': [''Q506883''], ''url'': ''http://dbpedia.org/resource/EclipseLink''}','Y','N','N','N'); +INSERT INTO entities VALUES(383,'Java|Enterprise JavaBeans (EJB)',12,'{''qid'': ''Q742961'', ''types'': [''Q20819677'', ''Q609588''], ''url'': ''http://dbpedia.org/resource/Enterprise_JavaBeans''}','Y','N','N','N'); +INSERT INTO entities VALUES(384,'Java|EZMorph',12,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(385,'Java|Google Web Toolkit (GWT)',12,'{''qid'': ''Q79578'', ''types'': [''Q2533324'', ''Q1193246'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Google_Web_Toolkit''}','Y','N','N','Y'); +INSERT INTO entities VALUES(386,'Java|Hibernate',12,'{''qid'': ''Q747866'', ''types'': [''Q1172354'', ''Q7170392'', ''Q58748'', ''Q5227234'', ''Q341'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Hibernate_(framework)''}','Y','N','N','Y'); +INSERT INTO entities VALUES(387,'Java|IBM SDK',12,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(388,'Java|Java Development Kit (JDK)',12,'{''qid'': ''Q741303'', ''types'': [''Q467707''], ''url'': ''http://dbpedia.org/resource/Java_Development_Kit''}','Y','N','N','N'); +INSERT INTO entities VALUES(389,'Java|Java Message Service (JMS)',12,'{''qid'': ''Q755515'', ''types'': [''Q20819677'', ''Q1092177''], ''url'': ''http://dbpedia.org/resource/Java_Message_Service''}','Y','N','N','N'); +INSERT INTO entities VALUES(390,'Java|Java Web Start',12,'{''qid'': ''Q33079'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Java_Web_Start''}','Y','N','N','N'); +INSERT INTO entities VALUES(391,'Java|JavaServer Faces (JSF)',12,'{''qid'': ''Q729427'', ''types'': [''Q1330336'', ''Q20819677''], ''url'': ''http://dbpedia.org/resource/JavaServer_Faces''}','Y','N','N','N'); +INSERT INTO entities VALUES(392,'Java|JDBC',12,'{''qid'': ''Q722772'', ''types'': [''Q1172354'', ''Q165194'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/Java_Database_Connectivity''}','Y','N','N','N'); +INSERT INTO entities VALUES(393,'Java|JRuby Core',12,'{''qid'': ''Q605718'', ''types'': [], ''url'': ''http://dbpedia.org/resource/JRuby''}','Y','N','N','Y'); +INSERT INTO entities VALUES(394,'Java|Log4j',12,'{''qid'': ''Q286923'', ''types'': [''Q22003134''], ''url'': ''http://dbpedia.org/resource/Log4j''}','Y','N','N','Y'); +INSERT INTO entities VALUES(395,'Java|Quartz',12,'{''qid'': ''Q2122405'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Quartz_(scheduler)''}','Y','N','N','Y'); +INSERT INTO entities VALUES(396,'Java|Remote Method Invocation (RMI)',12,'{''qid'': ''Q61902'', ''types'': [''Q1799072''], ''url'': ''http://dbpedia.org/resource/Java_remote_method_invocation''}','Y','N','N','N'); +INSERT INTO entities VALUES(397,'Java|Servlet',12,'{''qid'': ''Q341'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Free_software''}','Y','N','N','Y'); +INSERT INTO entities VALUES(398,'Java|Spring',12,'{''qid'': ''Q720314'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q720314''}','N','N','Y','Y'); +INSERT INTO entities VALUES(399,'Java|Spring|Spring Boot',12,'{''qid'': ''Q98731994'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q98731994''}','N','N','Y','Y'); +INSERT INTO entities VALUES(400,'Java|Spring|Spring Cloud Data Flow',12,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(401,'Java|Spring|Spring MVC',12,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(402,'Java|Struts',12,'{''qid'': ''Q900957'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Apache_Struts_1''}','Y','N','N','N'); +INSERT INTO entities VALUES(403,'Java|Swing',12,'{''qid'': ''Q859221'', ''types'': [''Q21127166''], ''url'': ''http://dbpedia.org/resource/Swing_(Java)''}','N','N','Y','N'); +INSERT INTO entities VALUES(404,'Java|Vaadin',12,'{''qid'': ''Q1400683'', ''types'': [''Q1330336'', ''Q386275'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Vaadin''}','Y','N','N','N'); +INSERT INTO entities VALUES(405,'JavaScript|AJAX',12,'{''qid'': ''Q134471'', ''types'': [''Q9143'', ''Q918270'', ''Q101244''], ''url'': ''http://dbpedia.org/resource/Ajax_(programming)''}','Y','N','N','N'); +INSERT INTO entities VALUES(406,'JavaScript|AngularJS',12,'{''qid'': ''Q2849803'', ''types'': [''Q188860'', ''Q783866'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/AngularJS''}','Y','N','N','N'); +INSERT INTO entities VALUES(407,'JavaScript|Draw2D',12,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(408,'JavaScript|Express.js',12,'{''qid'': ''Q16878131'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Express.js''}','Y','N','N','N'); +INSERT INTO entities VALUES(409,'JavaScript|Ext JS',12,'{''qid'': ''Q515393'', ''types'': [''Q1193246'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/Ext_JS''}','N','N','Y','N'); +INSERT INTO entities VALUES(410,'JavaScript|jqGrid',12,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(411,'JavaScript|JQuery',12,'{''qid'': ''Q230036'', ''types'': [''Q170584'', ''Q188860'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/JQuery''}','Y','N','N','N'); +INSERT INTO entities VALUES(412,'JavaScript|Jquery|jQuery UI',12,'{''qid'': ''Q285960'', ''types'': [], ''url'': ''http://dbpedia.org/resource/JQuery_UI''}','N','N','Y','N'); +INSERT INTO entities VALUES(413,'JavaScript|React',12,'{''qid'': ''Q19399674'', ''types'': [''Q1330336'', ''Q783866'', ''Q341''], ''url'': ''http://dbpedia.org/resource/React_(JavaScript_library)''}','Y','N','N','Y'); +INSERT INTO entities VALUES(414,'JavaScript|script.aculo.us',12,'{''qid'': ''Q309509'', ''types'': [''Q188860'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/Script.aculo.us''}','Y','N','N','N'); +INSERT INTO entities VALUES(415,'JavaScript|Valums AJAX File Uploader',12,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(416,'OWASP Enterprise Security API (ESAPI)',12,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(417,'Perl|Oraperl',12,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(418,'Android',6,'{''qid'': ''Q94'', ''types'': [''Q920890''], ''url'': ''http://dbpedia.org/resource/Android_(operating_system)''}','N','N','Y','N'); +INSERT INTO entities VALUES(419,'BeOS',6,'{''qid'': ''Q62563'', ''types'': [''Q218616'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/BeOS''}','N','N','Y','N'); +INSERT INTO entities VALUES(420,'Cisco IOS',6,'{''qid'': ''Q753576'', ''types'': [''Q282080''], ''url'': ''http://dbpedia.org/resource/Cisco_IOS''}','Y','N','N','N'); +INSERT INTO entities VALUES(421,'DART',6,'{''qid'': ''Q406009'', ''types'': [''Q1330336'', ''Q12772052'', ''Q899523'', ''Q3839507'', ''Q187432'', ''Q28922893'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Dart_(programming_language)''}','N','N','Y','N'); +INSERT INTO entities VALUES(422,'Fabric OS',6,'{''qid'': ''Q5428124'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Fabric_OS''}','N','N','Y','N'); +INSERT INTO entities VALUES(423,'GNU',6,'{''qid'': ''Q44571'', ''types'': [''Q9135'', ''Q11368''], ''url'': ''http://dbpedia.org/resource/GNU''}','N','N','Y','N'); +INSERT INTO entities VALUES(424,'IBM i',6,'{''qid'': ''Q15637561'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/IBM_i''}','N','N','Y','N'); +INSERT INTO entities VALUES(425,'iOS',6,'{''qid'': ''Q48493'', ''types'': [''Q920890'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/IOS''}','Y','N','N','N'); +INSERT INTO entities VALUES(427,'Linux|CentOS',6,'{''qid'': ''Q207542'', ''types'': [''Q131669'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/CentOS''}','Y','N','N','Y'); +INSERT INTO entities VALUES(428,'Linux|Check Point',6,'{''qid'': ''Q751519'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q751519''}','Y','N','N','N'); +INSERT INTO entities VALUES(429,'Linux|Debian',6,'{''qid'': ''Q7715973'', ''types'': [''Q20983788'', ''Q3251801''], ''url'': ''http://dbpedia.org/resource/Debian''}','N','N','Y','Y'); +INSERT INTO entities VALUES(430,'Linux|Junos OS',6,'{''qid'': ''Q4041744'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Junos_OS''}','Y','N','N','N'); +INSERT INTO entities VALUES(431,'Linux|openSUSE',6,'{''qid'': ''Q16691'', ''types'': [''Q131669'', ''Q388'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/OpenSUSE''}','Y','N','N','Y'); +INSERT INTO entities VALUES(432,'Linux|Oracle Linux',6,'{''qid'': ''Q46094'', ''types'': [''Q131669'', ''Q977076''], ''url'': ''http://dbpedia.org/resource/Oracle_Linux''}','N','N','Y','Y'); +INSERT INTO entities VALUES(433,'Linux|Photon OS',6,'{''qid'': ''Q105703682'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105703682''}','N','N','Y','Y'); +INSERT INTO entities VALUES(434,'Linux|Red Hat Enterprise Linux',6,'{''qid'': ''Q215273'', ''types'': [''Q9135'', ''Q131669''], ''url'': ''http://dbpedia.org/resource/Red_Hat_Enterprise_Linux''}','N','N','Y','Y'); +INSERT INTO entities VALUES(435,'Linux|SUSE Linux Enterprise Server',6,'{''qid'': ''Q1759786'', ''types'': [''Q131669''], ''url'': ''http://dbpedia.org/resource/SUSE_Linux_Enterprise_Server''}','N','N','Y','Y'); +INSERT INTO entities VALUES(436,'Linux|Ubuntu',6,'{''qid'': ''Q381'', ''types'': [''Q131669'', ''Q5276054'', ''Q20983788'', ''Q3251801''], ''url'': ''http://dbpedia.org/resource/Ubuntu_(operating_system)''}','Y','N','N','Y'); +INSERT INTO entities VALUES(437,'Linux|zLinux',6,'{''qid'': ''Q136277'', ''types'': [''Q388''], ''url'': ''http://dbpedia.org/resource/Linux_on_z_Systems''}','N','N','Y','N'); +INSERT INTO entities VALUES(438,'macOS',6,'{''qid'': ''Q14116'', ''types'': [''Q43627'', ''Q218616'', ''Q811701'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/MacOS''}','N','N','Y','N'); +INSERT INTO entities VALUES(440,'MVS|OS/390',6,'{''qid'': ''Q1726891'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/OS/390''}','Y','N','N','N'); +INSERT INTO entities VALUES(441,'MVS|z/OS',6,'{''qid'': ''Q283705'', ''types'': [''Q14656''], ''url'': ''http://dbpedia.org/resource/Z/OS''}','Y','N','N','N'); +INSERT INTO entities VALUES(442,'OpenVMS',6,'{''qid'': ''Q479882'', ''types'': [''Q9135'', ''Q218616'', ''Q3496042''], ''url'': ''http://dbpedia.org/resource/OpenVMS''}','Y','N','N','N'); +INSERT INTO entities VALUES(443,'OS/2',6,'{''qid'': ''Q189794'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/OS/2''}','Y','N','N','N'); +INSERT INTO entities VALUES(445,'Unix|AIX',6,'{''qid'': ''Q269856'', ''types'': [''Q218616'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/IBM_AIX''}','Y','N','N','N'); +INSERT INTO entities VALUES(447,'Unix|BSD|FreeBSD',6,'{''qid'': ''Q34236'', ''types'': [], ''url'': ''http://dbpedia.org/resource/FreeBSD''}','Y','N','N','N'); +INSERT INTO entities VALUES(448,'Unix|BSD|SunOS',6,'{''qid'': ''Q1208460'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/SunOS''}','Y','N','N','N'); +INSERT INTO entities VALUES(449,'Unix|HP-UX',6,'{''qid'': ''Q847593'', ''types'': [''Q14656''], ''url'': ''http://dbpedia.org/resource/HP-UX''}','Y','N','N','N'); +INSERT INTO entities VALUES(451,'Windows|Windows Desktop',6,'{''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows''}','Y','N','N','N'); +INSERT INTO entities VALUES(452,'Windows|Windows Server',6,'{''qid'': ''Q11219'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Windows_Server''}','Y','N','N','N'); +INSERT INTO entities VALUES(453,'Linux|Fedora',6,'{''qid'': ''Q48267'', ''types'': [''Q131669'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/Fedora_(operating_system)''}','Y','N','N','Y'); +INSERT INTO entities VALUES(454,'Linux|Amazon Linux',6,'{''qid'': ''Q68223191'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q68223191''}','Y','N','N','N'); +INSERT INTO entities VALUES(455,'Clarify|Clear Basic',5,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(456,'Eclipse|ATLAS Transformation Language (ATL)',5,'{''qid'': ''Q667812'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ATLAS_Transformation_Language''}','Y','N','N','N'); +INSERT INTO entities VALUES(457,'IBM BigFix Platform|Client Deploy Tool',5,'{''qid'': ''Q1420900'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Microsoft_Deployment_Toolkit''}','Y','N','N','N'); +INSERT INTO entities VALUES(458,'IBM Integration Bus|Extended Structured Query Language (ESQL)',5,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(459,'IBM Tivoli Asset Management|Asset Discovery for Distributed',5,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(460,'IBM Tivoli Storage Manager|TSM API',5,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(461,'IBM Tivoli Storage Manager|TSM Client',5,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(462,'IBM Tivoli Storage Manager|TSM Storage Agent',5,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(463,'IBM Tivoli Storage Manager|VSS Requestor',5,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(464,'Microsoft Exchange Server|Veeam Explorer',5,'{''qid'': ''Q22096414'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q22096414''}','Y','N','N','N'); +INSERT INTO entities VALUES(465,'MS SQL Server|MS SQL Server Browser',5,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(466,'MS SQL Server|Data Transformation Services',5,'{''qid'': ''Q644775'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Data_Transformation_Services''}','Y','N','N','N'); +INSERT INTO entities VALUES(467,'MS SQL Server|Log Reader Agent',5,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(468,'MS SQL Server|SQL Server Analysis Services (SSAS)',5,'{''qid'': ''Q2067216'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_Analysis_Services''}','Y','N','N','N'); +INSERT INTO entities VALUES(469,'MS SQL Server|SQL Server Database Engine',5,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(470,'MS SQL Server|SQL Server Integration Services (SSIS)',5,'{''qid'': ''Q1231051'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Integration_Services''}','Y','N','N','N'); +INSERT INTO entities VALUES(471,'MS SQL Server|SQL Server Management Studio',5,'{''qid'': ''Q4048883'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Management_Studio''}','Y','N','N','N'); +INSERT INTO entities VALUES(472,'MS SQL Server|SQL Server Report Builder',5,'{''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services''}','Y','N','N','N'); +INSERT INTO entities VALUES(473,'MS SQL Server|SQL Server Reporting Services (SSRS)',5,'{''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services''}','Y','N','N','N'); +INSERT INTO entities VALUES(474,'Oracle Database|Jserver',5,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(475,'Oracle Database|Oracle Spatial and Graph',5,'{''qid'': ''Q3508244'', ''types'': [''Q7397'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Oracle_Spatial_and_Graph''}','Y','N','N','N'); +INSERT INTO entities VALUES(476,'SAP ERP|SAP EHP',5,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(477,'SAP ERP|SAP Kernel',5,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(478,'Oracle Database|SQL*Plus',5,'{''qid'': ''Q2575010'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL*Plus''}','Y','N','N','N'); +INSERT INTO entities VALUES(479,'Sybase SQL Server|Sybase Central',5,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(480,'Sybase SQL Server|Sybase Dsedit',5,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(481,'TIBCO Business Works (BW)|Integration Manager',5,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(482,'.NET Framework|Common Runtime Library',7,'{''qid'': ''Q1444922'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Runtime_library''}','Y','N','N','N'); +INSERT INTO entities VALUES(483,'.NET Framework|log4net',7,'{''qid'': ''Q7884429'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q7884429''}','Y','N','N','Y'); +INSERT INTO entities VALUES(484,'.NET Framework|Magick.NET',7,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(485,'.NET Framework|Windows Communication Foundation (WCF)',7,'{''qid'': ''Q261595'', ''types'': [''Q40056'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Communication_Foundation''}','Y','N','N','N'); +INSERT INTO entities VALUES(486,'.NET Framework|Windows Workflow Foundation (WF)',7,'{''qid'': ''Q1154450'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Workflow_Foundation''}','Y','N','N','N'); +INSERT INTO entities VALUES(487,'.NET Framework|WinForms',7,'{''qid'': ''Q613361'', ''types'': [''Q1193246'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Forms''}','Y','N','N','N'); +INSERT INTO entities VALUES(488,'ActiveX|ADO',7,'{''qid'': ''Q344005'', ''types'': [''Q165194''], ''url'': ''http://dbpedia.org/resource/ActiveX_Data_Objects''}','Y','N','N','N'); +INSERT INTO entities VALUES(489,'IIS|Easy Migration Tool (IEMT)',7,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(490,'IIS|Application Request Routing (ARR)',7,'{''qid'': ''Q16987674'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Application_Request_Routing''}','Y','N','N','N'); +INSERT INTO entities VALUES(491,'IIS|IIS Manager',7,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(492,'JBoss|JBoss Seam',7,'{''qid'': ''Q923560'', ''types'': [''Q1330336'', ''Q341''], ''url'': ''http://dbpedia.org/resource/JBoss_Seam''}','Y','N','N','Y'); +INSERT INTO entities VALUES(493,'JBoss|Wildfly',7,'{''qid'': ''Q68850'', ''types'': [''Q71550'', ''Q341''], ''url'': ''http://dbpedia.org/resource/WildFly''}','N','N','Y','Y'); +INSERT INTO entities VALUES(494,'Oracle Application Server|Oracle Transparent Gateway',7,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(495,'Oracle WebCenter Content Server|Idoc Script',7,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(496,'SAP NetWeaver App Server|ABAP',7,'{''qid'': ''Q380523'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ABAP''}','Y','N','N','N'); +INSERT INTO entities VALUES(497,'.NET Framework|*',10,'{''qid'': ''Q5289'', ''types'': [''Q241317'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/.NET_Framework''}','Y','N','N','N'); +INSERT INTO entities VALUES(498,'Active Directory (AD)',10,'{''qid'': ''Q55692'', ''types'': [''Q756230''], ''url'': ''http://dbpedia.org/resource/Active_Directory''}','Y','N','N','N'); +INSERT INTO entities VALUES(500,'ActiveX|*',10,'{''qid'': ''Q302022'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/ActiveX''}','N','N','Y','N'); +INSERT INTO entities VALUES(501,'Apache Cordova',10,'{''qid'': ''Q16626338'', ''types'': [''Q6934955''], ''url'': ''http://dbpedia.org/resource/Apache_Cordova''}','Y','N','N','Y'); +INSERT INTO entities VALUES(502,'CICS',10,'{''qid'': ''Q1146247'', ''types'': [''Q9143'', ''Q4388320''], ''url'': ''http://dbpedia.org/resource/CICS''}','Y','Y','N','N'); +INSERT INTO entities VALUES(503,'Docker',10,'{''qid'': ''Q15206305'', ''types'': [''Q167772'', ''Q7935198'', ''Q506883''], ''url'': ''http://dbpedia.org/resource/Docker_(software)''}','N','N','Y','N'); +INSERT INTO entities VALUES(504,'Flash',10,'{''qid'': ''Q165658'', ''types'': [''Q1155404'', ''Q241317'', ''Q2622299'', ''Q166142''], ''url'': ''http://dbpedia.org/resource/Adobe_Flash''}','Y','N','N','N'); +INSERT INTO entities VALUES(505,'HTTP File Server',10,'{''qid'': ''Q1566096'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/HTTP_File_Server''}','Y','N','N','N'); +INSERT INTO entities VALUES(506,'Java Runtime Environment (JRE)',10,'{''qid'': ''Q1504505'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q1504505''}','Y','Y','N','N'); +INSERT INTO entities VALUES(507,'Node.js',10,'{''qid'': ''Q756100'', ''types'': [''Q28920813''], ''url'': ''http://dbpedia.org/resource/Node.js''}','N','N','Y','Y'); +INSERT INTO entities VALUES(508,'Ruby on Rails',10,'{''qid'': ''Q190478'', ''types'': [''Q1330336'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Ruby_on_Rails''}','N','N','Y','Y'); +INSERT INTO entities VALUES(509,'VisualForce',10,'{}','Y','Y','N','N'); +INSERT INTO entities VALUES(510,'EMC Celerra',11,'{''qid'': ''Q5057823'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Celerra''}','Y','N','N','N'); +INSERT INTO entities VALUES(511,'Application Lifecycle Management (ALM)',1,'{''qid'': ''Q621590'', ''types'': [''Q1780667''], ''url'': ''http://dbpedia.org/resource/Application_lifecycle_management''}','N','N','Y','N'); +INSERT INTO entities VALUES(512,'Assembler Language',1,'{''qid'': ''Q165436'', ''types'': [''Q28922854'', ''Q9143'', ''Q558937''], ''url'': ''http://dbpedia.org/resource/Assembly_language''}','N','N','Y','N'); +INSERT INTO entities VALUES(513,'Batch Management Software (BMS)',1,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(514,'Business Object Reports',1,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(515,'Common Gateway Interface (CGI)',1,'{''qid'': ''Q264364'', ''types'': [''Q11016'', ''Q132364''], ''url'': ''http://dbpedia.org/resource/Common_Gateway_Interface''}','N','N','Y','N'); +INSERT INTO entities VALUES(516,'Compopent Object Model (COM)',1,'{''qid'': ''Q662200'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Component_Object_Model''}','N','N','Y','N'); +INSERT INTO entities VALUES(517,'Common Object Request Broker Architecture (CORBA)',1,'{''qid'': ''Q691593'', ''types'': [''Q317623''], ''url'': ''http://dbpedia.org/resource/Common_Object_Request_Broker_Architecture''}','Y','N','N','N'); +INSERT INTO entities VALUES(518,'CORBA Interface Definition Language (CORBA IDL)',1,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(519,'Data Control Language (DCL)',1,'{''qid'': ''Q604737'', ''types'': [''Q41591651''], ''url'': ''http://dbpedia.org/resource/Data_control_language''}','Y','N','N','N'); +INSERT INTO entities VALUES(520,'Database (DB)',1,'{''qid'': ''Q8513'', ''types'': [''Q15401930'', ''Q386724'', ''Q28813620''], ''url'': ''http://dbpedia.org/resource/Database''}','N','N','Y','N'); +INSERT INTO entities VALUES(521,'Electronic Data Interchange (EDI)',1,'{''qid'': ''Q690189'', ''types'': [''Q2989673''], ''url'': ''http://dbpedia.org/resource/Electronic_data_interchange''}','Y','N','N','N'); +INSERT INTO entities VALUES(522,'Application Web Server',1,'{''qid'': ''Q11288'', ''types'': [''Q1371279'', ''Q4485156'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Web_server''}','N','N','Y','N'); +INSERT INTO entities VALUES(523,'Java-based Document Object Model for XML (JDOM)',1,'{''qid'': ''Q359595'', ''types'': [''Q341'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/JDOM''}','N','N','Y','Y'); +INSERT INTO entities VALUES(524,'Lightweight Directory Access Protocol (LDAP)',1,'{''qid'': ''Q188816'', ''types'': [''Q756230'', ''Q15836568''], ''url'': ''http://dbpedia.org/resource/Lightweight_Directory_Access_Protocol''}','N','N','Y','N'); +INSERT INTO entities VALUES(525,'Open Database Connectivity (ODBC)',1,'{''qid'': ''Q212606'', ''types'': [''Q165194'', ''Q1172367''], ''url'': ''http://dbpedia.org/resource/Open_Database_Connectivity''}','Y','N','N','N'); +INSERT INTO entities VALUES(526,'Order Management System (OMS)',1,'{''qid'': ''Q7100437'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Order_management_system''}','Y','N','N','N'); +INSERT INTO entities VALUES(527,'Oracle Web Services',1,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(529,'Representational State Transfer (REST)',1,'{''qid'': ''Q749568'', ''types'': [''Q220644''], ''url'': ''http://dbpedia.org/resource/Representational_state_transfer''}','Y','N','N','N'); +INSERT INTO entities VALUES(530,'Service-Oriented Architecture (SOA)',1,'{''qid'': ''Q220644'', ''types'': [''Q846636''], ''url'': ''http://dbpedia.org/resource/Service-oriented_architecture''}','Y','N','N','N'); +INSERT INTO entities VALUES(531,'Simple Object Access Protocol (SOAP)',1,'{''qid'': ''Q189620'', ''types'': [''Q15836568''], ''url'': ''http://dbpedia.org/resource/SOAP''}','Y','N','N','N'); +INSERT INTO entities VALUES(533,'YAML',1,'{''qid'': ''Q281876'', ''types'': [''Q37045'', ''Q50843083'', ''Q235557'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/YAML''}','Y','N','N','N'); +INSERT INTO entities VALUES(535,'Application Server',1,'{''qid'': ''Q71550'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/Application_server''}','N','N','Y','N'); +INSERT INTO entities VALUES(536,'Cloud',1,'{''qid'': ''Q483639'', ''types'': [''Q771906'', ''Q241317''], ''url'': ''http://dbpedia.org/resource/Cloud_computing''}','N','N','Y','N'); +INSERT INTO entities VALUES(537,'Competency and Quality Assurance Server',1,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(538,'Device Provisioning Engines (DPE)',1,'{''qid'': ''Q5318925'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Dynamic_provisioning_environment''}','N','N','Y','N'); +INSERT INTO entities VALUES(539,'E-business solution',1,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(540,'Enterprise Service Bus(ESB)',1,'{''qid'': ''Q1061460'', ''types'': [''Q146923''], ''url'': ''http://dbpedia.org/resource/Enterprise_service_bus''}','N','N','Y','N'); +INSERT INTO entities VALUES(541,'File Server',1,'{''qid'': ''Q513349'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/File_server''}','N','N','Y','N'); +INSERT INTO entities VALUES(542,'General Ledger',1,'{''qid'': ''Q1977520'', ''types'': [''Q3831821'', ''Q4116214''], ''url'': ''http://dbpedia.org/resource/General_ledger''}','N','N','Y','N'); +INSERT INTO entities VALUES(543,'HTTP client',1,'{''qid'': ''Q2979024'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q2979024''}','Y','N','N','N'); +INSERT INTO entities VALUES(545,'Integrated Safe System of Work (ISSOW)',1,'{''qid'': ''Q5974495'', ''types'': [''Q317623''], ''url'': ''http://dbpedia.org/resource/ISSOW''}','N','N','Y','N'); +INSERT INTO entities VALUES(546,'Internet Exchange Point - Full Stack (ixp-ft)',1,'{''qid'': ''Q1433061'', ''types'': [''Q173106'', ''Q1293220''], ''url'': ''http://dbpedia.org/resource/Internet_exchange_point''}','N','N','Y','N'); +INSERT INTO entities VALUES(547,'Internet Message Access Protocol (IMAP)',1,'{''qid'': ''Q166936'', ''types'': [''Q16935517'', ''Q15836568''], ''url'': ''http://dbpedia.org/resource/Internet_Message_Access_Protocol''}','Y','N','N','N'); +INSERT INTO entities VALUES(548,'JSON',1,'{''qid'': ''Q2063'', ''types'': [''Q681263'', ''Q235557'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/JSON''}','N','N','Y','N'); +INSERT INTO entities VALUES(549,'KVS Application Server',1,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(550,'KVS File Server',1,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(551,'KVS Proxy Server',1,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(552,'mainframe',1,'{''qid'': ''Q177234'', ''types'': [''Q64729893''], ''url'': ''http://dbpedia.org/resource/Mainframe_computer''}','Y','N','N','N'); +INSERT INTO entities VALUES(553,'Manufacturing Execution System (MES)',1,'{''qid'': ''Q1404943'', ''types'': [''Q489371''], ''url'': ''http://dbpedia.org/resource/Manufacturing_execution_system''}','N','N','Y','N'); +INSERT INTO entities VALUES(554,'Mobile',1,'{''qid'': ''Q2738570'', ''types'': [''Q179310''], ''url'': ''http://dbpedia.org/resource/Mobile_computing''}','N','N','Y','N'); +INSERT INTO entities VALUES(555,'NonSQL',1,'{''qid'': ''Q5999165'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q5999165''}','Y','N','N','N'); +INSERT INTO entities VALUES(556,'SaaS',1,'{''qid'': ''Q1254596'', ''types'': [''Q8187769'', ''Q25036597'', ''Q17155032'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/Software_as_a_service''}','Y','N','N','N'); +INSERT INTO entities VALUES(557,'Storage Area Network (SAN)',1,'{''qid'': ''Q237576'', ''types'': [''Q15141646'', ''Q994895'', ''Q1301371''], ''url'': ''http://dbpedia.org/resource/Storage_area_network''}','N','N','Y','N'); +INSERT INTO entities VALUES(558,'Supplier Registration System Application Server',1,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(559,'Virtual Appliance',1,'{''qid'': ''Q752708'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Virtual_appliance''}','N','N','Y','N'); +INSERT INTO entities VALUES(560,'Webtop',1,'{''qid'': ''Q1780763'', ''types'': [''Q1668024''], ''url'': ''http://dbpedia.org/resource/Web_desktop''}','Y','N','N','N'); +INSERT INTO entities VALUES(561,'Proxy Server',1,'{''qid'': ''Q11189'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/Proxy_server''}','N','N','Y','N'); +INSERT INTO entities VALUES(562,'Utility',1,'{''qid'': ''Q312466'', ''types'': [''Q40056'', ''Q676202'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Utility_software''}','N','N','Y','N'); +INSERT INTO entities VALUES(563,'Citrix ADC',3,'{''qid'': ''Q12040775'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q12040775''}','N','N','Y','N'); +INSERT INTO entities VALUES(564,'Citrix ADC VPX',3,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(565,'Citrix ADC BLX',3,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(566,'InterScan Messaging Security Virtual Appliance (IMSVA)',3,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(567,'Oracle VM',3,'{''qid'': ''Q10852040'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Oracle_VM_Server_for_x86''}','Y','N','N','N'); +INSERT INTO entities VALUES(568,'VMware ESXi',3,'{''qid'': ''Q179116'', ''types'': [''Q1077480'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/VMware_ESXi''}','Y','N','N','N'); +INSERT INTO entities VALUES(569,'VMware Server',3,'{''qid'': ''Q4007037'', ''types'': [''Q1077480''], ''url'': ''http://dbpedia.org/resource/VMware_Server''}','Y','N','N','N'); +INSERT INTO entities VALUES(572,'Structured Query Language (SQL)',1,'{''qid'': ''Q47607'', ''types'': [''Q9143'', ''Q1144882'', ''Q845739'', ''Q691358''], ''url'': ''http://dbpedia.org/resource/SQL''}','Y','N','N','N'); +INSERT INTO entities VALUES(574,'Model view controller (MVC)',1,'{''qid'': ''Q44860'', ''types'': [''Q635346'', ''Q181156''], ''url'': ''http://dbpedia.org/resource/Modelûviewûcontroller''}','Y','N','N','N'); +INSERT INTO entities VALUES(576,'Linux|*',6,'{''qid'': ''Q388'', ''types'': [''Q14656'', ''Q16889133'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Linux''}','N','N','Y','Y'); +INSERT INTO entities VALUES(577,'MVS|*',6,'{''qid'': ''Q781443'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/MVS''}','Y','N','N','N'); +INSERT INTO entities VALUES(578,'Unix|*',6,'{''qid'': ''Q11368'', ''types'': [''Q170584'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/Unix''}','Y','N','N','N'); +INSERT INTO entities VALUES(579,'Unix|BSD|*',6,'{''qid'': ''Q34264'', ''types'': [''Q11368''], ''url'': ''http://dbpedia.org/resource/Berkeley_Software_Distribution''}','Y','N','N','N'); +INSERT INTO entities VALUES(580,'Windows|*',6,'{''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows''}','N','N','Y','N'); +INSERT INTO entities VALUES(581,'MS SQL Server|*',2,'{''qid'': ''Q215819'', ''types'': [''Q218616'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_SQL_Server''}','N','N','Y','N'); +INSERT INTO entities VALUES(582,'C#',9,'{''qid'': ''Q2370'', ''types'': [''Q9143'', ''Q12772052''], ''url'': ''http://dbpedia.org/resource/C_Sharp_(programming_language)''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(583,'C++|*',9,'{''qid'': ''Q2407'', ''types'': [''Q28923026'', ''Q12772052'', ''Q28922885'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q5499621'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C++''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(584,'Java|*',9,'{''qid'': ''Q251'', ''types'': [''Q12772052'', ''Q56062429'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Java_(programming_language)''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(585,'Perl|*',9,'{''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(586,'PHP',9,'{''qid'': ''Q59'', ''types'': [''Q1993334''], ''url'': ''http://dbpedia.org/resource/PHP''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(587,'Python',9,'{''qid'': ''Q28865'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Python_(programming_language)''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(588,'Ruby',9,'{''qid'': ''Q161053'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Ruby_(programming_language)''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(589,'JavaScript|*',9,'{''qid'': ''Q2005'', ''types'': [''Q241317'', ''Q12772052'', ''Q3839507'', ''Q187432'', ''Q9143'', ''Q28920810'', ''Q21562092'', ''Q28920813'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/JavaScript''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(590,'Unix|BSD|OpenBSD',6,'{''qid'': ''Q34215'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34215''}','Y','N','N','N'); +INSERT INTO entities VALUES(591,'z/VSE',6,'{''qid'': ''Q289345'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/VSE_(operating_system)''}','Y','N','N','N'); +INSERT INTO entities VALUES(592,'Active Server Pages (ASP)',9,'{''qid'': ''Q344266'', ''types'': [''Q1330336'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Active_Server_Pages''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(593,'MS-DOS',6,'{''qid'': ''Q47604'', ''types'': [''Q9135'', ''Q241317'', ''Q170434''], ''url'': ''http://dbpedia.org/resource/MS-DOS''}','Y','N','N','N'); +INSERT INTO entities VALUES(594,'COBOL',9,'{''qid'': ''Q131140'', ''types'': [''Q9143'', ''Q28922885'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/COBOL''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(595,'VME',6,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(596,'Extensible Markup Language (XML)|*',9,'{''qid'': ''Q2115'', ''types'': [''Q82753'', ''Q37045'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/XML''}','N','Y','Y','N/A'); +INSERT INTO entities VALUES(597,'DOS/360',6,'{''qid'': ''Q3487917'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/DOS/360_and_successors''}','Y','N','N','N'); +INSERT INTO entities VALUES(598,'z/TPF',6,'{''qid'': ''Q1426122'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Transaction_Processing_Facility''}','Y','N','N','N'); +INSERT INTO entities VALUES(599,'Pascal|*',9,'{''qid'': ''Q81571'', ''types'': [''Q9143'', ''Q21562092'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Pascal_(programming_language)''}','Y','Y','N','N/A'); +INSERT INTO entities VALUES(600,'Oracle WebLogic Server',8,'{''qid'': ''Q83589'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_WebLogic_Server''}','N','N','Y','N'); +INSERT INTO entities VALUES(601,'Websphere ILOG JRules BRMS',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(602,'Unix|BSD|NetBSD',6,'{''qid'': ''Q34225'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34225''}','Y','N','N','N'); +INSERT INTO entities VALUES(603,'SharePoint',2,'{''qid'': ''Q18833'', ''types'': [''Q1371279'', ''Q1344636'', ''Q131093'', ''Q831677'', ''Q615985''], ''url'': ''http://dbpedia.org/resource/SharePoint''}','Y','N','N','N'); +INSERT INTO entities VALUES(604,'IBM Tivoli Storage Manager|*',2,'{''qid'': ''Q2001900'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Storage_Manager''}','Y','N','N','N'); +INSERT INTO entities VALUES(605,'IBM Spectrum Scale',2,'{''qid'': ''Q2389927'', ''types'': [''Q174989'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_General_Parallel_File_System''}','Y','N','N','N'); +INSERT INTO entities VALUES(606,'IBM Tivoli Asset Management|*',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(607,'Oracle Hyperion|*',2,'{''qid'': ''Q1431991'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Oracle_Hyperion''}','Y','N','N','N'); +INSERT INTO entities VALUES(608,'z/VM',6,'{''qid'': ''Q1399696'', ''types'': [''Q9135'', ''Q1077480''], ''url'': ''http://dbpedia.org/resource/Z/VM''}','Y','N','N','N'); +INSERT INTO entities VALUES(609,'IIS|*',8,'{''qid'': ''Q11341'', ''types'': [''Q218616'', ''Q18287040''], ''url'': ''http://dbpedia.org/resource/Internet_Information_Services''}','Y','N','N','N'); +INSERT INTO entities VALUES(610,'Oracle Application Server|*',8,'{''qid'': ''Q2027912'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Server''}','Y','N','N','N'); +INSERT INTO entities VALUES(611,'instana',10,'{''qid'': ''Q107383927'', ''url'': ''https://www.wikidata.org/wiki/Q107383927''}','N','N','Y','N'); +INSERT INTO entities VALUES(612,'credstash',2,'{''qid'': ''Q107384165'', ''url'': ''https://www.wikidata.org/wiki/Q107384165''}','N','N','Y','N'); +INSERT INTO entities VALUES(613,'Snyk',2,'{''qid'': ''Q108282404'', ''url'': ''https://www.wikidata.org/wiki/Q108282404''}','N','N','Y','N'); +INSERT INTO entities VALUES(614,'Akka',2,'{''qid'': ''Q16002307'', ''url'': ''https://www.wikidata.org/wiki/Q16002307''}','N','N','Y','N'); +INSERT INTO entities VALUES(615,'Varnish',8,'{''qid'': ''Q1602447'', ''url'': ''https://www.wikidata.org/wiki/Q1602447''}','N','N','Y','N'); +INSERT INTO entities VALUES(616,'Datadog',10,'{''qid'': ''Q16248637'', ''url'': ''https://www.wikidata.org/wiki/Q16248637''}','N','N','Y','N'); +INSERT INTO entities VALUES(617,'API',1,'{''qid'': ''Q165194'', ''url'': ''https://www.wikidata.org/wiki/Q165194''}','N','N','Y','N'); +INSERT INTO entities VALUES(618,'Hazelcast',10,'{''qid'': ''Q17021540'', ''url'': ''https://www.wikidata.org/wiki/Q17021540''}','N','N','Y','N'); +INSERT INTO entities VALUES(619,'Infinispan',2,'{''qid'': ''Q18152516'', ''url'': ''https://www.wikidata.org/wiki/Q18152516''}','N','N','Y','N'); +INSERT INTO entities VALUES(620,'Nuxeo',10,'{''qid'': ''Q2004521'', ''url'': ''https://www.wikidata.org/wiki/Q2004521''}','N','N','Y','N'); +INSERT INTO entities VALUES(621,'ArangoDB',2,'{''qid'': ''Q20072115'', ''url'': ''https://www.wikidata.org/wiki/Q20072115''}','N','N','Y','N'); +INSERT INTO entities VALUES(622,'Eclipse|Eclipse Che',2,'{''qid'': ''Q25000883'', ''url'': ''https://www.wikidata.org/wiki/Q25000883''}','N','N','Y','N'); +INSERT INTO entities VALUES(623,'Amazon S3',2,'{''qid'': ''Q2593067'', ''url'': ''https://www.wikidata.org/wiki/Q2593067''}','N','N','Y','N'); +INSERT INTO entities VALUES(624,'ClickHouse',2,'{''qid'': ''Q27825826'', ''url'': ''https://www.wikidata.org/wiki/Q27825826''}','N','N','Y','N'); +INSERT INTO entities VALUES(625,'MinIO',2,'{''qid'': ''Q28956397'', ''url'': ''https://www.wikidata.org/wiki/Q28956397''}','N','N','Y','N'); +INSERT INTO entities VALUES(626,'Elasticsearch',2,'{''qid'': ''Q3050461'', ''url'': ''https://www.wikidata.org/wiki/Q3050461''}','N','N','Y','N'); +INSERT INTO entities VALUES(627,'XtraDB',2,'{''qid'': ''Q4021858'', ''url'': ''https://www.wikidata.org/wiki/Q4021858''}','N','N','Y','N'); +INSERT INTO entities VALUES(628,'Keycloak',2,'{''qid'': ''Q42916195'', ''url'': ''https://www.wikidata.org/wiki/Q42916195''}','N','N','Y','N'); +INSERT INTO entities VALUES(629,'Grafana',2,'{''qid'': ''Q43399271'', ''url'': ''https://www.wikidata.org/wiki/Q43399271''}','N','N','Y','N'); +INSERT INTO entities VALUES(630,'Mattermost',10,'{''qid'': ''Q55478510'', ''url'': ''https://www.wikidata.org/wiki/Q55478510''}','N','N','Y','N'); +INSERT INTO entities VALUES(631,'Synapse',2,'{''qid'': ''Q56328412'', ''url'': ''https://www.wikidata.org/wiki/Q56328412''}','N','N','Y','N'); +INSERT INTO entities VALUES(632,'Cloud IAM',2,'{''qid'': ''Q59852253'', ''url'': ''https://www.wikidata.org/wiki/Q59852253''}','N','N','Y','N'); +INSERT INTO entities VALUES(633,'Knative',10,'{''qid'': ''Q59905591'', ''url'': ''https://www.wikidata.org/wiki/Q59905591''}','N','N','Y','N'); +INSERT INTO entities VALUES(634,'Apache Cassandra',2,'{''qid'': ''Q616639'', ''url'': ''https://www.wikidata.org/wiki/Q616639''}','N','N','Y','N'); +INSERT INTO entities VALUES(635,'Kubeflow',10,'{''qid'': ''Q65048974'', ''url'': ''https://www.wikidata.org/wiki/Q65048974''}','N','N','Y','N'); +INSERT INTO entities VALUES(636,'Qiskit',2,'{''qid'': ''Q70490607'', ''url'': ''https://www.wikidata.org/wiki/Q70490607''}','N','N','Y','N'); +INSERT INTO entities VALUES(637,'Microsoft Azure',2,'{''qid'': ''Q725967'', ''url'': ''https://www.wikidata.org/wiki/Q725967''}','N','N','Y','N'); +INSERT INTO entities VALUES(638,'Strimzi',10,'{''qid'': ''Q72711423'', ''url'': ''https://www.wikidata.org/wiki/Q72711423''}','N','N','Y','N'); +INSERT INTO entities VALUES(639,'Sematext',10,'{''qid'': ''Q7449130'', ''url'': ''https://www.wikidata.org/wiki/Q7449130''}','N','N','Y','N'); +INSERT INTO entities VALUES(640,'Eclipse|Eclipse hawkBit',2,'{''qid'': ''Q76178253'', ''url'': ''https://www.wikidata.org/wiki/Q76178253''}','N','N','Y','N'); +INSERT INTO entities VALUES(641,'Eclipse|Eclipse Ditto',2,'{''qid'': ''Q76178650'', ''url'': ''https://www.wikidata.org/wiki/Q76178650''}','N','N','Y','N'); +INSERT INTO entities VALUES(642,'MariaDB',2,'{''qid'': ''Q787177'', ''url'': ''https://www.wikidata.org/wiki/Q787177''}','N','N','Y','N'); +INSERT INTO entities VALUES(643,'Zadara',2,'{''qid'': ''Q8064144'', ''url'': ''https://www.wikidata.org/wiki/Q8064144''}','N','N','Y','N'); +INSERT INTO entities VALUES(644,'Istio',2,'{''qid'': ''Q88464464'', ''url'': ''https://www.wikidata.org/wiki/Q88464464''}','N','N','Y','N'); +INSERT INTO entities VALUES(645,'Vault',2,'{''qid'': ''Q88664426'', ''url'': ''https://www.wikidata.org/wiki/Q88664426''}','N','N','Y','N'); +INSERT INTO entities VALUES(646,'Apache Druid',2,'{''qid'': ''Q89693799'', ''url'': ''https://www.wikidata.org/wiki/Q89693799''}','N','N','Y','N'); +INSERT INTO entities VALUES(647,'etcd',2,'{''qid'': ''Q96324273'', ''url'': ''https://www.wikidata.org/wiki/Q96324273''}','N','N','Y','N'); +INSERT INTO entities VALUES(648,'Traefik',8,'{''qid'': ''Q96332968'', ''url'': ''https://www.wikidata.org/wiki/Q96332968''}','N','N','Y','N'); +INSERT INTO entities VALUES(649,'IBM Cloud',2,'{''qid'': ''Q96381605'', ''url'': ''https://www.wikidata.org/wiki/Q96381605''}','N','N','Y','N'); +INSERT INTO entities VALUES(650,'YugabyteDB',2,'{''qid'': ''Q97187861'', ''url'': ''https://www.wikidata.org/wiki/Q97187861''}','N','N','Y','N'); +INSERT INTO entities VALUES(651,'CockroachDB',2,'{''qid'': ''Q98731903'', ''url'': ''https://www.wikidata.org/wiki/Q98731903''}','N','N','Y','N'); +INSERT INTO entities VALUES(652,'Jaeger',10,'{''qid'': ''Q98799449'', ''url'': ''https://www.wikidata.org/wiki/Q98799449''}','N','N','Y','N'); +INSERT INTO entities VALUES(653,'Natural Programming Language',9,'{}','N','N','Y','N/A'); +INSERT INTO entities VALUES(654,'AcuCOBOL',9,'{''qid'': ''Q288844'', ''url'': ''https://www.wikidata.org/wiki/Q288844''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(655,'Ada',9,'{''qid'': ''Q154755'', ''url'': ''https://www.wikidata.org/wiki/Q154755''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(656,'ADABAS',2,'{''qid'': ''Q346434'', ''url'': ''https://www.wikidata.org/wiki/Q346434''}','N','N','Y','N'); +INSERT INTO entities VALUES(657,'ADSO',9,'{''qid'': ''Q4685839'', ''url'': ''https://www.wikidata.org/wiki/Q4685839''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(659,'Batch',9,'{''qid'': ''Q479833'', ''url'': ''https://www.wikidata.org/wiki/Q479833''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(660,'Powershell',9,'{''qid'': ''Q840410'', ''url'': ''https://www.wikidata.org/wiki/Q840410''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(661,'COM+',10,'{''qid'': ''Q9670606'', ''url'': ''https://www.wikidata.org/wiki/Q9670606''}','N','N','Y','N'); +INSERT INTO entities VALUES(662,'Dataflex',9,'{''qid'': ''Q2391203'', ''url'': ''https://www.wikidata.org/wiki/Q2391203''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(663,'DDS',9,'{''qid'': ''Q1149607'', ''url'': ''https://www.wikidata.org/wiki/Q1149607''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(664,'Forte',9,'{''qid'': ''Q3748867'', ''url'': ''https://www.wikidata.org/wiki/Q3748867''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(665,'Foxpro',9,'{''qid'': ''Q2507721'', ''url'': ''https://www.wikidata.org/wiki/Q2507721''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(666,'IBM DB2 Purescale',2,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(667,'IDMS DB',2,'{}','N','N','Y','N'); +INSERT INTO entities VALUES(668,'IDMS DML',9,'{}','Y','N','N','N/A'); +INSERT INTO entities VALUES(669,'Jaguar',8,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(670,'EAServer',8,'{''qid'': ''Q5816084'', ''url'': ''https://www.wikidata.org/wiki/Q5816084''}','Y','N','N','N'); +INSERT INTO entities VALUES(672,'IBM Netezza',4,'{''qid'': ''Q3874960'', ''url'': ''https://www.wikidata.org/wiki/Q3874960''}','N','N','Y','N'); +INSERT INTO entities VALUES(674,'OpenROAD',9,'{''qid'': ''Q2025504'', ''url'': ''https://www.wikidata.org/wiki/Q2025504''}','Y','N','N','N/A'); +INSERT INTO entities VALUES(675,'Oracle Reports',2,'{''qid'': ''Q4045946'', ''url'': ''https://www.wikidata.org/wiki/Q4045946''}','Y','N','N','N'); +INSERT INTO entities VALUES(676,'SAP Replication Server',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(677,'Git',2,'{''qid'': ''Q186055'', ''url'': ''https://www.wikidata.org/wiki/Q186055''}','N','N','Y','N'); +INSERT INTO entities VALUES(678,'GitLab',2,'{''qid'': ''Q16639197'', ''url'': ''https://www.wikidata.org/wiki/Q16639197''}','N','N','Y','N'); +INSERT INTO entities VALUES(679,'VSAM',2,'{''qid'': ''Q1514276'', ''url'': ''https://www.wikidata.org/wiki/Q1514276''}','Y','N','N','N'); +INSERT INTO entities VALUES(680,'Cloud<>Apache HTTP Server',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(681,'Cloud<>Windows Server',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(682,'Cloud<>MS SQL Server',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(683,'Cloud<>Azure SQL Server Database',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(684,'Cloud<>MySQL',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(685,'Cloud<>Oracle Database',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(686,'Cloud<>PostgreSQL',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(687,'Cloud<>AWS RDS',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(688,'Cloud<>SAP HANA DB',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(689,'BMS Map',9,'{}','Y','N','N','N/A'); +INSERT INTO entities VALUES(690,'DB400',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(691,'ILE',9,'{''qid'': ''Q16889435'', ''url'': ''https://www.wikidata.org/wiki/Q16889435''}','N','N','Y','N/A'); +INSERT INTO entities VALUES(692,'Integrated Data Store (IDS)',2,'{''qid'': ''Q3799287'', ''url'': ''https://www.wikidata.org/wiki/Q3799287''}','Y','N','N','N'); +INSERT INTO entities VALUES(693,'ISAM',2,'{''qid'': ''Q1154755'', ''url'': ''https://www.wikidata.org/wiki/Q1154755''}','N','N','Y','N'); +INSERT INTO entities VALUES(694,'Oracle RDS',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(695,'SAP IQ',2,'{''qid'': ''Q948492'', ''url'': ''https://www.wikidata.org/wiki/Q948492''}','Y','N','N','N'); +INSERT INTO entities VALUES(696,'Cloud<>Linux',2,'{}','Y','N','N','N'); +INSERT INTO entities VALUES(697,'Apache Maven',2,'{''qid'': ''Q139941'', ''url'': ''https://www.wikidata.org/wiki/Q139941''}','N','N','Y','Y'); +INSERT INTO entities VALUES(698,'IBM Basic Assembly Language (BAL)',9,'{''qid'': ''Q5968762'', ''url'': ''https://www.wikidata.org/wiki/Q5968762''}','Y','N','N','N'); CREATE TABLE entity_mentions ( id integer PRIMARY KEY AUTOINCREMENT, entity_mention_name text NOT NULL, @@ -1010,7727 +895,6865 @@ CREATE TABLE entity_mentions ( FOREIGN KEY (entity_type_id) REFERENCES entity_types (id), FOREIGN KEY (entity_id) REFERENCES entities (id) ); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1, 'DOT NET', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2, '.NET 4.0', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3, 'Dot net - FW 4', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4, '.Net 4.7.1 Enterprise Lib', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5, '.Net 3.5', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6, '.NET4.5', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7, '.NET Framework 4.x', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (8, 'Microsoft - Microsoft .NET Framework 2', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (9, 'Microsoft - Microsoft .NET Framework 3.5', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (10, '.NET 3.0', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (11, 'Dot Net Framework 3.5', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (12, '.NET', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (13, '.NET 4', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (14, '.Net 4.5.2 Enterprise Lib', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (15, '.NET2.0', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (16, 'DOTNET', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (17, 'Microsoft .NET Release 1.1', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (18, '.Net 4.5', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (19, '.NET 2.0', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (20, '.Net Framework 4.5', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (21, 'Microsoft .NET 4.0', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (22, '.net 2017', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (23, '.Net framework', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (24, 'Microsoft .NET Framework 4.5', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (25, '.net 4.0 Framework', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (26, 'Microsoft.NET 2.0', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (27, '.Net 4.5.2', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (28, '.NET 4.6', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (29, 'Microsoft - Microsoft .NET Framework 4', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (30, '.NET4.6', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (31, 'Microsoft - Microsoft .NET Framework 4.5', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (32, 'Dot Net Framework 4.5', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (33, 'Microsoft - Microsoft .NET Framework 3', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (34, 'Microsoft - Microsoft .Net Framework 1', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (35, 'Microsoft .NET Release 4.6', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (36, '.net Framework 3.5 SP1', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (37, 'Microsoft.net', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (38, 'Microsoft .NET', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (39, 'Microsoft .NET Release 2.0', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (40, 'Dot Net 2.0', 10, 497, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (41, 'Common Runtime Library', 7, 482, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (42, 'APACHE LOG4NET', 7, 483, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (43, 'LOG4NET', 7, 483, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (44, 'Magik', 7, 484, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (45, 'Magick.NET', 7, 484, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (46, 'WCF', 7, 485, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (47, 'Windows Communication Foundation', 7, 485, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (48, 'Windows Communication Foundation (WCF)', 7, 485, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (49, 'WWF', 7, 486, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (50, 'Windows Workflow Foundation (WF)', 7, 486, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (51, 'Windows Workflow Foundation', 7, 486, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (52, 'WinForms', 7, 487, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (53, 'Ejes', 2, 1, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (54, '(E)JES', 2, 1, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (55, '(UNIRITA) A-AUTO 7.2.2', 2, 2, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (56, 'A-AUTO', 2, 2, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (57, 'A-Auto Job Scheduling Software', 2, 2, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (58, 'Active Directoy', 10, 498, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (59, 'Active Directory (AD)', 10, 498, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (60, 'Active Server Page', 10, 499, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (61, 'ASPNet', 10, 499, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (62, 'Microsoft Active Server Pages 6.0', 10, 499, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (63, 'APSX', 10, 499, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (64, 'ASP .NET', 10, 499, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (65, 'Microsoft Active Server Pages', 10, 499, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (66, 'Microsoft ASP files', 10, 499, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (67, 'Active Server Pages (ASP)', 10, 499, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (68, 'ASP', 10, 499, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (69, 'Classic ASP', 10, 499, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (70, 'Classis ASP', 10, 499, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (71, 'ASP 3.0', 10, 499, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (72, 'ASP.NET', 10, 499, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (73, 'ASPX', 10, 499, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (74, 'ASP.NET 1.0.3705', 10, 499, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (75, 'ActiveX', 10, 500, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (76, 'ADO', 7, 488, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (77, 'Activiti', 2, 3, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (78, 'Adobe Acrobat Reader', 2, 4, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (79, 'Acrobat Reader', 2, 4, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (80, 'Adobe - Adobe Acrobat Reader DC 2019', 2, 4, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (81, 'Adobe Acrobat Reader DC 2019', 2, 4, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (82, 'Android', 6, 418, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (83, 'Android SDK', 6, 418, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (84, 'Andriod', 6, 418, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (85, 'ansible', 2, 5, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (86, 'Apache ActiveMQ', 2, 6, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (87, 'Apache Active Queue', 2, 6, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (88, 'MQ Apache Active Queue', 2, 6, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (89, 'Cordova', 10, 501, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (90, 'Cordova framework', 10, 501, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (91, 'Apache Cordova', 10, 501, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (92, 'cordova-android', 10, 501, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (93, 'Apache Hbase', 2, 7, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (94, 'Hbase', 2, 7, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (95, 'Hive', 2, 8, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (96, 'Apache Hive', 2, 8, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (97, 'Apache HTTP Server 2.0', 8, 259, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (98, 'Apache HTTP Server 2.2 (Linux)', 8, 259, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (99, 'Apache HTTP Server 2.4 (Linux)', 8, 259, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (100, 'APACHE HTTP SERVER VERSION 2.2.13', 8, 259, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (101, 'TS-Apache HTTP Server 2.4', 8, 259, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (102, 'Apache', 8, 259, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (103, 'Apache Web Server', 8, 259, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (104, 'Apache 2.4', 8, 259, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (105, 'Apache HTTP Server 2.0 (Solaris)', 8, 259, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (106, 'APACHE HTTP SERVER VERSION 1.3', 8, 259, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (107, 'APACHE WEB SERVER VERSION 1.3.27', 8, 259, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (108, 'Apache WebServer', 8, 259, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (109, 'Apache HTTP Server 2.4', 8, 259, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (110, 'Apache 3', 8, 259, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (111, 'Apache Instance', 8, 259, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (112, 'Apache HTTP Server 2.0 (Linux)', 8, 259, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (113, 'Apache 2.4 - 32 bit', 8, 259, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (114, 'Apache HTTP Server 2.2', 8, 259, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (115, 'Apache HTTP Server', 8, 259, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (116, 'Apache Kafka', 2, 9, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (117, 'kafka', 2, 9, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (118, 'Apache Lucene', 12, 375, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (119, 'Lucene', 12, 375, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (120, 'ServiceMix', 2, 10, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (121, 'Apache ServiceMix', 2, 10, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (122, 'Apache Solr', 2, 11, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (123, 'solr', 2, 11, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (124, 'Subversion', 2, 12, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (125, 'Apache Subversion', 2, 12, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (126, 'Subversion software', 2, 12, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (127, 'Tomcat 8', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (128, 'APACHE TOMCAT VERSION 6', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (129, 'Tomcat 3', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (130, 'Apache Tomcat 6 (Linux)', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (131, 'Apache Tomcat', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (132, 'Apache Tomcat 3 (Linux)', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (133, 'tomcat', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (134, 'Tomcat 3/4/5/6/7', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (135, 'Apache Tomcat 7', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (136, 'Apache Software Foundation - Apache Tomcat 8.5', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (137, 'Tomcat 7', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (138, 'APACHE TOMCAT VERSION 7', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (139, 'Tomcat 6', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (140, 'Tomcat 8.0.33', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (141, 'Tomcat 7.0', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (142, 'Tomcat 9', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (143, 'Tomcat 4', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (144, 'Apache Software Foundation - Apache Tomcat 9', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (145, 'Apache Software Foundation - Apache Tomcat 7', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (146, 'Apache Tomcat 6', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (147, 'Apache Tomcat 8', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (148, 'Tomcat 8/9', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (149, 'Apache Tomcat 8.5.15', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (150, 'Apache Tomcat 9', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (151, 'Apache Software Foundation - Apache Tomcat 8', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (152, 'Apache Tomcat 1', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (153, 'Tomcat 5', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (154, 'Apache Tomcat 3', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (155, 'Apache Tomcat 8 (Linux)', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (156, 'APACHE TOMCAT VERSION 6.0', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (157, 'Apache Tomcat 5', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (158, 'Apache tomcat 9.0.12', 8, 260, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (159, 'Apache xerces', 12, 376, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (160, 'XERCES', 12, 376, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (161, 'Application Development Facility (ADF)', 2, 13, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (162, 'ADF', 2, 13, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (163, 'ADF (Application Development Facility)', 2, 13, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (164, 'Application Development Facility', 2, 13, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (165, 'ArcGIS Server 10.3.1', 8, 261, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (166, 'ArcGIS Server', 8, 261, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (167, 'Asterisk 1.8', 2, 14, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (168, 'Asterisk', 2, 14, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (169, 'AutoIt 3.3', 9, 299, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (170, 'AutoIt', 9, 299, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (171, 'AutoiIt', 9, 299, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (172, 'Automic - UC4', 2, 15, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (173, 'Automic Job Scheduler', 2, 15, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (174, 'Autosys', 2, 16, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (175, 'AWK', 9, 300, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (176, 'basic', 9, 301, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (177, 'WLS 10.2', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (178, 'BEA WebLogic Enterprise (WLE)', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (179, 'Oracle Weblogic 12.2.1.3.0', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (180, 'Oracle Weblogic 12c', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (181, 'Oracle Weblogic 12.2.1.2.0', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (182, 'BEA WLS', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (183, 'Weblogic 9.2.0.0', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (184, 'BEA WebLogic Server', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (185, 'Weblogic 12c', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (186, 'Oracle WebLogic Server 12', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (187, 'Weblogic 10.1 MP1', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (188, 'BEA WebLogic Server 8', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (189, 'Oracle WebLogic Server', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (190, 'WEBLOGIC-SERVER', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (191, 'Weblogic 12.2.1.2', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (192, 'Oracle WebLogic Server 12 (Linux)', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (193, 'Weblogic 12.2.1.3.0', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (194, 'WLE', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (195, 'Weblogic 10.3.0.0', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (196, 'Weblogic 12.1.3.0', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (197, 'Weblogic', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (198, 'Oracle WebLogic Server 10', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (199, 'ORACLE WEBLOGIC SERVER 10.3', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (200, 'Weblogic Server', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (201, 'Oracle Weblogic 8.1.1', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (202, 'Web Logic', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (203, 'Oracle Weblogic 12.x', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (204, 'BEA WEBLOGIC SERVER VERSION 7', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (205, 'Oracle Weblogic Server 12c', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (206, 'Weblogic 10.3.6.0', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (207, 'Oracle Weblogic 12.1.2', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (208, 'BEA WLE', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (209, 'WLS 10', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (210, 'WLS', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (211, 'WebLogic', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (212, 'ORACLE WEBLOGIC SERVER VERSION 10.3', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (213, 'Weblogic 12.2.1.1', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (214, 'BEA Weblogic', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (215, 'Oracle Weblogic 12.1', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (216, 'Weblogic 10', 8, 262, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (217, 'BeOS', 6, 419, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (218, 'Bluebeam Q', 2, 17, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (219, 'BMC Control-M CM For SAP 6.2', 2, 18, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (220, 'BMC Control-M', 2, 18, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (221, 'BMC Identity Management', 2, 19, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (222, 'IDM-BMC Identity Management', 2, 19, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (223, 'Borland Database Engine', 2, 20, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (224, 'Borland - BDE Administrator 1', 2, 20, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (225, 'Borland Database Engine (BDE)', 2, 20, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (226, 'Borland - BDE Administrator 5.2', 2, 20, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (227, 'brain script', 9, 302, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (228, 'BRAINScript', 9, 302, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (229, 'Business Intelligence and Reporting Tools', 2, 21, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (230, 'Actuate Report Server', 2, 21, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (231, 'BIRT', 2, 21, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (232, 'Business Intelligence and Reporting Tools (BIRT)', 2, 21, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (233, 'C', 9, 303, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (234, 'CSHARP', 9, 304, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (235, 'C# 3.0', 9, 304, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (236, 'C#', 9, 304, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (237, 'c-sharp', 9, 304, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (238, 'C+', 9, 305, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (239, 'C++', 9, 305, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (240, 'vc++', 9, 306, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (241, 'MSVC', 9, 306, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (242, 'Visual C++ 2008', 9, 306, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (243, 'Microsoft Visual C++', 9, 306, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (244, 'Visual C++', 9, 306, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (245, 'Microsoft - Microsoft Visual C++ 2008 Redistributable (x64) 9', 9, 306, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (246, 'vc', 9, 306, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (247, 'CA API Gateway', 4, 290, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (248, 'CA Gen 8', 2, 22, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (249, 'CA Gen', 2, 22, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (250, 'CA Technologies - Computer Associates Introscope 8.2', 2, 23, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (251, 'Introscope', 2, 23, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (252, 'CA Technologies - Computer Associates Introscope', 2, 23, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (253, 'CA Introscope', 2, 23, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (254, 'CA-Panvalet', 2, 24, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (255, 'Panvalet', 2, 24, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (256, 'Telon', 2, 25, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (257, 'CA-TELON', 2, 25, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (258, 'CSS 3', 9, 307, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (259, 'Style Sheet', 9, 307, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (260, 'Cascading Style Sheets', 9, 307, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (261, 'Cascading Style Sheets (CSS)', 9, 307, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (262, 'CSS', 9, 307, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (263, 'Bootstrap', 12, 377, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (264, 'Casegen', 2, 26, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (265, 'Chef Automate', 2, 27, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (266, 'CICS', 10, 502, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (267, 'Cisco AMP for Endpoints', 2, 28, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (268, 'Cisco Systems Inc. - Cisco AMP for Endpoints Connector 6.1', 2, 28, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (269, 'Cisco IOS', 6, 420, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (270, 'CiscoWorks', 2, 29, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (271, 'CISCO CISCOWORKS', 2, 29, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (272, 'CiscoWorks LAN Management Solution (LMS)', 2, 29, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (273, 'CiscoWorks LAN Management Solution', 2, 29, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (274, 'WinFrame', 2, 30, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (275, 'Citrix Virtual Apps', 2, 30, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (276, 'Citrix Managed Desktops', 2, 30, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (277, 'METAFRAME', 2, 30, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (278, 'XenApp', 2, 30, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (279, 'Citrix Metaframe', 2, 30, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (280, 'Citrix Server', 2, 30, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (281, 'Citrix Virtual Apps and Desktops', 2, 30, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (282, 'Presentation Server', 2, 30, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (283, 'NETSCALER-1.5', 3, 563, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (284, 'NETSCALER-11.', 3, 563, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (285, 'Citrix SD-WAN', 3, 563, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (286, 'NetScaler SD-WAN', 3, 563, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (287, 'Citrix NetScaler ADC', 3, 563, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (288, 'Citrix ADC', 3, 563, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (289, 'NetScaler ADC', 3, 563, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (290, 'NetScaler ADC VPX', 3, 564, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (291, 'Citrix ADC VPX', 3, 564, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (292, 'NetScaler VPX', 3, 564, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (293, 'Citrix NetScaler VPX', 3, 564, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (294, 'Citrix ADC BLX', 3, 565, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (295, 'NetScaler CPX', 2, 31, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (296, 'Citrix ADC CPX', 2, 31, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (297, 'Citrix ADC SDX', 4, 291, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (298, 'NetScaler SDX', 4, 291, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (299, 'Citrix ADC MPX', 4, 292, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (300, 'NetScaler MPX', 4, 292, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (301, 'Citrix Provisioning', 2, 32, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (302, 'Citrix Provisioning 2006', 2, 32, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (303, 'Citrix Provisioning Services', 2, 32, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (304, 'Provisioning Services 7.15.8', 2, 32, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (305, 'Citrix PVS', 2, 32, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (306, 'Clarify', 2, 33, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (307, 'Clear Basic', 5, 455, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (308, 'Clarify ClearBasic', 5, 455, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (309, 'Clarity LIMS', 2, 34, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (310, 'LabWare LIMS', 2, 35, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (311, 'Clipper', 9, 308, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (312, 'CLISTS', 9, 309, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (313, 'CLIST', 9, 309, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (314, 'COBOL II', 9, 310, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (315, 'COBOL', 9, 310, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (316, 'Cobol Assembler', 9, 310, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (317, 'IBM COGNOS BUSINESS INTELLIGENCE SERVER VERSION 10.2', 2, 36, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (318, 'IBM - COGNOS', 2, 36, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (319, 'IBM Cognos', 2, 36, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (320, 'Cognos', 2, 36, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (321, 'IBM Cognos ICM', 2, 36, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (322, 'Cold Fusion', 2, 37, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (323, 'Coldfusion Webserver', 2, 37, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (324, 'Coldfusion', 2, 37, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (325, 'ColdFus', 2, 37, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (326, 'CFML', 9, 311, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (327, 'ColdFusion Markup Language', 9, 311, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (328, 'ColdFusion Markup Language (CFML)', 9, 311, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (329, 'ConceptWave', 2, 38, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (330, 'CONNAPI', 2, 39, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (331, 'Sterling Connect', 2, 40, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (332, 'Connect Direct 4.5', 2, 40, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (333, 'IBM Sterling Connect:Direct', 2, 40, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (334, 'Connect:Direct', 2, 40, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (335, 'Connect Direct File agent', 2, 40, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (336, 'Connect Direct', 2, 40, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (337, 'IBM Sterling Connect:Direct vX', 2, 40, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (338, 'Sterling Connect:Direct', 2, 40, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (339, 'Connect Direct 4.5, 4.6', 2, 40, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (340, 'Connect Direct 4.6', 2, 40, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (341, 'Cormerstone', 2, 41, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (342, 'Cornerstone software', 2, 41, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (343, 'Cornerstone', 2, 41, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (344, 'Crystal Report', 2, 42, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (345, 'Crystal', 2, 42, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (346, 'Crystal Reports', 2, 42, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (347, 'DART', 6, 421, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (348, 'DL/I', 9, 312, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (349, 'Data Language/I', 9, 312, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (350, 'Data Language Interface (DL/I)', 9, 312, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (351, 'Data Language/One', 9, 312, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (352, 'Data Language/Interface', 9, 312, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (353, 'Dl1', 9, 312, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (354, 'Data Language Interface', 9, 312, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (355, 'DB2/400', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (356, 'IBM DB2 UDB/LUW ENTERPRISE SERVER EDITION DB2 v9.7 FP11 SB 37314', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (357, 'IBM - IBM DB2 Advanced Workgroup Server Edition OEM Limited Use 11.1', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (358, 'DB2 ESE 10.1', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (359, 'IBM - IBM DB2 Enterprise Server Edition - CPU Option 9.7', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (360, 'DB2 UDB', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (361, 'DB2', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (362, 'DB2 V9', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (363, 'IBM DB', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (364, 'DB2-UDB', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (365, 'DB2 11.1', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (366, 'IBM-DB2-V9', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (367, 'IBM - IBM DB2 Advanced Enterprise Server Edition OEM Limited Use 11.1', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (368, 'IBM - IBM DB2 Personal Edition Product Trial 9.7', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (369, 'IBM - IBM DB2 Enterprise Server Edition - CPU Option 10.1', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (370, 'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.*', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (371, 'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.7', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (372, 'IBM DB2 UDB/LUW ENTERPRISE SERVER EDITION DB2 ESE v9.7 FP 11 Special Build 35826 37314', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (373, 'DB2/UDB', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (374, 'IBM DB2 ENTERPRISE SERVER EDITION PVU OPTION 10.5', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (375, 'DB2 10.5', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (376, 'DB2 9.7', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (377, 'DB2 9.1', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (378, 'IBM - IBM DB2 UDB Enterprise Server Edition 8.2', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (379, 'DB2 for i', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (380, 'IBM - IBM DB2 Enterprise Server Edition OEM Limited Use 10.5', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (381, 'IBM - IBM DB2 Storage Optimization Feature 9.7', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (382, 'IBM - IBM DB2 Advanced Enterprise Server Edition PVU Option 10.5', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (383, 'UDB', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (384, 'IBM - IBM DB2 Enterprise Server Edition Product Trial 9.7', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (385, 'DB2 ESE 10.5', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (386, 'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.5', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (387, 'IBM DB2', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (388, 'IBM - IBM DB2 Workgroup Server Edition Product Trial 9.7', 2, 43, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (389, 'Delphi', 9, 313, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (390, 'docker', 10, 503, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (391, 'Documentum D2', 2, 44, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (392, 'Documentum content server', 2, 44, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (393, 'Documentum', 2, 44, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (394, 'DOCUMENTUM-CS', 2, 44, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (395, 'DRUPAL', 2, 45, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (396, 'Easytrieve', 9, 314, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (397, 'EZTriev', 9, 314, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (398, 'Eztrieve', 9, 314, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (399, 'Eclipse', 2, 46, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (400, 'ATLAS Transformation Language', 5, 456, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (401, 'ATL', 5, 456, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (402, 'ATLAS Transformation Language (ATL)', 5, 456, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (403, 'Elastic (ELK) Stack', 2, 47, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (404, 'ELK', 2, 47, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (405, 'EMC Celerra', 11, 510, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (406, 'ETAP License Manager (LM)', 2, 48, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (407, 'ETAP Licensing Manager/TARO GJH', 2, 48, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (408, 'ETAP License Manager', 2, 48, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (409, 'ETAP License Manager GJH', 2, 48, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (410, 'PrestoSoft - ExamDiff Application 1.6', 2, 49, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (411, 'PrestoSoft - ExamDiff Application', 2, 49, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (412, 'ExamDiff', 2, 49, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (413, 'ExamDiff Application', 2, 49, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (414, 'Expect', 9, 315, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (415, 'Expect Scripts', 9, 315, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (416, 'eXtensible HyperText Markup Language (XHTML)', 9, 316, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (417, 'eXtensible HyperText Markup Language', 9, 316, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (418, 'XHTML', 9, 316, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (419, 'XML', 9, 317, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (420, 'Extensible Markup Language', 9, 317, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (421, 'Extensible Markup Language (XML)', 9, 317, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (422, 'MSXML', 9, 318, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (423, 'Microsoft - MSXML 4.0 SP2 4.2', 9, 318, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (424, 'Extensible Stylesheet Language', 9, 319, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (425, 'XSL', 9, 319, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (426, 'Extensible Stylesheet Language (XSL)', 9, 319, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (427, 'Extensible Stylesheet Language Transformations (XLST)', 9, 320, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (428, 'Extensible Stylesheet Language Transformations', 9, 320, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (429, 'XSLT', 9, 320, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (430, 'ServerCA Access GatewayF5', 2, 50, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (431, 'F5 Secure Web Gateway Services', 2, 50, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (432, 'Fabric OS', 6, 422, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (433, 'FabricOS', 6, 422, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (434, 'FileMaker Pro', 2, 51, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (435, 'FILEMAKER PRO 8.5', 2, 51, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (436, 'Flash', 10, 504, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (437, 'Flexnet 2016', 2, 52, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (438, 'FlexNet Manager Suite', 2, 52, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (439, 'FlexNet Manager Suite 2016', 2, 52, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (440, 'FOCUS', 9, 321, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (441, 'fortran', 9, 322, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (442, 'Rhino Software Inc - FTP Voyager 16.2', 2, 53, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (443, 'FTP Voyager', 2, 53, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (444, 'Genymotion', 2, 54, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (445, 'GlassFish', 8, 263, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (446, 'GlassFish Server 4 Open Source', 8, 263, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (447, 'GlassFish Server 4', 8, 263, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (448, 'GNU', 6, 423, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (449, 'Go', 9, 323, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (450, 'Chrome', 2, 55, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (451, 'Google Chrome', 2, 55, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (452, 'Google Chrome 76', 2, 55, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (453, 'GraphQL', 9, 324, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (454, 'EMC Greenplum', 2, 56, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (455, 'Groovy', 9, 325, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (456, 'Hadoop', 2, 57, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (457, 'HAProxy', 8, 264, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (458, 'HiveQL', 9, 326, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (459, 'HP aC++ compiler', 2, 58, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (460, 'HP C++', 2, 58, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (461, 'HP aC++', 2, 58, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (462, 'HP C/aC++', 2, 58, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (463, 'HP C++ 10.20', 2, 58, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (464, 'HPC 11.11', 2, 59, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (465, 'HP C/ANSI C compiler', 2, 59, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (466, 'HP C/ANSI C', 2, 59, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (467, 'HP Nonstop J06.20.00', 4, 293, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (468, 'HP Nonstop', 4, 293, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (469, 'HP Operations Orchestration (HPOO)', 2, 60, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (470, 'HP Operations Orchestration', 2, 60, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (471, 'HPOO', 2, 60, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (472, 'HPSA', 2, 61, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (473, 'HP Server Automation', 2, 61, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (474, 'HP Server Automation (HPSA)', 2, 61, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (475, 'HFS', 10, 505, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (476, 'www.rejetto.com - HttpFileServer 2.3', 10, 505, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (477, 'HTTP File Server', 10, 505, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (478, 'HttpFileServer', 10, 505, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (479, 'Hypertext Markup Language', 9, 327, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (480, 'HTML4', 9, 327, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (481, 'HTML', 9, 327, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (482, 'Hypertext Markup Language (HTML)', 9, 327, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (483, 'HTML5', 9, 327, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (484, 'IBM BigFix', 2, 62, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (485, 'IBM - IBM BigFix Platform', 2, 62, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (486, 'IBM BigFix Platform', 2, 62, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (487, 'IBM - IBM BigFix Platform Client Deploy Tool 9.5', 5, 457, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (488, 'Client Deploy Tool', 5, 457, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (489, '(IBM) IBM Business Monitor 8.5.6', 2, 63, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (490, 'IBM Business Monitor', 2, 63, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (491, 'IBM BPM', 2, 64, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (492, 'IBM Business Process Manager', 2, 64, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (493, 'IBM Business Process Manager 8.5.7.0', 2, 64, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (494, '(IBM) IBM Business Process Manager 8.5.6', 2, 64, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (495, 'IBM Business Process Manager 8.5.6.0', 2, 64, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (496, 'IBM Content Manager OnDemand', 2, 65, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (497, 'IBM Content Manager OnDemand (CMOD)', 2, 65, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (498, 'CMOD', 2, 65, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (499, 'Data Power', 4, 294, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (500, 'IBM DataPower Gateway', 4, 294, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (501, 'IDG.7.5.2.19hp', 4, 294, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (502, 'datapower-connector', 4, 294, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (503, 'FileNet', 2, 66, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (504, 'IBM FileNet', 2, 66, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (505, 'IBM FileNet P8 Platform', 2, 66, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (506, 'hlasm', 9, 328, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (507, 'IBM High Level Assembler', 9, 328, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (508, 'IBM High Level Assembler (HLASM)', 9, 328, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (509, 'IBM - IBM HTTP Server 6.1', 8, 265, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (510, 'IHS', 8, 265, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (511, 'IBM - IBM HTTP Server 7', 8, 265, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (512, 'IBM - IBM HTTP Server 8.5', 8, 265, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (513, 'WebSphere and IHS', 8, 265, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (514, 'WebSphere http', 8, 265, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (515, '(IBM) IBM HTTP Server 8.5', 8, 265, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (516, 'IBM HTTP Server', 8, 265, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (517, 'IBM HTTP SERVER 8', 8, 265, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (518, 'IBM HTTP Server 8.', 8, 265, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (519, 'IBM Websphere HTTP Server', 8, 265, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (520, 'IBM HTTP', 8, 265, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (521, 'WebSphere IHS', 8, 265, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (522, 'WebSphere -IHS', 8, 265, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (523, 'IBM HTTP SERVER 6.1', 8, 265, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (524, 'IBMi', 6, 424, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (525, 'IBM i', 6, 424, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (526, 'OS400 V7R1', 6, 424, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (527, 'OS400', 6, 424, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (528, 'OS/400', 6, 424, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (529, 'CLP', 9, 329, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (530, 'IBM i Control Language (CL)', 9, 329, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (531, 'IBM Informix-4GL', 9, 330, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (532, 'Informix 4GL', 9, 330, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (533, 'Informix-4GL', 9, 330, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (534, 'DATASTAGE', 2, 67, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (535, 'IBM InfoSphere DataStage', 2, 67, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (536, 'datastage 11.3', 2, 67, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (537, 'IBM Integration Bus 10.0', 2, 68, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (538, 'IBM Integration Bus v9', 2, 68, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (539, 'IBM Integration Bus 9.0', 2, 68, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (540, 'IBM Integration Bus', 2, 68, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (541, 'IIB', 2, 68, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (542, 'IBM Integration Bus v10', 2, 68, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (543, 'Extended Structured Query Language (ESQL)', 5, 458, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (544, 'ESQL', 5, 458, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (545, 'Extended Structured Query Language', 5, 458, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (546, 'IBM - IBM License Metric Tool and Tivoli Asset Discovery for Distributed', 2, 69, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (547, 'IBM License Metric Tool', 2, 69, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (548, 'Maximo', 2, 70, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (549, 'IBM Maximo 7.6', 2, 70, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (550, 'IBM Maximo', 2, 70, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (551, 'IBM Migration Utility', 2, 71, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (552, 'IBM WorkLight', 2, 72, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (553, 'IBM Mobile Foundation', 2, 72, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (554, 'Operational Decision Manager', 2, 73, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (555, 'ILOG JRules', 2, 73, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (556, 'Decision Server 8.0.1.0', 2, 73, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (557, 'IBM WebSphere ILOG Jrules', 2, 73, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (558, 'IBM Operational Decision Manager (ODM)', 2, 73, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (559, 'Decision Center 8.0.1.0', 2, 73, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (560, 'IBM Operational Decision Manager', 2, 73, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (561, 'IBM ODM', 2, 73, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (562, 'AS400', 4, 295, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (563, 'AS/400', 4, 295, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (564, 'IBM Power Systems', 4, 295, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (565, 'System p', 4, 295, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (566, 'System i', 4, 295, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (567, 'P-series', 4, 295, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (568, 'IBM iSeries/AS400 system Model 520', 4, 295, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (569, 'IBM - IBM Spectrum Scale Express Client 4.1', 2, 74, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (570, 'IBM Spectrum Scale Server', 2, 74, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (571, 'IBM Spectrum Scale', 2, 74, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (572, 'IBM - IBM Spectrum Scale Express Server 4.1', 2, 74, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (573, 'IBM - IBM Spectrum Scale Standard Server 4.1', 2, 74, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (574, 'IBM - IBM Spectrum Scale Express FPO 4.1', 2, 74, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (575, 'IBM Spectrum Scale FPO', 2, 74, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (576, 'IBM Spectrum Scale Client', 2, 74, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (577, 'IBM - IBM Spectrum Scale Standard FPO 4.1', 2, 74, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (578, 'IBM - IBM Spectrum Scale Standard Client 4.1', 2, 74, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (579, 'IBM Tivoli Asset Management', 2, 75, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (580, 'Tivoli Asset Management', 2, 75, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (581, 'Asset Discovery for Distributed', 5, 459, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (582, 'Tivoli Asset Discovery for Distributed', 5, 459, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (583, 'IBM - IBM Tivoli Composite Application Manager for Microsoft Applications - MS SQL Server Agent 6.3', 2, 76, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (584, 'IBM Tivoli Composite Application Manager', 2, 76, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (585, 'IBM - IBM Tivoli Composite Application Manager Agent for DB2 7.1', 2, 76, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (586, 'IBM - IBM Tivoli Composite Application Manager for Microsoft Applications - IIS server agent 6.3', 2, 76, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (587, 'IBM - IBM Tivoli Monitoring - Windows OS Agent 6.2', 2, 77, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (588, 'IBM - IBM Tivoli Monitoring for Databases - DB2 Agent 6.2', 2, 77, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (589, 'IBM Tivoli Monitoring', 2, 77, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (590, 'IBM - IBM Tivoli Monitoring - Windows OS Agent 6.3', 2, 77, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (591, 'Tivoli Monitoring', 2, 77, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (592, 'Database MS SQL Agent', 2, 77, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (593, 'Linux OS Agent', 2, 77, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (594, 'Database DB2 Agent', 2, 77, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (595, 'IBM - IBM Tivoli Monitoring for Databases - MS SQL Agent 6.2', 2, 77, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (596, 'IBM - IBM Tivoli Monitoring - Linux OS Agent 6.2', 2, 77, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (597, 'Windows OS Agent', 2, 77, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (598, 'IBM - IBM Tivoli Monitoring - Windows OS Agent 6', 2, 77, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (599, 'IBM Tivoli Storage Manager', 2, 78, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (600, 'IBM - IBM TSM FCM', 2, 78, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (601, 'Tivoli Storage Manager', 2, 78, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (602, 'IBM - IBM Tivoli Storage Manager', 2, 78, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (603, 'IBM Tivoli Storage Manager API', 2, 78, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (604, 'IBM - IBM Tivoli Storage Manager for Databases - Data Protection for Microsoft SQL 6.3', 2, 78, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (605, 'Databases Data Protection for Microsoft SQL', 2, 78, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (606, 'IBM - IBM Tivoli Storage Manager API 6.4', 2, 78, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (607, 'IBM - IBM Spectrum Protect Data Protection for Microsoft SQL Server 8.1', 2, 78, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (608, 'IBM Spectrum Protect Data Protection', 2, 78, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (609, 'TSM API', 5, 460, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (610, 'IBM - IBM Spectrum Protect API 7.1', 5, 460, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (611, 'IBM - IBM Spectrum Protect Client', 5, 461, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (612, 'TSM Client', 5, 461, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (613, 'IBM - IBM Tivoli Storage Manager Client', 5, 461, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (614, 'TSM Storage Agent', 5, 462, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (615, 'IBM - IBM Spectrum Protect Storage Agent 8.1', 5, 462, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (616, 'VSS Requestor', 5, 463, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (617, 'VSS Requestor configured 8.1', 5, 463, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (618, 'VSS Requestor 7.1', 5, 463, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (619, 'TWS-WS', 2, 79, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (620, 'Tivoli Workload Scheduler', 2, 79, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (621, 'IBM Tivoli Workload Scheduler (TWS)', 2, 79, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (622, 'IBM WebSphere Business Integration Adaptor', 2, 80, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (623, 'WebSphere Business Integration Adaptor', 2, 80, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (624, 'wbia 2.6', 2, 80, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (625, 'IBM WBIA 2.6.0.12', 2, 80, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (626, 'IBM Websphere MQ 7.1', 2, 81, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (627, 'MQ', 2, 81, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (628, 'MQ 9.1', 2, 81, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (629, 'IBM WebSphere MQ Client 7.5', 2, 81, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (630, 'Websphere MQ', 2, 81, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (631, 'MQ 7', 2, 81, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (632, 'MQ 6', 2, 81, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (633, 'MQ 9.0', 2, 81, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (634, 'MQ 5.3', 2, 81, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (635, 'MQ 7.01', 2, 81, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (636, 'MQ 7.5', 2, 81, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (637, 'MQSeries 8.0', 2, 81, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (638, 'IBM Websphere MQ', 2, 81, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (639, 'IBM MQ', 2, 81, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (640, 'IBM WEBSPHERE MQ SERVER 7.5', 2, 81, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (641, 'WSMQ 8.0', 2, 81, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (642, 'MQ 9.0.5', 2, 81, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (643, 'IBM WebSphere MQ Telemetry Service 7.5', 2, 82, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (644, 'IBM WebSphere MQ Telemetry', 2, 82, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (645, 'WTX', 2, 83, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (646, 'IBM WebSphere Transformation Extender (WTX)', 2, 83, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (647, 'IBM WebSphere Transformation Extender', 2, 83, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (648, 'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.6001.18000', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (649, 'IIS 7.5', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (650, 'Internet Information Services (IIS)', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (651, 'Microsoft Internet Information Services 7.5', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (652, 'MICROSOFT INTERNET INFORMATION SERVICES VERSION 7', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (653, 'Microsoft Internet Information Services', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (654, 'Microsoft Internet Information', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (655, 'IIS Express 8', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (656, 'Internet Information Services (IIS 6.0)', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (657, 'Microsoft IIS 8.5', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (658, 'IIS', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (659, 'IIS Express', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (660, 'MICROSOFT INTERNET INFORMATION SERVICES VERSION 7.5', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (661, 'Microsoft Internet Inf', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (662, 'MICROSOFT INTERNET INFORMATION SERVER VERSION 5.1.2600.2180', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (663, 'TS-IIS Express 10', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (664, 'Microsoft Internet Informat', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (665, 'Microsoft IIS Webserver', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (666, 'IIS Server', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (667, 'Microsoft Internet Information Services 8.5', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (668, 'IIS Version 7', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (669, 'Microsoft Internet Information Services 8.0', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (670, 'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.3790.1830', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (671, 'IIS 8.5.9600.16386', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (672, 'IIS 7.x', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (673, 'IIS 7.0', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (674, 'IIS 10', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (675, 'Microsoft Internet Information Services 6.0', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (676, 'Internet Information Services (IIS 7.0)', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (677, 'Microsoft Internet Information Services 10.0', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (678, 'IIS 8.5', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (679, 'Microsoft - IIS Express 10', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (680, 'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.*', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (681, 'Microsoft IIS 7.0', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (682, 'MICROSOFT INTERNET INFORMATION SERVICES VERSION 8', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (683, 'IIS v 7.0', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (684, 'IIS 7.2.1952', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (685, 'Microsoft Internet Information Services 7.0', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (686, 'Microsoft IIS 8.0', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (687, 'IIS Web Server v6', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (688, 'IIS 8.x', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (689, 'IIS 8.0.1557', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (690, 'IIS 11', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (691, 'IIS 6.0', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (692, 'IIS Express 7', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (693, 'IIS 7.2.2', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (694, 'IIS Instance', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (695, 'Microsoft IIS 6.0', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (696, 'IIS Express 10', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (697, 'IIS Servers', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (698, 'MS-IIS', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (699, 'Internet Information Services (IIS 8.5)', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (700, 'IIS 8.0', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (701, 'Microsoft IIS 7.5', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (702, 'IIS Version 8 64 bit', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (703, 'IIS 6', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (704, 'IIS7.5', 8, 266, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (705, 'IEMT', 7, 489, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (706, 'Microsoft - IIS 6.0 Migration Tool 1', 7, 489, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (707, 'IIS Easy Migration Tool', 7, 489, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (708, 'Easy Migration Tool', 7, 489, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (709, 'Easy Migration Tool (IEMT)', 7, 489, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (710, 'IIS Easy Migration Tool (IEMT)', 7, 489, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (711, 'MS-ARR', 7, 490, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (712, 'Application Request Routing', 7, 490, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (713, 'ARR', 7, 490, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (714, 'Application Request Routing (ARR)', 7, 490, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (715, 'IIS Manager', 7, 491, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (716, 'IMS DB', 2, 84, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (717, 'IMS', 2, 84, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (718, 'Infozip 6', 2, 85, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (719, 'Infozip', 2, 85, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (720, 'Info-ZIP', 2, 85, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (721, 'Infobright Community Edition', 2, 86, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (722, 'Infobright Community Edition (ICE)', 2, 86, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (723, 'infobright-ce', 2, 86, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (724, 'informatica', 2, 87, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (725, 'Informatica PowerCenter', 2, 87, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (726, 'Informatica PowerCenter 10.2', 2, 87, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (727, 'Informatica Version 10.2.0 HotFix1', 2, 87, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (728, 'Informatica Power Center 8.6.1', 2, 87, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (729, 'ETL tool: Informatica', 2, 87, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (730, 'Informatica database server-mspr50', 2, 87, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (731, 'Informatica ETL', 2, 87, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (732, 'Informatica Power Center 9.6.1', 2, 87, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (733, 'Informatica PowerCenter 10.2-msprap150', 2, 87, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (734, 'ETL tool=Informatica', 2, 87, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (735, 'Ingres', 2, 88, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (736, 'INGRES DBM', 2, 88, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (737, 'Intel(R) Xeon(R) CPU E7- 4870 @ 2.40GHz', 4, 296, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (738, 'intel(r) xeon(r) cpu e7- 4870 @ 2.40ghz', 4, 296, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (739, 'Intel(R) Xeon(R) CPU E5530 @ 2.40GHz', 4, 296, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (740, 'Intel(R) Xeon(R) CPU X7550 @ 2.00GHz', 4, 296, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (741, 'Intel(R) Xeon(R) CPU E5-2648L v4 @ 1.80GHz', 4, 296, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (742, 'Intel Xeon Processor', 4, 296, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (743, 'IMSVA 9.1', 3, 566, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (744, 'InterScan Messaging Security Virtual Appliance', 3, 566, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (745, 'InterScan Messaging Security Virtual Appliance (IMSVA)', 3, 566, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (746, 'IMSVA', 3, 566, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (747, 'iOS', 6, 425, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (748, 'Java 1.8', 9, 331, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (749, 'Java 7', 9, 331, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (750, 'Java on Weblogic server', 9, 331, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (751, 'Java', 9, 331, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (752, 'Java5', 9, 331, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (753, 'Java 6', 9, 331, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (754, 'Java 6.0', 9, 331, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (755, 'Java 7 Update 25', 9, 331, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (756, 'Java Scripting', 9, 331, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (757, 'J2ee', 9, 331, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (758, 'Java (open source)', 9, 331, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (759, 'Java 5', 9, 331, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (760, 'Java 1.5', 9, 331, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (761, 'Java (1.6)', 9, 331, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (762, 'Java 1.8.0_92', 9, 331, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (763, 'Java 1.6', 9, 331, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (764, 'J2EE 6', 9, 331, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (765, 'Java (J2EE)', 9, 331, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (766, 'Oracle - Java Runtime Environment 11', 10, 506, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (767, 'JRE', 10, 506, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (768, 'Java Runtime', 10, 506, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (769, 'Oracle - Java Runtime Environment 8', 10, 506, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (770, 'Oracle - Java Runtime Environment 7', 10, 506, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (771, 'Java Runtime Environment (JRE)', 10, 506, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (772, 'Java Runtime 6', 10, 506, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (773, 'Camel', 12, 378, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (774, 'Apache Camel', 12, 378, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (775, 'SS7/CAMEL', 12, 378, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (776, 'Apache mmons-beanutils', 12, 379, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (777, 'Apache Commons BeanUtils', 12, 379, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (778, 'PDFBox', 12, 380, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (779, 'Apache PDFBox', 12, 380, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (780, 'PDFBox 1.6', 12, 380, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (781, 'Velocity', 12, 381, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (782, 'Apache Velocity', 12, 381, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (783, 'EclipseLink 2.6.4', 12, 382, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (784, 'EclipseLink', 12, 382, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (785, 'EJB', 12, 383, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (786, 'EJBS', 12, 383, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (787, 'Ejb 2.x', 12, 383, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (788, 'Enterprise JavaBeans (EJB)', 12, 383, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (789, 'Enterprise JavaBeans', 12, 383, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (790, 'JAVA-XSL', 9, 332, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (791, 'Extensible Stylesheet Language', 9, 332, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (792, 'Extensible Stylesheet Language (XSL)', 9, 332, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (793, 'EZMorph', 12, 384, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (794, 'GWT', 12, 385, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (795, 'Google Web Toolkit', 12, 385, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (796, 'Google Web Toolkit (GWT)', 12, 385, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (797, 'Hibernate', 12, 386, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (798, 'IBM - IBM SDK 5.0 for Windows AMD/EMT 64', 12, 387, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (799, 'IBM SDK', 12, 387, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (800, 'Oracle - JDK/SDK', 12, 388, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (801, 'JDK 1.7.0', 12, 388, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (802, 'JDK', 12, 388, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (803, 'Oracle (Sun) JDK/JRE', 12, 388, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (804, 'JDK8', 12, 388, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (805, 'JDK 1.5', 12, 388, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (806, 'Oracle JDK', 12, 388, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (807, 'Java Development Kit (JDK)', 12, 388, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (808, 'Oracle - JDK/SDK 8', 12, 388, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (809, 'Java Development Kit', 12, 388, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (810, 'JDK 1.6.0_24', 12, 388, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (811, 'JDK8 (1.8)', 12, 388, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (812, 'JDK 1.3', 12, 388, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (813, 'JEE', 9, 333, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (814, 'Java EE', 9, 333, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (815, 'Java Enterprise Edition (Java EE)', 9, 333, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (816, 'Java Enterprise Edition', 9, 333, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (817, 'Java Message Service (JMS)', 12, 389, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (818, 'JMS', 12, 389, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (819, 'Java Message Service', 12, 389, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (820, 'Java Standard Edition (Java SE)', 9, 334, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (821, 'oracle - java - java se 6', 9, 334, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (822, 'Java SE 6', 9, 334, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (823, 'Java Web Start', 12, 390, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (824, 'Oracle - Java Web Start 1.5', 12, 390, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (825, 'Oracle - Java Web Start 6', 12, 390, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (826, 'JavaServer Faces', 12, 391, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (827, 'JavaServer Faces (JSF)', 12, 391, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (828, 'JSF', 12, 391, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (829, 'JavaServer Pages', 9, 335, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (830, 'JavaServer Pages (JSP)', 9, 335, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (831, 'Core JSP', 9, 335, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (832, 'JSP', 9, 335, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (833, 'JSP Scriptlets', 9, 336, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (834, 'Java Scriplet', 9, 336, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (835, 'JDBC', 12, 392, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (836, 'JRuby Core', 12, 393, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (837, 'Core 9.2.0.0', 12, 393, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (838, 'APACHE LOG4J', 12, 394, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (839, 'Log4j', 12, 394, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (840, 'Quartz', 12, 395, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (841, 'Java RMI', 12, 396, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (842, 'Java Remote Method Invocation (RMI)', 12, 396, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (843, 'Remote Method Invocation', 12, 396, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (844, 'Java Servlets', 12, 397, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (845, 'Java 6 Servlets', 12, 397, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (846, 'J2EE Servlets', 12, 397, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (847, 'Servlet', 12, 397, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (848, 'Servlets', 12, 397, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (849, 'Servlets v2.3', 12, 397, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (850, 'Spring', 12, 398, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (851, 'Spring IO', 12, 398, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (852, 'Spring BOOT', 12, 399, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (853, 'Spring Cloud Data Flow', 12, 400, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (854, 'Spring MVC', 12, 401, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (855, 'Struts (2.0)', 12, 402, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (856, 'Struts 2.0', 12, 402, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (857, 'Struts', 12, 402, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (858, 'Swing', 12, 403, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (859, 'Swings', 12, 403, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (860, 'Vaadin', 12, 404, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (861, 'javasript', 9, 337, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (862, 'JS', 9, 337, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (863, 'Javascript', 9, 337, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (864, 'Java Script', 9, 337, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (865, 'javascriptl', 9, 337, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (866, 'AJAX', 12, 405, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (867, 'Angular JS', 12, 406, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (868, 'AngularJS', 12, 406, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (869, 'Angular', 12, 406, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (870, 'Draw2D', 12, 407, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (871, 'Draw2D 2.10.1', 12, 407, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (872, 'Express', 12, 408, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (873, 'Express.js', 12, 408, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (874, 'ExtJS 4.1', 12, 409, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (875, 'Sencha 4.2.0', 12, 409, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (876, 'ExtJS', 12, 409, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (877, 'Ext JS', 12, 409, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (878, 'jqGrid', 12, 410, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (879, 'JQuery 1.7', 12, 411, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (880, 'JQuery', 12, 411, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (881, 'jqueryui', 12, 412, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (882, 'jQuery UI', 12, 412, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (883, 'jquery-ui', 12, 412, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (884, 'react', 12, 413, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (885, 'ReactJS', 12, 413, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (886, 'react.js', 12, 413, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (887, 'Scriptaculous', 12, 414, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (888, 'script.aculo.us', 12, 414, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (889, 'Valums File Uploader', 12, 415, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (890, 'Valums AJAX File Uploader', 12, 415, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (891, 'Jboss 7', 8, 267, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (892, 'JBOSS 5.1.2', 8, 267, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (893, 'Red Hat JBoss Enterprise Application Platform 6.3', 8, 267, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (894, 'EAP', 8, 267, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (895, 'JBOSS-EAP', 8, 267, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (896, 'JBoss Application Server 4', 8, 267, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (897, 'JBoss Application Server 7', 8, 267, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (898, 'JBoss Application Server 5', 8, 267, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (899, 'JBoss Application Server', 8, 267, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (900, 'Enterprise Application Platform', 8, 267, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (901, 'JBoss', 8, 267, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (902, 'Jboss 7.1.2', 8, 267, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (903, 'Wildfly', 8, 267, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (904, 'JBOSS 5.1.2 EAP', 8, 267, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (905, 'server: Jboss', 8, 267, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (906, 'JBOSS 6.3.2 EAP', 8, 267, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (907, 'JBoss EAP 4.3', 8, 267, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (908, 'Jboss 4.1.2', 8, 267, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (909, 'JBOSS 5', 8, 267, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (910, 'JBOSS 6.3.2', 8, 267, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (911, 'JBoss Seam', 7, 492, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (912, 'SEAM', 7, 492, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (913, 'JCL', 9, 338, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (914, 'Jenkins', 2, 90, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (915, 'Job Information Language', 9, 339, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (916, 'JIL - Job Information Language', 9, 339, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (917, 'Job Information Language (JIL)', 9, 339, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (918, 'JIL', 9, 339, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (919, 'JoinIT by Acayosoft', 2, 91, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (920, 'Acayosoft JoinIT', 2, 91, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (921, 'JoinIT by Acayosoft v 9.0.8', 2, 91, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (922, 'joinIT', 2, 91, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (923, 'JScript', 9, 340, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (924, 'Kitura', 8, 269, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (925, 'LifeFlow', 2, 92, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (926, 'LifeFlow Tool', 2, 92, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (927, 'Linux 2.6.32-696.28.1.el6.x86_64', 6, 426, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (928, 'Other Linux (64-bit)', 6, 426, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (929, 'Linux', 6, 426, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (930, 'Linux 2.6.32-696.30.1.el6.x86_64', 6, 426, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (931, 'Linux 2.6.9', 6, 426, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (932, 'Linux 2.6.32-642.3.1.el6.x86_64', 6, 426, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (933, 'Linux - 2.6.18-371.1.2.el5', 6, 426, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (934, 'Linux 2.6.32-696.23.1.el6.x86_64', 6, 426, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (935, 'Other Linux (32-bit)', 6, 426, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (936, 'Linux (64-bit)', 6, 426, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (937, 'Linux 3.10.0-1062.el7.x86_64', 6, 426, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (938, 'Other 2.6.x Linux (64-bit)', 6, 426, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (939, 'CentOS 6 (32-bit)', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (940, 'LINUX CentOS 7.3', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (941, 'CentOS 4 (32-bit)', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (942, 'LINUX CentOS 6.2', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (943, 'Linux CentOS_5.5', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (944, 'CentOS 7.2', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (945, 'CentOS 6 (64-bit)', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (946, 'LINUX CentOS 6.8', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (947, 'LINUX CentOS 6.9', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (948, 'LINUX CentOS 6.4', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (949, 'CentOS 4/5/6 (64-bit)', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (950, 'CentOS 5 (32-bit)', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (951, 'Linux CentOS_5.2', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (952, 'CentOS 4 (64-bit)', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (953, 'CentOS 7 (64-bit)', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (954, 'CentOS 5 (64-bit)', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (955, 'CentOS 5.8 (x86)', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (956, 'CentOS 6.4', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (957, 'CentOS 7.5.184', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (958, 'CentOS 4/5/6 (32-bit)', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (959, 'CentOS', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (960, 'CentOS release 5.11', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (961, 'CentOS 4/5 or later (32-bit)', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (962, 'LINUX CentOS 6.5', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (963, 'LINUX CentOS 6.7', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (964, 'LINUX CentOS 5.8', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (965, 'LINUX CentOS 5', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (966, 'CentOS 7.x', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (967, 'CentOS 4/5/6/7 (64-bit)', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (968, 'CentOS 4/5 or later (64-bit)', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (969, 'LINUX CentOS 5.7', 6, 427, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (970, 'Check Point IPSO', 6, 428, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (971, 'Gaia Kernel version 2.7', 6, 428, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (972, 'Checkpoint', 6, 428, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (973, 'Check Point Gaia', 6, 428, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (974, 'Gaia Kernel version 2.6', 6, 428, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (975, 'Debian Linux', 6, 429, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (976, 'Debian GNU/Linux 8 (64-bit)', 6, 429, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (977, 'Debian', 6, 429, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (978, 'Debian Linux 8', 6, 429, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (979, 'LINUX Debian 6.0', 6, 429, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (980, 'Debian GNU/Linux 5 (64-bit)', 6, 429, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (981, 'Junos OS', 6, 430, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (982, 'JunOS', 6, 430, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (983, 'JunOS 8.0R14', 6, 430, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (984, 'JunOS 8.0R13', 6, 430, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (985, 'OpenSuse', 6, 431, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (986, 'SUSE openSUSE (64-bit)', 6, 431, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (987, 'Oracle - Linux Server - 7.5 Beta', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (988, 'Oracle Linux 7', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (989, 'LINUX Oracle EL 6.6 64bit', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (990, 'OEL', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (991, 'LINUX Oracle EL 6.3 64bit', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (992, 'LINUX Oracle EL 7.4 64bit', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (993, 'OEL 6.5 (Oracle Linux)3.8.13-16.2.1.el6uek.x86_64', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (994, 'LINUX Oracle EL 5.11 64bit', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (995, 'LINUX Oracle EL 5.10 64bit', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (996, 'LINUX Oracle EL 5.9', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (997, 'Oracle Linux 6.1', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (998, 'Oracle Linux 4/5 or later (64-bit)', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (999, 'LINUX Oracle EL 6.9', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1000, 'LINUX Oracle EL 6.8 64bit', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1001, 'Oracle Linux 5 (64-bit)', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1002, 'Oracle Enterprise Server 7.5', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1003, 'Oracle Linux 5u10', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1004, 'OEL6.7 - 3.8.13-68.3.4.el6uek.x86_64', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1005, 'Oracle Linux Server 6.10', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1006, 'LINUX Oracle EL 6.9 64bit', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1007, 'LINUX Oracle EL 6.7 64bit', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1008, 'Oracle Linux Server release 6.9', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1009, 'Oracle Linux Server 6.9', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1010, 'LINUX Oracle EL 5.8 64bit', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1011, 'OEL 6.5 (Oracle Linux)2.6.32-431.el6.x86_63', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1012, 'Oracle Linux Server 6.7', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1013, 'Oracle Enterprise Linux', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1014, 'Oracle Linux', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1015, 'OEL 6.5 (Oracle Linux)2.6.32-431.el6.x86_62', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1016, 'Oracle Linux 4 (64-bit)', 6, 432, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1017, 'Photon OS', 6, 433, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1018, 'VMware Photon', 6, 433, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1019, 'VMware Photon 1', 6, 433, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1020, 'Red Hat Enterprise Linux Server 6.4', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1021, 'Red Hat Enterprise Linux Server 7.3', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1022, 'Linux - Redhat 6', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1023, 'LINUX RedHat ES 5.7 64bit', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1024, 'Red Hat Enterprise Linux Server 6.6', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1025, 'Red Hat Enterprise Linux AS release 4 (Nahant Update 8)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1026, 'Red Hat Enterprise Linux Server release 6.9 (Santiago)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1027, 'RED HAT ENTERPRISE LINUX 5.9', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1028, 'Red Hat Enterprise Linux Server 6.7', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1029, 'LINUX RedHat EL 7.3 64bit', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1030, 'RHEL', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1031, 'Redhat Linux 5.7', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1032, 'Linux Red Hat 7.6', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1033, 'Red Hat Enterprise Linux Server 7.2', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1034, 'Red Hat Enterprise Linux Server 7.4', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1035, 'Red Hat(Linux)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1036, 'LINUX Red Hat Enterprise Linux Server 5.7', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1037, 'LINUX RedHat EL 5.7 64bit', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1038, 'Linux Red Hat5.1', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1039, 'Linux Red Hat3', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1040, 'LINUXRed Hat Enterprise Linux Server 7.6', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1041, 'Red Hat Enterprise Linux Server 5.8', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1042, 'LINUX RedHat EL 6.8 64bit', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1043, 'RHEL 7.4', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1044, 'Redhat - Redhat Linux 7.2', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1045, 'Linux RH6', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1046, 'Red Hat Enterprise Linux 6 (32-bit)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1047, 'RED HAT ENTERPRISE LINUX SERVER 6.X (Santiago)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1048, 'RHEL 6', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1049, 'Red Hat Enterprise Linux 7.5', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1050, 'LINUXRed Hat Enterprise Linux Server 6.9', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1051, 'RHEL 6.6', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1052, 'Red Hat Enterprise Linux Santiago 6.3 32 Bit', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1053, 'LINUX RedHat EL 6.6 64bit', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1054, 'RED HAT ENTERPRISE LINUX 6.10', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1055, 'RED HAT ENTERPRISE LINUX SERVER 5', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1056, 'Linux Red Hat6.7', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1057, 'RED HAT ENTERPRISE LINUX SERVER 7.X (Maipo)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1058, 'Red Hat Enterprise Linux Server release 7.3 (Maipo)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1059, 'RHEL7.4', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1060, 'Linux Red Hat Enterprise Server 6.10', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1061, 'Red Hat Enterprise Linux Server 7.6 (Maipo)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1062, 'Red Hat Enterprise Linux 5 (64-bit)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1063, 'Linux Red Hat6.1', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1064, 'RHEL 7.2', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1065, 'RHEL 7', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1066, 'RED HAT ENTERPRISE LINUX 4.3', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1067, 'Red Hat Enterprise Linux 5', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1068, 'Red Hat Enterprise Linux Server 6.3', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1069, 'LINUX RedHat EL 7.5 64bit', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1070, 'LINUXRed Hat Enterprise Linux Server 5.11', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1071, 'LINUX RED HAT ENTERPRISE SERVER 5.11', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1072, 'Unix Linux Redhat', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1073, 'LINUX RED HAT ENTERPRISE SERVER 6 X64', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1074, 'Red Hat Linux', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1075, 'LINUX RED HAT ENTERPRISE SERVER 6.8', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1076, 'RHEL6.6 - 2.6.32-504.el6.x86_64', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1077, 'RED HAT ENTERPRISE LINUX 5.X', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1078, 'Linux Red Hat Enterprise Server 7.7', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1079, 'Linux Red Hat4', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1080, 'Linux Red Hat Enterprise Server 6.7', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1081, 'Red Hat Enterprise Linux Server release 5.1', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1082, 'Red Hat Linux x64 6.6', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1083, 'Red Hat Enterprise Linux Server 7.5', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1084, 'Linux Red Hat6.4', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1085, 'LINUX RED HAT ENTERPRISE SERVER 6.9', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1086, 'Red Hat Enterprise Linux Server release 6.6 (Santiago)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1087, 'RED HAT ENTERPRISE LINUX 6.X', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1088, 'Red Hat Enterprise Linux Server 6.x', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1089, 'RedHat Enterprise Linux 6 (64-bit)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1090, 'RED HAT ENTERPRISE LINUX', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1091, 'Redhat - Redhat Linux 6.6', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1092, 'RED HAT ENTERPRISE LINUX 5.8', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1093, 'RED HAT ENTERPRISE LINUX 5.10', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1094, 'RED HAT ENTERPRISE LINUX 7.4', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1095, 'Red Hat Enterprise Linux Server 5.9', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1096, 'Redhat - RHEL 7.2', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1097, 'RHEL7.5', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1098, 'Red Hat Enterprise Linux Server release 7.5 (Maipo)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1099, 'Red Hat Enterprise Linux 6 (64-bit)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1100, 'Red Hat Entreprise Linux 6.2', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1101, 'RED HAT ENTERPRISE LINUX 6.9', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1102, 'RHEL 5.4', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1103, 'Red Hat Enterprise Linux 7.6', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1104, 'LINUX RedHat EL 6.2 64bit', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1105, 'Linux Red Hat6.9', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1106, 'RED HAT ENTERPRISE LINUX 5.11 - 5.11', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1107, 'Red Hat Enterprise Linux Server 5.5', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1108, 'Redhat 6 64-Bit', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1109, 'Red Hat Enterprise Linux 5 (32-bit)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1110, 'Red Hat Enterprise Linux Server 7.', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1111, 'RHEL 6.6 ((64 bit x86_64)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1112, 'Red Hat Enterprise Linux Server Release 6.10', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1113, 'LINUX RED HAT ENTERPRISE ES 4', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1114, 'Linux Red Hat Enterprise Server 5.11 (2.6.18-419.el5)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1115, 'Red Hat Enterprise Linux Server release 6.8 (Santiago)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1116, 'RED HAT ENTERPRISE LINUX 4.9', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1117, 'Redhat Linux 6.3', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1118, 'Red Hat Enterprise Linux AS', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1119, 'RED HAT ADVANCED SERVER 5', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1120, 'LINUX RED HAT ENTERPRISE SERVER 7.3', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1121, 'RHEL6.7 - 2.6.32-573.el6.x86_64', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1122, 'Red Hat Enterprise Linux Server 5.2', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1123, 'LINUX RedHat EL 5 64bit', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1124, 'Red Hat Enterprise Linux 7.2 (64-bit)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1125, 'LINUX RedHat EL 5.11 64bit', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1126, 'RHEL 6.5', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1127, 'RHEL 6.4', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1128, 'Red Hat Enterprise Linux Server', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1129, 'Red Hat Enterprise Linux Server 5.x', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1130, 'Red Hat Enterprise Linux Santiago 6.x', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1131, 'RED HAT ENTERPRISE LINUX 6.5', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1132, 'RED HAT ENTERPRISE LINUX 7.1', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1133, 'Red Hat Enterprise Linux Server release 5.3', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1134, 'RHEL Server', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1135, 'Linux RHEL', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1136, 'redhat6.6', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1137, 'RHEL 5', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1138, 'Redhat - Redhat Linux 6.3', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1139, 'Linux RH', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1140, 'Red Hat Enterprise Linux Server release 6.10 (Santiago)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1141, 'Red Hat Enterprise Linux 3 (32-bit)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1142, 'Redhat - Red Hat(Linux)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1143, 'RED HAT ENTERPRISE LINUX 5.11', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1144, 'RED HAT ENTERPRISE LINUX SERVER 4', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1145, 'Redhat Linux 6.10', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1146, 'Linux RH7', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1147, 'Red Hat Enterprise Linux Server release 5 (Tikanga)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1148, 'RHEL 7.3', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1149, 'LINUX Red Hat Enterprise Linux Server 6.3', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1150, 'Red Hat Enterprise Linux Server 6.5', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1151, 'Red Hat Enterprise Linux Server release 7.4 (Maipo)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1152, 'Red Hat V6', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1153, 'Redhat Linux', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1154, 'RHEL 6.3', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1155, 'RED HAT ENTERPRISE LINUX 6.X TPM', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1156, 'Linux Red Hat5.8', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1157, 'Linux Red Hat5.11', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1158, 'Linux RH5', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1159, 'Red Hat Enterprise Linux Santiago 6.3 64 Bit', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1160, 'rehl5.9', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1161, 'RED HAT ENTERPRISE LINUX ES 5.11', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1162, 'Red Hat Enterprise Linux Server release 7.6 (Maipo)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1163, 'LINUX RED HAT ENTERPRISE SERVER 7.5', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1164, 'Red Hat Enterprise Linux 4 (32-bit)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1165, 'RHEL 7.xx', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1166, 'Red Hat Enterprise Linux Server 6.9', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1167, 'Red Hat Enterprise Linux Server release 7.x', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1168, 'Red Hat Enterprise Linux 7 (64-bit)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1169, 'Red Hat Enterprise Linux 5 Update 3 (RHEL 5.3) for x86-64', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1170, 'LINUX RED HAT ENTERPRISE AS 4', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1171, 'RHEL Linux', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1172, 'RHEL 7.1', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1173, 'RED HAT ENTERPRISE LINUX 4.6', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1174, 'RED HAT ENTERPRISE LINUX 6.4', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1175, 'Linux Red Hat6.5', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1176, 'RHEL 7.5', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1177, 'RHEL 6.9', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1178, 'RED HAT ENTERPRISE LINUX 5.X TPM', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1179, 'RED HAT ENTERPRISE LINUX ES 6.9', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1180, 'LINUX RedHat EL 7.4 64bit', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1181, 'Red Hat Enterprise Linux Server release 6.9', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1182, 'Red Hat Linux 5.7', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1183, 'LINUX RED HAT ENTERPRISE SERVER 7.6', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1184, 'LINUX RedHat EL 5.0 64bit', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1185, 'Red Hat Enterprise Linux Server release 6.3 (Santiago)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1186, 'RED HAT ENTERPRISE LINUX SERVER 5.X (Tikanga)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1187, 'Red Hat Enterprise Linux Server 7.6', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1188, 'Linux Red Hat 6.10', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1189, 'Linux Red Hat', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1190, 'Red Hat 6.6', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1191, 'LINUX Red Hat Enterprise Linux Server 6.9', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1192, 'LINUX Red Hat Enterprise Linux Server 5.11', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1193, 'Red Hat Enterprise Linux Server 5.1', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1194, 'RHEL7.xx', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1195, 'RHEL 6.7', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1196, 'Linux Red Hat5.6', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1197, 'Red Hat Enterprise Linux Server 7.1', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1198, 'Red Hat Enterprise Linux Server release 6.5 (Santiago)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1199, 'Linux Red Hat6.8', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1200, 'Red Hat Enterprise Linux Server 6.1', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1201, 'LINUXRed Hat Enterprise Linux Server 6.10', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1202, 'Red Hat Enterprise Linux 7.7', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1203, 'Red Hat Enterprise Linux Server 7.x', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1204, 'Redhat Linux 7.2', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1205, 'red hat', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1206, 'LINUX RedHat EL 6.10 64bit', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1207, 'Red Hat Enterprise Linux 6', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1208, 'Red Hat Enterprise Linux Server release 6.7 (Santiago)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1209, 'Linux Red Hat5.9', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1210, 'Red Hat Enterprise Linux 7', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1211, 'Red Hat Linux 6', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1212, 'RED HAT ENTERPRISE LINUX 7.X', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1213, 'RHEL x86-64', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1214, 'LINUX RED HAT ENTERPRISE SERVER 7.4', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1215, 'Red Hat Enterprise Linux Server 4.9', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1216, 'RED HAT ENTERPRISE LINUX 5 (64 Bit)', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1217, 'Redhat', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1218, 'RED HAT ENTERPRISE LINUX 7.X TPM', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1219, 'Red Hat Enterprise Linux Server 6.8', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1220, 'Red Hat Enterprise Linux Server 5.11', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1221, 'RED HAT ENTERPRISE LINUX SERVER 6.2', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1222, 'RedHat 7.3', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1223, 'Redhat Linux 6.6', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1224, 'LINUX RED HAT 5 EL', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1225, 'LINUX RedHat EL 6.9 64bit', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1226, 'RED HAT ENTERPRISE LINUX 7.3', 6, 434, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1227, 'suse enterprise server 11 (64-bit)', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1228, 'SUSE Linux Enterprise Server 12 x86_64', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1229, 'SUSE11', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1230, 'SUSE Linux Enterprise 10 (32-bit)', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1231, 'SUSE Linux Enterprise 10 (64-bit)', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1232, 'Linux SuSE12', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1233, 'SUSE Linux Enterprise 12 (64-bit)', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1234, 'Linux SuSE2.6.32-504.12.2.el6.x86_64', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1235, 'LINUXSUSE_SLES 11.4', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1236, 'SUSE Linux Enterprise 11 (64-bit)', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1237, 'SUSE10', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1238, 'SUSE Linux 12', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1239, 'LINUX SUSE_SLES 11.4', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1240, 'LINUX SuSE Enterprise Server 11 64bit', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1241, 'SLES 11 SP4', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1242, 'SUSE Enterprise Server 11 (64-bit)', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1243, 'SUSELinux Enterprise 11.x', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1244, 'SUSE Linux Enterprise Server 11 x86_64', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1245, 'SUSE Enterprise 11 (64-bit)', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1246, 'SUSE Enterprise 10 (64-bit)', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1247, 'suse enterprise 11 (64-bit)', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1248, 'SUSE LINUX ENTERPRISE SERVER 11, SERVICE PACK SERVICE PACK SP4', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1249, 'SUSE Linux 11', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1250, 'SUSE Linux 11 SP3', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1251, 'SUSE Linux Eneterprise Server (SLES) 11.0', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1252, 'SUSE Linux', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1253, 'SLES 9', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1254, 'SUSE Linux Enterprise Server 11 (x86_64)PATCHLEVEL = 3', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1255, 'Linux SuSE11', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1256, 'SUSE', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1257, 'SUSELinux Enterprise 11 (64-bit)', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1258, 'LINUX SuSE Enterprise Server 9', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1259, 'LINUX SuSE 10.0 Enterprise', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1260, 'SUSE LINUX ENTERPRISE SERVER 11.3', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1261, 'SUSE LINUX Enterprise Server 9 (i586) VERSION = 9 PATCHLEVEL = 3', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1262, 'SUSE Linux Enterprise Server 11 (x86_64)PATCHLEVEL = 1', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1263, 'SUSE Linux Enterprise 11 SP4', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1264, 'SuseLinux', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1265, 'SLES 12 SP2 for Power/SAP', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1266, 'SUSE Linux Enterprise Server', 6, 435, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1267, 'LINUX Ubuntu 12.04.1 LTS', 6, 436, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1268, 'Ubuntu - Ubuntu Server - 16.04.1 LTS', 6, 436, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1269, 'Ubuntu Linux (32-bit)', 6, 436, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1270, 'LINUX Ubuntu 16.04 LTS', 6, 436, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1271, 'Ubuntu Linux Server 10 (64-bit)', 6, 436, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1272, 'Ubuntu', 6, 436, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1273, 'LINUX Ubuntu 14.04 LTS', 6, 436, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1274, 'UBUNTU LINUX (64-BIT)', 6, 436, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1275, 'Ubuntu Linux', 6, 436, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1276, 'LINUX UBUNTU 16.04', 6, 436, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1277, 'LINUX Ubuntu', 6, 436, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1278, 'Linux - Ubuntu Server 16.04.1 LTS', 6, 436, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1279, 'zLinux', 6, 437, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1280, 'Lisp', 9, 341, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1281, 'Lotus Domino', 8, 270, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1282, 'domino8.5', 8, 270, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1283, 'Domino 8.x', 8, 270, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1284, 'Lotus Notes', 2, 93, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1285, 'Lotus Notes Internal', 2, 93, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1286, 'Lucee', 8, 271, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1287, 'Lucee 5.2.6.60', 8, 271, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1288, 'MaaS360', 2, 94, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1289, 'mac OS', 6, 438, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1290, 'macOS', 6, 438, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1291, 'Darwin', 6, 438, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1292, 'Malwarebytes Anti-Malware', 2, 95, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1293, 'Malwarebytes Corporation - Malwarebytes Anti-Malware 3.4', 2, 95, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1294, 'Malwarebytes', 2, 95, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1295, 'ManageEngine ADSelfService Plus', 2, 96, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1296, 'Manage Engine ADSelfService Porta', 2, 96, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1297, 'Marklogic', 2, 97, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1298, 'MarkLogic DB', 2, 97, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1299, 'Memcache', 2, 98, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1300, 'Memcached', 2, 98, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1301, 'ACCDB', 2, 99, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1302, 'Microsoft Access', 2, 99, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1303, 'Access DB', 2, 99, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1304, 'MS Access 2016', 2, 99, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1305, 'MS Access', 2, 99, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1306, 'Microsoft BizTalk Adapters for Host Systems 2.0', 2, 100, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1307, 'Microsoft BizTalk Adapters for Host Systems', 2, 100, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1308, 'Microsoft Dynamics AX', 2, 101, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1309, 'MS Dynamics AX 4', 2, 101, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1310, 'Microsoft - Microsoft System Center Configuration Manager 2012', 2, 102, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1311, 'SCCM', 2, 102, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1312, 'Microsoft Endpoint Configuration Manager (SCCM)', 2, 102, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1313, 'ConfigMgr', 2, 102, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1314, 'Microsoft - Microsoft System Center Configuration Manager Client 5', 2, 102, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1315, 'Microsoft Endpoint Configuration Manager', 2, 102, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1316, 'MS System Centre Configuration Manager', 2, 102, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1317, 'MS Excel', 2, 103, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1318, 'Excel', 2, 103, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1319, 'Microsoft Excel 2010', 2, 103, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1320, 'Microsoft Excel', 2, 103, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1321, 'Excel 2010', 2, 103, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1322, 'Microsoft Exchange Server', 2, 104, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1323, 'MS Exchange 2010 Enterprise', 2, 104, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1324, 'Veeam Explorer', 5, 464, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1325, 'Microsoft Forefront Identity Manager (FIM)', 2, 105, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1326, 'Microsoft Forefront Identity Manager', 2, 105, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1327, 'FIM SQL Development Server', 2, 105, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1328, 'InfoPath', 2, 106, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1329, 'Microsoft InfoPath', 2, 106, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1330, 'Microsoft - Internet Explor', 2, 107, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1331, 'Microsoft - Internet Explorer 11', 2, 107, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1332, 'Microsoft Internet Explorer', 2, 107, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1333, 'Internet Explor', 2, 107, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1334, 'ISA Server', 2, 108, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1335, 'Microsoft ISA Server', 2, 108, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1336, 'Microsoft MQ', 2, 109, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1337, 'System Center Endpoint Protection for Mac', 2, 110, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1338, 'System Center 2012 Endpoint Protection', 2, 110, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1339, 'Microsoft System Center 2012 Endpoint Protection', 2, 110, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1340, 'Microsoft - Microsoft System Center 2012 Endpoint Protection 2.2', 2, 110, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1341, 'SCEP for Linux', 2, 110, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1342, 'System Center Endpoint Protection for Linux', 2, 110, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1343, 'Microsoft System Center Endpoint Protection 2012', 2, 110, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1344, 'System Center 2012 R2 Endpoint Protection', 2, 110, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1345, 'SCEP for Mac', 2, 110, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1346, 'Microsoft System Center Endpoint Protection', 2, 110, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1347, 'System Center Endpoint Protection', 2, 110, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1348, 'Microsoft - Microsoft Visual Studio 2010', 2, 111, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1349, 'Microsoft Visual Studio 2010', 2, 111, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1350, 'Microsoft Visual Studio', 2, 111, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1351, 'Visual Studio', 2, 111, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1352, 'Microsoft Web Deploy 2.0', 2, 112, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1353, 'Microsoft Web Deploy', 2, 112, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1354, 'Web Deploy', 2, 112, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1355, 'msdeploy', 2, 112, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1356, 'Web Farm Framework', 2, 113, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1357, 'Microsoft Web Farm Framework Version 2.2', 2, 113, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1358, 'Microsoft Web Farm Framework', 2, 113, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1359, 'WFF', 2, 113, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1360, 'Microsoft Web Farm Framework (WFF)', 2, 113, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1361, 'WebPI', 2, 114, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1362, 'Web Platform Installer', 2, 114, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1363, 'Microsoft Web Platform Installer', 2, 114, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1364, 'Microsoft Web Platform Installer 3.0', 2, 114, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1365, 'Web PI', 2, 114, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1366, 'MDW 6', 2, 115, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1367, 'MDW Framework', 2, 115, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1368, 'MDW', 2, 115, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1369, 'Model Driven Workflow', 2, 115, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1370, 'Model Driven Workflow (MDW)', 2, 115, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1371, 'MONGO-DB', 2, 116, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1372, 'Mango DB', 2, 116, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1373, 'Mongo DB', 2, 116, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1374, 'MangoDB', 2, 116, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1375, 'MongoDB', 2, 116, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1376, 'Mozilla.org - Firefox 38.5', 2, 117, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1377, 'Firefox', 2, 117, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1378, 'Mozilla.org', 2, 117, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1379, 'Mozilla.org - Firefox 68', 2, 117, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1380, 'Mozilla Firefox', 2, 117, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1381, 'Mozilla.or', 2, 117, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1382, 'MQ Client 7.5', 2, 118, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1383, 'MQ Client', 2, 118, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1384, 'MS Office 365', 2, 119, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1385, 'Office 365', 2, 119, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1386, 'O365', 2, 119, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1387, 'MS SQL Server 2008 Standard', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1388, 'MS SQL 2008R2SP2ENT (10.52.4042.0)', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1389, 'MS SQL Server 2008', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1390, 'SQL Server 11.0.2100.60', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1391, 'MS SQL 2016 SP1', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1392, 'SQL 2012 Development Server', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1393, 'MICROSOFT SQL SERVER 2008 R2 ENTERPRISE EDITION 10.5', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1394, 'Microsoft - Microsoft SQL Server 2012 for Microsoft SQL Server 2012 Standard Edition 2012', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1395, 'MS SQL Server MS SQL Server 2008', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1396, 'SQL Server 2016 SP1', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1397, 'SQL Server 2000', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1398, 'SQL Server 2005 Standard', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1399, 'Microsoft SQL Server 2008 (SP4) - 10.0.6000.29 (X64)', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1400, 'MICROSOFT SQL SERVER 2005 STANDARD EDITION 9.*', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1401, 'Microsoft SQL Server SQL Server 2008 R2', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1402, 'MICROSOFT SQL SERVER 2012 DEVELOPER EDITION', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1403, 'Microsoft SQL Server 2000', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1404, 'MS SQL Server 2008 R2 Express', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1405, 'SQL Server', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1406, 'SQL Server 2012 SP3', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1407, 'SQL Server 2003', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1408, 'Microsoft SQL Server 2016 - Service pack 2', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1409, 'SQL SERVER 2008 R2', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1410, 'MS SQL Server 2008 Enterprise R2', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1411, 'MS SQL Server 2014 Express', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1412, 'SQL Server 2008 R2 SP1', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1413, 'SQL Server 2008 R2 Enterprize SP2 64Bit', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1414, 'MICROSOFT SQL SERVER 2012 STANDARD EDITION', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1415, 'MS SQL Server 2008 Developer', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1416, 'SQL 2005', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1417, 'MICROSOFT SQL SERVER 2008 DEVELOPER EDITION', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1418, 'Microsoft SQL Server 2012 (SP4-GDR)', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1419, 'MS SQL Server 2012 Enterprise', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1420, 'Microsoft SQL Server 2008 R2 (RTM) - 10.50.1600.1 (X64)', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1421, 'MS SQL Server 2005 Express', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1422, 'SQL Server 2016', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1423, 'Microsoft SQL Server 2012', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1424, 'Microsoft SQL Server SQL Server 2005', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1425, 'MS SQL', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1426, 'sql server 2009 SQL', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1427, 'Microsoft - Microsoft SQL - 13.0', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1428, 'MSSQL Database Server', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1429, 'SQL Server 2008 R2 SP3', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1430, 'sql server 2013 SQL', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1431, 'SQL 2012', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1432, 'Microsoft SQL Server 2000 (SP4)', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1433, 'MS SQL Server 2012 Standard', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1434, 'MSSQL2008', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1435, 'MS SQL server 2008 R2', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1436, 'MS SQL Server 2000 Standard', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1437, 'MS SQLServer', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1438, 'microsoft sql', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1439, 'MS SQL 2008R2SP2STD (10.52.4042.0)', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1440, 'MS SQL Server 2008 R2 Standard', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1441, 'MS SQL Server 2005 Enterprise', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1442, 'MS SQL Server 2008 Standard R2', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1443, 'SQL Server 12.0.2000.8', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1444, 'MS SQL 2008R2SP3STD (10.53.6220.0)', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1445, 'SQL Server 11.0.5388.0', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1446, 'sql server 2011 SQL', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1447, 'MS SQL Server 2014 Enterprise', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1448, 'sql server 2008 SQL', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1449, 'SQl 2016', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1450, 'Microsoft SQL Server', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1451, 'SQL Server 2014 SP2', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1452, 'SQL Server 2008 R2 RTM', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1453, 'Microsoft SQL Server Standard Edition', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1454, 'MS SQL Server 2000', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1455, 'sql2000', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1456, 'SQL Server 2012', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1457, 'Microsoft SQL Server 2008', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1458, 'SQL Server 10.0.5538.0', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1459, 'Microsoft - Microsoft SQL Server 2008 R2 for Microsoft SQL Server 2008 R2 Express Edition 2008', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1460, 'MICROSOFT SQL SERVER 2014 ENTERPRISE EDITION 12', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1461, 'SQL Server 11.0.3156.0', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1462, 'SQLServer', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1463, 'SQL Server 2000 SP4', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1464, 'SQL Server 2008', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1465, 'SQL Server 2008 R2 STD SP1', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1466, 'sql server 2010 SQL', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1467, 'MICROSOFT SQL SERVER 2008 R2 STANDARD EDITION', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1468, 'Microsoft SQL Server 2012 (SP4) (KB4018073) - 11.0.7001.0 (X64)', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1469, 'MICROSOFT SQL SERVER 2014 STANDARD EDITION 12', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1470, 'MS SQL SERVER 08', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1471, 'SQL Server 10.50.2550.0', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1472, 'Microsoft SQL Server 2005', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1473, 'SQL 2000', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1474, 'sql server 2012 SQL', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1475, 'MS SQL Server 2017', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1476, 'MS SQL Server 2012', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1477, 'MS SQL Server 2008 R2 Enterprise', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1478, 'SQL Server 9.0.1399.0', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1479, 'MS SQL 2008SP2STD (10.2.4067.0)', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1480, 'SQL Server 2005', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1481, 'Microsoft SQL Server 8.1', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1482, 'Microsoft - Microsoft SQL Server 2005 for Microsoft SQL Server 2005 Express Edition 2005', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1483, 'Microsoft - Microsoft SQL Server 2008 R2 for Microsoft SQL Server 2008 R2 Standard Edition 2008', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1484, 'MICROSOFT SQL SERVER 2008 R2 ENTERPRISE EDITION 10.*', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1485, 'MICROSOFT SQL SERVER 2008 R2 STANDARD EDITION 10.5', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1486, 'MS SQL 2005SP3STD (9.3.4340)', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1487, 'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1488, 'SQL Server 2017 RTM', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1489, 'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION 11.0"', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1490, 'SQL 2014', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1491, 'Microsoft - Microsoft SQL Server 2014 for Microsoft SQL Server 2014 Express Edition 2014', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1492, 'Microsoft SQL Server 2008R2', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1493, 'SQL Server 2008 SP1', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1494, 'MICROSOFT SQL SERVER 2005 ENTERPRISE EDITION', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1495, 'SQLSVR2008', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1496, 'MICROSOFT SQL SERVER 2008 ENTERPRISE EDITION', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1497, 'SQL Server 9.0.5069.0', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1498, 'MS SQL Instance', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1499, 'Microsoft - Microsoft SQL Server 2014 for Microsoft SQL Server 2014 Standard Edition 2014', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1500, 'MICROSOFT SQL SERVER 2008 STANDARD EDITION', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1501, 'SQL Server 2012 SP4', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1502, 'Microsoft SQL sever 2008 R2 SP 3', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1503, 'SQL Server 2012 SP2', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1504, 'Microsoft SQL Server 2016', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1505, 'MS SQL Server 2012 Developer', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1506, 'MS SQL 2014', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1507, 'MS SQL Server', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1508, 'MS SQL Server 2005 Standard', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1509, 'SQL Server 2014', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1510, 'MS SQL Server 2016', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1511, 'MICROSOFT SQL SERVER 2012 STANDARD EDITION 11', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1512, 'SQL Server 10.0.2531.0', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1513, 'MICROSOFT SQL SERVER 2000 STANDARD EDITION 8.*', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1514, 'MS SQL Server 2014', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1515, 'Microsoft - SQL Server Express LocalDB 2014', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1516, 'MS SQL 2012SP3STD (11.3.6020.0)', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1517, 'MICROSOFT SQL SERVER 2014 STANDARD EDITION 12.0', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1518, 'MSSQL', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1519, 'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION 11', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1520, 'Microsoft - Microsoft SQL Server 2008 for Microsoft SQL Server 2008 Express Edition 2008', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1521, 'SQL Server 2008 SP4', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1522, 'Microsoft SQL Server 2008 R2 Policies 10.50.1600.1', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1523, 'Microsoft SQL Server 1997 (SP4)', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1524, 'MS SQL Server 2008 Express', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1525, 'MS SQL 2005SP4STD (9.4.5324)', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1526, 'SQL 2008', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1527, 'MS SQL Server 2008 Enterprise', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1528, 'MS SQL Server 2005', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1529, 'SQL 2008 R2', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1530, 'Microsoft SQL Server 2008 (SP3) - 10.0.5500.0 (X64)', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1531, 'MS SQL Server 2014 Standard', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1532, 'SQL Server 2016 SP2', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1533, 'Microsoft SQL Server 2014', 2, 120, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1534, 'Microsoft SQL Server Browser 10.52.4000.0', 5, 465, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1535, 'MS SQL Server Browser', 5, 465, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1536, 'MS SQL Server Compact', 2, 121, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1537, 'Microsoft SQL Server Compact 3.5 SP2 ENU 3.5.8080.0', 2, 121, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1538, 'Microsoft SQL Server Compact 3.5 SP2 Query Tools ENU 3.5.8080.0', 2, 121, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1539, 'MS DTS', 5, 466, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1540, 'Data Transformation Services', 5, 466, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1541, 'Microsoft - Microsoft SQL Server Replication Logreader Agent 9', 5, 467, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1542, 'Log Reader Agent', 5, 467, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1543, 'SQL Server Analysis Services 10.50.2500.0', 5, 468, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1544, 'SQL Server Analysis Services 11.0.2218.0', 5, 468, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1545, 'SQL Server Analysis Services', 5, 468, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1546, 'Microsoft - Microsoft SQL Server Analysis Services 2012 for Microsoft SQL Server 2012 Standard Edition 2012', 5, 468, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1547, 'Microsoft - Microsoft SQL Server Analysis Services 2014 for Microsoft SQL Server 2014 Standard Edition 2014', 5, 468, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1548, 'SSAS 2012', 5, 468, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1549, 'Microsoft - Microsoft SQL Server Analysis Services 2014 for Microsoft SQL Server 2014 Enterprise Edition 2014', 5, 468, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1550, 'SQL Server Analysis Services 12.0.2000.8', 5, 468, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1551, 'SQL Server Analysis Services (SSAS)', 5, 468, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1552, 'SQL Server Analysis Services 11.0.3000.0', 5, 468, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1553, 'SSAS', 5, 468, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1554, '6+ SSAS databases', 5, 468, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1555, '25+ SSAS databases', 5, 468, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1556, 'SQL Server Database Engine', 5, 469, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1557, 'Microsoft - Microsoft SQL Server Database Engine Services 10.1', 5, 469, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1558, 'Microsoft - Microsoft SQL Server Integration Services 2014 for Microsoft SQL Server 2014 Enterprise Edition 2014', 5, 470, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1559, 'SSIS', 5, 470, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1560, 'SSIS 2008 R3', 5, 470, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1561, 'Microsoft - Microsoft SQL Server Integration Services 2014 for Microsoft SQL Server 2014 Standard Edition 2014', 5, 470, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1562, 'SSIS 2008 R4', 5, 470, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1563, 'SQL Server Integration Services', 5, 470, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1564, 'SSIS 2008 R2', 5, 470, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1565, 'SSIS - 2008', 5, 470, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1566, 'SQL Server Integration Services (SSIS)', 5, 470, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1567, 'Microsoft - Microsoft SQL Server Management Studio 16', 5, 471, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1568, 'Microsoft SQL Server Management studio2016', 5, 471, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1569, 'SQL Management Studio', 5, 471, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1570, 'SQL server mgmt studio 2012', 5, 471, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1571, 'SQL Server Management Studio', 5, 471, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1572, 'Microsoft - SQL Server Management Studio 2012', 5, 471, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1573, 'Microsoft - Microsoft SQL Report Builder 10.5', 5, 472, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1574, 'SQL Server Report Builder', 5, 472, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1575, 'SQL Server Reporting Services 10.50.2500.0', 5, 473, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1576, 'SQL Server Reporting Services', 5, 473, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1577, 'SQL Server Reporting Services 11.0.5058.0', 5, 473, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1578, 'SQL Server Reporting Services 12.0.2000.8', 5, 473, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1579, 'SQL Server Reporting Services 11.0.2218.0', 5, 473, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1580, 'Microsoft - Microsoft SQL Server Reporting Services 2012 for Microsoft SQL Server 2012 Express Edition 2012', 5, 473, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1581, 'SQL Server Reporting Services 11.0.3000.0', 5, 473, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1582, 'SSRS 2016', 5, 473, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1583, 'SSRS', 5, 473, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1584, 'SQL Server Reporting Services (SSRS)', 5, 473, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1585, 'MICROSOFT SQL SERVER REPORTING SERVICES 10.*', 5, 473, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1586, 'MVS', 6, 439, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1587, 'OS/390', 6, 440, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1588, 'ZOS V1R9', 6, 441, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1589, 'ZOS Base 1.12', 6, 441, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1590, 'IBM Z/OS V2.1', 6, 441, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1591, 'z/OS 1.9', 6, 441, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1592, 'z/OS', 6, 441, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1593, 'zOS', 6, 441, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1594, 'z/OS 1.8', 6, 441, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1595, 'zOS 11.1', 6, 441, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1596, 'z/OS Base', 6, 441, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1597, 'MySQL Instance', 2, 122, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1598, 'MySQL AB - MySQL - 15.1', 2, 122, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1599, 'My SQL 0', 2, 122, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1600, 'MYSQL', 2, 122, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1601, 'Sun - Sun Microsystems MySQL Server Community Edition 5.6', 2, 122, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1602, 'MySQL AB - MySQL Server 5.5', 2, 122, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1603, 'MySQL AB - MySQL Server 5.7', 2, 122, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1604, 'MySQL Enterprise Server - 8.0.16', 2, 122, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1605, 'mysql on linux', 2, 122, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1606, 'Neo4', 2, 123, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1607, 'Neo4J', 2, 123, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1608, 'Net Optics Network TAPs', 4, 297, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1609, 'Net Optics Taps', 4, 297, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1610, 'NAS', 8, 272, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1611, 'Netscape Application Server', 8, 272, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1612, 'Netscape Application Server (NAS)', 8, 272, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1613, 'NES', 8, 273, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1614, 'Netscape Enterprise Server', 8, 273, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1615, 'Netscape En', 8, 273, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1616, 'Netscape Enterprise Server (NES)', 8, 273, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1617, 'Nexus', 2, 124, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1618, 'Nexus Repository OSS', 2, 124, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1619, 'Nginx (Linux)', 8, 274, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1620, 'Nginx 3 (Linux)', 8, 274, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1621, 'Nginx 1 (Linux)', 8, 274, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1622, 'Nginx', 8, 274, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1623, 'Nginx 1', 8, 274, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1624, 'Nginx 3', 8, 274, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1625, 'Niakwa Programming Language (NPL)', 9, 342, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1626, 'NPL (Niakwa Inc)', 9, 342, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1627, 'Niakwa Programming Language', 9, 342, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1628, 'NIX', 2, 125, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1629, 'Nix package manager', 2, 125, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1630, 'Node.js', 10, 507, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1631, 'Node.js 0.10 (Linux)', 10, 507, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1632, 'Nodejs Foundation - nodejs - node.js 11.7.0', 10, 507, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1633, 'TS-Node.js 6', 10, 507, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1634, 'Node.js 4', 10, 507, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1635, 'Node.js 6', 10, 507, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1636, 'Node.js 10', 10, 507, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1637, 'Node.js 8', 10, 507, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1638, 'TS-Node.js 8', 10, 507, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1639, 'TS-Node.js 0.10', 10, 507, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1640, 'node', 10, 507, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1641, 'Node.js 0.8', 10, 507, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1642, 'Node.js 0.10', 10, 507, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1643, 'Node.js 4 (Linux)', 10, 507, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1644, 'TS-Node.js 11', 10, 507, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1645, 'Node.js 5', 10, 507, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1646, 'Nodejs', 10, 507, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1647, 'Node.js 0.12', 10, 507, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1648, 'Objective C', 9, 343, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1649, 'Objective-C', 9, 343, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1650, 'Obj-C', 9, 343, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1651, 'OpenEdge ABL', 9, 344, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1652, 'Progress', 9, 344, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1653, 'OpenEdge', 9, 344, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1654, 'Progress OpenEdge', 9, 344, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1655, 'Symas OpenLDAP', 2, 126, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1656, 'OpenLDAP', 2, 126, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1657, 'HPExstream', 2, 127, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1658, 'OpenText Exstream', 2, 127, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1659, 'VMS 8.4', 6, 442, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1660, 'OPENVMS 7.3.2', 6, 442, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1661, 'VMS', 6, 442, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1662, 'OpenVMS', 6, 442, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1663, 'OPENVMS 8.4', 6, 442, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1664, 'OpenVPN', 2, 128, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1665, 'Oracle Access Management', 2, 129, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1666, 'OAM 12c', 2, 129, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1667, 'ADF 12c', 2, 130, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1668, 'Oracle ADF', 2, 130, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1669, 'Oracle APEX', 2, 131, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1670, 'Apex', 2, 131, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1671, 'Oracle HTTP Server 12c', 8, 275, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1672, 'OHS', 8, 275, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1673, 'Oracle Application Server 9i', 8, 275, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1674, 'Oracle HTTP Server powered by Apache', 8, 275, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1675, 'j2eeoracleca', 8, 275, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1676, 'Oracle Application Server', 8, 275, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1677, 'Oracle HTTP', 8, 275, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1678, 'Oracle HTTP server', 8, 275, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1679, 'Oracle - Oracle Application Server OC4J Instance 11.2', 8, 275, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1680, 'Oracle Web App Server', 8, 275, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1681, '9i AS server', 8, 275, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1682, 'Oracle Applications 11.5.10CU2', 8, 275, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1683, 'Oracle Application R12.1.3', 8, 275, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1684, 'OC4J', 8, 275, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1685, 'Oracle Appache 1.0.22', 8, 275, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1686, 'Oracle Transparent Gateway', 7, 494, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1687, 'Weblogic BI Publisher', 2, 132, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1688, 'Oracle BI Publisher 10g (10.1.3.4)', 2, 132, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1689, 'Oracle BI Publisher', 2, 132, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1690, 'Oracle Business Intelligence', 2, 133, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1691, 'OBI', 2, 133, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1692, 'OBIEE', 2, 133, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1693, 'OBI Reporting', 2, 133, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1694, 'Oracle 12c Enterprise', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1695, 'Oracle 12 c', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1696, 'Oracle 12.2 Client', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1697, 'Oracle 11gR1', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1698, 'Oracle 18c', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1699, 'Oracle 9.2.0.7.0', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1700, 'Oracle 10.2', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1701, 'Oracle Database 11g Enterprise Edition Release 11.2.0.4.0', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1702, 'Oracle 11.2 (Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit) RAC', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1703, 'Oracle 18', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1704, 'Oracle 9i', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1705, 'Oracle 12c (v12.2.0.1) ORACLE', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1706, 'Oracle Database 12.1.0.2.190716', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1707, 'Oracle 12.1.0.2.0', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1708, 'Oracle 12.1', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1709, 'Oracle Database 11g R2', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1710, 'Oracle 11 on AIX', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1711, 'Oracle Database 10g Enterprise Edition Release 10.1.0.4.0 - 64bit', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1712, 'Oracle Database 11.2.0.3.0', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1713, 'Oracle Database 10g 10.2.0.5.0', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1714, 'Oracle 11 on EXA', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1715, 'Oracle Database 11.1.0.7.0', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1716, 'Oracle Database Server', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1717, 'Oracle DB Server', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1718, 'Oracle (9i,10g,11g,12c,18c)', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1719, 'Oracle 12C', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1720, 'Oracle 10.2.0.5', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1721, 'Oracle-OracleDB-10g', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1722, 'Oracle 11.2.0.2.0', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1723, 'Oracle 10', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1724, 'Oracle 8', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1725, 'Oracle 11G R2', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1726, 'Oracle Database 10g Release 10.2.0.4.0 - 64bit Production', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1727, 'Oarcle 11G', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1728, 'Oracle 12C R2 ORACLE', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1729, 'Oracle 11x', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1730, 'Oracle 11.2.4', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1731, 'Oracle Database 11gR2 Enterprise Edition 11.2.0.1 (64-bit)', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1732, 'Oracle', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1733, 'Oracle 12.1.0.2', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1734, 'Oracle Database 10g R2', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1735, 'Oracle 12x', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1736, 'Oracle - 12.1.0.2', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1737, 'Oracle 10g', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1738, 'DB - Oracle inbuilt', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1739, 'Oracle 12g', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1740, 'Oracle Database 10g Release 2', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1741, 'Oracle 11.2', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1742, 'Oracle 11 g', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1743, 'Oracle 9.2.0.8.0', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1744, 'Oracle Database 12.2.1.0', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1745, 'Oracle 10.2.0.4.0', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1746, 'Oracle 10g (10.2.0.3.0 on 32-bit windows)', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1747, 'Oracle 11g (11.2.0.3.0 on 64-bit windows)', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1748, 'Oracle-Oracle DB-8i', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1749, 'Oracle DB', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1750, 'Oracle Database', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1751, 'Oracle - Oracle Database - 10g Release 2', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1752, 'Oracle 10x', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1753, 'Oracle 11.2.0.4.0', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1754, 'Oracle 11g RAC', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1755, 'Oracle Database 11g Release 2', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1756, 'Oracle Server', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1757, 'Oracle Database 12c R1', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1758, 'Oracle 10.2.0', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1759, 'Oracle 11.2.0.4.0 64-bit', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1760, 'Oracle 10.2.0.5.0', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1761, 'Oracle 9.2.0.5.0', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1762, 'Oracle DB 11g EER 11.2.0.3.0', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1763, 'ORACLE RELATIONAL DATABASE MANAGEMENT SYSTEM VERSION 11.2', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1764, 'Oracle Database 9i Release 2', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1765, 'Oracle 11.1.0.7.0', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1766, 'Oracle Database 11g', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1767, 'Oracle DB 11.2.0.3', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1768, 'Oracle 12.2', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1769, 'Oracle 11g', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1770, 'Oracle Database 12c Release 2', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1771, 'Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1772, 'Oracle 11.2.0.3.0', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1773, 'Oracle 10.2.0.3.0', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1774, 'Oracle 12', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1775, 'Oracle Database 12c R2', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1776, 'Oracle 12C on linux', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1777, 'oracle 11g ORACLE', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1778, 'Oracle - 11.2.0.3', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1779, 'Oracle 12c (Oracle Database 12c Enterprise Edition Release 11.2.0.3.0 - 64bit)', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1780, 'Oracle9i Enterprise Edition Release 9.2.0.5.0', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1781, 'OracleDB EE11.2', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1782, 'Oracle 11g on linux', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1783, 'Oracle 11gEssbase', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1784, 'Oracle12', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1785, 'Oracle Database 12c Release 1', 2, 134, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1786, 'JServer Release 9.2.0.5.0', 5, 474, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1787, 'Jserver', 5, 474, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1788, 'ORACLE SPATIAL', 5, 475, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1789, 'Oracle Spatial and Graph', 5, 475, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1790, 'Designer 6i', 2, 135, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1791, 'Oracle Designer', 2, 135, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1792, 'Enterprise Manager 12.2.1.1', 2, 136, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1793, 'Enterprise Manager 12.2.1.2', 2, 136, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1794, 'Enterprise Manager 11.1.1.7', 2, 136, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1795, 'Oracle Enterprise Manager', 2, 136, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1796, 'Exadata X6-2', 4, 298, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1797, 'Oracle Exadata', 4, 298, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1798, 'Oracle Exadata 11g', 4, 298, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1799, 'Oracle - Exadata X6-2', 4, 298, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1800, 'Oracle Forms', 2, 137, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1801, 'Hyperion Interactive Reporting', 2, 138, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1802, 'Oracle Hyperion Interactive Reporting version 9.3', 2, 138, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1803, 'Hyperion Planning Server', 2, 139, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1804, 'Hyperion Planning', 2, 139, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1805, 'Oracle Net Services', 2, 140, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1806, 'Oracle, Nets', 2, 140, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1807, 'Oracle Real Application Clusters (RAC)', 2, 141, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1808, 'Oracle RAC', 2, 141, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1809, 'Oracle Real Application Clusters', 2, 141, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1810, 'Oracle Retail Point-of-Service', 2, 142, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1811, 'ORPOS 13.3.3', 2, 142, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1812, 'ORPOS 13.3.5', 2, 142, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1813, 'ORPOS 13.3.4', 2, 142, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1814, 'Oracle Service Bus', 2, 143, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1815, 'Oracle Service Bus 11.1.1.7', 2, 143, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1816, 'Oracle Service Bus 12.2.1.2', 2, 143, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1817, 'OSB Servers', 2, 143, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1818, 'Oracle Service Bus 12.2.1.1', 2, 143, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1819, 'Oracle Smart View', 2, 144, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1820, 'Hyperian Smart View', 2, 144, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1821, 'Oracle SOA Suite', 2, 145, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1822, 'Oracle SOA Suite 12.2.1.3.0', 2, 145, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1823, 'Oracle SQL Developer', 2, 146, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1824, 'Oracle - Oracle Sql Developer 1.5', 2, 146, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1825, 'Oracle TimesTen In-Memory Database', 2, 147, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1826, 'Oracle TT', 2, 147, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1827, 'Oracle VM 3.3.3', 3, 567, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1828, 'Oracle VM', 3, 567, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1829, 'Oracle VM 3.3', 3, 567, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1830, 'OWB 10g', 2, 148, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1831, 'Oracle Warehouse Builder', 2, 148, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1832, 'Oracle Warehouse Builder (OWB)', 2, 148, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1833, 'WebCenter Content Server', 8, 276, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1834, 'Oracle WebCenter Content Server', 8, 276, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1835, 'IDOC SCRIPT', 7, 495, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1836, 'Orbix', 2, 149, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1837, 'IONA Orbix', 2, 149, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1838, 'OS/2', 6, 443, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1839, 'OWASP Enterprise Security API (ESAPI)', 12, 416, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1840, 'OWASP Enterprise Security API', 12, 416, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1841, 'Esapi', 12, 416, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1842, 'Pascal', 9, 345, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1843, 'Object Pascal', 9, 346, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1844, 'Clascal', 9, 346, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1845, 'Pentaho', 2, 150, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1846, 'peoplesoft', 2, 151, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1847, 'Oracle-HR-9.2', 2, 151, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1848, 'Perkin Elmer Informatics', 2, 152, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1849, 'Perkin Elmer Informatics (PKI)', 2, 152, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1850, 'Perl', 9, 347, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1851, 'Perl 5.8.4', 9, 347, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1852, 'ActivePerl', 9, 348, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1853, 'ActiveState Tool Corp. - ActivePerl 5.12', 9, 348, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1854, 'ActiveState Tool Corp. - ActivePerl 5.8', 9, 348, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1855, 'ORAPERL', 12, 417, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1856, 'REX', 9, 349, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1857, 'Pervasive', 2, 153, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1858, 'Pervasive PSQL', 2, 153, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1859, 'PHP 5.4', 9, 350, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1860, 'PHP', 9, 350, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1861, 'Pipeflo', 2, 154, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1862, 'PIPE-FLO', 2, 154, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1863, 'TCServer V6', 8, 277, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1864, 'Pivotal tc Server', 8, 277, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1865, 'IBM PKWARE PKZip 2', 2, 155, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1866, 'PKZIP', 2, 155, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1867, 'PL/I', 9, 351, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1868, 'PL1', 9, 351, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1869, 'pli', 9, 351, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1870, 'PL/1', 9, 351, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1871, 'PLQSL', 9, 352, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1872, 'Oracle - SQL', 9, 352, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1873, 'PL/SQL TEMPLATING LANGUAGE', 9, 352, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1874, 'PL/SQL', 9, 352, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1875, 'Oracle SQL', 9, 352, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1876, 'PLSQL;', 9, 352, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1877, 'Oracle PL/SQL', 9, 352, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1878, 'Oracle PLSQL', 9, 352, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1879, 'plsql', 9, 352, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1880, 'pl-sql', 9, 352, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1881, 'PL SQL', 9, 352, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1882, 'Planview', 2, 156, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1883, 'Projectplace', 2, 156, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1884, 'postgres', 2, 157, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1885, 'PostGreSQL', 2, 157, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1886, 'PostgreSQL 0', 2, 157, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1887, 'Postgress', 2, 157, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1888, 'PowerBuilder 6.5', 2, 158, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1889, 'Powerbuilder V12.5', 2, 158, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1890, 'Power Builder', 2, 158, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1891, 'Powerbuilder v11.5', 2, 158, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1892, 'Power Builder 6.5', 2, 158, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1893, 'Powerbuilder', 2, 158, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1894, 'Primavera', 2, 159, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1895, 'Primavera P6', 2, 159, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1896, 'PRO*C', 9, 353, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1897, 'PRO C', 9, 353, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1898, 'ProC', 9, 353, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1899, 'Pro*Cobol', 2, 160, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1900, 'ProjectWise', 2, 161, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1901, 'ProjectWise Oracle Server', 2, 161, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1902, 'Projectwise Server (XM)', 2, 162, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1903, 'ProjectWise JJ', 2, 162, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1904, 'Projectwise Server', 2, 162, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1905, 'Projectwise Setup for PEMEX', 2, 162, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1906, 'ProjectWise Web Server', 2, 162, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1907, 'ProjectWise Application Server', 2, 162, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1908, 'ProjectWise Cache Server', 2, 162, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1909, 'PVCS Version Manager', 2, 163, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1910, 'Serena PVCS Version Manager 8.4', 2, 163, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1911, 'Python Software Foundation - Python 2.6', 9, 354, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1912, 'Python - Python - Python 2', 9, 354, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1913, 'Python 2', 9, 354, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1914, 'Python', 9, 354, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1915, 'QlikView', 2, 164, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1916, 'R', 9, 355, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1917, 'RMQ', 2, 165, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1918, 'rabbit mq', 2, 165, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1919, 'RabbitMQ', 2, 165, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1920, 'ClearCase Build Utility 1', 2, 166, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1921, 'Rational ClearCase', 2, 166, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1922, 'Clearquest', 2, 167, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1923, 'Rational ClearQuest', 2, 167, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1924, 'redis', 2, 168, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1925, 'Remedy', 2, 169, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1926, 'Remedy ARS', 2, 169, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1927, 'Resin Web Server', 8, 278, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1928, 'Resin', 8, 278, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1929, 'rexx', 9, 356, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1930, 'Riak', 2, 170, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1931, 'RightFax client 10', 2, 171, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1932, 'RightFax', 2, 171, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1933, 'RPG', 9, 357, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1934, 'Ruby', 9, 358, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1935, 'Ruby on Rails', 10, 508, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1936, 'Rumba', 2, 172, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1937, 'Salesforce Object Query Language (SOQL)', 9, 359, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1938, 'SOQL', 9, 359, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1939, 'Salesforce Object Query Language', 9, 359, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1940, 'SAP Business Objects', 2, 173, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1941, 'Business Objects 12', 2, 173, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1942, 'BusinessObjects 4.2 SP7', 2, 173, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1943, 'SAP BI 4.2 Sp5', 2, 173, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1944, 'SAP BusinessObjects BI server', 2, 173, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1945, 'SAP ERP', 2, 174, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1946, 'SAP EHP 7', 5, 476, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1947, 'SAP EHP', 5, 476, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1948, 'SAP - SAP Kernel 7.1', 5, 477, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1949, 'SAP Kernel', 5, 477, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1950, 'SAP HANA ON SUSEOracle 11g on Linux', 2, 175, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1951, 'HANA', 2, 175, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1952, 'SAP HANA DB', 2, 175, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1953, 'SAP - HANA 2.0', 2, 175, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1954, 'SAP MaxDB', 2, 176, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1955, 'NetWeaver', 8, 279, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1956, 'SAP NetWeaver App Server', 8, 279, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1957, 'ABAP', 7, 496, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1958, 'SAP NetWeaver Business Warehouse', 2, 177, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1959, 'SAP BW 7.5 SP10 - BW has 10 App servers for load balancing', 2, 177, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1960, 'SAP BW DB server has one instance and 13 servers for load balancing', 2, 177, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1961, 'SAP BW 7.5 SP10', 2, 177, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1962, 'SAP - SAP SQL Anywhere Network Database Server 12', 2, 178, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1963, 'SAP SQL Anywhere', 2, 178, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1964, 'SAP - SAP SQL Anywhere Network Database Server 11', 2, 178, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1965, 'SAP - SAP SQL Anywhere Personal Database Server 16', 2, 178, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1966, 'SAP Web Dynpro', 2, 179, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1967, 'Web-Dynpro', 2, 179, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1968, 'SAS', 9, 360, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1969, 'SAS 9.2', 9, 360, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1970, 'SCSS', 9, 361, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1971, 'Sass', 9, 361, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1972, 'Scala', 9, 362, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1973, 'Scalla', 9, 362, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1974, 'Sentry', 2, 180, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1975, 'Sentry 1.13', 2, 180, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1976, 'Sharepoints 2010', 2, 181, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1977, 'Microsoft SPS 2010', 2, 181, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1978, 'SharePoint', 2, 181, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1979, 'SharePoint 2013', 2, 181, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1980, 'Sharepoint 2007', 2, 181, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1981, 'Sharepoint 2010', 2, 181, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1982, 'SQL Server SP2013 Database Server', 2, 181, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1983, 'Sharepoint 2016', 2, 181, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1984, 'Siebel IP 2015', 2, 182, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1985, 'Siebel 7.8.2.16', 2, 182, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1986, 'Siebel', 2, 182, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1987, 'Siebel CRM', 2, 182, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1988, 'Smalltalk', 9, 363, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1989, 'SNA Manager', 2, 183, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1990, 'SNA Manager 8.0.3608.0', 2, 183, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1991, 'Techsmith Corporation - SnagIt 8', 2, 184, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1992, 'SnagIt', 2, 184, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1993, 'Solid development server', 2, 185, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1994, 'solidDB', 2, 185, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1995, 'SonarSource - SonarSource SonarQube Server 5.1', 2, 186, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1996, 'SonarQube', 2, 186, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1997, 'SpaceMonger', 2, 187, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1998, 'Sixty-Five Software - SpaceMonger 1.4', 2, 187, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1999, 'Spark', 8, 280, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2000, 'Splunk', 2, 188, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2001, 'SQLPlus', 5, 478, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2002, 'SQL Plus', 5, 478, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2003, 'SQL*Plus', 5, 478, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2004, 'SQLIO 1.0', 2, 189, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2005, 'SQLIO', 2, 189, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2006, 'Netscape Enterprise Server', 8, 281, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2007, 'Sun ONE Web Server', 8, 281, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2008, 'Sun Java Web Server 7.0 Update 2', 8, 281, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2009, 'iPlanet Web Server', 8, 281, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2010, 'Oracle iPlanet Web Server', 8, 281, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2011, 'Sun Java Web Server', 8, 281, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2012, 'SunOne', 8, 281, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2013, 'Swift', 9, 364, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2014, 'Sybase SQL Server', 2, 190, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2015, 'Sybase', 2, 190, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2016, 'SYBASE ADAPTIVE SERVER ENTERPRISE DATABASE SERVER 12.5"', 2, 190, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2017, 'SYBASE ADAPTIVE SERVER ENTERPRISE DATABASE SERVER 12', 2, 190, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2018, 'SAP - Sybase Adaptive Server Enterprise 12.5', 2, 190, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2019, 'SAP - Sybase Adaptive Server Enterprise 16', 2, 190, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2020, 'SAP - Sybase Adaptive Server Enterprise 12', 2, 190, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2021, 'Sybase Central', 5, 479, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2022, 'SAP - Sybase Central 4.3', 5, 479, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2023, 'SAP - Sybase Dsedit 12.5', 5, 480, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2024, 'Sybase Dsedit', 5, 480, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2025, 'Sysncsort', 2, 191, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2026, 'syncsort', 2, 191, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2027, 'Sysinternals LLC - AccessEnum 1 1', 2, 194, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2028, 'AccessEnum', 2, 194, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2029, 'Sysinternals LLC - ClockRes 2', 2, 195, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2030, 'ClockRes', 2, 195, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2031, 'Sysinternals LLC - Coreinfo 3.21', 2, 196, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2032, 'Coreinfo', 2, 196, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2033, 'Sysinternals LLC - DiskExt 1.1', 2, 197, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2034, 'DiskExt', 2, 197, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2035, 'Sysinternals LLC - DiskMon 2.01', 2, 198, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2036, 'DiskMon', 2, 198, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2037, 'Hex2dec', 2, 199, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2038, 'Sysinternals LLC - Hex2dec 1', 2, 199, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2039, 'Sysinternals LLC - Junction 1.6', 2, 200, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2040, 'Junction', 2, 200, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2041, 'Sysinternals LLC - LDMDump 1.02', 2, 201, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2042, 'LDMDump', 2, 201, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2043, 'Sysinternals LLC - LoadOrder 1', 2, 202, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2044, 'LoadOrder', 2, 202, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2045, 'PipeList', 2, 203, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2046, 'Sysinternals LLC - PipeList 1.01', 2, 203, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2047, 'Process Explorer', 2, 204, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2048, 'Sysinternals LLC - Process Explorer 16.5', 2, 204, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2049, 'Sysinternals LLC - PsKill 1.15', 2, 205, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2050, 'PsKill', 2, 205, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2051, 'Sysinternals LLC - PsPasswd 1.23', 2, 206, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2052, 'PsPasswd', 2, 206, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2053, 'SDelete', 2, 207, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2054, 'Sysinternals LLC - SDelete 1.61', 2, 207, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2055, 'Sysinternals LLC - ShareEnum 1.6', 2, 208, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2056, 'ShareEnum', 2, 208, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2057, 'Sysinternals LLC - Sync 2.2', 2, 209, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2058, 'Sync', 2, 209, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2059, 'Sysinternals LLC - Sysinternals TCPView 3.5', 2, 210, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2060, 'TCPView', 2, 210, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2061, 'Sysinternals LLC - VMMap 3.11', 2, 211, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2062, 'VMMap', 2, 211, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2063, 'Sysinternals LLC - Whois 1.11', 2, 212, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2064, 'Whois', 2, 212, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2065, 'Tableau', 2, 213, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2066, 'TCL', 9, 365, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2067, 'TCPLink Enterprise Server 6', 2, 214, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2068, '(Canon IT Solutions) TCPLink Enterprise Server 6', 2, 214, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2069, 'TERADATA', 2, 215, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2070, 'Teradata hors Radia', 2, 215, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2071, 'Teradata QS Server', 2, 216, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2072, 'TERADATA QUERY SCHEDULER SERVER VERSION 15', 2, 216, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2073, 'TIBCO Business Works', 2, 217, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2074, 'Tibco BW', 2, 217, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2075, 'BusinessWorks', 2, 217, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2076, 'TIBCO Business Works (BW)', 2, 217, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2077, 'Integration Manager', 5, 481, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2078, 'Tibco-IM', 5, 481, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2079, 'Tibco Integration Manager', 5, 481, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2080, 'Tibco InConcert', 2, 218, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2081, 'TIBCO Rendezvous (RV)', 2, 219, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2082, 'TIBCO Rendezvous', 2, 219, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2083, 'Tivoli Access Manager (TAM)', 2, 220, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2084, 'Tivoli Access Manager 6.1', 2, 220, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2085, 'TortoiseCVS', 2, 221, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2086, 'TortoiseSVN', 2, 222, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2087, 'TortoiseSVN 1.8', 2, 222, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2088, 'TSQL', 9, 366, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2089, 'Transact-SQL', 9, 366, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2090, 'Trasact SQL', 9, 366, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2091, 'T-SQL', 9, 366, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2092, 'Transact SQL', 9, 366, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2093, 'TSO/ISPF', 2, 223, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2094, 'ispf', 2, 223, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2095, 'TSO', 2, 223, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2096, 'TSO ISPF', 2, 223, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2097, 'TWS zCentric 8.4', 2, 224, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2098, 'TWS Zcentric', 2, 224, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2099, 'TypeScript', 9, 367, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2100, 'UltiDev Web Server Pro (UWS)', 8, 282, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2101, 'UltiDev Web Server Pro', 8, 282, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2102, 'UltiDev Web Server Pro 2', 8, 282, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2103, 'UltiDev Cassini Pro', 8, 282, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2104, 'Uniface', 2, 225, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2105, 'Unix', 6, 444, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2106, 'IBM AIX 6.1 6100 64 Bit', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2107, 'AIX 7.1 7100-04-06-1806', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2108, 'AIX-6', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2109, 'AIX Enterprise', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2110, 'IBM AIX', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2111, 'AIX7.1.0.0', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2112, 'AIX 7100-05-03-1838', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2113, 'IBM - AIX Standard Edition 7.1', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2114, 'IBM AIX 5.3, SERVICE PACK TL12 SP08', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2115, 'AIX7.2.0.0', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2116, 'AIX 6.1.0.0.09', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2117, 'AIX 7.2.0.0', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2118, 'AIX 5.3 5300-12-07-1241', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2119, 'AIX 6.1.9.101', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2120, 'AIX 5.3.0.0', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2121, 'AIX 7.1', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2122, 'AIX 7.1 7100-05-03-1846', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2123, 'AIX 5.3.0.0.08', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2124, 'AIX 6.1 6100-09-09-1717', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2125, 'AIX 7.1 7100-04-01-1543', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2126, 'AIX 6100-09-09-1717', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2127, 'IBM AIX 6.1 Enterprise 64 Bit', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2128, 'AIX 7.1.0.0', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2129, 'IBM AIX 7.1 x', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2130, 'AIX 7.1 7100-05-03-1838', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2131, 'AIX7.2', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2132, 'AIX 6.1 6100-09-12-1838', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2133, 'AIX (Linux)', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2134, 'IBM - AIX Express Edition 7.1', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2135, 'AIX 5.3.0.0.12', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2136, 'AIX', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2137, 'IBM AIX 6.1 6100 32 Bit', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2138, 'AIX: 7.2', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2139, 'AIX 6.1', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2140, 'AIX 5.3', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2141, 'IBM AIX 5.3 5300 64 Bit', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2142, 'AIX 5.2.0.0.09', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2143, 'AIX 5.0', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2144, 'AIX 7100-05-03-1846', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2145, 'AIX 7.2 7200-03-03-1914', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2146, 'AIX6.1.0.0', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2147, 'IBM AIX 7.1 7100 64 Bit', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2148, 'AIX 7.1 7100-05-04-1914', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2149, 'IBM AIX 5.x', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2150, 'AIX 6.1.0.0', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2151, 'AIX 7.1.5.16', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2152, 'AIX 6.1.0.0 UNIX LPAR', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2153, 'AIX 5300-12-07-1241', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2154, 'IBM AIX 5.3, SERVICE PACK TL12 SP01', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2155, 'IBM - AIX 6.1.0.0', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2156, 'IBM AIX 6.1x', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2157, 'AIX7.1', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2158, 'AIX 7100-04-05-1720', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2159, 'AIX Express', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2160, 'IBM AIX 64 Bit', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2161, 'AIX Standard', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2162, 'AIX 6.1.8.16', 6, 445, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2163, 'FreeBSD (64-bit)', 6, 447, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2164, 'FreeBSD', 6, 447, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2165, 'FreeBSD 8.X', 6, 447, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2166, 'FreeBSD 8.4', 6, 447, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2167, 'Sun Solaris 10 OS', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2168, 'Solaris 11.2 SPARC', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2169, 'Solaris UNIX', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2170, 'Unix Servers (Solaris', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2171, 'Oracle Solaris 11.3 SPARC', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2172, 'SUN 5.10', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2173, 'SOLARIS 10', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2174, 'Sun Solaris', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2175, 'Solaris 5.10 (Generic_150400-61)', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2176, 'Solaris 5.10 (Generic_150400-62)', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2177, 'Solaris (Sun OS 5.9)', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2178, 'Solaris 5.10 (Generic_150400-55)', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2179, 'SUNOS 5.10', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2180, 'Sun Solaris - 5.10', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2181, 'Solaris 10 (SunOS 5.10)', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2182, 'Oracle Solaris', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2183, 'Unix - SunOS - 5.10 Generic_147147-26', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2184, 'Solaris 1 (SPARC)', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2185, 'SUN OS', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2186, 'solaris', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2187, 'SunSolaris 10.0', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2188, 'SOLARIS 9', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2189, 'SunOS', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2190, 'SUN 5.9', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2191, 'SOLARIS 8', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2192, 'SunOS 5.1', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2193, 'SunOS 5.11', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2194, 'Oracle Solaris 10', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2195, 'Sun Solaris 10', 6, 448, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2196, 'HPUX 11i V1', 6, 449, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2197, 'HP-UX 11.31', 6, 449, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2198, 'HPUX 11i V3', 6, 449, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2199, 'HP/UXB.11.23', 6, 449, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2200, 'HPUX B.11.31', 6, 449, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2201, 'HPUX 11', 6, 449, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2202, 'hp-ux', 6, 449, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2203, 'HPUX 11.23', 6, 449, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2204, 'HP-UX B.11.31', 6, 449, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2205, 'HPUX 11.31', 6, 449, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2206, 'HP-UX 11.23', 6, 449, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2207, 'HP-UX B.11.00', 6, 449, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2208, 'HP-UX B.11.23', 6, 449, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2209, 'HP-UX B.11.11', 6, 449, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2210, 'HP 10.20', 6, 449, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2211, 'HP Unix', 6, 449, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2212, 'HP UX', 6, 449, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2213, 'HP-UX 11.11', 6, 449, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2214, 'HPUX', 6, 449, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2215, 'HPUX-11i V3', 6, 449, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2216, 'HP-UX B.10.20', 6, 449, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2217, 'HP/UXB.11.31', 6, 449, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2218, 'HP-UX 10.20', 6, 449, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2219, 'Visual Basic .Net', 9, 368, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2220, 'VB.NET', 9, 368, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2221, 'VB Script', 9, 369, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2222, 'VBscript', 9, 369, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2223, 'NetManage-ViewNow', 2, 226, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2224, 'ViewNow X Server', 2, 226, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2225, 'Virtual I/O Server', 2, 227, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2226, 'VIO 2.2.0.10', 2, 227, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2227, 'VIOS', 2, 227, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2228, 'visibroker', 2, 228, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2229, 'VB6', 9, 370, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2230, 'VB 6.0', 9, 370, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2231, 'visualbasic', 9, 370, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2232, 'VB', 9, 370, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2233, 'VISUAL BASIC 6', 9, 370, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2234, 'Visual Basic', 9, 370, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2235, 'Visual Basic 6.0', 9, 370, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2236, 'Visusal Basic', 9, 370, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2237, 'Visual Basic for Applications (VBA)', 9, 371, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2238, 'Visual Basic for Applications', 9, 371, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2239, 'VBA', 9, 371, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2240, 'Access VB', 9, 371, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2241, 'Visual FoxPro', 9, 372, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2242, 'vfoxpro', 9, 372, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2243, 'VisualForce', 10, 509, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2244, 'ESXi', 3, 568, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2245, 'ESXi 5.1', 3, 568, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2246, 'VM ESXi 5.1', 3, 568, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2247, 'VM ESXi 6.0', 3, 568, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2248, 'VM ESXi 5.5', 3, 568, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2249, 'VMWARE ESXI SERVER 5.5', 3, 568, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2250, 'VM ESXi 5.0.0', 3, 568, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2251, 'VMware ESXi 5.5.0', 3, 568, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2252, 'VM ESXi 6.5', 3, 568, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2253, 'VMWare ESX', 3, 568, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2254, 'VM ESXi 5.0', 3, 568, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2255, 'VMWare ESXi', 3, 568, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2256, 'VMWARE ESXI SERVER 5.1', 3, 568, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2257, 'VMware Appliance', 3, 569, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2258, 'VMware Server', 3, 569, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2259, 'VMware Solution Exchange Marketplace (VSX)', 2, 229, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2260, 'VSX', 2, 229, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2261, 'VMware Solution Exchange Marketplace', 2, 229, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2262, 'VMware - VMware Tools 10.2', 2, 230, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2263, 'VMware Tools', 2, 230, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2264, 'VMware - VMware vCenter Server 5.5', 2, 231, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2265, 'VMware vCenter', 2, 231, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2266, 'VoiceXML', 9, 373, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2267, 'VXML', 9, 373, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2268, 'WebFOCUS', 2, 232, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2269, 'Web Focus', 2, 232, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2270, 'FOCEXEC', 2, 232, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2271, 'Web Logic Integration', 2, 233, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2272, 'WLI 8', 2, 233, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2273, 'WebLogic Integration', 2, 233, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2274, 'Web Logic Integration 9.2.0.0', 2, 233, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2275, 'webMethods Integration Server', 8, 283, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2276, 'WebMethods', 8, 283, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2277, 'Webmethods 9.7', 8, 283, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2278, 'WAS 7', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2279, 'websphere 8.0.0.4', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2280, 'IBM WEBSPHERE APPLICATION SERVER VERSION 6.1.0', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2281, 'WEBSPHERE APPLICATION SERVER - BASE VERSION 8.5.5', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2282, 'WEBSPHERE APPLICATION SERVER 8', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2283, 'Websphere Application Server 6.x', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2284, 'websphere', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2285, 'WebSphere Application Server 9.0', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2286, 'IBM WebSphere Application Server Network Deployment, 8.0.0.5', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2287, 'WebSphere Application Server (WAS)', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2288, 'IBM WebSphere Application Server Network Deployment 7', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2289, 'WebSphere Application Server 8.5.1', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2290, 'WAS ND8.5', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2291, 'WAS7', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2292, 'WebSphere Application Server 5.1', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2293, 'WebSphere Application Server 8.5.5.6', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2294, 'WebSphere Application Server 5.0', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2295, 'WebSphere Application Server 8.0', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2296, 'IBM WebSphere 8.5', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2297, 'Websphere 9.0', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2298, 'WebSphere 7.0.0.27', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2299, 'IBM - WebSphere Application Server - Base 8.5', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2300, 'WebSphere Application Server 8.5', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2301, 'WEBSPHERE APPLICATION SERVER 8.5.5', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2302, 'WebSphere Application Server 8.5 (WAS)', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2303, 'Websphere AS (JVM)', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2304, 'WebSphere App Server', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2305, 'WebSphere Application Server 6.1 (WAS)', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2306, 'WEBSPHERE APPLICATION SERVER', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2307, 'WAS 6.1', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2308, 'WebSphere 8.0.0.4', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2309, 'WEBSPHERE APPLICATION SERVER 6.1', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2310, 'IBM WebSphere', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2311, 'Websphere Application Server 8.5.5.11', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2312, 'WebSphere Application Server 8.5.5.8', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2313, 'IBM WebSphere Application Server 8.5', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2314, 'Websphere (WAS7)', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2315, 'IBM WebSphere Application', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2316, 'WAS 6.x', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2317, 'WAS', 8, 284, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2318, 'IBM OpenStack Liberty', 8, 285, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2319, 'IBM WebSphere Liberty', 8, 285, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2320, 'Open Liberty', 8, 285, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2321, 'IBM Open Liberty', 8, 285, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2322, 'WebSphere Liberty', 8, 285, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2323, 'IBM WebSphere Application Server Liberty', 8, 285, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2324, 'IBM WAS Liberty', 8, 285, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2325, 'WebSphere Application Server Liberty', 8, 285, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2326, 'WAS Liberty', 8, 285, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2327, 'IBM Cloud WebSphere Liberty', 8, 285, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2328, 'OpenStack Liberty', 8, 285, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2329, 'WebSphere Commerce Suite (WCS)', 2, 234, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2330, 'WebSphere Commerce', 2, 234, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2331, 'WMB 6.1', 2, 235, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2332, 'WebSphere Message Broker v6.0', 2, 235, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2333, 'WebSphere Message Broker', 2, 235, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2334, 'WebSphere Portal Version 6.1', 8, 286, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2335, 'WebSphere Portal Enable Limited Use 6.1', 8, 286, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2336, 'WebSphere Portal Server 6.0', 8, 286, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2337, 'WebSphere Portal Enable 6.1', 8, 286, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2338, 'WebSphere Portal Extend 6.1', 8, 286, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2339, 'WebSphere Portal Server', 8, 286, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2340, 'WebSphere Portal Limited Use 6.1', 8, 286, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2341, 'WebSphere Portal Extend Limited Use 6.1', 8, 286, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2342, 'Websphere Process Server', 8, 287, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2343, 'Websphere Process Server 8.5', 8, 288, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2344, 'Wherescape Red', 2, 236, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2345, 'Windchill 11.1', 2, 237, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2346, 'Windchill', 2, 237, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2347, 'windows nt', 6, 450, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2348, 'Windows', 6, 450, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2349, 'Windows OS: Windows NT', 6, 450, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2350, 'Windows NT 6.1 Service Pack 1', 6, 450, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2351, 'Windows NT 6.1', 6, 450, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2352, 'Windows NT 4.0', 6, 450, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2353, 'Microsoft Windows NT 6.1', 6, 450, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2354, 'Window', 6, 450, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2355, 'Microsoft Windows NT 4.0', 6, 450, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2356, 'WINDOWS6.1.7601', 6, 450, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2357, 'Windows NT 6.1Windows NT 6.1', 6, 450, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2358, 'Windows Indexing Service', 2, 238, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2359, 'IIS Index Search Server', 2, 238, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2360, 'WTS', 2, 239, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2361, 'Windows Terminal Server', 2, 239, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2362, 'Windows Terminal Server (WTS)', 2, 239, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2363, 'Windows 7 Standard', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2364, 'WINDOWS 10 SERVER STANDARD EDITION X64', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2365, 'Microsoft Windows 7 (64-bit)', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2366, 'Microsoft Windows XP Professional (32-bit)', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2367, 'Windows 7 Professional x64', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2368, 'Microsoft Microsoft Windows Entreprise', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2369, 'Microsoft Windows 2000', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2370, 'Microsoft Windows 10', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2371, 'MS Microsoft Windows 7', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2372, 'Microsoft Windows 7 Professional', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2373, 'Microsoft Microsoft Windows 7 Enterprise', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2374, 'Microsoft Windows 10 Enterprise', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2375, 'Win Desktop', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2376, 'Windows 10 Pro', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2377, 'Windows 10', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2378, 'Windows 7 Ultimate', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2379, 'Microsoft Windows 8 (64-bit)', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2380, 'Microsoft Windows XP', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2381, 'Windows 10 Enterprise', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2382, 'Windows XP', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2383, 'Windows 10 Professional', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2384, 'Windows 7', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2385, 'Microsoft Windows 10 (64-bit)', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2386, 'Win 7', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2387, 'windowsxp', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2388, 'Microsoft Windows Unknown', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2389, 'Windows 7 Enterprise', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2390, 'Windows XP Professional', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2391, 'Windows 7 Professional', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2392, 'Window XP', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2393, 'Microsoft Windows 7 Enterprise', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2394, 'Microsoft Windows 7 - SOE', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2395, 'Windows 7 Enterprise Edition', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2396, 'Windows 8', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2397, 'Microsoft Windows 7', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2398, 'Microsoft Windows 7 (32-bit)', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2399, 'Windows Embedded Standard 7', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2400, 'Win10', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2401, 'Windows 2003', 6, 451, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2402, 'Windows Server 2012 R9', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2403, 'Windows 2003 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2404, 'Windows 2008 Enterprise R2 x64', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2405, 'Windows Server 2003 SE x64', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2406, 'Microsoft Windows Server 2008 R2 Standard Service Pack 1, 64-bit version', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2407, 'WINDOWS SERVER 2004', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2408, 'WINDOWS 2008R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2409, 'Microsoft Windows Server 2008 Standard Editio', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2410, 'MICROSOFT WINDOWS NT 2003', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2411, 'Windows Server 2008 R2 Enterprise', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2412, 'Windows Server 2012 R3', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2413, 'WINDOWS 2003 R2 SERVER STANDARD EDITION', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2414, 'Windows Server 28 - i386', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2415, 'Microsoft Microsoft Windows Server 2016 Datacenter', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2416, 'Microsoft(R) Windows(R) Server 2003, Enterprise Edition Service Pack 2, 32-bit version', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2417, 'Windows Server 2008 Enterprise x64 R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2418, 'Windows Server 2016', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2419, 'Microsoft - Windows server 2012 - R2 - Service Pack 1', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2420, 'Microsoft(R) Windows(R) Server 2003, Standard Edition R2 Service Pack 2, 32-bit version', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2421, 'Microsoft Windows Server 2008 R2 Standard x64 Edition', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2422, 'WINDOWS6.1.7601 Server 2008 R2 Ent x64 SP 1', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2423, 'Windows Server 2012 R2 Standard (Core)', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2424, 'WINDOWS 2008 R2 SERVER STANDARD EDITION X64', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2425, 'Windows Server 2012 R26', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2426, 'Microsoft(R) Windows(R) Server 2003 Standard x64 Edition R2 Service Pack 2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2427, 'Windows 2008 Enterprise 32-bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2428, 'Microsoft Windows Server 2003 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2429, 'Windows Server 2012 R2 Std', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2430, 'Windows 2003 R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2431, 'Windows 2008 R2 Enterprise 64 Bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2432, 'Windows Server 2012 R2 Standard 64 bit Edition', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2433, 'Microsoft Windows Server 2003 Enterprise Edition', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2434, 'Microsoft Windows Server 2000 Advanced', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2435, 'Microsoft Windows Server 2012 R2 St', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2436, 'Windows 2008 R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2437, 'Windows 2012 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2438, 'Windows Server 2008 R2 (64 bits)', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2439, 'Windows X-Server', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2440, 'Windows 2008 R2 Standard 6.1.7601 Service Pack 1', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2441, 'Windows Server 2003 Standard (32-bit)', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2442, 'Windows 2008 Standard x64', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2443, 'Microsoft Windows Server 2008 R2 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2444, 'Microsoft Windows Storage Server 2012 R2 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2445, 'Windows Server 2003 (64-bit)', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2446, 'Windows 2012 R2 Standard 64-Bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2447, 'Windows Server 212 R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2448, 'Windows Server 2012 (64-bit)', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2449, 'Windows Server 2012 Standard R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2450, 'Windows Server 2017', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2451, 'Windows Server 2000 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2452, 'Windows Server 2003 Enterprise R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2453, 'Windows Server 2003 SP2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2454, 'Microsoft Windows 2000 Server', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2455, 'w2k12', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2456, 'WINDOWS 2013', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2457, 'WINDOWS 2016 SE 64 BIT', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2458, 'Windows Server 2008 R2 64-bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2459, 'Microsoft - Windows 2012', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2460, 'Microsoft Windows Server 2016', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2461, 'Microsoft Windows Server 2000 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2462, 'Windows Server 2012 R12', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2463, 'Window Server 2003', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2464, 'WINDOWS SERVER 2008 ENTERPRISE X64 6.0', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2465, 'Windows server 2008R2 Enterprise', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2466, 'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition R2 Service Pack 2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2467, 'MICROSOFT WINDOWS 2008 TPM', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2468, 'Microsoft Windows Server 2012 Standardx64 Edition', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2469, 'MICROSOFT WINDOWS STD 2008', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2470, 'Microsoft(R) Windows(R) Server 2003, Standard Edition', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2471, 'Windows Server 2012 R23', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2472, 'WINDOWS 6.3.9600 Server 2012 R2 Std x64', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2473, 'Windows 2008 R2 Standard 64 Bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2474, 'Windows Server 2008 SP1', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2475, 'Windows server 2008 R2 standard Service Pack1', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2476, 'MICROSOFT WINDOWS STD 2008 TPM', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2477, 'Microsoft Windows Server 2008 Standard Edition', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2478, 'Windows 2012 64 Bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2479, 'MICROSOFT WINDOWS NT 2003 ENT', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2480, 'Windows Server 2012 R2 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2481, 'Windows Server 2016 Standard 64 bit Edition', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2482, 'MICROSOFT WINDOWS 2012', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2483, 'Windows Server 2003 Standard R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2484, 'Windows 2003 Standard5.2.3790', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2485, 'Windows Server 2012 R4', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2486, 'Windows Server 2012 R7', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2487, 'Windows Server 2012 R17', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2488, 'Windows 2012 R', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2489, 'Windows Server 2012 R8', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2490, 'WINDOWS SERVER 2012 R2 DATACENTER', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2491, 'Microsoft Windows Server 2003 R2 Enterprise', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2492, 'Windows 2008 Enterprise 32 Bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2493, 'MICROSOFT WINDOWS 2008 ENT', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2494, 'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition Service Pack 2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2495, 'Windows 2012 R2 Standard 6.3.9600', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2496, 'Windows 2000 Server', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2497, 'Windows Server 2012 R20', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2498, 'Windows Server 2000', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2499, 'Windows Server 2003 R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2500, 'Windows Server 2008 Service Pack 2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2501, 'Windows 2016 Datacenter', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2502, 'Microsoft(R) Windows(R) Server 2003, Standard Edition Service Pack 2, 32-bit version', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2503, 'Microsoft Windows Server 2016 Datacenter', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2504, 'WINDOWS SERVER 2008 R2 STANDARD 6.1', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2505, 'Microsoft - Windows Server 2008 R2 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2506, 'Microsoft Windows Server 2012 (64-bit) - Server 2012 R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2507, 'Microsoft Windows Server 2016 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2508, 'Windows Server 2008 R2 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2509, 'Windows 2016 Datacenter10.0.14393', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2510, 'Windows Server 2008 64-Bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2511, 'windows server 2008 r2 ent', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2512, 'Windows Server 212', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2513, 'windows6.3.9600', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2514, 'Windows 2012 R2 Standard 64 Bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2515, 'Microsoft Windows Server 2000 R2 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2516, 'windows6.3.9600 server 2012 r2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2517, 'Windows 2008 Enterprise', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2518, 'Microsoft Microsoft Windows Server 2016 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2519, 'Windows 2003 Server Service Pack 2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2520, 'Windows Server 2012 R16', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2521, 'Window server 2008 R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2522, 'Microsoft Windows Server 2003 Enterprise Edition Version 5.2.3790 [Build 3790]', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2523, 'Windows 2003 Server R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2524, 'Windows Server 2012 R21', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2525, 'Microsoft Windows Server 2003 R2 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2526, 'Windows Server 2012 R6', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2527, 'Windows Server 2012 R27', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2528, 'Windows 2008 Standard without Hyper-V6.0.6003', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2529, 'WINDOWS SERVER 2012 R2 - Server 2012 R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2530, 'Windows 2008 R2 Server', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2531, 'Microsoft Windows Server 2003 Standard (32-bit)', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2532, 'Windows 2012 R2 Datacenter', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2533, 'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition R2 Service Pack 2, 64-bit version', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2534, 'Windows Server 2018', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2535, 'Windows 2008 Server', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2536, 'WINDOWS6.3.9600 Server 2012 R2 DC x64', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2537, 'Windows 2008 Standard 64-bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2538, 'WINDOWS 6.1.7601 Server 2008 R2 Ent x64 SP 1', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2539, 'WINDOWS SERVER 2012 R2 DATACENTER 6.3', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2540, 'Microsoft Windows Server 2012', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2541, 'Windows Server 2012', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2542, 'Windows server Standard SP2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2543, 'WINDOWS 2003 R2 SERVER ENTERPRISE EDITION', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2544, 'Windows 2000', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2545, 'W2K8R2 Standard 64 BIT', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2546, 'Windows Server 2008 R2 Datacenter', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2547, 'Windows 2008 Standard6.0.6003', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2548, 'Windows2008 R2 Enterprise 64bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2549, 'WINDOWS 2012 R2 SERVER STANDARD EDITION X64', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2550, 'Windows Server 2000 Professional', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2551, 'Microsoft Windows Server 2008 (64-bit)', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2552, 'WINDOWS SERVER 2003 R2 ENTERPRISE 5.2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2553, 'Win2008R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2554, 'Microsoft Windows Server 2003 Web Edition (32-bit)', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2555, 'Windows 2008 Standard 64 Bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2556, 'Microsoft Windows Server 2008 R2 Enterprise Version 6.1.7601 [Build 7601]', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2557, 'Windows Server 2003 Appliance', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2558, 'Windows server 2012 R2 Standared', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2559, 'Windows 2008 ENT R2 (64 bits)', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2560, 'Windows Server 2003 (32-bit)', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2561, 'Microsoft Windows Server 2003 Enterprise', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2562, 'WIN2008R2 6.1.7601', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2563, 'Microsoft Windows Server 2012 R2 Datacenter', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2564, 'microsoft windows std 2012 tpm', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2565, 'Windows Server 2012 R2 Standardx64', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2566, 'microsoft windows 2008', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2567, 'Microsoft Windows Server 2016 (64-bit)', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2568, 'Windows 2008 Standard 32 Bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2569, 'Microsoft Windows 2008 R2 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2570, 'Microsoft Windows 2000 Server Service Pack 4', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2571, 'Microsoft Windows Server 2003 Enterprise x64 Edition Version 5.2.3790 [Build 3790]', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2572, 'Microsoft Windows Storage Server 2012 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2573, 'Microsoft Windows Server 2003 Standard x64', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2574, 'Window2008 R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2575, 'Microsoft Windows NT Server Version 4.0.1381 [Build 1381]', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2576, 'Windows Server 2003 Ent', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2577, 'Windows Server 2000 Standard R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2578, 'Windows 2008 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2579, 'Microsoft Windows Server 2008 R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2580, 'Microsoft Windows Server 2003 Standard Edition Version 5.2.3790 [Build 3790]', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2581, 'Windows Server 2003;', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2582, 'WS03', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2583, 'WINDOWS 6.0.6002 Server 2008 Ent x64 SP 2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2584, 'Windows 2008 Enterprise x64', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2585, 'Microsoft Windows Server 2003', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2586, 'Windows Server 2008 Enterprise', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2587, 'Windows Server 2008 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2588, 'windows server 2008 r2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2589, 'Windows 2008 R2 Enterprise', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2590, 'Windows Server 2003 Std 32-bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2591, 'Windows 2008 R2 Standard 64bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2592, 'Microsoft Windows Server 2008 (32-bit)', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2593, 'MS WINDOWS SERVER 08', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2594, 'Microsoft Windows 2003 R2 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2595, 'Windows Server 2012 R25', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2596, 'MICROSOFT WINDOWS NT 2003 TPM', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2597, 'Win Server 2008', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2598, 'Windows 2003 R2 Standard 64 Bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2599, 'WINDOWS 5.2.3790 Server 2003 Ent SP 2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2600, 'WIN2014', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2601, 'Windows Server 2012 R19', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2602, 'Microsoft Windows Server 2012 R2 Standard Version 6.3.9600 [Build 9600]', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2603, 'Windows Server 2008 R2 Ent 64-bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2604, 'Win 2012 R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2605, 'Microsoft Windows Server 2008 Enterprise', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2606, 'WINDOWS 6.3.9600 Server 2012 R2 DC x64', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2607, 'Windows Server 2012 R24', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2608, 'Win Server', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2609, 'Windows 2008 Standard R2 x64', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2610, 'Windows Server 2008 R2 Enterprise x64', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2611, 'Windows server 2008 Dual processor Intel Xeon x5660 @2.80 GHz 6196 MB memory installed', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2612, 'Windows2012', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2613, 'Windows 2008 R2 Standard6.1.7601', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2614, 'Windows 2016', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2615, 'Windows 2008 R2 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2616, 'Windows Server 2008 R2 64Bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2617, 'Windows Server 2012 R14', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2618, 'Windows Storage Server 2008 Standard R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2619, 'Windows Server 2008 Standard R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2620, 'Microsoft Windows Server 2003 (32-bit)', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2621, 'Windows OS 2008 Server R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2622, 'Microsoft Microsoft Windows Server 2008 R2 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2623, 'Windows Server 28 R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2624, 'WINDOWS 2003 SERVER ENTERPRISE EDITION', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2625, 'Microsoft Windows Server 2003 (64-bit)', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2626, 'Windows Server 2008 (32-bit)', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2627, 'Windows Server 2003 Std 64-bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2628, 'Windows 2012 R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2629, 'Wintel', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2630, 'Windows Server 2003', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2631, 'Windows Server 2003 Enterprise', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2632, 'Microsoft Windows Server 2012 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2633, 'Windows 2000 Standard Server SP4', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2634, 'WINDOWS6.3.9600 Server 2012 R2 Std x64', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2635, 'Microsoft Windows 2000 Server Version 5.0.2195 [Build 2195]', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2636, 'Microsoft Windows Server 2016 St', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2637, 'WINDOWS SERVER 2008 ENTERPRISE 6.0', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2638, 'Windows Server 2008 R2 Std', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2639, 'Windows 2003 Enterprise5.2.3790', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2640, 'WINDOWS 2012', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2641, 'Windows 2008 R2 OS', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2642, 'Microsoft Windows Server 2008 R2 Enterprise Service Pack 1, 64-bit version', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2643, 'Windows Server 2008 Enterprise x64', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2644, 'Windows 2003 Standard R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2645, 'Windows 2008 R2 Enterprise6.1.7601', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2646, 'Windows 2003 Standard 32 Bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2647, 'WINDOWS SERVER 2003 APPLIANCE 5.2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2648, 'Windows Server 2003 Std', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2649, 'WS08R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2650, 'Windows Storage Server 2012 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2651, 'WINDOWS SERVER 2003 STANDARD 5.2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2652, 'Windows 2008 Enterprise 64 Bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2653, 'Microsoft Windows Server 2012 R2 for Microsoft Windows Server 2012 R2 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2654, 'Windows Server 2000 Advanced', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2655, 'Microsoft Windows Server 2008 R2 Enterprise x64 Edition', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2656, 'WINDOWS 2008 R2 SERVER ENTERPRISE EDITION X64', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2657, 'Windows Server 2008 32-bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2658, 'Windows Server 2003 Web Edition', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2659, 'WINDOWS SERVER 2012 R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2660, 'Microsoft Windows 2012 R2 Server Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2661, 'w2k8r2sp1', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2662, 'Microsoft Windows Server 2008 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2663, 'Windows Server 2003 Service Pack 2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2664, 'Microsoft Windows Server 2008 R2 Standa', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2665, 'Win 2003', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2666, 'Windows Server 2012 R29', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2667, 'Microsoft - Windows server 2008 - Service Pack 2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2668, 'Microsoft Windows Server 2003 Enterprise x64', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2669, 'Microsoft(R) Windows(R) Server 2003, Enterprise Edition R2 Service Pack 2, 32-bit version', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2670, 'Windows 2012 R2 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2671, 'WINDOWS SERVER 2012 R2 STANDARD 6.3', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2672, 'Windows Server 2008 Enterprise R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2673, 'Microsoft Windows Server 2008 R2 Enterprise', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2674, 'Windows 2008 R2 Standard 64-bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2675, 'Microsoft Windows Server 2008 R2 (64-bit)', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2676, 'Windows 2003 Enterprise 32-bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2677, 'Microsoft - Microsoft Windows Server 2012 for Microsoft Windows Server 2012 Standard 6.2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2678, 'Windows 2012 Storage R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2679, 'Windows server 2008 Dual processor Intel Xeon x5660 @2.80 GHz 4096 MB memory installed', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2680, 'Microsoft - Windows Server 2012 R2 - 6.3', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2681, 'Windows Server 2012 R5', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2682, 'Microsoft Windows Server 2012 (64-bit)', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2683, 'MICROSOFT WINDOWS NT 2003 ENT TPM', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2684, 'Windows 2012 Server R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2685, 'Windows 2016 Standard10.0.14393', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2686, 'Microsoft Microsoft Windows Server 2012 R2 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2687, 'Windows Server 2003 Ent 64-bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2688, 'MICROSOFT WINDOWS 2003', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2689, 'WINDOWS 2003 SERVER ENTERPRISE EDITION X64', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2690, 'Windows 2012 Standard R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2691, 'WINDOWS 2000 ADVANCED SERVER 5.0', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2692, 'Microsoft Windows NT 4.0 Server', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2693, 'Windows Server2012 R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2694, 'Win Server 2008 R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2695, 'Microsoft Windows Server 2008 Enterprise Service Pack 2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2696, 'MICROSOFT WINDOWS STD 2012 TPM', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2697, 'Windows 2003 Enterprise 32 Bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2698, 'Windows 2008 Enterprise R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2699, 'Windows 2008', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2700, 'Microsoft Microsoft Windows 2008 R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2701, 'WINDOWS 2003 SERVER STANDARD EDITION', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2702, 'windows server', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2703, 'Microsoft Windows Server 2008', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2704, 'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2705, 'Win Server 2012', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2706, 'Windows 2016 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2707, 'Microsoft Windows Server 2003 Standard (64-bit)', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2708, 'Microsoft Windows Server 2008 R2 Standard. Service Pack 1', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2709, 'Windows 2000 Server Service Pack 4', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2710, 'Windows Server 2003 R2 Ent 64-bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2711, 'Windows Server 2012 r2 64bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2712, 'Windows 2008 Enterprise 64-bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2713, 'Microsoft Windows Server 2012 R2 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2714, 'Windows Server 2012 R15', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2715, 'Windows 2003 Standard 5.2.3790 Service Pack 2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2716, 'Windows 2012 Standard6.2.9200', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2717, 'MICROSOFT WINDOWS 2016 TPM', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2718, 'Microsoft Windows Server 2016 or later (64-bit)', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2719, 'Windows Storage Server 2012 Standard R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2720, 'Windows 2003 Enterprise', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2721, 'Windows Server 2016 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2722, 'Microsoft Windows Server 2012 R2 Standardx64 Edition', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2723, 'Windows 2008 R2 Enterprise 64-bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2724, 'Windows 2003 Server', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2725, 'Windows 2012 R2 Standard6.3.9600', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2726, 'Windows Server Threshold, 64-bit (Build 14393)', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2727, 'Windows Server 2012 R28', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2728, 'Windows Server 2012 R13', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2729, 'Microsoft Microsoft Windows Server 2008 R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2730, 'Microsoft Windows Server 2008 R2 Standard Service Pack 1', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2731, 'Windows Server 2003 32-bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2732, 'Microsoft Windows Server 2008 R2 Enterprise Version 6.1.7600 [Build 7600]', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2733, 'Microsoft - Windows server 2003 - Service Pack 2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2734, 'Windows 2008 Standard R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2735, 'MicrosoftWindows Server 2008 R2 (64-bit)', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2736, 'windows6.3', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2737, 'Microsoft - Windows Server 2012 R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2738, 'Windows 2016 64 Bit', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2739, 'Windows Server 2003 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2740, 'Windows Server NT', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2741, 'Windows Server 2012 Std', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2742, 'Microsoft Windows Server 2008 R2 Standard Version 6.1.7601 [Build 7601]', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2743, 'Windows Server 2012 R18', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2744, 'Windows 2008 Enterprise6.0.6003', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2745, 'Microsoft(R) Windows(R) Server 2003, Standard Edition Service Pack 1, 32-bit version', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2746, 'Windows Server 2012 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2747, 'Windows Server 2019 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2748, 'windows server 2008 R2 SP1', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2749, 'Win 2012', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2750, 'Win2012', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2751, 'Win2012R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2752, 'windows server threshold', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2753, 'win2008', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2754, 'Windows 2003 Standard x64', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2755, 'Microsoft Windows Storage Server 2008 R2 Standard', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2756, 'Windows Server 28', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2757, 'Microsoft Windows Server 2008 Standard Service Pack 2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2758, 'Windows Server 2008 R2 (64-bit)', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2759, 'Windows Server 2008 R2 with Service Pack 1', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2760, 'Windows Server 2012 R11', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2761, 'Windows Server 2012 R10', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2762, 'Windows Server 2012 R30', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2763, 'WINDOWS 2016 STANDARD EDITION', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2764, 'Windows Server 2012 R22', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2765, 'Windows Server 2003 Standard (64-bit)', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2766, 'WINDOWS SERVER 2008 R2 ENTERPRISE 6.1', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2767, 'Microsoft Windows Server 2008 R2 (64-bit) - Server 2008 R2', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2768, 'Microsoft Windows Server 2008 R2 Enterprise Service Pack 1', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2769, 'Windows Server 2008', 6, 452, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2770, '(WingArc) SVF 9.1', 2, 240, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2771, 'WingArc SVF', 2, 240, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2772, 'WinMerge', 2, 241, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2773, 'WinMerge.org - WinMerge 2.14', 2, 241, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2774, 'RARLab - WinRAR 5.31', 2, 242, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2775, 'WinRAR', 2, 242, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2776, 'WinSCP.net - WinSCP 5.11', 2, 243, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2777, 'WinSCP', 2, 243, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2778, 'Wise', 2, 244, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2779, 'Wise Package Studio', 2, 244, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2780, 'Wordpress', 2, 245, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2781, 'XAMPP', 2, 246, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2782, 'Xbase++', 9, 374, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2783, 'Xbase++ v1.9', 9, 374, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2784, 'ZAP BI Application Test Server', 2, 247, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2785, 'ZAP BI Application Stage Server', 2, 247, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2786, 'ZAP BI', 2, 247, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2787, 'ZAP BI Application Server', 2, 247, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2788, 'ZMQ', 2, 248, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2789, 'ZeroMQ', 2, 248, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2790, 'Zerto Vritual Appliance', 2, 249, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2791, 'Zerto Virtual Replication', 2, 249, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2792, 'Fedora', 6, 453, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2793, 'Amazon Linux', 6, 454, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2794, 'Oracle RTD', 8, 289, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2795, 'Oracle Real-Time Decisions (RTD)', 8, 289, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2796, 'Oracle Real-Time Decisions', 8, 289, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2797, 'PowerHA', 2, 250, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2798, 'IBM High Availability Cluster Multiprocessing', 2, 250, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2799, 'IBM PowerHA', 2, 250, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2800, 'IBM PowerHA SystemMirror', 2, 250, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2801, 'Tivoli Netcool/OMNIbus', 2, 251, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2802, 'OMNIbus', 2, 251, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2803, 'Tivoli Netcool', 2, 251, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2804, 'IBM ILOG Views', 2, 252, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2805, 'ILOG Views', 2, 252, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2806, 'IBM ILOG CPLEX', 2, 253, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2807, 'ILOG CPLEX', 2, 253, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2808, 'IBM ILOG Jviews', 2, 254, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2809, 'ILOG Jviews', 2, 254, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2810, 'IBM ILOG Elixir', 2, 255, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2811, 'ILOG Elixir', 2, 255, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2812, 'ILOG Supply Chain Apps', 2, 256, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2813, 'IBM ILOG Supply Chain Apps', 2, 256, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2814, 'ILOG Solver', 2, 257, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2815, 'Websphere ILOG JRules BRMS', 2, 601, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2816, 'ILOG JRules BRMS', 2, 601, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2817, 'Application Lifecycle Management', 1, 511, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2818, 'ALM', 1, 511, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2819, 'Application Lifecycle Management (ALM)', 1, 511, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2820, 'Assembler Language', 1, 512, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2821, 'Assembler', 1, 512, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2822, 'BMS', 1, 513, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2823, 'Batch Management Software (BMS)', 1, 513, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2824, 'Batch Management Software', 1, 513, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2825, 'Business Object Reports', 1, 514, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2826, 'Common Gateway Interface (CGI)', 1, 515, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2827, 'Common Gateway Interface', 1, 515, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2828, 'CGI', 1, 515, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2829, 'Compopent Object Model', 1, 516, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2830, 'COM', 1, 516, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2831, 'Compopent Object Model (COM)', 1, 516, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2832, 'Common Object Request Broker Architecture (CORBA)', 1, 517, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2833, 'Common Object Request Broker Architecture', 1, 517, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2834, 'CORBA', 1, 517, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2835, 'CORBA Interface Definition Language (CORBA IDL)', 1, 518, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2836, 'CORBA Interface Definition Language', 1, 518, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2837, 'CORBA IDL', 1, 518, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2838, 'Data Control Language', 1, 519, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2839, 'DCL', 1, 519, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2840, 'Database', 1, 520, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2841, 'DB', 1, 520, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2842, 'DB (database)', 1, 520, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2843, 'EDI', 1, 521, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2844, 'Electronic Data Interchange', 1, 521, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2845, 'Electronic Data Interchange (EDI)', 1, 521, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2846, 'Web Server', 1, 522, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2847, 'Java-based Document Object Model for XML', 1, 523, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2848, 'Java-based Document Object Model for XML (JDOM)', 1, 523, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2849, 'JDOM', 1, 523, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2850, 'Lightweight Directory Access Protocol', 1, 524, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2851, 'LDAP', 1, 524, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2852, 'Lightweight Directory Access Protocol (LDAP)', 1, 524, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2853, 'Open Database Connectivity (ODBC)', 1, 525, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2854, 'Open Database Connectivity', 1, 525, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2855, 'ODBC', 1, 525, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2856, 'Order Management System (OMS)', 1, 526, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2857, 'Order Management System', 1, 526, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2858, 'OMS', 1, 526, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2859, 'Oracle Web Services', 1, 527, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2860, 'Reporting Services', 1, 528, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2861, 'REST', 1, 529, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2862, 'Representational State Transfer', 1, 529, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2863, 'Representational State Transfer (REST)', 1, 529, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2864, 'Service-Oriented Architecture', 1, 530, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2865, 'Service-Oriented Architecture (SOA)', 1, 530, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2866, 'SOA', 1, 530, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2867, 'Simple Object Access Protocol (SOAP)', 1, 531, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2868, 'SOAP', 1, 531, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2869, 'Simple Object Access Protocol', 1, 531, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2870, 'Sturctured Query Language', 9, 532, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2871, 'SQL', 9, 532, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2872, 'YAML', 1, 533, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2873, 'MVC', 1, 574, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2874, 'Application Server', 1, 535, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2875, 'Cloud', 1, 536, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2876, 'Competency and Quality Assurance Server', 1, 537, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2877, 'Device Provisioning Engines', 1, 538, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2878, 'Device Provisioning Engines (DPE)', 1, 538, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2879, 'DPE', 1, 538, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2880, 'E-business solution', 1, 539, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2881, 'Ebusiness solution', 1, 539, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2882, 'ESB', 1, 540, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2883, 'Enterprise Service Bus', 1, 540, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2884, 'Enterprise Service Bus(ESB)', 1, 540, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2885, 'File Server', 1, 541, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2886, 'General Ledger', 1, 542, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2887, 'HTTP client', 1, 543, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2888, 'HTTP Server', 1, 544, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2889, 'Integrated Safe System of Work', 1, 545, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2890, 'ISSOW', 1, 545, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2891, 'Integrated Safe System of Work (ISSOW)', 1, 545, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2892, 'Internet Exchange Point - Full Stack (ixp-ft)', 1, 546, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2893, 'IMAP', 1, 547, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2894, 'Internet Message Access Protocol', 1, 547, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2895, 'Internet Message Access Protocol (IMAP)', 1, 547, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2896, 'JSON', 1, 548, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2897, 'KVS Application Server', 1, 549, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2898, 'KVS File Server', 1, 550, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2899, 'KVS Proxy Server', 1, 551, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2900, 'mainframe', 1, 552, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2901, 'Manufacturing Execution System', 1, 553, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2902, 'Manufacturing Execution System (MES)', 1, 553, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2903, 'MES', 1, 553, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2904, 'Mobile', 1, 554, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2905, 'NonSQL', 1, 555, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2906, 'SaaS', 1, 556, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2907, 'Storage Area Network', 1, 557, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2908, 'Storage Area Network (SAN)', 1, 557, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2909, 'SAN', 1, 557, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2910, 'Supplier Registration System', 1, 558, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2911, 'Supplier Registration Application Server', 1, 558, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2912, 'Supplier Registration System Application Server', 1, 558, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2913, 'Virtual Appliance', 1, 559, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2914, 'Webtop', 1, 560, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2915, 'Proxy Server', 1, 561, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2916, 'Application/Utility', 1, 562, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2917, 'Utility', 1, 562, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2918, 'SQLite', 2, 258, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2919, 'OpenBSD', 6, 590, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2920, 'z/VSE', 6, 591, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2921, 'Z/Virtual System Environment', 6, 591, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2922, 'VSE', 6, 591, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2923, 'DOS/VSE', 6, 591, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2924, 'Microsoft Disk Operating System', 6, 593, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2925, 'Microsoft DOS', 6, 593, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2926, 'MS DOS', 6, 593, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2927, 'MS-DOS', 6, 593, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2928, 'VME/B', 6, 595, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2929, 'VME', 6, 595, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2930, 'Virtual Machine Environment', 6, 595, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2931, 'VME 2900', 6, 595, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2932, 'OpenVME', 6, 595, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2933, 'DOS/360', 6, 597, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2934, 'Disk Operating System/360', 6, 597, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2935, 'TPF', 6, 598, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2936, 'z/TPF', 6, 598, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2937, 'Transaction Processing Facility', 6, 598, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2938, 'z/VM', 6, 608, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2939, 'Berkeley Software Distribution', 6, 446, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2940, 'BSD', 6, 446, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2941, 'Berkeley System Distribution', 6, 446, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2942, 'BSD Unix', 6, 446, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2943, 'Berkeley Unix', 6, 446, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2944, 'Wildfly', 7, 493, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2945, 'JBoss Application Server', 7, 493, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2946, 'Job Entry Subsystem 3', 2, 1, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2947, 'Job Entry Subsystem', 2, 1, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2948, 'Job Entry Subsystem 2/3', 2, 1, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2949, 'JES2', 2, 1, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2950, 'JES3', 2, 1, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2951, 'Activiti', 2, 3, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2952, 'Acrobat forms', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2953, 'Adobe Acrobat 3D', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2954, 'Adobe Acrobat Professional', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2955, 'Acrobat Professional', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2956, 'Adobe Acrobat Pro', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2957, 'Acrobat 8', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2958, 'Adobe Acrobat Capture', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2959, 'Adobe Acrobat Reader', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2960, 'Acrobat file', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2961, 'Acrobat reader', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2962, 'Adobe Reader X', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2963, 'Acrobat 3D', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2964, 'Adobe Reader LE', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2965, 'Adobe acrobat', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2966, 'Acrobat Pro', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2967, 'Acrobat 7', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2968, 'Adobe Acrobat 9.5.5', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2969, 'Adobe reader', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2970, 'Adobe Acrobat Viewer', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2971, 'Acrobat Exchange', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2972, 'Acrobat document', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2973, 'Acroread', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2974, 'AdobeR Reader', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2975, 'Adobe Acrobat Distiller', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2976, 'Acrobat PDFMaker 10.0 for Word', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2977, 'Adobe Acrobat X', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2978, 'Adobe Acrobat Reader DC', 2, 4, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2979, 'Adobe Reader', 2, 4, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2980, 'Acrobat Reader', 2, 4, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2981, 'Ansible software', 2, 5, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2982, 'Activemq', 2, 6, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2983, 'ActiveMQ', 2, 6, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2984, 'HBase', 2, 7, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2985, 'Hbase', 2, 7, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2986, 'HiveQL', 2, 8, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2987, 'Kafka Streams', 2, 9, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2988, 'Kafka (software)', 2, 9, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2989, 'Apache kafka', 2, 9, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2990, 'ServiceMix', 2, 10, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2991, 'Solr', 2, 11, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2992, 'Subversion (vcs)', 2, 12, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2993, 'Commit access', 2, 12, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2994, 'Svn (vcs)', 2, 12, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2995, 'Subverson', 2, 12, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2996, 'Subversion branch', 2, 12, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2997, 'Svn (software)', 2, 12, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2998, 'Subversion software', 2, 12, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2999, 'Sub Versioning', 2, 12, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3000, 'Apache subversion', 2, 12, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3001, 'Svn software', 2, 12, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3002, 'Subversion branching', 2, 12, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3003, 'SVN branch', 2, 12, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3004, 'Subversion (program)', 2, 12, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3005, 'Subversive branching', 2, 12, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3006, 'Svn vcs', 2, 12, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3007, 'Subversion (software)', 2, 12, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3008, 'Svn (Unix)', 2, 12, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3009, 'Subversion (Software)', 2, 12, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3010, 'Asterisk operator', 2, 14, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3011, 'Asterisk character', 2, 14, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3012, 'Asterisks', 2, 14, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3013, 'Asterisk (punctuation)', 2, 14, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3014, 'Asterick', 2, 14, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3015, 'Asterisked form', 2, 14, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3016, 'Splat (pronouns)', 2, 14, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3017, 'Heavy asterisk', 2, 14, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3018, 'Asteract', 2, 14, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3019, 'Astrick', 2, 14, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3020, 'Bluebeam Revu', 2, 17, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3021, 'BDE (Borland)', 2, 20, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3022, 'Borland BDE', 2, 20, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3023, 'ODAPI', 2, 20, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3024, 'Eclipse BIRT', 2, 21, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3025, 'BIRT Reports', 2, 21, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3026, 'BIRT Report', 2, 21, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3027, 'Advantage:Gen', 2, 22, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3028, 'Cool:Gen', 2, 22, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3029, 'COOLGen', 2, 22, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3030, 'COOL:Gen', 2, 22, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3031, 'Advantage Gen', 2, 22, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3032, 'Coolgen', 2, 22, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3033, 'Information Engineering Facility', 2, 22, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3034, 'CA-Panvalet', 2, 24, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3035, 'CA Panvalet', 2, 24, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3036, 'Telon', 2, 25, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3037, 'TELON', 2, 25, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3038, 'Chef (tool)', 2, 27, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3039, 'Chef-Solo', 2, 27, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3040, 'Chef Community Repository', 2, 27, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3041, 'Chef software', 2, 27, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3042, 'Citrix XenApp', 2, 30, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3043, 'WinFrame', 2, 30, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3044, 'Citrix WinFrame', 2, 30, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3045, 'Winframe', 2, 30, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3046, 'OP3Nvoice', 2, 33, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3047, 'Clarify - Op3nvoice', 2, 33, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3048, 'Laboratory information system', 2, 35, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3049, 'Laboratory Information Management System', 2, 35, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3050, 'Laboratory informatics system', 2, 35, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3051, 'Lims', 2, 35, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3052, 'Laboratory Information Management Systems', 2, 35, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3053, 'Lab information system', 2, 35, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3054, 'Laboratory computer system', 2, 35, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3055, 'Laboratory Information Management Software', 2, 35, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3056, 'Laboratory Information System', 2, 35, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3057, 'Cognos Inc.', 2, 36, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3058, 'IBM Cognos', 2, 36, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3059, 'Macromedia ColdFusion MX', 2, 37, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3060, 'ColdFusion MX', 2, 37, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3061, 'Coldfusion', 2, 37, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3062, 'Adobe cold fusion', 2, 37, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3063, 'ColdFusion Components', 2, 37, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3064, 'Cold Fusion programming language', 2, 37, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3065, 'Abobe coldfusion', 2, 37, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3066, 'ColdFusion programming language', 2, 37, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3067, 'ColdFusion', 2, 37, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3068, 'Macromedia ColdFusion', 2, 37, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3069, 'Network Data Mover', 2, 40, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3070, 'Connect Direct', 2, 40, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3071, 'Crystal Report', 2, 42, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3072, 'Crystal reports', 2, 42, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3073, 'SAP Crystal Reports', 2, 42, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3074, 'Report application server', 2, 42, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3075, 'DB2', 2, 43, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3076, 'Db2', 2, 43, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3077, 'DB2/400', 2, 43, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3078, 'IBM DB2 Express-C', 2, 43, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3079, 'DB2/2', 2, 43, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3080, 'DB2 Express', 2, 43, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3081, 'SQLCA', 2, 43, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3082, 'Ibm viper', 2, 43, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3083, 'DATABASE 2', 2, 43, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3084, 'IBM Db2', 2, 43, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3085, 'Db2 for i', 2, 43, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3086, 'DB2 DWE', 2, 43, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3087, 'DB/2', 2, 43, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3088, 'IBM PureQuery', 2, 43, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3089, 'DB2 Everyplace', 2, 43, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3090, 'PureQuery', 2, 43, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3091, 'IBM DB2', 2, 43, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3092, 'Db/2', 2, 43, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3093, 'Documentum D2', 2, 44, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3094, 'EMC Documentum', 2, 44, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3095, 'Droopal', 2, 45, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3096, 'Deanspace', 2, 45, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3097, 'Drupal theming', 2, 45, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3098, 'Droople', 2, 45, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3099, 'CivicSpace', 2, 45, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3100, 'Druscal', 2, 45, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3101, 'Drupal Con', 2, 45, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3102, 'DrupalCon', 2, 45, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3103, 'Civic Space', 2, 45, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3104, 'Drupla', 2, 45, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3105, 'Durpal', 2, 45, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3106, 'DeanSpace', 2, 45, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3107, 'Druple', 2, 45, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3108, 'Hack4Dean', 2, 45, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3109, 'Civicspace', 2, 45, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3110, 'Acquia Drupal', 2, 45, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3111, 'Open Atrium', 2, 45, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3112, 'Eclipse sdk', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3113, 'Mylyn', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3114, 'Java Eclipse', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3115, 'Web Tools Platform', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3116, 'Eclipse software', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3117, 'Eclipse SDK', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3118, 'Eclipse Kura', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3119, 'Eclipse Classic', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3120, 'Eclipse ganymede', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3121, 'Eclipse Europa', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3122, 'Eclipse (computing)', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3123, 'Eclipse (platform)', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3124, 'Eclipse IDE', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3125, 'Java eclipse', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3126, 'Yoxos OnDemand', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3127, 'Eclipse java', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3128, 'Yoxos', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3129, 'Eclipse (IDE)', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3130, 'Eclipse (SDK)', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3131, 'Eclipse ide', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3132, 'Eclipse (ide)', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3133, 'Eclipse Galileo', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3134, 'Eclipse platform', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3135, 'Eclipse RCP', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3136, 'Java Emitter Templates', 2, 46, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3137, 'Eclipse ADT', 2, 46, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3138, 'ExamDiff', 2, 49, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3139, 'FileMaker Pro', 2, 51, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3140, 'Filemaker', 2, 51, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3141, 'FileMaker II', 2, 51, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3142, 'Filemaker Pro', 2, 51, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3143, 'FileMaker Server', 2, 51, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3144, 'FilemakerPro', 2, 51, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3145, 'Google chrome 5', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3146, 'Google Chrome Beta', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3147, 'Google chrome', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3148, 'Google Chrome 12', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3149, 'Chrome software', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3150, 'Google Chrome 14', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3151, 'Chrome (browser)', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3152, 'Googlechrome', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3153, 'Chrome Canary', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3154, 'Google Chrome extension', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3155, 'Google Chrome browser', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3156, 'Google Chrome for IOS', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3157, 'Chrome extension', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3158, 'Extension (Google Chrome)', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3159, 'Incognito mode', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3160, 'Chrome browser', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3161, 'Google Chrome for Android', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3162, 'Google Chrome Extensions Gallery', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3163, 'Google Chrome 4', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3164, 'GChrome', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3165, 'Google Browser', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3166, 'Chrome google', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3167, 'Chrome (software)', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3168, 'Chrome (Google)', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3169, 'Chrome web browser', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3170, 'Google Chrome 13', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3171, 'Google Chrome 11', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3172, 'Google Chrome Canary', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3173, 'Chrome Extensions', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3174, 'Chromium (engine)', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3175, 'GBrowser', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3176, 'Chrome (web browser)', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3177, 'Google Chrome for iOS', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3178, 'Chrome for Android', 2, 55, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3179, 'EMC Greenplum', 2, 56, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3180, 'Pivotal Greenplum Database', 2, 56, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3181, 'Greenplum database', 2, 56, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3182, 'Hadoop distributed file system', 2, 57, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3183, 'Hadoop Distributed Filesystem', 2, 57, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3184, 'Hadoop YARN', 2, 57, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3185, 'HDFS', 2, 57, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3186, 'Amazon Elastic MapReduce', 2, 57, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3187, 'Hadoop Distributed File System', 2, 57, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3188, 'YARN', 2, 57, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3189, 'Hadoop', 2, 57, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3190, 'NorCroft', 2, 59, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3191, 'Norcroft compiler suite', 2, 59, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3192, 'Norcroft C', 2, 59, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3193, 'Norcroft compiler', 2, 59, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3194, 'Norcroft', 2, 59, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3195, 'Tivoli Endpoint Manager', 2, 62, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3196, 'IBM Endpoint Manager', 2, 62, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3197, 'Datastage', 2, 67, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3198, 'IBM InfoSphere', 2, 67, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3199, 'DataStage', 2, 67, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3200, 'IBM WebSphere DataStage', 2, 67, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3201, 'IBM Integration Bus', 2, 68, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3202, 'IBM WebSphere Message Broker', 2, 68, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3203, 'WebSphere Message Broker', 2, 68, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3204, 'IBM MobileFirst', 2, 72, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3205, 'IBM WebSphere ILOG JRules', 2, 73, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3206, 'Spectrum Scale', 2, 74, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3207, 'IBM Spectrum Scale', 2, 74, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3208, 'General Parallel File System', 2, 74, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3209, 'IBM General Parallel File System', 2, 74, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3210, 'Vesta File System', 2, 74, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3211, 'Adstar Distributed Storage Manager', 2, 78, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3212, 'Tivoli Storage Manager', 2, 78, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3213, 'ADSM', 2, 78, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3214, 'ADSTAR Distributed Storage Manager', 2, 78, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3215, 'IBM Tivoli Storage Manager FastBack', 2, 78, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3216, 'Distributed Storage Manager Client', 2, 78, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3217, 'WebSphere Adapters', 2, 80, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3218, 'MQ Series', 2, 81, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3219, 'Websphere MQ', 2, 81, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3220, 'IBM Message Queue Interface', 2, 81, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3221, 'Mqseries', 2, 81, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3222, 'IBM WebSphere MQ', 2, 81, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3223, 'IBM Websphere MQ', 2, 81, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3224, 'WebSphere MQ', 2, 81, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3225, 'MQSeries', 2, 81, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3226, 'Hierarchical sequential access method', 2, 84, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3227, 'IBM IMS', 2, 84, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3228, 'Information Management System', 2, 84, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3229, 'IMS DC', 2, 84, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3230, 'IMS/DC', 2, 84, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3231, 'HSAM (computing)', 2, 84, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3232, 'Information management system', 2, 84, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3233, 'Hierarchical Sequential Access Method', 2, 84, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3234, 'IMS/DB', 2, 84, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3235, 'IMS/TM', 2, 84, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3236, 'IMS system', 2, 84, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3237, 'WiZ', 2, 85, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3238, 'Zip (software)', 2, 85, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3239, 'Info-Zip', 2, 85, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3240, 'InfoZip', 2, 85, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3241, 'Infozip', 2, 85, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3242, 'Berkeley Ingres QUEL', 2, 88, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3243, 'IngresCorporation', 2, 88, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3244, 'Ingres II', 2, 88, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3245, 'Ingres Database', 2, 88, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3246, 'University Ingres', 2, 88, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3247, 'OpenIngres', 2, 88, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3248, 'CA-Ingres', 2, 88, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3249, 'Ingres database', 2, 88, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3250, 'INGRES', 2, 88, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3251, 'IBM Domino', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3252, 'Lotus domino', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3253, 'Notes Release 3.0', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3254, 'Lotus Notes 3.0', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3255, 'Lotus Notes Mail', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3256, 'Lotus Notes 2.1', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3257, 'Lotus Notes Release 3.0', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3258, 'Lotus notes', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3259, 'Eproductivity', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3260, 'Notes 3.0', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3261, 'Lodus notes', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3262, 'Domino XML', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3263, 'Lodus nodes', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3264, 'Notes Release 2.1', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3265, 'Lodus Nodes', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3266, 'IBM Lotus Notes', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3267, 'IBM Lotus Domino', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3268, 'Notes Storage Facility', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3269, 'Lotus Domino', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3270, 'Dominoblog', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3271, 'Lodus Notes', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3272, 'Lotus Notes Release 2.1', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3273, 'Notes 2.1', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3274, 'IBM iNotes Webmail Redirect', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3275, 'Domino (software)', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3276, 'HLC Domino', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3277, 'HCL Notes', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3278, 'EProductivity', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3279, 'Notes Storage Format', 2, 93, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3280, 'Lotus Notes', 2, 93, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3281, 'IBM Notes', 2, 93, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3282, 'MaaS 360 (Software)', 2, 94, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3283, 'Malwarebytes'' AntiMalware', 2, 95, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3284, 'Malwarebytes'' Anti-Malware', 2, 95, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3285, 'Malware Bytes', 2, 95, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3286, 'Malwarebytes Anti-Malware', 2, 95, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3287, 'Mark Logic', 2, 97, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3288, 'MarkMail', 2, 97, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3289, 'MarkLogic Corporation', 2, 97, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3290, 'Mark logic', 2, 97, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3291, 'Memcache', 2, 98, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3292, 'Memory Cache Daemon', 2, 98, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3293, 'Microsoft Access Development', 2, 99, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3294, 'Ms access', 2, 99, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3295, 'Ms Access', 2, 99, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3296, 'Microsoft Access 2002', 2, 99, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3297, 'Access 2002', 2, 99, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3298, 'MS access', 2, 99, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3299, 'Access 97 SR2', 2, 99, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3300, 'Microsoft Access 2007', 2, 99, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3301, 'Access 2', 2, 99, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3302, 'Accdb', 2, 99, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3303, 'MS Access', 2, 99, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3304, 'MSAccess', 2, 99, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3305, 'Office Access', 2, 99, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3306, 'Microsoft Acces', 2, 99, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3307, 'Access 97', 2, 99, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3308, 'MSACCESS', 2, 99, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3309, 'Microsoft access', 2, 99, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3310, 'Microsoft Office Access', 2, 99, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3311, 'Biztalk', 2, 100, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3312, 'BizTalk', 2, 100, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3313, 'BizTalk Server', 2, 100, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3314, 'Microsoft Biztalk Server', 2, 100, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3315, 'Axapta', 2, 101, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3316, 'En''tegrate', 2, 101, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3317, 'X++', 2, 101, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3318, 'En''tegrate Software', 2, 101, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3319, 'Dynamics AX', 2, 101, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3320, 'MorphX', 2, 101, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3321, 'System Management Server', 2, 102, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3322, 'ConfigMgr', 2, 102, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3323, 'System center configuration manager', 2, 102, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3324, 'System Centre Configuration Manager', 2, 102, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3325, 'Systems Management Server', 2, 102, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3326, 'System Center Configuration Manager', 2, 102, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3327, 'AssetMetrix', 2, 102, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3328, 'SCCM 2007', 2, 102, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3329, 'MSSMS', 2, 102, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3330, 'Microsoft Systems Management Server', 2, 102, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3331, 'MS excel', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3332, 'Excel (Microsoft)', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3333, 'Excel macro', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3334, 'Microsoft XL', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3335, 'Excel function', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3336, 'Excel 2010', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3337, 'Microsoft excel file formats', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3338, 'Microsoft excel', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3339, 'Microsoft(r) Excel(r)', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3340, 'XLW', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3341, 'Ms Excel', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3342, 'XLS files', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3343, 'XLS file', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3344, 'Microsoft Excel XP', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3345, 'Ms excel', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3346, 'Excel Viewer', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3347, 'XLS FILE', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3348, 'Microsoft Excel:mac', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3349, 'Excel spreadsheet', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3350, 'Microsoft Excel 95', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3351, 'Microsoft Excel 2002', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3352, 'Microsoft Excel 2003', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3353, 'Excel 2007', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3354, 'Microsoft Excel Viewer', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3355, 'Microsoft Excel file format', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3356, 'Excel Web App', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3357, 'EXCEL', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3358, 'Xlw', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3359, 'Microsoft Excel 2004', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3360, 'MICROSOFT EXCEL', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3361, 'Excel table', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3362, 'Excel 2003', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3363, 'Excel VBA', 2, 103, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3364, 'Microsoft Office Excel', 2, 103, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3365, 'Excel', 2, 103, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3366, 'MS Excel', 2, 103, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3367, 'Office Excel', 2, 103, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3368, 'MS Exchange Server', 2, 104, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3369, 'Exchange email', 2, 104, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3370, 'Exchange 2007', 2, 104, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3371, 'Exchange Online', 2, 104, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3372, 'Microsoft Exchange Client', 2, 104, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3373, 'Exchange Server', 2, 104, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3374, 'Cluster continuos replication', 2, 104, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3375, 'Exchange 2010', 2, 104, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3376, 'Microsoft Exchange 2013', 2, 104, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3377, 'Microsoft Exchange Server 2013', 2, 104, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3378, 'Microsoft Exchange server', 2, 104, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3379, 'LinkAge Software', 2, 104, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3380, 'Exchange Server 2007', 2, 104, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3381, 'Exchange Server 2003', 2, 104, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3382, 'Exchange 2013', 2, 104, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3383, 'MS Exchange 2010 SP2', 2, 104, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3384, 'Exchange Server 2013', 2, 104, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3385, 'Cluster continuous replication', 2, 104, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3386, 'Identity Lifecycle Manager', 2, 105, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3387, 'Microsoft Office Infopath', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3388, 'Microsoft infoPath', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3389, 'Microsoft Infopath', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3390, 'Microsoft infopath', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3391, 'Infopath 2007', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3392, 'Office Forms Server', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3393, 'MS InfoPath', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3394, 'Infopath Form Services', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3395, 'MS infoPath', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3396, 'Ms Infopath', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3397, 'Infopath Forms Services', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3398, 'InfoPath', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3399, 'Microsoft InfoPath Filler', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3400, 'InfoPath Forms Services', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3401, 'Forms Server', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3402, 'Infopath', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3403, 'Ms infoPath', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3404, 'InfoPath Form Services', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3405, 'Infopass', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3406, 'Ms infopath', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3407, 'Microsoft Office Forms Server', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3408, 'Office InfoPath', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3409, 'MS infopath', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3410, 'InfoPath forms services', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3411, 'Microsoft Office InfoPath 2007', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3412, 'Infopath forms services', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3413, 'Microsoft InfoPath Designer', 2, 106, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3414, 'Microsoft Office InfoPath', 2, 106, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3415, 'XDocs', 2, 106, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3416, 'Microsoft Internet Explorer', 2, 107, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3417, 'MSIE', 2, 107, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3418, 'Windows Internet Explorer', 2, 107, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3419, 'MS IE', 2, 107, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3420, 'Internetexplorer', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3421, 'Microsoft IE', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3422, 'Stopie', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3423, 'Internut Exploder', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3424, 'WinInet', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3425, 'Internex', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3426, 'Wininet', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3427, 'Internet Exploder', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3428, 'Iexplorer', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3429, 'Features of internet explorer', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3430, 'WinINET', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3431, 'MicroSoft Internet Explorer', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3432, 'Innerhtml', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3433, 'Iexplore', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3434, 'MSIE (web browser)', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3435, 'Internet explorer', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3436, 'Internet exploiter', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3437, 'Internet Exploiter', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3438, 'MS Internet Explorer', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3439, 'InternetExplorer', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3440, 'M.S.I.E.', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3441, 'IE browser', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3442, 'InnerHTML', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3443, 'StopIE', 2, 107, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3444, 'Microsoft Proxy Server', 2, 108, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3445, 'Threat Management Gateway', 2, 108, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3446, 'Internet Security and Acceleratoin Server', 2, 108, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3447, 'Internet Security and Acceleration Server', 2, 108, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3448, 'Microsoft ISA Server', 2, 108, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3449, 'Internet Security and Acceleration', 2, 108, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3450, 'MS Proxy Server', 2, 108, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3451, 'ISA server', 2, 108, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3452, 'Forefront Threat Management Gateway', 2, 108, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3453, 'ISA Server', 2, 108, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3454, 'Forefront TMG', 2, 108, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3455, 'Microsoft Internet Security and Acceleration Server', 2, 108, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3456, 'MSMQ', 2, 109, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3457, 'Microsoft Message Queue Server', 2, 109, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3458, 'Microsoft Message Queue', 2, 109, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3459, 'Visual Studio .NET', 2, 111, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3460, 'Microsoft Visual Studio .NET', 2, 111, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3461, 'Visual Studio', 2, 111, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3462, 'Vs2010', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3463, 'Visual Studio 97', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3464, 'Microsoft Visual Studio 2008', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3465, 'Data dude', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3466, 'Visual Studio Shell', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3467, 'Microsoft Development Environment', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3468, 'Visual Studio .NET 2003', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3469, 'VS2008', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3470, 'LightSwitch', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3471, 'Visual Studio Team Services', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3472, 'Visual Studio 2017', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3473, 'Microsoft visual studio', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3474, 'Microsoft Visual Studio 2015', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3475, 'Visual Studio Online', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3476, 'Visual Studio 11', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3477, 'DevBiz Business Solutions', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3478, 'Visual Studio .NET 2005', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3479, 'Visual Studio .NET 2002', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3480, 'Visual Studio Test Professional', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3481, 'VS2017', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3482, 'Visual Studio 2019', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3483, 'VS2010', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3484, 'Microsoft Visual Studio Community', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3485, 'Visual Studio.NET 2005', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3486, 'Microsoft Visual Studio debugger', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3487, 'MSDEV', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3488, 'Visual Studio 2013', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3489, 'Visual Studio Application Lifecycle Management', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3490, 'Visual Studio Team Suite', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3491, 'Visual studio', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3492, 'VS6', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3493, 'Microsoft Test professional', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3494, 'Visual Studio 2015', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3495, 'Azure DevOps Services', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3496, 'Visual Studio 2010', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3497, 'Microsoft visual studio 2010', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3498, 'VS2005', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3499, 'Visual Studio.NET', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3500, 'VS 2005', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3501, 'DXCore', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3502, 'Visual Studio debugger', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3503, 'Visual Studio Team Test', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3504, 'MS Visual Studio', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3505, 'RefactorPro', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3506, 'Visual Studio Debugger', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3507, 'VisualStudio', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3508, 'Visual Studio LightSwitch', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3509, 'Microsoft Orcas', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3510, 'Visual Studio ALM', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3511, 'Microsoft Visual Studio 2005', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3512, 'Visual Studio 2005', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3513, 'CodeView and the Visual Studio Debugger', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3514, 'Visual Studio Orcas', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3515, 'Visual Studio 2022', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3516, 'Microsoft Test Professional', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3517, 'Visual Studio 2008', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3518, 'Microsoft Visual Studio Debugger', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3519, 'Vs.net', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3520, 'VS05', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3521, 'Vs 2010', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3522, 'Visual Studio 6.0', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3523, 'Visual Studio Community', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3524, 'VISUAL STUDIO 2008', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3525, 'DevBiz', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3526, 'Microsoft Visual Studio 2010', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3527, 'Visual Studio 2012', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3528, 'VS 2008', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3529, 'Visual Studio Ultimate 2010', 2, 111, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3530, 'WebPI', 2, 114, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3531, 'Microsoft Web Platform Installer', 2, 114, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3532, 'Mongo db', 2, 116, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3533, 'Mongodb', 2, 116, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3534, 'Firefox (browser)', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3535, 'Firebird browser', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3536, 'FireBird (browser)', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3537, 'Mozila Firefox', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3538, 'Firefox minefield', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3539, 'Minefield (trunk build)', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3540, 'FireFox (web browser)', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3541, 'Firebird (web browser)', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3542, 'Mozilla Phoenix', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3543, 'Mozilla/browser', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3544, 'Firefox (software)', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3545, 'Mozilla firefox', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3546, 'M/b', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3547, 'Phoenix web browser', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3548, 'Firefox Aurora', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3549, 'Mozilla Firerfox', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3550, 'Firebird (browser)', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3551, 'Mozilla''s Firefox', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3552, 'MineField Browser', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3553, 'Firefox (web browser)', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3554, 'Mozilla phoenix', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3555, 'SpreadFirefox', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3556, 'FireBird (web browser)', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3557, 'Mozzila Firefox', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3558, 'FireFox (browser)', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3559, 'Mozilla Minefield', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3560, 'Firefox esr', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3561, 'Mozilla FireFox', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3562, 'Mozilla Firefox''s', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3563, 'Mozilla firebird', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3564, 'Mozff', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3565, 'Mozilla firefox esr', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3566, 'Firebird Web Browser', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3567, 'Frefox', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3568, 'Phoenix (browser)', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3569, 'Spread Firefox', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3570, 'Forefox', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3571, 'FireFox', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3572, 'Mozillafirefox', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3573, 'Mozilla Fire Fox', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3574, 'Firefox Roadmap', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3575, 'Firefox roadmap', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3576, 'Firebird web browser', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3577, 'Mozilla Firefox (software)', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3578, 'Mozilla Firefox ESR', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3579, 'SpreadFireFox', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3580, 'Moz firefox', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3581, 'Firefox Browser', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3582, 'Firefo', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3583, 'Fire Fox', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3584, 'Mozilla FireBird', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3585, 'Mozilla FX', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3586, 'Firefox ESR', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3587, 'Mozilla ff', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3588, 'Phoenix (web browser)', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3589, 'Fire fox', 2, 117, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3590, 'Firefox web browser', 2, 117, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3591, 'Firefox browser', 2, 117, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3592, 'Mozilla Firebird', 2, 117, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3593, 'Mozilla Firefox', 2, 117, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3594, 'MS-Office 365', 2, 119, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3595, 'MS SQL', 2, 120, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3596, 'MS SQL Server', 2, 120, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3597, 'MSSQL', 2, 120, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3598, 'MS-SQL', 2, 120, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3599, 'Microsoft SQL Server 2005', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3600, 'Sql Server 2000', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3601, 'SQL Server 2017', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3602, 'Sqlcmd', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3603, 'SQL Server 2014 ISO', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3604, 'SQL Server 2000', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3605, 'SQL Server 2005', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3606, 'SQL Server 2014', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3607, 'Microsoft SQL Server 2008 R2', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3608, 'Microsoft SQL server', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3609, 'Microsoft SQL Server 2000', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3610, 'SQL Server 2014 CAB', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3611, 'SQL Server 2008 R2', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3612, 'Pubs (database)', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3613, 'SQL Server 2012', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3614, 'Microsoft SQL', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3615, 'Microsoft SQL Server 2008', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3616, 'Microsoft Sql Server', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3617, 'SQL 6.5', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3618, 'Ms sql server', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3619, 'SQL Server 2008', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3620, 'Microsoft sql server', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3621, 'Mssql', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3622, 'SQL Server 2016', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3623, 'SQL 7.0', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3624, 'SQL Server 2019', 2, 120, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3625, 'SQL Server 2005 Compact Edition', 2, 121, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3626, 'SQL Server Compact 3.5', 2, 121, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3627, 'Microsoft SQL Server Compact Edition', 2, 121, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3628, 'SQL Server Compact Edition Database File', 2, 121, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3629, 'Sql mobile', 2, 121, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3630, 'SQL Server Compact Edition', 2, 121, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3631, 'SQL Mobile', 2, 121, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3632, 'SQLCE', 2, 121, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3633, 'SQL Server Mobile', 2, 121, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3634, 'SQLce', 2, 121, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3635, 'SQL Server Compact 2005 Edition', 2, 121, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3636, 'SQL Server Mobile Edition', 2, 121, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3637, 'SQL Server CE', 2, 121, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3638, 'Microsoft SQL Server Mobile Edition', 2, 121, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3639, 'Microsoft SQL Server Compact', 2, 121, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3640, 'SQL CE', 2, 121, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3641, 'My sql', 2, 122, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3642, 'MySQL server', 2, 122, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3643, 'Mysql 5.0', 2, 122, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3644, 'MySQL Fabric', 2, 122, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3645, 'Mysqldump', 2, 122, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3646, 'MySql', 2, 122, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3647, 'MYSQL', 2, 122, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3648, 'MySQL HA', 2, 122, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3649, 'SunSQL', 2, 122, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3650, 'Libmysqld', 2, 122, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3651, 'Mysql-server', 2, 122, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3652, 'Mysql', 2, 122, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3653, 'Mqsql', 2, 122, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3654, 'My Structured Query Language', 2, 122, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3655, 'My SQL', 2, 122, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3656, 'MySql 5', 2, 122, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3657, 'Mysql 5.1', 2, 122, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3658, 'Neo Technology', 2, 123, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3659, 'Neo4J', 2, 123, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3660, 'Nix language', 2, 125, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3661, 'Nix Package Manager', 2, 125, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3662, 'Openldap', 2, 126, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3663, 'OpenText Exstream', 2, 127, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3664, 'PrivateVPN', 2, 128, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3665, 'Openvon', 2, 128, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3666, 'Openvpn', 2, 128, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3667, 'Open VPN', 2, 128, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3668, 'ADF Faces', 2, 130, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3669, 'Oracle ADF', 2, 130, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3670, 'Oracle HTML DB', 2, 131, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3671, 'Html db', 2, 131, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3672, 'HTML DB', 2, 131, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3673, 'Oracle APEX', 2, 131, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3674, 'Oracle XML Publisher', 2, 132, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3675, 'OBIEE', 2, 133, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3676, 'Oracle11i', 2, 134, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3677, 'Oracle8i', 2, 134, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3678, 'Oracle (software)', 2, 134, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3679, 'Oracle (database)', 2, 134, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3680, 'Ora92', 2, 134, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3681, 'Oracle 11i', 2, 134, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3682, 'Oracle express', 2, 134, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3683, 'Oracle XE', 2, 134, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3684, 'Oracle (DBMS)', 2, 134, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3685, 'Oracle database', 2, 134, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3686, 'Instantclient', 2, 134, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3687, 'Oracle db', 2, 134, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3688, 'Oracle 11g', 2, 134, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3689, 'Oracle R Enterprise', 2, 134, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3690, 'Oracle9i', 2, 134, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3691, 'Oracle11g', 2, 134, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3692, 'Oracle DBMS', 2, 134, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3693, 'Oracle8', 2, 134, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3694, 'Oracle RDBMS', 2, 134, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3695, 'Oracle Designer 2000', 2, 135, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3696, 'Oracle Enterprise Manager', 2, 136, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3697, 'Oracle Forms', 2, 137, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3698, 'Oracle Hyperion|Hyperion Planning', 2, 139, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3699, 'Oracle Net', 2, 140, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3700, 'Real application clusters', 2, 141, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3701, 'Oracle Service Bus', 2, 143, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3702, 'Oracle soa', 2, 145, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3703, 'Oracle SQL Developer', 2, 146, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3704, 'Oracle TimesTen In-Memory Database', 2, 147, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3705, 'Timesten', 2, 147, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3706, 'Smallbase', 2, 147, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3707, 'TimesTen In-Memory Database', 2, 147, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3708, 'Oracle Warehouse Builder', 2, 148, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3709, 'Orbix (Software)', 2, 149, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3710, 'Pentaho Data Integration', 2, 150, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3711, 'Ramsetcube', 2, 150, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3712, 'PeopleSoft Enterprise', 2, 151, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3713, 'People Soft', 2, 151, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3714, 'PeopleSoft', 2, 151, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3715, 'PeopleSoft EnterpriseOne', 2, 151, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3716, 'PeopleSoft HRMS', 2, 151, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3717, 'Peoplesoft', 2, 151, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3718, 'Pervasive psql', 2, 153, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3719, 'Actian Zen', 2, 153, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3720, 'Pervasive sql', 2, 153, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3721, 'PKZip', 2, 155, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3722, 'PKSFX', 2, 155, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3723, 'PKUNZIP', 2, 155, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3724, 'SecureZIP', 2, 155, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3725, 'Pkunzip', 2, 155, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3726, 'Pkzip', 2, 155, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3727, 'Metis (modelling)', 2, 156, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3728, 'Metis (software)', 2, 156, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3729, 'PgSQL', 2, 157, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3730, 'PostgreSQL Data Base Management System', 2, 157, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3731, 'Postsql', 2, 157, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3732, 'Postgres95', 2, 157, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3733, 'POSTGRES', 2, 157, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3734, 'Autovacuum', 2, 157, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3735, 'PGSQL', 2, 157, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3736, 'PostSQL', 2, 157, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3737, 'PostGRES', 2, 157, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3738, 'POSTGRES95', 2, 157, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3739, 'Psql (PostgreSQL)', 2, 157, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3740, 'Pgsql', 2, 157, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3741, 'PortugueseSQL', 2, 157, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3742, 'PostegreSQL', 2, 157, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3743, 'PostGRE', 2, 157, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3744, 'PostgresSQL', 2, 157, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3745, 'Postgresql', 2, 157, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3746, 'PostGres', 2, 157, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3747, 'PostgreSql', 2, 157, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3748, 'Postgre sql', 2, 157, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3749, 'Postgress', 2, 157, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3750, 'Postgre', 2, 157, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3751, 'Postgres', 2, 157, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3752, 'Powerbuilder', 2, 158, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3753, 'Sybase PowerBuilder', 2, 158, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3754, 'Power Builder', 2, 158, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3755, 'Oracle Primavera', 2, 159, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3756, 'Primavera p6', 2, 159, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3757, 'XER (file format)', 2, 159, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3758, 'Primavera P3', 2, 159, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3759, 'ProjectWise', 2, 161, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3760, 'ProjectWise Web Server', 2, 162, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3761, 'Polytron Version Control System', 2, 163, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3762, 'QlikView', 2, 164, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3763, 'Rabbit MQ', 2, 165, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3764, 'Rabbitmq', 2, 165, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3765, 'RabbitMq', 2, 165, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3766, 'Rabbit mq', 2, 165, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3767, 'MultiVersion File System', 2, 166, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3768, 'IBM Rational ClearCase', 2, 166, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3769, 'Clear case', 2, 166, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3770, 'IBM Rational MultiVersion File System', 2, 166, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3771, 'Clearcase', 2, 166, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3772, 'Rational MultiVersion File System', 2, 166, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3773, 'Ibm clear case', 2, 166, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3774, 'ClearCase', 2, 166, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3775, 'Rational Business Developer Extension', 2, 167, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3776, 'Rational Service Tester for SOA Quality', 2, 167, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3777, 'Rational Business Developer', 2, 167, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3778, 'Rational ClearQuest', 2, 167, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3779, 'IBM Rational SQABasic', 2, 167, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3780, 'SQABasic', 2, 167, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3781, 'IBM Rational Business Developer Extension', 2, 167, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3782, 'Rationale Software', 2, 167, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3783, 'Rational Machines', 2, 167, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3784, 'Rational Application Developer', 2, 167, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3785, 'Rational Team Concert', 2, 167, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3786, 'Rational Engineering Lifecycle Manager', 2, 167, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3787, 'IBM Jazz', 2, 167, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3788, 'IBM Rational Team Concert', 2, 167, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3789, 'Rational Rose RealTime', 2, 167, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3790, 'IBM Rational Business Developer', 2, 167, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3791, 'IBM Rational Software', 2, 167, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3792, 'Rational Software Corporation', 2, 167, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3793, 'Rational Functional Tester', 2, 167, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3794, 'Rational Tau', 2, 167, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3795, 'Rational robot', 2, 167, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3796, 'IBM Rational', 2, 167, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3797, 'Redis (data store)', 2, 168, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3798, 'Redis (dbms)', 2, 168, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3799, 'Redis database format', 2, 168, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3800, 'Remedy', 2, 169, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3801, 'Riak', 2, 170, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3802, 'Rumba criolla', 2, 172, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3803, 'Mysap', 2, 174, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3804, 'SAP enterprise software', 2, 174, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3805, 'SAP Transport management system', 2, 174, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3806, 'Profitability Analysis (SAP)', 2, 174, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3807, 'MySAP', 2, 174, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3808, 'SAP ERP Financials', 2, 174, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3809, 'MySAP ERP', 2, 174, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3810, 'SAP Basis', 2, 174, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3811, 'SAP HCM PA', 2, 174, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3812, 'SAP ECC', 2, 174, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3813, 'MySAP ERP Operations', 2, 174, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3814, 'SAP ERP Human Capital Management', 2, 174, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3815, 'MySAP ERP Financials', 2, 174, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3816, 'SAP Fiori', 2, 174, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3817, 'SAP ERP Operations', 2, 174, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3818, 'SAP ERP Corporate Services', 2, 174, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3819, 'High-performance Analytical Application', 2, 175, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3820, 'SAP DB', 2, 176, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3821, 'SAPDB', 2, 176, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3822, 'SapDB', 2, 176, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3823, 'SAP Netweaver Business Intelligence', 2, 177, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3824, 'SAP NetWeaver Business Intelligence', 2, 177, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3825, 'SAP BW', 2, 177, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3826, 'SAP Business Information Warehouse', 2, 177, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3827, 'Sybase ASA', 2, 178, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3828, 'ASA (SQL Anywhere)', 2, 178, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3829, 'PowerSoft SQL', 2, 178, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3830, 'SAP Adaptive Server Anywhere', 2, 178, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3831, 'Sybase asa', 2, 178, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3832, 'PowerSoft Watcom SQL', 2, 178, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3833, 'Sybase Anywhere', 2, 178, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3834, 'Sql anywhere', 2, 178, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3835, 'Adaptive Server Anywhere', 2, 178, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3836, 'SAP SQL Anywhere', 2, 178, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3837, 'PowerSoft SQL Anywhere', 2, 178, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3838, 'Sybase SQL Anywhere', 2, 178, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3839, 'SAP Sybase Adaptive Server Anywhere', 2, 178, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3840, 'SAP Sybase ASA', 2, 178, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3841, 'Watcom SQL', 2, 178, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3842, 'Sybase Adaptive Server Anywhere', 2, 178, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3843, 'SAP ASA', 2, 178, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3844, 'Web Dynpro ABAP', 2, 179, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3845, 'Webdynpro', 2, 179, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3846, 'Dynpro', 2, 179, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3847, 'Sentry Risk Table', 2, 180, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3848, 'Windows Sharepoint', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3849, 'Microsoft SharePoint Server', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3850, 'MOSS 2007', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3851, 'Microsoft Office SharePoint Server 2007', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3852, 'SharePoint 2007', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3853, 'Windows sharepoint', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3854, 'Microsoft SharePoint 2010', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3855, 'SharePoint 2010', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3856, 'Microsoft SharePoint 2007', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3857, 'Sharepoint', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3858, 'Share point server', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3859, 'SharePoint Foundation', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3860, 'SharePoint services', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3861, 'SharePoint Server', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3862, 'Sharepoint portal server', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3863, 'Microsoft sharepoint', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3864, 'Windows SharePoint 2007', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3865, 'Microsoft SharePoint', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3866, 'Office SharePoint Server', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3867, 'Windows SharePoint', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3868, 'MS Sharepoint', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3869, 'Windows SharePoint Server', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3870, 'Sharepoint 2007', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3871, 'Windows SharePoint Services', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3872, 'Share Point', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3873, 'Microsoft Office Sharepoint Server 2007', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3874, 'Microsoft Windows SharePoint Services', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3875, 'Microsoft Office SharePoint Portal Server', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3876, 'Microsoft Sharepoint Foundation', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3877, 'SharePoint Portal Server', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3878, 'Sharepoint services', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3879, 'Sharepoint Services', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3880, 'Sharepoint 2010', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3881, 'Microsoft Sharepoint', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3882, 'Windows Sharepoint Services 3', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3883, 'Sharepoint server', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3884, 'MS SharePoint', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3885, 'Microsoft Office SharePoint', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3886, 'SharePointCOE', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3887, 'Share point', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3888, 'Sharepoint collaboration', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3889, 'Microsoft SharePoint Foundation', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3890, 'SharePoint Services', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3891, 'SharePoint Resources', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3892, 'Windows Sharepoint Services', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3893, 'Microsoft Office SharePoint Server', 2, 181, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3894, 'Snaglt', 2, 184, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3895, 'SnagIt', 2, 184, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3896, 'IBM Mobile', 2, 185, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3897, 'SonarLint', 2, 186, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3898, 'Sonarqube', 2, 186, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3899, 'Sonar (software quality)', 2, 186, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3900, 'Splunk', 2, 188, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3901, 'Sybase SQL Server', 2, 190, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3902, 'SAP Sybase DB', 2, 190, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3903, 'SAP Sybase SQL Server', 2, 190, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3904, 'SAP Sybase ASE', 2, 190, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3905, 'Sybase Adaptive Server Enterprise', 2, 190, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3906, 'SAP Adaptive Server Enterprise', 2, 190, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3907, 'SAP Sybase Adaptive Server Enterprise (ASE)', 2, 190, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3908, 'Sybase (database)', 2, 190, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3909, 'SAP SQL Server', 2, 190, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3910, 'SAP Sybase', 2, 190, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3911, 'SAP Sybase Adaptive Server Enterprise', 2, 190, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3912, 'Sybase database', 2, 190, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3913, 'ASE (SQL Server)', 2, 190, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3914, 'Sybase Enterprise', 2, 190, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3915, 'Sybase ASE', 2, 190, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3916, 'SAP ASE', 2, 190, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3917, 'Sybase DB', 2, 190, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3918, 'Syncsort', 2, 191, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3919, 'Teradata Geospatial', 2, 215, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3920, 'Teradata FastLoad', 2, 215, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3921, 'Teradata Warehouse Miner', 2, 215, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3922, 'Fastexport', 2, 215, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3923, 'BTEQ', 2, 215, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3924, 'Teradata Parallel Transporter', 2, 215, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3925, 'FastExport', 2, 215, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3926, 'ADAM Software', 2, 215, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3927, 'Tibco Rendezvous', 2, 219, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3928, 'Tivoli Access Manager', 2, 220, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3929, 'Tortoise CVS', 2, 221, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3930, 'TSVN', 2, 222, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3931, 'Tortoisesvn', 2, 222, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3932, 'Tortoise svn', 2, 222, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3933, 'Tortoise SVN', 2, 222, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3934, 'UNIFACE', 2, 225, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3935, 'VisiBroker', 2, 228, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3936, 'Vcenter', 2, 231, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3937, 'IBM WebSphere Commerce', 2, 234, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3938, 'WebSphere Commerce', 2, 234, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3939, 'Windchill', 2, 237, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3940, 'Index Server', 2, 238, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3941, 'Windows Indexing Service', 2, 238, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3942, 'Windows indexing service', 2, 238, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3943, 'WinMerge 2011', 2, 241, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3944, 'Winmerge', 2, 241, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3945, 'Winrar', 2, 242, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3946, 'WinRar', 2, 242, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3947, 'RAR5', 2, 242, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3948, 'Rarlab WinRAR', 2, 242, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3949, 'Win RAR', 2, 242, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3950, 'WINSCP', 2, 243, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3951, 'Winscp', 2, 243, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3952, 'Word press', 2, 245, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3953, 'BbPress', 2, 245, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3954, 'Cafelog', 2, 245, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3955, 'WordPress MU', 2, 245, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3956, 'B2\cafelog', 2, 245, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3957, 'Wordpress', 2, 245, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3958, 'B2/cafelog', 2, 245, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3959, 'WordPress 2.1.2', 2, 245, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3960, 'WordCamp', 2, 245, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3961, 'WordPress Foundation', 2, 245, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3962, 'Word Press', 2, 245, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3963, 'The WordPress Foundation', 2, 245, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3964, 'Wordpress foundation', 2, 245, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3965, 'B2 (software)', 2, 245, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3966, 'Xampp', 2, 246, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3967, 'XAMPP Lite', 2, 246, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3968, 'Xamp', 2, 246, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3969, 'Xampp Lite', 2, 246, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3970, 'Apache Friends', 2, 246, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3971, '0MQ', 2, 248, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3972, 'ZMQ', 2, 248, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3973, 'Nanomsg', 2, 248, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3974, 'Zero MQ', 2, 248, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3975, 'ØMQ', 2, 248, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3976, '0mq', 2, 248, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3977, 'Zmq', 2, 248, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3978, 'Zeromq', 2, 248, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3979, 'OMQ', 2, 248, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3980, 'Zerto Virtual Replication', 2, 249, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3981, 'HACMP', 2, 250, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3982, 'High Availability Cluster Multiprocessing', 2, 250, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3983, 'IBM PowerHA SystemMirror', 2, 250, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3984, 'ILOG CPLEX', 2, 253, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3985, 'OPL Development Studio', 2, 253, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3986, 'LogicTools', 2, 257, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3987, 'Sqlite', 2, 258, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3988, 'SQL Lite', 2, 258, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3989, 'Sqlite3', 2, 258, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3990, 'SqlLite', 2, 258, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3991, 'SQLLite', 2, 258, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3992, 'SQLite4', 2, 258, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3993, 'SQLlite', 2, 258, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3994, 'SQLite3', 2, 258, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3995, 'SQlite', 2, 258, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3996, 'SQLLite DB', 2, 258, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3997, 'SQLite Manager', 2, 258, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3998, 'Sqllite', 2, 258, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3999, 'SQLITE', 2, 258, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4000, 'Apache webserver', 8, 259, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4001, 'Apache Server', 8, 259, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4002, 'Apache web server', 8, 259, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4003, 'Apache WWW Server', 8, 259, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4004, 'Apache (server)', 8, 259, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4005, 'Apache (web server)', 8, 259, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4006, 'Apache httpd', 8, 259, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4007, 'Apache server', 8, 259, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4008, 'Apache2', 8, 259, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4009, 'Apache2ctl', 8, 259, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4010, 'Apache Web Server', 8, 259, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4011, 'Apache 2.4', 8, 259, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4012, 'Apache Web server', 8, 259, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4013, 'Apache HTTPd', 8, 259, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4014, 'Apache http', 8, 259, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4015, 'Apache HTTPD', 8, 259, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4016, 'Apachectl', 8, 259, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4017, 'Apache http server', 8, 259, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4018, 'Apache HTTP server', 8, 259, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4019, 'Apache (HTTP server)', 8, 259, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4020, 'Apache 1.3', 8, 259, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4021, 'Apache (webserver)', 8, 259, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4022, 'Apache 2.2', 8, 259, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4023, 'Apache Webserver', 8, 259, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4024, 'Apache (computing)', 8, 259, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4025, 'Tomcat Catalina', 8, 260, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4026, 'Apache tomcat', 8, 260, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4027, 'Tomcat Jasper', 8, 260, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4028, 'Tomcat6', 8, 260, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4029, 'Tomcat 6', 8, 260, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4030, 'Tomcat5', 8, 260, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4031, 'Catalina (Tomcat)', 8, 260, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4032, 'Tomcat Coyote', 8, 260, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4033, 'Tomcat (software)', 8, 260, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4034, 'Jakarta Tomcat', 8, 260, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4035, 'ArcGIS Server', 8, 261, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4036, 'BEA-WebLogic', 8, 262, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4037, 'Bea Weblogic', 8, 262, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4038, 'Oracle Weblogic', 8, 262, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4039, 'Web Logic', 8, 262, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4040, 'BEA AS', 8, 262, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4041, 'BEA WebLogic', 8, 262, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4042, 'WebLogic', 8, 262, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4043, 'BEA Application Server', 8, 262, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4044, 'BEA Weblogic', 8, 262, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4045, 'Oracle WebLogic', 8, 262, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4046, 'Weblogic', 8, 262, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4047, 'Oracle Weblogic Server', 8, 262, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4048, 'WebLogic Application Server', 8, 262, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4049, 'Sun ONE Application Server', 8, 263, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4050, 'Oracle GlassFish Server', 8, 263, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4051, 'SJSAS', 8, 263, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4052, 'Java System Application Server', 8, 263, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4053, 'Glassfish Application Server', 8, 263, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4054, 'Sun GlassFish Enterprise Server', 8, 263, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4055, 'Glassfish server', 8, 263, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4056, 'Sun Java Application Server', 8, 263, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4057, 'Sun Java System Application Server', 8, 263, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4058, 'IPlanet Application Server', 8, 263, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4059, 'Haproxy', 8, 264, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4060, 'IBM HTTP Server', 8, 265, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4061, 'Microsoft IIS', 8, 266, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4062, 'Microsoft Internet Information Services', 8, 266, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4063, 'Internet Information Server', 8, 266, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4064, 'IIS 7', 8, 266, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4065, 'Microsoft Internet Information Server', 8, 266, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4066, 'IIS Media Services', 8, 266, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4067, 'Microsoft-IIS', 8, 266, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4068, 'MS IIS', 8, 266, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4069, 'IIS7', 8, 266, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4070, 'IIS Media Pack', 8, 266, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4071, 'Microsoft-iis', 8, 266, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4072, 'Microsoft IIS server', 8, 266, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4073, 'IIS Express', 8, 266, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4074, 'IIS server', 8, 266, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4075, 'Red Hat Software', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4076, 'RHTS', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4077, 'RHAT (NASDAQ)', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4078, 'Red Hat Czech', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4079, 'PNAELV', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4080, 'JBoss (company)', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4081, 'RHAT', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4082, 'Redhat.com', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4083, 'Red Hat Test Suite', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4084, 'Ntsysv', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4085, 'FUSE Message Broker', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4086, 'JBOSS', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4087, 'RESTEasy', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4088, 'Red Hat (company)', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4089, 'REDHAT', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4090, 'Red.ht', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4091, 'CloudForms', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4092, 'Red Hat High', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4093, 'Red Hat Enterprise MRG', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4094, 'JBoss', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4095, 'RED HAT', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4096, 'JBoss Group', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4097, 'Red hat', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4098, 'Red Hat', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4099, 'Red Hat MGR', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4100, 'Redhat', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4101, 'Red Hat MRG', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4102, 'RESTeasy', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4103, 'Red Hat Inc', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4104, 'Red Hat India', 8, 267, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4105, 'Red Hat Inc.', 8, 267, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4106, 'RedHat', 8, 267, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4107, 'Red Hat Software', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4108, 'RHTS', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4109, 'RHAT (NASDAQ)', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4110, 'Red Hat Czech', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4111, 'Fuse Message Broker', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4112, 'PNAELV', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4113, 'JBoss (company)', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4114, 'RHAT', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4115, 'Redhat.com', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4116, 'Red Hat Test Suite', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4117, 'Ntsysv', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4118, 'FUSE Message Broker', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4119, 'NASDAQ:RHAT', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4120, 'JBOSS', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4121, 'RESTEasy', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4122, 'Red Hat (company)', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4123, 'REDHAT', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4124, 'Red.ht', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4125, 'CloudForms', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4126, 'Red Hat High', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4127, 'Red Hat Enterprise MRG', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4128, 'JBoss', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4129, 'RED HAT', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4130, 'JBoss Group', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4131, 'Red hat', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4132, 'Red Hat', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4133, 'Red Hat MGR', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4134, 'Redhat', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4135, 'Red Hat MRG', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4136, 'RESTeasy', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4137, 'Red Hat Inc', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4138, 'Red Hat India', 8, 268, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4139, 'Red Hat Inc.', 8, 268, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4140, 'RedHat', 8, 268, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4141, 'Kitura', 8, 269, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4142, 'IBM Domino', 8, 270, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4143, 'Lucee', 8, 271, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4144, 'Netscape Application Server', 8, 272, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4145, 'Netscape Enterprise Server', 8, 273, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4146, 'Nginx plus', 8, 274, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4147, 'NGINX', 8, 274, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4148, 'Engine X', 8, 274, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4149, 'NGINX Unit', 8, 274, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4150, 'Oracle OC4J', 8, 275, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4151, 'OC4J', 8, 275, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4152, 'Oracle Application Server 10g', 8, 275, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4153, 'Oracle Imaging and Process Management', 8, 276, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4154, 'Oracle Content Management', 8, 276, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4155, 'WebCenter', 8, 276, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4156, 'Oracle Universal Content Management', 8, 276, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4157, 'Universal Content Management', 8, 276, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4158, 'Oracle WebCenter Imaging', 8, 276, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4159, 'Resin Server', 8, 278, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4160, 'Resin Application Server', 8, 278, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4161, 'Caucho Resin', 8, 278, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4162, 'Quercus (software)', 8, 278, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4163, 'NetWeawer', 8, 279, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4164, 'SAP Netweaver solution', 8, 279, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4165, 'Netweaver', 8, 279, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4166, 'SAP Central Process Scheduling', 8, 279, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4167, 'NetWeaver', 8, 279, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4168, 'Apache Spark', 8, 280, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4169, 'Sun Java System Web Server', 8, 281, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4170, 'Sun Java Enterprise System Web Server', 8, 281, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4171, 'IPlanet Web Server 4.1', 8, 281, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4172, 'Netscape Enterprise Server', 8, 281, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4173, 'Sun ONE Web Server', 8, 281, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4174, 'Netscape FastTrack Server', 8, 281, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4175, 'Sun Java Web Server', 8, 281, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4176, 'IPlanet Web Server', 8, 281, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4177, 'Sun-Java-System-Web-Server', 8, 281, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4178, 'webMethods Integration Server', 8, 283, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4179, 'WebSphere Application Server V3.0', 8, 284, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4180, 'WebSphere Application Server V5.0', 8, 284, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4181, 'Websphere 6', 8, 284, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4182, 'WAS 6', 8, 284, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4183, 'WebSphere Application Server', 8, 284, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4184, 'WebSphere', 8, 285, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4185, 'WebSphere Application Server V5.1 Business Integration Foundation Edition', 8, 285, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4186, 'WebSphere Application Server V6.0', 8, 285, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4187, 'WebSphere Application Server V5.0 Enterprise Edition', 8, 285, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4188, 'IBM WebSphere Real Time', 8, 285, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4189, 'Websphere', 8, 285, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4190, 'IBM Websphere', 8, 285, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4191, 'WebSphere Application Server V4.0', 8, 285, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4192, 'Websphere Software', 8, 285, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4193, 'IBM WebSphere Information Integration', 8, 285, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4194, 'WebSphere Information Integration', 8, 285, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4195, 'WebSphere Portal Server', 8, 286, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4196, 'WebSphere Process Server', 8, 287, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4197, 'Integrity NonStop', 4, 293, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4198, 'HP Integrity NonStop', 4, 293, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4199, 'HPE NonStop', 4, 293, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4200, 'Nonstop kernel', 4, 293, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4201, 'NonStop Kernel', 4, 293, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4202, 'NonStop OS', 4, 293, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4203, 'IBM Power System', 4, 295, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4204, 'Lpar2rrd', 4, 295, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4205, 'Power Systems', 4, 295, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4206, 'L5335', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4207, 'Xeon E5-26xx', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4208, 'Dunnington (microprocessor)', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4209, 'Cascades (microprocessor)', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4210, 'Scalable Memory Interconnect', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4211, 'X7460', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4212, 'Xeon E3-12xx', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4213, 'Xeonx', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4214, 'Woodcrest (microprocessor)', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4215, 'Pentium II Xeon', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4216, 'Tigerton (microprocessor)', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4217, 'Jasper Forest (microprocessor)', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4218, 'XEON', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4219, 'Xeon E7-48xx v3', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4220, 'Clovertown (microprocessor)', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4221, 'Xeon E5', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4222, 'Westmere-EX', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4223, 'Drake (microprocessor)', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4224, 'X5650', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4225, 'Xeon E3 v2', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4226, 'Wolfdale-DP (microprocessor)', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4227, 'Quad-Core Intel Xeon', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4228, 'Tanner (microprocessor)', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4229, 'Scalable memory interconnect', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4230, 'Intel Xeon CPU', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4231, 'Quad-Core Xeon', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4232, 'Intel Xeon E5', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4233, 'Xeon E3 v3', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4234, 'Dempsey (microprocessor)', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4235, 'Xeon Silver', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4236, 'Xeon E7-88xx v3', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4237, 'Harpertown (microprocessor)', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4238, 'Xeon E5 v3', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4239, 'Intel SMI', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4240, 'Gainestown (microprocessor)', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4241, 'Xeon MP', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4242, 'Dual-Core Xeon', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4243, 'Xeon E5-26xx v3', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4244, 'Intel Xeon Gold', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4245, 'Nancona', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4246, 'Haswell-EP', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4247, 'Intel Xeon Platinum', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4248, 'Sossaman (microprocessor)', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4249, 'Xeon E3', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4250, 'Xeon E7 v3', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4251, 'Xeon E7 v2', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4252, 'Intel Woodcrest', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4253, 'E5310', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4254, 'Intel Xeon Bronze', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4255, 'Xeon E5 v2', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4256, 'Pentium III Xeon', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4257, 'Nehalem-ex', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4258, 'Xeon E5-16xx', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4259, 'Intel Xeon Silver', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4260, 'Beckton (microprocessor)', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4261, 'Xeon E5-16xx v3', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4262, 'Xeon Bronze', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4263, 'Sossaman', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4264, 'Xeon E3-12xx v3', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4265, 'Intel Xeon', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4266, 'Xeon Platinum', 4, 296, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4267, 'Net Optics Taps', 4, 297, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4268, 'Oracle Database Machine', 4, 298, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4269, 'Exadata', 4, 298, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4270, 'Autoit', 9, 299, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4271, 'Autoit script', 9, 299, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4272, 'AutoIt3', 9, 299, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4273, 'AI3', 9, 299, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4274, 'Awk', 9, 300, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4275, 'Nawk', 9, 300, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4276, 'GNU Awk', 9, 300, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4277, 'GAWK', 9, 300, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4278, 'GNU awk', 9, 300, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4279, 'One true AWK', 9, 300, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4280, 'AWK (programming language)', 9, 300, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4281, 'AWK programming language', 9, 300, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4282, 'Awk (language)', 9, 300, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4283, 'Tawk', 9, 300, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4284, 'One True AWK', 9, 300, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4285, 'Gawk (GNU package)', 9, 300, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4286, 'Awk language', 9, 300, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4287, 'One true awk', 9, 300, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4288, 'Awk programming language', 9, 300, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4289, 'BASAIC programming language', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4290, 'Beginner All-Purpose Symbolic', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4291, 'Beginner''s All Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4292, 'Beginners All Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4293, 'Beginner All Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4294, 'Beginner''s All-Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4295, 'Basic programming language', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4296, 'Beginners'' All-Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4297, 'Beginners'' All-Purpose Symbolic', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4298, 'Basic (programming language)', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4299, 'Basic (language)', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4300, 'Basic computer language', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4301, 'Unstructured BASIC', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4302, 'B.A.S.I.C.', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4303, 'ECMA-55', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4304, 'Beginner All-Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4305, 'Compiled BASIC', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4306, 'Structured BASIC', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4307, 'Beginners All-Purpose Symbolic', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4308, 'Beginner''s All-Purpose Symbolic', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4309, 'ROM BASIC programming language', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4310, 'Beginners All-Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4311, 'BASIC language', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4312, 'BASIC (programming language)', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4313, 'Beginners All-purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4314, 'Basic (computer language)', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4315, 'Beginners'' All Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4316, 'ANSI BASIC', 9, 301, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4317, 'BASIC programming language', 9, 301, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4318, 'Beginner''s All-purpose Symbolic Instruction Code', 9, 301, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4319, 'C prog', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4320, 'C programming Language', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4321, 'C-programming', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4322, 'C programming language/Evolution', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4323, 'C (computer language)', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4324, 'C (programming langage)', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4325, 'C lang', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4326, 'C (lang)', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4327, 'C programing language', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4328, 'C (programming)', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4329, 'C78 (C version)', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4330, 'C programming', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4331, 'C Language', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4332, 'C language', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4333, 'C Programming', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4334, 'C program', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4335, 'C programming language/K and R C', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4336, 'C (language)', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4337, '32/16 bit C programming', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4338, 'C (software)', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4339, 'C(programming language)', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4340, 'C (Programming Language)', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4341, 'Programming language C', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4342, 'Computer language C', 9, 303, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4343, 'C programming language', 9, 303, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4344, 'C# (programming language)', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4345, 'C++++', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4346, 'Visual C Sharp .Net', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4347, 'Visual C Sharp Express Edition', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4348, 'C♯ (programming language)', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4349, 'Microsoft Visual C ♯', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4350, 'C Sharp language', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4351, 'C# programming language', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4352, 'ISO/IEC 23270', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4353, 'C Sharp Programming Language', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4354, 'Microsoft Visual C Sharp', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4355, 'C-sharp programming language', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4356, 'C ♯ (programming language)', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4357, 'C hash', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4358, 'C♯ (language)', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4359, 'C sharp (computing)', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4360, 'CS (programming language)', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4361, 'C sharp (language)', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4362, 'C Sharp (language)', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4363, 'ECMA-334', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4364, 'C-hash', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4365, 'C sharp 6.0', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4366, 'C♯ programming language', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4367, 'Visual C Sharp', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4368, 'C Sharp 5.0', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4369, 'C-Hash', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4370, 'C sharp programming language', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4371, 'ISO 23270', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4372, 'C Sharp Programming language', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4373, 'C Sharp (computing)', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4374, 'C # (programming language)', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4375, 'C sharp (programming language)', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4376, 'C hashtag', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4377, 'C Pound', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4378, 'C Sharp programming language', 9, 304, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4379, 'C plus plus', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4380, 'C++ 1.0', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4381, 'C plus plus programming language', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4382, 'ISO/IEC 14882:2003', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4383, 'C++ standard', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4384, 'Standard C++ Foundation', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4385, 'ISO/IEC 14882', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4386, 'Sepples', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4387, 'Cee plus plus', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4388, 'C++ program', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4389, 'C++ (Programming Language)', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4390, 'C+++', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4391, 'C++ syntax', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4392, 'ANSI C++', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4393, 'ISO C++', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4394, 'C++ (programming language)', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4395, 'C++ 2.0', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4396, 'C++ language', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4397, 'Cee Plus Plus', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4398, 'C Plus Plus programming language', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4399, 'Core language', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4400, 'ISO C++ programming language', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4401, 'Cplusplus', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4402, 'C++ programming language', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4403, 'C++98', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4404, 'ISO/IEC 14882:2014', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4405, '++C', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4406, 'CPlusPlus', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4407, 'ISO/IEC 14882:2015', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4408, 'C-plus-plus programming language', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4409, 'C-plus-plus', 9, 305, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4410, 'C Plus Plus', 9, 305, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4411, 'Microsoft C', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4412, 'Visual C++ .NET 2003', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4413, 'Embedded Visual C++', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4414, 'Visual C++ 2002', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4415, 'Visual C++ 5.0', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4416, 'Visual C++ 2010', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4417, 'Visual C++ .NET 2002', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4418, 'Visual C++ 2003', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4419, 'Vc++', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4420, 'MSVC90', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4421, 'Visual C++', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4422, 'MSVC 2005', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4423, 'Embedded visual c plus plus', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4424, 'Visual C++ 6.0', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4425, 'Visual C++ 2.0', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4426, 'Visual C++ 2008', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4427, 'Visual C plus plus', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4428, 'Visual C Plus Plus', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4429, 'MSVC80', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4430, 'Visual C++ 4.0', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4431, 'Visual C++ 2012', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4432, 'Visual C++ 4.2', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4433, 'VisualC++', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4434, 'MSVC110', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4435, 'VC++', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4436, 'MSVC120', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4437, 'Microsoft C compiler', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4438, 'MSVC 2010', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4439, 'Microsoft Visual C plus plus', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4440, 'MSVC100', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4441, 'MSVC71', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4442, 'Vc9', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4443, 'MSVC 2013', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4444, 'Visual C++ 1.0', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4445, 'MSVC 2003', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4446, 'Msvc', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4447, 'Visual C++ 2013', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4448, 'Microsoft Visual C Plus Plus', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4449, 'Visual C++ 2005', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4450, 'MSVC 2002', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4451, 'MSVC 2008', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4452, 'MSVC 2012', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4453, 'Visual c', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4454, 'MS Visual C++', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4455, 'Vc6', 9, 306, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4456, 'MSVC', 9, 306, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4457, 'CSS 3', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4458, 'Cascading Style Sheets', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4459, 'Cascading Stylesheets', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4460, 'Css1', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4461, 'Cascading Style Sheet', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4462, 'CSS stylesheet', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4463, 'CSS selector', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4464, 'CSS (internet)', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4465, 'Cascading style sheets', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4466, 'CSS1', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4467, 'Css 2.1', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4468, 'Aural Cascading Style Sheets', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4469, 'Css3', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4470, 'CSS 2', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4471, 'CSS2', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4472, 'CSs', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4473, 'CSS 1.0', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4474, 'Text/css', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4475, 'Css 2.0', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4476, 'CSS4', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4477, 'Cascading Style Sheets - CSS', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4478, 'Css 3', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4479, 'Css', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4480, 'Cascading style sheet', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4481, 'CSS 4', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4482, 'XML/XSL skin', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4483, 'CSS styles', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4484, 'CSS style sheets', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4485, 'Cascading Style Sheets 4', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4486, 'CSS styling', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4487, 'CSS 3.0', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4488, 'CSS style', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4489, 'CSS2.1', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4490, 'Cascading stylesheets', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4491, 'Css2', 9, 307, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4492, 'CSS3', 9, 307, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4493, 'Clipper programming language', 9, 308, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4494, 'CA clipper', 9, 308, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4495, 'Clipper prog', 9, 308, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4496, 'CA-Clipper', 9, 308, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4497, 'Clist', 9, 309, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4498, 'CoBoL', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4499, 'COBOL-85', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4500, 'COBOL 20XX', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4501, 'COBOL 85', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4502, 'ISO/IEC 1989', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4503, 'MF-COBOL', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4504, 'O-O COBOL', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4505, 'COBOL programming language', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4506, 'COBOL-74', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4507, 'COBOL 60', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4508, 'ISO 1989', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4509, 'COBOL 74', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4510, 'COBOL74', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4511, 'COBOL-68', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4512, 'OO COBOL', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4513, 'COBOL language', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4514, 'COBOL 1985', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4515, 'Common Ordinary Business-Oriented Language', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4516, 'COBOL 1968', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4517, 'COBOL 2014', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4518, 'Object-oriented COBOL', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4519, 'Common Business Oriented Language', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4520, 'COBOL (programming language)', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4521, 'X3J4', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4522, 'COBOL68', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4523, 'COBOL 1974', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4524, 'COBOL85', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4525, 'OO-COBOL', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4526, 'COBOL-60', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4527, 'COmmon Business-Oriented Language', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4528, 'COBOL 1960', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4529, 'COBOL 2002', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4530, 'RM/COBOL', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4531, 'COBOL 68', 9, 310, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4532, 'Common Business-Oriented Language', 9, 310, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4533, 'Cobol', 9, 310, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4534, 'CFML', 9, 311, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4535, 'Cfml', 9, 311, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4536, 'Data Language/1', 9, 312, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4537, 'IBM Data Language One (DL/1)', 9, 312, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4538, 'DL/I', 9, 312, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4539, 'DL/1', 9, 312, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4540, 'Borland Delphi 2006', 9, 313, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4541, 'Delphi rad', 9, 313, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4542, 'Delphi 2006', 9, 313, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4543, 'Delphi XE2', 9, 313, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4544, 'RAD Studio', 9, 313, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4545, 'Embarcadero RAD Studio', 9, 313, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4546, 'Delphi 2009', 9, 313, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4547, 'Delphi XE', 9, 313, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4548, 'CodeGear Delphi', 9, 313, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4549, 'Delphi (IDE)', 9, 313, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4550, 'Delphi XE4', 9, 313, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4551, 'Delphi XE3', 9, 313, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4552, 'Borland Delphi', 9, 313, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4553, 'Delphi code', 9, 313, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4554, 'Delphi 4', 9, 313, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4555, 'Embarcadero Delphi', 9, 313, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4556, 'Easytrieve', 9, 314, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4557, 'Expect', 9, 315, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4558, 'Xhtml11', 9, 316, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4559, 'Xhtml strict', 9, 316, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4560, 'XHTML 1.0', 9, 316, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4561, 'XHTML 1.1', 9, 316, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4562, 'Xhtml', 9, 316, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4563, 'Xht', 9, 316, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4564, 'Xhtml 2', 9, 316, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4565, 'EXtensible HyperText Markup Language', 9, 316, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4566, 'XHTML2', 9, 316, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4567, 'X(HTML)', 9, 316, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4568, 'XHTML 2.0', 9, 316, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4569, 'Extensible HyperText Markup Language', 9, 316, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4570, 'XHTML 2', 9, 316, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4571, 'Extensible Hypertext Markup Language', 9, 316, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4572, 'EXtensible Hypertext Markup Language', 9, 316, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4573, '(X)HTML', 9, 316, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4574, 'XML feed', 9, 317, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4575, 'XML feeds', 9, 317, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4576, 'Well-formed XML', 9, 317, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4577, 'Extended markup language', 9, 317, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4578, 'EXtensible Markup Language', 9, 317, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4579, 'Xml:lang', 9, 317, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4580, 'Xml parser', 9, 317, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4581, 'XML tag set', 9, 317, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4582, 'Web3S', 9, 317, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4583, 'Extensible markup language', 9, 317, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4584, 'Xml', 9, 317, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4585, 'Extended Markup Language', 9, 317, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4586, 'Dynamic XML', 9, 317, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4587, 'XML parser', 9, 317, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4588, 'Text/xml', 9, 317, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4589, 'Extensible Markup Language', 9, 317, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4590, 'Valid XML document', 9, 317, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4591, 'MS XML', 9, 318, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4592, 'Microsoft XML Core Services', 9, 318, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4593, 'Xsl', 9, 319, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4594, 'Extensible stylesheet language', 9, 319, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4595, 'EXtensible Stylesheet Language', 9, 319, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4596, 'XSL stylesheet', 9, 319, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4597, 'XSL stylesheets', 9, 319, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4598, 'Extensible Stylesheet Language', 9, 319, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4599, 'XML template engine', 9, 320, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4600, 'XSL Transformation', 9, 320, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4601, 'XSLT 2.0', 9, 320, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4602, 'Xslt', 9, 320, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4603, 'XSLT processor', 9, 320, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4604, 'XLST', 9, 320, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4605, 'XML template processor', 9, 320, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4606, 'XSL-T', 9, 320, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4607, 'XSL Transformations', 9, 320, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4608, 'Extensible Stylesheet Language Transformations', 9, 320, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4609, 'Focus (software)', 9, 321, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4610, 'Focus software', 9, 321, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4611, 'FORTRAN', 9, 322, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4612, 'Formula Translation', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4613, 'Fortran 77', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4614, 'FORTRAN II', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4615, 'Formula Translator', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4616, 'FORTRAN 66', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4617, 'FORTRAN programming language', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4618, 'Fortran (programming language)', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4619, 'Fortran 2018', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4620, 'Fortran IV', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4621, 'Fortran 2008', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4622, 'Format (Fortran 66)', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4623, 'Fortran 66', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4624, 'Fortran programming language', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4625, 'FORTRAN77', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4626, 'ECMA-9', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4627, 'Fortran language', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4628, 'FORTRAN IV', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4629, 'Fortran 95', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4630, 'F77', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4631, 'Fortran 2003', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4632, 'FORTRAN 77', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4633, 'Visual Fortran', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4634, 'Fortran 90', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4635, 'FORTRAN (programming language)', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4636, 'FORTRAN 86', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4637, 'Formula translation', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4638, 'F2003', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4639, 'Fort77', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4640, 'Fortran 5 (programming language)', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4641, 'F95', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4642, 'Fortran 8X', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4643, 'Fortran 2015', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4644, 'Fortran-66', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4645, 'FORTRAN I', 9, 322, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4646, 'Go (Programming language)', 9, 323, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4647, 'Gccgo', 9, 323, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4648, 'Go Programming Language', 9, 323, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4649, 'Google go', 9, 323, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4650, 'Go language', 9, 323, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4651, 'Golang', 9, 323, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4652, 'Go google', 9, 323, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4653, 'Go (language)', 9, 323, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4654, 'GoLang', 9, 323, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4655, 'Go lang', 9, 323, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4656, 'Go programming language', 9, 323, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4657, 'Google Go', 9, 323, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4658, 'Graphql', 9, 324, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4659, 'Groovy', 9, 325, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4660, 'Dynamic Hypertext Markup Language', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4661, 'HTML file', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4662, 'Hypertext markup language', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4663, 'HTML4', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4664, 'Basic HTML', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4665, 'HTM file', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4666, 'HTML 4.01', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4667, 'ISO/IEC HTML', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4668, 'Hyper text Markup Language', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4669, 'Hypertext Markup Language (HTML)', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4670, 'Hyper Text Markup Language', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4671, 'HTML2', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4672, 'HTML 4', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4673, 'HTML 3.2', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4674, 'HTML+', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4675, 'HLMT', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4676, 'ISO/IEC 15445', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4677, 'Hyper text markup language', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4678, 'Html comment', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4679, 'HTML code', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4680, 'HTML strict', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4681, 'HyperText Markup Language', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4682, 'HTML 4.0', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4683, 'Html', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4684, 'Html language', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4685, 'Html code', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4686, 'HTML File Format', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4687, 'HTML syntax', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4688, 'HTML 3', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4689, 'HMTL', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4690, 'Text/html', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4691, 'Html coding', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4692, 'HTML 2', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4693, 'HTML3', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4694, 'Html 4.01', 9, 327, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4695, 'Hypertext Markup Language', 9, 327, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4696, 'HLASM', 9, 328, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4697, 'IBM High-Level Assembler', 9, 328, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4698, 'IBM High Level Assembler (HLASM)', 9, 328, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4699, 'AS/400 Control Language', 9, 329, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4700, 'CL Programming', 9, 329, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4701, 'Control Language Programming', 9, 329, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4702, 'CL (OS/400 command interpreter)', 9, 329, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4703, 'AS/400 Command Language', 9, 329, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4704, 'IBM i Control Language', 9, 329, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4705, 'Informix 4GL/SQL', 9, 330, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4706, 'Informix-4GL', 9, 330, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4707, 'Java programming language', 9, 331, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4708, 'Javax', 9, 331, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4709, 'Java (software)', 9, 331, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4710, 'Java (Programming language)', 9, 331, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4711, 'Javalang', 9, 331, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4712, 'Java Programming', 9, 331, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4713, 'JPD (file format)', 9, 331, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4714, 'Java (programming)', 9, 331, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4715, 'Java (langage)', 9, 331, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4716, 'Java language', 9, 331, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4717, 'Java technology', 9, 331, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4718, 'Flow Java', 9, 331, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4719, 'Java (language)', 9, 331, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4720, 'Java programming', 9, 331, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4721, 'Java (Programming Language)', 9, 331, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4722, 'Java prog', 9, 331, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4723, 'Java code', 9, 331, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4724, 'Java computer language', 9, 331, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4725, 'Java Programing Languge', 9, 331, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4726, 'Xsl', 9, 332, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4727, 'Extensible stylesheet language', 9, 332, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4728, 'EXtensible Stylesheet Language', 9, 332, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4729, 'XSL stylesheet', 9, 332, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4730, 'XSL stylesheets', 9, 332, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4731, 'Extensible Stylesheet Language', 9, 332, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4732, 'JavaEE', 9, 333, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4733, 'Java EE', 9, 333, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4734, 'J2EE', 9, 333, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4735, 'Enterprise Java', 9, 333, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4736, 'Java enterprise', 9, 333, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4737, 'JSR 313', 9, 333, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4738, 'Java EE 5', 9, 333, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4739, 'Java Platform', 9, 333, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4740, 'Java Enterprise Edition', 9, 333, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4741, 'Java Enterprise Platform', 9, 333, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4742, 'JSR 58', 9, 333, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4743, 'Java 2 Platform', 9, 333, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4744, 'Java ee', 9, 333, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4745, 'J2EE 1.4', 9, 333, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4746, 'Jakarta Enterprise Edition', 9, 333, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4747, 'J2EE 1.3', 9, 333, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4748, 'Java 2 Enterprise Edition', 9, 333, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4749, 'J2EE 1.2', 9, 333, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4750, 'JSR 151', 9, 333, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4751, 'JSR 244', 9, 333, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4752, 'J2ee', 9, 333, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4753, 'J2SE', 9, 334, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4754, 'Java 2 Platform Standard Edition', 9, 334, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4755, 'Java SE', 9, 334, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4756, 'JSR 59', 9, 334, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4757, 'Javase', 9, 334, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4758, 'J2se', 9, 334, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4759, 'Java 2 Platform', 9, 334, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4760, 'Java 2 Standard Edition', 9, 334, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4761, 'Java Standard Edition', 9, 334, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4762, 'JavaSE', 9, 334, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4763, 'Java se', 9, 334, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4764, 'JSR 270', 9, 334, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4765, 'Java SE platform', 9, 334, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4766, 'JSR 176', 9, 334, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4767, 'JSR 152', 9, 335, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4768, 'JSP compiler', 9, 335, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4769, 'JSP container', 9, 335, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4770, 'Jave Page', 9, 335, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4771, 'Jakarta Server Pages compiler', 9, 335, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4772, 'Jave Server', 9, 335, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4773, 'Java server pages', 9, 335, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4774, 'Javaserver pages', 9, 335, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4775, 'Jsp2', 9, 335, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4776, 'JSP files', 9, 335, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4777, 'Java Server Page', 9, 335, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4778, 'Java Server Pages', 9, 335, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4779, 'JSP engine', 9, 335, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4780, 'JSPF', 9, 335, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4781, 'JSR 245', 9, 335, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4782, 'JavaServer Pages compiler', 9, 335, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4783, 'JavaServer Page', 9, 335, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4784, 'JavaServer Pages', 9, 335, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4785, 'Scriptlets', 9, 336, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4786, 'JavaScripts', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4787, 'Live-script', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4788, 'JavaScript programming language', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4789, 'Mocha (programming language)', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4790, 'JavaScript rollover', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4791, 'Live-Script', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4792, 'Javascript Console', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4793, 'Server side javascript', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4794, 'Live script', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4795, 'Javascript programming language', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4796, 'JavaScript Forums', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4797, 'JavaScript 1.6', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4798, 'Javascript', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4799, 'JavaScript language', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4800, 'Escript', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4801, 'JavaScript (programming language)', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4802, 'Client-side JavaScript', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4803, 'Javascript (programming language)', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4804, 'Vanilla JS', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4805, 'SSJS', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4806, 'Javascript 1.7', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4807, 'Java script', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4808, 'Java Script', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4809, 'JavaScript 1.7', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4810, 'DOM scripting', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4811, 'Vanilla JavaScript', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4812, 'Live Script', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4813, 'CSJS', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4814, 'Server-side JavaScript', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4815, 'Server-Side JavaScript', 9, 337, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4816, 'IBM JCL', 9, 338, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4817, 'Job Control Statements', 9, 338, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4818, 'Job management language', 9, 338, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4819, 'Job entry control language', 9, 338, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4820, 'JECL', 9, 338, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4821, 'Job control language', 9, 338, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4822, 'Jscript', 9, 340, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4823, 'Microsoft JScript', 9, 340, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4824, 'JS script', 9, 340, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4825, 'ActiveXObject', 9, 340, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4826, 'Managed JScript', 9, 340, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4827, 'Lisp computer language', 9, 341, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4828, 'Lisp language', 9, 341, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4829, 'Lisp atom', 9, 341, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4830, 'LISP (programming language)', 9, 341, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4831, 'LISP atom', 9, 341, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4832, 'Lisp (programming)', 9, 341, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4833, 'List Processing', 9, 341, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4834, 'Lisp (language)', 9, 341, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4835, 'MuLISP', 9, 341, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4836, 'LISP', 9, 341, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4837, 'LISP language', 9, 341, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4838, 'Lisp 1.5', 9, 341, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4839, 'LISP programming language', 9, 341, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4840, 'Lisp programming language', 9, 341, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4841, 'LISP 1.5', 9, 341, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4842, 'Lithp (programming language)', 9, 341, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4843, 'Lisp renaissance', 9, 341, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4844, 'LISP (programming)', 9, 341, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4845, 'NPL (Programming language)', 9, 342, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4846, 'NPL programming language', 9, 342, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4847, 'Obj-C', 9, 343, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4848, 'ObjC', 9, 343, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4849, 'Objc', 9, 343, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4850, 'Objective-C 2.0', 9, 343, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4851, 'Objective C++', 9, 343, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4852, 'Objective-C++', 9, 343, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4853, 'Objective C', 9, 343, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4854, 'Object C', 9, 343, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4855, 'Objective-C (programming language)', 9, 343, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4856, 'Obj-c', 9, 343, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4857, 'ObjC programming language', 9, 343, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4858, 'Objective c', 9, 343, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4859, 'C and Smalltalk', 9, 343, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4860, 'Objective-c', 9, 343, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4861, 'ObjectiveC', 9, 343, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4862, 'Obj C', 9, 343, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4863, 'Objective-C programming language', 9, 343, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4864, 'Obj C programming language', 9, 343, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4865, 'Objective C programming language', 9, 343, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4866, 'Objective C plus plus', 9, 343, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4867, 'Obj-C programming language', 9, 343, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4868, 'Smalltalk and C', 9, 343, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4869, 'Object-C', 9, 343, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4870, 'OpenEdge Advanced Business Language (ABL)', 9, 344, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4871, 'OpenEdge Database', 9, 344, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4872, 'OpenEdge ABL', 9, 344, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4873, 'OpenEdge Advance Business Language (ABL)', 9, 344, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4874, 'Progress RDBMS', 9, 344, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4875, 'Progress DBMS', 9, 344, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4876, 'Advanced Business Language', 9, 344, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4877, 'Progress (software)', 9, 344, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4878, 'Progress4GL', 9, 344, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4879, 'Webspeed', 9, 344, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4880, 'Progress 4GL', 9, 344, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4881, 'Pascal-SC', 9, 345, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4882, 'Pascal-P1', 9, 345, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4883, 'Pascal (language)', 9, 345, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4884, 'Pascal-P', 9, 345, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4885, 'Pascal programming language', 9, 345, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4886, 'PASCAL-XSC', 9, 345, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4887, 'Pascal-S', 9, 345, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4888, 'Pascal Programming Language', 9, 345, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4889, 'PASCAL-SC', 9, 345, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4890, 'PASCAL (Programming language)', 9, 345, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4891, 'Pascal-P2', 9, 345, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4892, 'Pascal-P3', 9, 345, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4893, 'Pascal-P system', 9, 345, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4894, 'Pascal-P System', 9, 345, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4895, 'Pascal-F', 9, 345, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4896, 'Pascal (command)', 9, 345, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4897, 'ISO/IEC 10206', 9, 345, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4898, 'Pascal-P5', 9, 345, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4899, 'Pascal language', 9, 345, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4900, 'Pascal-p2', 9, 345, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4901, 'Pascal 86', 9, 345, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4902, 'Pascal-P4', 9, 345, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4903, 'Pascal-XSC', 9, 345, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4904, 'Delphi (language)', 9, 346, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4905, 'Delphi programming language', 9, 346, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4906, 'Delphi (programming language)', 9, 346, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4907, 'Object-Oriented Pascal', 9, 346, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4908, 'Delphi language', 9, 346, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4909, 'Delphi (Computer Language)', 9, 346, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4910, 'Delphi programming', 9, 346, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4911, 'Perl 7', 9, 347, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4912, 'Perl (programming language)', 9, 347, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4913, 'Practical Extraction and Report Language', 9, 347, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4914, 'Perl interpreter', 9, 347, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4915, 'Vanilla Perl', 9, 347, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4916, 'Practical Extraction And Report Language', 9, 347, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4917, 'Ponie', 9, 347, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4918, 'Embedded Perl', 9, 347, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4919, 'Perl language', 9, 347, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4920, 'X-perl', 9, 347, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4921, 'Perl programming language', 9, 347, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4922, 'Swiss army chainsaw', 9, 347, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4923, 'IndigoPerl', 9, 347, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4924, 'Perl code', 9, 347, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4925, 'Swiss-army chainsaw', 9, 347, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4926, 'Perl5', 9, 347, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4927, 'PONIE', 9, 347, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4928, 'PERL', 9, 347, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4929, 'Perl 5', 9, 347, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4930, 'Perl programming', 9, 347, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4931, 'Perl (language)', 9, 347, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4932, 'PerlScript', 9, 348, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4933, 'Active Perl', 9, 348, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4934, 'Activeperl', 9, 348, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4935, 'Perlscript', 9, 348, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4936, 'Perl 7', 9, 349, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4937, 'Perl (programming language)', 9, 349, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4938, 'Practical Extraction and Report Language', 9, 349, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4939, 'Perl interpreter', 9, 349, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4940, 'Vanilla Perl', 9, 349, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4941, 'Practical Extraction And Report Language', 9, 349, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4942, 'Ponie', 9, 349, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4943, 'Embedded Perl', 9, 349, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4944, 'Perl language', 9, 349, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4945, 'X-perl', 9, 349, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4946, 'Perl programming language', 9, 349, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4947, 'Perl Golf', 9, 349, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4948, 'Swiss army chainsaw', 9, 349, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4949, 'IndigoPerl', 9, 349, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4950, 'Perl code', 9, 349, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4951, 'Swiss-army chainsaw', 9, 349, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4952, 'Perl5', 9, 349, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4953, 'PONIE', 9, 349, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4954, 'PERL', 9, 349, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4955, 'Perl 5', 9, 349, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4956, 'Perl programming', 9, 349, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4957, 'Perl (language)', 9, 349, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4958, 'Php language', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4959, 'Php (programming language)', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4960, 'Zend Engine 3', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4961, 'Php 5.3', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4962, 'PHP interpreter', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4963, 'PHP (programming language)', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4964, 'Php 4', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4965, 'PHP 5', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4966, 'PHPNG', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4967, 'PHP8', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4968, 'PHP Next Generation', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4969, 'PHP5-FPM', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4970, 'PHP5', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4971, 'PHP4', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4972, 'Php 5.4', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4973, 'Php 5.1', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4974, 'PHP-FPM', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4975, 'Php', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4976, 'PHTML', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4977, 'PHP/FI', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4978, 'Php-fpm', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4979, 'Php6', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4980, 'PHP 6', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4981, 'Php 5.0', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4982, 'PHP3', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4983, 'Php 6.0', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4984, 'Zephir (programming language)', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4985, 'Php1', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4986, 'PHP:Hypertext Preprocessor', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4987, 'Php 3', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4988, 'PHP7', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4989, 'PHP programming', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4990, 'Phtml', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4991, 'Php 5.2', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4992, 'Php5', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4993, 'Php2', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4994, 'Phpng', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4995, 'PHP Hypertext Preprocessor (programming language)', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4996, 'PHP next generation', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4997, 'Php3', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4998, 'PHP6', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4999, 'PHP programing language', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5000, 'PHP 7', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5001, 'Php 1', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5002, 'Php 2', 9, 350, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5003, 'Hypertext Preprocessor', 9, 350, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5004, 'PHP programming language', 9, 350, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5005, 'PHP: Hypertext Preprocessor', 9, 350, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5006, 'PHP Hypertext Preprocessor', 9, 350, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5007, 'SL/1', 9, 351, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5008, 'PL/1', 9, 351, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5009, 'Pl/1', 9, 351, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5010, 'PL1 language', 9, 351, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5011, 'PL/I programming language', 9, 351, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5012, 'Visual PL/1', 9, 351, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5013, 'DEC PL/I', 9, 351, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5014, 'PL/I-80', 9, 351, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5015, 'PL/MP', 9, 351, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5016, 'Raincode PL/1', 9, 351, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5017, 'PL/I-86', 9, 351, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5018, 'PLI programming language', 9, 351, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5019, 'PL/I (programming language)', 9, 351, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5020, 'PL1 programming language', 9, 351, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5021, 'PL/MI', 9, 351, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5022, 'PLI-86', 9, 351, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5023, 'VAX PL/I', 9, 351, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5024, 'PL/Ⅰ', 9, 351, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5025, 'RainCode PL/1', 9, 351, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5026, 'PL/1 programming language', 9, 351, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5027, 'StepSqlite', 9, 352, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5028, 'PLSQL', 9, 352, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5029, 'P/SQL', 9, 352, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5030, 'PL SQL', 9, 352, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5031, 'Pro*C++', 9, 353, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5032, 'Pro C', 9, 353, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5033, 'Pro*C/C++', 9, 353, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5034, 'Python scripting language', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5035, 'Python program', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5036, 'PythonLanguage', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5037, 'Python computer language', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5038, 'Python code', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5039, 'Python3', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5040, 'Python (computing)', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5041, 'Python programming language', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5042, 'Python programming', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5043, 'Pythonistas', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5044, 'PEP8', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5045, 'Pyston', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5046, 'Python language', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5047, 'Python (lang)', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5048, 'Python2', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5049, 'Python3000', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5050, 'Python 3k', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5051, 'Python (language)', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5052, 'Coconut (programming language)', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5053, 'Python (software)', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5054, 'Pythonlang', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5055, 'Python prog', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5056, 'Python Programming', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5057, 'Python Programming Language', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5058, 'Python (scripting language)', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5059, 'Pythonista', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5060, 'Python (programming)', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5061, 'Python (Programming Language)', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5062, 'Python (computer language)', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5063, 'Python 3K', 9, 354, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5064, 'R project', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5065, 'R (programming)', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5066, 'R Shiny', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5067, 'GNU-S', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5068, 'RStat', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5069, 'R programming language', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5070, 'R Statistics', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5071, 'R-stat', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5072, 'R lang', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5073, 'RPro', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5074, 'R code', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5075, 'R-Project', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5076, 'R (computer language)', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5077, 'R Project', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5078, 'R programming', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5079, 'R (program)', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5080, 'R-project', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5081, 'R (software)', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5082, 'R-Stat', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5083, 'Rstat', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5084, 'RGL (software package)', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5085, 'R (language)', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5086, 'Rlang', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5087, 'ParallelR', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5088, 'R Open', 9, 355, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5089, 'GNU R', 9, 355, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5090, 'GNU S', 9, 355, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5091, 'R language', 9, 355, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5092, 'Quercus Personal REXX', 9, 356, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5093, 'Personal Rexx', 9, 356, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5094, 'Personal REXX', 9, 356, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5095, 'REstructured eXtended eXecutor', 9, 356, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5096, 'Enterprise REXX', 9, 356, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5097, 'Rexx programming language', 9, 356, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5098, 'IBM REXX', 9, 356, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5099, 'Restructured Extended Executor', 9, 356, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5100, 'REXX', 9, 356, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5101, 'Kilowatt Portable REXX', 9, 356, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5102, 'Pmrexx', 9, 356, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5103, 'Enterprise Alternatives REXX', 9, 356, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5104, 'Kilowatt Portable Rexx', 9, 356, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5105, 'Restructured extended executor', 9, 356, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5106, 'Quercus Personal Rexx', 9, 356, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5107, 'REXX (programming language)', 9, 356, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5108, 'Portable REXX', 9, 356, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5109, 'Portable Rexx', 9, 356, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5110, 'REXX programming language', 9, 356, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5111, 'Report Program Generator', 9, 357, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5112, 'Report program generator', 9, 357, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5113, 'RPGLE', 9, 357, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5114, 'RPG (programming language)', 9, 357, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5115, 'IBM RPG (programming language)', 9, 357, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5116, 'RPG IV', 9, 357, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5117, 'RPG programming language', 9, 357, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5118, 'Ruby (Programming Language)', 9, 358, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5119, 'Ruby Programming Language', 9, 358, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5120, 'Ruby programming', 9, 358, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5121, 'Ruby Enterprise Edition', 9, 358, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5122, 'Ruby language', 9, 358, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5123, 'Ruby (language)', 9, 358, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5124, 'Ruby (programming language', 9, 358, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5125, 'Ruby (lang)', 9, 358, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5126, 'Ruby lang', 9, 358, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5127, 'Ruby-gnome2', 9, 358, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5128, 'Ruby-language', 9, 358, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5129, 'Ruby (computing)', 9, 358, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5130, 'Ruby programming language', 9, 358, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5131, 'Rubylang', 9, 358, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5132, 'Ruby prog', 9, 358, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5133, 'SAS (Software)', 9, 360, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5134, 'SAS System', 9, 360, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5135, 'SAS (programming language)', 9, 360, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5136, 'SAS/STAT', 9, 360, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5137, 'Interactive Matrix Language', 9, 360, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5138, 'Statistical Analysis System', 9, 360, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5139, 'Scss', 9, 361, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5140, 'Sass CSS', 9, 361, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5141, 'Sass (CSS)', 9, 361, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5142, 'Sass (Stylesheet Language)', 9, 361, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5143, 'Sass (markup language)', 9, 361, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5144, 'SASS (language)', 9, 361, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5145, 'Sass (software)', 9, 361, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5146, 'Libsass', 9, 361, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5147, 'Scala programming language', 9, 362, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5148, 'Scala language', 9, 362, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5149, 'Scala.js (programming language)', 9, 362, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5150, 'ScalaNative', 9, 362, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5151, 'ScalaNative (programming language)', 9, 362, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5152, 'Scala-JS (Programming Language)', 9, 362, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5153, 'Scala-JS', 9, 362, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5154, 'Scala Native', 9, 362, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5155, 'ScalaJS (Programming Language)', 9, 362, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5156, 'Scala (programming language', 9, 362, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5157, 'ScalaJs (programming language)', 9, 362, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5158, 'Scala.js', 9, 362, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5159, 'Scala Native (programming language)', 9, 362, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5160, 'Smalltalk (programming language)', 9, 363, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5161, 'Smalltalk programming language', 9, 363, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5162, 'Smalltak', 9, 363, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5163, 'Smalltalk-80', 9, 363, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5164, 'Smalltalk Programming Language', 9, 363, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5165, 'Smalltalk-72', 9, 363, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5166, 'SmallTalk', 9, 363, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5167, 'Smalltalk/V', 9, 363, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5168, 'Visual Smalltalk', 9, 363, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5169, 'Smalltalk 80', 9, 363, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5170, 'SmallTalk programming language', 9, 363, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5171, 'Swift (Apple programming language)', 9, 364, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5172, 'Swift programming language', 9, 364, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5173, 'Swift language', 9, 364, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5174, 'Apple Swift', 9, 364, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5175, 'SwiftNIO', 9, 364, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5176, 'Swiftlang', 9, 364, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5177, 'Tool Command Language', 9, 365, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5178, 'Safe-Tcl', 9, 365, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5179, 'Tcl (computer language)', 9, 365, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5180, 'Object-oriented programming in Tcl', 9, 365, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5181, 'Tcl (programming language)', 9, 365, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5182, 'Tcl programming language', 9, 365, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5183, 'Tcl/tk', 9, 365, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5184, 'TclTk', 9, 365, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5185, 'Tsql', 9, 366, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5186, 'Transact SQL', 9, 366, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5187, 'TSQL', 9, 366, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5188, 'T-sql', 9, 366, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5189, 'T-SQL', 9, 366, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5190, 'Microsoft TypeScript', 9, 367, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5191, 'VB.NET', 9, 368, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5192, 'Microsoft Visual Basic.NET', 9, 368, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5193, 'VB.Net', 9, 368, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5194, 'VB.net', 9, 368, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5195, 'Microsoft Visual Basic 2008 Express', 9, 368, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5196, 'VB 2005', 9, 368, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5197, 'VBx', 9, 368, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5198, 'Vb dot net', 9, 368, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5199, 'Visual Basic 2005', 9, 368, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5200, 'Visual Basic .Net', 9, 368, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5201, 'Visual BASIC .net', 9, 368, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5202, 'Visual Basic.NET', 9, 368, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5203, 'Vb.net', 9, 368, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5204, 'Visual Basic (.NET Version)', 9, 368, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5205, 'Visual Basic .NET 2003', 9, 368, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5206, 'VB .NET', 9, 368, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5207, 'Visual basic .net', 9, 368, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5208, 'Visual Basic.net', 9, 368, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5209, 'Visual Basic.Net', 9, 368, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5210, 'Microsoft Visual Basic .NET', 9, 368, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5211, 'Visual Basic .net', 9, 368, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5212, 'Vbscript', 9, 369, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5213, 'VB Script', 9, 369, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5214, 'VBS Script', 9, 369, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5215, 'VBScript (programming language)', 9, 369, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5216, 'VBSCRIPT', 9, 369, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5217, 'VB script', 9, 369, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5218, 'Visual Basic Scripting', 9, 369, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5219, 'VBscript', 9, 369, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5220, 'Visual Basic Script Edition', 9, 369, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5221, 'Visual Basic Scripting Edition', 9, 369, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5222, 'VBSScript', 9, 369, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5223, 'Visual Basic Script', 9, 369, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5224, 'VbScript', 9, 369, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5225, 'VBScript programming language', 9, 369, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5226, 'Visual Basic 6', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5227, 'Visual basic', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5228, 'Microsoft Visual Basic 5.0', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5229, 'Visual basic 6', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5230, 'Microsoft Visual Basic 6.0', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5231, 'Vbasic', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5232, 'Microsoft Visual Basic 6', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5233, 'Visual Basic 6.0', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5234, 'VB4', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5235, 'VB6', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5236, 'Classic Visual Basic', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5237, 'Microsoft Visual Basic', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5238, 'Hummingbird Basic', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5239, 'MSVB', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5240, 'VBP', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5241, 'VB3', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5242, 'Visual Basic 6 Portable', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5243, 'Visual Basic programming language', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5244, 'Microsoft Visual BASIC', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5245, 'VBLang', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5246, 'Visual Basic Control', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5247, 'VisualBasic', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5248, 'VBDOS 1.0', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5249, 'Virtual Basic', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5250, 'Visual BASIC', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5251, 'Visual Basic Classic', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5252, 'Visual Basic 5', 9, 370, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5253, 'Microsoft visual basic for applications', 9, 371, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5254, 'Visual Basic for Applications programming language', 9, 371, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5255, 'Visual basic for applications', 9, 371, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5256, 'Visual Foxpro', 9, 372, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5257, 'Visual Fox pro', 9, 372, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5258, 'Microsoft Visual FoxPro', 9, 372, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5259, 'Microsoft Visual Fox pro', 9, 372, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5260, 'Microsoft Visual Foxpro', 9, 372, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5261, 'Visual FoxPro programming language', 9, 372, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5262, 'Visual Fox Pro', 9, 372, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5263, 'Microsoft Visual Fox Pro', 9, 372, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5264, 'VXML', 9, 373, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5265, 'Voice XML', 9, 373, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5266, 'Voicexml', 9, 373, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5267, 'Xbase++', 9, 374, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5268, 'XBase plus plus', 9, 374, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5269, 'Clucene', 12, 375, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5270, 'KinoSearch', 12, 375, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5271, 'Kinosearch', 12, 375, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5272, 'Solr/Lucene', 12, 375, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5273, 'Lucene', 12, 375, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5274, 'Apache Xerces', 12, 376, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5275, 'Bootstarpping', 12, 377, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5276, 'Boot strap', 12, 377, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5277, 'Bootstrapped', 12, 377, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5278, 'Bootstrap support', 12, 377, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5279, 'Bootstrapping (computing)', 12, 377, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5280, 'Bootstrapper', 12, 377, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5281, 'Boot-strap', 12, 377, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5282, 'Bootstrap (word origin)', 12, 377, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5283, 'Java|Apache Camel', 12, 378, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5284, 'Java|Apache Commons BeanUtils', 12, 379, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5285, 'PDFBox', 12, 380, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5286, 'Velocity apache', 12, 381, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5287, 'Velocity (software)', 12, 381, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5288, 'Jakarta Velocity', 12, 381, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5289, 'Java|EclipseLink', 12, 382, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5290, 'Enterprise JavaBeans', 12, 383, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5291, 'EJB', 12, 383, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5292, 'Enterprise Java Beans', 12, 383, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5293, 'Enterprise Beans', 12, 383, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5294, 'Enterprise beans', 12, 383, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5295, 'Enterprise JavaBean', 12, 383, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5296, 'Enterprise Bean', 12, 383, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5297, 'SLSB', 12, 383, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5298, 'Enterprise bean', 12, 383, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5299, 'SFSB', 12, 383, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5300, 'Jakarta Enterprise Bean', 12, 383, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5301, 'Bean-Managed Persistence', 12, 383, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5302, 'Enterprise Java Bean', 12, 383, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5303, 'Java Enterprise Bean', 12, 383, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5304, 'EJB Container', 12, 383, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5305, 'Jakarta Enterprise beans', 12, 383, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5306, 'Jakarta Enterprise bean', 12, 383, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5307, 'JSR 153', 12, 383, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5308, 'JSR 19', 12, 383, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5309, 'EJB container', 12, 383, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5310, 'Ejb', 12, 383, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5311, 'JSR 220', 12, 383, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5312, 'Container-Managed Persistence', 12, 383, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5313, 'Message-driven EJB', 12, 383, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5314, 'JSNI', 12, 385, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5315, 'Hibernate Query Language', 12, 386, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5316, 'Hibernate (Java)', 12, 386, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5317, 'Hibernate OGM', 12, 386, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5318, 'Hibernate (software)', 12, 386, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5319, 'Hibernet', 12, 386, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5320, 'Hibernate Core', 12, 386, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5321, 'Hibernate (java)', 12, 386, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5322, 'Java 2 SDK', 12, 388, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5323, 'JDK', 12, 388, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5324, 'Java SDK', 12, 388, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5325, 'J2SDK', 12, 388, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5326, 'Java 2 Software Development Kit', 12, 388, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5327, 'JDK 1.2', 12, 388, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5328, 'Java Development Toolkit', 12, 388, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5329, 'Java jdk', 12, 388, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5330, 'JSR 914', 12, 389, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5331, 'Java messaging service', 12, 389, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5332, 'Java Message Service', 12, 389, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5333, 'JNLP', 12, 390, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5334, 'Web Start', 12, 390, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5335, 'Java webstart', 12, 390, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5336, 'Java Network Launching Protocol', 12, 390, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5337, 'JavaWS', 12, 390, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5338, 'Webstart', 12, 390, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5339, 'JSR 56', 12, 390, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5340, 'Javaws', 12, 390, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5341, 'Java web start', 12, 390, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5342, 'Java Webstart', 12, 390, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5343, 'JSR 127', 12, 391, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5344, 'JSR 252', 12, 391, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5345, 'Java Server Faces', 12, 391, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5346, 'Javaserver faces', 12, 391, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5347, 'JavaServer Faces (JSF)', 12, 391, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5348, 'JavaServer Faces', 12, 391, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5349, 'Jdbc', 12, 392, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5350, 'Java Data Base Connectivity', 12, 392, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5351, 'JDBC', 12, 392, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5352, 'JRuby programming language', 12, 393, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5353, 'JRuby language', 12, 393, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5354, 'Jruby', 12, 393, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5355, 'Apache Log4net', 12, 394, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5356, 'Log4javascript', 12, 394, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5357, 'Apache log4net', 12, 394, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5358, 'Log4js', 12, 394, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5359, 'Log4Net', 12, 394, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5360, 'Log4c', 12, 394, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5361, 'Log4J', 12, 394, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5362, 'Quartz job scheduler', 12, 395, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5363, 'JRMI', 12, 396, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5364, 'Remote Method Invokation', 12, 396, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5365, 'Java Remote Method Invocation', 12, 396, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5366, 'Rmic', 12, 396, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5367, 'Java RMI', 12, 396, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5368, 'Free-source', 12, 397, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5369, 'Free source', 12, 397, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5370, 'Four Freedoms (software)', 12, 397, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5371, 'Free (software)', 12, 397, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5372, 'Software Libre', 12, 397, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5373, 'Libre software', 12, 397, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5374, 'Free-source software', 12, 397, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5375, 'Free-libre software', 12, 397, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5376, 'Four Freedoms (Free software)', 12, 397, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5377, 'Libre Software', 12, 397, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5378, 'Freedom-ware', 12, 397, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5379, '4 software freedoms', 12, 397, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5380, 'Free sofware', 12, 397, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5381, 'Free-software', 12, 397, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5382, 'FSF''s "free software" ideal', 12, 397, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5383, 'Free and Open Source Software (FOSS) for development', 12, 397, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5384, 'Freedomware', 12, 397, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5385, 'Free computer software', 12, 397, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5386, 'Freed Software', 12, 397, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5387, 'Freedom software', 12, 397, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5388, 'Software libre', 12, 397, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5389, 'Free software development', 12, 397, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5390, 'Four Freedoms (free software)', 12, 397, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5391, 'Spring (Java)', 12, 398, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5392, 'Spring framework', 12, 398, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5393, 'Spring MVC', 12, 398, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5394, 'Spring beans', 12, 398, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5395, 'Spring (framework)', 12, 398, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5396, 'Spring Boot', 12, 398, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5397, 'Java Spring', 12, 398, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5398, 'Spring Framework (Java)', 12, 398, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5399, 'Springframework', 12, 398, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5400, 'Spring IOC Framework', 12, 398, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5401, 'Spring AOP framework', 12, 398, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5402, 'Spring AOP', 12, 398, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5403, 'The Spring Framework', 12, 398, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5404, 'Java|Spring|Spring Boot', 12, 399, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5405, 'Jakarta Struts', 12, 402, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5406, 'Struts Studio', 12, 402, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5407, 'Struts Framework', 12, 402, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5408, 'Java Struts', 12, 402, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5409, 'Swing (java)', 12, 403, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5410, 'Swing java', 12, 403, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5411, 'Java Swing', 12, 403, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5412, 'Javax.swing', 12, 403, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5413, 'IT Mill Toolkit', 12, 404, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5414, 'Ajax framework', 12, 405, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5415, 'Ajax programming', 12, 405, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5416, 'CAJAX', 12, 405, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5417, 'Ajax scripts', 12, 405, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5418, 'AJAX (programming)', 12, 405, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5419, 'AJAXy', 12, 405, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5420, 'AJAX framework', 12, 405, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5421, 'Ajax desktops', 12, 405, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5422, 'Asynchronous Javascript and XML', 12, 405, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5423, 'Ajax language', 12, 405, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5424, 'Ajax (software)', 12, 405, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5425, 'Asynchronous JavaScript and JSON', 12, 405, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5426, 'Asynchronous JavaScript and XML', 12, 405, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5427, 'AJAX Framework', 12, 405, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5428, 'AJAJ', 12, 405, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5429, 'AJAX', 12, 405, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5430, 'Angular JS', 12, 406, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5431, 'Angular.js', 12, 406, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5432, 'MVW framework', 12, 406, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5433, 'Scope (AngularJS)', 12, 406, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5434, 'Angularjs', 12, 406, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5435, 'Expressjs', 12, 408, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5436, 'Ext Core', 12, 409, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5437, 'Extjs', 12, 409, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5438, 'Ext (JavaScript library)', 12, 409, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5439, 'ExtJS', 12, 409, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5440, 'Ext (javascript library)', 12, 409, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5441, 'CssQuery', 12, 411, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5442, 'Jquery Library', 12, 411, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5443, 'Jquery', 12, 411, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5444, 'JQueryUI', 12, 412, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5445, 'React.js', 12, 413, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5446, 'ReactJS', 12, 413, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5447, 'Reactjs', 12, 413, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5448, 'Facebook React', 12, 413, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5449, 'React (web framework)', 12, 413, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5450, 'React JS', 12, 413, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5451, 'React Fiber', 12, 413, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5452, 'JavaScript|script.aculo.us', 12, 414, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5453, 'Android operating system', 6, 418, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5454, 'Android OS', 6, 418, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5455, 'Google Android', 6, 418, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5456, 'Android (software stack)', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5457, 'Android system', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5458, 'Android (phone)', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5459, 'Android (Google)', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5460, 'Android phone operating system', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5461, 'Google Android Linux OS', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5462, 'Android (Operating System)', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5463, 'Android (mobile device platform)', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5464, 'Android Apps', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5465, 'Android Phone', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5466, 'Android cell phone', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5467, 'Honeycomb', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5468, 'Android software', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5469, 'Android google', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5470, 'Android 3.0 Honeycomb', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5471, 'Android platform', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5472, 'Android cellphone', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5473, 'Android device', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5474, 'Android mobile phone', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5475, 'Mobile Android', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5476, 'Android 3.0', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5477, 'Android', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5478, 'Android phone', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5479, 'TaintDroid', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5480, 'Google android', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5481, 'Android (system)', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5482, 'Android Open Source Project', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5483, 'Android app', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5484, 'Os android', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5485, 'Android (software)', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5486, 'Android application', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5487, 'Android (os)', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5488, 'Android.os', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5489, 'Android (OS)', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5490, 'Android Device Manager', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5491, 'Android (platform)', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5492, 'Android client', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5493, 'IDroid', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5494, 'Android (company)', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5495, 'Android-powered device', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5496, 'Android (mobile phone platform)', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5497, 'Android Operating System', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5498, 'Android devices', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5499, 'Google''s Android', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5500, 'Android mobile', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5501, 'Android fork', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5502, 'Android (google)', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5503, 'Surfaceflinger', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5504, 'Android os', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5505, 'Android mobile phone platform', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5506, 'Google Android One', 6, 418, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5507, 'B.E.O.S', 6, 419, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5508, 'Be OS', 6, 419, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5509, 'Internetwork Operating System', 6, 420, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5510, 'IOS (Cisco)', 6, 420, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5511, 'CIOSS', 6, 420, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5512, 'Interface Descriptor Block', 6, 420, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5513, 'Google Dash', 6, 421, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5514, 'ECMA Dart', 6, 421, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5515, 'Dart (language)', 6, 421, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5516, 'Dart programming language', 6, 421, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5517, 'Dart language', 6, 421, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5518, 'DartLang', 6, 421, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5519, 'ECMA-408', 6, 421, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5520, 'Google Dart', 6, 421, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5521, 'Fabos', 6, 422, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5522, 'The GNU operating system', 6, 423, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5523, 'GNU/DOS', 6, 423, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5524, 'GNU System', 6, 423, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5525, 'GNU Operating System', 6, 423, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5526, 'The GNU system', 6, 423, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5527, 'GNU OS', 6, 423, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5528, 'GNU system', 6, 423, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5529, 'GNU''s Not Unix', 6, 423, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5530, 'GNU operating system', 6, 423, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5531, 'I5os', 6, 424, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5532, 'IBM OS/400', 6, 424, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5533, 'IBMi', 6, 424, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5534, 'IBM i5/OS', 6, 424, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5535, 'I on Power', 6, 424, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5536, 'IBM i on Power', 6, 424, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5537, 'OS/400', 6, 424, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5538, 'I5/OS', 6, 424, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5539, 'IBM I5/OS', 6, 424, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5540, 'I-OS', 6, 425, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5541, 'OS X iPhone', 6, 425, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5542, 'IPhoneOS', 6, 425, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5543, 'IPhone Operating System', 6, 425, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5544, 'IPhone os', 6, 425, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5545, 'Mac OS X (iPhone)', 6, 425, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5546, 'IOS Apple', 6, 425, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5547, 'Ipod touch os', 6, 425, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5548, 'IPod Touch OS', 6, 425, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5549, 'IPhone OS', 6, 425, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5550, 'Apple iPhone OS', 6, 425, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5551, 'OS X Mobile', 6, 425, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5552, 'IOS (Apple Inc.)', 6, 425, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5553, 'Multitasking (iOS)', 6, 425, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5554, 'Apple iOS', 6, 425, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5555, 'Iphone os', 6, 425, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5556, 'IPhone operating system', 6, 425, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5557, 'AppleiOS', 6, 425, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5558, 'IOS (Apple)', 6, 425, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5559, 'IOS (operating system)', 6, 425, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5560, 'Ios (Apple)', 6, 425, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5561, 'Linux (operating system)', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5562, 'LINUX', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5563, 'Linuces', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5564, 'GNU/Linux/X11', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5565, 'LinuX', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5566, 'Linux-based GNU system', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5567, 'Gnu/Linux', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5568, 'Linux+GNU', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5569, 'Linux desktop', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5570, 'Lienucks', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5571, 'GNU-Linux', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5572, 'Linux/GNU', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5573, 'Desktop GNU/Linux', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5574, 'Desktop Linux', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5575, 'Linux Powered System', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5576, 'Linux/gnu', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5577, 'Linux server', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5578, 'GNU-linux', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5579, 'GNU/Linux', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5580, 'Linux box', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5581, 'GNULinux', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5582, 'Lynux', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5583, 'Linux OS', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5584, 'Linices', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5585, 'Linux-based GNU systems', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5586, 'GNU/Linux/X', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5587, 'Desktop linux', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5588, 'GNU–Linux', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5589, 'Gnu/linux', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5590, 'Linux on the desktop', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5591, 'GNU+Linux', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5592, 'GNU Linux', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5593, 'Linux (GNU/Linux)', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5594, 'Lineux', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5595, 'Linux/X11', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5596, 'Linix', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5597, 'Linux operating system', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5598, 'Linux/X', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5599, 'BlackRhino GNU/Linux', 6, 426, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5600, 'Centos', 6, 427, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5601, 'CentOs', 6, 427, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5602, 'Centos7', 6, 427, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5603, 'Centos Stream', 6, 427, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5604, 'CentOS Linux', 6, 427, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5605, 'Community Enterprise Operating System', 6, 427, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5606, 'CAOS Linux', 6, 427, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5607, 'Cent OS', 6, 427, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5608, 'CentOS Stream', 6, 427, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5609, 'CheckPoint INSPECT Code', 6, 428, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5610, 'VPN-1', 6, 428, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5611, 'FireWall-1', 6, 428, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5612, 'VPN-1 Power', 6, 428, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5613, 'FireWall-1/VPN-1', 6, 428, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5614, 'Debian Linux', 6, 429, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5615, 'Debian GNU/Linux', 6, 429, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5616, 'Debian Sid', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5617, 'Debian GNU Hurd', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5618, 'Debian Unstable', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5619, 'Debian GNU/kFreeBSD', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5620, 'Debian/sid', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5621, 'Debian GNU/FreeBSD', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5622, 'Debian Live', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5623, 'Embedded Debian', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5624, 'Debian Project', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5625, 'Debian stable', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5626, 'Kfreebsd-i386', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5627, 'Debian Multimedia Project', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5628, 'Debian repository', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5629, 'Debian GNU', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5630, 'Sid (Debian)', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5631, 'Debian LTS', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5632, 'GNU/Debian', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5633, 'Kfreebsd-amd64', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5634, 'Debian gnu/kfreebsd', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5635, 'Debian OS', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5636, 'Embedian', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5637, 'KFreeBSD', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5638, 'Debian Manifesto', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5639, 'Debian Hurd', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5640, 'Debian GNU/Hurd', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5641, 'Debian (operating system)', 6, 429, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5642, 'JunOS', 6, 430, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5643, 'Juniper JUNOS', 6, 430, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5644, 'Juniper OS', 6, 430, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5645, 'JUNOS', 6, 430, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5646, 'Juniper Junos', 6, 430, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5647, 'Junos SDK', 6, 430, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5648, 'Junos', 6, 430, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5649, 'OpenSuSE', 6, 431, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5650, 'SUSE Linux Professional', 6, 431, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5651, 'OpenSUSE 11', 6, 431, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5652, 'OpenSUSE Linux', 6, 431, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5653, 'Factory (openSUSE)', 6, 431, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5654, 'Factory (software)', 6, 431, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5655, 'OpenSuSe', 6, 431, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5656, 'Tumbleweed (software)', 6, 431, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5657, 'OpenSUSE Tumbleweed', 6, 431, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5658, 'Open SUSE', 6, 431, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5659, 'OpenSuse', 6, 431, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5660, 'Tumbleweed (operating system)', 6, 431, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5661, 'OPENSUSE', 6, 431, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5662, 'SUSEWatcher', 6, 431, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5663, 'Opensuse', 6, 431, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5664, 'Unbreakable Enterprise Kernel', 6, 432, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5665, 'Oracle Unbreakable Enterprise Kernel', 6, 432, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5666, 'Unbreakable Linux', 6, 432, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5667, 'Oracle linux', 6, 432, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5668, 'Unbreakable Linux Network', 6, 432, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5669, 'Red Hat Compatible Kernel', 6, 432, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5670, 'Oracle Unbreakable Linux', 6, 432, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5671, 'Oracle Enterprise Linux', 6, 432, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5672, 'Photon OS', 6, 433, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5673, 'RHEL', 6, 434, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5674, 'Red Hat Global Desktop', 6, 434, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5675, 'RedHat enterprise linux', 6, 434, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5676, 'Red hat enterprise linux', 6, 434, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5677, 'RedHat Enterprise Linux', 6, 434, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5678, 'Redhat Enterprise Linux', 6, 434, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5679, 'Redhat enterprise linux', 6, 434, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5680, 'Rhel', 6, 434, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5681, 'Red hat enterprise', 6, 434, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5682, 'Red Hat enterprise linux', 6, 434, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5683, 'Rhel4', 6, 434, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5684, 'Red Hat Global Desktop Linux', 6, 434, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5685, 'Red Hat Enterprise Linux (RHEL)', 6, 434, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5686, 'Red hat Enterprise Linux', 6, 434, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5687, 'Red Hat Enterprise Linux 3', 6, 434, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5688, 'Enterprise Linux', 6, 434, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5689, 'RedPatch', 6, 434, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5690, 'SUSE LINUX Enterprise Server', 6, 435, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5691, 'SuSE SLES', 6, 435, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5692, 'SLES (software)', 6, 435, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5693, 'SuSE Linux Enterprise Server', 6, 435, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5694, 'SUSE Linux Enterprise', 6, 435, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5695, 'SLES (operating system)', 6, 435, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5696, 'SuSE Enterprise Linux', 6, 435, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5697, 'SUSE SLES', 6, 435, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5698, 'Ubunt', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5699, 'Ubuntu (GNU/Linux distribution)', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5700, 'Ubuntu Server Edition', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5701, 'Ubuntu Light', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5702, 'Ubuntu (linux)', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5703, 'Ubuntu (Operating system)', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5704, 'Ubuntulinux', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5705, 'Uboonto Linux', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5706, 'Easyubuntu', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5707, 'Ubuntu (os)', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5708, 'Ubuntu LTS', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5709, 'Linux ubuntu', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5710, 'Ubuntu (software)', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5711, 'Ubuntu desktop', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5712, 'Ubuntu (OS)', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5713, 'Ubuntu (Operating System)', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5714, 'Ubuntu operating system', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5715, 'Ubufox', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5716, 'Ubunto Linux', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5717, 'Ubuntu (O.S.)', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5718, 'Ubuntu Business Desktop Remix', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5719, 'Ubuntu GNU/Linux', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5720, 'Ubuntu os', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5721, 'Ubuntu Server', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5722, 'Ubuntu (distribution)', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5723, 'Ubuntu (operating system)', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5724, 'Ubanto', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5725, 'Unbuntu', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5726, 'Uboonto', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5727, 'Ubuntu Linux (operating system based on Debian)', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5728, 'EasyUbuntu', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5729, 'Ubuntu Linux os', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5730, 'Portable Ubuntu for Windows', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5731, 'Ubuntu distro', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5732, 'Ubuntu server', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5733, 'Ubuntu distribution', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5734, 'Ubuntu linux os', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5735, 'Ubuntu (Linux)', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5736, 'Ubuntu (Linux distribution)', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5737, 'Ubutnu', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5738, 'Ubunut', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5739, 'Ubuntu Desktop', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5740, 'Ubuntu Linux Server Edition', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5741, 'Ubuntu Universe', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5742, 'Unbutu', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5743, 'Ubuntu Foundation', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5744, 'Linux Ubuntu', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5745, 'Universe ubuntu', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5746, 'Ubuntu operatng system', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5747, 'Ubuntu (linux distribution)', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5748, 'Ubununtu', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5749, 'Ubuntu Linux distribution', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5750, 'Easy Ubuntu', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5751, 'Ubunto', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5752, 'Ubuntu Enterprise Cloud', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5753, 'ShipIt', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5754, 'Ubuntu linux', 6, 436, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5755, 'Ubuntu Linux operating system', 6, 436, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5756, 'Ubuntu Linux', 6, 436, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5757, 'Ubuntu OS', 6, 436, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5758, 'Ubuntu Project', 6, 436, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5759, 'Ubuntu GNU/linux', 6, 436, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5760, 'Linux on zSeries', 6, 437, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5761, 'LinuxONE', 6, 437, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5762, 'ZLinux', 6, 437, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5763, 'Linux for zSeries', 6, 437, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5764, 'Linux on System z9', 6, 437, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5765, 'Linux on mainframe', 6, 437, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5766, 'S390x', 6, 437, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5767, 'Linux/390', 6, 437, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5768, 'IBM LinuxONE', 6, 437, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5769, 'Linux for mainframe', 6, 437, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5770, 'Linux on z Systems', 6, 437, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5771, 'Linux on System z', 6, 437, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5772, 'Linux on Z Systems', 6, 437, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5773, 'Linux for mainframes', 6, 437, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5774, 'Linux on zseries', 6, 437, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5775, 'Linux on mainframes', 6, 437, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5776, 'Mainframe Linux', 6, 437, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5777, 'Linux on z', 6, 437, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5778, 'Z/Linux', 6, 437, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5779, 'Apple OS X', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5780, 'Marklar project', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5781, 'OS/X', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5782, 'Max os x', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5783, 'Mac OS X 10', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5784, 'OS-X', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5785, 'Mac os 10', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5786, 'Mac osx', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5787, 'MacOS X', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5788, 'Macintosh OSX', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5789, 'Macos', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5790, 'Mac OSX', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5791, 'MacOSX', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5792, 'Macosx', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5793, 'Apple Macintosh OSX', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5794, 'Mac OS/OS X', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5795, 'Macintosh OS-X', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5796, 'Os x', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5797, 'Mac OS-X', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5798, 'MacOS/X', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5799, 'Mac Os X', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5800, 'MAC OS X', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5801, 'MacintoshOSX', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5802, 'Apple Macintosh OS X', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5803, 'Os ten', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5804, 'Mac OS/X', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5805, 'Osx', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5806, 'IBSD', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5807, 'Apple macOS', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5808, 'OSx', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5809, 'Mac os ten', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5810, 'OS X (operating system)', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5811, 'MacOs', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5812, 'Apple Mac OSX', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5813, 'Macos x', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5814, 'MAC OSX', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5815, 'Apple OSX', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5816, 'Apple Mac OS X', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5817, 'Macintosh OS X', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5818, 'MOSX', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5819, 'Mac os x', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5820, 'Apple MacOSX', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5821, 'MacOS 10', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5822, 'Apple os x', 6, 438, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5823, 'OSX', 6, 438, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5824, 'Mac OS 10', 6, 438, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5825, 'Mac OS X', 6, 438, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5826, 'OS X', 6, 438, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5827, 'MSP (operating system)', 6, 439, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5828, 'MVS/ESA', 6, 439, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5829, 'OS/MVS', 6, 439, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5830, 'MVS Operating System', 6, 439, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5831, 'Data Facility Product', 6, 439, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5832, 'MVS/XA', 6, 439, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5833, 'MVS/370', 6, 439, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5834, 'Fujitsu MSP', 6, 439, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5835, 'OS/VS2 (MVS)', 6, 439, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5836, 'Hitachi VOS3', 6, 439, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5837, 'MVS/SP', 6, 439, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5838, 'Multiple Virtual Storage', 6, 439, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5839, 'MVS|OS/390', 6, 440, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5840, 'ZOS', 6, 441, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5841, 'IBM z/OS', 6, 441, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5842, 'Virtual Memory System', 6, 442, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5843, 'VAX/VMS', 6, 442, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5844, 'Open vms', 6, 442, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5845, 'VMS operating system', 6, 442, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5846, 'OpenVMS 7.2', 6, 442, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5847, 'DECwindows', 6, 442, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5848, 'VMS (operating system)', 6, 442, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5849, 'VAX-VMS', 6, 442, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5850, 'DEC VMS', 6, 442, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5851, 'DECWindows', 6, 442, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5852, 'Vax/vms', 6, 442, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5853, 'Open VMS', 6, 442, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5854, 'Openvms', 6, 442, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5855, 'OS/2 Warp', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5856, 'Win-OS/2', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5857, 'DOS/286 (OS/2)', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5858, 'NEWDOS (OS/2)', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5859, 'Microsoft Betriebssystem/2', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5860, 'Os2 warp', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5861, 'OS/2 Warp 3', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5862, 'OS/2 Warp 3J', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5863, 'Warp 3', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5864, 'IBM BS/2', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5865, 'BS/2 1.1', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5866, 'Os2', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5867, 'OS/2 1.21', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5868, 'BS/2 1.3', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5869, 'Advanced DOS', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5870, 'OS2', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5871, 'BS/2 1.0', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5872, 'WINOS/2', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5873, 'OS/2 Warp 4.5', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5874, 'IBM OS2', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5875, 'OS/2 Special Edition for Windows', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5876, 'OS/2 2.1', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5877, 'OS/2 Warp 4', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5878, 'OS/2 1.3', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5879, 'WinOS/2', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5880, 'OS/2 1.0', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5881, 'Warp Server', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5882, 'Microsoft OS/2', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5883, 'WIN-OS/2', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5884, 'OS/2 Warp Connect', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5885, 'Microsoft Operating System/2', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5886, 'IBM OS/2', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5887, 'OS/2 for Windows', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5888, 'OS/2 2.0', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5889, 'IBM Operating System/2', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5890, 'OS 2', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5891, 'Betriebssystem/2', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5892, 'DOS 5 (OS/2)', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5893, 'Microsoft BS/2', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5894, 'IBM Betriebssystem/2', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5895, 'DOS 286 (OS/2)', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5896, 'OS/2 API', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5897, 'OS/2 1.1', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5898, 'BS/2 1.2', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5899, 'Os/2', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5900, 'BS/2', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5901, 'CP/DOS', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5902, 'ADOS (OS/2)', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5903, 'OS/2 1.2', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5904, '0S/2', 6, 443, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5905, 'Operating System/2', 6, 443, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5906, 'Unixes', 6, 444, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5907, 'UNIX operating system', 6, 444, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5908, 'UNIX systems', 6, 444, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5909, 'Unix operating system', 6, 444, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5910, 'Truly Unix', 6, 444, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5911, 'UNIX system', 6, 444, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5912, 'Unix box', 6, 444, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5913, 'Unix system', 6, 444, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5914, 'Traditional Unix', 6, 444, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5915, 'UNIX', 6, 444, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5916, 'Advanced IBM UNIX', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5917, 'IBM-RT/AIX', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5918, 'IBM AIX (operating system)', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5919, 'Object Data Manager', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5920, 'AIX (operating system)', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5921, 'Aix os', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5922, 'IBM System AIX', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5923, 'Ibm lum', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5924, 'AIX for Apple Network Server', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5925, 'IBM AIX/370', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5926, 'Advanced Interactive eXecutive', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5927, 'AIX/RT', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5928, 'AIX/370', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5929, 'AIXv3', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5930, 'IBM370/AIX', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5931, 'IBM AIX/PS2', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5932, 'VM/IX', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5933, 'IX/370', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5934, 'AIX for ANS', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5935, 'IBM AIX/RT', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5936, 'AIX Operating System', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5937, 'AIX operating system', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5938, 'AIX for Apple Network Servers', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5939, 'IBM AIX/390', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5940, 'AIX/PS2', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5941, 'AIX/390', 6, 445, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5942, 'AIX', 6, 445, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5943, 'BSD operating system', 6, 446, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5944, 'Berkeley software distribution', 6, 446, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5945, '4.4BSD-Lite', 6, 446, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5946, 'Vmunix', 6, 446, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5947, 'BSD Unices', 6, 446, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5948, 'HPBSD', 6, 446, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5949, '4.4BSD-Encumbered', 6, 446, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5950, 'Berkeley UNIX', 6, 446, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5951, 'Berkley Software Distribution', 6, 446, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5952, 'Net/1', 6, 446, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5953, 'Berkeley UNIX 4.3BSD', 6, 446, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5954, 'BSD-based', 6, 446, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5955, 'Bsdgames', 6, 446, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5956, 'Net/2', 6, 446, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5957, 'Bsd', 6, 446, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5958, '*BSD', 6, 446, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5959, 'BSD Unix', 6, 446, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5960, 'BSD (operating system)', 6, 446, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5961, 'BSD', 6, 446, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5962, 'BSD UNIX', 6, 446, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5963, 'Berkeley System Distribution', 6, 446, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5964, 'Berkeley Unix', 6, 446, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5965, 'TrustedBSD', 6, 447, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5966, 'Freebsd', 6, 447, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5967, 'FBSD', 6, 447, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5968, 'Free BSD', 6, 447, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5969, 'FreeBSD 8', 6, 447, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5970, 'NanoBSD', 6, 447, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5971, 'Linuxulator', 6, 447, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5972, 'FreeBSD Project', 6, 447, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5973, 'FREEBSD', 6, 447, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5974, 'FreeBSD kernel', 6, 447, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5975, 'FreeBSD 5.0', 6, 447, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5976, 'Free bsd', 6, 447, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5977, 'SUN OS', 6, 448, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5978, 'Sun os', 6, 448, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5979, 'SunOS Unix', 6, 448, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5980, 'Sunos', 6, 448, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5981, 'SunOS 4.1', 6, 448, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5982, 'Sun OS', 6, 448, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5983, 'HPUX', 6, 449, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5984, 'Hewlett Packard Unix', 6, 449, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5985, 'HP/UX', 6, 449, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5986, 'Hewlett-Packard UniX', 6, 449, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5987, 'Hewlett Packard-Unix', 6, 449, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5988, 'Hpux', 6, 449, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5989, 'Hewlett-Packard Unix', 6, 449, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5990, 'HP Unix', 6, 449, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5991, 'Hewlett-Packard UNIX', 6, 449, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5992, 'Hewlett Packard UniX', 6, 449, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5993, 'Hewlett Packard UNIX', 6, 449, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5994, 'HP UX', 6, 449, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5995, 'MS Windows', 6, 450, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5996, 'Windows', 6, 450, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5997, 'Apptimum', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5998, 'Windows Operating System', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5999, 'Windows OS', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6000, 'Windows 365', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6001, 'Windows the operating system', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6002, 'Windows (Operating System)', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6003, 'WINDOWS', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6004, 'Windows (OS)', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6005, 'Microsoft windows', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6006, 'MS-Windows', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6007, 'Windows operating system', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6008, 'Windows PC', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6009, 'Mswin', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6010, 'Microsoft windows os', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6011, 'MICROSOFT WINDOWS', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6012, 'Widnows', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6013, 'Windwos', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6014, 'Windows (operating system)', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6015, 'MSWindows', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6016, 'Alliance OS', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6017, 'Windows®', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6018, 'PC Windows', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6019, 'Ms windows', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6020, 'Windows os', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6021, 'MsWindows', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6022, 'Windows (Operating system)', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6023, '32-bit Windows', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6024, 'Microsoft windows operating system', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6025, 'Windows Microsoft', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6026, 'Freedows OS', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6027, 'MSWin', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6028, 'Windows computers', 6, 450, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6029, 'MS Windows', 6, 451, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6030, 'Windows', 6, 451, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6031, 'Apptimum', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6032, 'Windows Operating System', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6033, 'Windows OS', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6034, 'Windows 365', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6035, 'Windows the operating system', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6036, 'Windows (Operating System)', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6037, 'WINDOWS', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6038, 'Windows (OS)', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6039, 'Microsoft windows', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6040, 'MS-Windows', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6041, 'Windows operating system', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6042, 'Windows PC', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6043, 'Mswin', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6044, 'Microsoft windows os', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6045, 'MICROSOFT WINDOWS', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6046, 'Widnows', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6047, 'Windwos', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6048, 'Windows (operating system)', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6049, 'MSWindows', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6050, 'Alliance OS', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6051, 'Windows®', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6052, 'PC Windows', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6053, 'Ms windows', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6054, 'Windows os', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6055, 'MsWindows', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6056, 'Windows (Operating system)', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6057, '32-bit Windows', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6058, 'Microsoft windows operating system', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6059, 'Windows Microsoft', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6060, 'Freedows OS', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6061, 'MSWin', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6062, 'Windows computers', 6, 451, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6063, 'Windows Storage Server', 6, 452, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6064, 'Microsoft Windows Server', 6, 452, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6065, 'Windows Web Edition', 6, 452, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6066, 'Windows server', 6, 452, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6067, 'Windows Server 200x', 6, 452, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6068, 'Windows Server 2022', 6, 452, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6069, 'Microsoft Windows server', 6, 452, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6070, 'Fedora Rawhide', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6071, 'Linux fedora', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6072, 'Fedora (OS)', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6073, 'Fedora AOS', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6074, 'Fedora Extras', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6075, 'Fedora (GNU/Linux distribution)', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6076, 'Fedora Core Linux', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6077, 'Fedora Workstation', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6078, 'Fedora OS', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6079, 'Fedora (linux distribution)', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6080, 'COPR (Fedora)', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6081, 'Rawhide (operating system)', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6082, 'Fedora linux', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6083, 'Fedora Robotics', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6084, 'Cool Other Package Repositories', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6085, 'Fedora Linux', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6086, 'Fedomatix', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6087, 'Fedora (Operating System)', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6088, 'Rawhide (software)', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6089, 'Eeedora', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6090, 'Fedora operating system', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6091, 'Fedora (software)', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6092, 'Fedora Core', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6093, 'Fedora Cloud', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6094, 'Rawhide (computing)', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6095, 'Fedora IoT', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6096, 'Fedora Linux Swap', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6097, 'Fedora (Linux)', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6098, 'Fedora Modular Server', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6099, 'Fedora (Linux distribution)', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6100, 'Fedora CoreOS', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6101, 'Fedora 10', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6102, 'Fedora Silverblue', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6103, 'Fedora Atomic Host', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6104, 'Fedora spin', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6105, 'Fedora Server', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6106, 'EPEL', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6107, 'Fedora LXQt', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6108, 'Fedora core', 6, 453, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6109, 'Linux|Amazon Linux', 6, 454, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6110, 'ATLAS Transformation Language', 5, 456, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6111, 'Microsoft Exchange Server|Veeam Explorer', 5, 464, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6112, 'Data Transformation Service', 5, 466, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6113, 'DTS package', 5, 466, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6114, 'DTS Package', 5, 466, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6115, 'Data transformation service', 5, 466, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6116, 'DTS Packages', 5, 466, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6117, 'DTS Tasks', 5, 466, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6118, 'OLAP Services', 5, 468, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6119, 'ADOMD.NET', 5, 468, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6120, 'SQL Server Analysis Services', 5, 468, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6121, 'SSIS package', 5, 470, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6122, 'SSMS', 5, 471, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6123, 'SSMSE', 5, 471, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6124, 'Management studio', 5, 471, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6125, 'SQL Reporting Services', 5, 472, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6126, 'Sql server reporting services', 5, 472, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6127, 'SQL Reporting Services', 5, 473, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6128, 'Sql server reporting services', 5, 473, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6129, 'Spatial Data Option', 5, 475, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6130, 'GeoRaster', 5, 475, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6131, 'Oracle Spatial', 5, 475, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6132, 'SQLPlus', 5, 478, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6133, 'Sqlplus', 5, 478, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6134, 'SQL*Plus', 5, 478, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6135, 'Run-time library', 7, 482, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6136, '.NET Framework|log4net', 7, 483, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6137, 'Windows Communications Foundation', 7, 485, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6138, 'Indigo Application Server', 7, 485, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6139, 'Windows communication foundation', 7, 485, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6140, 'Windows Communication Foundation (WCF)', 7, 485, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6141, 'Windows Communication Framework', 7, 485, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6142, 'Indigo (messaging system)', 7, 485, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6143, 'Microsoft Indigo', 7, 485, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6144, 'WF4', 7, 486, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6145, 'Workflow Foundation', 7, 486, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6146, 'Windows Overflow Foundation', 7, 486, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6147, 'Windows.Forms', 7, 487, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6148, 'Winforms', 7, 487, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6149, 'Windows Forms control', 7, 487, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6150, 'WindowsForms', 7, 487, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6151, 'Windows Forms application', 7, 487, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6152, 'WinForms', 7, 487, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6153, 'ActiveX Data Object', 7, 488, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6154, 'Active X Data Objects', 7, 488, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6155, 'Msado', 7, 488, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6156, 'Jboss seam', 7, 492, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6157, 'JBoss SEAM', 7, 492, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6158, 'Seam framework', 7, 492, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6159, 'JBoss application server', 7, 493, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6160, 'Wildfly', 7, 493, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6161, 'JBoss AS', 7, 493, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6162, 'Jbossas', 7, 493, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6163, 'Jboss as', 7, 493, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6164, 'Jboss', 7, 493, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6165, 'JBossWS', 7, 493, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6166, 'JBoss', 7, 493, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6167, 'JBoss Application Server', 7, 493, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6168, 'ABAP Objects', 7, 496, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6169, 'SAP ABAP', 7, 496, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6170, 'Abap Objects', 7, 496, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6171, 'ABAP/4', 7, 496, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6172, 'Abap IV', 7, 496, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6173, 'Abap', 7, 496, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6174, '.NET SDK', 10, 497, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6175, 'Dot NET Framework', 10, 497, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6176, 'Microsoft net framework', 10, 497, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6177, 'Net Framework', 10, 497, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6178, 'Dotnet framework', 10, 497, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6179, 'Netfx', 10, 497, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6180, 'Dot Net Framework', 10, 497, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6181, 'Dot net framework', 10, 497, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6182, '.NET Enterprise Server', 10, 497, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6183, '.NET framework', 10, 497, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6184, 'NetFX', 10, 497, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6185, 'Microsoft .NET framework', 10, 497, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6186, 'Microsoft''s .NET Framework', 10, 497, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6187, '.NET Server', 10, 497, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6188, '.Net Framework', 10, 497, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6189, '.Net framework', 10, 497, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6190, '.NET Services', 10, 497, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6191, '.NET platform', 10, 497, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6192, '.Net (programming language)', 10, 497, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6193, 'Microsoft .NET Framework', 10, 497, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6194, '.net framework', 10, 497, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6195, 'NET Framework', 10, 497, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6196, 'Active Directory Services', 10, 498, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6197, 'Likewise Open', 10, 498, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6198, 'Active directory object', 10, 498, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6199, 'AD/LDS', 10, 498, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6200, 'Active Directory Schema', 10, 498, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6201, 'AD DS', 10, 498, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6202, 'Microsoft Active Directory', 10, 498, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6203, 'NT Directory Service', 10, 498, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6204, 'Active Directory Site', 10, 498, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6205, 'ActiveDirectory', 10, 498, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6206, 'Active directory authentication module', 10, 498, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6207, 'Active Directory Domain Services', 10, 498, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6208, 'Active directory objects', 10, 498, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6209, 'Active directory', 10, 498, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6210, 'Micorsoft Active Directory', 10, 498, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6211, 'Active Directory Service Interfaces', 10, 498, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6212, 'Active Directory Service', 10, 498, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6213, 'Active Directory Directory Services', 10, 498, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6214, 'Microsoft Active Direcory', 10, 498, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6215, 'Domain tree', 10, 498, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6216, 'Active Directory Application Mode', 10, 498, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6217, 'AD LDS', 10, 498, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6218, 'ASP programming language', 10, 499, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6219, 'Active Server Page', 10, 499, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6220, 'ASP3', 10, 499, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6221, 'Apache::ASP', 10, 499, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6222, 'Active server pages', 10, 499, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6223, 'Classic ASP', 10, 499, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6224, 'Asp Apache', 10, 499, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6225, 'Active X', 10, 500, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6226, 'ActiveX Control', 10, 500, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6227, 'Activex', 10, 500, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6228, 'ActiveX client', 10, 500, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6229, 'ActiveX Object', 10, 500, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6230, 'ActiveX control', 10, 500, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6231, 'ActiveX component', 10, 500, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6232, 'MFC ActiveX Control', 10, 500, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6233, 'Active x', 10, 500, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6234, 'ActiveX server', 10, 500, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6235, 'Active-x', 10, 500, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6236, 'Activex control', 10, 500, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6237, 'Apache Cordoba', 10, 501, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6238, 'Apache Callback', 10, 501, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6239, 'Customer Information Control System', 10, 502, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6240, 'CICS Transaction Server', 10, 502, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6241, 'Docker software', 10, 503, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6242, 'Docker (Linux container engine)', 10, 503, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6243, 'Libcontainer', 10, 503, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6244, 'Dockerfile', 10, 503, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6245, 'Docker Toolbox', 10, 503, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6246, 'Shockwave Flash', 10, 504, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6247, 'UIRA', 10, 504, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6248, 'Flash MX', 10, 504, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6249, 'Flash CS3', 10, 504, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6250, 'Futuresplash', 10, 504, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6251, 'Adobe Flash CS4', 10, 504, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6252, 'Flash 8', 10, 504, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6253, 'Flash mx 2004', 10, 504, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6254, 'Flash (software)', 10, 504, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6255, 'FutureSplash', 10, 504, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6256, 'Macromedia Flash Remoting', 10, 504, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6257, 'Macromedia flash', 10, 504, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6258, 'Flash programming', 10, 504, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6259, 'Adobe Flash animation', 10, 504, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6260, 'Flash 6', 10, 504, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6261, 'Adobe flash', 10, 504, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6262, 'Adobe Flash Platform', 10, 504, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6263, 'Macromedia Flash Professional 9', 10, 504, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6264, 'F4L', 10, 504, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6265, 'Flash components', 10, 504, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6266, 'Flash 10', 10, 504, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6267, 'F4l', 10, 504, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6268, 'Flash 9', 10, 504, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6269, 'Qflash', 10, 504, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6270, 'Flash mx', 10, 504, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6271, 'HTTP File Server', 10, 505, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6272, 'JRE', 10, 506, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6273, 'NodeJs', 10, 507, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6274, 'Node js', 10, 507, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6275, 'Node.JS', 10, 507, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6276, 'Nodejs', 10, 507, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6277, 'Iojs', 10, 507, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6278, 'Io.js', 10, 507, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6279, 'NodeJS', 10, 507, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6280, 'Action Web Service', 10, 508, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6281, 'Rubyonrails', 10, 508, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6282, 'Ruby on Яails', 10, 508, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6283, 'Ruby on rails', 10, 508, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6284, 'Action Mailer', 10, 508, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6285, 'Ruby on Iaails', 10, 508, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6286, 'Rails framework', 10, 508, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6287, 'Ruby on Rails (web framework)', 10, 508, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6288, 'Ruby On Rails', 10, 508, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6289, 'Ruby-on-rails', 10, 508, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6290, 'Ruby with rails', 10, 508, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6291, 'EMC Celerra', 11, 510, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6292, 'Application Lifecycle Management', 1, 511, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6293, 'Application management', 1, 511, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6294, 'Application life-cycle management', 1, 511, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6295, 'Integrated application lifecycle management', 1, 511, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6296, 'Software Lifecycle Management', 1, 511, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6297, 'Assembly Language', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6298, 'Assembler (computer programming)', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6299, 'Meta-assembler', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6300, 'Op code mnemonic', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6301, 'Cross-assembler', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6302, 'Assembly languages', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6303, 'Programming language/assembly', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6304, 'Assembly language assembler', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6305, 'Two-pass assembler', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6306, 'Cross assembler', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6307, 'Assembly code', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6308, 'Assembler code', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6309, 'Assembler language', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6310, 'Assembler program', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6311, 'Assembly language macros', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6312, 'Mnemonics (assembler)', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6313, 'ARM Assembly Language Programming', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6314, 'Extended mnemonics', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6315, 'Mnemonics (assembly language)', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6316, 'Symbolic machine code', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6317, 'Assembly programming language', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6318, 'Assembly Programming System', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6319, 'Assembler (programming language)', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6320, 'Symbolic Machine Code', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6321, 'Mnemonic (assembly language)', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6322, 'Macro assembler', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6323, 'Assembler (computing)', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6324, 'Assembly file', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6325, 'Mnemonic (assembler)', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6326, 'Assember language', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6327, 'Assembler for an assembly language', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6328, 'Assembler programming', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6329, 'Macroassembler', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6330, 'Assembler directive', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6331, 'Assembly programming', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6332, 'Opcode mnemonics', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6333, 'Assembly time', 1, 512, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6334, 'Common Gateway Interface (CGI)', 1, 515, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6335, 'Cgi script', 1, 515, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6336, 'CGI script', 1, 515, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6337, 'Common gateway interface', 1, 515, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6338, 'COM+', 1, 516, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6339, 'COM Plus', 1, 516, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6340, 'Interface ID', 1, 516, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6341, 'ActiveX application', 1, 516, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6342, 'COM/ActiveX', 1, 516, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6343, 'Multi Threaded Apartment', 1, 516, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6344, 'COM object', 1, 516, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6345, 'Neutral Apartment', 1, 516, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6346, 'COM server', 1, 516, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6347, 'Component object model', 1, 516, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6348, 'Single-Threaded Apartment', 1, 516, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6349, 'ActiveX script', 1, 516, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6350, 'Single Threaded Apartment', 1, 516, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6351, 'COM and OLE', 1, 516, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6352, 'Microsoft Component Object Model', 1, 516, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6353, 'Single-threaded apartment', 1, 516, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6354, 'COM plus', 1, 516, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6355, 'Apartment model', 1, 516, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6356, 'Multi-Threaded Apartment', 1, 516, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6357, 'COM+ Events', 1, 516, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6358, 'Portable Object Adapter', 1, 517, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6359, 'Object Management Architecture', 1, 517, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6360, 'Portable interceptors', 1, 517, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6361, 'OMG IDL', 1, 517, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6362, 'Common object request broker architecture', 1, 517, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6363, 'VMCID', 1, 517, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6364, 'Incarnation (CORBA)', 1, 517, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6365, 'CORBA IDL', 1, 517, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6366, 'Corbaloc', 1, 517, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6367, 'CORBA Component Model', 1, 517, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6368, 'Servant (CORBA)', 1, 517, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6369, 'Corba', 1, 517, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6370, 'CORBA architecture', 1, 517, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6371, 'CORBA', 1, 517, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6372, 'Data Control Language', 1, 519, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6373, 'DDBMS', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6374, 'Enterprise database management', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6375, 'Distributed data base', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6376, 'Database management system', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6377, 'Database Management', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6378, 'Database query', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6379, 'DBMSs', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6380, 'Research database', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6381, 'Database management software', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6382, 'Database (computing)', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6383, 'Distributed Database Management System', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6384, 'Database instance', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6385, 'Database management program', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6386, 'DataBase', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6387, 'Library database', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6388, 'Database system', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6389, 'Database management systems', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6390, 'Database/Applications', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6391, 'Data Base', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6392, 'Distributed database management system', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6393, 'Database Management System', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6394, 'Database manager', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6395, 'Database programming', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6396, 'Database software', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6397, 'Public database', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6398, 'Distributed databases', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6399, 'Dbms', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6400, 'Forensic database', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6401, 'Data base management system', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6402, 'Databases', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6403, 'Electronic data processing database', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6404, 'Database management', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6405, 'Computer database', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6406, 'Data-base', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6407, 'Data bases', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6408, 'DBMS', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6409, 'Computer Databases', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6410, 'Database System', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6411, 'Database development', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6412, 'Numeric database', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6413, 'DB file', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6414, 'Scientific database', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6415, 'Database Manager', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6416, 'Database systems', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6417, 'Database information system', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6418, 'Data base', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6419, 'D-base', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6420, 'Database backend', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6421, 'General-purpose DBMS', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6422, 'Public databases', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6423, 'Db management', 1, 520, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6424, 'EDI Translation Software', 1, 521, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6425, 'Electronic Data Interchange', 1, 521, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6426, 'ANSI ASC X.12', 1, 521, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6427, 'X.12', 1, 521, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6428, 'Web-servers', 1, 522, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6429, 'Web Servers', 1, 522, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6430, 'Webserver', 1, 522, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6431, 'HTTP Server', 1, 522, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6432, 'Www server', 1, 522, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6433, 'Web-server', 1, 522, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6434, 'HTTP web server', 1, 522, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6435, 'Web Server', 1, 522, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6436, 'Web servers', 1, 522, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6437, 'WWW server', 1, 522, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6438, 'HTTP server', 1, 522, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6439, 'Jdom', 1, 523, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6440, 'Java object model', 1, 523, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6441, 'JSR 102', 1, 523, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6442, 'Java Document Object Model', 1, 523, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6443, 'Ldap', 1, 524, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6444, 'Eldap', 1, 524, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6445, 'LDAPS', 1, 524, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6446, 'LDAP', 1, 524, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6447, 'Database driver', 1, 525, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6448, 'ODBC driver', 1, 525, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6449, 'ODBC Driver', 1, 525, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6450, 'Open DataBase Connectivity', 1, 525, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6451, 'OBDC', 1, 525, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6452, 'Odbc', 1, 525, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6453, 'Open database connectivity', 1, 525, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6454, 'ODBC', 1, 525, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6455, 'Order Management System', 1, 526, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6456, 'Order management', 1, 526, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6457, 'SQL Reporting Services', 1, 528, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6458, 'Sql server reporting services', 1, 528, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6459, 'REST API', 1, 529, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6460, 'REST', 1, 529, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6461, 'Representational State Transfer', 1, 529, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6462, 'REST Architecture', 1, 529, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6463, 'REST-SST', 1, 529, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6464, 'RESTful web service', 1, 529, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6465, 'REST interface', 1, 529, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6466, 'RESTFul', 1, 529, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6467, 'RESTfully', 1, 529, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6468, 'Rest interface', 1, 529, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6469, 'Restful interface', 1, 529, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6470, 'RESTful API', 1, 529, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6471, 'Restful web service', 1, 529, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6472, 'Restful', 1, 529, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6473, 'Restful application', 1, 529, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6474, 'RESTful', 1, 529, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6475, 'SOA Lifecycle', 1, 530, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6476, 'SOA environment', 1, 530, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6477, 'Service Oriented Architecture', 1, 530, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6478, 'Endpoint computing', 1, 530, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6479, 'Service orientated architecture', 1, 530, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6480, 'Soba (computing)', 1, 530, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6481, 'Broker (service-oriented architecture)', 1, 530, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6482, 'Service-Oriented Architecture', 1, 530, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6483, 'Service-oriented business application', 1, 530, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6484, 'Service Oriented Computing', 1, 530, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6485, 'Service-oriented Architecture', 1, 530, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6486, 'Service-oriented architectures', 1, 530, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6487, 'Service oriented architecture', 1, 530, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6488, 'Service Orientated Architecture', 1, 530, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6489, 'Service-orientated architecture', 1, 530, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6490, 'Service-Orientated Architecture', 1, 530, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6491, 'Service Oriented Architectures', 1, 530, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6492, 'Simple Object Access Protocol', 1, 531, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6493, 'SOAP request', 1, 531, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6494, 'SOAP (protocol)', 1, 531, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6495, 'Soap service', 1, 531, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6496, 'Structured Query Language', 9, 532, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6497, 'SQL script', 9, 532, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6498, 'ANSI SQL', 9, 532, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6499, 'SQL Servers', 9, 532, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6500, 'Procedural SQL', 9, 532, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6501, 'Structured query language', 9, 532, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6502, 'SQL language', 9, 532, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6503, 'Distributed SQL processing', 9, 532, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6504, 'SQL programming language', 9, 532, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6505, 'Transaction Control Language', 9, 532, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6506, 'SEQUEL', 9, 532, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6507, 'SQL (programming language)', 9, 532, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6508, 'SQL database', 9, 532, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6509, 'Structure Query Language', 9, 532, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6510, 'Sql', 9, 532, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6511, 'Yaml', 1, 533, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6512, 'Yet Another Markup Language', 1, 533, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6513, 'YAML Ain''t Markup Language', 1, 533, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6514, 'Model', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6515, 'Model-view', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6516, 'Model view controller triad', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6517, 'controller', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6518, 'view', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6519, 'Model-template-view', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6520, 'Model–View–Controller', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6521, 'Model View Controller', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6522, 'MVC controller', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6523, 'View (MVC)', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6524, 'Model-View-Controller', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6525, 'Controller (MVC)', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6526, 'MVC Design Pattern', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6527, 'MVC architecture', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6528, 'Model-view controller', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6529, 'Model-Template-View', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6530, 'MVC Pattern', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6531, 'Model-view-controller design pattern', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6532, 'Model-View-Controller paradigm', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6533, 'Model view controller', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6534, 'Model/View/Controller', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6535, 'MVC view', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6536, 'MVC model', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6537, 'Model (MVC)', 1, 534, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6538, 'Model-view-controller', 1, 534, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6539, 'Application server computing', 1, 535, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6540, 'Application Server', 1, 535, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6541, 'Mobile App Server', 1, 535, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6542, 'Application servers', 1, 535, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6543, 'Enterprise application server', 1, 535, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6544, 'Java application server', 1, 535, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6545, 'Appserver', 1, 535, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6546, 'App server', 1, 535, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6547, 'Web application server', 1, 535, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6548, 'Cloud hosting', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6549, 'Cloud architecture', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6550, 'Cloud service', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6551, 'IoT Cloud', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6552, 'Cloud-hosted', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6553, 'Cloud vendor', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6554, 'Cloud Provider Interface', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6555, 'Cloud transformation', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6556, 'XaaS', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6557, 'Cloud computing platform', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6558, 'Cloud computing vendor', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6559, 'Cloud Computing', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6560, 'Cloud-based', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6561, 'Cloud provider', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6562, 'Could computing', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6563, 'Cloud computing provider', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6564, 'Computing cloud', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6565, 'Computing in the cloud', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6566, 'Communication as a service', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6567, 'Cloud infrastructure', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6568, 'Hybrid cloud', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6569, 'Private cloud', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6570, 'Cloud Technology', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6571, 'Cloud client', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6572, 'Cloud vendors', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6573, 'Cloud networking', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6574, 'Cloud Hosting', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6575, 'Remote computing', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6576, 'Private Cloud', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6577, 'Computing-in-the-cloud', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6578, 'Cloud hardware', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6579, 'Cloud computer', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6580, 'Cloud technology', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6581, 'Public Cloud', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6582, 'Cloud processing', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6583, 'Burst computing', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6584, 'Member Only Cloud', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6585, 'Content Marketing Cloud', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6586, 'Cloud computing user', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6587, 'Cloud Applications', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6588, 'Online software', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6589, 'Cloud Software', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6590, 'Cloud services provider', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6591, 'Computer cloud', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6592, 'Cloud-computing', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6593, 'Cloud distribution', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6594, 'Public cloud', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6595, 'Cloud services', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6596, 'Cloud-based computing', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6597, 'Cloud Service', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6598, 'Cloudware', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6599, 'EaaS', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6600, 'Cloud service provider', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6601, 'Cloud software', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6602, 'Cloud user', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6603, 'Cloud (computing)', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6604, 'Cross-Platform Hybrid Cloud', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6605, 'Cloud Infrastructure', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6606, 'Cloud (computers)', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6607, 'Hybrid Cloud', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6608, 'Cloud standards', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6609, 'Cloud users', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6610, 'Cloud clients', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6611, 'Cloud computing platforms', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6612, 'Enterprise Cloud Computing', 1, 536, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6613, 'Dynamic Provisioning Environment', 1, 538, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6614, 'Enterprise Service Bus', 1, 540, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6615, 'Workgroup File server', 1, 541, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6616, 'Fileserver', 1, 541, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6617, 'File host', 1, 541, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6618, 'Storage server', 1, 541, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6619, 'File Server', 1, 541, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6620, 'Workgroup file server', 1, 541, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6621, 'File Server Solution', 1, 541, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6622, 'Nominal ledgers', 1, 542, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6623, 'General Ledger', 1, 542, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6624, 'Generalledger', 1, 542, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6625, 'General ledgers', 1, 542, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6626, 'Nominal ledger', 1, 542, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6627, 'HTTP client', 1, 543, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6628, 'Web-servers', 1, 544, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6629, 'Web Servers', 1, 544, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6630, 'Webserver', 1, 544, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6631, 'HTTP Server', 1, 544, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6632, 'Www server', 1, 544, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6633, 'Web-server', 1, 544, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6634, 'HTTP web server', 1, 544, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6635, 'HTTP daemon', 1, 544, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6636, 'Web Server', 1, 544, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6637, 'Web servers', 1, 544, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6638, 'WWW server', 1, 544, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6639, 'HTTP server', 1, 544, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6640, 'ISSOW', 1, 545, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6641, 'IXP', 1, 546, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6642, 'Internet Exchange', 1, 546, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6643, 'Internet exchange', 1, 546, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6644, 'Internet Exchange Point', 1, 546, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6645, 'IMAP server', 1, 547, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6646, 'DIMAP', 1, 547, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6647, 'Interactive Mail Access Protocol', 1, 547, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6648, 'IMAP4', 1, 547, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6649, 'IMAP3', 1, 547, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6650, 'Imapd', 1, 547, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6651, 'IMAPv4', 1, 547, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6652, 'Imaps', 1, 547, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6653, 'IMAPS', 1, 547, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6654, 'Internet message access protocol', 1, 547, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6655, 'IMAP', 1, 547, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6656, 'Javascript Object Notation', 1, 548, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6657, 'Json', 1, 548, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6658, 'JSONNP', 1, 548, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6659, 'Internet JSON', 1, 548, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6660, 'JSON Schema', 1, 548, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6661, 'JSON5', 1, 548, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6662, 'I-JSON', 1, 548, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6663, 'HJSON', 1, 548, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6664, 'JavaScript Object Notation', 1, 548, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6665, 'Mainframe computers', 1, 552, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6666, 'Mainframe', 1, 552, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6667, 'Main frame', 1, 552, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6668, 'Big-iron', 1, 552, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6669, 'MainFrame', 1, 552, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6670, 'Mainframe computing', 1, 552, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6671, 'Mainframe Computer', 1, 552, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6672, 'Main frame computer', 1, 552, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6673, 'Mainframes', 1, 552, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6674, 'Big iron (computing)', 1, 552, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6675, 'Main Frame Computer', 1, 552, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6676, 'Main-frame', 1, 552, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6677, 'Mainframe server', 1, 552, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6678, 'Manufacturing Execution System', 1, 553, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6679, 'Manufacturing execution systems', 1, 553, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6680, 'Manufacturing Execution Systems', 1, 553, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6681, 'NonSQL', 1, 555, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6682, 'Software as a secure service', 1, 556, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6683, 'Saasworld', 1, 556, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6684, 'Software as service', 1, 556, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6685, 'SasS', 1, 556, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6686, 'Software-As-A-Service', 1, 556, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6687, 'Software-as-a-service', 1, 556, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6688, 'OpenSaaS', 1, 556, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6689, 'Software plus services', 1, 556, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6690, 'Software-as-a-Service', 1, 556, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6691, 'Software As A Service', 1, 556, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6692, 'Software as a Service', 1, 556, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6693, 'Software as a sevice', 1, 556, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6694, 'Cloud application', 1, 556, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6695, 'SaaSS', 1, 556, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6696, 'SaaS', 1, 556, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6697, 'Storage area networks', 1, 557, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6698, 'Storage Area Networks', 1, 557, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6699, 'Storage network', 1, 557, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6700, 'Distributed storage area networks', 1, 557, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6701, 'Storage Area Network (SAN)', 1, 557, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6702, 'Sanoip', 1, 557, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6703, 'SANoIP', 1, 557, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6704, 'Storage area networking', 1, 557, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6705, 'San server', 1, 557, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6706, 'SAN (computing)', 1, 557, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6707, 'Storage Area Network(SAN)', 1, 557, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6708, 'Centralized storage area networks', 1, 557, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6709, 'Storage layer', 1, 557, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6710, 'Storage Area Network', 1, 557, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6711, 'Storage networking', 1, 557, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6712, 'Online desktop', 1, 560, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6713, 'WebTop', 1, 560, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6714, 'Cloud desktop', 1, 560, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6715, 'Webtop', 1, 560, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6716, 'Web Desktop', 1, 560, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6717, 'Anonymous Surfing', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6718, 'Proxy IP address', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6719, 'Application layer proxy', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6720, 'Caching proxy server', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6721, 'Translation proxy server', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6722, 'Internet proxy', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6723, 'Anonymous server', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6724, 'Anonymous Web surfing', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6725, 'Proxyserver', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6726, 'Web Proxy', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6727, 'Proxy Bouncing', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6728, 'Proxifier', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6729, 'Http proxy', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6730, 'Proxy chaining', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6731, 'Suffix proxy', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6732, 'Anonymity network', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6733, 'Application-layer proxy', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6734, 'CGI proxy', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6735, 'HTTP proxy server', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6736, 'Free proxy', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6737, 'Proxy Website', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6738, 'Intercepting proxy server', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6739, 'HTTPS Proxy', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6740, 'Proxy chain', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6741, 'Proxy IP', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6742, 'Proxy gateway', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6743, 'Web proxy', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6744, 'Proxy Server', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6745, 'Web proxies', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6746, 'Proxy servers', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6747, 'Proxy bypass', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6748, 'Anonymous proxy server', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6749, 'Bypass (computing)', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6750, 'Residential proxy', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6751, 'Transparent proxy', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6752, 'Myspace proxy', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6753, 'Split proxies', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6754, 'Forward proxy', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6755, 'P roxy', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6756, 'HTTP proxy', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6757, 'Proxy Sites', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6758, 'SSL Proxy', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6759, 'Anonymous Web proxy', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6760, 'Server proxy', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6761, 'Tproxy', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6762, 'Circumventor', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6763, 'Caching proxy', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6764, 'Secure & Anonymous Internet Surfing', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6765, 'HTTP proxying', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6766, 'Proxy filter', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6767, 'Anonymous web proxy', 1, 561, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6768, 'Utility (computer science)', 1, 562, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6769, 'Software utility', 1, 562, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6770, 'Utility program', 1, 562, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6771, 'Utility (software)', 1, 562, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6772, 'Software utilities', 1, 562, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6773, 'Utility Programs', 1, 562, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6774, 'Utility (computing)', 1, 562, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6775, 'Utility Software', 1, 562, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6776, 'NetScaler', 3, 563, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6777, 'Netscaler', 3, 563, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6778, 'Oracle virtual machine', 3, 567, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6779, 'Oracle VM', 3, 567, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6780, 'ESX Server', 3, 568, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6781, 'VMware ESXi Server', 3, 568, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6782, 'VMware ESX Server 2.0', 3, 568, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6783, 'VMWare ESX Server', 3, 568, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6784, 'ESX Server 3i', 3, 568, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6785, 'VMware ESX Server 3.0', 3, 568, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6786, 'VMware ESX', 3, 568, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6787, 'VMware ESXi (software)', 3, 568, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6788, 'VMWare ESX', 3, 568, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6789, 'VMWare ESXi', 3, 568, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6790, 'VMware ESX Server', 3, 568, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6791, 'ESXI', 3, 568, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6792, 'ESXi', 3, 568, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6793, 'VMware GSX Server', 3, 569, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6794, 'GSX Server', 3, 569, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6795, 'VMWare Server', 3, 569, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6796, 'Structured Query Language', 1, 572, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6797, 'SQL script', 1, 572, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6798, 'ANSI SQL', 1, 572, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6799, 'SQL Servers', 1, 572, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6800, 'Procedural SQL', 1, 572, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6801, 'Structured query language', 1, 572, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6802, 'SQL language', 1, 572, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6803, 'Distributed SQL processing', 1, 572, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6804, 'SQL programming language', 1, 572, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6805, 'Transaction Control Language', 1, 572, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6806, 'SEQUEL', 1, 572, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6807, 'SQL (programming language)', 1, 572, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6808, 'SQL database', 1, 572, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6809, 'Structure Query Language', 1, 572, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6810, 'Sql', 1, 572, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6811, 'Structured Programming Facility', 2, 573, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6812, 'System Productivity Facility', 2, 573, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6813, 'Program Development Facility', 2, 573, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6814, 'Interactive System Productivity Facility', 2, 573, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6815, 'Model', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6816, 'Model-view', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6817, 'Model view controller triad', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6818, 'controller', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6819, 'view', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6820, 'Model-template-view', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6821, 'Model–View–Controller', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6822, 'Model View Controller', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6823, 'MVC controller', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6824, 'View (MVC)', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6825, 'Model-View-Controller', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6826, 'Controller (MVC)', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6827, 'MVC Design Pattern', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6828, 'MVC architecture', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6829, 'Model-view controller', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6830, 'Model-Template-View', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6831, 'MVC Pattern', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6832, 'Model-view-controller design pattern', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6833, 'Model-View-Controller paradigm', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6834, 'Model view controller', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6835, 'Model/View/Controller', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6836, 'MVC view', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6837, 'MVC model', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6838, 'Model (MVC)', 1, 574, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6839, 'Model-view-controller', 1, 574, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6840, 'Linux (operating system)', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6841, 'LINUX', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6842, 'Linuces', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6843, 'GNU/Linux/X11', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6844, 'LinuX', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6845, 'Linux-based GNU system', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6846, 'Gnu/Linux', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6847, 'Linux+GNU', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6848, 'Linux desktop', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6849, 'Lienucks', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6850, 'GNU-Linux', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6851, 'Linux/GNU', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6852, 'Desktop GNU/Linux', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6853, 'Desktop Linux', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6854, 'Linux Powered System', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6855, 'Linux/gnu', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6856, 'Linux server', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6857, 'GNU-linux', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6858, 'GNU/Linux', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6859, 'Linux box', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6860, 'GNULinux', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6861, 'Lynux', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6862, 'Linux OS', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6863, 'Linices', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6864, 'Linux-based GNU systems', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6865, 'GNU/Linux/X', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6866, 'Desktop linux', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6867, 'GNU–Linux', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6868, 'Gnu/linux', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6869, 'GNU+Linux', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6870, 'GNU Linux', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6871, 'Linux (GNU/Linux)', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6872, 'Lineux', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6873, 'Linux/X11', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6874, 'Linix', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6875, 'Linux operating system', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6876, 'Linux/X', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6877, 'BlackRhino GNU/Linux', 6, 576, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6878, 'MSP (operating system)', 6, 577, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6879, 'MVS/ESA', 6, 577, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6880, 'OS/MVS', 6, 577, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6881, 'MVS Operating System', 6, 577, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6882, 'MVS/XA', 6, 577, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6883, 'MVS/370', 6, 577, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6884, 'Fujitsu MSP', 6, 577, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6885, 'OS/VS2 (MVS)', 6, 577, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6886, 'Hitachi VOS3', 6, 577, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6887, 'MVS/SP', 6, 577, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6888, 'Multiple Virtual Storage', 6, 577, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6889, 'Unixes', 6, 578, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6890, 'UNIX operating system', 6, 578, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6891, 'UNIX systems', 6, 578, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6892, 'Unix operating system', 6, 578, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6893, 'Truly Unix', 6, 578, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6894, 'UNIX system', 6, 578, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6895, 'Unix box', 6, 578, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6896, 'Unix system', 6, 578, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6897, 'Traditional Unix', 6, 578, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6898, 'UNIX', 6, 578, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6899, 'BSD operating system', 6, 579, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6900, 'Berkeley software distribution', 6, 579, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6901, '4.4BSD-Lite', 6, 579, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6902, 'Vmunix', 6, 579, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6903, 'BSD Unices', 6, 579, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6904, 'HPBSD', 6, 579, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6905, '4.4BSD-Encumbered', 6, 579, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6906, 'Berkeley UNIX', 6, 579, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6907, 'Berkley Software Distribution', 6, 579, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6908, 'Berkeley UNIX 4.3BSD', 6, 579, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6909, 'BSD-based', 6, 579, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6910, 'Bsd', 6, 579, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6911, '*BSD', 6, 579, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6912, 'BSD Unix', 6, 579, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6913, 'BSD (operating system)', 6, 579, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6914, 'BSD', 6, 579, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6915, 'BSD UNIX', 6, 579, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6916, 'Berkeley System Distribution', 6, 579, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6917, 'Berkeley Unix', 6, 579, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6918, 'MS Windows', 6, 580, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6919, 'Windows', 6, 580, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6920, 'Windows Operating System', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6921, 'Windows OS', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6922, 'Windows 365', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6923, 'Windows the operating system', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6924, 'Windows (Operating System)', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6925, 'WINDOWS', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6926, 'Windows (OS)', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6927, 'Microsoft windows', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6928, 'MS-Windows', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6929, 'Windows operating system', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6930, 'Windows PC', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6931, 'Mswin', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6932, 'Microsoft windows os', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6933, 'MICROSOFT WINDOWS', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6934, 'Widnows', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6935, 'Windwos', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6936, 'Windows (operating system)', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6937, 'MSWindows', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6938, 'Windows®', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6939, 'PC Windows', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6940, 'Ms windows', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6941, 'Windows os', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6942, 'MsWindows', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6943, 'Windows (Operating system)', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6944, '32-bit Windows', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6945, 'Microsoft windows operating system', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6946, 'Windows Microsoft', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6947, 'Freedows OS', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6948, 'MSWin', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6949, 'Windows computers', 6, 580, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6950, 'MS SQL', 2, 581, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6951, 'MS SQL Server', 2, 581, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6952, 'MSSQL', 2, 581, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6953, 'MS-SQL', 2, 581, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6954, 'Microsoft SQL Server 2005', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6955, 'Sql Server 2000', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6956, 'SQL Server 2017', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6957, 'SQL Server 2014 ISO', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6958, 'SQL Server 2000', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6959, 'SQL Server 2005', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6960, 'SQL Server 2014', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6961, 'Microsoft SQL Server 2008 R2', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6962, 'Microsoft SQL server', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6963, 'Microsoft SQL Server 2000', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6964, 'SQL Server 2014 CAB', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6965, 'SQL Server 2008 R2', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6966, 'Pubs (database)', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6967, 'SQL Server 2012', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6968, 'Microsoft SQL', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6969, 'Microsoft SQL Server 2008', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6970, 'Microsoft Sql Server', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6971, 'SQL 6.5', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6972, 'Ms sql server', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6973, 'SQL Server 2008', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6974, 'Data Source Views', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6975, 'Microsoft sql server', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6976, 'Mssql', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6977, 'SQL Server 2016', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6978, 'SQL 7.0', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6979, 'SQL Server 2019', 2, 581, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6980, 'C# (programming language)', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6981, 'C++++', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6982, 'Visual C Sharp .Net', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6983, 'Visual C Sharp Express Edition', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6984, 'C♯ (programming language)', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6985, 'Microsoft Visual C ♯', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6986, 'C Sharp language', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6987, 'C# programming language', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6988, 'ISO/IEC 23270', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6989, 'C Sharp Programming Language', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6990, 'Microsoft Visual C Sharp', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6991, 'C-sharp programming language', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6992, 'C ♯ (programming language)', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6993, 'C hash', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6994, 'C♯ (language)', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6995, 'C sharp (computing)', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6996, 'CS (programming language)', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6997, 'C sharp (language)', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6998, 'C Sharp (language)', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6999, 'ECMA-334', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7000, 'C-hash', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7001, 'C sharp 6.0', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7002, 'C♯ programming language', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7003, 'Visual C Sharp', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7004, 'C Sharp 5.0', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7005, 'C-Hash', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7006, 'C sharp programming language', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7007, 'ISO 23270', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7008, 'C Sharp Programming language', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7009, 'C Sharp (computing)', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7010, 'C # (programming language)', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7011, 'C sharp (programming language)', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7012, 'C hashtag', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7013, 'C Pound', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7014, 'C Sharp programming language', 9, 582, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7015, 'C plus plus', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7016, 'C++ 1.0', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7017, 'C plus plus programming language', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7018, 'ISO/IEC 14882:2003', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7019, 'C++ standard', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7020, 'Standard C++ Foundation', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7021, 'ISO/IEC 14882', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7022, 'Sepples', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7023, 'Cee plus plus', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7024, 'C++ program', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7025, 'C++ (Programming Language)', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7026, 'C+++', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7027, 'C++ syntax', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7028, 'ANSI C++', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7029, 'ISO C++', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7030, 'C++ (programming language)', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7031, 'C++ 2.0', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7032, 'ISO 14882', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7033, 'C++ language', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7034, 'Cee Plus Plus', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7035, 'C Plus Plus programming language', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7036, 'Core language', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7037, 'ISO C++ programming language', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7038, 'Cplusplus', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7039, 'C++ programming language', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7040, 'C++98', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7041, 'ISO/IEC 14882:2014', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7042, '++C', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7043, 'CPlusPlus', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7044, 'ISO/IEC 14882:2015', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7045, 'C-plus-plus programming language', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7046, 'C-plus-plus', 9, 583, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7047, 'C Plus Plus', 9, 583, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7048, 'Java programming language', 9, 584, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7049, 'Javax', 9, 584, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7050, 'Java Language Specification', 9, 584, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7051, 'Java (software)', 9, 584, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7052, 'Java (Programming language)', 9, 584, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7053, 'Javalang', 9, 584, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7054, 'Java Programming', 9, 584, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7055, 'JPD (file format)', 9, 584, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7056, 'Java (programming)', 9, 584, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7057, 'Java language specification', 9, 584, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7058, 'Java (langage)', 9, 584, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7059, 'Java language', 9, 584, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7060, 'Java technology', 9, 584, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7061, 'Flow Java', 9, 584, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7062, 'Java (language)', 9, 584, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7063, 'Java programming', 9, 584, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7064, 'Java (Programming Language)', 9, 584, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7065, 'Java prog', 9, 584, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7066, 'Java code', 9, 584, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7067, 'Java computer language', 9, 584, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7068, 'Java Programing Languge', 9, 584, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7069, 'Perl 7', 9, 585, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7070, 'Perl (programming language)', 9, 585, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7071, 'Practical Extraction and Report Language', 9, 585, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7072, 'Perl interpreter', 9, 585, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7073, 'Vanilla Perl', 9, 585, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7074, 'Practical Extraction And Report Language', 9, 585, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7075, 'Ponie', 9, 585, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7076, 'Embedded Perl', 9, 585, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7077, 'Perl language', 9, 585, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7078, 'X-perl', 9, 585, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7079, 'Perl programming language', 9, 585, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7080, 'Swiss army chainsaw', 9, 585, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7081, 'IndigoPerl', 9, 585, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7082, 'Perl code', 9, 585, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7083, 'Swiss-army chainsaw', 9, 585, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7084, 'Perl5', 9, 585, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7085, 'PONIE', 9, 585, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7086, 'PERL', 9, 585, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7087, 'Perl 5', 9, 585, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7088, 'Perl programming', 9, 585, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7089, 'Perl (language)', 9, 585, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7090, 'Python scripting language', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7091, 'Python program', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7092, 'PythonLanguage', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7093, 'Python computer language', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7094, 'Python code', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7095, 'Python3', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7096, 'Python (computing)', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7097, 'Python programming language', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7098, 'Python programming', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7099, 'Pythonistas', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7100, 'Pyston', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7101, 'Python language', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7102, 'Python (lang)', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7103, 'Python2', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7104, 'Python3000', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7105, 'Python 3k', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7106, 'Python (language)', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7107, 'Coconut (programming language)', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7108, 'Python (software)', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7109, 'Pythonlang', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7110, 'Python prog', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7111, 'Python Programming', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7112, 'Python Programming Language', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7113, 'Python (scripting language)', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7114, 'Pythonista', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7115, 'Python (programming)', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7116, 'Python (Programming Language)', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7117, 'Python (computer language)', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7118, 'Python 3K', 9, 587, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7119, 'OpenRsync', 6, 590, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7120, 'Openbsd', 6, 590, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7121, 'OpenCVS', 6, 590, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7122, 'Opencvs', 6, 590, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7123, 'Open bsd', 6, 590, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7124, 'OpenBSD project', 6, 590, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7125, 'Open BSD', 6, 590, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7126, 'OpenBSD Project', 6, 590, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7127, 'Obsd', 6, 590, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7128, 'Openrsync', 6, 590, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7129, 'VSE/SP', 6, 591, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7130, 'Z/VSE (operating system)', 6, 591, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7131, 'VSE/ESA', 6, 591, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7132, 'Z/VSE', 6, 591, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7133, 'DOS/VSE', 6, 591, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7134, 'ASP programming language', 9, 592, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7135, 'Active Server Page', 9, 592, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7136, 'ASP3', 9, 592, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7137, 'Apache::ASP', 9, 592, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7138, 'Active server pages', 9, 592, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7139, 'Classic ASP', 9, 592, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7140, 'ASP Hints', 9, 592, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7141, 'Asp Apache', 9, 592, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7142, 'Microsoft Disk Operating System', 6, 593, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7143, 'MSDOS', 6, 593, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7144, 'Microsoft DOS', 6, 593, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7145, 'MS DOS', 6, 593, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7146, 'MS-DOS 1.51', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7147, 'Microsoft Arabic MS-DOS 3.3', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7148, 'HP MS-DOS 3.22R', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7149, 'MS-DOS 3.31', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7150, 'MS-DOS 5.00', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7151, 'MS-DOS 3.3a', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7152, 'MS-DOS 3.3A', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7153, 'Ms-dos', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7154, 'TI MS-DOS 2.12', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7155, 'MS-DOS 3.30', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7156, 'MS-DOS 1.52', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7157, 'Ms-Dos', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7158, 'TeleVideo Personal Computer DOS', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7159, 'MSN-DOS Prompt', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7160, 'MS-DOS 2.5', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7161, 'AST Premium Exec DOS', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7162, 'Texas Instruments MS-DOS 2.12', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7163, 'MS-DOS 1.50', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7164, 'MS-DOS 1.20', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7165, 'Altos MS-DOS 2.11', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7166, 'Microsoft Hebrew MS-DOS', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7167, 'MS-DOS 3.22R', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7168, 'MS-DOS 3.4', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7169, 'MSdos', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7170, 'HDOS (Microsoft)', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7171, 'MS-DOS 3.21R', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7172, 'Microsoft MS-DOS 3.30A', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7173, 'Compaq MS-DOS 3.31', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7174, 'TeleVideo PC DOS', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7175, 'AST Premium Exec MS-DOS', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7176, 'NCR-DOS', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7177, 'MS-DOS 7.00', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7178, 'Microsoft ADOS 3.3', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7179, 'MS-DOS 1.23', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7180, 'Hebrew MS-DOS', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7181, 'MS-DOS 2.25', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7182, 'MS-DOS 3.0', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7183, 'ADOS 5.00', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7184, 'Microsoft HDOS 5.0', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7185, 'MS-DOS 2.12', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7186, 'MS-DOS 2.11', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7187, 'MS-DOS Mobile', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7188, 'MS-DOS 2.10', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7189, 'Microsoft HDOS 3.3', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7190, 'MS-DOS 1.27', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7191, 'MS-DOS 5.01', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7192, 'MS-DOS 1.11', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7193, 'MS-DOS 8.00', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7194, 'Tandy MS-DOS 2.11R', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7195, 'MS-DOS 6.x', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7196, 'MS-DOS 2.05', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7197, 'MS-DOS 3.30+', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7198, 'MS-DOS 5.0', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7199, 'HDOS (MS-DOS)', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7200, 'MS/DOS', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7201, 'MS-DOS 1.1', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7202, 'MS-DOS 2.50', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7203, 'Microsoft Arabic MS-DOS', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7204, 'MS-DOS 3.1', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7205, 'MS-DOS 1.14', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7206, 'MS-DOS 2.00', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7207, 'MS-DOS 3.3R', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7208, 'TeleVideo Personal Computer DOS 2.0', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7209, 'ADOS (Microsoft)', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7210, 'MS-DOS 3.40', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7211, 'MS-DOS 2.13', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7212, 'TeleVideo PC DOS 2.0', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7213, 'Microsoft Arabic MS-DOS 5.0', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7214, 'AST Premium Exec MS-DOS 5.0', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7215, 'Access DOS', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7216, 'MS-DOS 3.30a', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7217, 'MS-DOS 2.0', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7218, 'PC MS-DOS', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7219, 'MS-DOS 3.30A', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7220, 'TI MS-DOS 3.30R', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7221, 'MS-DOS 6', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7222, 'MS-DOS 5', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7223, 'Microsoft MS-DOS', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7224, 'MS-DOS 1.2', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7225, 'MS-DOS 3.3', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7226, 'ADOS 5.0', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7227, 'Texas Instruments MS-DOS 3.3R', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7228, 'AST MS-DOS 5.0', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7229, 'Microsoft HDOS', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7230, 'TI MS-DOS 3.3R', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7231, 'MS-DOS 4.00 (IBM-developed)', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7232, 'MS-DOS 1.22', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7233, 'MS-DOS 1.53', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7234, 'ADOS 3.3', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7235, 'MS-ROMDOS', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7236, 'MS-DOS 3.25', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7237, 'Hebrew MS-DOS 5.0', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7238, 'MS-DOS 1.40', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7239, 'MS-DOS 3.30R', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7240, 'AST Premium Exec DOS 5.0', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7241, 'Texas Instruments MS-DOS 3.30R', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7242, 'MS-DOS 1.25', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7243, 'MS-DOS 2.01', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7244, 'MS-DOS 1.26', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7245, 'MS-DOS 1.41', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7246, 'MS-DOS 1.29', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7247, 'TeleVideo Personal Computer DOS 2.11', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7248, 'MS-DOS 6.00', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7249, 'Microsoft MS-DOS 3.30a', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7250, 'TeleVideo PC DOS 2.11', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7251, 'SB-DOS', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7252, 'Microsoft Hebrew MS-DOS 5.0', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7253, 'HDOS 5.0', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7254, 'Hewlett-Packard MS-DOS 3.22R', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7255, 'MS-DOS 5.00A', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7256, 'MS-DOS 6.22', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7257, 'Microsoft ADOS 5.0', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7258, 'MS-DOS 3.00', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7259, 'MS-DOS 2.2', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7260, 'Hebrew MS-DOS 3.3', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7261, 'MS-DOS 1', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7262, 'COMPAQ-DOS', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7263, 'MS-DOS 3.21', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7264, 'MS-DOS 3.2', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7265, 'Microsoft MS-DOS 3.3A', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7266, 'MS-DOS 3.22', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7267, 'MS-DOS 6.21', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7268, 'MS-DOS 3.20', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7269, 'Microsoft ADOS', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7270, 'MS-DOS 1.30', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7271, 'MS-DOS 7.10', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7272, 'MS-DOS 3', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7273, 'MS-DOS 4.01', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7274, 'Altos MS-DOS', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7275, 'Microsoft Hebrew MS-DOS 3.3', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7276, 'Arabic MS-DOS', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7277, 'MsDOS', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7278, 'MS-DOS 1.28', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7279, 'MS-DOS 2.20', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7280, 'MS-DOS 1.13', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7281, 'MS-DOS 1.24', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7282, 'HDOS 5.00', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7283, 'ADOS (MS-DOS)', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7284, 'MS-DOS 1.21', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7285, 'MS-DOS 2', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7286, 'HDOS 3.3', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7287, 'MS DOS Mobile', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7288, 'MS-DOS 6.2', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7289, 'MS-DOS 6.0', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7290, 'MS-DOS 2.11R', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7291, 'MS-DOS 1.12', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7292, 'MS-DOS 6.20', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7293, 'Arabic MS-DOS 3.3', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7294, 'Arabic MS-DOS 5.0', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7295, 'MS-DOS 4.0 (IBM-developed)', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7296, 'Microsoft MS-DOS 3.3a', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7297, 'MS-DOS 1.54', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7298, 'MS-DOS 3.10', 6, 593, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7299, 'CoBoL', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7300, 'COBOL-85', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7301, 'COBOL 20XX', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7302, 'COBOL 85', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7303, 'ISO/IEC 1989', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7304, 'MF-COBOL', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7305, 'O-O COBOL', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7306, 'COBOL programming language', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7307, 'COBOL-74', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7308, 'COBOL 60', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7309, 'ISO 1989', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7310, 'COBOL 74', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7311, 'COBOL74', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7312, 'COBOL-68', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7313, 'OO COBOL', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7314, 'COBOL language', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7315, 'COBOL 1985', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7316, 'Common Ordinary Business-Oriented Language', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7317, 'COBOL 1968', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7318, 'COBOL 2014', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7319, 'Object-oriented COBOL', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7320, 'Common Business Oriented Language', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7321, 'COBOL (programming language)', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7322, 'X3J4', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7323, 'COBOL68', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7324, 'COBOL 1974', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7325, 'COBOL85', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7326, 'OO-COBOL', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7327, 'COBOL-60', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7328, 'COmmon Business-Oriented Language', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7329, 'COBOL 1960', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7330, 'COBOL 2002', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7331, 'RM/COBOL', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7332, 'COBOL 68', 9, 594, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7333, 'Common Business-Oriented Language', 9, 594, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7334, 'Cobol', 9, 594, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7335, 'XML comment', 9, 596, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7336, 'Xml:lang', 9, 596, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7337, 'Well-formed XML', 9, 596, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7338, 'XML tag set', 9, 596, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7339, 'XML Specification', 9, 596, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7340, 'Dynamic XML', 9, 596, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7341, 'Extended Markup Language', 9, 596, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7342, 'XML vocabulary', 9, 596, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7343, 'XML feeds', 9, 596, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7344, 'Extended markup language', 9, 596, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7345, 'XML document', 9, 596, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7346, 'Valid XML document', 9, 596, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7347, 'EXtensible Markup Language', 9, 596, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7348, 'Web3S', 9, 596, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7349, 'Xml', 9, 596, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7350, 'Extensible Markup Language', 9, 596, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7351, 'XML feed', 9, 596, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7352, 'Xml parser', 9, 596, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7353, 'Extensible markup language', 9, 596, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7354, 'XML parser', 9, 596, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7355, 'Text/xml', 9, 596, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7356, 'DOS/VS', 6, 597, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7357, 'IBM TOS/360', 6, 597, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7358, 'DOS/360', 6, 597, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7359, 'Tape Operating System', 6, 597, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7360, 'TOS/360', 6, 597, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7361, 'SSX/VSE', 6, 597, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7362, 'Z/TPF', 6, 598, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7363, 'TPF/ESA', 6, 598, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7364, 'Pascal-SC', 9, 599, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7365, 'Pascal-P1', 9, 599, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7366, 'Pascal (language)', 9, 599, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7367, 'Pascal-P', 9, 599, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7368, 'Pascal programming language', 9, 599, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7369, 'PASCAL-XSC', 9, 599, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7370, 'Pascal-S', 9, 599, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7371, 'Pascal Programming Language', 9, 599, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7372, 'PASCAL-SC', 9, 599, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7373, 'PASCAL (Programming language)', 9, 599, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7374, 'Pascal-P2', 9, 599, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7375, 'Pascal-P3', 9, 599, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7376, 'Pascal-P system', 9, 599, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7377, 'Pascal-P System', 9, 599, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7378, 'Pascal-F', 9, 599, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7379, 'Pascal (command)', 9, 599, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7380, 'Pascal-P5', 9, 599, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7381, 'Pascal language', 9, 599, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7382, 'Pascal-p2', 9, 599, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7383, 'Pascal 86', 9, 599, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7384, 'Pascal-P4', 9, 599, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7385, 'Pascal-XSC', 9, 599, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7386, 'BEA-WebLogic', 8, 600, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7387, 'Bea Weblogic', 8, 600, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7388, 'Oracle Weblogic', 8, 600, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7389, 'Web Logic', 8, 600, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7390, 'BEA AS', 8, 600, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7391, 'BEA WebLogic', 8, 600, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7392, 'WebLogic', 8, 600, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7393, 'BEA Application Server', 8, 600, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7394, 'T3Server', 8, 600, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7395, 'DbKona', 8, 600, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7396, 'BEA Weblogic', 8, 600, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7397, 'Oracle WebLogic', 8, 600, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7398, 'Weblogic', 8, 600, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7399, 'Oracle Weblogic Server', 8, 600, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7400, 'WebLogic Application Server', 8, 600, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7401, 'Netbsd', 6, 602, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7402, 'NETBSD', 6, 602, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7403, 'Nbsd', 6, 602, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7404, 'The NetBSD Foundation', 6, 602, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7405, 'NBSD', 6, 602, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7406, 'Net bsd', 6, 602, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7407, 'Net BSD', 6, 602, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7408, 'NetBSD kernel', 6, 602, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7409, 'Windows Sharepoint', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7410, 'Microsoft SharePoint Server', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7411, 'MOSS 2007', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7412, 'Microsoft Office SharePoint Server 2007', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7413, 'SharePoint 2007', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7414, 'Windows sharepoint', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7415, 'Microsoft SharePoint 2010', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7416, 'SharePoint 2010', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7417, 'Microsoft SharePoint 2007', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7418, 'Sharepoint', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7419, 'Share point server', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7420, 'SharePoint Foundation', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7421, 'SharePoint services', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7422, 'SharePoint Server', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7423, 'Sharepoint portal server', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7424, 'Microsoft sharepoint', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7425, 'Windows SharePoint 2007', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7426, 'Microsoft SharePoint', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7427, 'Office SharePoint Server', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7428, 'Windows SharePoint', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7429, 'MS Sharepoint', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7430, 'Windows SharePoint Server', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7431, 'Sharepoint 2007', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7432, 'Windows SharePoint Services', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7433, 'Share Point', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7434, 'Microsoft Office Sharepoint Server 2007', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7435, 'Microsoft Windows SharePoint Services', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7436, 'Microsoft Office SharePoint Portal Server', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7437, 'Microsoft Sharepoint Foundation', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7438, 'Web part packager', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7439, 'SharePoint Portal Server', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7440, 'Sharepoint services', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7441, 'Sharepoint Services', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7442, 'Sharepoint 2010', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7443, 'Microsoft Sharepoint', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7444, 'Windows Sharepoint Services 3', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7445, 'Sharepoint server', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7446, 'MS SharePoint', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7447, 'Microsoft Office SharePoint', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7448, 'SharePointCOE', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7449, 'Share point', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7450, 'Sharepoint collaboration', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7451, 'Microsoft SharePoint Foundation', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7452, 'SharePoint Services', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7453, 'Windows Sharepoint Services', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7454, 'Microsoft Office SharePoint Server', 2, 603, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7455, 'Adstar Distributed Storage Manager', 2, 604, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7456, 'Tivoli Storage Manager', 2, 604, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7457, 'ADSM', 2, 604, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7458, 'ADSTAR Distributed Storage Manager', 2, 604, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7459, 'IBM Tivoli Storage Manager FastBack', 2, 604, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7460, 'Distributed Storage Manager Client', 2, 604, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7461, 'Spectrum Scale', 2, 605, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7462, 'IBM Spectrum Scale', 2, 605, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7463, 'General Parallel File System', 2, 605, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7464, 'IBM General Parallel File System', 2, 605, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7465, 'Vesta File System', 2, 605, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7466, 'Arbor Software', 2, 607, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7467, 'Hyperion Planning', 2, 607, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7468, 'z/VM', 6, 608, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7469, 'Microsoft IIS', 8, 609, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7470, 'Microsoft Internet Information Services', 8, 609, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7471, 'Internet Information Server', 8, 609, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7472, 'IIS 7', 8, 609, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7473, 'Microsoft Internet Information Server', 8, 609, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7474, 'IIS Media Services', 8, 609, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7475, 'Microsoft-IIS', 8, 609, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7476, 'MS IIS', 8, 609, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7477, 'IIS7', 8, 609, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7478, 'IIS Media Pack', 8, 609, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7479, 'Microsoft-iis', 8, 609, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7480, 'Microsoft IIS server', 8, 609, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7481, 'IIS Express', 8, 609, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7482, 'IIS server', 8, 609, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7483, 'Oracle OC4J', 8, 610, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7484, 'OC4J', 8, 610, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7485, 'Oracle Application Server 10g', 8, 610, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7486, 'credstash', 2, 612, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7487, 'Snyk', 2, 613, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7488, 'Akka', 2, 614, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7489, 'Akka (software)', 2, 614, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7490, 'Akka (toolkit)', 2, 614, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7491, 'Varnish', 8, 615, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7492, 'Varnish (Software)', 8, 615, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7493, 'Varinish (Software)', 8, 615, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7494, 'Varnish cache', 8, 615, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7495, 'Varnishd', 8, 615, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7496, 'Varnish cache server', 8, 615, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7497, 'Varnish-cache.org', 8, 615, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7498, 'Varnish (software)', 8, 615, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7499, 'Datadog', 10, 616, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7500, 'API', 1, 617, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7501, 'Application-programming interface', 1, 617, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7502, 'Application Programming Interfaces', 1, 617, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7503, 'Application-level interaction', 1, 617, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7504, 'Application Program Interface', 1, 617, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7505, 'Api', 1, 617, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7506, 'API documentation', 1, 617, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7507, 'API Documentation', 1, 617, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7508, 'Application Programming Interface (API)', 1, 617, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7509, 'Application program interface', 1, 617, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7510, 'Applications programming interface', 1, 617, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7511, 'API', 1, 617, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7512, 'Hazelcast', 10, 618, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7513, 'Nuxeo', 10, 620, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7514, 'ArangoDB', 2, 621, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7515, 'AQL (ArangoDB Query Language)', 2, 621, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7516, 'AvocadoDB', 2, 621, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7517, 'Eclipse Che', 2, 622, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7518, 'Codenvy', 2, 622, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7519, 'Amazon S3', 2, 623, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7520, 'Amazon Simple Storage Service', 2, 623, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7521, 'Simple Storage Service', 2, 623, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7522, 'S3.amazonaws.com', 2, 623, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7523, 'Amazon-s3', 2, 623, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7524, 'AWS S3', 2, 623, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7525, 'Applications that use S3 API', 2, 623, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7526, 'User:Leoinspace/Applications that use S3 API', 2, 623, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7527, 'Amazon S3 server', 2, 623, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7528, 'Amazon s3', 2, 623, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7529, 'Amazon Simple Storage Service', 2, 623, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7530, 'S3', 2, 623, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7531, 'ClickHouse', 2, 624, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7532, 'Clickhouse', 2, 624, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7533, 'MinIO', 2, 625, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7534, 'Minio', 2, 625, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7535, 'Elasticsearch', 2, 626, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7536, 'Compass Project', 2, 626, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7537, 'ElasticSearch', 2, 626, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7538, 'Shay Banon', 2, 626, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7539, 'Logstash', 2, 626, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7540, 'Elastic search', 2, 626, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7541, 'Elastic Search', 2, 626, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7542, 'Elasticsearch BV', 2, 626, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7543, 'Elastic stack', 2, 626, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7544, 'ELK stack', 2, 626, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7545, 'es', 2, 626, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7546, 'XtraDB', 2, 627, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7547, 'Xtradb', 2, 627, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7548, 'Xtra DB', 2, 627, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7549, 'Percona XtraDB', 2, 627, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7550, 'Keycloak', 2, 628, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7551, 'JBoss SSO', 2, 628, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7552, 'PicketLink (software)', 2, 628, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7553, 'Grafana', 2, 629, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7554, 'Mattermost', 10, 630, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7555, 'Mattermost.com', 10, 630, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7556, 'Cloud IAM', 2, 632, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7557, 'Knative', 10, 633, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7558, 'Apache Cassandra', 2, 634, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7559, 'Apache cassandra', 2, 634, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7560, 'Cassandra (database)', 2, 634, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7561, 'Cassandra (software)', 2, 634, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7562, 'Cassandra software', 2, 634, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7563, 'Cassandra', 2, 634, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7564, 'Kubeflow', 10, 635, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7565, 'Qiskit', 2, 636, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7566, 'QISKit', 2, 636, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7567, 'Microsoft Azure', 2, 637, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7568, 'Windows Strata', 2, 637, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7569, 'Windows Cloud', 2, 637, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7570, 'Windows azure', 2, 637, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7571, 'Windows Azure Fabric Controller', 2, 637, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7572, 'Microsoft Windows Azure', 2, 637, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7573, 'Azure Services Platform', 2, 637, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7574, 'Windows Azure', 2, 637, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7575, 'Azure machine learning studio', 2, 637, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7576, 'Microsoft azure', 2, 637, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7577, 'Ethereum Blockchain as a Service', 2, 637, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7578, 'Windows Azure', 2, 637, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7579, 'Azure', 2, 637, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7580, 'Strimzi', 10, 638, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7581, 'Sematext', 10, 639, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7582, 'Eclipse Ditto', 2, 641, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7583, 'Zadara', 2, 643, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7584, 'Zadara Storage', 2, 643, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7585, 'Istio', 2, 644, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7586, 'Vault', 2, 645, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7587, 'Vault overseer', 2, 645, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7588, 'Vault (disambiguation)', 2, 645, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7589, 'Vaults', 2, 645, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7590, 'Vault (software)', 2, 645, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7591, 'HashiCorp Vault', 2, 645, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7592, 'Apache Druid', 2, 646, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7593, 'Druid (open-source data store)', 2, 646, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7594, 'etcd', 2, 647, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7595, 'Traefik', 8, 648, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7596, 'IBM Cloud', 2, 649, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7597, 'Bluemix', 2, 649, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7598, 'IBM Bluemix', 2, 649, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7599, 'OpenWhisk', 2, 649, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7600, 'CockroachDB', 2, 651, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7601, 'Cockroach DB', 2, 651, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7602, 'User:Remote50/sandbox', 2, 651, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7603, 'Cockroachlabs', 2, 651, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7604, 'Cockroach Labs', 2, 651, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7605, 'Jaeger', 10, 652, NULL); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7606, 'NATURAL', 9, 653, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7607, 'NPL', 9, 653, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7608, 'Natural Programming Language', 9, 653, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7609, 'ACUCOBOL-GT', 9, 654, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7610, 'ACUCOBOL', 9, 654, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7611, 'AcuCOBOL', 9, 654, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7612, 'Ada', 9, 655, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7613, 'MIL-STD-1815', 9, 655, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7614, 'ISO/IEC 8652', 9, 655, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7615, 'Ada 95', 9, 655, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7616, 'Ada 83', 9, 655, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7617, 'Ada 80', 9, 655, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7618, 'Ada 2012', 9, 655, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7619, 'Adaptable DAta BAse System', 2, 656, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7620, 'ADABAS', 2, 656, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7621, 'Adabas database', 2, 656, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7622, 'Application Development System Online', 9, 657, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7623, 'ADS/O', 9, 657, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7624, 'ADS', 9, 657, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7625, 'ADS/Online', 9, 657, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7626, 'Ansible', 2, 5, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7627, 'Ansible Software', 2, 5, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7628, 'batch', 9, 659, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7629, 'BAT file', 9, 659, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7630, 'batch file', 9, 659, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7631, 'Windows PowerShell', 9, 660, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7632, 'PowerShell Core', 9, 660, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7633, 'PS', 9, 660, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7634, 'Power Shell', 9, 660, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7635, 'Monal Shell', 9, 660, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7636, 'Microsoft Shell', 9, 660, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7637, 'MSH', 9, 660, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7638, 'COM+', 9, 661, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7639, 'Microsoft Component Services', 9, 661, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7640, 'COM Services', 9, 661, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7641, 'DataFlex', 9, 662, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7642, 'Dataflex', 9, 662, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7643, 'Visual DataFlex', 9, 662, 'redirects_transclusions'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7644, 'DDS', 9, 663, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7645, 'Data distribution service', 9, 663, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7646, 'Forte 4GL', 9, 664, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7647, 'Forte', 9, 664, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7648, 'FoxPro', 9, 665, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7649, 'Foxpro', 9, 665, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7650, 'FoxPro 2', 9, 665, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7651, 'FoxPro 26', 9, 665, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7652, 'FoxPro 2.6', 9, 665, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7653, 'FPU26', 9, 665, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7654, 'IBM DB2 Purescale', 2, 666, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7655, 'DB2 Purescale', 2, 666, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7656, 'IDMS DB', 2, 667, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7657, 'IDMS Database', 2, 667, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7658, 'IDMS/DB Database', 2, 667, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7659, 'IDMS/DB DML', 9, 668, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7660, 'IDMS/DB Data Manipulation Language', 9, 668, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7661, 'IDMS DML', 9, 668, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7662, 'Jaguar', 8, 669, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7663, 'EAServer', 8, 670, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7664, 'Enterprise Application Server', 8, 670, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7665, 'Sybase Enterprise Application Server', 8, 670, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7666, 'Apache Cassandra', 2, 634, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7667, 'Cassandra', 2, 634, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7668, 'Cassandra SGBD', 2, 634, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7669, 'Netezza', 4, 672, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7670, 'IBM Netezza', 4, 672, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7671, 'OpenEdge', 9, 673, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7672, 'Progress 4GL', 9, 673, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7673, 'Progress', 9, 673, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7674, 'OpenEdge Advanced Business Language', 9, 673, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7675, 'OpenEdge ABL', 9, 673, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7676, 'Open Rapid Object Application Development', 9, 674, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7677, 'Oracle Reports', 2, 675, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7678, 'Oracle RPT', 2, 675, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7679, 'Oracle Reports 1', 2, 675, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7680, 'Oracle Reports 2.0', 2, 675, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7681, 'Oracle Reports 2.5', 2, 675, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7682, 'Oracle Reports 6i', 2, 675, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7683, 'Oracle Reports 9i', 2, 675, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7684, 'Oracle Reports 10g', 2, 675, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7685, 'SAP Replication Server', 2, 676, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7686, 'content tracker', 2, 677, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7687, 'Git', 2, 677, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7688, 'the stupid content tracker', 2, 677, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7689, 'gitlab', 2, 678, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7690, 'Virtual Storage Access Method', 2, 679, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7691, 'VSAM', 2, 679, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7692, 'BMS Map', 9, 689, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7693, 'Basic Mapping Supprt', 9, 689, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7694, 'BMS', 9, 689, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7695, 'DB400', 2, 690, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7696, 'DB/400', 2, 690, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7697, 'Integrated Language Environment', 9, 691, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7698, 'ILE', 9, 691, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7699, 'indexed sequential access method', 2, 693, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7700, 'ISAM', 2, 693, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7701, 'IBM ISAM', 2, 693, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7702, 'Oracle RDS', 2, 694, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7703, 'RDS Oracle DB', 2, 694, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7704, 'Oracle RDS Database', 2, 694, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7705, 'SAP IQ', 2, 695, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7706, 'Sybase IQ', 2, 695, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7707, 'SAP Sybase IQ', 2, 695, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7708, 'z/Linux', 2, 437, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7709, 'Linux on IBM Z', 2, 437, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7710, 'Integrated Data Store (IDS)', 2, 692, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7711, 'IDS', 2, 692, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7712, 'IDS/I', 2, 692, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7713, 'Springboot', 12, 399, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7714, 'Apache Maven', 2, 697, 'others'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7715, 'Maven', 2, 697, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7716, 'BAL', 9, 698, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7717, 'Basic Assembler Language', 9, 698, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7718, 'Basic Assembly Language', 9, 698, 'also_known_as'); -INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7719, 'IBM Basic assembly language', 9, 698, 'others'); - --- Table: entity_relations +INSERT INTO entity_mentions VALUES(1,'DOT NET',10,497,'others'); +INSERT INTO entity_mentions VALUES(2,'.NET 4.0',10,497,'others'); +INSERT INTO entity_mentions VALUES(3,'Dot net - FW 4',10,497,'others'); +INSERT INTO entity_mentions VALUES(4,'.Net 4.7.1 Enterprise Lib',10,497,'others'); +INSERT INTO entity_mentions VALUES(5,'.Net 3.5',10,497,'others'); +INSERT INTO entity_mentions VALUES(6,'.NET4.5',10,497,'others'); +INSERT INTO entity_mentions VALUES(7,'.NET Framework 4.x',10,497,'others'); +INSERT INTO entity_mentions VALUES(8,'Microsoft - Microsoft .NET Framework 2',10,497,'others'); +INSERT INTO entity_mentions VALUES(9,'Microsoft - Microsoft .NET Framework 3.5',10,497,'others'); +INSERT INTO entity_mentions VALUES(10,'.NET 3.0',10,497,'others'); +INSERT INTO entity_mentions VALUES(11,'Dot Net Framework 3.5',10,497,'others'); +INSERT INTO entity_mentions VALUES(12,'.NET',10,497,'others'); +INSERT INTO entity_mentions VALUES(13,'.NET 4',10,497,'others'); +INSERT INTO entity_mentions VALUES(14,'.Net 4.5.2 Enterprise Lib',10,497,'others'); +INSERT INTO entity_mentions VALUES(15,'.NET2.0',10,497,'others'); +INSERT INTO entity_mentions VALUES(16,'DOTNET',10,497,'others'); +INSERT INTO entity_mentions VALUES(17,'Microsoft .NET Release 1.1',10,497,'others'); +INSERT INTO entity_mentions VALUES(18,'.Net 4.5',10,497,'others'); +INSERT INTO entity_mentions VALUES(19,'.NET 2.0',10,497,'others'); +INSERT INTO entity_mentions VALUES(20,'.Net Framework 4.5',10,497,'others'); +INSERT INTO entity_mentions VALUES(21,'Microsoft .NET 4.0',10,497,'others'); +INSERT INTO entity_mentions VALUES(22,'.net 2017',10,497,'others'); +INSERT INTO entity_mentions VALUES(23,'.Net framework',10,497,'others'); +INSERT INTO entity_mentions VALUES(24,'Microsoft .NET Framework 4.5',10,497,'others'); +INSERT INTO entity_mentions VALUES(25,'.net 4.0 Framework',10,497,'others'); +INSERT INTO entity_mentions VALUES(26,'Microsoft.NET 2.0',10,497,'others'); +INSERT INTO entity_mentions VALUES(27,'.Net 4.5.2',10,497,'others'); +INSERT INTO entity_mentions VALUES(28,'.NET 4.6',10,497,'others'); +INSERT INTO entity_mentions VALUES(29,'Microsoft - Microsoft .NET Framework 4',10,497,'others'); +INSERT INTO entity_mentions VALUES(30,'.NET4.6',10,497,'others'); +INSERT INTO entity_mentions VALUES(31,'Microsoft - Microsoft .NET Framework 4.5',10,497,'others'); +INSERT INTO entity_mentions VALUES(32,'Dot Net Framework 4.5',10,497,'others'); +INSERT INTO entity_mentions VALUES(33,'Microsoft - Microsoft .NET Framework 3',10,497,'others'); +INSERT INTO entity_mentions VALUES(34,'Microsoft - Microsoft .Net Framework 1',10,497,'others'); +INSERT INTO entity_mentions VALUES(35,'Microsoft .NET Release 4.6',10,497,'others'); +INSERT INTO entity_mentions VALUES(36,'.net Framework 3.5 SP1',10,497,'others'); +INSERT INTO entity_mentions VALUES(37,'Microsoft.net',10,497,'others'); +INSERT INTO entity_mentions VALUES(38,'Microsoft .NET',10,497,'others'); +INSERT INTO entity_mentions VALUES(39,'Microsoft .NET Release 2.0',10,497,'others'); +INSERT INTO entity_mentions VALUES(40,'Dot Net 2.0',10,497,'others'); +INSERT INTO entity_mentions VALUES(41,'Common Runtime Library',7,482,'others'); +INSERT INTO entity_mentions VALUES(42,'APACHE LOG4NET',7,483,'others'); +INSERT INTO entity_mentions VALUES(43,'LOG4NET',7,483,'others'); +INSERT INTO entity_mentions VALUES(44,'Magik',7,484,'others'); +INSERT INTO entity_mentions VALUES(45,'Magick.NET',7,484,'others'); +INSERT INTO entity_mentions VALUES(46,'WCF',7,485,'others'); +INSERT INTO entity_mentions VALUES(47,'Windows Communication Foundation',7,485,'others'); +INSERT INTO entity_mentions VALUES(48,'Windows Communication Foundation (WCF)',7,485,'others'); +INSERT INTO entity_mentions VALUES(49,'WWF',7,486,'others'); +INSERT INTO entity_mentions VALUES(50,'Windows Workflow Foundation (WF)',7,486,'others'); +INSERT INTO entity_mentions VALUES(51,'Windows Workflow Foundation',7,486,'others'); +INSERT INTO entity_mentions VALUES(52,'WinForms',7,487,'others'); +INSERT INTO entity_mentions VALUES(53,'Ejes',2,1,'others'); +INSERT INTO entity_mentions VALUES(54,'(E)JES',2,1,'others'); +INSERT INTO entity_mentions VALUES(55,'(UNIRITA) A-AUTO 7.2.2',2,2,'others'); +INSERT INTO entity_mentions VALUES(56,'A-AUTO',2,2,'others'); +INSERT INTO entity_mentions VALUES(57,'A-Auto Job Scheduling Software',2,2,'others'); +INSERT INTO entity_mentions VALUES(58,'Active Directoy',10,498,'others'); +INSERT INTO entity_mentions VALUES(59,'Active Directory (AD)',10,498,'others'); +INSERT INTO entity_mentions VALUES(60,'Active Server Page',9,592,'others'); +INSERT INTO entity_mentions VALUES(61,'ASPNet',9,592,'others'); +INSERT INTO entity_mentions VALUES(62,'Microsoft Active Server Pages 6.0',9,592,'others'); +INSERT INTO entity_mentions VALUES(63,'APSX',9,592,'others'); +INSERT INTO entity_mentions VALUES(64,'ASP .NET',9,592,'others'); +INSERT INTO entity_mentions VALUES(65,'Microsoft Active Server Pages',9,592,'others'); +INSERT INTO entity_mentions VALUES(66,'Microsoft ASP files',9,592,'others'); +INSERT INTO entity_mentions VALUES(67,'Active Server Pages (ASP)',9,592,'others'); +INSERT INTO entity_mentions VALUES(68,'ASP',9,592,'others'); +INSERT INTO entity_mentions VALUES(69,'Classic ASP',9,592,'others'); +INSERT INTO entity_mentions VALUES(70,'Classis ASP',9,592,'others'); +INSERT INTO entity_mentions VALUES(71,'ASP 3.0',9,592,'others'); +INSERT INTO entity_mentions VALUES(72,'ASP.NET',9,592,'others'); +INSERT INTO entity_mentions VALUES(73,'ASPX',9,592,'others'); +INSERT INTO entity_mentions VALUES(74,'ASP.NET 1.0.3705',9,592,'others'); +INSERT INTO entity_mentions VALUES(75,'ActiveX',10,500,'others'); +INSERT INTO entity_mentions VALUES(76,'ADO',7,488,'others'); +INSERT INTO entity_mentions VALUES(77,'Activiti',2,3,'others'); +INSERT INTO entity_mentions VALUES(78,'Adobe Acrobat Reader',2,4,'others'); +INSERT INTO entity_mentions VALUES(79,'Acrobat Reader',2,4,'others'); +INSERT INTO entity_mentions VALUES(80,'Adobe - Adobe Acrobat Reader DC 2019',2,4,'others'); +INSERT INTO entity_mentions VALUES(81,'Adobe Acrobat Reader DC 2019',2,4,'others'); +INSERT INTO entity_mentions VALUES(82,'Android',6,418,'others'); +INSERT INTO entity_mentions VALUES(83,'Android SDK',6,418,'others'); +INSERT INTO entity_mentions VALUES(84,'Andriod',6,418,'others'); +INSERT INTO entity_mentions VALUES(85,'ansible',2,5,'others'); +INSERT INTO entity_mentions VALUES(86,'Apache ActiveMQ',2,6,'others'); +INSERT INTO entity_mentions VALUES(87,'Apache Active Queue',2,6,'others'); +INSERT INTO entity_mentions VALUES(88,'MQ Apache Active Queue',2,6,'others'); +INSERT INTO entity_mentions VALUES(89,'Cordova',10,501,'others'); +INSERT INTO entity_mentions VALUES(90,'Cordova framework',10,501,'others'); +INSERT INTO entity_mentions VALUES(91,'Apache Cordova',10,501,'others'); +INSERT INTO entity_mentions VALUES(92,'cordova-android',10,501,'others'); +INSERT INTO entity_mentions VALUES(93,'Apache Hbase',2,7,'others'); +INSERT INTO entity_mentions VALUES(94,'Hbase',2,7,'others'); +INSERT INTO entity_mentions VALUES(95,'Hive',2,8,'others'); +INSERT INTO entity_mentions VALUES(96,'Apache Hive',2,8,'others'); +INSERT INTO entity_mentions VALUES(97,'Apache HTTP Server 2.0',8,259,'others'); +INSERT INTO entity_mentions VALUES(98,'Apache HTTP Server 2.2 (Linux)',8,259,'others'); +INSERT INTO entity_mentions VALUES(99,'Apache HTTP Server 2.4 (Linux)',8,259,'others'); +INSERT INTO entity_mentions VALUES(100,'APACHE HTTP SERVER VERSION 2.2.13',8,259,'others'); +INSERT INTO entity_mentions VALUES(101,'TS-Apache HTTP Server 2.4',8,259,'others'); +INSERT INTO entity_mentions VALUES(102,'Apache',8,259,'others'); +INSERT INTO entity_mentions VALUES(103,'Apache Web Server',8,259,'others'); +INSERT INTO entity_mentions VALUES(104,'Apache 2.4',8,259,'others'); +INSERT INTO entity_mentions VALUES(105,'Apache HTTP Server 2.0 (Solaris)',8,259,'others'); +INSERT INTO entity_mentions VALUES(106,'APACHE HTTP SERVER VERSION 1.3',8,259,'others'); +INSERT INTO entity_mentions VALUES(107,'APACHE WEB SERVER VERSION 1.3.27',8,259,'others'); +INSERT INTO entity_mentions VALUES(108,'Apache WebServer',8,259,'others'); +INSERT INTO entity_mentions VALUES(109,'Apache HTTP Server 2.4',8,259,'others'); +INSERT INTO entity_mentions VALUES(110,'Apache 3',8,259,'others'); +INSERT INTO entity_mentions VALUES(111,'Apache Instance',8,259,'others'); +INSERT INTO entity_mentions VALUES(112,'Apache HTTP Server 2.0 (Linux)',8,259,'others'); +INSERT INTO entity_mentions VALUES(113,'Apache 2.4 - 32 bit',8,259,'others'); +INSERT INTO entity_mentions VALUES(114,'Apache HTTP Server 2.2',8,259,'others'); +INSERT INTO entity_mentions VALUES(115,'Apache HTTP Server',8,259,'others'); +INSERT INTO entity_mentions VALUES(116,'Apache Kafka',2,9,'others'); +INSERT INTO entity_mentions VALUES(117,'kafka',2,9,'others'); +INSERT INTO entity_mentions VALUES(118,'Apache Lucene',12,375,'others'); +INSERT INTO entity_mentions VALUES(119,'Lucene',12,375,'others'); +INSERT INTO entity_mentions VALUES(120,'ServiceMix',2,10,'others'); +INSERT INTO entity_mentions VALUES(121,'Apache ServiceMix',2,10,'others'); +INSERT INTO entity_mentions VALUES(122,'Apache Solr',2,11,'others'); +INSERT INTO entity_mentions VALUES(123,'solr',2,11,'others'); +INSERT INTO entity_mentions VALUES(124,'Subversion',2,12,'others'); +INSERT INTO entity_mentions VALUES(125,'Apache Subversion',2,12,'others'); +INSERT INTO entity_mentions VALUES(126,'Subversion software',2,12,'others'); +INSERT INTO entity_mentions VALUES(127,'Tomcat 8',8,260,'others'); +INSERT INTO entity_mentions VALUES(128,'APACHE TOMCAT VERSION 6',8,260,'others'); +INSERT INTO entity_mentions VALUES(129,'Tomcat 3',8,260,'others'); +INSERT INTO entity_mentions VALUES(130,'Apache Tomcat 6 (Linux)',8,260,'others'); +INSERT INTO entity_mentions VALUES(131,'Apache Tomcat',8,260,'others'); +INSERT INTO entity_mentions VALUES(132,'Apache Tomcat 3 (Linux)',8,260,'others'); +INSERT INTO entity_mentions VALUES(133,'tomcat',8,260,'others'); +INSERT INTO entity_mentions VALUES(134,'Tomcat 3/4/5/6/7',8,260,'others'); +INSERT INTO entity_mentions VALUES(135,'Apache Tomcat 7',8,260,'others'); +INSERT INTO entity_mentions VALUES(136,'Apache Software Foundation - Apache Tomcat 8.5',8,260,'others'); +INSERT INTO entity_mentions VALUES(137,'Tomcat 7',8,260,'others'); +INSERT INTO entity_mentions VALUES(138,'APACHE TOMCAT VERSION 7',8,260,'others'); +INSERT INTO entity_mentions VALUES(139,'Tomcat 6',8,260,'others'); +INSERT INTO entity_mentions VALUES(140,'Tomcat 8.0.33',8,260,'others'); +INSERT INTO entity_mentions VALUES(141,'Tomcat 7.0',8,260,'others'); +INSERT INTO entity_mentions VALUES(142,'Tomcat 9',8,260,'others'); +INSERT INTO entity_mentions VALUES(143,'Tomcat 4',8,260,'others'); +INSERT INTO entity_mentions VALUES(144,'Apache Software Foundation - Apache Tomcat 9',8,260,'others'); +INSERT INTO entity_mentions VALUES(145,'Apache Software Foundation - Apache Tomcat 7',8,260,'others'); +INSERT INTO entity_mentions VALUES(146,'Apache Tomcat 6',8,260,'others'); +INSERT INTO entity_mentions VALUES(147,'Apache Tomcat 8',8,260,'others'); +INSERT INTO entity_mentions VALUES(148,'Tomcat 8/9',8,260,'others'); +INSERT INTO entity_mentions VALUES(149,'Apache Tomcat 8.5.15',8,260,'others'); +INSERT INTO entity_mentions VALUES(150,'Apache Tomcat 9',8,260,'others'); +INSERT INTO entity_mentions VALUES(151,'Apache Software Foundation - Apache Tomcat 8',8,260,'others'); +INSERT INTO entity_mentions VALUES(152,'Apache Tomcat 1',8,260,'others'); +INSERT INTO entity_mentions VALUES(153,'Tomcat 5',8,260,'others'); +INSERT INTO entity_mentions VALUES(154,'Apache Tomcat 3',8,260,'others'); +INSERT INTO entity_mentions VALUES(155,'Apache Tomcat 8 (Linux)',8,260,'others'); +INSERT INTO entity_mentions VALUES(156,'APACHE TOMCAT VERSION 6.0',8,260,'others'); +INSERT INTO entity_mentions VALUES(157,'Apache Tomcat 5',8,260,'others'); +INSERT INTO entity_mentions VALUES(158,'Apache tomcat 9.0.12',8,260,'others'); +INSERT INTO entity_mentions VALUES(159,'Apache xerces',12,376,'others'); +INSERT INTO entity_mentions VALUES(160,'XERCES',12,376,'others'); +INSERT INTO entity_mentions VALUES(161,'Application Development Facility (ADF)',2,13,'others'); +INSERT INTO entity_mentions VALUES(162,'ADF',2,13,'others'); +INSERT INTO entity_mentions VALUES(163,'ADF (Application Development Facility)',2,13,'others'); +INSERT INTO entity_mentions VALUES(164,'Application Development Facility',2,13,'others'); +INSERT INTO entity_mentions VALUES(165,'ArcGIS Server 10.3.1',8,261,'others'); +INSERT INTO entity_mentions VALUES(166,'ArcGIS Server',8,261,'others'); +INSERT INTO entity_mentions VALUES(167,'Asterisk 1.8',2,14,'others'); +INSERT INTO entity_mentions VALUES(168,'Asterisk',2,14,'others'); +INSERT INTO entity_mentions VALUES(169,'AutoIt 3.3',9,299,'others'); +INSERT INTO entity_mentions VALUES(170,'AutoIt',9,299,'others'); +INSERT INTO entity_mentions VALUES(171,'AutoiIt',9,299,'others'); +INSERT INTO entity_mentions VALUES(172,'Automic - UC4',2,15,'others'); +INSERT INTO entity_mentions VALUES(173,'Automic Job Scheduler',2,15,'others'); +INSERT INTO entity_mentions VALUES(174,'Autosys',2,16,'others'); +INSERT INTO entity_mentions VALUES(175,'AWK',9,300,'others'); +INSERT INTO entity_mentions VALUES(176,'basic',9,301,'others'); +INSERT INTO entity_mentions VALUES(177,'WLS 10.2',8,600,'others'); +INSERT INTO entity_mentions VALUES(178,'BEA WebLogic Enterprise (WLE)',8,600,'others'); +INSERT INTO entity_mentions VALUES(179,'Oracle Weblogic 12.2.1.3.0',8,600,'others'); +INSERT INTO entity_mentions VALUES(180,'Oracle Weblogic 12c',8,600,'others'); +INSERT INTO entity_mentions VALUES(181,'Oracle Weblogic 12.2.1.2.0',8,600,'others'); +INSERT INTO entity_mentions VALUES(182,'BEA WLS',8,600,'others'); +INSERT INTO entity_mentions VALUES(183,'Weblogic 9.2.0.0',8,600,'others'); +INSERT INTO entity_mentions VALUES(184,'BEA WebLogic Server',8,600,'others'); +INSERT INTO entity_mentions VALUES(185,'Weblogic 12c',8,600,'others'); +INSERT INTO entity_mentions VALUES(186,'Oracle WebLogic Server 12',8,600,'others'); +INSERT INTO entity_mentions VALUES(187,'Weblogic 10.1 MP1',8,600,'others'); +INSERT INTO entity_mentions VALUES(188,'BEA WebLogic Server 8',8,600,'others'); +INSERT INTO entity_mentions VALUES(189,'Oracle WebLogic Server',8,600,'others'); +INSERT INTO entity_mentions VALUES(190,'WEBLOGIC-SERVER',8,600,'others'); +INSERT INTO entity_mentions VALUES(191,'Weblogic 12.2.1.2',8,600,'others'); +INSERT INTO entity_mentions VALUES(192,'Oracle WebLogic Server 12 (Linux)',8,600,'others'); +INSERT INTO entity_mentions VALUES(193,'Weblogic 12.2.1.3.0',8,600,'others'); +INSERT INTO entity_mentions VALUES(194,'WLE',8,600,'others'); +INSERT INTO entity_mentions VALUES(195,'Weblogic 10.3.0.0',8,600,'others'); +INSERT INTO entity_mentions VALUES(196,'Weblogic 12.1.3.0',8,600,'others'); +INSERT INTO entity_mentions VALUES(197,'Weblogic',8,600,'others'); +INSERT INTO entity_mentions VALUES(198,'Oracle WebLogic Server 10',8,600,'others'); +INSERT INTO entity_mentions VALUES(199,'ORACLE WEBLOGIC SERVER 10.3',8,600,'others'); +INSERT INTO entity_mentions VALUES(200,'Weblogic Server',8,600,'others'); +INSERT INTO entity_mentions VALUES(201,'Oracle Weblogic 8.1.1',8,600,'others'); +INSERT INTO entity_mentions VALUES(202,'Web Logic',8,600,'others'); +INSERT INTO entity_mentions VALUES(203,'Oracle Weblogic 12.x',8,600,'others'); +INSERT INTO entity_mentions VALUES(204,'BEA WEBLOGIC SERVER VERSION 7',8,600,'others'); +INSERT INTO entity_mentions VALUES(205,'Oracle Weblogic Server 12c',8,600,'others'); +INSERT INTO entity_mentions VALUES(206,'Weblogic 10.3.6.0',8,600,'others'); +INSERT INTO entity_mentions VALUES(207,'Oracle Weblogic 12.1.2',8,600,'others'); +INSERT INTO entity_mentions VALUES(208,'BEA WLE',8,600,'others'); +INSERT INTO entity_mentions VALUES(209,'WLS 10',8,600,'others'); +INSERT INTO entity_mentions VALUES(210,'WLS',8,600,'others'); +INSERT INTO entity_mentions VALUES(211,'WebLogic',8,600,'others'); +INSERT INTO entity_mentions VALUES(212,'ORACLE WEBLOGIC SERVER VERSION 10.3',8,600,'others'); +INSERT INTO entity_mentions VALUES(213,'Weblogic 12.2.1.1',8,600,'others'); +INSERT INTO entity_mentions VALUES(214,'BEA Weblogic',8,600,'others'); +INSERT INTO entity_mentions VALUES(215,'Oracle Weblogic 12.1',8,600,'others'); +INSERT INTO entity_mentions VALUES(216,'Weblogic 10',8,600,'others'); +INSERT INTO entity_mentions VALUES(217,'BeOS',6,419,'others'); +INSERT INTO entity_mentions VALUES(218,'Bluebeam Q',2,17,'others'); +INSERT INTO entity_mentions VALUES(219,'BMC Control-M CM For SAP 6.2',2,18,'others'); +INSERT INTO entity_mentions VALUES(220,'BMC Control-M',2,18,'others'); +INSERT INTO entity_mentions VALUES(221,'BMC Identity Management',2,19,'others'); +INSERT INTO entity_mentions VALUES(222,'IDM-BMC Identity Management',2,19,'others'); +INSERT INTO entity_mentions VALUES(223,'Borland Database Engine',2,20,'others'); +INSERT INTO entity_mentions VALUES(224,'Borland - BDE Administrator 1',2,20,'others'); +INSERT INTO entity_mentions VALUES(225,'Borland Database Engine (BDE)',2,20,'others'); +INSERT INTO entity_mentions VALUES(226,'Borland - BDE Administrator 5.2',2,20,'others'); +INSERT INTO entity_mentions VALUES(227,'brain script',9,302,'others'); +INSERT INTO entity_mentions VALUES(228,'BRAINScript',9,302,'others'); +INSERT INTO entity_mentions VALUES(229,'Business Intelligence and Reporting Tools',2,21,'others'); +INSERT INTO entity_mentions VALUES(230,'Actuate Report Server',2,21,'others'); +INSERT INTO entity_mentions VALUES(231,'BIRT',2,21,'others'); +INSERT INTO entity_mentions VALUES(232,'Business Intelligence and Reporting Tools (BIRT)',2,21,'others'); +INSERT INTO entity_mentions VALUES(233,'C',9,303,'others'); +INSERT INTO entity_mentions VALUES(234,'CSHARP',9,582,'others'); +INSERT INTO entity_mentions VALUES(235,'C# 3.0',9,582,'others'); +INSERT INTO entity_mentions VALUES(236,'C#',9,582,'others'); +INSERT INTO entity_mentions VALUES(237,'c-sharp',9,582,'others'); +INSERT INTO entity_mentions VALUES(238,'C+',9,583,'others'); +INSERT INTO entity_mentions VALUES(239,'C++',9,583,'others'); +INSERT INTO entity_mentions VALUES(240,'vc++',9,306,'others'); +INSERT INTO entity_mentions VALUES(241,'MSVC',9,306,'others'); +INSERT INTO entity_mentions VALUES(242,'Visual C++ 2008',9,306,'others'); +INSERT INTO entity_mentions VALUES(243,'Microsoft Visual C++',9,306,'others'); +INSERT INTO entity_mentions VALUES(244,'Visual C++',9,306,'others'); +INSERT INTO entity_mentions VALUES(245,'Microsoft - Microsoft Visual C++ 2008 Redistributable (x64) 9',9,306,'others'); +INSERT INTO entity_mentions VALUES(246,'vc',9,306,'others'); +INSERT INTO entity_mentions VALUES(247,'CA API Gateway',4,290,'others'); +INSERT INTO entity_mentions VALUES(248,'CA Gen 8',2,22,'others'); +INSERT INTO entity_mentions VALUES(249,'CA Gen',2,22,'others'); +INSERT INTO entity_mentions VALUES(250,'CA Technologies - Computer Associates Introscope 8.2',2,23,'others'); +INSERT INTO entity_mentions VALUES(251,'Introscope',2,23,'others'); +INSERT INTO entity_mentions VALUES(252,'CA Technologies - Computer Associates Introscope',2,23,'others'); +INSERT INTO entity_mentions VALUES(253,'CA Introscope',2,23,'others'); +INSERT INTO entity_mentions VALUES(254,'CA-Panvalet',2,24,'others'); +INSERT INTO entity_mentions VALUES(255,'Panvalet',2,24,'others'); +INSERT INTO entity_mentions VALUES(256,'Telon',2,25,'others'); +INSERT INTO entity_mentions VALUES(257,'CA-TELON',2,25,'others'); +INSERT INTO entity_mentions VALUES(258,'CSS 3',9,307,'others'); +INSERT INTO entity_mentions VALUES(259,'Style Sheet',9,307,'others'); +INSERT INTO entity_mentions VALUES(260,'Cascading Style Sheets',9,307,'others'); +INSERT INTO entity_mentions VALUES(261,'Cascading Style Sheets (CSS)',9,307,'others'); +INSERT INTO entity_mentions VALUES(262,'CSS',9,307,'others'); +INSERT INTO entity_mentions VALUES(263,'Bootstrap',12,377,'others'); +INSERT INTO entity_mentions VALUES(264,'Casegen',2,26,'others'); +INSERT INTO entity_mentions VALUES(265,'Chef Automate',2,27,'others'); +INSERT INTO entity_mentions VALUES(266,'CICS',10,502,'others'); +INSERT INTO entity_mentions VALUES(267,'Cisco AMP for Endpoints',2,28,'others'); +INSERT INTO entity_mentions VALUES(268,'Cisco Systems Inc. - Cisco AMP for Endpoints Connector 6.1',2,28,'others'); +INSERT INTO entity_mentions VALUES(269,'Cisco IOS',6,420,'others'); +INSERT INTO entity_mentions VALUES(270,'CiscoWorks',2,29,'others'); +INSERT INTO entity_mentions VALUES(271,'CISCO CISCOWORKS',2,29,'others'); +INSERT INTO entity_mentions VALUES(272,'CiscoWorks LAN Management Solution (LMS)',2,29,'others'); +INSERT INTO entity_mentions VALUES(273,'CiscoWorks LAN Management Solution',2,29,'others'); +INSERT INTO entity_mentions VALUES(274,'WinFrame',2,30,'others'); +INSERT INTO entity_mentions VALUES(275,'Citrix Virtual Apps',2,30,'others'); +INSERT INTO entity_mentions VALUES(276,'Citrix Managed Desktops',2,30,'others'); +INSERT INTO entity_mentions VALUES(277,'METAFRAME',2,30,'others'); +INSERT INTO entity_mentions VALUES(278,'XenApp',2,30,'others'); +INSERT INTO entity_mentions VALUES(279,'Citrix Metaframe',2,30,'others'); +INSERT INTO entity_mentions VALUES(280,'Citrix Server',2,30,'others'); +INSERT INTO entity_mentions VALUES(281,'Citrix Virtual Apps and Desktops',2,30,'others'); +INSERT INTO entity_mentions VALUES(282,'Presentation Server',2,30,'others'); +INSERT INTO entity_mentions VALUES(283,'NETSCALER-1.5',3,563,'others'); +INSERT INTO entity_mentions VALUES(284,'NETSCALER-11.',3,563,'others'); +INSERT INTO entity_mentions VALUES(285,'Citrix SD-WAN',3,563,'others'); +INSERT INTO entity_mentions VALUES(286,'NetScaler SD-WAN',3,563,'others'); +INSERT INTO entity_mentions VALUES(287,'Citrix NetScaler ADC',3,563,'others'); +INSERT INTO entity_mentions VALUES(288,'Citrix ADC',3,563,'others'); +INSERT INTO entity_mentions VALUES(289,'NetScaler ADC',3,563,'others'); +INSERT INTO entity_mentions VALUES(290,'NetScaler ADC VPX',3,564,'others'); +INSERT INTO entity_mentions VALUES(291,'Citrix ADC VPX',3,564,'others'); +INSERT INTO entity_mentions VALUES(292,'NetScaler VPX',3,564,'others'); +INSERT INTO entity_mentions VALUES(293,'Citrix NetScaler VPX',3,564,'others'); +INSERT INTO entity_mentions VALUES(294,'Citrix ADC BLX',3,565,'others'); +INSERT INTO entity_mentions VALUES(295,'NetScaler CPX',2,31,'others'); +INSERT INTO entity_mentions VALUES(296,'Citrix ADC CPX',2,31,'others'); +INSERT INTO entity_mentions VALUES(297,'Citrix ADC SDX',4,291,'others'); +INSERT INTO entity_mentions VALUES(298,'NetScaler SDX',4,291,'others'); +INSERT INTO entity_mentions VALUES(299,'Citrix ADC MPX',4,292,'others'); +INSERT INTO entity_mentions VALUES(300,'NetScaler MPX',4,292,'others'); +INSERT INTO entity_mentions VALUES(301,'Citrix Provisioning',2,32,'others'); +INSERT INTO entity_mentions VALUES(302,'Citrix Provisioning 2006',2,32,'others'); +INSERT INTO entity_mentions VALUES(303,'Citrix Provisioning Services',2,32,'others'); +INSERT INTO entity_mentions VALUES(304,'Provisioning Services 7.15.8',2,32,'others'); +INSERT INTO entity_mentions VALUES(305,'Citrix PVS',2,32,'others'); +INSERT INTO entity_mentions VALUES(306,'Clarify',2,33,'others'); +INSERT INTO entity_mentions VALUES(307,'Clear Basic',5,455,'others'); +INSERT INTO entity_mentions VALUES(308,'Clarify ClearBasic',5,455,'others'); +INSERT INTO entity_mentions VALUES(309,'Clarity LIMS',2,34,'others'); +INSERT INTO entity_mentions VALUES(310,'LabWare LIMS',2,35,'others'); +INSERT INTO entity_mentions VALUES(311,'Clipper',9,308,'others'); +INSERT INTO entity_mentions VALUES(312,'CLISTS',9,309,'others'); +INSERT INTO entity_mentions VALUES(313,'CLIST',9,309,'others'); +INSERT INTO entity_mentions VALUES(314,'COBOL II',9,594,'others'); +INSERT INTO entity_mentions VALUES(315,'COBOL',9,594,'others'); +INSERT INTO entity_mentions VALUES(316,'Cobol Assembler',9,594,'others'); +INSERT INTO entity_mentions VALUES(317,'IBM COGNOS BUSINESS INTELLIGENCE SERVER VERSION 10.2',2,36,'others'); +INSERT INTO entity_mentions VALUES(318,'IBM - COGNOS',2,36,'others'); +INSERT INTO entity_mentions VALUES(319,'IBM Cognos',2,36,'others'); +INSERT INTO entity_mentions VALUES(320,'Cognos',2,36,'others'); +INSERT INTO entity_mentions VALUES(321,'IBM Cognos ICM',2,36,'others'); +INSERT INTO entity_mentions VALUES(322,'Cold Fusion',2,37,'others'); +INSERT INTO entity_mentions VALUES(323,'Coldfusion Webserver',2,37,'others'); +INSERT INTO entity_mentions VALUES(324,'Coldfusion',2,37,'others'); +INSERT INTO entity_mentions VALUES(325,'ColdFus',2,37,'others'); +INSERT INTO entity_mentions VALUES(326,'CFML',9,311,'others'); +INSERT INTO entity_mentions VALUES(327,'ColdFusion Markup Language',9,311,'others'); +INSERT INTO entity_mentions VALUES(328,'ColdFusion Markup Language (CFML)',9,311,'others'); +INSERT INTO entity_mentions VALUES(329,'ConceptWave',2,38,'others'); +INSERT INTO entity_mentions VALUES(330,'CONNAPI',2,39,'others'); +INSERT INTO entity_mentions VALUES(331,'Sterling Connect',2,40,'others'); +INSERT INTO entity_mentions VALUES(332,'Connect Direct 4.5',2,40,'others'); +INSERT INTO entity_mentions VALUES(333,'IBM Sterling Connect:Direct',2,40,'others'); +INSERT INTO entity_mentions VALUES(334,'Connect:Direct',2,40,'others'); +INSERT INTO entity_mentions VALUES(335,'Connect Direct File agent',2,40,'others'); +INSERT INTO entity_mentions VALUES(336,'Connect Direct',2,40,'others'); +INSERT INTO entity_mentions VALUES(337,'IBM Sterling Connect:Direct vX',2,40,'others'); +INSERT INTO entity_mentions VALUES(338,'Sterling Connect:Direct',2,40,'others'); +INSERT INTO entity_mentions VALUES(339,'Connect Direct 4.5, 4.6',2,40,'others'); +INSERT INTO entity_mentions VALUES(340,'Connect Direct 4.6',2,40,'others'); +INSERT INTO entity_mentions VALUES(341,'Cormerstone',2,41,'others'); +INSERT INTO entity_mentions VALUES(342,'Cornerstone software',2,41,'others'); +INSERT INTO entity_mentions VALUES(343,'Cornerstone',2,41,'others'); +INSERT INTO entity_mentions VALUES(344,'Crystal Report',2,42,'others'); +INSERT INTO entity_mentions VALUES(345,'Crystal',2,42,'others'); +INSERT INTO entity_mentions VALUES(346,'Crystal Reports',2,42,'others'); +INSERT INTO entity_mentions VALUES(347,'DART',6,421,'others'); +INSERT INTO entity_mentions VALUES(348,'DL/I',9,312,'others'); +INSERT INTO entity_mentions VALUES(349,'Data Language/I',9,312,'others'); +INSERT INTO entity_mentions VALUES(350,'Data Language Interface (DL/I)',9,312,'others'); +INSERT INTO entity_mentions VALUES(351,'Data Language/One',9,312,'others'); +INSERT INTO entity_mentions VALUES(352,'Data Language/Interface',9,312,'others'); +INSERT INTO entity_mentions VALUES(353,'Dl1',9,312,'others'); +INSERT INTO entity_mentions VALUES(354,'Data Language Interface',9,312,'others'); +INSERT INTO entity_mentions VALUES(355,'DB2/400',2,43,'others'); +INSERT INTO entity_mentions VALUES(356,'IBM DB2 UDB/LUW ENTERPRISE SERVER EDITION DB2 v9.7 FP11 SB 37314',2,43,'others'); +INSERT INTO entity_mentions VALUES(357,'IBM - IBM DB2 Advanced Workgroup Server Edition OEM Limited Use 11.1',2,43,'others'); +INSERT INTO entity_mentions VALUES(358,'DB2 ESE 10.1',2,43,'others'); +INSERT INTO entity_mentions VALUES(359,'IBM - IBM DB2 Enterprise Server Edition - CPU Option 9.7',2,43,'others'); +INSERT INTO entity_mentions VALUES(360,'DB2 UDB',2,43,'others'); +INSERT INTO entity_mentions VALUES(361,'DB2',2,43,'others'); +INSERT INTO entity_mentions VALUES(362,'DB2 V9',2,43,'others'); +INSERT INTO entity_mentions VALUES(363,'IBM DB',2,43,'others'); +INSERT INTO entity_mentions VALUES(364,'DB2-UDB',2,43,'others'); +INSERT INTO entity_mentions VALUES(365,'DB2 11.1',2,43,'others'); +INSERT INTO entity_mentions VALUES(366,'IBM-DB2-V9',2,43,'others'); +INSERT INTO entity_mentions VALUES(367,'IBM - IBM DB2 Advanced Enterprise Server Edition OEM Limited Use 11.1',2,43,'others'); +INSERT INTO entity_mentions VALUES(368,'IBM - IBM DB2 Personal Edition Product Trial 9.7',2,43,'others'); +INSERT INTO entity_mentions VALUES(369,'IBM - IBM DB2 Enterprise Server Edition - CPU Option 10.1',2,43,'others'); +INSERT INTO entity_mentions VALUES(370,'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.*',2,43,'others'); +INSERT INTO entity_mentions VALUES(371,'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.7',2,43,'others'); +INSERT INTO entity_mentions VALUES(372,'IBM DB2 UDB/LUW ENTERPRISE SERVER EDITION DB2 ESE v9.7 FP 11 Special Build 35826 37314',2,43,'others'); +INSERT INTO entity_mentions VALUES(373,'DB2/UDB',2,43,'others'); +INSERT INTO entity_mentions VALUES(374,'IBM DB2 ENTERPRISE SERVER EDITION PVU OPTION 10.5',2,43,'others'); +INSERT INTO entity_mentions VALUES(375,'DB2 10.5',2,43,'others'); +INSERT INTO entity_mentions VALUES(376,'DB2 9.7',2,43,'others'); +INSERT INTO entity_mentions VALUES(377,'DB2 9.1',2,43,'others'); +INSERT INTO entity_mentions VALUES(378,'IBM - IBM DB2 UDB Enterprise Server Edition 8.2',2,43,'others'); +INSERT INTO entity_mentions VALUES(379,'DB2 for i',2,43,'others'); +INSERT INTO entity_mentions VALUES(380,'IBM - IBM DB2 Enterprise Server Edition OEM Limited Use 10.5',2,43,'others'); +INSERT INTO entity_mentions VALUES(381,'IBM - IBM DB2 Storage Optimization Feature 9.7',2,43,'others'); +INSERT INTO entity_mentions VALUES(382,'IBM - IBM DB2 Advanced Enterprise Server Edition PVU Option 10.5',2,43,'others'); +INSERT INTO entity_mentions VALUES(383,'UDB',2,43,'others'); +INSERT INTO entity_mentions VALUES(384,'IBM - IBM DB2 Enterprise Server Edition Product Trial 9.7',2,43,'others'); +INSERT INTO entity_mentions VALUES(385,'DB2 ESE 10.5',2,43,'others'); +INSERT INTO entity_mentions VALUES(386,'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.5',2,43,'others'); +INSERT INTO entity_mentions VALUES(387,'IBM DB2',2,43,'others'); +INSERT INTO entity_mentions VALUES(388,'IBM - IBM DB2 Workgroup Server Edition Product Trial 9.7',2,43,'others'); +INSERT INTO entity_mentions VALUES(389,'Delphi',9,313,'others'); +INSERT INTO entity_mentions VALUES(390,'docker',10,503,'others'); +INSERT INTO entity_mentions VALUES(391,'Documentum D2',2,44,'others'); +INSERT INTO entity_mentions VALUES(392,'Documentum content server',2,44,'others'); +INSERT INTO entity_mentions VALUES(393,'Documentum',2,44,'others'); +INSERT INTO entity_mentions VALUES(394,'DOCUMENTUM-CS',2,44,'others'); +INSERT INTO entity_mentions VALUES(395,'DRUPAL',2,45,'others'); +INSERT INTO entity_mentions VALUES(396,'Easytrieve',9,314,'others'); +INSERT INTO entity_mentions VALUES(397,'EZTriev',9,314,'others'); +INSERT INTO entity_mentions VALUES(398,'Eztrieve',9,314,'others'); +INSERT INTO entity_mentions VALUES(399,'Eclipse',2,46,'others'); +INSERT INTO entity_mentions VALUES(400,'ATLAS Transformation Language',5,456,'others'); +INSERT INTO entity_mentions VALUES(401,'ATL',5,456,'others'); +INSERT INTO entity_mentions VALUES(402,'ATLAS Transformation Language (ATL)',5,456,'others'); +INSERT INTO entity_mentions VALUES(403,'Elastic (ELK) Stack',2,47,'others'); +INSERT INTO entity_mentions VALUES(404,'ELK',2,47,'others'); +INSERT INTO entity_mentions VALUES(405,'EMC Celerra',11,510,'others'); +INSERT INTO entity_mentions VALUES(406,'ETAP License Manager (LM)',2,48,'others'); +INSERT INTO entity_mentions VALUES(407,'ETAP Licensing Manager/TARO GJH',2,48,'others'); +INSERT INTO entity_mentions VALUES(408,'ETAP License Manager',2,48,'others'); +INSERT INTO entity_mentions VALUES(409,'ETAP License Manager GJH',2,48,'others'); +INSERT INTO entity_mentions VALUES(410,'PrestoSoft - ExamDiff Application 1.6',2,49,'others'); +INSERT INTO entity_mentions VALUES(411,'PrestoSoft - ExamDiff Application',2,49,'others'); +INSERT INTO entity_mentions VALUES(412,'ExamDiff',2,49,'others'); +INSERT INTO entity_mentions VALUES(413,'ExamDiff Application',2,49,'others'); +INSERT INTO entity_mentions VALUES(414,'Expect',9,315,'others'); +INSERT INTO entity_mentions VALUES(415,'Expect Scripts',9,315,'others'); +INSERT INTO entity_mentions VALUES(416,'eXtensible HyperText Markup Language (XHTML)',9,316,'others'); +INSERT INTO entity_mentions VALUES(417,'eXtensible HyperText Markup Language',9,316,'others'); +INSERT INTO entity_mentions VALUES(418,'XHTML',9,316,'others'); +INSERT INTO entity_mentions VALUES(419,'XML',9,596,'others'); +INSERT INTO entity_mentions VALUES(420,'Extensible Markup Language',9,596,'others'); +INSERT INTO entity_mentions VALUES(421,'Extensible Markup Language (XML)',9,596,'others'); +INSERT INTO entity_mentions VALUES(422,'MSXML',9,318,'others'); +INSERT INTO entity_mentions VALUES(423,'Microsoft - MSXML 4.0 SP2 4.2',9,318,'others'); +INSERT INTO entity_mentions VALUES(424,'Extensible Stylesheet Language',9,319,'others'); +INSERT INTO entity_mentions VALUES(425,'XSL',9,319,'others'); +INSERT INTO entity_mentions VALUES(426,'Extensible Stylesheet Language (XSL)',9,319,'others'); +INSERT INTO entity_mentions VALUES(427,'Extensible Stylesheet Language Transformations (XLST)',9,320,'others'); +INSERT INTO entity_mentions VALUES(428,'Extensible Stylesheet Language Transformations',9,320,'others'); +INSERT INTO entity_mentions VALUES(429,'XSLT',9,320,'others'); +INSERT INTO entity_mentions VALUES(430,'ServerCA Access GatewayF5',2,50,'others'); +INSERT INTO entity_mentions VALUES(431,'F5 Secure Web Gateway Services',2,50,'others'); +INSERT INTO entity_mentions VALUES(432,'Fabric OS',6,422,'others'); +INSERT INTO entity_mentions VALUES(433,'FabricOS',6,422,'others'); +INSERT INTO entity_mentions VALUES(434,'FileMaker Pro',2,51,'others'); +INSERT INTO entity_mentions VALUES(435,'FILEMAKER PRO 8.5',2,51,'others'); +INSERT INTO entity_mentions VALUES(436,'Flash',10,504,'others'); +INSERT INTO entity_mentions VALUES(437,'Flexnet 2016',2,52,'others'); +INSERT INTO entity_mentions VALUES(438,'FlexNet Manager Suite',2,52,'others'); +INSERT INTO entity_mentions VALUES(439,'FlexNet Manager Suite 2016',2,52,'others'); +INSERT INTO entity_mentions VALUES(440,'FOCUS',9,321,'others'); +INSERT INTO entity_mentions VALUES(441,'fortran',9,322,'others'); +INSERT INTO entity_mentions VALUES(442,'Rhino Software Inc - FTP Voyager 16.2',2,53,'others'); +INSERT INTO entity_mentions VALUES(443,'FTP Voyager',2,53,'others'); +INSERT INTO entity_mentions VALUES(444,'Genymotion',2,54,'others'); +INSERT INTO entity_mentions VALUES(445,'GlassFish',8,263,'others'); +INSERT INTO entity_mentions VALUES(446,'GlassFish Server 4 Open Source',8,263,'others'); +INSERT INTO entity_mentions VALUES(447,'GlassFish Server 4',8,263,'others'); +INSERT INTO entity_mentions VALUES(448,'GNU',6,423,'others'); +INSERT INTO entity_mentions VALUES(449,'Go',9,323,'others'); +INSERT INTO entity_mentions VALUES(450,'Chrome',2,55,'others'); +INSERT INTO entity_mentions VALUES(451,'Google Chrome',2,55,'others'); +INSERT INTO entity_mentions VALUES(452,'Google Chrome 76',2,55,'others'); +INSERT INTO entity_mentions VALUES(453,'GraphQL',9,324,'others'); +INSERT INTO entity_mentions VALUES(454,'EMC Greenplum',2,56,'others'); +INSERT INTO entity_mentions VALUES(455,'Groovy',9,325,'others'); +INSERT INTO entity_mentions VALUES(456,'Hadoop',2,57,'others'); +INSERT INTO entity_mentions VALUES(457,'HAProxy',8,264,'others'); +INSERT INTO entity_mentions VALUES(458,'HiveQL',9,326,'others'); +INSERT INTO entity_mentions VALUES(459,'HP aC++ compiler',2,58,'others'); +INSERT INTO entity_mentions VALUES(460,'HP C++',2,58,'others'); +INSERT INTO entity_mentions VALUES(461,'HP aC++',2,58,'others'); +INSERT INTO entity_mentions VALUES(462,'HP C/aC++',2,58,'others'); +INSERT INTO entity_mentions VALUES(463,'HP C++ 10.20',2,58,'others'); +INSERT INTO entity_mentions VALUES(464,'HPC 11.11',2,59,'others'); +INSERT INTO entity_mentions VALUES(465,'HP C/ANSI C compiler',2,59,'others'); +INSERT INTO entity_mentions VALUES(466,'HP C/ANSI C',2,59,'others'); +INSERT INTO entity_mentions VALUES(467,'HP Nonstop J06.20.00',4,293,'others'); +INSERT INTO entity_mentions VALUES(468,'HP Nonstop',4,293,'others'); +INSERT INTO entity_mentions VALUES(469,'HP Operations Orchestration (HPOO)',2,60,'others'); +INSERT INTO entity_mentions VALUES(470,'HP Operations Orchestration',2,60,'others'); +INSERT INTO entity_mentions VALUES(471,'HPOO',2,60,'others'); +INSERT INTO entity_mentions VALUES(472,'HPSA',2,61,'others'); +INSERT INTO entity_mentions VALUES(473,'HP Server Automation',2,61,'others'); +INSERT INTO entity_mentions VALUES(474,'HP Server Automation (HPSA)',2,61,'others'); +INSERT INTO entity_mentions VALUES(475,'HFS',10,505,'others'); +INSERT INTO entity_mentions VALUES(476,'www.rejetto.com - HttpFileServer 2.3',10,505,'others'); +INSERT INTO entity_mentions VALUES(477,'HTTP File Server',10,505,'others'); +INSERT INTO entity_mentions VALUES(478,'HttpFileServer',10,505,'others'); +INSERT INTO entity_mentions VALUES(479,'Hypertext Markup Language',9,327,'others'); +INSERT INTO entity_mentions VALUES(480,'HTML4',9,327,'others'); +INSERT INTO entity_mentions VALUES(481,'HTML',9,327,'others'); +INSERT INTO entity_mentions VALUES(482,'Hypertext Markup Language (HTML)',9,327,'others'); +INSERT INTO entity_mentions VALUES(483,'HTML5',9,327,'others'); +INSERT INTO entity_mentions VALUES(484,'IBM BigFix',2,62,'others'); +INSERT INTO entity_mentions VALUES(485,'IBM - IBM BigFix Platform',2,62,'others'); +INSERT INTO entity_mentions VALUES(486,'IBM BigFix Platform',2,62,'others'); +INSERT INTO entity_mentions VALUES(487,'IBM - IBM BigFix Platform Client Deploy Tool 9.5',5,457,'others'); +INSERT INTO entity_mentions VALUES(488,'Client Deploy Tool',5,457,'others'); +INSERT INTO entity_mentions VALUES(489,'(IBM) IBM Business Monitor 8.5.6',2,63,'others'); +INSERT INTO entity_mentions VALUES(490,'IBM Business Monitor',2,63,'others'); +INSERT INTO entity_mentions VALUES(491,'IBM BPM',2,64,'others'); +INSERT INTO entity_mentions VALUES(492,'IBM Business Process Manager',2,64,'others'); +INSERT INTO entity_mentions VALUES(493,'IBM Business Process Manager 8.5.7.0',2,64,'others'); +INSERT INTO entity_mentions VALUES(494,'(IBM) IBM Business Process Manager 8.5.6',2,64,'others'); +INSERT INTO entity_mentions VALUES(495,'IBM Business Process Manager 8.5.6.0',2,64,'others'); +INSERT INTO entity_mentions VALUES(496,'IBM Content Manager OnDemand',2,65,'others'); +INSERT INTO entity_mentions VALUES(497,'IBM Content Manager OnDemand (CMOD)',2,65,'others'); +INSERT INTO entity_mentions VALUES(498,'CMOD',2,65,'others'); +INSERT INTO entity_mentions VALUES(499,'Data Power',4,294,'others'); +INSERT INTO entity_mentions VALUES(500,'IBM DataPower Gateway',4,294,'others'); +INSERT INTO entity_mentions VALUES(501,'IDG.7.5.2.19hp',4,294,'others'); +INSERT INTO entity_mentions VALUES(502,'datapower-connector',4,294,'others'); +INSERT INTO entity_mentions VALUES(503,'FileNet',2,66,'others'); +INSERT INTO entity_mentions VALUES(504,'IBM FileNet',2,66,'others'); +INSERT INTO entity_mentions VALUES(505,'IBM FileNet P8 Platform',2,66,'others'); +INSERT INTO entity_mentions VALUES(506,'hlasm',9,328,'others'); +INSERT INTO entity_mentions VALUES(507,'IBM High Level Assembler',9,328,'others'); +INSERT INTO entity_mentions VALUES(508,'IBM High Level Assembler (HLASM)',9,328,'others'); +INSERT INTO entity_mentions VALUES(509,'IBM - IBM HTTP Server 6.1',8,265,'others'); +INSERT INTO entity_mentions VALUES(510,'IHS',8,265,'others'); +INSERT INTO entity_mentions VALUES(511,'IBM - IBM HTTP Server 7',8,265,'others'); +INSERT INTO entity_mentions VALUES(512,'IBM - IBM HTTP Server 8.5',8,265,'others'); +INSERT INTO entity_mentions VALUES(513,'WebSphere and IHS',8,265,'others'); +INSERT INTO entity_mentions VALUES(514,'WebSphere http',8,265,'others'); +INSERT INTO entity_mentions VALUES(515,'(IBM) IBM HTTP Server 8.5',8,265,'others'); +INSERT INTO entity_mentions VALUES(516,'IBM HTTP Server',8,265,'others'); +INSERT INTO entity_mentions VALUES(517,'IBM HTTP SERVER 8',8,265,'others'); +INSERT INTO entity_mentions VALUES(518,'IBM HTTP Server 8.',8,265,'others'); +INSERT INTO entity_mentions VALUES(519,'IBM Websphere HTTP Server',8,265,'others'); +INSERT INTO entity_mentions VALUES(520,'IBM HTTP',8,265,'others'); +INSERT INTO entity_mentions VALUES(521,'WebSphere IHS',8,265,'others'); +INSERT INTO entity_mentions VALUES(522,'WebSphere -IHS',8,265,'others'); +INSERT INTO entity_mentions VALUES(523,'IBM HTTP SERVER 6.1',8,265,'others'); +INSERT INTO entity_mentions VALUES(524,'IBMi',6,424,'others'); +INSERT INTO entity_mentions VALUES(525,'IBM i',6,424,'others'); +INSERT INTO entity_mentions VALUES(526,'OS400 V7R1',6,424,'others'); +INSERT INTO entity_mentions VALUES(527,'OS400',6,424,'others'); +INSERT INTO entity_mentions VALUES(528,'OS/400',6,424,'others'); +INSERT INTO entity_mentions VALUES(529,'CLP',9,329,'others'); +INSERT INTO entity_mentions VALUES(530,'IBM i Control Language (CL)',9,329,'others'); +INSERT INTO entity_mentions VALUES(531,'IBM Informix-4GL',9,330,'others'); +INSERT INTO entity_mentions VALUES(532,'Informix 4GL',9,330,'others'); +INSERT INTO entity_mentions VALUES(533,'Informix-4GL',9,330,'others'); +INSERT INTO entity_mentions VALUES(534,'DATASTAGE',2,67,'others'); +INSERT INTO entity_mentions VALUES(535,'IBM InfoSphere DataStage',2,67,'others'); +INSERT INTO entity_mentions VALUES(536,'datastage 11.3',2,67,'others'); +INSERT INTO entity_mentions VALUES(537,'IBM Integration Bus 10.0',2,68,'others'); +INSERT INTO entity_mentions VALUES(538,'IBM Integration Bus v9',2,68,'others'); +INSERT INTO entity_mentions VALUES(539,'IBM Integration Bus 9.0',2,68,'others'); +INSERT INTO entity_mentions VALUES(540,'IBM Integration Bus',2,68,'others'); +INSERT INTO entity_mentions VALUES(541,'IIB',2,68,'others'); +INSERT INTO entity_mentions VALUES(542,'IBM Integration Bus v10',2,68,'others'); +INSERT INTO entity_mentions VALUES(543,'Extended Structured Query Language (ESQL)',5,458,'others'); +INSERT INTO entity_mentions VALUES(544,'ESQL',5,458,'others'); +INSERT INTO entity_mentions VALUES(545,'Extended Structured Query Language',5,458,'others'); +INSERT INTO entity_mentions VALUES(546,'IBM - IBM License Metric Tool and Tivoli Asset Discovery for Distributed',2,69,'others'); +INSERT INTO entity_mentions VALUES(547,'IBM License Metric Tool',2,69,'others'); +INSERT INTO entity_mentions VALUES(548,'Maximo',2,70,'others'); +INSERT INTO entity_mentions VALUES(549,'IBM Maximo 7.6',2,70,'others'); +INSERT INTO entity_mentions VALUES(550,'IBM Maximo',2,70,'others'); +INSERT INTO entity_mentions VALUES(551,'IBM Migration Utility',2,71,'others'); +INSERT INTO entity_mentions VALUES(552,'IBM WorkLight',2,72,'others'); +INSERT INTO entity_mentions VALUES(553,'IBM Mobile Foundation',2,72,'others'); +INSERT INTO entity_mentions VALUES(554,'Operational Decision Manager',2,73,'others'); +INSERT INTO entity_mentions VALUES(555,'ILOG JRules',2,73,'others'); +INSERT INTO entity_mentions VALUES(556,'Decision Server 8.0.1.0',2,73,'others'); +INSERT INTO entity_mentions VALUES(557,'IBM WebSphere ILOG Jrules',2,73,'others'); +INSERT INTO entity_mentions VALUES(558,'IBM Operational Decision Manager (ODM)',2,73,'others'); +INSERT INTO entity_mentions VALUES(559,'Decision Center 8.0.1.0',2,73,'others'); +INSERT INTO entity_mentions VALUES(560,'IBM Operational Decision Manager',2,73,'others'); +INSERT INTO entity_mentions VALUES(561,'IBM ODM',2,73,'others'); +INSERT INTO entity_mentions VALUES(562,'AS400',4,295,'others'); +INSERT INTO entity_mentions VALUES(563,'AS/400',4,295,'others'); +INSERT INTO entity_mentions VALUES(564,'IBM Power Systems',4,295,'others'); +INSERT INTO entity_mentions VALUES(565,'System p',4,295,'others'); +INSERT INTO entity_mentions VALUES(566,'System i',4,295,'others'); +INSERT INTO entity_mentions VALUES(567,'P-series',4,295,'others'); +INSERT INTO entity_mentions VALUES(568,'IBM iSeries/AS400 system Model 520',4,295,'others'); +INSERT INTO entity_mentions VALUES(569,'IBM - IBM Spectrum Scale Express Client 4.1',2,605,'others'); +INSERT INTO entity_mentions VALUES(570,'IBM Spectrum Scale Server',2,605,'others'); +INSERT INTO entity_mentions VALUES(571,'IBM Spectrum Scale',2,605,'others'); +INSERT INTO entity_mentions VALUES(572,'IBM - IBM Spectrum Scale Express Server 4.1',2,605,'others'); +INSERT INTO entity_mentions VALUES(573,'IBM - IBM Spectrum Scale Standard Server 4.1',2,605,'others'); +INSERT INTO entity_mentions VALUES(574,'IBM - IBM Spectrum Scale Express FPO 4.1',2,605,'others'); +INSERT INTO entity_mentions VALUES(575,'IBM Spectrum Scale FPO',2,605,'others'); +INSERT INTO entity_mentions VALUES(576,'IBM Spectrum Scale Client',2,605,'others'); +INSERT INTO entity_mentions VALUES(577,'IBM - IBM Spectrum Scale Standard FPO 4.1',2,605,'others'); +INSERT INTO entity_mentions VALUES(578,'IBM - IBM Spectrum Scale Standard Client 4.1',2,605,'others'); +INSERT INTO entity_mentions VALUES(579,'IBM Tivoli Asset Management',2,606,'others'); +INSERT INTO entity_mentions VALUES(580,'Tivoli Asset Management',2,606,'others'); +INSERT INTO entity_mentions VALUES(581,'Asset Discovery for Distributed',5,459,'others'); +INSERT INTO entity_mentions VALUES(582,'Tivoli Asset Discovery for Distributed',5,459,'others'); +INSERT INTO entity_mentions VALUES(583,'IBM - IBM Tivoli Composite Application Manager for Microsoft Applications - MS SQL Server Agent 6.3',2,76,'others'); +INSERT INTO entity_mentions VALUES(584,'IBM Tivoli Composite Application Manager',2,76,'others'); +INSERT INTO entity_mentions VALUES(585,'IBM - IBM Tivoli Composite Application Manager Agent for DB2 7.1',2,76,'others'); +INSERT INTO entity_mentions VALUES(586,'IBM - IBM Tivoli Composite Application Manager for Microsoft Applications - IIS server agent 6.3',2,76,'others'); +INSERT INTO entity_mentions VALUES(587,'IBM - IBM Tivoli Monitoring - Windows OS Agent 6.2',2,77,'others'); +INSERT INTO entity_mentions VALUES(588,'IBM - IBM Tivoli Monitoring for Databases - DB2 Agent 6.2',2,77,'others'); +INSERT INTO entity_mentions VALUES(589,'IBM Tivoli Monitoring',2,77,'others'); +INSERT INTO entity_mentions VALUES(590,'IBM - IBM Tivoli Monitoring - Windows OS Agent 6.3',2,77,'others'); +INSERT INTO entity_mentions VALUES(591,'Tivoli Monitoring',2,77,'others'); +INSERT INTO entity_mentions VALUES(592,'Database MS SQL Agent',2,77,'others'); +INSERT INTO entity_mentions VALUES(593,'Linux OS Agent',2,77,'others'); +INSERT INTO entity_mentions VALUES(594,'Database DB2 Agent',2,77,'others'); +INSERT INTO entity_mentions VALUES(595,'IBM - IBM Tivoli Monitoring for Databases - MS SQL Agent 6.2',2,77,'others'); +INSERT INTO entity_mentions VALUES(596,'IBM - IBM Tivoli Monitoring - Linux OS Agent 6.2',2,77,'others'); +INSERT INTO entity_mentions VALUES(597,'Windows OS Agent',2,77,'others'); +INSERT INTO entity_mentions VALUES(598,'IBM - IBM Tivoli Monitoring - Windows OS Agent 6',2,77,'others'); +INSERT INTO entity_mentions VALUES(599,'IBM Tivoli Storage Manager',2,604,'others'); +INSERT INTO entity_mentions VALUES(600,'IBM - IBM TSM FCM',2,604,'others'); +INSERT INTO entity_mentions VALUES(601,'Tivoli Storage Manager',2,604,'others'); +INSERT INTO entity_mentions VALUES(602,'IBM - IBM Tivoli Storage Manager',2,604,'others'); +INSERT INTO entity_mentions VALUES(603,'IBM Tivoli Storage Manager API',2,604,'others'); +INSERT INTO entity_mentions VALUES(604,'IBM - IBM Tivoli Storage Manager for Databases - Data Protection for Microsoft SQL 6.3',2,604,'others'); +INSERT INTO entity_mentions VALUES(605,'Databases Data Protection for Microsoft SQL',2,604,'others'); +INSERT INTO entity_mentions VALUES(606,'IBM - IBM Tivoli Storage Manager API 6.4',2,604,'others'); +INSERT INTO entity_mentions VALUES(607,'IBM - IBM Spectrum Protect Data Protection for Microsoft SQL Server 8.1',2,604,'others'); +INSERT INTO entity_mentions VALUES(608,'IBM Spectrum Protect Data Protection',2,604,'others'); +INSERT INTO entity_mentions VALUES(609,'TSM API',5,460,'others'); +INSERT INTO entity_mentions VALUES(610,'IBM - IBM Spectrum Protect API 7.1',5,460,'others'); +INSERT INTO entity_mentions VALUES(611,'IBM - IBM Spectrum Protect Client',5,461,'others'); +INSERT INTO entity_mentions VALUES(612,'TSM Client',5,461,'others'); +INSERT INTO entity_mentions VALUES(613,'IBM - IBM Tivoli Storage Manager Client',5,461,'others'); +INSERT INTO entity_mentions VALUES(614,'TSM Storage Agent',5,462,'others'); +INSERT INTO entity_mentions VALUES(615,'IBM - IBM Spectrum Protect Storage Agent 8.1',5,462,'others'); +INSERT INTO entity_mentions VALUES(616,'VSS Requestor',5,463,'others'); +INSERT INTO entity_mentions VALUES(617,'VSS Requestor configured 8.1',5,463,'others'); +INSERT INTO entity_mentions VALUES(618,'VSS Requestor 7.1',5,463,'others'); +INSERT INTO entity_mentions VALUES(619,'TWS-WS',2,79,'others'); +INSERT INTO entity_mentions VALUES(620,'Tivoli Workload Scheduler',2,79,'others'); +INSERT INTO entity_mentions VALUES(621,'IBM Tivoli Workload Scheduler (TWS)',2,79,'others'); +INSERT INTO entity_mentions VALUES(622,'IBM WebSphere Business Integration Adaptor',2,80,'others'); +INSERT INTO entity_mentions VALUES(623,'WebSphere Business Integration Adaptor',2,80,'others'); +INSERT INTO entity_mentions VALUES(624,'wbia 2.6',2,80,'others'); +INSERT INTO entity_mentions VALUES(625,'IBM WBIA 2.6.0.12',2,80,'others'); +INSERT INTO entity_mentions VALUES(626,'IBM Websphere MQ 7.1',2,81,'others'); +INSERT INTO entity_mentions VALUES(627,'MQ',2,81,'others'); +INSERT INTO entity_mentions VALUES(628,'MQ 9.1',2,81,'others'); +INSERT INTO entity_mentions VALUES(629,'IBM WebSphere MQ Client 7.5',2,81,'others'); +INSERT INTO entity_mentions VALUES(630,'Websphere MQ',2,81,'others'); +INSERT INTO entity_mentions VALUES(631,'MQ 7',2,81,'others'); +INSERT INTO entity_mentions VALUES(632,'MQ 6',2,81,'others'); +INSERT INTO entity_mentions VALUES(633,'MQ 9.0',2,81,'others'); +INSERT INTO entity_mentions VALUES(634,'MQ 5.3',2,81,'others'); +INSERT INTO entity_mentions VALUES(635,'MQ 7.01',2,81,'others'); +INSERT INTO entity_mentions VALUES(636,'MQ 7.5',2,81,'others'); +INSERT INTO entity_mentions VALUES(637,'MQSeries 8.0',2,81,'others'); +INSERT INTO entity_mentions VALUES(638,'IBM Websphere MQ',2,81,'others'); +INSERT INTO entity_mentions VALUES(639,'IBM MQ',2,81,'others'); +INSERT INTO entity_mentions VALUES(640,'IBM WEBSPHERE MQ SERVER 7.5',2,81,'others'); +INSERT INTO entity_mentions VALUES(641,'WSMQ 8.0',2,81,'others'); +INSERT INTO entity_mentions VALUES(642,'MQ 9.0.5',2,81,'others'); +INSERT INTO entity_mentions VALUES(643,'IBM WebSphere MQ Telemetry Service 7.5',2,82,'others'); +INSERT INTO entity_mentions VALUES(644,'IBM WebSphere MQ Telemetry',2,82,'others'); +INSERT INTO entity_mentions VALUES(645,'WTX',2,83,'others'); +INSERT INTO entity_mentions VALUES(646,'IBM WebSphere Transformation Extender (WTX)',2,83,'others'); +INSERT INTO entity_mentions VALUES(647,'IBM WebSphere Transformation Extender',2,83,'others'); +INSERT INTO entity_mentions VALUES(648,'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.6001.18000',8,609,'others'); +INSERT INTO entity_mentions VALUES(649,'IIS 7.5',8,609,'others'); +INSERT INTO entity_mentions VALUES(650,'Internet Information Services (IIS)',8,609,'others'); +INSERT INTO entity_mentions VALUES(651,'Microsoft Internet Information Services 7.5',8,609,'others'); +INSERT INTO entity_mentions VALUES(652,'MICROSOFT INTERNET INFORMATION SERVICES VERSION 7',8,609,'others'); +INSERT INTO entity_mentions VALUES(653,'Microsoft Internet Information Services',8,609,'others'); +INSERT INTO entity_mentions VALUES(654,'Microsoft Internet Information',8,609,'others'); +INSERT INTO entity_mentions VALUES(655,'IIS Express 8',8,609,'others'); +INSERT INTO entity_mentions VALUES(656,'Internet Information Services (IIS 6.0)',8,609,'others'); +INSERT INTO entity_mentions VALUES(657,'Microsoft IIS 8.5',8,609,'others'); +INSERT INTO entity_mentions VALUES(658,'IIS',8,609,'others'); +INSERT INTO entity_mentions VALUES(659,'IIS Express',8,609,'others'); +INSERT INTO entity_mentions VALUES(660,'MICROSOFT INTERNET INFORMATION SERVICES VERSION 7.5',8,609,'others'); +INSERT INTO entity_mentions VALUES(661,'Microsoft Internet Inf',8,609,'others'); +INSERT INTO entity_mentions VALUES(662,'MICROSOFT INTERNET INFORMATION SERVER VERSION 5.1.2600.2180',8,609,'others'); +INSERT INTO entity_mentions VALUES(663,'TS-IIS Express 10',8,609,'others'); +INSERT INTO entity_mentions VALUES(664,'Microsoft Internet Informat',8,609,'others'); +INSERT INTO entity_mentions VALUES(665,'Microsoft IIS Webserver',8,609,'others'); +INSERT INTO entity_mentions VALUES(666,'IIS Server',8,609,'others'); +INSERT INTO entity_mentions VALUES(667,'Microsoft Internet Information Services 8.5',8,609,'others'); +INSERT INTO entity_mentions VALUES(668,'IIS Version 7',8,609,'others'); +INSERT INTO entity_mentions VALUES(669,'Microsoft Internet Information Services 8.0',8,609,'others'); +INSERT INTO entity_mentions VALUES(670,'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.3790.1830',8,609,'others'); +INSERT INTO entity_mentions VALUES(671,'IIS 8.5.9600.16386',8,609,'others'); +INSERT INTO entity_mentions VALUES(672,'IIS 7.x',8,609,'others'); +INSERT INTO entity_mentions VALUES(673,'IIS 7.0',8,609,'others'); +INSERT INTO entity_mentions VALUES(674,'IIS 10',8,609,'others'); +INSERT INTO entity_mentions VALUES(675,'Microsoft Internet Information Services 6.0',8,609,'others'); +INSERT INTO entity_mentions VALUES(676,'Internet Information Services (IIS 7.0)',8,609,'others'); +INSERT INTO entity_mentions VALUES(677,'Microsoft Internet Information Services 10.0',8,609,'others'); +INSERT INTO entity_mentions VALUES(678,'IIS 8.5',8,609,'others'); +INSERT INTO entity_mentions VALUES(679,'Microsoft - IIS Express 10',8,609,'others'); +INSERT INTO entity_mentions VALUES(680,'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.*',8,609,'others'); +INSERT INTO entity_mentions VALUES(681,'Microsoft IIS 7.0',8,609,'others'); +INSERT INTO entity_mentions VALUES(682,'MICROSOFT INTERNET INFORMATION SERVICES VERSION 8',8,609,'others'); +INSERT INTO entity_mentions VALUES(683,'IIS v 7.0',8,609,'others'); +INSERT INTO entity_mentions VALUES(684,'IIS 7.2.1952',8,609,'others'); +INSERT INTO entity_mentions VALUES(685,'Microsoft Internet Information Services 7.0',8,609,'others'); +INSERT INTO entity_mentions VALUES(686,'Microsoft IIS 8.0',8,609,'others'); +INSERT INTO entity_mentions VALUES(687,'IIS Web Server v6',8,609,'others'); +INSERT INTO entity_mentions VALUES(688,'IIS 8.x',8,609,'others'); +INSERT INTO entity_mentions VALUES(689,'IIS 8.0.1557',8,609,'others'); +INSERT INTO entity_mentions VALUES(690,'IIS 11',8,609,'others'); +INSERT INTO entity_mentions VALUES(691,'IIS 6.0',8,609,'others'); +INSERT INTO entity_mentions VALUES(692,'IIS Express 7',8,609,'others'); +INSERT INTO entity_mentions VALUES(693,'IIS 7.2.2',8,609,'others'); +INSERT INTO entity_mentions VALUES(694,'IIS Instance',8,609,'others'); +INSERT INTO entity_mentions VALUES(695,'Microsoft IIS 6.0',8,609,'others'); +INSERT INTO entity_mentions VALUES(696,'IIS Express 10',8,609,'others'); +INSERT INTO entity_mentions VALUES(697,'IIS Servers',8,609,'others'); +INSERT INTO entity_mentions VALUES(698,'MS-IIS',8,609,'others'); +INSERT INTO entity_mentions VALUES(699,'Internet Information Services (IIS 8.5)',8,609,'others'); +INSERT INTO entity_mentions VALUES(700,'IIS 8.0',8,609,'others'); +INSERT INTO entity_mentions VALUES(701,'Microsoft IIS 7.5',8,609,'others'); +INSERT INTO entity_mentions VALUES(702,'IIS Version 8 64 bit',8,609,'others'); +INSERT INTO entity_mentions VALUES(703,'IIS 6',8,609,'others'); +INSERT INTO entity_mentions VALUES(704,'IIS7.5',8,609,'others'); +INSERT INTO entity_mentions VALUES(705,'IEMT',7,489,'others'); +INSERT INTO entity_mentions VALUES(706,'Microsoft - IIS 6.0 Migration Tool 1',7,489,'others'); +INSERT INTO entity_mentions VALUES(707,'IIS Easy Migration Tool',7,489,'others'); +INSERT INTO entity_mentions VALUES(708,'Easy Migration Tool',7,489,'others'); +INSERT INTO entity_mentions VALUES(709,'Easy Migration Tool (IEMT)',7,489,'others'); +INSERT INTO entity_mentions VALUES(710,'IIS Easy Migration Tool (IEMT)',7,489,'others'); +INSERT INTO entity_mentions VALUES(711,'MS-ARR',7,490,'others'); +INSERT INTO entity_mentions VALUES(712,'Application Request Routing',7,490,'others'); +INSERT INTO entity_mentions VALUES(713,'ARR',7,490,'others'); +INSERT INTO entity_mentions VALUES(714,'Application Request Routing (ARR)',7,490,'others'); +INSERT INTO entity_mentions VALUES(715,'IIS Manager',7,491,'others'); +INSERT INTO entity_mentions VALUES(716,'IMS DB',2,84,'others'); +INSERT INTO entity_mentions VALUES(717,'IMS',2,84,'others'); +INSERT INTO entity_mentions VALUES(718,'Infozip 6',2,85,'others'); +INSERT INTO entity_mentions VALUES(719,'Infozip',2,85,'others'); +INSERT INTO entity_mentions VALUES(720,'Info-ZIP',2,85,'others'); +INSERT INTO entity_mentions VALUES(721,'Infobright Community Edition',2,86,'others'); +INSERT INTO entity_mentions VALUES(722,'Infobright Community Edition (ICE)',2,86,'others'); +INSERT INTO entity_mentions VALUES(723,'infobright-ce',2,86,'others'); +INSERT INTO entity_mentions VALUES(724,'informatica',2,87,'others'); +INSERT INTO entity_mentions VALUES(725,'Informatica PowerCenter',2,87,'others'); +INSERT INTO entity_mentions VALUES(726,'Informatica PowerCenter 10.2',2,87,'others'); +INSERT INTO entity_mentions VALUES(727,'Informatica Version 10.2.0 HotFix1',2,87,'others'); +INSERT INTO entity_mentions VALUES(728,'Informatica Power Center 8.6.1',2,87,'others'); +INSERT INTO entity_mentions VALUES(729,'ETL tool: Informatica',2,87,'others'); +INSERT INTO entity_mentions VALUES(730,'Informatica database server-mspr50',2,87,'others'); +INSERT INTO entity_mentions VALUES(731,'Informatica ETL',2,87,'others'); +INSERT INTO entity_mentions VALUES(732,'Informatica Power Center 9.6.1',2,87,'others'); +INSERT INTO entity_mentions VALUES(733,'Informatica PowerCenter 10.2-msprap150',2,87,'others'); +INSERT INTO entity_mentions VALUES(734,'ETL tool=Informatica',2,87,'others'); +INSERT INTO entity_mentions VALUES(735,'Ingres',2,88,'others'); +INSERT INTO entity_mentions VALUES(736,'INGRES DBM',2,88,'others'); +INSERT INTO entity_mentions VALUES(737,'Intel(R) Xeon(R) CPU E7- 4870 @ 2.40GHz',4,296,'others'); +INSERT INTO entity_mentions VALUES(738,'intel(r) xeon(r) cpu e7- 4870 @ 2.40ghz',4,296,'others'); +INSERT INTO entity_mentions VALUES(739,'Intel(R) Xeon(R) CPU E5530 @ 2.40GHz',4,296,'others'); +INSERT INTO entity_mentions VALUES(740,'Intel(R) Xeon(R) CPU X7550 @ 2.00GHz',4,296,'others'); +INSERT INTO entity_mentions VALUES(741,'Intel(R) Xeon(R) CPU E5-2648L v4 @ 1.80GHz',4,296,'others'); +INSERT INTO entity_mentions VALUES(742,'Intel Xeon Processor',4,296,'others'); +INSERT INTO entity_mentions VALUES(743,'IMSVA 9.1',3,566,'others'); +INSERT INTO entity_mentions VALUES(744,'InterScan Messaging Security Virtual Appliance',3,566,'others'); +INSERT INTO entity_mentions VALUES(745,'InterScan Messaging Security Virtual Appliance (IMSVA)',3,566,'others'); +INSERT INTO entity_mentions VALUES(746,'IMSVA',3,566,'others'); +INSERT INTO entity_mentions VALUES(747,'iOS',6,425,'others'); +INSERT INTO entity_mentions VALUES(748,'Java 1.8',9,584,'others'); +INSERT INTO entity_mentions VALUES(749,'Java 7',9,584,'others'); +INSERT INTO entity_mentions VALUES(750,'Java on Weblogic server',9,584,'others'); +INSERT INTO entity_mentions VALUES(751,'Java',9,584,'others'); +INSERT INTO entity_mentions VALUES(752,'Java5',9,584,'others'); +INSERT INTO entity_mentions VALUES(753,'Java 6',9,584,'others'); +INSERT INTO entity_mentions VALUES(754,'Java 6.0',9,584,'others'); +INSERT INTO entity_mentions VALUES(755,'Java 7 Update 25',9,584,'others'); +INSERT INTO entity_mentions VALUES(756,'Java Scripting',9,584,'others'); +INSERT INTO entity_mentions VALUES(758,'Java (open source)',9,584,'others'); +INSERT INTO entity_mentions VALUES(759,'Java 5',9,584,'others'); +INSERT INTO entity_mentions VALUES(760,'Java 1.5',9,584,'others'); +INSERT INTO entity_mentions VALUES(761,'Java (1.6)',9,584,'others'); +INSERT INTO entity_mentions VALUES(762,'Java 1.8.0_92',9,584,'others'); +INSERT INTO entity_mentions VALUES(763,'Java 1.6',9,584,'others'); +INSERT INTO entity_mentions VALUES(764,'J2EE 6',9,584,'others'); +INSERT INTO entity_mentions VALUES(765,'Java (J2EE)',9,584,'others'); +INSERT INTO entity_mentions VALUES(766,'Oracle - Java Runtime Environment 11',10,506,'others'); +INSERT INTO entity_mentions VALUES(767,'JRE',10,506,'others'); +INSERT INTO entity_mentions VALUES(768,'Java Runtime',10,506,'others'); +INSERT INTO entity_mentions VALUES(769,'Oracle - Java Runtime Environment 8',10,506,'others'); +INSERT INTO entity_mentions VALUES(770,'Oracle - Java Runtime Environment 7',10,506,'others'); +INSERT INTO entity_mentions VALUES(771,'Java Runtime Environment (JRE)',10,506,'others'); +INSERT INTO entity_mentions VALUES(772,'Java Runtime 6',10,506,'others'); +INSERT INTO entity_mentions VALUES(773,'Camel',12,378,'others'); +INSERT INTO entity_mentions VALUES(774,'Apache Camel',12,378,'others'); +INSERT INTO entity_mentions VALUES(775,'SS7/CAMEL',12,378,'others'); +INSERT INTO entity_mentions VALUES(776,'Apache mmons-beanutils',12,379,'others'); +INSERT INTO entity_mentions VALUES(777,'Apache Commons BeanUtils',12,379,'others'); +INSERT INTO entity_mentions VALUES(778,'PDFBox',12,380,'others'); +INSERT INTO entity_mentions VALUES(779,'Apache PDFBox',12,380,'others'); +INSERT INTO entity_mentions VALUES(780,'PDFBox 1.6',12,380,'others'); +INSERT INTO entity_mentions VALUES(781,'Velocity',12,381,'others'); +INSERT INTO entity_mentions VALUES(782,'Apache Velocity',12,381,'others'); +INSERT INTO entity_mentions VALUES(783,'EclipseLink 2.6.4',12,382,'others'); +INSERT INTO entity_mentions VALUES(784,'EclipseLink',12,382,'others'); +INSERT INTO entity_mentions VALUES(785,'EJB',12,383,'others'); +INSERT INTO entity_mentions VALUES(786,'EJBS',12,383,'others'); +INSERT INTO entity_mentions VALUES(787,'Ejb 2.x',12,383,'others'); +INSERT INTO entity_mentions VALUES(788,'Enterprise JavaBeans (EJB)',12,383,'others'); +INSERT INTO entity_mentions VALUES(789,'Enterprise JavaBeans',12,383,'others'); +INSERT INTO entity_mentions VALUES(790,'JAVA-XSL',9,319,'others'); +INSERT INTO entity_mentions VALUES(793,'EZMorph',12,384,'others'); +INSERT INTO entity_mentions VALUES(794,'GWT',12,385,'others'); +INSERT INTO entity_mentions VALUES(795,'Google Web Toolkit',12,385,'others'); +INSERT INTO entity_mentions VALUES(796,'Google Web Toolkit (GWT)',12,385,'others'); +INSERT INTO entity_mentions VALUES(797,'Hibernate',12,386,'others'); +INSERT INTO entity_mentions VALUES(798,'IBM - IBM SDK 5.0 for Windows AMD/EMT 64',12,387,'others'); +INSERT INTO entity_mentions VALUES(799,'IBM SDK',12,387,'others'); +INSERT INTO entity_mentions VALUES(800,'Oracle - JDK/SDK',12,388,'others'); +INSERT INTO entity_mentions VALUES(801,'JDK 1.7.0',12,388,'others'); +INSERT INTO entity_mentions VALUES(802,'JDK',12,388,'others'); +INSERT INTO entity_mentions VALUES(803,'Oracle (Sun) JDK/JRE',12,388,'others'); +INSERT INTO entity_mentions VALUES(804,'JDK8',12,388,'others'); +INSERT INTO entity_mentions VALUES(805,'JDK 1.5',12,388,'others'); +INSERT INTO entity_mentions VALUES(806,'Oracle JDK',12,388,'others'); +INSERT INTO entity_mentions VALUES(807,'Java Development Kit (JDK)',12,388,'others'); +INSERT INTO entity_mentions VALUES(808,'Oracle - JDK/SDK 8',12,388,'others'); +INSERT INTO entity_mentions VALUES(809,'Java Development Kit',12,388,'others'); +INSERT INTO entity_mentions VALUES(810,'JDK 1.6.0_24',12,388,'others'); +INSERT INTO entity_mentions VALUES(811,'JDK8 (1.8)',12,388,'others'); +INSERT INTO entity_mentions VALUES(812,'JDK 1.3',12,388,'others'); +INSERT INTO entity_mentions VALUES(813,'JEE',9,333,'others'); +INSERT INTO entity_mentions VALUES(814,'Java EE',9,333,'others'); +INSERT INTO entity_mentions VALUES(815,'Java Enterprise Edition (Java EE)',9,333,'others'); +INSERT INTO entity_mentions VALUES(816,'Java Enterprise Edition',9,333,'others'); +INSERT INTO entity_mentions VALUES(817,'Java Message Service (JMS)',12,389,'others'); +INSERT INTO entity_mentions VALUES(818,'JMS',12,389,'others'); +INSERT INTO entity_mentions VALUES(819,'Java Message Service',12,389,'others'); +INSERT INTO entity_mentions VALUES(820,'Java Standard Edition (Java SE)',9,334,'others'); +INSERT INTO entity_mentions VALUES(821,'oracle - java - java se 6',9,334,'others'); +INSERT INTO entity_mentions VALUES(822,'Java SE 6',9,334,'others'); +INSERT INTO entity_mentions VALUES(823,'Java Web Start',12,390,'others'); +INSERT INTO entity_mentions VALUES(824,'Oracle - Java Web Start 1.5',12,390,'others'); +INSERT INTO entity_mentions VALUES(825,'Oracle - Java Web Start 6',12,390,'others'); +INSERT INTO entity_mentions VALUES(826,'JavaServer Faces',12,391,'others'); +INSERT INTO entity_mentions VALUES(827,'JavaServer Faces (JSF)',12,391,'others'); +INSERT INTO entity_mentions VALUES(828,'JSF',12,391,'others'); +INSERT INTO entity_mentions VALUES(829,'JavaServer Pages',9,335,'others'); +INSERT INTO entity_mentions VALUES(830,'JavaServer Pages (JSP)',9,335,'others'); +INSERT INTO entity_mentions VALUES(831,'Core JSP',9,335,'others'); +INSERT INTO entity_mentions VALUES(832,'JSP',9,335,'others'); +INSERT INTO entity_mentions VALUES(833,'JSP Scriptlets',9,336,'others'); +INSERT INTO entity_mentions VALUES(834,'Java Scriplet',9,336,'others'); +INSERT INTO entity_mentions VALUES(835,'JDBC',12,392,'others'); +INSERT INTO entity_mentions VALUES(836,'JRuby Core',12,393,'others'); +INSERT INTO entity_mentions VALUES(837,'Core 9.2.0.0',12,393,'others'); +INSERT INTO entity_mentions VALUES(838,'APACHE LOG4J',12,394,'others'); +INSERT INTO entity_mentions VALUES(839,'Log4j',12,394,'others'); +INSERT INTO entity_mentions VALUES(840,'Quartz',12,395,'others'); +INSERT INTO entity_mentions VALUES(841,'Java RMI',12,396,'others'); +INSERT INTO entity_mentions VALUES(842,'Java Remote Method Invocation (RMI)',12,396,'others'); +INSERT INTO entity_mentions VALUES(843,'Remote Method Invocation',12,396,'others'); +INSERT INTO entity_mentions VALUES(844,'Java Servlets',12,397,'others'); +INSERT INTO entity_mentions VALUES(845,'Java 6 Servlets',12,397,'others'); +INSERT INTO entity_mentions VALUES(846,'J2EE Servlets',12,397,'others'); +INSERT INTO entity_mentions VALUES(847,'Servlet',12,397,'others'); +INSERT INTO entity_mentions VALUES(848,'Servlets',12,397,'others'); +INSERT INTO entity_mentions VALUES(849,'Servlets v2.3',12,397,'others'); +INSERT INTO entity_mentions VALUES(850,'Spring',12,398,'others'); +INSERT INTO entity_mentions VALUES(851,'Spring IO',12,398,'others'); +INSERT INTO entity_mentions VALUES(852,'Spring BOOT',12,399,'others'); +INSERT INTO entity_mentions VALUES(853,'Spring Cloud Data Flow',12,400,'others'); +INSERT INTO entity_mentions VALUES(854,'Spring MVC',12,401,'others'); +INSERT INTO entity_mentions VALUES(855,'Struts (2.0)',12,402,'others'); +INSERT INTO entity_mentions VALUES(856,'Struts 2.0',12,402,'others'); +INSERT INTO entity_mentions VALUES(857,'Struts',12,402,'others'); +INSERT INTO entity_mentions VALUES(858,'Swing',12,403,'others'); +INSERT INTO entity_mentions VALUES(859,'Swings',12,403,'others'); +INSERT INTO entity_mentions VALUES(860,'Vaadin',12,404,'others'); +INSERT INTO entity_mentions VALUES(861,'javasript',9,589,'others'); +INSERT INTO entity_mentions VALUES(862,'JS',9,589,'others'); +INSERT INTO entity_mentions VALUES(863,'Javascript',9,589,'others'); +INSERT INTO entity_mentions VALUES(864,'Java Script',9,589,'others'); +INSERT INTO entity_mentions VALUES(865,'javascriptl',9,589,'others'); +INSERT INTO entity_mentions VALUES(866,'AJAX',12,405,'others'); +INSERT INTO entity_mentions VALUES(867,'Angular JS',12,406,'others'); +INSERT INTO entity_mentions VALUES(868,'AngularJS',12,406,'others'); +INSERT INTO entity_mentions VALUES(869,'Angular',12,406,'others'); +INSERT INTO entity_mentions VALUES(870,'Draw2D',12,407,'others'); +INSERT INTO entity_mentions VALUES(871,'Draw2D 2.10.1',12,407,'others'); +INSERT INTO entity_mentions VALUES(872,'Express',12,408,'others'); +INSERT INTO entity_mentions VALUES(873,'Express.js',12,408,'others'); +INSERT INTO entity_mentions VALUES(874,'ExtJS 4.1',12,409,'others'); +INSERT INTO entity_mentions VALUES(875,'Sencha 4.2.0',12,409,'others'); +INSERT INTO entity_mentions VALUES(876,'ExtJS',12,409,'others'); +INSERT INTO entity_mentions VALUES(877,'Ext JS',12,409,'others'); +INSERT INTO entity_mentions VALUES(878,'jqGrid',12,410,'others'); +INSERT INTO entity_mentions VALUES(879,'JQuery 1.7',12,411,'others'); +INSERT INTO entity_mentions VALUES(880,'JQuery',12,411,'others'); +INSERT INTO entity_mentions VALUES(881,'jqueryui',12,412,'others'); +INSERT INTO entity_mentions VALUES(882,'jQuery UI',12,412,'others'); +INSERT INTO entity_mentions VALUES(883,'jquery-ui',12,412,'others'); +INSERT INTO entity_mentions VALUES(884,'react',12,413,'others'); +INSERT INTO entity_mentions VALUES(885,'ReactJS',12,413,'others'); +INSERT INTO entity_mentions VALUES(886,'react.js',12,413,'others'); +INSERT INTO entity_mentions VALUES(887,'Scriptaculous',12,414,'others'); +INSERT INTO entity_mentions VALUES(888,'script.aculo.us',12,414,'others'); +INSERT INTO entity_mentions VALUES(889,'Valums File Uploader',12,415,'others'); +INSERT INTO entity_mentions VALUES(890,'Valums AJAX File Uploader',12,415,'others'); +INSERT INTO entity_mentions VALUES(891,'Jboss 7',8,268,'others'); +INSERT INTO entity_mentions VALUES(892,'JBOSS 5.1.2',8,268,'others'); +INSERT INTO entity_mentions VALUES(893,'Red Hat JBoss Enterprise Application Platform 6.3',8,268,'others'); +INSERT INTO entity_mentions VALUES(894,'EAP',8,268,'others'); +INSERT INTO entity_mentions VALUES(895,'JBOSS-EAP',8,268,'others'); +INSERT INTO entity_mentions VALUES(896,'JBoss Application Server 4',8,268,'others'); +INSERT INTO entity_mentions VALUES(897,'JBoss Application Server 7',8,268,'others'); +INSERT INTO entity_mentions VALUES(898,'JBoss Application Server 5',8,268,'others'); +INSERT INTO entity_mentions VALUES(899,'JBoss Application Server',8,268,'others'); +INSERT INTO entity_mentions VALUES(900,'Enterprise Application Platform',8,268,'others'); +INSERT INTO entity_mentions VALUES(901,'JBoss',8,268,'others'); +INSERT INTO entity_mentions VALUES(902,'Jboss 7.1.2',8,268,'others'); +INSERT INTO entity_mentions VALUES(904,'JBOSS 5.1.2 EAP',8,268,'others'); +INSERT INTO entity_mentions VALUES(905,'server: Jboss',8,268,'others'); +INSERT INTO entity_mentions VALUES(906,'JBOSS 6.3.2 EAP',8,268,'others'); +INSERT INTO entity_mentions VALUES(907,'JBoss EAP 4.3',8,268,'others'); +INSERT INTO entity_mentions VALUES(908,'Jboss 4.1.2',8,268,'others'); +INSERT INTO entity_mentions VALUES(909,'JBOSS 5',8,268,'others'); +INSERT INTO entity_mentions VALUES(910,'JBOSS 6.3.2',8,268,'others'); +INSERT INTO entity_mentions VALUES(911,'JBoss Seam',7,492,'others'); +INSERT INTO entity_mentions VALUES(912,'SEAM',7,492,'others'); +INSERT INTO entity_mentions VALUES(913,'JCL',9,338,'others'); +INSERT INTO entity_mentions VALUES(914,'Jenkins',2,90,'others'); +INSERT INTO entity_mentions VALUES(915,'Job Information Language',9,339,'others'); +INSERT INTO entity_mentions VALUES(916,'JIL - Job Information Language',9,339,'others'); +INSERT INTO entity_mentions VALUES(917,'Job Information Language (JIL)',9,339,'others'); +INSERT INTO entity_mentions VALUES(918,'JIL',9,339,'others'); +INSERT INTO entity_mentions VALUES(919,'JoinIT by Acayosoft',2,91,'others'); +INSERT INTO entity_mentions VALUES(920,'Acayosoft JoinIT',2,91,'others'); +INSERT INTO entity_mentions VALUES(921,'JoinIT by Acayosoft v 9.0.8',2,91,'others'); +INSERT INTO entity_mentions VALUES(922,'joinIT',2,91,'others'); +INSERT INTO entity_mentions VALUES(923,'JScript',9,340,'others'); +INSERT INTO entity_mentions VALUES(924,'Kitura',8,269,'others'); +INSERT INTO entity_mentions VALUES(925,'LifeFlow',2,92,'others'); +INSERT INTO entity_mentions VALUES(926,'LifeFlow Tool',2,92,'others'); +INSERT INTO entity_mentions VALUES(927,'Linux 2.6.32-696.28.1.el6.x86_64',6,576,'others'); +INSERT INTO entity_mentions VALUES(928,'Other Linux (64-bit)',6,576,'others'); +INSERT INTO entity_mentions VALUES(929,'Linux',6,576,'others'); +INSERT INTO entity_mentions VALUES(930,'Linux 2.6.32-696.30.1.el6.x86_64',6,576,'others'); +INSERT INTO entity_mentions VALUES(931,'Linux 2.6.9',6,576,'others'); +INSERT INTO entity_mentions VALUES(932,'Linux 2.6.32-642.3.1.el6.x86_64',6,576,'others'); +INSERT INTO entity_mentions VALUES(933,'Linux - 2.6.18-371.1.2.el5',6,576,'others'); +INSERT INTO entity_mentions VALUES(934,'Linux 2.6.32-696.23.1.el6.x86_64',6,576,'others'); +INSERT INTO entity_mentions VALUES(935,'Other Linux (32-bit)',6,576,'others'); +INSERT INTO entity_mentions VALUES(936,'Linux (64-bit)',6,576,'others'); +INSERT INTO entity_mentions VALUES(937,'Linux 3.10.0-1062.el7.x86_64',6,576,'others'); +INSERT INTO entity_mentions VALUES(938,'Other 2.6.x Linux (64-bit)',6,576,'others'); +INSERT INTO entity_mentions VALUES(939,'CentOS 6 (32-bit)',6,427,'others'); +INSERT INTO entity_mentions VALUES(940,'LINUX CentOS 7.3',6,427,'others'); +INSERT INTO entity_mentions VALUES(941,'CentOS 4 (32-bit)',6,427,'others'); +INSERT INTO entity_mentions VALUES(942,'LINUX CentOS 6.2',6,427,'others'); +INSERT INTO entity_mentions VALUES(943,'Linux CentOS_5.5',6,427,'others'); +INSERT INTO entity_mentions VALUES(944,'CentOS 7.2',6,427,'others'); +INSERT INTO entity_mentions VALUES(945,'CentOS 6 (64-bit)',6,427,'others'); +INSERT INTO entity_mentions VALUES(946,'LINUX CentOS 6.8',6,427,'others'); +INSERT INTO entity_mentions VALUES(947,'LINUX CentOS 6.9',6,427,'others'); +INSERT INTO entity_mentions VALUES(948,'LINUX CentOS 6.4',6,427,'others'); +INSERT INTO entity_mentions VALUES(949,'CentOS 4/5/6 (64-bit)',6,427,'others'); +INSERT INTO entity_mentions VALUES(950,'CentOS 5 (32-bit)',6,427,'others'); +INSERT INTO entity_mentions VALUES(951,'Linux CentOS_5.2',6,427,'others'); +INSERT INTO entity_mentions VALUES(952,'CentOS 4 (64-bit)',6,427,'others'); +INSERT INTO entity_mentions VALUES(953,'CentOS 7 (64-bit)',6,427,'others'); +INSERT INTO entity_mentions VALUES(954,'CentOS 5 (64-bit)',6,427,'others'); +INSERT INTO entity_mentions VALUES(955,'CentOS 5.8 (x86)',6,427,'others'); +INSERT INTO entity_mentions VALUES(956,'CentOS 6.4',6,427,'others'); +INSERT INTO entity_mentions VALUES(957,'CentOS 7.5.184',6,427,'others'); +INSERT INTO entity_mentions VALUES(958,'CentOS 4/5/6 (32-bit)',6,427,'others'); +INSERT INTO entity_mentions VALUES(959,'CentOS',6,427,'others'); +INSERT INTO entity_mentions VALUES(960,'CentOS release 5.11',6,427,'others'); +INSERT INTO entity_mentions VALUES(961,'CentOS 4/5 or later (32-bit)',6,427,'others'); +INSERT INTO entity_mentions VALUES(962,'LINUX CentOS 6.5',6,427,'others'); +INSERT INTO entity_mentions VALUES(963,'LINUX CentOS 6.7',6,427,'others'); +INSERT INTO entity_mentions VALUES(964,'LINUX CentOS 5.8',6,427,'others'); +INSERT INTO entity_mentions VALUES(965,'LINUX CentOS 5',6,427,'others'); +INSERT INTO entity_mentions VALUES(966,'CentOS 7.x',6,427,'others'); +INSERT INTO entity_mentions VALUES(967,'CentOS 4/5/6/7 (64-bit)',6,427,'others'); +INSERT INTO entity_mentions VALUES(968,'CentOS 4/5 or later (64-bit)',6,427,'others'); +INSERT INTO entity_mentions VALUES(969,'LINUX CentOS 5.7',6,427,'others'); +INSERT INTO entity_mentions VALUES(970,'Check Point IPSO',6,428,'others'); +INSERT INTO entity_mentions VALUES(971,'Gaia Kernel version 2.7',6,428,'others'); +INSERT INTO entity_mentions VALUES(972,'Checkpoint',6,428,'others'); +INSERT INTO entity_mentions VALUES(973,'Check Point Gaia',6,428,'others'); +INSERT INTO entity_mentions VALUES(974,'Gaia Kernel version 2.6',6,428,'others'); +INSERT INTO entity_mentions VALUES(975,'Debian Linux',6,429,'others'); +INSERT INTO entity_mentions VALUES(976,'Debian GNU/Linux 8 (64-bit)',6,429,'others'); +INSERT INTO entity_mentions VALUES(977,'Debian',6,429,'others'); +INSERT INTO entity_mentions VALUES(978,'Debian Linux 8',6,429,'others'); +INSERT INTO entity_mentions VALUES(979,'LINUX Debian 6.0',6,429,'others'); +INSERT INTO entity_mentions VALUES(980,'Debian GNU/Linux 5 (64-bit)',6,429,'others'); +INSERT INTO entity_mentions VALUES(981,'Junos OS',6,430,'others'); +INSERT INTO entity_mentions VALUES(982,'JunOS',6,430,'others'); +INSERT INTO entity_mentions VALUES(983,'JunOS 8.0R14',6,430,'others'); +INSERT INTO entity_mentions VALUES(984,'JunOS 8.0R13',6,430,'others'); +INSERT INTO entity_mentions VALUES(985,'OpenSuse',6,431,'others'); +INSERT INTO entity_mentions VALUES(986,'SUSE openSUSE (64-bit)',6,431,'others'); +INSERT INTO entity_mentions VALUES(987,'Oracle - Linux Server - 7.5 Beta',6,432,'others'); +INSERT INTO entity_mentions VALUES(988,'Oracle Linux 7',6,432,'others'); +INSERT INTO entity_mentions VALUES(989,'LINUX Oracle EL 6.6 64bit',6,432,'others'); +INSERT INTO entity_mentions VALUES(990,'OEL',6,432,'others'); +INSERT INTO entity_mentions VALUES(991,'LINUX Oracle EL 6.3 64bit',6,432,'others'); +INSERT INTO entity_mentions VALUES(992,'LINUX Oracle EL 7.4 64bit',6,432,'others'); +INSERT INTO entity_mentions VALUES(993,'OEL 6.5 (Oracle Linux)3.8.13-16.2.1.el6uek.x86_64',6,432,'others'); +INSERT INTO entity_mentions VALUES(994,'LINUX Oracle EL 5.11 64bit',6,432,'others'); +INSERT INTO entity_mentions VALUES(995,'LINUX Oracle EL 5.10 64bit',6,432,'others'); +INSERT INTO entity_mentions VALUES(996,'LINUX Oracle EL 5.9',6,432,'others'); +INSERT INTO entity_mentions VALUES(997,'Oracle Linux 6.1',6,432,'others'); +INSERT INTO entity_mentions VALUES(998,'Oracle Linux 4/5 or later (64-bit)',6,432,'others'); +INSERT INTO entity_mentions VALUES(999,'LINUX Oracle EL 6.9',6,432,'others'); +INSERT INTO entity_mentions VALUES(1000,'LINUX Oracle EL 6.8 64bit',6,432,'others'); +INSERT INTO entity_mentions VALUES(1001,'Oracle Linux 5 (64-bit)',6,432,'others'); +INSERT INTO entity_mentions VALUES(1002,'Oracle Enterprise Server 7.5',6,432,'others'); +INSERT INTO entity_mentions VALUES(1003,'Oracle Linux 5u10',6,432,'others'); +INSERT INTO entity_mentions VALUES(1004,'OEL6.7 - 3.8.13-68.3.4.el6uek.x86_64',6,432,'others'); +INSERT INTO entity_mentions VALUES(1005,'Oracle Linux Server 6.10',6,432,'others'); +INSERT INTO entity_mentions VALUES(1006,'LINUX Oracle EL 6.9 64bit',6,432,'others'); +INSERT INTO entity_mentions VALUES(1007,'LINUX Oracle EL 6.7 64bit',6,432,'others'); +INSERT INTO entity_mentions VALUES(1008,'Oracle Linux Server release 6.9',6,432,'others'); +INSERT INTO entity_mentions VALUES(1009,'Oracle Linux Server 6.9',6,432,'others'); +INSERT INTO entity_mentions VALUES(1010,'LINUX Oracle EL 5.8 64bit',6,432,'others'); +INSERT INTO entity_mentions VALUES(1011,'OEL 6.5 (Oracle Linux)2.6.32-431.el6.x86_63',6,432,'others'); +INSERT INTO entity_mentions VALUES(1012,'Oracle Linux Server 6.7',6,432,'others'); +INSERT INTO entity_mentions VALUES(1013,'Oracle Enterprise Linux',6,432,'others'); +INSERT INTO entity_mentions VALUES(1014,'Oracle Linux',6,432,'others'); +INSERT INTO entity_mentions VALUES(1015,'OEL 6.5 (Oracle Linux)2.6.32-431.el6.x86_62',6,432,'others'); +INSERT INTO entity_mentions VALUES(1016,'Oracle Linux 4 (64-bit)',6,432,'others'); +INSERT INTO entity_mentions VALUES(1017,'Photon OS',6,433,'others'); +INSERT INTO entity_mentions VALUES(1018,'VMware Photon',6,433,'others'); +INSERT INTO entity_mentions VALUES(1019,'VMware Photon 1',6,433,'others'); +INSERT INTO entity_mentions VALUES(1020,'Red Hat Enterprise Linux Server 6.4',6,434,'others'); +INSERT INTO entity_mentions VALUES(1021,'Red Hat Enterprise Linux Server 7.3',6,434,'others'); +INSERT INTO entity_mentions VALUES(1022,'Linux - Redhat 6',6,434,'others'); +INSERT INTO entity_mentions VALUES(1023,'LINUX RedHat ES 5.7 64bit',6,434,'others'); +INSERT INTO entity_mentions VALUES(1024,'Red Hat Enterprise Linux Server 6.6',6,434,'others'); +INSERT INTO entity_mentions VALUES(1025,'Red Hat Enterprise Linux AS release 4 (Nahant Update 8)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1026,'Red Hat Enterprise Linux Server release 6.9 (Santiago)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1027,'RED HAT ENTERPRISE LINUX 5.9',6,434,'others'); +INSERT INTO entity_mentions VALUES(1028,'Red Hat Enterprise Linux Server 6.7',6,434,'others'); +INSERT INTO entity_mentions VALUES(1029,'LINUX RedHat EL 7.3 64bit',6,434,'others'); +INSERT INTO entity_mentions VALUES(1030,'RHEL',6,434,'others'); +INSERT INTO entity_mentions VALUES(1031,'Redhat Linux 5.7',6,434,'others'); +INSERT INTO entity_mentions VALUES(1032,'Linux Red Hat 7.6',6,434,'others'); +INSERT INTO entity_mentions VALUES(1033,'Red Hat Enterprise Linux Server 7.2',6,434,'others'); +INSERT INTO entity_mentions VALUES(1034,'Red Hat Enterprise Linux Server 7.4',6,434,'others'); +INSERT INTO entity_mentions VALUES(1035,'Red Hat(Linux)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1036,'LINUX Red Hat Enterprise Linux Server 5.7',6,434,'others'); +INSERT INTO entity_mentions VALUES(1037,'LINUX RedHat EL 5.7 64bit',6,434,'others'); +INSERT INTO entity_mentions VALUES(1038,'Linux Red Hat5.1',6,434,'others'); +INSERT INTO entity_mentions VALUES(1039,'Linux Red Hat3',6,434,'others'); +INSERT INTO entity_mentions VALUES(1040,'LINUXRed Hat Enterprise Linux Server 7.6',6,434,'others'); +INSERT INTO entity_mentions VALUES(1041,'Red Hat Enterprise Linux Server 5.8',6,434,'others'); +INSERT INTO entity_mentions VALUES(1042,'LINUX RedHat EL 6.8 64bit',6,434,'others'); +INSERT INTO entity_mentions VALUES(1043,'RHEL 7.4',6,434,'others'); +INSERT INTO entity_mentions VALUES(1044,'Redhat - Redhat Linux 7.2',6,434,'others'); +INSERT INTO entity_mentions VALUES(1045,'Linux RH6',6,434,'others'); +INSERT INTO entity_mentions VALUES(1046,'Red Hat Enterprise Linux 6 (32-bit)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1047,'RED HAT ENTERPRISE LINUX SERVER 6.X (Santiago)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1048,'RHEL 6',6,434,'others'); +INSERT INTO entity_mentions VALUES(1049,'Red Hat Enterprise Linux 7.5',6,434,'others'); +INSERT INTO entity_mentions VALUES(1050,'LINUXRed Hat Enterprise Linux Server 6.9',6,434,'others'); +INSERT INTO entity_mentions VALUES(1051,'RHEL 6.6',6,434,'others'); +INSERT INTO entity_mentions VALUES(1052,'Red Hat Enterprise Linux Santiago 6.3 32 Bit',6,434,'others'); +INSERT INTO entity_mentions VALUES(1053,'LINUX RedHat EL 6.6 64bit',6,434,'others'); +INSERT INTO entity_mentions VALUES(1054,'RED HAT ENTERPRISE LINUX 6.10',6,434,'others'); +INSERT INTO entity_mentions VALUES(1055,'RED HAT ENTERPRISE LINUX SERVER 5',6,434,'others'); +INSERT INTO entity_mentions VALUES(1056,'Linux Red Hat6.7',6,434,'others'); +INSERT INTO entity_mentions VALUES(1057,'RED HAT ENTERPRISE LINUX SERVER 7.X (Maipo)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1058,'Red Hat Enterprise Linux Server release 7.3 (Maipo)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1059,'RHEL7.4',6,434,'others'); +INSERT INTO entity_mentions VALUES(1060,'Linux Red Hat Enterprise Server 6.10',6,434,'others'); +INSERT INTO entity_mentions VALUES(1061,'Red Hat Enterprise Linux Server 7.6 (Maipo)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1062,'Red Hat Enterprise Linux 5 (64-bit)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1063,'Linux Red Hat6.1',6,434,'others'); +INSERT INTO entity_mentions VALUES(1064,'RHEL 7.2',6,434,'others'); +INSERT INTO entity_mentions VALUES(1065,'RHEL 7',6,434,'others'); +INSERT INTO entity_mentions VALUES(1066,'RED HAT ENTERPRISE LINUX 4.3',6,434,'others'); +INSERT INTO entity_mentions VALUES(1067,'Red Hat Enterprise Linux 5',6,434,'others'); +INSERT INTO entity_mentions VALUES(1068,'Red Hat Enterprise Linux Server 6.3',6,434,'others'); +INSERT INTO entity_mentions VALUES(1069,'LINUX RedHat EL 7.5 64bit',6,434,'others'); +INSERT INTO entity_mentions VALUES(1070,'LINUXRed Hat Enterprise Linux Server 5.11',6,434,'others'); +INSERT INTO entity_mentions VALUES(1071,'LINUX RED HAT ENTERPRISE SERVER 5.11',6,434,'others'); +INSERT INTO entity_mentions VALUES(1072,'Unix Linux Redhat',6,434,'others'); +INSERT INTO entity_mentions VALUES(1073,'LINUX RED HAT ENTERPRISE SERVER 6 X64',6,434,'others'); +INSERT INTO entity_mentions VALUES(1074,'Red Hat Linux',6,434,'others'); +INSERT INTO entity_mentions VALUES(1075,'LINUX RED HAT ENTERPRISE SERVER 6.8',6,434,'others'); +INSERT INTO entity_mentions VALUES(1076,'RHEL6.6 - 2.6.32-504.el6.x86_64',6,434,'others'); +INSERT INTO entity_mentions VALUES(1077,'RED HAT ENTERPRISE LINUX 5.X',6,434,'others'); +INSERT INTO entity_mentions VALUES(1078,'Linux Red Hat Enterprise Server 7.7',6,434,'others'); +INSERT INTO entity_mentions VALUES(1079,'Linux Red Hat4',6,434,'others'); +INSERT INTO entity_mentions VALUES(1080,'Linux Red Hat Enterprise Server 6.7',6,434,'others'); +INSERT INTO entity_mentions VALUES(1081,'Red Hat Enterprise Linux Server release 5.1',6,434,'others'); +INSERT INTO entity_mentions VALUES(1082,'Red Hat Linux x64 6.6',6,434,'others'); +INSERT INTO entity_mentions VALUES(1083,'Red Hat Enterprise Linux Server 7.5',6,434,'others'); +INSERT INTO entity_mentions VALUES(1084,'Linux Red Hat6.4',6,434,'others'); +INSERT INTO entity_mentions VALUES(1085,'LINUX RED HAT ENTERPRISE SERVER 6.9',6,434,'others'); +INSERT INTO entity_mentions VALUES(1086,'Red Hat Enterprise Linux Server release 6.6 (Santiago)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1087,'RED HAT ENTERPRISE LINUX 6.X',6,434,'others'); +INSERT INTO entity_mentions VALUES(1088,'Red Hat Enterprise Linux Server 6.x',6,434,'others'); +INSERT INTO entity_mentions VALUES(1089,'RedHat Enterprise Linux 6 (64-bit)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1090,'RED HAT ENTERPRISE LINUX',6,434,'others'); +INSERT INTO entity_mentions VALUES(1091,'Redhat - Redhat Linux 6.6',6,434,'others'); +INSERT INTO entity_mentions VALUES(1092,'RED HAT ENTERPRISE LINUX 5.8',6,434,'others'); +INSERT INTO entity_mentions VALUES(1093,'RED HAT ENTERPRISE LINUX 5.10',6,434,'others'); +INSERT INTO entity_mentions VALUES(1094,'RED HAT ENTERPRISE LINUX 7.4',6,434,'others'); +INSERT INTO entity_mentions VALUES(1095,'Red Hat Enterprise Linux Server 5.9',6,434,'others'); +INSERT INTO entity_mentions VALUES(1096,'Redhat - RHEL 7.2',6,434,'others'); +INSERT INTO entity_mentions VALUES(1097,'RHEL7.5',6,434,'others'); +INSERT INTO entity_mentions VALUES(1098,'Red Hat Enterprise Linux Server release 7.5 (Maipo)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1099,'Red Hat Enterprise Linux 6 (64-bit)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1100,'Red Hat Entreprise Linux 6.2',6,434,'others'); +INSERT INTO entity_mentions VALUES(1101,'RED HAT ENTERPRISE LINUX 6.9',6,434,'others'); +INSERT INTO entity_mentions VALUES(1102,'RHEL 5.4',6,434,'others'); +INSERT INTO entity_mentions VALUES(1103,'Red Hat Enterprise Linux 7.6',6,434,'others'); +INSERT INTO entity_mentions VALUES(1104,'LINUX RedHat EL 6.2 64bit',6,434,'others'); +INSERT INTO entity_mentions VALUES(1105,'Linux Red Hat6.9',6,434,'others'); +INSERT INTO entity_mentions VALUES(1106,'RED HAT ENTERPRISE LINUX 5.11 - 5.11',6,434,'others'); +INSERT INTO entity_mentions VALUES(1107,'Red Hat Enterprise Linux Server 5.5',6,434,'others'); +INSERT INTO entity_mentions VALUES(1108,'Redhat 6 64-Bit',6,434,'others'); +INSERT INTO entity_mentions VALUES(1109,'Red Hat Enterprise Linux 5 (32-bit)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1110,'Red Hat Enterprise Linux Server 7.',6,434,'others'); +INSERT INTO entity_mentions VALUES(1111,'RHEL 6.6 ((64 bit x86_64)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1112,'Red Hat Enterprise Linux Server Release 6.10',6,434,'others'); +INSERT INTO entity_mentions VALUES(1113,'LINUX RED HAT ENTERPRISE ES 4',6,434,'others'); +INSERT INTO entity_mentions VALUES(1114,'Linux Red Hat Enterprise Server 5.11 (2.6.18-419.el5)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1115,'Red Hat Enterprise Linux Server release 6.8 (Santiago)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1116,'RED HAT ENTERPRISE LINUX 4.9',6,434,'others'); +INSERT INTO entity_mentions VALUES(1117,'Redhat Linux 6.3',6,434,'others'); +INSERT INTO entity_mentions VALUES(1118,'Red Hat Enterprise Linux AS',6,434,'others'); +INSERT INTO entity_mentions VALUES(1119,'RED HAT ADVANCED SERVER 5',6,434,'others'); +INSERT INTO entity_mentions VALUES(1120,'LINUX RED HAT ENTERPRISE SERVER 7.3',6,434,'others'); +INSERT INTO entity_mentions VALUES(1121,'RHEL6.7 - 2.6.32-573.el6.x86_64',6,434,'others'); +INSERT INTO entity_mentions VALUES(1122,'Red Hat Enterprise Linux Server 5.2',6,434,'others'); +INSERT INTO entity_mentions VALUES(1123,'LINUX RedHat EL 5 64bit',6,434,'others'); +INSERT INTO entity_mentions VALUES(1124,'Red Hat Enterprise Linux 7.2 (64-bit)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1125,'LINUX RedHat EL 5.11 64bit',6,434,'others'); +INSERT INTO entity_mentions VALUES(1126,'RHEL 6.5',6,434,'others'); +INSERT INTO entity_mentions VALUES(1127,'RHEL 6.4',6,434,'others'); +INSERT INTO entity_mentions VALUES(1128,'Red Hat Enterprise Linux Server',6,434,'others'); +INSERT INTO entity_mentions VALUES(1129,'Red Hat Enterprise Linux Server 5.x',6,434,'others'); +INSERT INTO entity_mentions VALUES(1130,'Red Hat Enterprise Linux Santiago 6.x',6,434,'others'); +INSERT INTO entity_mentions VALUES(1131,'RED HAT ENTERPRISE LINUX 6.5',6,434,'others'); +INSERT INTO entity_mentions VALUES(1132,'RED HAT ENTERPRISE LINUX 7.1',6,434,'others'); +INSERT INTO entity_mentions VALUES(1133,'Red Hat Enterprise Linux Server release 5.3',6,434,'others'); +INSERT INTO entity_mentions VALUES(1134,'RHEL Server',6,434,'others'); +INSERT INTO entity_mentions VALUES(1135,'Linux RHEL',6,434,'others'); +INSERT INTO entity_mentions VALUES(1136,'redhat6.6',6,434,'others'); +INSERT INTO entity_mentions VALUES(1137,'RHEL 5',6,434,'others'); +INSERT INTO entity_mentions VALUES(1138,'Redhat - Redhat Linux 6.3',6,434,'others'); +INSERT INTO entity_mentions VALUES(1139,'Linux RH',6,434,'others'); +INSERT INTO entity_mentions VALUES(1140,'Red Hat Enterprise Linux Server release 6.10 (Santiago)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1141,'Red Hat Enterprise Linux 3 (32-bit)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1142,'Redhat - Red Hat(Linux)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1143,'RED HAT ENTERPRISE LINUX 5.11',6,434,'others'); +INSERT INTO entity_mentions VALUES(1144,'RED HAT ENTERPRISE LINUX SERVER 4',6,434,'others'); +INSERT INTO entity_mentions VALUES(1145,'Redhat Linux 6.10',6,434,'others'); +INSERT INTO entity_mentions VALUES(1146,'Linux RH7',6,434,'others'); +INSERT INTO entity_mentions VALUES(1147,'Red Hat Enterprise Linux Server release 5 (Tikanga)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1148,'RHEL 7.3',6,434,'others'); +INSERT INTO entity_mentions VALUES(1149,'LINUX Red Hat Enterprise Linux Server 6.3',6,434,'others'); +INSERT INTO entity_mentions VALUES(1150,'Red Hat Enterprise Linux Server 6.5',6,434,'others'); +INSERT INTO entity_mentions VALUES(1151,'Red Hat Enterprise Linux Server release 7.4 (Maipo)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1152,'Red Hat V6',6,434,'others'); +INSERT INTO entity_mentions VALUES(1153,'Redhat Linux',6,434,'others'); +INSERT INTO entity_mentions VALUES(1154,'RHEL 6.3',6,434,'others'); +INSERT INTO entity_mentions VALUES(1155,'RED HAT ENTERPRISE LINUX 6.X TPM',6,434,'others'); +INSERT INTO entity_mentions VALUES(1156,'Linux Red Hat5.8',6,434,'others'); +INSERT INTO entity_mentions VALUES(1157,'Linux Red Hat5.11',6,434,'others'); +INSERT INTO entity_mentions VALUES(1158,'Linux RH5',6,434,'others'); +INSERT INTO entity_mentions VALUES(1159,'Red Hat Enterprise Linux Santiago 6.3 64 Bit',6,434,'others'); +INSERT INTO entity_mentions VALUES(1160,'rehl5.9',6,434,'others'); +INSERT INTO entity_mentions VALUES(1161,'RED HAT ENTERPRISE LINUX ES 5.11',6,434,'others'); +INSERT INTO entity_mentions VALUES(1162,'Red Hat Enterprise Linux Server release 7.6 (Maipo)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1163,'LINUX RED HAT ENTERPRISE SERVER 7.5',6,434,'others'); +INSERT INTO entity_mentions VALUES(1164,'Red Hat Enterprise Linux 4 (32-bit)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1165,'RHEL 7.xx',6,434,'others'); +INSERT INTO entity_mentions VALUES(1166,'Red Hat Enterprise Linux Server 6.9',6,434,'others'); +INSERT INTO entity_mentions VALUES(1167,'Red Hat Enterprise Linux Server release 7.x',6,434,'others'); +INSERT INTO entity_mentions VALUES(1168,'Red Hat Enterprise Linux 7 (64-bit)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1169,'Red Hat Enterprise Linux 5 Update 3 (RHEL 5.3) for x86-64',6,434,'others'); +INSERT INTO entity_mentions VALUES(1170,'LINUX RED HAT ENTERPRISE AS 4',6,434,'others'); +INSERT INTO entity_mentions VALUES(1171,'RHEL Linux',6,434,'others'); +INSERT INTO entity_mentions VALUES(1172,'RHEL 7.1',6,434,'others'); +INSERT INTO entity_mentions VALUES(1173,'RED HAT ENTERPRISE LINUX 4.6',6,434,'others'); +INSERT INTO entity_mentions VALUES(1174,'RED HAT ENTERPRISE LINUX 6.4',6,434,'others'); +INSERT INTO entity_mentions VALUES(1175,'Linux Red Hat6.5',6,434,'others'); +INSERT INTO entity_mentions VALUES(1176,'RHEL 7.5',6,434,'others'); +INSERT INTO entity_mentions VALUES(1177,'RHEL 6.9',6,434,'others'); +INSERT INTO entity_mentions VALUES(1178,'RED HAT ENTERPRISE LINUX 5.X TPM',6,434,'others'); +INSERT INTO entity_mentions VALUES(1179,'RED HAT ENTERPRISE LINUX ES 6.9',6,434,'others'); +INSERT INTO entity_mentions VALUES(1180,'LINUX RedHat EL 7.4 64bit',6,434,'others'); +INSERT INTO entity_mentions VALUES(1181,'Red Hat Enterprise Linux Server release 6.9',6,434,'others'); +INSERT INTO entity_mentions VALUES(1182,'Red Hat Linux 5.7',6,434,'others'); +INSERT INTO entity_mentions VALUES(1183,'LINUX RED HAT ENTERPRISE SERVER 7.6',6,434,'others'); +INSERT INTO entity_mentions VALUES(1184,'LINUX RedHat EL 5.0 64bit',6,434,'others'); +INSERT INTO entity_mentions VALUES(1185,'Red Hat Enterprise Linux Server release 6.3 (Santiago)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1186,'RED HAT ENTERPRISE LINUX SERVER 5.X (Tikanga)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1187,'Red Hat Enterprise Linux Server 7.6',6,434,'others'); +INSERT INTO entity_mentions VALUES(1188,'Linux Red Hat 6.10',6,434,'others'); +INSERT INTO entity_mentions VALUES(1189,'Linux Red Hat',6,434,'others'); +INSERT INTO entity_mentions VALUES(1190,'Red Hat 6.6',6,434,'others'); +INSERT INTO entity_mentions VALUES(1191,'LINUX Red Hat Enterprise Linux Server 6.9',6,434,'others'); +INSERT INTO entity_mentions VALUES(1192,'LINUX Red Hat Enterprise Linux Server 5.11',6,434,'others'); +INSERT INTO entity_mentions VALUES(1193,'Red Hat Enterprise Linux Server 5.1',6,434,'others'); +INSERT INTO entity_mentions VALUES(1194,'RHEL7.xx',6,434,'others'); +INSERT INTO entity_mentions VALUES(1195,'RHEL 6.7',6,434,'others'); +INSERT INTO entity_mentions VALUES(1196,'Linux Red Hat5.6',6,434,'others'); +INSERT INTO entity_mentions VALUES(1197,'Red Hat Enterprise Linux Server 7.1',6,434,'others'); +INSERT INTO entity_mentions VALUES(1198,'Red Hat Enterprise Linux Server release 6.5 (Santiago)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1199,'Linux Red Hat6.8',6,434,'others'); +INSERT INTO entity_mentions VALUES(1200,'Red Hat Enterprise Linux Server 6.1',6,434,'others'); +INSERT INTO entity_mentions VALUES(1201,'LINUXRed Hat Enterprise Linux Server 6.10',6,434,'others'); +INSERT INTO entity_mentions VALUES(1202,'Red Hat Enterprise Linux 7.7',6,434,'others'); +INSERT INTO entity_mentions VALUES(1203,'Red Hat Enterprise Linux Server 7.x',6,434,'others'); +INSERT INTO entity_mentions VALUES(1204,'Redhat Linux 7.2',6,434,'others'); +INSERT INTO entity_mentions VALUES(1205,'red hat',6,434,'others'); +INSERT INTO entity_mentions VALUES(1206,'LINUX RedHat EL 6.10 64bit',6,434,'others'); +INSERT INTO entity_mentions VALUES(1207,'Red Hat Enterprise Linux 6',6,434,'others'); +INSERT INTO entity_mentions VALUES(1208,'Red Hat Enterprise Linux Server release 6.7 (Santiago)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1209,'Linux Red Hat5.9',6,434,'others'); +INSERT INTO entity_mentions VALUES(1210,'Red Hat Enterprise Linux 7',6,434,'others'); +INSERT INTO entity_mentions VALUES(1211,'Red Hat Linux 6',6,434,'others'); +INSERT INTO entity_mentions VALUES(1212,'RED HAT ENTERPRISE LINUX 7.X',6,434,'others'); +INSERT INTO entity_mentions VALUES(1213,'RHEL x86-64',6,434,'others'); +INSERT INTO entity_mentions VALUES(1214,'LINUX RED HAT ENTERPRISE SERVER 7.4',6,434,'others'); +INSERT INTO entity_mentions VALUES(1215,'Red Hat Enterprise Linux Server 4.9',6,434,'others'); +INSERT INTO entity_mentions VALUES(1216,'RED HAT ENTERPRISE LINUX 5 (64 Bit)',6,434,'others'); +INSERT INTO entity_mentions VALUES(1217,'Redhat',6,434,'others'); +INSERT INTO entity_mentions VALUES(1218,'RED HAT ENTERPRISE LINUX 7.X TPM',6,434,'others'); +INSERT INTO entity_mentions VALUES(1219,'Red Hat Enterprise Linux Server 6.8',6,434,'others'); +INSERT INTO entity_mentions VALUES(1220,'Red Hat Enterprise Linux Server 5.11',6,434,'others'); +INSERT INTO entity_mentions VALUES(1221,'RED HAT ENTERPRISE LINUX SERVER 6.2',6,434,'others'); +INSERT INTO entity_mentions VALUES(1222,'RedHat 7.3',6,434,'others'); +INSERT INTO entity_mentions VALUES(1223,'Redhat Linux 6.6',6,434,'others'); +INSERT INTO entity_mentions VALUES(1224,'LINUX RED HAT 5 EL',6,434,'others'); +INSERT INTO entity_mentions VALUES(1225,'LINUX RedHat EL 6.9 64bit',6,434,'others'); +INSERT INTO entity_mentions VALUES(1226,'RED HAT ENTERPRISE LINUX 7.3',6,434,'others'); +INSERT INTO entity_mentions VALUES(1227,'suse enterprise server 11 (64-bit)',6,435,'others'); +INSERT INTO entity_mentions VALUES(1228,'SUSE Linux Enterprise Server 12 x86_64',6,435,'others'); +INSERT INTO entity_mentions VALUES(1229,'SUSE11',6,435,'others'); +INSERT INTO entity_mentions VALUES(1230,'SUSE Linux Enterprise 10 (32-bit)',6,435,'others'); +INSERT INTO entity_mentions VALUES(1231,'SUSE Linux Enterprise 10 (64-bit)',6,435,'others'); +INSERT INTO entity_mentions VALUES(1232,'Linux SuSE12',6,435,'others'); +INSERT INTO entity_mentions VALUES(1233,'SUSE Linux Enterprise 12 (64-bit)',6,435,'others'); +INSERT INTO entity_mentions VALUES(1234,'Linux SuSE2.6.32-504.12.2.el6.x86_64',6,435,'others'); +INSERT INTO entity_mentions VALUES(1235,'LINUXSUSE_SLES 11.4',6,435,'others'); +INSERT INTO entity_mentions VALUES(1236,'SUSE Linux Enterprise 11 (64-bit)',6,435,'others'); +INSERT INTO entity_mentions VALUES(1237,'SUSE10',6,435,'others'); +INSERT INTO entity_mentions VALUES(1238,'SUSE Linux 12',6,435,'others'); +INSERT INTO entity_mentions VALUES(1239,'LINUX SUSE_SLES 11.4',6,435,'others'); +INSERT INTO entity_mentions VALUES(1240,'LINUX SuSE Enterprise Server 11 64bit',6,435,'others'); +INSERT INTO entity_mentions VALUES(1241,'SLES 11 SP4',6,435,'others'); +INSERT INTO entity_mentions VALUES(1242,'SUSE Enterprise Server 11 (64-bit)',6,435,'others'); +INSERT INTO entity_mentions VALUES(1243,'SUSELinux Enterprise 11.x',6,435,'others'); +INSERT INTO entity_mentions VALUES(1244,'SUSE Linux Enterprise Server 11 x86_64',6,435,'others'); +INSERT INTO entity_mentions VALUES(1245,'SUSE Enterprise 11 (64-bit)',6,435,'others'); +INSERT INTO entity_mentions VALUES(1246,'SUSE Enterprise 10 (64-bit)',6,435,'others'); +INSERT INTO entity_mentions VALUES(1247,'suse enterprise 11 (64-bit)',6,435,'others'); +INSERT INTO entity_mentions VALUES(1248,'SUSE LINUX ENTERPRISE SERVER 11, SERVICE PACK SERVICE PACK SP4',6,435,'others'); +INSERT INTO entity_mentions VALUES(1249,'SUSE Linux 11',6,435,'others'); +INSERT INTO entity_mentions VALUES(1250,'SUSE Linux 11 SP3',6,435,'others'); +INSERT INTO entity_mentions VALUES(1251,'SUSE Linux Eneterprise Server (SLES) 11.0',6,435,'others'); +INSERT INTO entity_mentions VALUES(1252,'SUSE Linux',6,435,'others'); +INSERT INTO entity_mentions VALUES(1253,'SLES 9',6,435,'others'); +INSERT INTO entity_mentions VALUES(1254,'SUSE Linux Enterprise Server 11 (x86_64)PATCHLEVEL = 3',6,435,'others'); +INSERT INTO entity_mentions VALUES(1255,'Linux SuSE11',6,435,'others'); +INSERT INTO entity_mentions VALUES(1256,'SUSE',6,435,'others'); +INSERT INTO entity_mentions VALUES(1257,'SUSELinux Enterprise 11 (64-bit)',6,435,'others'); +INSERT INTO entity_mentions VALUES(1258,'LINUX SuSE Enterprise Server 9',6,435,'others'); +INSERT INTO entity_mentions VALUES(1259,'LINUX SuSE 10.0 Enterprise',6,435,'others'); +INSERT INTO entity_mentions VALUES(1260,'SUSE LINUX ENTERPRISE SERVER 11.3',6,435,'others'); +INSERT INTO entity_mentions VALUES(1261,'SUSE LINUX Enterprise Server 9 (i586) VERSION = 9 PATCHLEVEL = 3',6,435,'others'); +INSERT INTO entity_mentions VALUES(1262,'SUSE Linux Enterprise Server 11 (x86_64)PATCHLEVEL = 1',6,435,'others'); +INSERT INTO entity_mentions VALUES(1263,'SUSE Linux Enterprise 11 SP4',6,435,'others'); +INSERT INTO entity_mentions VALUES(1264,'SuseLinux',6,435,'others'); +INSERT INTO entity_mentions VALUES(1265,'SLES 12 SP2 for Power/SAP',6,435,'others'); +INSERT INTO entity_mentions VALUES(1266,'SUSE Linux Enterprise Server',6,435,'others'); +INSERT INTO entity_mentions VALUES(1267,'LINUX Ubuntu 12.04.1 LTS',6,436,'others'); +INSERT INTO entity_mentions VALUES(1268,'Ubuntu - Ubuntu Server - 16.04.1 LTS',6,436,'others'); +INSERT INTO entity_mentions VALUES(1269,'Ubuntu Linux (32-bit)',6,436,'others'); +INSERT INTO entity_mentions VALUES(1270,'LINUX Ubuntu 16.04 LTS',6,436,'others'); +INSERT INTO entity_mentions VALUES(1271,'Ubuntu Linux Server 10 (64-bit)',6,436,'others'); +INSERT INTO entity_mentions VALUES(1272,'Ubuntu',6,436,'others'); +INSERT INTO entity_mentions VALUES(1273,'LINUX Ubuntu 14.04 LTS',6,436,'others'); +INSERT INTO entity_mentions VALUES(1274,'UBUNTU LINUX (64-BIT)',6,436,'others'); +INSERT INTO entity_mentions VALUES(1275,'Ubuntu Linux',6,436,'others'); +INSERT INTO entity_mentions VALUES(1276,'LINUX UBUNTU 16.04',6,436,'others'); +INSERT INTO entity_mentions VALUES(1277,'LINUX Ubuntu',6,436,'others'); +INSERT INTO entity_mentions VALUES(1278,'Linux - Ubuntu Server 16.04.1 LTS',6,436,'others'); +INSERT INTO entity_mentions VALUES(1279,'zLinux',6,437,'others'); +INSERT INTO entity_mentions VALUES(1280,'Lisp',9,341,'others'); +INSERT INTO entity_mentions VALUES(1281,'Lotus Domino',8,270,'others'); +INSERT INTO entity_mentions VALUES(1282,'domino8.5',8,270,'others'); +INSERT INTO entity_mentions VALUES(1283,'Domino 8.x',8,270,'others'); +INSERT INTO entity_mentions VALUES(1284,'Lotus Notes',2,93,'others'); +INSERT INTO entity_mentions VALUES(1285,'Lotus Notes Internal',2,93,'others'); +INSERT INTO entity_mentions VALUES(1286,'Lucee',8,271,'others'); +INSERT INTO entity_mentions VALUES(1287,'Lucee 5.2.6.60',8,271,'others'); +INSERT INTO entity_mentions VALUES(1288,'MaaS360',2,94,'others'); +INSERT INTO entity_mentions VALUES(1289,'mac OS',6,438,'others'); +INSERT INTO entity_mentions VALUES(1290,'macOS',6,438,'others'); +INSERT INTO entity_mentions VALUES(1291,'Darwin',6,438,'others'); +INSERT INTO entity_mentions VALUES(1292,'Malwarebytes Anti-Malware',2,95,'others'); +INSERT INTO entity_mentions VALUES(1293,'Malwarebytes Corporation - Malwarebytes Anti-Malware 3.4',2,95,'others'); +INSERT INTO entity_mentions VALUES(1294,'Malwarebytes',2,95,'others'); +INSERT INTO entity_mentions VALUES(1295,'ManageEngine ADSelfService Plus',2,96,'others'); +INSERT INTO entity_mentions VALUES(1296,'Manage Engine ADSelfService Porta',2,96,'others'); +INSERT INTO entity_mentions VALUES(1297,'Marklogic',2,97,'others'); +INSERT INTO entity_mentions VALUES(1298,'MarkLogic DB',2,97,'others'); +INSERT INTO entity_mentions VALUES(1299,'Memcache',2,98,'others'); +INSERT INTO entity_mentions VALUES(1300,'Memcached',2,98,'others'); +INSERT INTO entity_mentions VALUES(1301,'ACCDB',2,99,'others'); +INSERT INTO entity_mentions VALUES(1302,'Microsoft Access',2,99,'others'); +INSERT INTO entity_mentions VALUES(1303,'Access DB',2,99,'others'); +INSERT INTO entity_mentions VALUES(1304,'MS Access 2016',2,99,'others'); +INSERT INTO entity_mentions VALUES(1305,'MS Access',2,99,'others'); +INSERT INTO entity_mentions VALUES(1306,'Microsoft BizTalk Adapters for Host Systems 2.0',2,100,'others'); +INSERT INTO entity_mentions VALUES(1307,'Microsoft BizTalk Adapters for Host Systems',2,100,'others'); +INSERT INTO entity_mentions VALUES(1308,'Microsoft Dynamics AX',2,101,'others'); +INSERT INTO entity_mentions VALUES(1309,'MS Dynamics AX 4',2,101,'others'); +INSERT INTO entity_mentions VALUES(1310,'Microsoft - Microsoft System Center Configuration Manager 2012',2,102,'others'); +INSERT INTO entity_mentions VALUES(1311,'SCCM',2,102,'others'); +INSERT INTO entity_mentions VALUES(1312,'Microsoft Endpoint Configuration Manager (SCCM)',2,102,'others'); +INSERT INTO entity_mentions VALUES(1313,'ConfigMgr',2,102,'others'); +INSERT INTO entity_mentions VALUES(1314,'Microsoft - Microsoft System Center Configuration Manager Client 5',2,102,'others'); +INSERT INTO entity_mentions VALUES(1315,'Microsoft Endpoint Configuration Manager',2,102,'others'); +INSERT INTO entity_mentions VALUES(1316,'MS System Centre Configuration Manager',2,102,'others'); +INSERT INTO entity_mentions VALUES(1317,'MS Excel',2,103,'others'); +INSERT INTO entity_mentions VALUES(1318,'Excel',2,103,'others'); +INSERT INTO entity_mentions VALUES(1319,'Microsoft Excel 2010',2,103,'others'); +INSERT INTO entity_mentions VALUES(1320,'Microsoft Excel',2,103,'others'); +INSERT INTO entity_mentions VALUES(1321,'Excel 2010',2,103,'others'); +INSERT INTO entity_mentions VALUES(1322,'Microsoft Exchange Server',2,104,'others'); +INSERT INTO entity_mentions VALUES(1323,'MS Exchange 2010 Enterprise',2,104,'others'); +INSERT INTO entity_mentions VALUES(1324,'Veeam Explorer',5,464,'others'); +INSERT INTO entity_mentions VALUES(1325,'Microsoft Forefront Identity Manager (FIM)',2,105,'others'); +INSERT INTO entity_mentions VALUES(1326,'Microsoft Forefront Identity Manager',2,105,'others'); +INSERT INTO entity_mentions VALUES(1327,'FIM SQL Development Server',2,105,'others'); +INSERT INTO entity_mentions VALUES(1328,'InfoPath',2,106,'others'); +INSERT INTO entity_mentions VALUES(1329,'Microsoft InfoPath',2,106,'others'); +INSERT INTO entity_mentions VALUES(1330,'Microsoft - Internet Explor',2,107,'others'); +INSERT INTO entity_mentions VALUES(1331,'Microsoft - Internet Explorer 11',2,107,'others'); +INSERT INTO entity_mentions VALUES(1332,'Microsoft Internet Explorer',2,107,'others'); +INSERT INTO entity_mentions VALUES(1333,'Internet Explor',2,107,'others'); +INSERT INTO entity_mentions VALUES(1334,'ISA Server',2,108,'others'); +INSERT INTO entity_mentions VALUES(1335,'Microsoft ISA Server',2,108,'others'); +INSERT INTO entity_mentions VALUES(1336,'Microsoft MQ',2,109,'others'); +INSERT INTO entity_mentions VALUES(1337,'System Center Endpoint Protection for Mac',2,110,'others'); +INSERT INTO entity_mentions VALUES(1338,'System Center 2012 Endpoint Protection',2,110,'others'); +INSERT INTO entity_mentions VALUES(1339,'Microsoft System Center 2012 Endpoint Protection',2,110,'others'); +INSERT INTO entity_mentions VALUES(1340,'Microsoft - Microsoft System Center 2012 Endpoint Protection 2.2',2,110,'others'); +INSERT INTO entity_mentions VALUES(1341,'SCEP for Linux',2,110,'others'); +INSERT INTO entity_mentions VALUES(1342,'System Center Endpoint Protection for Linux',2,110,'others'); +INSERT INTO entity_mentions VALUES(1343,'Microsoft System Center Endpoint Protection 2012',2,110,'others'); +INSERT INTO entity_mentions VALUES(1344,'System Center 2012 R2 Endpoint Protection',2,110,'others'); +INSERT INTO entity_mentions VALUES(1345,'SCEP for Mac',2,110,'others'); +INSERT INTO entity_mentions VALUES(1346,'Microsoft System Center Endpoint Protection',2,110,'others'); +INSERT INTO entity_mentions VALUES(1347,'System Center Endpoint Protection',2,110,'others'); +INSERT INTO entity_mentions VALUES(1348,'Microsoft - Microsoft Visual Studio 2010',2,111,'others'); +INSERT INTO entity_mentions VALUES(1349,'Microsoft Visual Studio 2010',2,111,'others'); +INSERT INTO entity_mentions VALUES(1350,'Microsoft Visual Studio',2,111,'others'); +INSERT INTO entity_mentions VALUES(1351,'Visual Studio',2,111,'others'); +INSERT INTO entity_mentions VALUES(1352,'Microsoft Web Deploy 2.0',2,112,'others'); +INSERT INTO entity_mentions VALUES(1353,'Microsoft Web Deploy',2,112,'others'); +INSERT INTO entity_mentions VALUES(1354,'Web Deploy',2,112,'others'); +INSERT INTO entity_mentions VALUES(1355,'msdeploy',2,112,'others'); +INSERT INTO entity_mentions VALUES(1356,'Web Farm Framework',2,113,'others'); +INSERT INTO entity_mentions VALUES(1357,'Microsoft Web Farm Framework Version 2.2',2,113,'others'); +INSERT INTO entity_mentions VALUES(1358,'Microsoft Web Farm Framework',2,113,'others'); +INSERT INTO entity_mentions VALUES(1359,'WFF',2,113,'others'); +INSERT INTO entity_mentions VALUES(1360,'Microsoft Web Farm Framework (WFF)',2,113,'others'); +INSERT INTO entity_mentions VALUES(1361,'WebPI',2,114,'others'); +INSERT INTO entity_mentions VALUES(1362,'Web Platform Installer',2,114,'others'); +INSERT INTO entity_mentions VALUES(1363,'Microsoft Web Platform Installer',2,114,'others'); +INSERT INTO entity_mentions VALUES(1364,'Microsoft Web Platform Installer 3.0',2,114,'others'); +INSERT INTO entity_mentions VALUES(1365,'Web PI',2,114,'others'); +INSERT INTO entity_mentions VALUES(1366,'MDW 6',2,115,'others'); +INSERT INTO entity_mentions VALUES(1367,'MDW Framework',2,115,'others'); +INSERT INTO entity_mentions VALUES(1368,'MDW',2,115,'others'); +INSERT INTO entity_mentions VALUES(1369,'Model Driven Workflow',2,115,'others'); +INSERT INTO entity_mentions VALUES(1370,'Model Driven Workflow (MDW)',2,115,'others'); +INSERT INTO entity_mentions VALUES(1371,'MONGO-DB',2,116,'others'); +INSERT INTO entity_mentions VALUES(1372,'Mango DB',2,116,'others'); +INSERT INTO entity_mentions VALUES(1373,'Mongo DB',2,116,'others'); +INSERT INTO entity_mentions VALUES(1374,'MangoDB',2,116,'others'); +INSERT INTO entity_mentions VALUES(1375,'MongoDB',2,116,'others'); +INSERT INTO entity_mentions VALUES(1376,'Mozilla.org - Firefox 38.5',2,117,'others'); +INSERT INTO entity_mentions VALUES(1377,'Firefox',2,117,'others'); +INSERT INTO entity_mentions VALUES(1378,'Mozilla.org',2,117,'others'); +INSERT INTO entity_mentions VALUES(1379,'Mozilla.org - Firefox 68',2,117,'others'); +INSERT INTO entity_mentions VALUES(1380,'Mozilla Firefox',2,117,'others'); +INSERT INTO entity_mentions VALUES(1381,'Mozilla.or',2,117,'others'); +INSERT INTO entity_mentions VALUES(1382,'MQ Client 7.5',2,118,'others'); +INSERT INTO entity_mentions VALUES(1383,'MQ Client',2,118,'others'); +INSERT INTO entity_mentions VALUES(1384,'MS Office 365',2,119,'others'); +INSERT INTO entity_mentions VALUES(1385,'Office 365',2,119,'others'); +INSERT INTO entity_mentions VALUES(1386,'O365',2,119,'others'); +INSERT INTO entity_mentions VALUES(1387,'MS SQL Server 2008 Standard',2,581,'others'); +INSERT INTO entity_mentions VALUES(1388,'MS SQL 2008R2SP2ENT (10.52.4042.0)',2,581,'others'); +INSERT INTO entity_mentions VALUES(1389,'MS SQL Server 2008',2,581,'others'); +INSERT INTO entity_mentions VALUES(1390,'SQL Server 11.0.2100.60',2,581,'others'); +INSERT INTO entity_mentions VALUES(1391,'MS SQL 2016 SP1',2,581,'others'); +INSERT INTO entity_mentions VALUES(1392,'SQL 2012 Development Server',2,581,'others'); +INSERT INTO entity_mentions VALUES(1393,'MICROSOFT SQL SERVER 2008 R2 ENTERPRISE EDITION 10.5',2,581,'others'); +INSERT INTO entity_mentions VALUES(1394,'Microsoft - Microsoft SQL Server 2012 for Microsoft SQL Server 2012 Standard Edition 2012',2,581,'others'); +INSERT INTO entity_mentions VALUES(1395,'MS SQL Server MS SQL Server 2008',2,581,'others'); +INSERT INTO entity_mentions VALUES(1396,'SQL Server 2016 SP1',2,581,'others'); +INSERT INTO entity_mentions VALUES(1397,'SQL Server 2000',2,581,'others'); +INSERT INTO entity_mentions VALUES(1398,'SQL Server 2005 Standard',2,581,'others'); +INSERT INTO entity_mentions VALUES(1399,'Microsoft SQL Server 2008 (SP4) - 10.0.6000.29 (X64)',2,581,'others'); +INSERT INTO entity_mentions VALUES(1400,'MICROSOFT SQL SERVER 2005 STANDARD EDITION 9.*',2,581,'others'); +INSERT INTO entity_mentions VALUES(1401,'Microsoft SQL Server SQL Server 2008 R2',2,581,'others'); +INSERT INTO entity_mentions VALUES(1402,'MICROSOFT SQL SERVER 2012 DEVELOPER EDITION',2,581,'others'); +INSERT INTO entity_mentions VALUES(1403,'Microsoft SQL Server 2000',2,581,'others'); +INSERT INTO entity_mentions VALUES(1404,'MS SQL Server 2008 R2 Express',2,581,'others'); +INSERT INTO entity_mentions VALUES(1405,'SQL Server',2,581,'others'); +INSERT INTO entity_mentions VALUES(1406,'SQL Server 2012 SP3',2,581,'others'); +INSERT INTO entity_mentions VALUES(1407,'SQL Server 2003',2,581,'others'); +INSERT INTO entity_mentions VALUES(1408,'Microsoft SQL Server 2016 - Service pack 2',2,581,'others'); +INSERT INTO entity_mentions VALUES(1409,'SQL SERVER 2008 R2',2,581,'others'); +INSERT INTO entity_mentions VALUES(1410,'MS SQL Server 2008 Enterprise R2',2,581,'others'); +INSERT INTO entity_mentions VALUES(1411,'MS SQL Server 2014 Express',2,581,'others'); +INSERT INTO entity_mentions VALUES(1412,'SQL Server 2008 R2 SP1',2,581,'others'); +INSERT INTO entity_mentions VALUES(1413,'SQL Server 2008 R2 Enterprize SP2 64Bit',2,581,'others'); +INSERT INTO entity_mentions VALUES(1414,'MICROSOFT SQL SERVER 2012 STANDARD EDITION',2,581,'others'); +INSERT INTO entity_mentions VALUES(1415,'MS SQL Server 2008 Developer',2,581,'others'); +INSERT INTO entity_mentions VALUES(1416,'SQL 2005',2,581,'others'); +INSERT INTO entity_mentions VALUES(1417,'MICROSOFT SQL SERVER 2008 DEVELOPER EDITION',2,581,'others'); +INSERT INTO entity_mentions VALUES(1418,'Microsoft SQL Server 2012 (SP4-GDR)',2,581,'others'); +INSERT INTO entity_mentions VALUES(1419,'MS SQL Server 2012 Enterprise',2,581,'others'); +INSERT INTO entity_mentions VALUES(1420,'Microsoft SQL Server 2008 R2 (RTM) - 10.50.1600.1 (X64)',2,581,'others'); +INSERT INTO entity_mentions VALUES(1421,'MS SQL Server 2005 Express',2,581,'others'); +INSERT INTO entity_mentions VALUES(1422,'SQL Server 2016',2,581,'others'); +INSERT INTO entity_mentions VALUES(1423,'Microsoft SQL Server 2012',2,581,'others'); +INSERT INTO entity_mentions VALUES(1424,'Microsoft SQL Server SQL Server 2005',2,581,'others'); +INSERT INTO entity_mentions VALUES(1425,'MS SQL',2,581,'others'); +INSERT INTO entity_mentions VALUES(1426,'sql server 2009 SQL',2,581,'others'); +INSERT INTO entity_mentions VALUES(1427,'Microsoft - Microsoft SQL - 13.0',2,581,'others'); +INSERT INTO entity_mentions VALUES(1428,'MSSQL Database Server',2,581,'others'); +INSERT INTO entity_mentions VALUES(1429,'SQL Server 2008 R2 SP3',2,581,'others'); +INSERT INTO entity_mentions VALUES(1430,'sql server 2013 SQL',2,581,'others'); +INSERT INTO entity_mentions VALUES(1431,'SQL 2012',2,581,'others'); +INSERT INTO entity_mentions VALUES(1432,'Microsoft SQL Server 2000 (SP4)',2,581,'others'); +INSERT INTO entity_mentions VALUES(1433,'MS SQL Server 2012 Standard',2,581,'others'); +INSERT INTO entity_mentions VALUES(1434,'MSSQL2008',2,581,'others'); +INSERT INTO entity_mentions VALUES(1435,'MS SQL server 2008 R2',2,581,'others'); +INSERT INTO entity_mentions VALUES(1436,'MS SQL Server 2000 Standard',2,581,'others'); +INSERT INTO entity_mentions VALUES(1437,'MS SQLServer',2,581,'others'); +INSERT INTO entity_mentions VALUES(1438,'microsoft sql',2,581,'others'); +INSERT INTO entity_mentions VALUES(1439,'MS SQL 2008R2SP2STD (10.52.4042.0)',2,581,'others'); +INSERT INTO entity_mentions VALUES(1440,'MS SQL Server 2008 R2 Standard',2,581,'others'); +INSERT INTO entity_mentions VALUES(1441,'MS SQL Server 2005 Enterprise',2,581,'others'); +INSERT INTO entity_mentions VALUES(1442,'MS SQL Server 2008 Standard R2',2,581,'others'); +INSERT INTO entity_mentions VALUES(1443,'SQL Server 12.0.2000.8',2,581,'others'); +INSERT INTO entity_mentions VALUES(1444,'MS SQL 2008R2SP3STD (10.53.6220.0)',2,581,'others'); +INSERT INTO entity_mentions VALUES(1445,'SQL Server 11.0.5388.0',2,581,'others'); +INSERT INTO entity_mentions VALUES(1446,'sql server 2011 SQL',2,581,'others'); +INSERT INTO entity_mentions VALUES(1447,'MS SQL Server 2014 Enterprise',2,581,'others'); +INSERT INTO entity_mentions VALUES(1448,'sql server 2008 SQL',2,581,'others'); +INSERT INTO entity_mentions VALUES(1449,'SQl 2016',2,581,'others'); +INSERT INTO entity_mentions VALUES(1450,'Microsoft SQL Server',2,581,'others'); +INSERT INTO entity_mentions VALUES(1451,'SQL Server 2014 SP2',2,581,'others'); +INSERT INTO entity_mentions VALUES(1452,'SQL Server 2008 R2 RTM',2,581,'others'); +INSERT INTO entity_mentions VALUES(1453,'Microsoft SQL Server Standard Edition',2,581,'others'); +INSERT INTO entity_mentions VALUES(1454,'MS SQL Server 2000',2,581,'others'); +INSERT INTO entity_mentions VALUES(1455,'sql2000',2,581,'others'); +INSERT INTO entity_mentions VALUES(1456,'SQL Server 2012',2,581,'others'); +INSERT INTO entity_mentions VALUES(1457,'Microsoft SQL Server 2008',2,581,'others'); +INSERT INTO entity_mentions VALUES(1458,'SQL Server 10.0.5538.0',2,581,'others'); +INSERT INTO entity_mentions VALUES(1459,'Microsoft - Microsoft SQL Server 2008 R2 for Microsoft SQL Server 2008 R2 Express Edition 2008',2,581,'others'); +INSERT INTO entity_mentions VALUES(1460,'MICROSOFT SQL SERVER 2014 ENTERPRISE EDITION 12',2,581,'others'); +INSERT INTO entity_mentions VALUES(1461,'SQL Server 11.0.3156.0',2,581,'others'); +INSERT INTO entity_mentions VALUES(1462,'SQLServer',2,581,'others'); +INSERT INTO entity_mentions VALUES(1463,'SQL Server 2000 SP4',2,581,'others'); +INSERT INTO entity_mentions VALUES(1464,'SQL Server 2008',2,581,'others'); +INSERT INTO entity_mentions VALUES(1465,'SQL Server 2008 R2 STD SP1',2,581,'others'); +INSERT INTO entity_mentions VALUES(1466,'sql server 2010 SQL',2,581,'others'); +INSERT INTO entity_mentions VALUES(1467,'MICROSOFT SQL SERVER 2008 R2 STANDARD EDITION',2,581,'others'); +INSERT INTO entity_mentions VALUES(1468,'Microsoft SQL Server 2012 (SP4) (KB4018073) - 11.0.7001.0 (X64)',2,581,'others'); +INSERT INTO entity_mentions VALUES(1469,'MICROSOFT SQL SERVER 2014 STANDARD EDITION 12',2,581,'others'); +INSERT INTO entity_mentions VALUES(1470,'MS SQL SERVER 08',2,581,'others'); +INSERT INTO entity_mentions VALUES(1471,'SQL Server 10.50.2550.0',2,581,'others'); +INSERT INTO entity_mentions VALUES(1472,'Microsoft SQL Server 2005',2,581,'others'); +INSERT INTO entity_mentions VALUES(1473,'SQL 2000',2,581,'others'); +INSERT INTO entity_mentions VALUES(1474,'sql server 2012 SQL',2,581,'others'); +INSERT INTO entity_mentions VALUES(1475,'MS SQL Server 2017',2,581,'others'); +INSERT INTO entity_mentions VALUES(1476,'MS SQL Server 2012',2,581,'others'); +INSERT INTO entity_mentions VALUES(1477,'MS SQL Server 2008 R2 Enterprise',2,581,'others'); +INSERT INTO entity_mentions VALUES(1478,'SQL Server 9.0.1399.0',2,581,'others'); +INSERT INTO entity_mentions VALUES(1479,'MS SQL 2008SP2STD (10.2.4067.0)',2,581,'others'); +INSERT INTO entity_mentions VALUES(1480,'SQL Server 2005',2,581,'others'); +INSERT INTO entity_mentions VALUES(1481,'Microsoft SQL Server 8.1',2,581,'others'); +INSERT INTO entity_mentions VALUES(1482,'Microsoft - Microsoft SQL Server 2005 for Microsoft SQL Server 2005 Express Edition 2005',2,581,'others'); +INSERT INTO entity_mentions VALUES(1483,'Microsoft - Microsoft SQL Server 2008 R2 for Microsoft SQL Server 2008 R2 Standard Edition 2008',2,581,'others'); +INSERT INTO entity_mentions VALUES(1484,'MICROSOFT SQL SERVER 2008 R2 ENTERPRISE EDITION 10.*',2,581,'others'); +INSERT INTO entity_mentions VALUES(1485,'MICROSOFT SQL SERVER 2008 R2 STANDARD EDITION 10.5',2,581,'others'); +INSERT INTO entity_mentions VALUES(1486,'MS SQL 2005SP3STD (9.3.4340)',2,581,'others'); +INSERT INTO entity_mentions VALUES(1487,'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION',2,581,'others'); +INSERT INTO entity_mentions VALUES(1488,'SQL Server 2017 RTM',2,581,'others'); +INSERT INTO entity_mentions VALUES(1489,'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION 11.0"',2,581,'others'); +INSERT INTO entity_mentions VALUES(1490,'SQL 2014',2,581,'others'); +INSERT INTO entity_mentions VALUES(1491,'Microsoft - Microsoft SQL Server 2014 for Microsoft SQL Server 2014 Express Edition 2014',2,581,'others'); +INSERT INTO entity_mentions VALUES(1492,'Microsoft SQL Server 2008R2',2,581,'others'); +INSERT INTO entity_mentions VALUES(1493,'SQL Server 2008 SP1',2,581,'others'); +INSERT INTO entity_mentions VALUES(1494,'MICROSOFT SQL SERVER 2005 ENTERPRISE EDITION',2,581,'others'); +INSERT INTO entity_mentions VALUES(1495,'SQLSVR2008',2,581,'others'); +INSERT INTO entity_mentions VALUES(1496,'MICROSOFT SQL SERVER 2008 ENTERPRISE EDITION',2,581,'others'); +INSERT INTO entity_mentions VALUES(1497,'SQL Server 9.0.5069.0',2,581,'others'); +INSERT INTO entity_mentions VALUES(1498,'MS SQL Instance',2,581,'others'); +INSERT INTO entity_mentions VALUES(1499,'Microsoft - Microsoft SQL Server 2014 for Microsoft SQL Server 2014 Standard Edition 2014',2,581,'others'); +INSERT INTO entity_mentions VALUES(1500,'MICROSOFT SQL SERVER 2008 STANDARD EDITION',2,581,'others'); +INSERT INTO entity_mentions VALUES(1501,'SQL Server 2012 SP4',2,581,'others'); +INSERT INTO entity_mentions VALUES(1502,'Microsoft SQL sever 2008 R2 SP 3',2,581,'others'); +INSERT INTO entity_mentions VALUES(1503,'SQL Server 2012 SP2',2,581,'others'); +INSERT INTO entity_mentions VALUES(1504,'Microsoft SQL Server 2016',2,581,'others'); +INSERT INTO entity_mentions VALUES(1505,'MS SQL Server 2012 Developer',2,581,'others'); +INSERT INTO entity_mentions VALUES(1506,'MS SQL 2014',2,581,'others'); +INSERT INTO entity_mentions VALUES(1507,'MS SQL Server',2,581,'others'); +INSERT INTO entity_mentions VALUES(1508,'MS SQL Server 2005 Standard',2,581,'others'); +INSERT INTO entity_mentions VALUES(1509,'SQL Server 2014',2,581,'others'); +INSERT INTO entity_mentions VALUES(1510,'MS SQL Server 2016',2,581,'others'); +INSERT INTO entity_mentions VALUES(1511,'MICROSOFT SQL SERVER 2012 STANDARD EDITION 11',2,581,'others'); +INSERT INTO entity_mentions VALUES(1512,'SQL Server 10.0.2531.0',2,581,'others'); +INSERT INTO entity_mentions VALUES(1513,'MICROSOFT SQL SERVER 2000 STANDARD EDITION 8.*',2,581,'others'); +INSERT INTO entity_mentions VALUES(1514,'MS SQL Server 2014',2,581,'others'); +INSERT INTO entity_mentions VALUES(1515,'Microsoft - SQL Server Express LocalDB 2014',2,581,'others'); +INSERT INTO entity_mentions VALUES(1516,'MS SQL 2012SP3STD (11.3.6020.0)',2,581,'others'); +INSERT INTO entity_mentions VALUES(1517,'MICROSOFT SQL SERVER 2014 STANDARD EDITION 12.0',2,581,'others'); +INSERT INTO entity_mentions VALUES(1518,'MSSQL',2,581,'others'); +INSERT INTO entity_mentions VALUES(1519,'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION 11',2,581,'others'); +INSERT INTO entity_mentions VALUES(1520,'Microsoft - Microsoft SQL Server 2008 for Microsoft SQL Server 2008 Express Edition 2008',2,581,'others'); +INSERT INTO entity_mentions VALUES(1521,'SQL Server 2008 SP4',2,581,'others'); +INSERT INTO entity_mentions VALUES(1522,'Microsoft SQL Server 2008 R2 Policies 10.50.1600.1',2,581,'others'); +INSERT INTO entity_mentions VALUES(1523,'Microsoft SQL Server 1997 (SP4)',2,581,'others'); +INSERT INTO entity_mentions VALUES(1524,'MS SQL Server 2008 Express',2,581,'others'); +INSERT INTO entity_mentions VALUES(1525,'MS SQL 2005SP4STD (9.4.5324)',2,581,'others'); +INSERT INTO entity_mentions VALUES(1526,'SQL 2008',2,581,'others'); +INSERT INTO entity_mentions VALUES(1527,'MS SQL Server 2008 Enterprise',2,581,'others'); +INSERT INTO entity_mentions VALUES(1528,'MS SQL Server 2005',2,581,'others'); +INSERT INTO entity_mentions VALUES(1529,'SQL 2008 R2',2,581,'others'); +INSERT INTO entity_mentions VALUES(1530,'Microsoft SQL Server 2008 (SP3) - 10.0.5500.0 (X64)',2,581,'others'); +INSERT INTO entity_mentions VALUES(1531,'MS SQL Server 2014 Standard',2,581,'others'); +INSERT INTO entity_mentions VALUES(1532,'SQL Server 2016 SP2',2,581,'others'); +INSERT INTO entity_mentions VALUES(1533,'Microsoft SQL Server 2014',2,581,'others'); +INSERT INTO entity_mentions VALUES(1534,'Microsoft SQL Server Browser 10.52.4000.0',5,465,'others'); +INSERT INTO entity_mentions VALUES(1535,'MS SQL Server Browser',5,465,'others'); +INSERT INTO entity_mentions VALUES(1536,'MS SQL Server Compact',2,121,'others'); +INSERT INTO entity_mentions VALUES(1537,'Microsoft SQL Server Compact 3.5 SP2 ENU 3.5.8080.0',2,121,'others'); +INSERT INTO entity_mentions VALUES(1538,'Microsoft SQL Server Compact 3.5 SP2 Query Tools ENU 3.5.8080.0',2,121,'others'); +INSERT INTO entity_mentions VALUES(1539,'MS DTS',5,466,'others'); +INSERT INTO entity_mentions VALUES(1540,'Data Transformation Services',5,466,'others'); +INSERT INTO entity_mentions VALUES(1541,'Microsoft - Microsoft SQL Server Replication Logreader Agent 9',5,467,'others'); +INSERT INTO entity_mentions VALUES(1542,'Log Reader Agent',5,467,'others'); +INSERT INTO entity_mentions VALUES(1543,'SQL Server Analysis Services 10.50.2500.0',5,468,'others'); +INSERT INTO entity_mentions VALUES(1544,'SQL Server Analysis Services 11.0.2218.0',5,468,'others'); +INSERT INTO entity_mentions VALUES(1545,'SQL Server Analysis Services',5,468,'others'); +INSERT INTO entity_mentions VALUES(1546,'Microsoft - Microsoft SQL Server Analysis Services 2012 for Microsoft SQL Server 2012 Standard Edition 2012',5,468,'others'); +INSERT INTO entity_mentions VALUES(1547,'Microsoft - Microsoft SQL Server Analysis Services 2014 for Microsoft SQL Server 2014 Standard Edition 2014',5,468,'others'); +INSERT INTO entity_mentions VALUES(1548,'SSAS 2012',5,468,'others'); +INSERT INTO entity_mentions VALUES(1549,'Microsoft - Microsoft SQL Server Analysis Services 2014 for Microsoft SQL Server 2014 Enterprise Edition 2014',5,468,'others'); +INSERT INTO entity_mentions VALUES(1550,'SQL Server Analysis Services 12.0.2000.8',5,468,'others'); +INSERT INTO entity_mentions VALUES(1551,'SQL Server Analysis Services (SSAS)',5,468,'others'); +INSERT INTO entity_mentions VALUES(1552,'SQL Server Analysis Services 11.0.3000.0',5,468,'others'); +INSERT INTO entity_mentions VALUES(1553,'SSAS',5,468,'others'); +INSERT INTO entity_mentions VALUES(1554,'6+ SSAS databases',5,468,'others'); +INSERT INTO entity_mentions VALUES(1555,'25+ SSAS databases',5,468,'others'); +INSERT INTO entity_mentions VALUES(1556,'SQL Server Database Engine',5,469,'others'); +INSERT INTO entity_mentions VALUES(1557,'Microsoft - Microsoft SQL Server Database Engine Services 10.1',5,469,'others'); +INSERT INTO entity_mentions VALUES(1558,'Microsoft - Microsoft SQL Server Integration Services 2014 for Microsoft SQL Server 2014 Enterprise Edition 2014',5,470,'others'); +INSERT INTO entity_mentions VALUES(1559,'SSIS',5,470,'others'); +INSERT INTO entity_mentions VALUES(1560,'SSIS 2008 R3',5,470,'others'); +INSERT INTO entity_mentions VALUES(1561,'Microsoft - Microsoft SQL Server Integration Services 2014 for Microsoft SQL Server 2014 Standard Edition 2014',5,470,'others'); +INSERT INTO entity_mentions VALUES(1562,'SSIS 2008 R4',5,470,'others'); +INSERT INTO entity_mentions VALUES(1563,'SQL Server Integration Services',5,470,'others'); +INSERT INTO entity_mentions VALUES(1564,'SSIS 2008 R2',5,470,'others'); +INSERT INTO entity_mentions VALUES(1565,'SSIS - 2008',5,470,'others'); +INSERT INTO entity_mentions VALUES(1566,'SQL Server Integration Services (SSIS)',5,470,'others'); +INSERT INTO entity_mentions VALUES(1567,'Microsoft - Microsoft SQL Server Management Studio 16',5,471,'others'); +INSERT INTO entity_mentions VALUES(1568,'Microsoft SQL Server Management studio2016',5,471,'others'); +INSERT INTO entity_mentions VALUES(1569,'SQL Management Studio',5,471,'others'); +INSERT INTO entity_mentions VALUES(1570,'SQL server mgmt studio 2012',5,471,'others'); +INSERT INTO entity_mentions VALUES(1571,'SQL Server Management Studio',5,471,'others'); +INSERT INTO entity_mentions VALUES(1572,'Microsoft - SQL Server Management Studio 2012',5,471,'others'); +INSERT INTO entity_mentions VALUES(1573,'Microsoft - Microsoft SQL Report Builder 10.5',5,472,'others'); +INSERT INTO entity_mentions VALUES(1574,'SQL Server Report Builder',5,472,'others'); +INSERT INTO entity_mentions VALUES(1575,'SQL Server Reporting Services 10.50.2500.0',5,473,'others'); +INSERT INTO entity_mentions VALUES(1576,'SQL Server Reporting Services',5,473,'others'); +INSERT INTO entity_mentions VALUES(1577,'SQL Server Reporting Services 11.0.5058.0',5,473,'others'); +INSERT INTO entity_mentions VALUES(1578,'SQL Server Reporting Services 12.0.2000.8',5,473,'others'); +INSERT INTO entity_mentions VALUES(1579,'SQL Server Reporting Services 11.0.2218.0',5,473,'others'); +INSERT INTO entity_mentions VALUES(1580,'Microsoft - Microsoft SQL Server Reporting Services 2012 for Microsoft SQL Server 2012 Express Edition 2012',5,473,'others'); +INSERT INTO entity_mentions VALUES(1581,'SQL Server Reporting Services 11.0.3000.0',5,473,'others'); +INSERT INTO entity_mentions VALUES(1582,'SSRS 2016',5,473,'others'); +INSERT INTO entity_mentions VALUES(1583,'SSRS',5,473,'others'); +INSERT INTO entity_mentions VALUES(1584,'SQL Server Reporting Services (SSRS)',5,473,'others'); +INSERT INTO entity_mentions VALUES(1585,'MICROSOFT SQL SERVER REPORTING SERVICES 10.*',5,473,'others'); +INSERT INTO entity_mentions VALUES(1586,'MVS',6,577,'others'); +INSERT INTO entity_mentions VALUES(1587,'OS/390',6,440,'others'); +INSERT INTO entity_mentions VALUES(1588,'ZOS V1R9',6,441,'others'); +INSERT INTO entity_mentions VALUES(1589,'ZOS Base 1.12',6,441,'others'); +INSERT INTO entity_mentions VALUES(1590,'IBM Z/OS V2.1',6,441,'others'); +INSERT INTO entity_mentions VALUES(1591,'z/OS 1.9',6,441,'others'); +INSERT INTO entity_mentions VALUES(1592,'z/OS',6,441,'others'); +INSERT INTO entity_mentions VALUES(1593,'zOS',6,441,'others'); +INSERT INTO entity_mentions VALUES(1594,'z/OS 1.8',6,441,'others'); +INSERT INTO entity_mentions VALUES(1595,'zOS 11.1',6,441,'others'); +INSERT INTO entity_mentions VALUES(1596,'z/OS Base',6,441,'others'); +INSERT INTO entity_mentions VALUES(1597,'MySQL Instance',2,122,'others'); +INSERT INTO entity_mentions VALUES(1598,'MySQL AB - MySQL - 15.1',2,122,'others'); +INSERT INTO entity_mentions VALUES(1599,'My SQL 0',2,122,'others'); +INSERT INTO entity_mentions VALUES(1600,'MYSQL',2,122,'others'); +INSERT INTO entity_mentions VALUES(1601,'Sun - Sun Microsystems MySQL Server Community Edition 5.6',2,122,'others'); +INSERT INTO entity_mentions VALUES(1602,'MySQL AB - MySQL Server 5.5',2,122,'others'); +INSERT INTO entity_mentions VALUES(1603,'MySQL AB - MySQL Server 5.7',2,122,'others'); +INSERT INTO entity_mentions VALUES(1604,'MySQL Enterprise Server - 8.0.16',2,122,'others'); +INSERT INTO entity_mentions VALUES(1605,'mysql on linux',2,122,'others'); +INSERT INTO entity_mentions VALUES(1606,'Neo4',2,123,'others'); +INSERT INTO entity_mentions VALUES(1607,'Neo4J',2,123,'others'); +INSERT INTO entity_mentions VALUES(1608,'Net Optics Network TAPs',4,297,'others'); +INSERT INTO entity_mentions VALUES(1609,'Net Optics Taps',4,297,'others'); +INSERT INTO entity_mentions VALUES(1610,'NAS',8,272,'others'); +INSERT INTO entity_mentions VALUES(1611,'Netscape Application Server',8,272,'others'); +INSERT INTO entity_mentions VALUES(1612,'Netscape Application Server (NAS)',8,272,'others'); +INSERT INTO entity_mentions VALUES(1613,'NES',8,273,'others'); +INSERT INTO entity_mentions VALUES(1614,'Netscape Enterprise Server',8,273,'others'); +INSERT INTO entity_mentions VALUES(1615,'Netscape En',8,273,'others'); +INSERT INTO entity_mentions VALUES(1616,'Netscape Enterprise Server (NES)',8,273,'others'); +INSERT INTO entity_mentions VALUES(1617,'Nexus',2,124,'others'); +INSERT INTO entity_mentions VALUES(1618,'Nexus Repository OSS',2,124,'others'); +INSERT INTO entity_mentions VALUES(1619,'Nginx (Linux)',8,274,'others'); +INSERT INTO entity_mentions VALUES(1620,'Nginx 3 (Linux)',8,274,'others'); +INSERT INTO entity_mentions VALUES(1621,'Nginx 1 (Linux)',8,274,'others'); +INSERT INTO entity_mentions VALUES(1622,'Nginx',8,274,'others'); +INSERT INTO entity_mentions VALUES(1623,'Nginx 1',8,274,'others'); +INSERT INTO entity_mentions VALUES(1624,'Nginx 3',8,274,'others'); +INSERT INTO entity_mentions VALUES(1625,'Niakwa Programming Language (NPL)',9,342,'others'); +INSERT INTO entity_mentions VALUES(1626,'NPL (Niakwa Inc)',9,342,'others'); +INSERT INTO entity_mentions VALUES(1627,'Niakwa Programming Language',9,342,'others'); +INSERT INTO entity_mentions VALUES(1628,'NIX',2,125,'others'); +INSERT INTO entity_mentions VALUES(1629,'Nix package manager',2,125,'others'); +INSERT INTO entity_mentions VALUES(1630,'Node.js',10,507,'others'); +INSERT INTO entity_mentions VALUES(1631,'Node.js 0.10 (Linux)',10,507,'others'); +INSERT INTO entity_mentions VALUES(1632,'Nodejs Foundation - nodejs - node.js 11.7.0',10,507,'others'); +INSERT INTO entity_mentions VALUES(1633,'TS-Node.js 6',10,507,'others'); +INSERT INTO entity_mentions VALUES(1634,'Node.js 4',10,507,'others'); +INSERT INTO entity_mentions VALUES(1635,'Node.js 6',10,507,'others'); +INSERT INTO entity_mentions VALUES(1636,'Node.js 10',10,507,'others'); +INSERT INTO entity_mentions VALUES(1637,'Node.js 8',10,507,'others'); +INSERT INTO entity_mentions VALUES(1638,'TS-Node.js 8',10,507,'others'); +INSERT INTO entity_mentions VALUES(1639,'TS-Node.js 0.10',10,507,'others'); +INSERT INTO entity_mentions VALUES(1640,'node',10,507,'others'); +INSERT INTO entity_mentions VALUES(1641,'Node.js 0.8',10,507,'others'); +INSERT INTO entity_mentions VALUES(1642,'Node.js 0.10',10,507,'others'); +INSERT INTO entity_mentions VALUES(1643,'Node.js 4 (Linux)',10,507,'others'); +INSERT INTO entity_mentions VALUES(1644,'TS-Node.js 11',10,507,'others'); +INSERT INTO entity_mentions VALUES(1645,'Node.js 5',10,507,'others'); +INSERT INTO entity_mentions VALUES(1646,'Nodejs',10,507,'others'); +INSERT INTO entity_mentions VALUES(1647,'Node.js 0.12',10,507,'others'); +INSERT INTO entity_mentions VALUES(1648,'Objective C',9,343,'others'); +INSERT INTO entity_mentions VALUES(1649,'Objective-C',9,343,'others'); +INSERT INTO entity_mentions VALUES(1650,'Obj-C',9,343,'others'); +INSERT INTO entity_mentions VALUES(1651,'OpenEdge ABL',9,344,'others'); +INSERT INTO entity_mentions VALUES(1652,'Progress',9,344,'others'); +INSERT INTO entity_mentions VALUES(1653,'OpenEdge',9,344,'others'); +INSERT INTO entity_mentions VALUES(1654,'Progress OpenEdge',9,344,'others'); +INSERT INTO entity_mentions VALUES(1655,'Symas OpenLDAP',2,126,'others'); +INSERT INTO entity_mentions VALUES(1656,'OpenLDAP',2,126,'others'); +INSERT INTO entity_mentions VALUES(1657,'HPExstream',2,127,'others'); +INSERT INTO entity_mentions VALUES(1658,'OpenText Exstream',2,127,'others'); +INSERT INTO entity_mentions VALUES(1659,'VMS 8.4',6,442,'others'); +INSERT INTO entity_mentions VALUES(1660,'OPENVMS 7.3.2',6,442,'others'); +INSERT INTO entity_mentions VALUES(1661,'VMS',6,442,'others'); +INSERT INTO entity_mentions VALUES(1662,'OpenVMS',6,442,'others'); +INSERT INTO entity_mentions VALUES(1663,'OPENVMS 8.4',6,442,'others'); +INSERT INTO entity_mentions VALUES(1664,'OpenVPN',2,128,'others'); +INSERT INTO entity_mentions VALUES(1665,'Oracle Access Management',2,129,'others'); +INSERT INTO entity_mentions VALUES(1666,'OAM 12c',2,129,'others'); +INSERT INTO entity_mentions VALUES(1667,'ADF 12c',2,130,'others'); +INSERT INTO entity_mentions VALUES(1668,'Oracle ADF',2,130,'others'); +INSERT INTO entity_mentions VALUES(1669,'Oracle APEX',2,131,'others'); +INSERT INTO entity_mentions VALUES(1670,'Apex',2,131,'others'); +INSERT INTO entity_mentions VALUES(1671,'Oracle HTTP Server 12c',8,610,'others'); +INSERT INTO entity_mentions VALUES(1672,'OHS',8,610,'others'); +INSERT INTO entity_mentions VALUES(1673,'Oracle Application Server 9i',8,610,'others'); +INSERT INTO entity_mentions VALUES(1674,'Oracle HTTP Server powered by Apache',8,610,'others'); +INSERT INTO entity_mentions VALUES(1675,'j2eeoracleca',8,610,'others'); +INSERT INTO entity_mentions VALUES(1676,'Oracle Application Server',8,610,'others'); +INSERT INTO entity_mentions VALUES(1677,'Oracle HTTP',8,610,'others'); +INSERT INTO entity_mentions VALUES(1678,'Oracle HTTP server',8,610,'others'); +INSERT INTO entity_mentions VALUES(1679,'Oracle - Oracle Application Server OC4J Instance 11.2',8,610,'others'); +INSERT INTO entity_mentions VALUES(1680,'Oracle Web App Server',8,610,'others'); +INSERT INTO entity_mentions VALUES(1681,'9i AS server',8,610,'others'); +INSERT INTO entity_mentions VALUES(1682,'Oracle Applications 11.5.10CU2',8,610,'others'); +INSERT INTO entity_mentions VALUES(1683,'Oracle Application R12.1.3',8,610,'others'); +INSERT INTO entity_mentions VALUES(1684,'OC4J',8,610,'others'); +INSERT INTO entity_mentions VALUES(1685,'Oracle Appache 1.0.22',8,610,'others'); +INSERT INTO entity_mentions VALUES(1686,'Oracle Transparent Gateway',7,494,'others'); +INSERT INTO entity_mentions VALUES(1687,'Weblogic BI Publisher',2,132,'others'); +INSERT INTO entity_mentions VALUES(1688,'Oracle BI Publisher 10g (10.1.3.4)',2,132,'others'); +INSERT INTO entity_mentions VALUES(1689,'Oracle BI Publisher',2,132,'others'); +INSERT INTO entity_mentions VALUES(1690,'Oracle Business Intelligence',2,133,'others'); +INSERT INTO entity_mentions VALUES(1691,'OBI',2,133,'others'); +INSERT INTO entity_mentions VALUES(1692,'OBIEE',2,133,'others'); +INSERT INTO entity_mentions VALUES(1693,'OBI Reporting',2,133,'others'); +INSERT INTO entity_mentions VALUES(1694,'Oracle 12c Enterprise',2,134,'others'); +INSERT INTO entity_mentions VALUES(1695,'Oracle 12 c',2,134,'others'); +INSERT INTO entity_mentions VALUES(1696,'Oracle 12.2 Client',2,134,'others'); +INSERT INTO entity_mentions VALUES(1697,'Oracle 11gR1',2,134,'others'); +INSERT INTO entity_mentions VALUES(1698,'Oracle 18c',2,134,'others'); +INSERT INTO entity_mentions VALUES(1699,'Oracle 9.2.0.7.0',2,134,'others'); +INSERT INTO entity_mentions VALUES(1700,'Oracle 10.2',2,134,'others'); +INSERT INTO entity_mentions VALUES(1701,'Oracle Database 11g Enterprise Edition Release 11.2.0.4.0',2,134,'others'); +INSERT INTO entity_mentions VALUES(1702,'Oracle 11.2 (Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit) RAC',2,134,'others'); +INSERT INTO entity_mentions VALUES(1703,'Oracle 18',2,134,'others'); +INSERT INTO entity_mentions VALUES(1704,'Oracle 9i',2,134,'others'); +INSERT INTO entity_mentions VALUES(1705,'Oracle 12c (v12.2.0.1) ORACLE',2,134,'others'); +INSERT INTO entity_mentions VALUES(1706,'Oracle Database 12.1.0.2.190716',2,134,'others'); +INSERT INTO entity_mentions VALUES(1707,'Oracle 12.1.0.2.0',2,134,'others'); +INSERT INTO entity_mentions VALUES(1708,'Oracle 12.1',2,134,'others'); +INSERT INTO entity_mentions VALUES(1709,'Oracle Database 11g R2',2,134,'others'); +INSERT INTO entity_mentions VALUES(1710,'Oracle 11 on AIX',2,134,'others'); +INSERT INTO entity_mentions VALUES(1711,'Oracle Database 10g Enterprise Edition Release 10.1.0.4.0 - 64bit',2,134,'others'); +INSERT INTO entity_mentions VALUES(1712,'Oracle Database 11.2.0.3.0',2,134,'others'); +INSERT INTO entity_mentions VALUES(1713,'Oracle Database 10g 10.2.0.5.0',2,134,'others'); +INSERT INTO entity_mentions VALUES(1714,'Oracle 11 on EXA',2,134,'others'); +INSERT INTO entity_mentions VALUES(1715,'Oracle Database 11.1.0.7.0',2,134,'others'); +INSERT INTO entity_mentions VALUES(1716,'Oracle Database Server',2,134,'others'); +INSERT INTO entity_mentions VALUES(1717,'Oracle DB Server',2,134,'others'); +INSERT INTO entity_mentions VALUES(1718,'Oracle (9i,10g,11g,12c,18c)',2,134,'others'); +INSERT INTO entity_mentions VALUES(1719,'Oracle 12C',2,134,'others'); +INSERT INTO entity_mentions VALUES(1720,'Oracle 10.2.0.5',2,134,'others'); +INSERT INTO entity_mentions VALUES(1721,'Oracle-OracleDB-10g',2,134,'others'); +INSERT INTO entity_mentions VALUES(1722,'Oracle 11.2.0.2.0',2,134,'others'); +INSERT INTO entity_mentions VALUES(1723,'Oracle 10',2,134,'others'); +INSERT INTO entity_mentions VALUES(1724,'Oracle 8',2,134,'others'); +INSERT INTO entity_mentions VALUES(1725,'Oracle 11G R2',2,134,'others'); +INSERT INTO entity_mentions VALUES(1726,'Oracle Database 10g Release 10.2.0.4.0 - 64bit Production',2,134,'others'); +INSERT INTO entity_mentions VALUES(1727,'Oarcle 11G',2,134,'others'); +INSERT INTO entity_mentions VALUES(1728,'Oracle 12C R2 ORACLE',2,134,'others'); +INSERT INTO entity_mentions VALUES(1729,'Oracle 11x',2,134,'others'); +INSERT INTO entity_mentions VALUES(1730,'Oracle 11.2.4',2,134,'others'); +INSERT INTO entity_mentions VALUES(1731,'Oracle Database 11gR2 Enterprise Edition 11.2.0.1 (64-bit)',2,134,'others'); +INSERT INTO entity_mentions VALUES(1732,'Oracle',2,134,'others'); +INSERT INTO entity_mentions VALUES(1733,'Oracle 12.1.0.2',2,134,'others'); +INSERT INTO entity_mentions VALUES(1734,'Oracle Database 10g R2',2,134,'others'); +INSERT INTO entity_mentions VALUES(1735,'Oracle 12x',2,134,'others'); +INSERT INTO entity_mentions VALUES(1736,'Oracle - 12.1.0.2',2,134,'others'); +INSERT INTO entity_mentions VALUES(1737,'Oracle 10g',2,134,'others'); +INSERT INTO entity_mentions VALUES(1738,'DB - Oracle inbuilt',2,134,'others'); +INSERT INTO entity_mentions VALUES(1739,'Oracle 12g',2,134,'others'); +INSERT INTO entity_mentions VALUES(1740,'Oracle Database 10g Release 2',2,134,'others'); +INSERT INTO entity_mentions VALUES(1741,'Oracle 11.2',2,134,'others'); +INSERT INTO entity_mentions VALUES(1742,'Oracle 11 g',2,134,'others'); +INSERT INTO entity_mentions VALUES(1743,'Oracle 9.2.0.8.0',2,134,'others'); +INSERT INTO entity_mentions VALUES(1744,'Oracle Database 12.2.1.0',2,134,'others'); +INSERT INTO entity_mentions VALUES(1745,'Oracle 10.2.0.4.0',2,134,'others'); +INSERT INTO entity_mentions VALUES(1746,'Oracle 10g (10.2.0.3.0 on 32-bit windows)',2,134,'others'); +INSERT INTO entity_mentions VALUES(1747,'Oracle 11g (11.2.0.3.0 on 64-bit windows)',2,134,'others'); +INSERT INTO entity_mentions VALUES(1748,'Oracle-Oracle DB-8i',2,134,'others'); +INSERT INTO entity_mentions VALUES(1749,'Oracle DB',2,134,'others'); +INSERT INTO entity_mentions VALUES(1750,'Oracle Database',2,134,'others'); +INSERT INTO entity_mentions VALUES(1751,'Oracle - Oracle Database - 10g Release 2',2,134,'others'); +INSERT INTO entity_mentions VALUES(1752,'Oracle 10x',2,134,'others'); +INSERT INTO entity_mentions VALUES(1753,'Oracle 11.2.0.4.0',2,134,'others'); +INSERT INTO entity_mentions VALUES(1754,'Oracle 11g RAC',2,134,'others'); +INSERT INTO entity_mentions VALUES(1755,'Oracle Database 11g Release 2',2,134,'others'); +INSERT INTO entity_mentions VALUES(1756,'Oracle Server',2,134,'others'); +INSERT INTO entity_mentions VALUES(1757,'Oracle Database 12c R1',2,134,'others'); +INSERT INTO entity_mentions VALUES(1758,'Oracle 10.2.0',2,134,'others'); +INSERT INTO entity_mentions VALUES(1759,'Oracle 11.2.0.4.0 64-bit',2,134,'others'); +INSERT INTO entity_mentions VALUES(1760,'Oracle 10.2.0.5.0',2,134,'others'); +INSERT INTO entity_mentions VALUES(1761,'Oracle 9.2.0.5.0',2,134,'others'); +INSERT INTO entity_mentions VALUES(1762,'Oracle DB 11g EER 11.2.0.3.0',2,134,'others'); +INSERT INTO entity_mentions VALUES(1763,'ORACLE RELATIONAL DATABASE MANAGEMENT SYSTEM VERSION 11.2',2,134,'others'); +INSERT INTO entity_mentions VALUES(1764,'Oracle Database 9i Release 2',2,134,'others'); +INSERT INTO entity_mentions VALUES(1765,'Oracle 11.1.0.7.0',2,134,'others'); +INSERT INTO entity_mentions VALUES(1766,'Oracle Database 11g',2,134,'others'); +INSERT INTO entity_mentions VALUES(1767,'Oracle DB 11.2.0.3',2,134,'others'); +INSERT INTO entity_mentions VALUES(1768,'Oracle 12.2',2,134,'others'); +INSERT INTO entity_mentions VALUES(1769,'Oracle 11g',2,134,'others'); +INSERT INTO entity_mentions VALUES(1770,'Oracle Database 12c Release 2',2,134,'others'); +INSERT INTO entity_mentions VALUES(1771,'Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production',2,134,'others'); +INSERT INTO entity_mentions VALUES(1772,'Oracle 11.2.0.3.0',2,134,'others'); +INSERT INTO entity_mentions VALUES(1773,'Oracle 10.2.0.3.0',2,134,'others'); +INSERT INTO entity_mentions VALUES(1774,'Oracle 12',2,134,'others'); +INSERT INTO entity_mentions VALUES(1775,'Oracle Database 12c R2',2,134,'others'); +INSERT INTO entity_mentions VALUES(1776,'Oracle 12C on linux',2,134,'others'); +INSERT INTO entity_mentions VALUES(1777,'oracle 11g ORACLE',2,134,'others'); +INSERT INTO entity_mentions VALUES(1778,'Oracle - 11.2.0.3',2,134,'others'); +INSERT INTO entity_mentions VALUES(1779,'Oracle 12c (Oracle Database 12c Enterprise Edition Release 11.2.0.3.0 - 64bit)',2,134,'others'); +INSERT INTO entity_mentions VALUES(1780,'Oracle9i Enterprise Edition Release 9.2.0.5.0',2,134,'others'); +INSERT INTO entity_mentions VALUES(1781,'OracleDB EE11.2',2,134,'others'); +INSERT INTO entity_mentions VALUES(1782,'Oracle 11g on linux',2,134,'others'); +INSERT INTO entity_mentions VALUES(1783,'Oracle 11gEssbase',2,134,'others'); +INSERT INTO entity_mentions VALUES(1784,'Oracle12',2,134,'others'); +INSERT INTO entity_mentions VALUES(1785,'Oracle Database 12c Release 1',2,134,'others'); +INSERT INTO entity_mentions VALUES(1786,'JServer Release 9.2.0.5.0',5,474,'others'); +INSERT INTO entity_mentions VALUES(1787,'Jserver',5,474,'others'); +INSERT INTO entity_mentions VALUES(1788,'ORACLE SPATIAL',5,475,'others'); +INSERT INTO entity_mentions VALUES(1789,'Oracle Spatial and Graph',5,475,'others'); +INSERT INTO entity_mentions VALUES(1790,'Designer 6i',2,135,'others'); +INSERT INTO entity_mentions VALUES(1791,'Oracle Designer',2,135,'others'); +INSERT INTO entity_mentions VALUES(1792,'Enterprise Manager 12.2.1.1',2,136,'others'); +INSERT INTO entity_mentions VALUES(1793,'Enterprise Manager 12.2.1.2',2,136,'others'); +INSERT INTO entity_mentions VALUES(1794,'Enterprise Manager 11.1.1.7',2,136,'others'); +INSERT INTO entity_mentions VALUES(1795,'Oracle Enterprise Manager',2,136,'others'); +INSERT INTO entity_mentions VALUES(1796,'Exadata X6-2',4,298,'others'); +INSERT INTO entity_mentions VALUES(1797,'Oracle Exadata',4,298,'others'); +INSERT INTO entity_mentions VALUES(1798,'Oracle Exadata 11g',4,298,'others'); +INSERT INTO entity_mentions VALUES(1799,'Oracle - Exadata X6-2',4,298,'others'); +INSERT INTO entity_mentions VALUES(1800,'Oracle Forms',2,137,'others'); +INSERT INTO entity_mentions VALUES(1801,'Hyperion Interactive Reporting',2,138,'others'); +INSERT INTO entity_mentions VALUES(1802,'Oracle Hyperion Interactive Reporting version 9.3',2,138,'others'); +INSERT INTO entity_mentions VALUES(1803,'Hyperion Planning Server',2,139,'others'); +INSERT INTO entity_mentions VALUES(1804,'Hyperion Planning',2,139,'others'); +INSERT INTO entity_mentions VALUES(1805,'Oracle Net Services',2,140,'others'); +INSERT INTO entity_mentions VALUES(1806,'Oracle, Nets',2,140,'others'); +INSERT INTO entity_mentions VALUES(1807,'Oracle Real Application Clusters (RAC)',2,141,'others'); +INSERT INTO entity_mentions VALUES(1808,'Oracle RAC',2,141,'others'); +INSERT INTO entity_mentions VALUES(1809,'Oracle Real Application Clusters',2,141,'others'); +INSERT INTO entity_mentions VALUES(1810,'Oracle Retail Point-of-Service',2,142,'others'); +INSERT INTO entity_mentions VALUES(1811,'ORPOS 13.3.3',2,142,'others'); +INSERT INTO entity_mentions VALUES(1812,'ORPOS 13.3.5',2,142,'others'); +INSERT INTO entity_mentions VALUES(1813,'ORPOS 13.3.4',2,142,'others'); +INSERT INTO entity_mentions VALUES(1814,'Oracle Service Bus',2,143,'others'); +INSERT INTO entity_mentions VALUES(1815,'Oracle Service Bus 11.1.1.7',2,143,'others'); +INSERT INTO entity_mentions VALUES(1816,'Oracle Service Bus 12.2.1.2',2,143,'others'); +INSERT INTO entity_mentions VALUES(1817,'OSB Servers',2,143,'others'); +INSERT INTO entity_mentions VALUES(1818,'Oracle Service Bus 12.2.1.1',2,143,'others'); +INSERT INTO entity_mentions VALUES(1819,'Oracle Smart View',2,144,'others'); +INSERT INTO entity_mentions VALUES(1820,'Hyperian Smart View',2,144,'others'); +INSERT INTO entity_mentions VALUES(1821,'Oracle SOA Suite',2,145,'others'); +INSERT INTO entity_mentions VALUES(1822,'Oracle SOA Suite 12.2.1.3.0',2,145,'others'); +INSERT INTO entity_mentions VALUES(1823,'Oracle SQL Developer',2,146,'others'); +INSERT INTO entity_mentions VALUES(1824,'Oracle - Oracle Sql Developer 1.5',2,146,'others'); +INSERT INTO entity_mentions VALUES(1825,'Oracle TimesTen In-Memory Database',2,147,'others'); +INSERT INTO entity_mentions VALUES(1826,'Oracle TT',2,147,'others'); +INSERT INTO entity_mentions VALUES(1827,'Oracle VM 3.3.3',3,567,'others'); +INSERT INTO entity_mentions VALUES(1828,'Oracle VM',3,567,'others'); +INSERT INTO entity_mentions VALUES(1829,'Oracle VM 3.3',3,567,'others'); +INSERT INTO entity_mentions VALUES(1830,'OWB 10g',2,148,'others'); +INSERT INTO entity_mentions VALUES(1831,'Oracle Warehouse Builder',2,148,'others'); +INSERT INTO entity_mentions VALUES(1832,'Oracle Warehouse Builder (OWB)',2,148,'others'); +INSERT INTO entity_mentions VALUES(1833,'WebCenter Content Server',8,276,'others'); +INSERT INTO entity_mentions VALUES(1834,'Oracle WebCenter Content Server',8,276,'others'); +INSERT INTO entity_mentions VALUES(1835,'IDOC SCRIPT',7,495,'others'); +INSERT INTO entity_mentions VALUES(1836,'Orbix',2,149,'others'); +INSERT INTO entity_mentions VALUES(1837,'IONA Orbix',2,149,'others'); +INSERT INTO entity_mentions VALUES(1838,'OS/2',6,443,'others'); +INSERT INTO entity_mentions VALUES(1839,'OWASP Enterprise Security API (ESAPI)',12,416,'others'); +INSERT INTO entity_mentions VALUES(1840,'OWASP Enterprise Security API',12,416,'others'); +INSERT INTO entity_mentions VALUES(1841,'Esapi',12,416,'others'); +INSERT INTO entity_mentions VALUES(1842,'Pascal',9,599,'others'); +INSERT INTO entity_mentions VALUES(1843,'Object Pascal',9,346,'others'); +INSERT INTO entity_mentions VALUES(1844,'Clascal',9,346,'others'); +INSERT INTO entity_mentions VALUES(1845,'Pentaho',2,150,'others'); +INSERT INTO entity_mentions VALUES(1846,'peoplesoft',2,151,'others'); +INSERT INTO entity_mentions VALUES(1847,'Oracle-HR-9.2',2,151,'others'); +INSERT INTO entity_mentions VALUES(1848,'Perkin Elmer Informatics',2,152,'others'); +INSERT INTO entity_mentions VALUES(1849,'Perkin Elmer Informatics (PKI)',2,152,'others'); +INSERT INTO entity_mentions VALUES(1850,'Perl',9,585,'others'); +INSERT INTO entity_mentions VALUES(1851,'Perl 5.8.4',9,585,'others'); +INSERT INTO entity_mentions VALUES(1852,'ActivePerl',9,348,'others'); +INSERT INTO entity_mentions VALUES(1853,'ActiveState Tool Corp. - ActivePerl 5.12',9,348,'others'); +INSERT INTO entity_mentions VALUES(1854,'ActiveState Tool Corp. - ActivePerl 5.8',9,348,'others'); +INSERT INTO entity_mentions VALUES(1855,'ORAPERL',12,417,'others'); +INSERT INTO entity_mentions VALUES(1856,'REX',9,349,'others'); +INSERT INTO entity_mentions VALUES(1857,'Pervasive',2,153,'others'); +INSERT INTO entity_mentions VALUES(1858,'Pervasive PSQL',2,153,'others'); +INSERT INTO entity_mentions VALUES(1859,'PHP 5.4',9,586,'others'); +INSERT INTO entity_mentions VALUES(1860,'PHP',9,586,'others'); +INSERT INTO entity_mentions VALUES(1861,'Pipeflo',2,154,'others'); +INSERT INTO entity_mentions VALUES(1862,'PIPE-FLO',2,154,'others'); +INSERT INTO entity_mentions VALUES(1863,'TCServer V6',8,277,'others'); +INSERT INTO entity_mentions VALUES(1864,'Pivotal tc Server',8,277,'others'); +INSERT INTO entity_mentions VALUES(1865,'IBM PKWARE PKZip 2',2,155,'others'); +INSERT INTO entity_mentions VALUES(1866,'PKZIP',2,155,'others'); +INSERT INTO entity_mentions VALUES(1867,'PL/I',9,351,'others'); +INSERT INTO entity_mentions VALUES(1868,'PL1',9,351,'others'); +INSERT INTO entity_mentions VALUES(1869,'pli',9,351,'others'); +INSERT INTO entity_mentions VALUES(1870,'PL/1',9,351,'others'); +INSERT INTO entity_mentions VALUES(1871,'PLQSL',9,352,'others'); +INSERT INTO entity_mentions VALUES(1872,'Oracle - SQL',9,352,'others'); +INSERT INTO entity_mentions VALUES(1873,'PL/SQL TEMPLATING LANGUAGE',9,352,'others'); +INSERT INTO entity_mentions VALUES(1874,'PL/SQL',9,352,'others'); +INSERT INTO entity_mentions VALUES(1875,'Oracle SQL',9,352,'others'); +INSERT INTO entity_mentions VALUES(1876,'PLSQL;',9,352,'others'); +INSERT INTO entity_mentions VALUES(1877,'Oracle PL/SQL',9,352,'others'); +INSERT INTO entity_mentions VALUES(1878,'Oracle PLSQL',9,352,'others'); +INSERT INTO entity_mentions VALUES(1879,'plsql',9,352,'others'); +INSERT INTO entity_mentions VALUES(1880,'pl-sql',9,352,'others'); +INSERT INTO entity_mentions VALUES(1881,'PL SQL',9,352,'others'); +INSERT INTO entity_mentions VALUES(1882,'Planview',2,156,'others'); +INSERT INTO entity_mentions VALUES(1883,'Projectplace',2,156,'others'); +INSERT INTO entity_mentions VALUES(1884,'postgres',2,157,'others'); +INSERT INTO entity_mentions VALUES(1885,'PostGreSQL',2,157,'others'); +INSERT INTO entity_mentions VALUES(1886,'PostgreSQL 0',2,157,'others'); +INSERT INTO entity_mentions VALUES(1887,'Postgress',2,157,'others'); +INSERT INTO entity_mentions VALUES(1888,'PowerBuilder 6.5',2,158,'others'); +INSERT INTO entity_mentions VALUES(1889,'Powerbuilder V12.5',2,158,'others'); +INSERT INTO entity_mentions VALUES(1890,'Power Builder',2,158,'others'); +INSERT INTO entity_mentions VALUES(1891,'Powerbuilder v11.5',2,158,'others'); +INSERT INTO entity_mentions VALUES(1892,'Power Builder 6.5',2,158,'others'); +INSERT INTO entity_mentions VALUES(1893,'Powerbuilder',2,158,'others'); +INSERT INTO entity_mentions VALUES(1894,'Primavera',2,159,'others'); +INSERT INTO entity_mentions VALUES(1895,'Primavera P6',2,159,'others'); +INSERT INTO entity_mentions VALUES(1896,'PRO*C',9,353,'others'); +INSERT INTO entity_mentions VALUES(1897,'PRO C',9,353,'others'); +INSERT INTO entity_mentions VALUES(1898,'ProC',9,353,'others'); +INSERT INTO entity_mentions VALUES(1899,'Pro*Cobol',2,160,'others'); +INSERT INTO entity_mentions VALUES(1900,'ProjectWise',2,161,'others'); +INSERT INTO entity_mentions VALUES(1901,'ProjectWise Oracle Server',2,161,'others'); +INSERT INTO entity_mentions VALUES(1902,'Projectwise Server (XM)',2,162,'others'); +INSERT INTO entity_mentions VALUES(1903,'ProjectWise JJ',2,162,'others'); +INSERT INTO entity_mentions VALUES(1904,'Projectwise Server',2,162,'others'); +INSERT INTO entity_mentions VALUES(1905,'Projectwise Setup for PEMEX',2,162,'others'); +INSERT INTO entity_mentions VALUES(1906,'ProjectWise Web Server',2,162,'others'); +INSERT INTO entity_mentions VALUES(1907,'ProjectWise Application Server',2,162,'others'); +INSERT INTO entity_mentions VALUES(1908,'ProjectWise Cache Server',2,162,'others'); +INSERT INTO entity_mentions VALUES(1909,'PVCS Version Manager',2,163,'others'); +INSERT INTO entity_mentions VALUES(1910,'Serena PVCS Version Manager 8.4',2,163,'others'); +INSERT INTO entity_mentions VALUES(1911,'Python Software Foundation - Python 2.6',9,587,'others'); +INSERT INTO entity_mentions VALUES(1912,'Python - Python - Python 2',9,587,'others'); +INSERT INTO entity_mentions VALUES(1913,'Python 2',9,587,'others'); +INSERT INTO entity_mentions VALUES(1914,'Python',9,587,'others'); +INSERT INTO entity_mentions VALUES(1915,'QlikView',2,164,'others'); +INSERT INTO entity_mentions VALUES(1916,'R',9,355,'others'); +INSERT INTO entity_mentions VALUES(1917,'RMQ',2,165,'others'); +INSERT INTO entity_mentions VALUES(1918,'rabbit mq',2,165,'others'); +INSERT INTO entity_mentions VALUES(1919,'RabbitMQ',2,165,'others'); +INSERT INTO entity_mentions VALUES(1920,'ClearCase Build Utility 1',2,166,'others'); +INSERT INTO entity_mentions VALUES(1921,'Rational ClearCase',2,166,'others'); +INSERT INTO entity_mentions VALUES(1922,'Clearquest',2,167,'others'); +INSERT INTO entity_mentions VALUES(1923,'Rational ClearQuest',2,167,'others'); +INSERT INTO entity_mentions VALUES(1924,'redis',2,168,'others'); +INSERT INTO entity_mentions VALUES(1925,'Remedy',2,169,'others'); +INSERT INTO entity_mentions VALUES(1926,'Remedy ARS',2,169,'others'); +INSERT INTO entity_mentions VALUES(1927,'Resin Web Server',8,278,'others'); +INSERT INTO entity_mentions VALUES(1928,'Resin',8,278,'others'); +INSERT INTO entity_mentions VALUES(1929,'rexx',9,356,'others'); +INSERT INTO entity_mentions VALUES(1930,'Riak',2,170,'others'); +INSERT INTO entity_mentions VALUES(1931,'RightFax client 10',2,171,'others'); +INSERT INTO entity_mentions VALUES(1932,'RightFax',2,171,'others'); +INSERT INTO entity_mentions VALUES(1933,'RPG',9,357,'others'); +INSERT INTO entity_mentions VALUES(1934,'Ruby',9,588,'others'); +INSERT INTO entity_mentions VALUES(1935,'Ruby on Rails',10,508,'others'); +INSERT INTO entity_mentions VALUES(1936,'Rumba',2,172,'others'); +INSERT INTO entity_mentions VALUES(1937,'Salesforce Object Query Language (SOQL)',9,359,'others'); +INSERT INTO entity_mentions VALUES(1938,'SOQL',9,359,'others'); +INSERT INTO entity_mentions VALUES(1939,'Salesforce Object Query Language',9,359,'others'); +INSERT INTO entity_mentions VALUES(1940,'SAP Business Objects',2,173,'others'); +INSERT INTO entity_mentions VALUES(1941,'Business Objects 12',2,173,'others'); +INSERT INTO entity_mentions VALUES(1942,'BusinessObjects 4.2 SP7',2,173,'others'); +INSERT INTO entity_mentions VALUES(1943,'SAP BI 4.2 Sp5',2,173,'others'); +INSERT INTO entity_mentions VALUES(1944,'SAP BusinessObjects BI server',2,173,'others'); +INSERT INTO entity_mentions VALUES(1945,'SAP ERP',2,174,'others'); +INSERT INTO entity_mentions VALUES(1946,'SAP EHP 7',5,476,'others'); +INSERT INTO entity_mentions VALUES(1947,'SAP EHP',5,476,'others'); +INSERT INTO entity_mentions VALUES(1948,'SAP - SAP Kernel 7.1',5,477,'others'); +INSERT INTO entity_mentions VALUES(1949,'SAP Kernel',5,477,'others'); +INSERT INTO entity_mentions VALUES(1950,'SAP HANA ON SUSEOracle 11g on Linux',2,175,'others'); +INSERT INTO entity_mentions VALUES(1951,'HANA',2,175,'others'); +INSERT INTO entity_mentions VALUES(1952,'SAP HANA DB',2,175,'others'); +INSERT INTO entity_mentions VALUES(1953,'SAP - HANA 2.0',2,175,'others'); +INSERT INTO entity_mentions VALUES(1954,'SAP MaxDB',2,176,'others'); +INSERT INTO entity_mentions VALUES(1955,'NetWeaver',8,279,'others'); +INSERT INTO entity_mentions VALUES(1956,'SAP NetWeaver App Server',8,279,'others'); +INSERT INTO entity_mentions VALUES(1957,'ABAP',7,496,'others'); +INSERT INTO entity_mentions VALUES(1958,'SAP NetWeaver Business Warehouse',2,177,'others'); +INSERT INTO entity_mentions VALUES(1959,'SAP BW 7.5 SP10 - BW has 10 App servers for load balancing',2,177,'others'); +INSERT INTO entity_mentions VALUES(1960,'SAP BW DB server has one instance and 13 servers for load balancing',2,177,'others'); +INSERT INTO entity_mentions VALUES(1961,'SAP BW 7.5 SP10',2,177,'others'); +INSERT INTO entity_mentions VALUES(1962,'SAP - SAP SQL Anywhere Network Database Server 12',2,178,'others'); +INSERT INTO entity_mentions VALUES(1963,'SAP SQL Anywhere',2,178,'others'); +INSERT INTO entity_mentions VALUES(1964,'SAP - SAP SQL Anywhere Network Database Server 11',2,178,'others'); +INSERT INTO entity_mentions VALUES(1965,'SAP - SAP SQL Anywhere Personal Database Server 16',2,178,'others'); +INSERT INTO entity_mentions VALUES(1966,'SAP Web Dynpro',2,179,'others'); +INSERT INTO entity_mentions VALUES(1967,'Web-Dynpro',2,179,'others'); +INSERT INTO entity_mentions VALUES(1968,'SAS',9,360,'others'); +INSERT INTO entity_mentions VALUES(1969,'SAS 9.2',9,360,'others'); +INSERT INTO entity_mentions VALUES(1970,'SCSS',9,361,'others'); +INSERT INTO entity_mentions VALUES(1971,'Sass',9,361,'others'); +INSERT INTO entity_mentions VALUES(1972,'Scala',9,362,'others'); +INSERT INTO entity_mentions VALUES(1973,'Scalla',9,362,'others'); +INSERT INTO entity_mentions VALUES(1974,'Sentry',2,180,'others'); +INSERT INTO entity_mentions VALUES(1975,'Sentry 1.13',2,180,'others'); +INSERT INTO entity_mentions VALUES(1976,'Sharepoints 2010',2,603,'others'); +INSERT INTO entity_mentions VALUES(1977,'Microsoft SPS 2010',2,603,'others'); +INSERT INTO entity_mentions VALUES(1978,'SharePoint',2,603,'others'); +INSERT INTO entity_mentions VALUES(1979,'SharePoint 2013',2,603,'others'); +INSERT INTO entity_mentions VALUES(1980,'Sharepoint 2007',2,603,'others'); +INSERT INTO entity_mentions VALUES(1981,'Sharepoint 2010',2,603,'others'); +INSERT INTO entity_mentions VALUES(1982,'SQL Server SP2013 Database Server',2,603,'others'); +INSERT INTO entity_mentions VALUES(1983,'Sharepoint 2016',2,603,'others'); +INSERT INTO entity_mentions VALUES(1984,'Siebel IP 2015',2,182,'others'); +INSERT INTO entity_mentions VALUES(1985,'Siebel 7.8.2.16',2,182,'others'); +INSERT INTO entity_mentions VALUES(1986,'Siebel',2,182,'others'); +INSERT INTO entity_mentions VALUES(1987,'Siebel CRM',2,182,'others'); +INSERT INTO entity_mentions VALUES(1988,'Smalltalk',9,363,'others'); +INSERT INTO entity_mentions VALUES(1989,'SNA Manager',2,183,'others'); +INSERT INTO entity_mentions VALUES(1990,'SNA Manager 8.0.3608.0',2,183,'others'); +INSERT INTO entity_mentions VALUES(1991,'Techsmith Corporation - SnagIt 8',2,184,'others'); +INSERT INTO entity_mentions VALUES(1992,'SnagIt',2,184,'others'); +INSERT INTO entity_mentions VALUES(1993,'Solid development server',2,185,'others'); +INSERT INTO entity_mentions VALUES(1994,'solidDB',2,185,'others'); +INSERT INTO entity_mentions VALUES(1995,'SonarSource - SonarSource SonarQube Server 5.1',2,186,'others'); +INSERT INTO entity_mentions VALUES(1996,'SonarQube',2,186,'others'); +INSERT INTO entity_mentions VALUES(1997,'SpaceMonger',2,187,'others'); +INSERT INTO entity_mentions VALUES(1998,'Sixty-Five Software - SpaceMonger 1.4',2,187,'others'); +INSERT INTO entity_mentions VALUES(1999,'Spark',8,280,'others'); +INSERT INTO entity_mentions VALUES(2000,'Splunk',2,188,'others'); +INSERT INTO entity_mentions VALUES(2001,'SQLPlus',5,478,'others'); +INSERT INTO entity_mentions VALUES(2002,'SQL Plus',5,478,'others'); +INSERT INTO entity_mentions VALUES(2003,'SQL*Plus',5,478,'others'); +INSERT INTO entity_mentions VALUES(2004,'SQLIO 1.0',2,189,'others'); +INSERT INTO entity_mentions VALUES(2005,'SQLIO',2,189,'others'); +INSERT INTO entity_mentions VALUES(2007,'Sun ONE Web Server',8,281,'others'); +INSERT INTO entity_mentions VALUES(2008,'Sun Java Web Server 7.0 Update 2',8,281,'others'); +INSERT INTO entity_mentions VALUES(2009,'iPlanet Web Server',8,281,'others'); +INSERT INTO entity_mentions VALUES(2010,'Oracle iPlanet Web Server',8,281,'others'); +INSERT INTO entity_mentions VALUES(2011,'Sun Java Web Server',8,281,'others'); +INSERT INTO entity_mentions VALUES(2012,'SunOne',8,281,'others'); +INSERT INTO entity_mentions VALUES(2013,'Swift',9,364,'others'); +INSERT INTO entity_mentions VALUES(2014,'Sybase SQL Server',2,190,'others'); +INSERT INTO entity_mentions VALUES(2015,'Sybase',2,190,'others'); +INSERT INTO entity_mentions VALUES(2016,'SYBASE ADAPTIVE SERVER ENTERPRISE DATABASE SERVER 12.5"',2,190,'others'); +INSERT INTO entity_mentions VALUES(2017,'SYBASE ADAPTIVE SERVER ENTERPRISE DATABASE SERVER 12',2,190,'others'); +INSERT INTO entity_mentions VALUES(2018,'SAP - Sybase Adaptive Server Enterprise 12.5',2,190,'others'); +INSERT INTO entity_mentions VALUES(2019,'SAP - Sybase Adaptive Server Enterprise 16',2,190,'others'); +INSERT INTO entity_mentions VALUES(2020,'SAP - Sybase Adaptive Server Enterprise 12',2,190,'others'); +INSERT INTO entity_mentions VALUES(2021,'Sybase Central',5,479,'others'); +INSERT INTO entity_mentions VALUES(2022,'SAP - Sybase Central 4.3',5,479,'others'); +INSERT INTO entity_mentions VALUES(2023,'SAP - Sybase Dsedit 12.5',5,480,'others'); +INSERT INTO entity_mentions VALUES(2024,'Sybase Dsedit',5,480,'others'); +INSERT INTO entity_mentions VALUES(2025,'Sysncsort',2,191,'others'); +INSERT INTO entity_mentions VALUES(2026,'syncsort',2,191,'others'); +INSERT INTO entity_mentions VALUES(2027,'Sysinternals LLC - AccessEnum 1 1',2,194,'others'); +INSERT INTO entity_mentions VALUES(2028,'AccessEnum',2,194,'others'); +INSERT INTO entity_mentions VALUES(2029,'Sysinternals LLC - ClockRes 2',2,195,'others'); +INSERT INTO entity_mentions VALUES(2030,'ClockRes',2,195,'others'); +INSERT INTO entity_mentions VALUES(2031,'Sysinternals LLC - Coreinfo 3.21',2,196,'others'); +INSERT INTO entity_mentions VALUES(2032,'Coreinfo',2,196,'others'); +INSERT INTO entity_mentions VALUES(2033,'Sysinternals LLC - DiskExt 1.1',2,197,'others'); +INSERT INTO entity_mentions VALUES(2034,'DiskExt',2,197,'others'); +INSERT INTO entity_mentions VALUES(2035,'Sysinternals LLC - DiskMon 2.01',2,198,'others'); +INSERT INTO entity_mentions VALUES(2036,'DiskMon',2,198,'others'); +INSERT INTO entity_mentions VALUES(2037,'Hex2dec',2,199,'others'); +INSERT INTO entity_mentions VALUES(2038,'Sysinternals LLC - Hex2dec 1',2,199,'others'); +INSERT INTO entity_mentions VALUES(2039,'Sysinternals LLC - Junction 1.6',2,200,'others'); +INSERT INTO entity_mentions VALUES(2040,'Junction',2,200,'others'); +INSERT INTO entity_mentions VALUES(2041,'Sysinternals LLC - LDMDump 1.02',2,201,'others'); +INSERT INTO entity_mentions VALUES(2042,'LDMDump',2,201,'others'); +INSERT INTO entity_mentions VALUES(2043,'Sysinternals LLC - LoadOrder 1',2,202,'others'); +INSERT INTO entity_mentions VALUES(2044,'LoadOrder',2,202,'others'); +INSERT INTO entity_mentions VALUES(2045,'PipeList',2,203,'others'); +INSERT INTO entity_mentions VALUES(2046,'Sysinternals LLC - PipeList 1.01',2,203,'others'); +INSERT INTO entity_mentions VALUES(2047,'Process Explorer',2,204,'others'); +INSERT INTO entity_mentions VALUES(2048,'Sysinternals LLC - Process Explorer 16.5',2,204,'others'); +INSERT INTO entity_mentions VALUES(2049,'Sysinternals LLC - PsKill 1.15',2,205,'others'); +INSERT INTO entity_mentions VALUES(2050,'PsKill',2,205,'others'); +INSERT INTO entity_mentions VALUES(2051,'Sysinternals LLC - PsPasswd 1.23',2,206,'others'); +INSERT INTO entity_mentions VALUES(2052,'PsPasswd',2,206,'others'); +INSERT INTO entity_mentions VALUES(2053,'SDelete',2,207,'others'); +INSERT INTO entity_mentions VALUES(2054,'Sysinternals LLC - SDelete 1.61',2,207,'others'); +INSERT INTO entity_mentions VALUES(2055,'Sysinternals LLC - ShareEnum 1.6',2,208,'others'); +INSERT INTO entity_mentions VALUES(2056,'ShareEnum',2,208,'others'); +INSERT INTO entity_mentions VALUES(2057,'Sysinternals LLC - Sync 2.2',2,209,'others'); +INSERT INTO entity_mentions VALUES(2058,'Sync',2,209,'others'); +INSERT INTO entity_mentions VALUES(2059,'Sysinternals LLC - Sysinternals TCPView 3.5',2,210,'others'); +INSERT INTO entity_mentions VALUES(2060,'TCPView',2,210,'others'); +INSERT INTO entity_mentions VALUES(2061,'Sysinternals LLC - VMMap 3.11',2,211,'others'); +INSERT INTO entity_mentions VALUES(2062,'VMMap',2,211,'others'); +INSERT INTO entity_mentions VALUES(2063,'Sysinternals LLC - Whois 1.11',2,212,'others'); +INSERT INTO entity_mentions VALUES(2064,'Whois',2,212,'others'); +INSERT INTO entity_mentions VALUES(2065,'Tableau',2,213,'others'); +INSERT INTO entity_mentions VALUES(2066,'TCL',9,365,'others'); +INSERT INTO entity_mentions VALUES(2067,'TCPLink Enterprise Server 6',2,214,'others'); +INSERT INTO entity_mentions VALUES(2068,'(Canon IT Solutions) TCPLink Enterprise Server 6',2,214,'others'); +INSERT INTO entity_mentions VALUES(2069,'TERADATA',2,215,'others'); +INSERT INTO entity_mentions VALUES(2070,'Teradata hors Radia',2,215,'others'); +INSERT INTO entity_mentions VALUES(2071,'Teradata QS Server',2,216,'others'); +INSERT INTO entity_mentions VALUES(2072,'TERADATA QUERY SCHEDULER SERVER VERSION 15',2,216,'others'); +INSERT INTO entity_mentions VALUES(2073,'TIBCO Business Works',2,217,'others'); +INSERT INTO entity_mentions VALUES(2074,'Tibco BW',2,217,'others'); +INSERT INTO entity_mentions VALUES(2075,'BusinessWorks',2,217,'others'); +INSERT INTO entity_mentions VALUES(2076,'TIBCO Business Works (BW)',2,217,'others'); +INSERT INTO entity_mentions VALUES(2077,'Integration Manager',5,481,'others'); +INSERT INTO entity_mentions VALUES(2078,'Tibco-IM',5,481,'others'); +INSERT INTO entity_mentions VALUES(2079,'Tibco Integration Manager',5,481,'others'); +INSERT INTO entity_mentions VALUES(2080,'Tibco InConcert',2,218,'others'); +INSERT INTO entity_mentions VALUES(2081,'TIBCO Rendezvous (RV)',2,219,'others'); +INSERT INTO entity_mentions VALUES(2082,'TIBCO Rendezvous',2,219,'others'); +INSERT INTO entity_mentions VALUES(2083,'Tivoli Access Manager (TAM)',2,220,'others'); +INSERT INTO entity_mentions VALUES(2084,'Tivoli Access Manager 6.1',2,220,'others'); +INSERT INTO entity_mentions VALUES(2085,'TortoiseCVS',2,221,'others'); +INSERT INTO entity_mentions VALUES(2086,'TortoiseSVN',2,222,'others'); +INSERT INTO entity_mentions VALUES(2087,'TortoiseSVN 1.8',2,222,'others'); +INSERT INTO entity_mentions VALUES(2088,'TSQL',9,366,'others'); +INSERT INTO entity_mentions VALUES(2089,'Transact-SQL',9,366,'others'); +INSERT INTO entity_mentions VALUES(2090,'Trasact SQL',9,366,'others'); +INSERT INTO entity_mentions VALUES(2091,'T-SQL',9,366,'others'); +INSERT INTO entity_mentions VALUES(2092,'Transact SQL',9,366,'others'); +INSERT INTO entity_mentions VALUES(2093,'TSO/ISPF',2,223,'others'); +INSERT INTO entity_mentions VALUES(2094,'ispf',2,223,'others'); +INSERT INTO entity_mentions VALUES(2095,'TSO',2,223,'others'); +INSERT INTO entity_mentions VALUES(2096,'TSO ISPF',2,223,'others'); +INSERT INTO entity_mentions VALUES(2097,'TWS zCentric 8.4',2,224,'others'); +INSERT INTO entity_mentions VALUES(2098,'TWS Zcentric',2,224,'others'); +INSERT INTO entity_mentions VALUES(2099,'TypeScript',9,367,'others'); +INSERT INTO entity_mentions VALUES(2100,'UltiDev Web Server Pro (UWS)',8,282,'others'); +INSERT INTO entity_mentions VALUES(2101,'UltiDev Web Server Pro',8,282,'others'); +INSERT INTO entity_mentions VALUES(2102,'UltiDev Web Server Pro 2',8,282,'others'); +INSERT INTO entity_mentions VALUES(2103,'UltiDev Cassini Pro',8,282,'others'); +INSERT INTO entity_mentions VALUES(2104,'Uniface',2,225,'others'); +INSERT INTO entity_mentions VALUES(2105,'Unix',6,578,'others'); +INSERT INTO entity_mentions VALUES(2106,'IBM AIX 6.1 6100 64 Bit',6,445,'others'); +INSERT INTO entity_mentions VALUES(2107,'AIX 7.1 7100-04-06-1806',6,445,'others'); +INSERT INTO entity_mentions VALUES(2108,'AIX-6',6,445,'others'); +INSERT INTO entity_mentions VALUES(2109,'AIX Enterprise',6,445,'others'); +INSERT INTO entity_mentions VALUES(2110,'IBM AIX',6,445,'others'); +INSERT INTO entity_mentions VALUES(2111,'AIX7.1.0.0',6,445,'others'); +INSERT INTO entity_mentions VALUES(2112,'AIX 7100-05-03-1838',6,445,'others'); +INSERT INTO entity_mentions VALUES(2113,'IBM - AIX Standard Edition 7.1',6,445,'others'); +INSERT INTO entity_mentions VALUES(2114,'IBM AIX 5.3, SERVICE PACK TL12 SP08',6,445,'others'); +INSERT INTO entity_mentions VALUES(2115,'AIX7.2.0.0',6,445,'others'); +INSERT INTO entity_mentions VALUES(2116,'AIX 6.1.0.0.09',6,445,'others'); +INSERT INTO entity_mentions VALUES(2117,'AIX 7.2.0.0',6,445,'others'); +INSERT INTO entity_mentions VALUES(2118,'AIX 5.3 5300-12-07-1241',6,445,'others'); +INSERT INTO entity_mentions VALUES(2119,'AIX 6.1.9.101',6,445,'others'); +INSERT INTO entity_mentions VALUES(2120,'AIX 5.3.0.0',6,445,'others'); +INSERT INTO entity_mentions VALUES(2121,'AIX 7.1',6,445,'others'); +INSERT INTO entity_mentions VALUES(2122,'AIX 7.1 7100-05-03-1846',6,445,'others'); +INSERT INTO entity_mentions VALUES(2123,'AIX 5.3.0.0.08',6,445,'others'); +INSERT INTO entity_mentions VALUES(2124,'AIX 6.1 6100-09-09-1717',6,445,'others'); +INSERT INTO entity_mentions VALUES(2125,'AIX 7.1 7100-04-01-1543',6,445,'others'); +INSERT INTO entity_mentions VALUES(2126,'AIX 6100-09-09-1717',6,445,'others'); +INSERT INTO entity_mentions VALUES(2127,'IBM AIX 6.1 Enterprise 64 Bit',6,445,'others'); +INSERT INTO entity_mentions VALUES(2128,'AIX 7.1.0.0',6,445,'others'); +INSERT INTO entity_mentions VALUES(2129,'IBM AIX 7.1 x',6,445,'others'); +INSERT INTO entity_mentions VALUES(2130,'AIX 7.1 7100-05-03-1838',6,445,'others'); +INSERT INTO entity_mentions VALUES(2131,'AIX7.2',6,445,'others'); +INSERT INTO entity_mentions VALUES(2132,'AIX 6.1 6100-09-12-1838',6,445,'others'); +INSERT INTO entity_mentions VALUES(2133,'AIX (Linux)',6,445,'others'); +INSERT INTO entity_mentions VALUES(2134,'IBM - AIX Express Edition 7.1',6,445,'others'); +INSERT INTO entity_mentions VALUES(2135,'AIX 5.3.0.0.12',6,445,'others'); +INSERT INTO entity_mentions VALUES(2136,'AIX',6,445,'others'); +INSERT INTO entity_mentions VALUES(2137,'IBM AIX 6.1 6100 32 Bit',6,445,'others'); +INSERT INTO entity_mentions VALUES(2138,'AIX: 7.2',6,445,'others'); +INSERT INTO entity_mentions VALUES(2139,'AIX 6.1',6,445,'others'); +INSERT INTO entity_mentions VALUES(2140,'AIX 5.3',6,445,'others'); +INSERT INTO entity_mentions VALUES(2141,'IBM AIX 5.3 5300 64 Bit',6,445,'others'); +INSERT INTO entity_mentions VALUES(2142,'AIX 5.2.0.0.09',6,445,'others'); +INSERT INTO entity_mentions VALUES(2143,'AIX 5.0',6,445,'others'); +INSERT INTO entity_mentions VALUES(2144,'AIX 7100-05-03-1846',6,445,'others'); +INSERT INTO entity_mentions VALUES(2145,'AIX 7.2 7200-03-03-1914',6,445,'others'); +INSERT INTO entity_mentions VALUES(2146,'AIX6.1.0.0',6,445,'others'); +INSERT INTO entity_mentions VALUES(2147,'IBM AIX 7.1 7100 64 Bit',6,445,'others'); +INSERT INTO entity_mentions VALUES(2148,'AIX 7.1 7100-05-04-1914',6,445,'others'); +INSERT INTO entity_mentions VALUES(2149,'IBM AIX 5.x',6,445,'others'); +INSERT INTO entity_mentions VALUES(2150,'AIX 6.1.0.0',6,445,'others'); +INSERT INTO entity_mentions VALUES(2151,'AIX 7.1.5.16',6,445,'others'); +INSERT INTO entity_mentions VALUES(2152,'AIX 6.1.0.0 UNIX LPAR',6,445,'others'); +INSERT INTO entity_mentions VALUES(2153,'AIX 5300-12-07-1241',6,445,'others'); +INSERT INTO entity_mentions VALUES(2154,'IBM AIX 5.3, SERVICE PACK TL12 SP01',6,445,'others'); +INSERT INTO entity_mentions VALUES(2155,'IBM - AIX 6.1.0.0',6,445,'others'); +INSERT INTO entity_mentions VALUES(2156,'IBM AIX 6.1x',6,445,'others'); +INSERT INTO entity_mentions VALUES(2157,'AIX7.1',6,445,'others'); +INSERT INTO entity_mentions VALUES(2158,'AIX 7100-04-05-1720',6,445,'others'); +INSERT INTO entity_mentions VALUES(2159,'AIX Express',6,445,'others'); +INSERT INTO entity_mentions VALUES(2160,'IBM AIX 64 Bit',6,445,'others'); +INSERT INTO entity_mentions VALUES(2161,'AIX Standard',6,445,'others'); +INSERT INTO entity_mentions VALUES(2162,'AIX 6.1.8.16',6,445,'others'); +INSERT INTO entity_mentions VALUES(2163,'FreeBSD (64-bit)',6,447,'others'); +INSERT INTO entity_mentions VALUES(2164,'FreeBSD',6,447,'others'); +INSERT INTO entity_mentions VALUES(2165,'FreeBSD 8.X',6,447,'others'); +INSERT INTO entity_mentions VALUES(2166,'FreeBSD 8.4',6,447,'others'); +INSERT INTO entity_mentions VALUES(2167,'Sun Solaris 10 OS',6,448,'others'); +INSERT INTO entity_mentions VALUES(2168,'Solaris 11.2 SPARC',6,448,'others'); +INSERT INTO entity_mentions VALUES(2169,'Solaris UNIX',6,448,'others'); +INSERT INTO entity_mentions VALUES(2170,'Unix Servers (Solaris',6,448,'others'); +INSERT INTO entity_mentions VALUES(2171,'Oracle Solaris 11.3 SPARC',6,448,'others'); +INSERT INTO entity_mentions VALUES(2172,'SUN 5.10',6,448,'others'); +INSERT INTO entity_mentions VALUES(2173,'SOLARIS 10',6,448,'others'); +INSERT INTO entity_mentions VALUES(2174,'Sun Solaris',6,448,'others'); +INSERT INTO entity_mentions VALUES(2175,'Solaris 5.10 (Generic_150400-61)',6,448,'others'); +INSERT INTO entity_mentions VALUES(2176,'Solaris 5.10 (Generic_150400-62)',6,448,'others'); +INSERT INTO entity_mentions VALUES(2177,'Solaris (Sun OS 5.9)',6,448,'others'); +INSERT INTO entity_mentions VALUES(2178,'Solaris 5.10 (Generic_150400-55)',6,448,'others'); +INSERT INTO entity_mentions VALUES(2179,'SUNOS 5.10',6,448,'others'); +INSERT INTO entity_mentions VALUES(2180,'Sun Solaris - 5.10',6,448,'others'); +INSERT INTO entity_mentions VALUES(2181,'Solaris 10 (SunOS 5.10)',6,448,'others'); +INSERT INTO entity_mentions VALUES(2182,'Oracle Solaris',6,448,'others'); +INSERT INTO entity_mentions VALUES(2183,'Unix - SunOS - 5.10 Generic_147147-26',6,448,'others'); +INSERT INTO entity_mentions VALUES(2184,'Solaris 1 (SPARC)',6,448,'others'); +INSERT INTO entity_mentions VALUES(2185,'SUN OS',6,448,'others'); +INSERT INTO entity_mentions VALUES(2186,'solaris',6,448,'others'); +INSERT INTO entity_mentions VALUES(2187,'SunSolaris 10.0',6,448,'others'); +INSERT INTO entity_mentions VALUES(2188,'SOLARIS 9',6,448,'others'); +INSERT INTO entity_mentions VALUES(2189,'SunOS',6,448,'others'); +INSERT INTO entity_mentions VALUES(2190,'SUN 5.9',6,448,'others'); +INSERT INTO entity_mentions VALUES(2191,'SOLARIS 8',6,448,'others'); +INSERT INTO entity_mentions VALUES(2192,'SunOS 5.1',6,448,'others'); +INSERT INTO entity_mentions VALUES(2193,'SunOS 5.11',6,448,'others'); +INSERT INTO entity_mentions VALUES(2194,'Oracle Solaris 10',6,448,'others'); +INSERT INTO entity_mentions VALUES(2195,'Sun Solaris 10',6,448,'others'); +INSERT INTO entity_mentions VALUES(2196,'HPUX 11i V1',6,449,'others'); +INSERT INTO entity_mentions VALUES(2197,'HP-UX 11.31',6,449,'others'); +INSERT INTO entity_mentions VALUES(2198,'HPUX 11i V3',6,449,'others'); +INSERT INTO entity_mentions VALUES(2199,'HP/UXB.11.23',6,449,'others'); +INSERT INTO entity_mentions VALUES(2200,'HPUX B.11.31',6,449,'others'); +INSERT INTO entity_mentions VALUES(2201,'HPUX 11',6,449,'others'); +INSERT INTO entity_mentions VALUES(2202,'hp-ux',6,449,'others'); +INSERT INTO entity_mentions VALUES(2203,'HPUX 11.23',6,449,'others'); +INSERT INTO entity_mentions VALUES(2204,'HP-UX B.11.31',6,449,'others'); +INSERT INTO entity_mentions VALUES(2205,'HPUX 11.31',6,449,'others'); +INSERT INTO entity_mentions VALUES(2206,'HP-UX 11.23',6,449,'others'); +INSERT INTO entity_mentions VALUES(2207,'HP-UX B.11.00',6,449,'others'); +INSERT INTO entity_mentions VALUES(2208,'HP-UX B.11.23',6,449,'others'); +INSERT INTO entity_mentions VALUES(2209,'HP-UX B.11.11',6,449,'others'); +INSERT INTO entity_mentions VALUES(2210,'HP 10.20',6,449,'others'); +INSERT INTO entity_mentions VALUES(2211,'HP Unix',6,449,'others'); +INSERT INTO entity_mentions VALUES(2212,'HP UX',6,449,'others'); +INSERT INTO entity_mentions VALUES(2213,'HP-UX 11.11',6,449,'others'); +INSERT INTO entity_mentions VALUES(2214,'HPUX',6,449,'others'); +INSERT INTO entity_mentions VALUES(2215,'HPUX-11i V3',6,449,'others'); +INSERT INTO entity_mentions VALUES(2216,'HP-UX B.10.20',6,449,'others'); +INSERT INTO entity_mentions VALUES(2217,'HP/UXB.11.31',6,449,'others'); +INSERT INTO entity_mentions VALUES(2218,'HP-UX 10.20',6,449,'others'); +INSERT INTO entity_mentions VALUES(2219,'Visual Basic .Net',9,368,'others'); +INSERT INTO entity_mentions VALUES(2220,'VB.NET',9,368,'others'); +INSERT INTO entity_mentions VALUES(2221,'VB Script',9,369,'others'); +INSERT INTO entity_mentions VALUES(2222,'VBscript',9,369,'others'); +INSERT INTO entity_mentions VALUES(2223,'NetManage-ViewNow',2,226,'others'); +INSERT INTO entity_mentions VALUES(2224,'ViewNow X Server',2,226,'others'); +INSERT INTO entity_mentions VALUES(2225,'Virtual I/O Server',2,227,'others'); +INSERT INTO entity_mentions VALUES(2226,'VIO 2.2.0.10',2,227,'others'); +INSERT INTO entity_mentions VALUES(2227,'VIOS',2,227,'others'); +INSERT INTO entity_mentions VALUES(2228,'visibroker',2,228,'others'); +INSERT INTO entity_mentions VALUES(2229,'VB6',9,370,'others'); +INSERT INTO entity_mentions VALUES(2230,'VB 6.0',9,370,'others'); +INSERT INTO entity_mentions VALUES(2231,'visualbasic',9,370,'others'); +INSERT INTO entity_mentions VALUES(2232,'VB',9,370,'others'); +INSERT INTO entity_mentions VALUES(2233,'VISUAL BASIC 6',9,370,'others'); +INSERT INTO entity_mentions VALUES(2234,'Visual Basic',9,370,'others'); +INSERT INTO entity_mentions VALUES(2235,'Visual Basic 6.0',9,370,'others'); +INSERT INTO entity_mentions VALUES(2236,'Visusal Basic',9,370,'others'); +INSERT INTO entity_mentions VALUES(2237,'Visual Basic for Applications (VBA)',9,371,'others'); +INSERT INTO entity_mentions VALUES(2238,'Visual Basic for Applications',9,371,'others'); +INSERT INTO entity_mentions VALUES(2239,'VBA',9,371,'others'); +INSERT INTO entity_mentions VALUES(2240,'Access VB',9,371,'others'); +INSERT INTO entity_mentions VALUES(2241,'Visual FoxPro',9,372,'others'); +INSERT INTO entity_mentions VALUES(2242,'vfoxpro',9,372,'others'); +INSERT INTO entity_mentions VALUES(2243,'VisualForce',10,509,'others'); +INSERT INTO entity_mentions VALUES(2244,'ESXi',3,568,'others'); +INSERT INTO entity_mentions VALUES(2245,'ESXi 5.1',3,568,'others'); +INSERT INTO entity_mentions VALUES(2246,'VM ESXi 5.1',3,568,'others'); +INSERT INTO entity_mentions VALUES(2247,'VM ESXi 6.0',3,568,'others'); +INSERT INTO entity_mentions VALUES(2248,'VM ESXi 5.5',3,568,'others'); +INSERT INTO entity_mentions VALUES(2249,'VMWARE ESXI SERVER 5.5',3,568,'others'); +INSERT INTO entity_mentions VALUES(2250,'VM ESXi 5.0.0',3,568,'others'); +INSERT INTO entity_mentions VALUES(2251,'VMware ESXi 5.5.0',3,568,'others'); +INSERT INTO entity_mentions VALUES(2252,'VM ESXi 6.5',3,568,'others'); +INSERT INTO entity_mentions VALUES(2253,'VMWare ESX',3,568,'others'); +INSERT INTO entity_mentions VALUES(2254,'VM ESXi 5.0',3,568,'others'); +INSERT INTO entity_mentions VALUES(2255,'VMWare ESXi',3,568,'others'); +INSERT INTO entity_mentions VALUES(2256,'VMWARE ESXI SERVER 5.1',3,568,'others'); +INSERT INTO entity_mentions VALUES(2257,'VMware Appliance',3,569,'others'); +INSERT INTO entity_mentions VALUES(2258,'VMware Server',3,569,'others'); +INSERT INTO entity_mentions VALUES(2259,'VMware Solution Exchange Marketplace (VSX)',2,229,'others'); +INSERT INTO entity_mentions VALUES(2260,'VSX',2,229,'others'); +INSERT INTO entity_mentions VALUES(2261,'VMware Solution Exchange Marketplace',2,229,'others'); +INSERT INTO entity_mentions VALUES(2262,'VMware - VMware Tools 10.2',2,230,'others'); +INSERT INTO entity_mentions VALUES(2263,'VMware Tools',2,230,'others'); +INSERT INTO entity_mentions VALUES(2264,'VMware - VMware vCenter Server 5.5',2,231,'others'); +INSERT INTO entity_mentions VALUES(2265,'VMware vCenter',2,231,'others'); +INSERT INTO entity_mentions VALUES(2266,'VoiceXML',9,373,'others'); +INSERT INTO entity_mentions VALUES(2267,'VXML',9,373,'others'); +INSERT INTO entity_mentions VALUES(2268,'WebFOCUS',2,232,'others'); +INSERT INTO entity_mentions VALUES(2269,'Web Focus',2,232,'others'); +INSERT INTO entity_mentions VALUES(2270,'FOCEXEC',2,232,'others'); +INSERT INTO entity_mentions VALUES(2271,'Web Logic Integration',2,233,'others'); +INSERT INTO entity_mentions VALUES(2272,'WLI 8',2,233,'others'); +INSERT INTO entity_mentions VALUES(2273,'WebLogic Integration',2,233,'others'); +INSERT INTO entity_mentions VALUES(2274,'Web Logic Integration 9.2.0.0',2,233,'others'); +INSERT INTO entity_mentions VALUES(2275,'webMethods Integration Server',8,283,'others'); +INSERT INTO entity_mentions VALUES(2276,'WebMethods',8,283,'others'); +INSERT INTO entity_mentions VALUES(2277,'Webmethods 9.7',8,283,'others'); +INSERT INTO entity_mentions VALUES(2278,'WAS 7',8,284,'others'); +INSERT INTO entity_mentions VALUES(2279,'websphere 8.0.0.4',8,284,'others'); +INSERT INTO entity_mentions VALUES(2280,'IBM WEBSPHERE APPLICATION SERVER VERSION 6.1.0',8,284,'others'); +INSERT INTO entity_mentions VALUES(2281,'WEBSPHERE APPLICATION SERVER - BASE VERSION 8.5.5',8,284,'others'); +INSERT INTO entity_mentions VALUES(2282,'WEBSPHERE APPLICATION SERVER 8',8,284,'others'); +INSERT INTO entity_mentions VALUES(2283,'Websphere Application Server 6.x',8,284,'others'); +INSERT INTO entity_mentions VALUES(2284,'websphere',8,284,'others'); +INSERT INTO entity_mentions VALUES(2285,'WebSphere Application Server 9.0',8,284,'others'); +INSERT INTO entity_mentions VALUES(2286,'IBM WebSphere Application Server Network Deployment, 8.0.0.5',8,284,'others'); +INSERT INTO entity_mentions VALUES(2287,'WebSphere Application Server (WAS)',8,284,'others'); +INSERT INTO entity_mentions VALUES(2288,'IBM WebSphere Application Server Network Deployment 7',8,284,'others'); +INSERT INTO entity_mentions VALUES(2289,'WebSphere Application Server 8.5.1',8,284,'others'); +INSERT INTO entity_mentions VALUES(2290,'WAS ND8.5',8,284,'others'); +INSERT INTO entity_mentions VALUES(2291,'WAS7',8,284,'others'); +INSERT INTO entity_mentions VALUES(2292,'WebSphere Application Server 5.1',8,284,'others'); +INSERT INTO entity_mentions VALUES(2293,'WebSphere Application Server 8.5.5.6',8,284,'others'); +INSERT INTO entity_mentions VALUES(2294,'WebSphere Application Server 5.0',8,284,'others'); +INSERT INTO entity_mentions VALUES(2295,'WebSphere Application Server 8.0',8,284,'others'); +INSERT INTO entity_mentions VALUES(2296,'IBM WebSphere 8.5',8,284,'others'); +INSERT INTO entity_mentions VALUES(2297,'Websphere 9.0',8,284,'others'); +INSERT INTO entity_mentions VALUES(2298,'WebSphere 7.0.0.27',8,284,'others'); +INSERT INTO entity_mentions VALUES(2299,'IBM - WebSphere Application Server - Base 8.5',8,284,'others'); +INSERT INTO entity_mentions VALUES(2300,'WebSphere Application Server 8.5',8,284,'others'); +INSERT INTO entity_mentions VALUES(2301,'WEBSPHERE APPLICATION SERVER 8.5.5',8,284,'others'); +INSERT INTO entity_mentions VALUES(2302,'WebSphere Application Server 8.5 (WAS)',8,284,'others'); +INSERT INTO entity_mentions VALUES(2303,'Websphere AS (JVM)',8,284,'others'); +INSERT INTO entity_mentions VALUES(2304,'WebSphere App Server',8,284,'others'); +INSERT INTO entity_mentions VALUES(2305,'WebSphere Application Server 6.1 (WAS)',8,284,'others'); +INSERT INTO entity_mentions VALUES(2306,'WEBSPHERE APPLICATION SERVER',8,284,'others'); +INSERT INTO entity_mentions VALUES(2307,'WAS 6.1',8,284,'others'); +INSERT INTO entity_mentions VALUES(2308,'WebSphere 8.0.0.4',8,284,'others'); +INSERT INTO entity_mentions VALUES(2309,'WEBSPHERE APPLICATION SERVER 6.1',8,284,'others'); +INSERT INTO entity_mentions VALUES(2310,'IBM WebSphere',8,284,'others'); +INSERT INTO entity_mentions VALUES(2311,'Websphere Application Server 8.5.5.11',8,284,'others'); +INSERT INTO entity_mentions VALUES(2312,'WebSphere Application Server 8.5.5.8',8,284,'others'); +INSERT INTO entity_mentions VALUES(2313,'IBM WebSphere Application Server 8.5',8,284,'others'); +INSERT INTO entity_mentions VALUES(2314,'Websphere (WAS7)',8,284,'others'); +INSERT INTO entity_mentions VALUES(2315,'IBM WebSphere Application',8,284,'others'); +INSERT INTO entity_mentions VALUES(2316,'WAS 6.x',8,284,'others'); +INSERT INTO entity_mentions VALUES(2317,'WAS',8,284,'others'); +INSERT INTO entity_mentions VALUES(2318,'IBM OpenStack Liberty',8,285,'others'); +INSERT INTO entity_mentions VALUES(2319,'IBM WebSphere Liberty',8,285,'others'); +INSERT INTO entity_mentions VALUES(2320,'Open Liberty',8,285,'others'); +INSERT INTO entity_mentions VALUES(2321,'IBM Open Liberty',8,285,'others'); +INSERT INTO entity_mentions VALUES(2322,'WebSphere Liberty',8,285,'others'); +INSERT INTO entity_mentions VALUES(2323,'IBM WebSphere Application Server Liberty',8,285,'others'); +INSERT INTO entity_mentions VALUES(2324,'IBM WAS Liberty',8,285,'others'); +INSERT INTO entity_mentions VALUES(2325,'WebSphere Application Server Liberty',8,285,'others'); +INSERT INTO entity_mentions VALUES(2326,'WAS Liberty',8,285,'others'); +INSERT INTO entity_mentions VALUES(2327,'IBM Cloud WebSphere Liberty',8,285,'others'); +INSERT INTO entity_mentions VALUES(2328,'OpenStack Liberty',8,285,'others'); +INSERT INTO entity_mentions VALUES(2329,'WebSphere Commerce Suite (WCS)',2,234,'others'); +INSERT INTO entity_mentions VALUES(2330,'WebSphere Commerce',2,234,'others'); +INSERT INTO entity_mentions VALUES(2331,'WMB 6.1',2,235,'others'); +INSERT INTO entity_mentions VALUES(2332,'WebSphere Message Broker v6.0',2,235,'others'); +INSERT INTO entity_mentions VALUES(2333,'WebSphere Message Broker',2,235,'others'); +INSERT INTO entity_mentions VALUES(2334,'WebSphere Portal Version 6.1',8,286,'others'); +INSERT INTO entity_mentions VALUES(2335,'WebSphere Portal Enable Limited Use 6.1',8,286,'others'); +INSERT INTO entity_mentions VALUES(2336,'WebSphere Portal Server 6.0',8,286,'others'); +INSERT INTO entity_mentions VALUES(2337,'WebSphere Portal Enable 6.1',8,286,'others'); +INSERT INTO entity_mentions VALUES(2338,'WebSphere Portal Extend 6.1',8,286,'others'); +INSERT INTO entity_mentions VALUES(2339,'WebSphere Portal Server',8,286,'others'); +INSERT INTO entity_mentions VALUES(2340,'WebSphere Portal Limited Use 6.1',8,286,'others'); +INSERT INTO entity_mentions VALUES(2341,'WebSphere Portal Extend Limited Use 6.1',8,286,'others'); +INSERT INTO entity_mentions VALUES(2342,'Websphere Process Server',8,287,'others'); +INSERT INTO entity_mentions VALUES(2343,'Websphere Process Server 8.5',8,287,'others'); +INSERT INTO entity_mentions VALUES(2344,'Wherescape Red',2,236,'others'); +INSERT INTO entity_mentions VALUES(2345,'Windchill 11.1',2,237,'others'); +INSERT INTO entity_mentions VALUES(2346,'Windchill',2,237,'others'); +INSERT INTO entity_mentions VALUES(2347,'windows nt',6,580,'others'); +INSERT INTO entity_mentions VALUES(2348,'Windows',6,580,'others'); +INSERT INTO entity_mentions VALUES(2349,'Windows OS: Windows NT',6,580,'others'); +INSERT INTO entity_mentions VALUES(2350,'Windows NT 6.1 Service Pack 1',6,580,'others'); +INSERT INTO entity_mentions VALUES(2351,'Windows NT 6.1',6,580,'others'); +INSERT INTO entity_mentions VALUES(2352,'Windows NT 4.0',6,580,'others'); +INSERT INTO entity_mentions VALUES(2353,'Microsoft Windows NT 6.1',6,580,'others'); +INSERT INTO entity_mentions VALUES(2354,'Window',6,580,'others'); +INSERT INTO entity_mentions VALUES(2355,'Microsoft Windows NT 4.0',6,580,'others'); +INSERT INTO entity_mentions VALUES(2356,'WINDOWS6.1.7601',6,580,'others'); +INSERT INTO entity_mentions VALUES(2357,'Windows NT 6.1Windows NT 6.1',6,580,'others'); +INSERT INTO entity_mentions VALUES(2358,'Windows Indexing Service',2,238,'others'); +INSERT INTO entity_mentions VALUES(2359,'IIS Index Search Server',2,238,'others'); +INSERT INTO entity_mentions VALUES(2360,'WTS',2,239,'others'); +INSERT INTO entity_mentions VALUES(2361,'Windows Terminal Server',2,239,'others'); +INSERT INTO entity_mentions VALUES(2362,'Windows Terminal Server (WTS)',2,239,'others'); +INSERT INTO entity_mentions VALUES(2363,'Windows 7 Standard',6,451,'others'); +INSERT INTO entity_mentions VALUES(2364,'WINDOWS 10 SERVER STANDARD EDITION X64',6,451,'others'); +INSERT INTO entity_mentions VALUES(2365,'Microsoft Windows 7 (64-bit)',6,451,'others'); +INSERT INTO entity_mentions VALUES(2366,'Microsoft Windows XP Professional (32-bit)',6,451,'others'); +INSERT INTO entity_mentions VALUES(2367,'Windows 7 Professional x64',6,451,'others'); +INSERT INTO entity_mentions VALUES(2368,'Microsoft Microsoft Windows Entreprise',6,451,'others'); +INSERT INTO entity_mentions VALUES(2369,'Microsoft Windows 2000',6,451,'others'); +INSERT INTO entity_mentions VALUES(2370,'Microsoft Windows 10',6,451,'others'); +INSERT INTO entity_mentions VALUES(2371,'MS Microsoft Windows 7',6,451,'others'); +INSERT INTO entity_mentions VALUES(2372,'Microsoft Windows 7 Professional',6,451,'others'); +INSERT INTO entity_mentions VALUES(2373,'Microsoft Microsoft Windows 7 Enterprise',6,451,'others'); +INSERT INTO entity_mentions VALUES(2374,'Microsoft Windows 10 Enterprise',6,451,'others'); +INSERT INTO entity_mentions VALUES(2375,'Win Desktop',6,451,'others'); +INSERT INTO entity_mentions VALUES(2376,'Windows 10 Pro',6,451,'others'); +INSERT INTO entity_mentions VALUES(2377,'Windows 10',6,451,'others'); +INSERT INTO entity_mentions VALUES(2378,'Windows 7 Ultimate',6,451,'others'); +INSERT INTO entity_mentions VALUES(2379,'Microsoft Windows 8 (64-bit)',6,451,'others'); +INSERT INTO entity_mentions VALUES(2380,'Microsoft Windows XP',6,451,'others'); +INSERT INTO entity_mentions VALUES(2381,'Windows 10 Enterprise',6,451,'others'); +INSERT INTO entity_mentions VALUES(2382,'Windows XP',6,451,'others'); +INSERT INTO entity_mentions VALUES(2383,'Windows 10 Professional',6,451,'others'); +INSERT INTO entity_mentions VALUES(2384,'Windows 7',6,451,'others'); +INSERT INTO entity_mentions VALUES(2385,'Microsoft Windows 10 (64-bit)',6,451,'others'); +INSERT INTO entity_mentions VALUES(2386,'Win 7',6,451,'others'); +INSERT INTO entity_mentions VALUES(2387,'windowsxp',6,451,'others'); +INSERT INTO entity_mentions VALUES(2388,'Microsoft Windows Unknown',6,451,'others'); +INSERT INTO entity_mentions VALUES(2389,'Windows 7 Enterprise',6,451,'others'); +INSERT INTO entity_mentions VALUES(2390,'Windows XP Professional',6,451,'others'); +INSERT INTO entity_mentions VALUES(2391,'Windows 7 Professional',6,451,'others'); +INSERT INTO entity_mentions VALUES(2392,'Window XP',6,451,'others'); +INSERT INTO entity_mentions VALUES(2393,'Microsoft Windows 7 Enterprise',6,451,'others'); +INSERT INTO entity_mentions VALUES(2394,'Microsoft Windows 7 - SOE',6,451,'others'); +INSERT INTO entity_mentions VALUES(2395,'Windows 7 Enterprise Edition',6,451,'others'); +INSERT INTO entity_mentions VALUES(2396,'Windows 8',6,451,'others'); +INSERT INTO entity_mentions VALUES(2397,'Microsoft Windows 7',6,451,'others'); +INSERT INTO entity_mentions VALUES(2398,'Microsoft Windows 7 (32-bit)',6,451,'others'); +INSERT INTO entity_mentions VALUES(2399,'Windows Embedded Standard 7',6,451,'others'); +INSERT INTO entity_mentions VALUES(2400,'Win10',6,451,'others'); +INSERT INTO entity_mentions VALUES(2401,'Windows 2003',6,451,'others'); +INSERT INTO entity_mentions VALUES(2402,'Windows Server 2012 R9',6,452,'others'); +INSERT INTO entity_mentions VALUES(2403,'Windows 2003 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2404,'Windows 2008 Enterprise R2 x64',6,452,'others'); +INSERT INTO entity_mentions VALUES(2405,'Windows Server 2003 SE x64',6,452,'others'); +INSERT INTO entity_mentions VALUES(2406,'Microsoft Windows Server 2008 R2 Standard Service Pack 1, 64-bit version',6,452,'others'); +INSERT INTO entity_mentions VALUES(2407,'WINDOWS SERVER 2004',6,452,'others'); +INSERT INTO entity_mentions VALUES(2408,'WINDOWS 2008R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2409,'Microsoft Windows Server 2008 Standard Editio',6,452,'others'); +INSERT INTO entity_mentions VALUES(2410,'MICROSOFT WINDOWS NT 2003',6,452,'others'); +INSERT INTO entity_mentions VALUES(2411,'Windows Server 2008 R2 Enterprise',6,452,'others'); +INSERT INTO entity_mentions VALUES(2412,'Windows Server 2012 R3',6,452,'others'); +INSERT INTO entity_mentions VALUES(2413,'WINDOWS 2003 R2 SERVER STANDARD EDITION',6,452,'others'); +INSERT INTO entity_mentions VALUES(2414,'Windows Server 28 - i386',6,452,'others'); +INSERT INTO entity_mentions VALUES(2415,'Microsoft Microsoft Windows Server 2016 Datacenter',6,452,'others'); +INSERT INTO entity_mentions VALUES(2416,'Microsoft(R) Windows(R) Server 2003, Enterprise Edition Service Pack 2, 32-bit version',6,452,'others'); +INSERT INTO entity_mentions VALUES(2417,'Windows Server 2008 Enterprise x64 R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2418,'Windows Server 2016',6,452,'others'); +INSERT INTO entity_mentions VALUES(2419,'Microsoft - Windows server 2012 - R2 - Service Pack 1',6,452,'others'); +INSERT INTO entity_mentions VALUES(2420,'Microsoft(R) Windows(R) Server 2003, Standard Edition R2 Service Pack 2, 32-bit version',6,452,'others'); +INSERT INTO entity_mentions VALUES(2421,'Microsoft Windows Server 2008 R2 Standard x64 Edition',6,452,'others'); +INSERT INTO entity_mentions VALUES(2422,'WINDOWS6.1.7601 Server 2008 R2 Ent x64 SP 1',6,452,'others'); +INSERT INTO entity_mentions VALUES(2423,'Windows Server 2012 R2 Standard (Core)',6,452,'others'); +INSERT INTO entity_mentions VALUES(2424,'WINDOWS 2008 R2 SERVER STANDARD EDITION X64',6,452,'others'); +INSERT INTO entity_mentions VALUES(2425,'Windows Server 2012 R26',6,452,'others'); +INSERT INTO entity_mentions VALUES(2426,'Microsoft(R) Windows(R) Server 2003 Standard x64 Edition R2 Service Pack 2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2427,'Windows 2008 Enterprise 32-bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2428,'Microsoft Windows Server 2003 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2429,'Windows Server 2012 R2 Std',6,452,'others'); +INSERT INTO entity_mentions VALUES(2430,'Windows 2003 R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2431,'Windows 2008 R2 Enterprise 64 Bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2432,'Windows Server 2012 R2 Standard 64 bit Edition',6,452,'others'); +INSERT INTO entity_mentions VALUES(2433,'Microsoft Windows Server 2003 Enterprise Edition',6,452,'others'); +INSERT INTO entity_mentions VALUES(2434,'Microsoft Windows Server 2000 Advanced',6,452,'others'); +INSERT INTO entity_mentions VALUES(2435,'Microsoft Windows Server 2012 R2 St',6,452,'others'); +INSERT INTO entity_mentions VALUES(2436,'Windows 2008 R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2437,'Windows 2012 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2438,'Windows Server 2008 R2 (64 bits)',6,452,'others'); +INSERT INTO entity_mentions VALUES(2439,'Windows X-Server',6,452,'others'); +INSERT INTO entity_mentions VALUES(2440,'Windows 2008 R2 Standard 6.1.7601 Service Pack 1',6,452,'others'); +INSERT INTO entity_mentions VALUES(2441,'Windows Server 2003 Standard (32-bit)',6,452,'others'); +INSERT INTO entity_mentions VALUES(2442,'Windows 2008 Standard x64',6,452,'others'); +INSERT INTO entity_mentions VALUES(2443,'Microsoft Windows Server 2008 R2 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2444,'Microsoft Windows Storage Server 2012 R2 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2445,'Windows Server 2003 (64-bit)',6,452,'others'); +INSERT INTO entity_mentions VALUES(2446,'Windows 2012 R2 Standard 64-Bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2447,'Windows Server 212 R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2448,'Windows Server 2012 (64-bit)',6,452,'others'); +INSERT INTO entity_mentions VALUES(2449,'Windows Server 2012 Standard R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2450,'Windows Server 2017',6,452,'others'); +INSERT INTO entity_mentions VALUES(2451,'Windows Server 2000 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2452,'Windows Server 2003 Enterprise R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2453,'Windows Server 2003 SP2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2454,'Microsoft Windows 2000 Server',6,452,'others'); +INSERT INTO entity_mentions VALUES(2455,'w2k12',6,452,'others'); +INSERT INTO entity_mentions VALUES(2456,'WINDOWS 2013',6,452,'others'); +INSERT INTO entity_mentions VALUES(2457,'WINDOWS 2016 SE 64 BIT',6,452,'others'); +INSERT INTO entity_mentions VALUES(2458,'Windows Server 2008 R2 64-bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2459,'Microsoft - Windows 2012',6,452,'others'); +INSERT INTO entity_mentions VALUES(2460,'Microsoft Windows Server 2016',6,452,'others'); +INSERT INTO entity_mentions VALUES(2461,'Microsoft Windows Server 2000 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2462,'Windows Server 2012 R12',6,452,'others'); +INSERT INTO entity_mentions VALUES(2463,'Window Server 2003',6,452,'others'); +INSERT INTO entity_mentions VALUES(2464,'WINDOWS SERVER 2008 ENTERPRISE X64 6.0',6,452,'others'); +INSERT INTO entity_mentions VALUES(2465,'Windows server 2008R2 Enterprise',6,452,'others'); +INSERT INTO entity_mentions VALUES(2466,'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition R2 Service Pack 2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2467,'MICROSOFT WINDOWS 2008 TPM',6,452,'others'); +INSERT INTO entity_mentions VALUES(2468,'Microsoft Windows Server 2012 Standardx64 Edition',6,452,'others'); +INSERT INTO entity_mentions VALUES(2469,'MICROSOFT WINDOWS STD 2008',6,452,'others'); +INSERT INTO entity_mentions VALUES(2470,'Microsoft(R) Windows(R) Server 2003, Standard Edition',6,452,'others'); +INSERT INTO entity_mentions VALUES(2471,'Windows Server 2012 R23',6,452,'others'); +INSERT INTO entity_mentions VALUES(2472,'WINDOWS 6.3.9600 Server 2012 R2 Std x64',6,452,'others'); +INSERT INTO entity_mentions VALUES(2473,'Windows 2008 R2 Standard 64 Bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2474,'Windows Server 2008 SP1',6,452,'others'); +INSERT INTO entity_mentions VALUES(2475,'Windows server 2008 R2 standard Service Pack1',6,452,'others'); +INSERT INTO entity_mentions VALUES(2476,'MICROSOFT WINDOWS STD 2008 TPM',6,452,'others'); +INSERT INTO entity_mentions VALUES(2477,'Microsoft Windows Server 2008 Standard Edition',6,452,'others'); +INSERT INTO entity_mentions VALUES(2478,'Windows 2012 64 Bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2479,'MICROSOFT WINDOWS NT 2003 ENT',6,452,'others'); +INSERT INTO entity_mentions VALUES(2480,'Windows Server 2012 R2 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2481,'Windows Server 2016 Standard 64 bit Edition',6,452,'others'); +INSERT INTO entity_mentions VALUES(2482,'MICROSOFT WINDOWS 2012',6,452,'others'); +INSERT INTO entity_mentions VALUES(2483,'Windows Server 2003 Standard R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2484,'Windows 2003 Standard5.2.3790',6,452,'others'); +INSERT INTO entity_mentions VALUES(2485,'Windows Server 2012 R4',6,452,'others'); +INSERT INTO entity_mentions VALUES(2486,'Windows Server 2012 R7',6,452,'others'); +INSERT INTO entity_mentions VALUES(2487,'Windows Server 2012 R17',6,452,'others'); +INSERT INTO entity_mentions VALUES(2488,'Windows 2012 R',6,452,'others'); +INSERT INTO entity_mentions VALUES(2489,'Windows Server 2012 R8',6,452,'others'); +INSERT INTO entity_mentions VALUES(2490,'WINDOWS SERVER 2012 R2 DATACENTER',6,452,'others'); +INSERT INTO entity_mentions VALUES(2491,'Microsoft Windows Server 2003 R2 Enterprise',6,452,'others'); +INSERT INTO entity_mentions VALUES(2492,'Windows 2008 Enterprise 32 Bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2493,'MICROSOFT WINDOWS 2008 ENT',6,452,'others'); +INSERT INTO entity_mentions VALUES(2494,'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition Service Pack 2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2495,'Windows 2012 R2 Standard 6.3.9600',6,452,'others'); +INSERT INTO entity_mentions VALUES(2496,'Windows 2000 Server',6,452,'others'); +INSERT INTO entity_mentions VALUES(2497,'Windows Server 2012 R20',6,452,'others'); +INSERT INTO entity_mentions VALUES(2498,'Windows Server 2000',6,452,'others'); +INSERT INTO entity_mentions VALUES(2499,'Windows Server 2003 R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2500,'Windows Server 2008 Service Pack 2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2501,'Windows 2016 Datacenter',6,452,'others'); +INSERT INTO entity_mentions VALUES(2502,'Microsoft(R) Windows(R) Server 2003, Standard Edition Service Pack 2, 32-bit version',6,452,'others'); +INSERT INTO entity_mentions VALUES(2503,'Microsoft Windows Server 2016 Datacenter',6,452,'others'); +INSERT INTO entity_mentions VALUES(2504,'WINDOWS SERVER 2008 R2 STANDARD 6.1',6,452,'others'); +INSERT INTO entity_mentions VALUES(2505,'Microsoft - Windows Server 2008 R2 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2506,'Microsoft Windows Server 2012 (64-bit) - Server 2012 R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2507,'Microsoft Windows Server 2016 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2508,'Windows Server 2008 R2 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2509,'Windows 2016 Datacenter10.0.14393',6,452,'others'); +INSERT INTO entity_mentions VALUES(2510,'Windows Server 2008 64-Bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2511,'windows server 2008 r2 ent',6,452,'others'); +INSERT INTO entity_mentions VALUES(2512,'Windows Server 212',6,452,'others'); +INSERT INTO entity_mentions VALUES(2513,'windows6.3.9600',6,452,'others'); +INSERT INTO entity_mentions VALUES(2514,'Windows 2012 R2 Standard 64 Bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2515,'Microsoft Windows Server 2000 R2 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2516,'windows6.3.9600 server 2012 r2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2517,'Windows 2008 Enterprise',6,452,'others'); +INSERT INTO entity_mentions VALUES(2518,'Microsoft Microsoft Windows Server 2016 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2519,'Windows 2003 Server Service Pack 2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2520,'Windows Server 2012 R16',6,452,'others'); +INSERT INTO entity_mentions VALUES(2521,'Window server 2008 R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2522,'Microsoft Windows Server 2003 Enterprise Edition Version 5.2.3790 [Build 3790]',6,452,'others'); +INSERT INTO entity_mentions VALUES(2523,'Windows 2003 Server R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2524,'Windows Server 2012 R21',6,452,'others'); +INSERT INTO entity_mentions VALUES(2525,'Microsoft Windows Server 2003 R2 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2526,'Windows Server 2012 R6',6,452,'others'); +INSERT INTO entity_mentions VALUES(2527,'Windows Server 2012 R27',6,452,'others'); +INSERT INTO entity_mentions VALUES(2528,'Windows 2008 Standard without Hyper-V6.0.6003',6,452,'others'); +INSERT INTO entity_mentions VALUES(2529,'WINDOWS SERVER 2012 R2 - Server 2012 R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2530,'Windows 2008 R2 Server',6,452,'others'); +INSERT INTO entity_mentions VALUES(2531,'Microsoft Windows Server 2003 Standard (32-bit)',6,452,'others'); +INSERT INTO entity_mentions VALUES(2532,'Windows 2012 R2 Datacenter',6,452,'others'); +INSERT INTO entity_mentions VALUES(2533,'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition R2 Service Pack 2, 64-bit version',6,452,'others'); +INSERT INTO entity_mentions VALUES(2534,'Windows Server 2018',6,452,'others'); +INSERT INTO entity_mentions VALUES(2535,'Windows 2008 Server',6,452,'others'); +INSERT INTO entity_mentions VALUES(2536,'WINDOWS6.3.9600 Server 2012 R2 DC x64',6,452,'others'); +INSERT INTO entity_mentions VALUES(2537,'Windows 2008 Standard 64-bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2538,'WINDOWS 6.1.7601 Server 2008 R2 Ent x64 SP 1',6,452,'others'); +INSERT INTO entity_mentions VALUES(2539,'WINDOWS SERVER 2012 R2 DATACENTER 6.3',6,452,'others'); +INSERT INTO entity_mentions VALUES(2540,'Microsoft Windows Server 2012',6,452,'others'); +INSERT INTO entity_mentions VALUES(2541,'Windows Server 2012',6,452,'others'); +INSERT INTO entity_mentions VALUES(2542,'Windows server Standard SP2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2543,'WINDOWS 2003 R2 SERVER ENTERPRISE EDITION',6,452,'others'); +INSERT INTO entity_mentions VALUES(2544,'Windows 2000',6,452,'others'); +INSERT INTO entity_mentions VALUES(2545,'W2K8R2 Standard 64 BIT',6,452,'others'); +INSERT INTO entity_mentions VALUES(2546,'Windows Server 2008 R2 Datacenter',6,452,'others'); +INSERT INTO entity_mentions VALUES(2547,'Windows 2008 Standard6.0.6003',6,452,'others'); +INSERT INTO entity_mentions VALUES(2548,'Windows2008 R2 Enterprise 64bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2549,'WINDOWS 2012 R2 SERVER STANDARD EDITION X64',6,452,'others'); +INSERT INTO entity_mentions VALUES(2550,'Windows Server 2000 Professional',6,452,'others'); +INSERT INTO entity_mentions VALUES(2551,'Microsoft Windows Server 2008 (64-bit)',6,452,'others'); +INSERT INTO entity_mentions VALUES(2552,'WINDOWS SERVER 2003 R2 ENTERPRISE 5.2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2553,'Win2008R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2554,'Microsoft Windows Server 2003 Web Edition (32-bit)',6,452,'others'); +INSERT INTO entity_mentions VALUES(2555,'Windows 2008 Standard 64 Bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2556,'Microsoft Windows Server 2008 R2 Enterprise Version 6.1.7601 [Build 7601]',6,452,'others'); +INSERT INTO entity_mentions VALUES(2557,'Windows Server 2003 Appliance',6,452,'others'); +INSERT INTO entity_mentions VALUES(2558,'Windows server 2012 R2 Standared',6,452,'others'); +INSERT INTO entity_mentions VALUES(2559,'Windows 2008 ENT R2 (64 bits)',6,452,'others'); +INSERT INTO entity_mentions VALUES(2560,'Windows Server 2003 (32-bit)',6,452,'others'); +INSERT INTO entity_mentions VALUES(2561,'Microsoft Windows Server 2003 Enterprise',6,452,'others'); +INSERT INTO entity_mentions VALUES(2562,'WIN2008R2 6.1.7601',6,452,'others'); +INSERT INTO entity_mentions VALUES(2563,'Microsoft Windows Server 2012 R2 Datacenter',6,452,'others'); +INSERT INTO entity_mentions VALUES(2564,'microsoft windows std 2012 tpm',6,452,'others'); +INSERT INTO entity_mentions VALUES(2565,'Windows Server 2012 R2 Standardx64',6,452,'others'); +INSERT INTO entity_mentions VALUES(2566,'microsoft windows 2008',6,452,'others'); +INSERT INTO entity_mentions VALUES(2567,'Microsoft Windows Server 2016 (64-bit)',6,452,'others'); +INSERT INTO entity_mentions VALUES(2568,'Windows 2008 Standard 32 Bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2569,'Microsoft Windows 2008 R2 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2570,'Microsoft Windows 2000 Server Service Pack 4',6,452,'others'); +INSERT INTO entity_mentions VALUES(2571,'Microsoft Windows Server 2003 Enterprise x64 Edition Version 5.2.3790 [Build 3790]',6,452,'others'); +INSERT INTO entity_mentions VALUES(2572,'Microsoft Windows Storage Server 2012 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2573,'Microsoft Windows Server 2003 Standard x64',6,452,'others'); +INSERT INTO entity_mentions VALUES(2574,'Window2008 R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2575,'Microsoft Windows NT Server Version 4.0.1381 [Build 1381]',6,452,'others'); +INSERT INTO entity_mentions VALUES(2576,'Windows Server 2003 Ent',6,452,'others'); +INSERT INTO entity_mentions VALUES(2577,'Windows Server 2000 Standard R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2578,'Windows 2008 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2579,'Microsoft Windows Server 2008 R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2580,'Microsoft Windows Server 2003 Standard Edition Version 5.2.3790 [Build 3790]',6,452,'others'); +INSERT INTO entity_mentions VALUES(2581,'Windows Server 2003;',6,452,'others'); +INSERT INTO entity_mentions VALUES(2582,'WS03',6,452,'others'); +INSERT INTO entity_mentions VALUES(2583,'WINDOWS 6.0.6002 Server 2008 Ent x64 SP 2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2584,'Windows 2008 Enterprise x64',6,452,'others'); +INSERT INTO entity_mentions VALUES(2585,'Microsoft Windows Server 2003',6,452,'others'); +INSERT INTO entity_mentions VALUES(2586,'Windows Server 2008 Enterprise',6,452,'others'); +INSERT INTO entity_mentions VALUES(2587,'Windows Server 2008 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2588,'windows server 2008 r2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2589,'Windows 2008 R2 Enterprise',6,452,'others'); +INSERT INTO entity_mentions VALUES(2590,'Windows Server 2003 Std 32-bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2591,'Windows 2008 R2 Standard 64bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2592,'Microsoft Windows Server 2008 (32-bit)',6,452,'others'); +INSERT INTO entity_mentions VALUES(2593,'MS WINDOWS SERVER 08',6,452,'others'); +INSERT INTO entity_mentions VALUES(2594,'Microsoft Windows 2003 R2 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2595,'Windows Server 2012 R25',6,452,'others'); +INSERT INTO entity_mentions VALUES(2596,'MICROSOFT WINDOWS NT 2003 TPM',6,452,'others'); +INSERT INTO entity_mentions VALUES(2597,'Win Server 2008',6,452,'others'); +INSERT INTO entity_mentions VALUES(2598,'Windows 2003 R2 Standard 64 Bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2599,'WINDOWS 5.2.3790 Server 2003 Ent SP 2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2600,'WIN2014',6,452,'others'); +INSERT INTO entity_mentions VALUES(2601,'Windows Server 2012 R19',6,452,'others'); +INSERT INTO entity_mentions VALUES(2602,'Microsoft Windows Server 2012 R2 Standard Version 6.3.9600 [Build 9600]',6,452,'others'); +INSERT INTO entity_mentions VALUES(2603,'Windows Server 2008 R2 Ent 64-bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2604,'Win 2012 R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2605,'Microsoft Windows Server 2008 Enterprise',6,452,'others'); +INSERT INTO entity_mentions VALUES(2606,'WINDOWS 6.3.9600 Server 2012 R2 DC x64',6,452,'others'); +INSERT INTO entity_mentions VALUES(2607,'Windows Server 2012 R24',6,452,'others'); +INSERT INTO entity_mentions VALUES(2608,'Win Server',6,452,'others'); +INSERT INTO entity_mentions VALUES(2609,'Windows 2008 Standard R2 x64',6,452,'others'); +INSERT INTO entity_mentions VALUES(2610,'Windows Server 2008 R2 Enterprise x64',6,452,'others'); +INSERT INTO entity_mentions VALUES(2611,'Windows server 2008 Dual processor Intel Xeon x5660 @2.80 GHz 6196 MB memory installed',6,452,'others'); +INSERT INTO entity_mentions VALUES(2612,'Windows2012',6,452,'others'); +INSERT INTO entity_mentions VALUES(2613,'Windows 2008 R2 Standard6.1.7601',6,452,'others'); +INSERT INTO entity_mentions VALUES(2614,'Windows 2016',6,452,'others'); +INSERT INTO entity_mentions VALUES(2615,'Windows 2008 R2 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2616,'Windows Server 2008 R2 64Bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2617,'Windows Server 2012 R14',6,452,'others'); +INSERT INTO entity_mentions VALUES(2618,'Windows Storage Server 2008 Standard R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2619,'Windows Server 2008 Standard R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2620,'Microsoft Windows Server 2003 (32-bit)',6,452,'others'); +INSERT INTO entity_mentions VALUES(2621,'Windows OS 2008 Server R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2622,'Microsoft Microsoft Windows Server 2008 R2 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2623,'Windows Server 28 R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2624,'WINDOWS 2003 SERVER ENTERPRISE EDITION',6,452,'others'); +INSERT INTO entity_mentions VALUES(2625,'Microsoft Windows Server 2003 (64-bit)',6,452,'others'); +INSERT INTO entity_mentions VALUES(2626,'Windows Server 2008 (32-bit)',6,452,'others'); +INSERT INTO entity_mentions VALUES(2627,'Windows Server 2003 Std 64-bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2628,'Windows 2012 R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2629,'Wintel',6,452,'others'); +INSERT INTO entity_mentions VALUES(2630,'Windows Server 2003',6,452,'others'); +INSERT INTO entity_mentions VALUES(2631,'Windows Server 2003 Enterprise',6,452,'others'); +INSERT INTO entity_mentions VALUES(2632,'Microsoft Windows Server 2012 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2633,'Windows 2000 Standard Server SP4',6,452,'others'); +INSERT INTO entity_mentions VALUES(2634,'WINDOWS6.3.9600 Server 2012 R2 Std x64',6,452,'others'); +INSERT INTO entity_mentions VALUES(2635,'Microsoft Windows 2000 Server Version 5.0.2195 [Build 2195]',6,452,'others'); +INSERT INTO entity_mentions VALUES(2636,'Microsoft Windows Server 2016 St',6,452,'others'); +INSERT INTO entity_mentions VALUES(2637,'WINDOWS SERVER 2008 ENTERPRISE 6.0',6,452,'others'); +INSERT INTO entity_mentions VALUES(2638,'Windows Server 2008 R2 Std',6,452,'others'); +INSERT INTO entity_mentions VALUES(2639,'Windows 2003 Enterprise5.2.3790',6,452,'others'); +INSERT INTO entity_mentions VALUES(2640,'WINDOWS 2012',6,452,'others'); +INSERT INTO entity_mentions VALUES(2641,'Windows 2008 R2 OS',6,452,'others'); +INSERT INTO entity_mentions VALUES(2642,'Microsoft Windows Server 2008 R2 Enterprise Service Pack 1, 64-bit version',6,452,'others'); +INSERT INTO entity_mentions VALUES(2643,'Windows Server 2008 Enterprise x64',6,452,'others'); +INSERT INTO entity_mentions VALUES(2644,'Windows 2003 Standard R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2645,'Windows 2008 R2 Enterprise6.1.7601',6,452,'others'); +INSERT INTO entity_mentions VALUES(2646,'Windows 2003 Standard 32 Bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2647,'WINDOWS SERVER 2003 APPLIANCE 5.2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2648,'Windows Server 2003 Std',6,452,'others'); +INSERT INTO entity_mentions VALUES(2649,'WS08R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2650,'Windows Storage Server 2012 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2651,'WINDOWS SERVER 2003 STANDARD 5.2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2652,'Windows 2008 Enterprise 64 Bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2653,'Microsoft Windows Server 2012 R2 for Microsoft Windows Server 2012 R2 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2654,'Windows Server 2000 Advanced',6,452,'others'); +INSERT INTO entity_mentions VALUES(2655,'Microsoft Windows Server 2008 R2 Enterprise x64 Edition',6,452,'others'); +INSERT INTO entity_mentions VALUES(2656,'WINDOWS 2008 R2 SERVER ENTERPRISE EDITION X64',6,452,'others'); +INSERT INTO entity_mentions VALUES(2657,'Windows Server 2008 32-bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2658,'Windows Server 2003 Web Edition',6,452,'others'); +INSERT INTO entity_mentions VALUES(2659,'WINDOWS SERVER 2012 R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2660,'Microsoft Windows 2012 R2 Server Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2661,'w2k8r2sp1',6,452,'others'); +INSERT INTO entity_mentions VALUES(2662,'Microsoft Windows Server 2008 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2663,'Windows Server 2003 Service Pack 2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2664,'Microsoft Windows Server 2008 R2 Standa',6,452,'others'); +INSERT INTO entity_mentions VALUES(2665,'Win 2003',6,452,'others'); +INSERT INTO entity_mentions VALUES(2666,'Windows Server 2012 R29',6,452,'others'); +INSERT INTO entity_mentions VALUES(2667,'Microsoft - Windows server 2008 - Service Pack 2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2668,'Microsoft Windows Server 2003 Enterprise x64',6,452,'others'); +INSERT INTO entity_mentions VALUES(2669,'Microsoft(R) Windows(R) Server 2003, Enterprise Edition R2 Service Pack 2, 32-bit version',6,452,'others'); +INSERT INTO entity_mentions VALUES(2670,'Windows 2012 R2 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2671,'WINDOWS SERVER 2012 R2 STANDARD 6.3',6,452,'others'); +INSERT INTO entity_mentions VALUES(2672,'Windows Server 2008 Enterprise R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2673,'Microsoft Windows Server 2008 R2 Enterprise',6,452,'others'); +INSERT INTO entity_mentions VALUES(2674,'Windows 2008 R2 Standard 64-bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2675,'Microsoft Windows Server 2008 R2 (64-bit)',6,452,'others'); +INSERT INTO entity_mentions VALUES(2676,'Windows 2003 Enterprise 32-bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2677,'Microsoft - Microsoft Windows Server 2012 for Microsoft Windows Server 2012 Standard 6.2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2678,'Windows 2012 Storage R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2679,'Windows server 2008 Dual processor Intel Xeon x5660 @2.80 GHz 4096 MB memory installed',6,452,'others'); +INSERT INTO entity_mentions VALUES(2680,'Microsoft - Windows Server 2012 R2 - 6.3',6,452,'others'); +INSERT INTO entity_mentions VALUES(2681,'Windows Server 2012 R5',6,452,'others'); +INSERT INTO entity_mentions VALUES(2682,'Microsoft Windows Server 2012 (64-bit)',6,452,'others'); +INSERT INTO entity_mentions VALUES(2683,'MICROSOFT WINDOWS NT 2003 ENT TPM',6,452,'others'); +INSERT INTO entity_mentions VALUES(2684,'Windows 2012 Server R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2685,'Windows 2016 Standard10.0.14393',6,452,'others'); +INSERT INTO entity_mentions VALUES(2686,'Microsoft Microsoft Windows Server 2012 R2 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2687,'Windows Server 2003 Ent 64-bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2688,'MICROSOFT WINDOWS 2003',6,452,'others'); +INSERT INTO entity_mentions VALUES(2689,'WINDOWS 2003 SERVER ENTERPRISE EDITION X64',6,452,'others'); +INSERT INTO entity_mentions VALUES(2690,'Windows 2012 Standard R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2691,'WINDOWS 2000 ADVANCED SERVER 5.0',6,452,'others'); +INSERT INTO entity_mentions VALUES(2692,'Microsoft Windows NT 4.0 Server',6,452,'others'); +INSERT INTO entity_mentions VALUES(2693,'Windows Server2012 R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2694,'Win Server 2008 R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2695,'Microsoft Windows Server 2008 Enterprise Service Pack 2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2696,'MICROSOFT WINDOWS STD 2012 TPM',6,452,'others'); +INSERT INTO entity_mentions VALUES(2697,'Windows 2003 Enterprise 32 Bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2698,'Windows 2008 Enterprise R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2699,'Windows 2008',6,452,'others'); +INSERT INTO entity_mentions VALUES(2700,'Microsoft Microsoft Windows 2008 R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2701,'WINDOWS 2003 SERVER STANDARD EDITION',6,452,'others'); +INSERT INTO entity_mentions VALUES(2702,'windows server',6,452,'others'); +INSERT INTO entity_mentions VALUES(2703,'Microsoft Windows Server 2008',6,452,'others'); +INSERT INTO entity_mentions VALUES(2704,'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition',6,452,'others'); +INSERT INTO entity_mentions VALUES(2705,'Win Server 2012',6,452,'others'); +INSERT INTO entity_mentions VALUES(2706,'Windows 2016 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2707,'Microsoft Windows Server 2003 Standard (64-bit)',6,452,'others'); +INSERT INTO entity_mentions VALUES(2708,'Microsoft Windows Server 2008 R2 Standard. Service Pack 1',6,452,'others'); +INSERT INTO entity_mentions VALUES(2709,'Windows 2000 Server Service Pack 4',6,452,'others'); +INSERT INTO entity_mentions VALUES(2710,'Windows Server 2003 R2 Ent 64-bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2711,'Windows Server 2012 r2 64bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2712,'Windows 2008 Enterprise 64-bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2713,'Microsoft Windows Server 2012 R2 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2714,'Windows Server 2012 R15',6,452,'others'); +INSERT INTO entity_mentions VALUES(2715,'Windows 2003 Standard 5.2.3790 Service Pack 2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2716,'Windows 2012 Standard6.2.9200',6,452,'others'); +INSERT INTO entity_mentions VALUES(2717,'MICROSOFT WINDOWS 2016 TPM',6,452,'others'); +INSERT INTO entity_mentions VALUES(2718,'Microsoft Windows Server 2016 or later (64-bit)',6,452,'others'); +INSERT INTO entity_mentions VALUES(2719,'Windows Storage Server 2012 Standard R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2720,'Windows 2003 Enterprise',6,452,'others'); +INSERT INTO entity_mentions VALUES(2721,'Windows Server 2016 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2722,'Microsoft Windows Server 2012 R2 Standardx64 Edition',6,452,'others'); +INSERT INTO entity_mentions VALUES(2723,'Windows 2008 R2 Enterprise 64-bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2724,'Windows 2003 Server',6,452,'others'); +INSERT INTO entity_mentions VALUES(2725,'Windows 2012 R2 Standard6.3.9600',6,452,'others'); +INSERT INTO entity_mentions VALUES(2726,'Windows Server Threshold, 64-bit (Build 14393)',6,452,'others'); +INSERT INTO entity_mentions VALUES(2727,'Windows Server 2012 R28',6,452,'others'); +INSERT INTO entity_mentions VALUES(2728,'Windows Server 2012 R13',6,452,'others'); +INSERT INTO entity_mentions VALUES(2729,'Microsoft Microsoft Windows Server 2008 R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2730,'Microsoft Windows Server 2008 R2 Standard Service Pack 1',6,452,'others'); +INSERT INTO entity_mentions VALUES(2731,'Windows Server 2003 32-bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2732,'Microsoft Windows Server 2008 R2 Enterprise Version 6.1.7600 [Build 7600]',6,452,'others'); +INSERT INTO entity_mentions VALUES(2733,'Microsoft - Windows server 2003 - Service Pack 2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2734,'Windows 2008 Standard R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2735,'MicrosoftWindows Server 2008 R2 (64-bit)',6,452,'others'); +INSERT INTO entity_mentions VALUES(2736,'windows6.3',6,452,'others'); +INSERT INTO entity_mentions VALUES(2737,'Microsoft - Windows Server 2012 R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2738,'Windows 2016 64 Bit',6,452,'others'); +INSERT INTO entity_mentions VALUES(2739,'Windows Server 2003 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2740,'Windows Server NT',6,452,'others'); +INSERT INTO entity_mentions VALUES(2741,'Windows Server 2012 Std',6,452,'others'); +INSERT INTO entity_mentions VALUES(2742,'Microsoft Windows Server 2008 R2 Standard Version 6.1.7601 [Build 7601]',6,452,'others'); +INSERT INTO entity_mentions VALUES(2743,'Windows Server 2012 R18',6,452,'others'); +INSERT INTO entity_mentions VALUES(2744,'Windows 2008 Enterprise6.0.6003',6,452,'others'); +INSERT INTO entity_mentions VALUES(2745,'Microsoft(R) Windows(R) Server 2003, Standard Edition Service Pack 1, 32-bit version',6,452,'others'); +INSERT INTO entity_mentions VALUES(2746,'Windows Server 2012 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2747,'Windows Server 2019 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2748,'windows server 2008 R2 SP1',6,452,'others'); +INSERT INTO entity_mentions VALUES(2749,'Win 2012',6,452,'others'); +INSERT INTO entity_mentions VALUES(2750,'Win2012',6,452,'others'); +INSERT INTO entity_mentions VALUES(2751,'Win2012R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2752,'windows server threshold',6,452,'others'); +INSERT INTO entity_mentions VALUES(2753,'win2008',6,452,'others'); +INSERT INTO entity_mentions VALUES(2754,'Windows 2003 Standard x64',6,452,'others'); +INSERT INTO entity_mentions VALUES(2755,'Microsoft Windows Storage Server 2008 R2 Standard',6,452,'others'); +INSERT INTO entity_mentions VALUES(2756,'Windows Server 28',6,452,'others'); +INSERT INTO entity_mentions VALUES(2757,'Microsoft Windows Server 2008 Standard Service Pack 2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2758,'Windows Server 2008 R2 (64-bit)',6,452,'others'); +INSERT INTO entity_mentions VALUES(2759,'Windows Server 2008 R2 with Service Pack 1',6,452,'others'); +INSERT INTO entity_mentions VALUES(2760,'Windows Server 2012 R11',6,452,'others'); +INSERT INTO entity_mentions VALUES(2761,'Windows Server 2012 R10',6,452,'others'); +INSERT INTO entity_mentions VALUES(2762,'Windows Server 2012 R30',6,452,'others'); +INSERT INTO entity_mentions VALUES(2763,'WINDOWS 2016 STANDARD EDITION',6,452,'others'); +INSERT INTO entity_mentions VALUES(2764,'Windows Server 2012 R22',6,452,'others'); +INSERT INTO entity_mentions VALUES(2765,'Windows Server 2003 Standard (64-bit)',6,452,'others'); +INSERT INTO entity_mentions VALUES(2766,'WINDOWS SERVER 2008 R2 ENTERPRISE 6.1',6,452,'others'); +INSERT INTO entity_mentions VALUES(2767,'Microsoft Windows Server 2008 R2 (64-bit) - Server 2008 R2',6,452,'others'); +INSERT INTO entity_mentions VALUES(2768,'Microsoft Windows Server 2008 R2 Enterprise Service Pack 1',6,452,'others'); +INSERT INTO entity_mentions VALUES(2769,'Windows Server 2008',6,452,'others'); +INSERT INTO entity_mentions VALUES(2770,'(WingArc) SVF 9.1',2,240,'others'); +INSERT INTO entity_mentions VALUES(2771,'WingArc SVF',2,240,'others'); +INSERT INTO entity_mentions VALUES(2772,'WinMerge',2,241,'others'); +INSERT INTO entity_mentions VALUES(2773,'WinMerge.org - WinMerge 2.14',2,241,'others'); +INSERT INTO entity_mentions VALUES(2774,'RARLab - WinRAR 5.31',2,242,'others'); +INSERT INTO entity_mentions VALUES(2775,'WinRAR',2,242,'others'); +INSERT INTO entity_mentions VALUES(2776,'WinSCP.net - WinSCP 5.11',2,243,'others'); +INSERT INTO entity_mentions VALUES(2777,'WinSCP',2,243,'others'); +INSERT INTO entity_mentions VALUES(2778,'Wise',2,244,'others'); +INSERT INTO entity_mentions VALUES(2779,'Wise Package Studio',2,244,'others'); +INSERT INTO entity_mentions VALUES(2780,'Wordpress',2,245,'others'); +INSERT INTO entity_mentions VALUES(2781,'XAMPP',2,246,'others'); +INSERT INTO entity_mentions VALUES(2782,'Xbase++',9,374,'others'); +INSERT INTO entity_mentions VALUES(2783,'Xbase++ v1.9',9,374,'others'); +INSERT INTO entity_mentions VALUES(2784,'ZAP BI Application Test Server',2,247,'others'); +INSERT INTO entity_mentions VALUES(2785,'ZAP BI Application Stage Server',2,247,'others'); +INSERT INTO entity_mentions VALUES(2786,'ZAP BI',2,247,'others'); +INSERT INTO entity_mentions VALUES(2787,'ZAP BI Application Server',2,247,'others'); +INSERT INTO entity_mentions VALUES(2788,'ZMQ',2,248,'others'); +INSERT INTO entity_mentions VALUES(2789,'ZeroMQ',2,248,'others'); +INSERT INTO entity_mentions VALUES(2790,'Zerto Vritual Appliance',2,249,'others'); +INSERT INTO entity_mentions VALUES(2791,'Zerto Virtual Replication',2,249,'others'); +INSERT INTO entity_mentions VALUES(2792,'Fedora',6,453,'others'); +INSERT INTO entity_mentions VALUES(2793,'Amazon Linux',6,454,'others'); +INSERT INTO entity_mentions VALUES(2794,'Oracle RTD',8,289,'others'); +INSERT INTO entity_mentions VALUES(2795,'Oracle Real-Time Decisions (RTD)',8,289,'others'); +INSERT INTO entity_mentions VALUES(2796,'Oracle Real-Time Decisions',8,289,'others'); +INSERT INTO entity_mentions VALUES(2797,'PowerHA',2,250,'others'); +INSERT INTO entity_mentions VALUES(2798,'IBM High Availability Cluster Multiprocessing',2,250,'others'); +INSERT INTO entity_mentions VALUES(2799,'IBM PowerHA',2,250,'others'); +INSERT INTO entity_mentions VALUES(2800,'IBM PowerHA SystemMirror',2,250,'others'); +INSERT INTO entity_mentions VALUES(2801,'Tivoli Netcool/OMNIbus',2,251,'others'); +INSERT INTO entity_mentions VALUES(2802,'OMNIbus',2,251,'others'); +INSERT INTO entity_mentions VALUES(2803,'Tivoli Netcool',2,251,'others'); +INSERT INTO entity_mentions VALUES(2804,'IBM ILOG Views',2,252,'others'); +INSERT INTO entity_mentions VALUES(2805,'ILOG Views',2,252,'others'); +INSERT INTO entity_mentions VALUES(2806,'IBM ILOG CPLEX',2,253,'others'); +INSERT INTO entity_mentions VALUES(2807,'ILOG CPLEX',2,253,'others'); +INSERT INTO entity_mentions VALUES(2808,'IBM ILOG Jviews',2,254,'others'); +INSERT INTO entity_mentions VALUES(2809,'ILOG Jviews',2,254,'others'); +INSERT INTO entity_mentions VALUES(2810,'IBM ILOG Elixir',2,255,'others'); +INSERT INTO entity_mentions VALUES(2811,'ILOG Elixir',2,255,'others'); +INSERT INTO entity_mentions VALUES(2812,'ILOG Supply Chain Apps',2,256,'others'); +INSERT INTO entity_mentions VALUES(2813,'IBM ILOG Supply Chain Apps',2,256,'others'); +INSERT INTO entity_mentions VALUES(2814,'ILOG Solver',2,257,'others'); +INSERT INTO entity_mentions VALUES(2815,'Websphere ILOG JRules BRMS',2,601,'others'); +INSERT INTO entity_mentions VALUES(2816,'ILOG JRules BRMS',2,601,'others'); +INSERT INTO entity_mentions VALUES(2817,'Application Lifecycle Management',1,511,'others'); +INSERT INTO entity_mentions VALUES(2818,'ALM',1,511,'others'); +INSERT INTO entity_mentions VALUES(2819,'Application Lifecycle Management (ALM)',1,511,'others'); +INSERT INTO entity_mentions VALUES(2820,'Assembler Language',1,512,'others'); +INSERT INTO entity_mentions VALUES(2821,'Assembler',1,512,'others'); +INSERT INTO entity_mentions VALUES(2822,'BMS',1,513,'others'); +INSERT INTO entity_mentions VALUES(2823,'Batch Management Software (BMS)',1,513,'others'); +INSERT INTO entity_mentions VALUES(2824,'Batch Management Software',1,513,'others'); +INSERT INTO entity_mentions VALUES(2825,'Business Object Reports',1,514,'others'); +INSERT INTO entity_mentions VALUES(2826,'Common Gateway Interface (CGI)',1,515,'others'); +INSERT INTO entity_mentions VALUES(2827,'Common Gateway Interface',1,515,'others'); +INSERT INTO entity_mentions VALUES(2828,'CGI',1,515,'others'); +INSERT INTO entity_mentions VALUES(2829,'Compopent Object Model',1,516,'others'); +INSERT INTO entity_mentions VALUES(2830,'COM',1,516,'others'); +INSERT INTO entity_mentions VALUES(2831,'Compopent Object Model (COM)',1,516,'others'); +INSERT INTO entity_mentions VALUES(2832,'Common Object Request Broker Architecture (CORBA)',1,517,'others'); +INSERT INTO entity_mentions VALUES(2833,'Common Object Request Broker Architecture',1,517,'others'); +INSERT INTO entity_mentions VALUES(2834,'CORBA',1,517,'others'); +INSERT INTO entity_mentions VALUES(2835,'CORBA Interface Definition Language (CORBA IDL)',1,518,'others'); +INSERT INTO entity_mentions VALUES(2836,'CORBA Interface Definition Language',1,518,'others'); +INSERT INTO entity_mentions VALUES(2837,'CORBA IDL',1,518,'others'); +INSERT INTO entity_mentions VALUES(2838,'Data Control Language',1,519,'others'); +INSERT INTO entity_mentions VALUES(2839,'DCL',1,519,'others'); +INSERT INTO entity_mentions VALUES(2840,'Database',1,520,'others'); +INSERT INTO entity_mentions VALUES(2841,'DB',1,520,'others'); +INSERT INTO entity_mentions VALUES(2842,'DB (database)',1,520,'others'); +INSERT INTO entity_mentions VALUES(2843,'EDI',1,521,'others'); +INSERT INTO entity_mentions VALUES(2844,'Electronic Data Interchange',1,521,'others'); +INSERT INTO entity_mentions VALUES(2845,'Electronic Data Interchange (EDI)',1,521,'others'); +INSERT INTO entity_mentions VALUES(2846,'Web Server',1,522,'others'); +INSERT INTO entity_mentions VALUES(2847,'Java-based Document Object Model for XML',1,523,'others'); +INSERT INTO entity_mentions VALUES(2848,'Java-based Document Object Model for XML (JDOM)',1,523,'others'); +INSERT INTO entity_mentions VALUES(2849,'JDOM',1,523,'others'); +INSERT INTO entity_mentions VALUES(2850,'Lightweight Directory Access Protocol',1,524,'others'); +INSERT INTO entity_mentions VALUES(2851,'LDAP',1,524,'others'); +INSERT INTO entity_mentions VALUES(2852,'Lightweight Directory Access Protocol (LDAP)',1,524,'others'); +INSERT INTO entity_mentions VALUES(2853,'Open Database Connectivity (ODBC)',1,525,'others'); +INSERT INTO entity_mentions VALUES(2854,'Open Database Connectivity',1,525,'others'); +INSERT INTO entity_mentions VALUES(2855,'ODBC',1,525,'others'); +INSERT INTO entity_mentions VALUES(2856,'Order Management System (OMS)',1,526,'others'); +INSERT INTO entity_mentions VALUES(2857,'Order Management System',1,526,'others'); +INSERT INTO entity_mentions VALUES(2858,'OMS',1,526,'others'); +INSERT INTO entity_mentions VALUES(2859,'Oracle Web Services',1,527,'others'); +INSERT INTO entity_mentions VALUES(2860,'Reporting Services',5,473,'others'); +INSERT INTO entity_mentions VALUES(2861,'REST',1,529,'others'); +INSERT INTO entity_mentions VALUES(2862,'Representational State Transfer',1,529,'others'); +INSERT INTO entity_mentions VALUES(2863,'Representational State Transfer (REST)',1,529,'others'); +INSERT INTO entity_mentions VALUES(2864,'Service-Oriented Architecture',1,530,'others'); +INSERT INTO entity_mentions VALUES(2865,'Service-Oriented Architecture (SOA)',1,530,'others'); +INSERT INTO entity_mentions VALUES(2866,'SOA',1,530,'others'); +INSERT INTO entity_mentions VALUES(2867,'Simple Object Access Protocol (SOAP)',1,531,'others'); +INSERT INTO entity_mentions VALUES(2868,'SOAP',1,531,'others'); +INSERT INTO entity_mentions VALUES(2869,'Simple Object Access Protocol',1,531,'others'); +INSERT INTO entity_mentions VALUES(2870,'Sturctured Query Language',1,572,'others'); +INSERT INTO entity_mentions VALUES(2871,'SQL',1,572,'others'); +INSERT INTO entity_mentions VALUES(2872,'YAML',1,533,'others'); +INSERT INTO entity_mentions VALUES(2873,'MVC',1,574,'others'); +INSERT INTO entity_mentions VALUES(2874,'Application Server',1,535,'others'); +INSERT INTO entity_mentions VALUES(2875,'Cloud',1,536,'others'); +INSERT INTO entity_mentions VALUES(2876,'Competency and Quality Assurance Server',1,537,'others'); +INSERT INTO entity_mentions VALUES(2877,'Device Provisioning Engines',1,538,'others'); +INSERT INTO entity_mentions VALUES(2878,'Device Provisioning Engines (DPE)',1,538,'others'); +INSERT INTO entity_mentions VALUES(2879,'DPE',1,538,'others'); +INSERT INTO entity_mentions VALUES(2880,'E-business solution',1,539,'others'); +INSERT INTO entity_mentions VALUES(2881,'Ebusiness solution',1,539,'others'); +INSERT INTO entity_mentions VALUES(2882,'ESB',1,540,'others'); +INSERT INTO entity_mentions VALUES(2883,'Enterprise Service Bus',1,540,'others'); +INSERT INTO entity_mentions VALUES(2884,'Enterprise Service Bus(ESB)',1,540,'others'); +INSERT INTO entity_mentions VALUES(2885,'File Server',1,541,'others'); +INSERT INTO entity_mentions VALUES(2886,'General Ledger',1,542,'others'); +INSERT INTO entity_mentions VALUES(2887,'HTTP client',1,543,'others'); +INSERT INTO entity_mentions VALUES(2888,'HTTP Server',1,522,'others'); +INSERT INTO entity_mentions VALUES(2889,'Integrated Safe System of Work',1,545,'others'); +INSERT INTO entity_mentions VALUES(2890,'ISSOW',1,545,'others'); +INSERT INTO entity_mentions VALUES(2891,'Integrated Safe System of Work (ISSOW)',1,545,'others'); +INSERT INTO entity_mentions VALUES(2892,'Internet Exchange Point - Full Stack (ixp-ft)',1,546,'others'); +INSERT INTO entity_mentions VALUES(2893,'IMAP',1,547,'others'); +INSERT INTO entity_mentions VALUES(2894,'Internet Message Access Protocol',1,547,'others'); +INSERT INTO entity_mentions VALUES(2895,'Internet Message Access Protocol (IMAP)',1,547,'others'); +INSERT INTO entity_mentions VALUES(2896,'JSON',1,548,'others'); +INSERT INTO entity_mentions VALUES(2897,'KVS Application Server',1,549,'others'); +INSERT INTO entity_mentions VALUES(2898,'KVS File Server',1,550,'others'); +INSERT INTO entity_mentions VALUES(2899,'KVS Proxy Server',1,551,'others'); +INSERT INTO entity_mentions VALUES(2900,'mainframe',1,552,'others'); +INSERT INTO entity_mentions VALUES(2901,'Manufacturing Execution System',1,553,'others'); +INSERT INTO entity_mentions VALUES(2902,'Manufacturing Execution System (MES)',1,553,'others'); +INSERT INTO entity_mentions VALUES(2903,'MES',1,553,'others'); +INSERT INTO entity_mentions VALUES(2904,'Mobile',1,554,'others'); +INSERT INTO entity_mentions VALUES(2905,'NonSQL',1,555,'others'); +INSERT INTO entity_mentions VALUES(2906,'SaaS',1,556,'others'); +INSERT INTO entity_mentions VALUES(2907,'Storage Area Network',1,557,'others'); +INSERT INTO entity_mentions VALUES(2908,'Storage Area Network (SAN)',1,557,'others'); +INSERT INTO entity_mentions VALUES(2909,'SAN',1,557,'others'); +INSERT INTO entity_mentions VALUES(2910,'Supplier Registration System',1,558,'others'); +INSERT INTO entity_mentions VALUES(2911,'Supplier Registration Application Server',1,558,'others'); +INSERT INTO entity_mentions VALUES(2912,'Supplier Registration System Application Server',1,558,'others'); +INSERT INTO entity_mentions VALUES(2913,'Virtual Appliance',1,559,'others'); +INSERT INTO entity_mentions VALUES(2914,'Webtop',1,560,'others'); +INSERT INTO entity_mentions VALUES(2915,'Proxy Server',1,561,'others'); +INSERT INTO entity_mentions VALUES(2916,'Application/Utility',1,562,'others'); +INSERT INTO entity_mentions VALUES(2917,'Utility',1,562,'others'); +INSERT INTO entity_mentions VALUES(2918,'SQLite',2,258,'others'); +INSERT INTO entity_mentions VALUES(2919,'OpenBSD',6,590,'others'); +INSERT INTO entity_mentions VALUES(2920,'z/VSE',6,591,'others'); +INSERT INTO entity_mentions VALUES(2921,'Z/Virtual System Environment',6,591,'others'); +INSERT INTO entity_mentions VALUES(2922,'VSE',6,591,'others'); +INSERT INTO entity_mentions VALUES(2923,'DOS/VSE',6,591,'others'); +INSERT INTO entity_mentions VALUES(2924,'Microsoft Disk Operating System',6,593,'others'); +INSERT INTO entity_mentions VALUES(2925,'Microsoft DOS',6,593,'others'); +INSERT INTO entity_mentions VALUES(2926,'MS DOS',6,593,'others'); +INSERT INTO entity_mentions VALUES(2927,'MS-DOS',6,593,'others'); +INSERT INTO entity_mentions VALUES(2928,'VME/B',6,595,'others'); +INSERT INTO entity_mentions VALUES(2929,'VME',6,595,'others'); +INSERT INTO entity_mentions VALUES(2930,'Virtual Machine Environment',6,595,'others'); +INSERT INTO entity_mentions VALUES(2931,'VME 2900',6,595,'others'); +INSERT INTO entity_mentions VALUES(2932,'OpenVME',6,595,'others'); +INSERT INTO entity_mentions VALUES(2933,'DOS/360',6,597,'others'); +INSERT INTO entity_mentions VALUES(2934,'Disk Operating System/360',6,597,'others'); +INSERT INTO entity_mentions VALUES(2935,'TPF',6,598,'others'); +INSERT INTO entity_mentions VALUES(2936,'z/TPF',6,598,'others'); +INSERT INTO entity_mentions VALUES(2937,'Transaction Processing Facility',6,598,'others'); +INSERT INTO entity_mentions VALUES(2938,'z/VM',6,608,'others'); +INSERT INTO entity_mentions VALUES(2939,'Berkeley Software Distribution',6,579,'others'); +INSERT INTO entity_mentions VALUES(2940,'BSD',6,579,'others'); +INSERT INTO entity_mentions VALUES(2941,'Berkeley System Distribution',6,579,'others'); +INSERT INTO entity_mentions VALUES(2942,'BSD Unix',6,579,'others'); +INSERT INTO entity_mentions VALUES(2943,'Berkeley Unix',6,579,'others'); +INSERT INTO entity_mentions VALUES(2944,'Wildfly',7,493,'others'); +INSERT INTO entity_mentions VALUES(2946,'Job Entry Subsystem 3',2,1,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2947,'Job Entry Subsystem',2,1,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2948,'Job Entry Subsystem 2/3',2,1,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2949,'JES2',2,1,'also_known_as'); +INSERT INTO entity_mentions VALUES(2950,'JES3',2,1,'also_known_as'); +INSERT INTO entity_mentions VALUES(2952,'Acrobat forms',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2953,'Adobe Acrobat 3D',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2954,'Adobe Acrobat Professional',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2955,'Acrobat Professional',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2956,'Adobe Acrobat Pro',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2957,'Acrobat 8',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2958,'Adobe Acrobat Capture',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2960,'Acrobat file',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2961,'Acrobat reader',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2962,'Adobe Reader X',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2963,'Acrobat 3D',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2964,'Adobe Reader LE',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2965,'Adobe acrobat',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2966,'Acrobat Pro',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2967,'Acrobat 7',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2968,'Adobe Acrobat 9.5.5',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2969,'Adobe reader',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2970,'Adobe Acrobat Viewer',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2971,'Acrobat Exchange',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2972,'Acrobat document',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2973,'Acroread',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2974,'AdobeR Reader',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2975,'Adobe Acrobat Distiller',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2976,'Acrobat PDFMaker 10.0 for Word',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2977,'Adobe Acrobat X',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2978,'Adobe Acrobat Reader DC',2,4,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2979,'Adobe Reader',2,4,'also_known_as'); +INSERT INTO entity_mentions VALUES(2981,'Ansible software',2,5,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2982,'Activemq',2,6,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2983,'ActiveMQ',2,6,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2984,'HBase',2,7,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2987,'Kafka Streams',2,9,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2988,'Kafka (software)',2,9,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2989,'Apache kafka',2,9,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2991,'Solr',2,11,'also_known_as'); +INSERT INTO entity_mentions VALUES(2992,'Subversion (vcs)',2,12,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2993,'Commit access',2,12,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2994,'Svn (vcs)',2,12,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2995,'Subverson',2,12,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2996,'Subversion branch',2,12,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2997,'Svn (software)',2,12,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(2999,'Sub Versioning',2,12,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3000,'Apache subversion',2,12,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3001,'Svn software',2,12,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3002,'Subversion branching',2,12,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3003,'SVN branch',2,12,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3004,'Subversion (program)',2,12,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3005,'Subversive branching',2,12,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3006,'Svn vcs',2,12,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3007,'Subversion (software)',2,12,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3008,'Svn (Unix)',2,12,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3009,'Subversion (Software)',2,12,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3010,'Asterisk operator',2,14,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3011,'Asterisk character',2,14,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3012,'Asterisks',2,14,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3013,'Asterisk (punctuation)',2,14,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3014,'Asterick',2,14,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3015,'Asterisked form',2,14,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3016,'Splat (pronouns)',2,14,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3017,'Heavy asterisk',2,14,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3018,'Asteract',2,14,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3019,'Astrick',2,14,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3020,'Bluebeam Revu',2,17,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3021,'BDE (Borland)',2,20,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3022,'Borland BDE',2,20,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3023,'ODAPI',2,20,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3024,'Eclipse BIRT',2,21,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3025,'BIRT Reports',2,21,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3026,'BIRT Report',2,21,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3027,'Advantage:Gen',2,22,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3028,'Cool:Gen',2,22,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3029,'COOLGen',2,22,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3030,'COOL:Gen',2,22,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3031,'Advantage Gen',2,22,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3032,'Coolgen',2,22,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3033,'Information Engineering Facility',2,22,'also_known_as'); +INSERT INTO entity_mentions VALUES(3035,'CA Panvalet',2,24,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3037,'TELON',2,25,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3038,'Chef (tool)',2,27,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3039,'Chef-Solo',2,27,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3040,'Chef Community Repository',2,27,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3041,'Chef software',2,27,'also_known_as'); +INSERT INTO entity_mentions VALUES(3042,'Citrix XenApp',2,30,'also_known_as'); +INSERT INTO entity_mentions VALUES(3044,'Citrix WinFrame',2,30,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3045,'Winframe',2,30,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3046,'OP3Nvoice',2,33,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3047,'Clarify - Op3nvoice',2,33,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3048,'Laboratory information system',2,35,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3049,'Laboratory Information Management System',2,35,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3050,'Laboratory informatics system',2,35,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3051,'Lims',2,35,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3052,'Laboratory Information Management Systems',2,35,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3053,'Lab information system',2,35,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3054,'Laboratory computer system',2,35,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3055,'Laboratory Information Management Software',2,35,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3056,'Laboratory Information System',2,35,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3057,'Cognos Inc.',2,36,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3059,'Macromedia ColdFusion MX',2,37,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3060,'ColdFusion MX',2,37,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3062,'Adobe cold fusion',2,37,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3063,'ColdFusion Components',2,37,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3064,'Cold Fusion programming language',2,37,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3065,'Abobe coldfusion',2,37,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3066,'ColdFusion programming language',2,37,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3067,'ColdFusion',2,37,'also_known_as'); +INSERT INTO entity_mentions VALUES(3068,'Macromedia ColdFusion',2,37,'also_known_as'); +INSERT INTO entity_mentions VALUES(3069,'Network Data Mover',2,40,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3072,'Crystal reports',2,42,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3073,'SAP Crystal Reports',2,42,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3074,'Report application server',2,42,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3076,'Db2',2,43,'also_known_as'); +INSERT INTO entity_mentions VALUES(3078,'IBM DB2 Express-C',2,43,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3079,'DB2/2',2,43,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3080,'DB2 Express',2,43,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3081,'SQLCA',2,43,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3082,'Ibm viper',2,43,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3083,'DATABASE 2',2,43,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3084,'IBM Db2',2,43,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3085,'Db2 for i',2,43,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3086,'DB2 DWE',2,43,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3087,'DB/2',2,43,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3088,'IBM PureQuery',2,43,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3089,'DB2 Everyplace',2,43,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3090,'PureQuery',2,43,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3092,'Db/2',2,43,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3094,'EMC Documentum',2,44,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3095,'Droopal',2,45,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3096,'Deanspace',2,45,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3097,'Drupal theming',2,45,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3098,'Droople',2,45,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3099,'CivicSpace',2,45,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3100,'Druscal',2,45,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3101,'Drupal Con',2,45,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3102,'DrupalCon',2,45,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3103,'Civic Space',2,45,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3104,'Drupla',2,45,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3105,'Durpal',2,45,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3106,'DeanSpace',2,45,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3107,'Druple',2,45,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3108,'Hack4Dean',2,45,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3109,'Civicspace',2,45,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3110,'Acquia Drupal',2,45,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3111,'Open Atrium',2,45,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3112,'Eclipse sdk',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3113,'Mylyn',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3114,'Java Eclipse',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3115,'Web Tools Platform',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3116,'Eclipse software',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3117,'Eclipse SDK',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3118,'Eclipse Kura',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3119,'Eclipse Classic',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3120,'Eclipse ganymede',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3121,'Eclipse Europa',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3122,'Eclipse (computing)',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3123,'Eclipse (platform)',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3124,'Eclipse IDE',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3125,'Java eclipse',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3126,'Yoxos OnDemand',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3127,'Eclipse java',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3128,'Yoxos',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3129,'Eclipse (IDE)',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3130,'Eclipse (SDK)',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3131,'Eclipse ide',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3132,'Eclipse (ide)',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3133,'Eclipse Galileo',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3134,'Eclipse platform',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3135,'Eclipse RCP',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3136,'Java Emitter Templates',2,46,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3137,'Eclipse ADT',2,46,'also_known_as'); +INSERT INTO entity_mentions VALUES(3140,'Filemaker',2,51,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3141,'FileMaker II',2,51,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3142,'Filemaker Pro',2,51,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3143,'FileMaker Server',2,51,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3144,'FilemakerPro',2,51,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3145,'Google chrome 5',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3146,'Google Chrome Beta',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3147,'Google chrome',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3148,'Google Chrome 12',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3149,'Chrome software',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3150,'Google Chrome 14',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3151,'Chrome (browser)',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3152,'Googlechrome',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3153,'Chrome Canary',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3154,'Google Chrome extension',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3155,'Google Chrome browser',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3156,'Google Chrome for IOS',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3157,'Chrome extension',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3158,'Extension (Google Chrome)',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3159,'Incognito mode',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3160,'Chrome browser',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3161,'Google Chrome for Android',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3162,'Google Chrome Extensions Gallery',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3163,'Google Chrome 4',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3164,'GChrome',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3165,'Google Browser',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3166,'Chrome google',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3167,'Chrome (software)',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3168,'Chrome (Google)',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3169,'Chrome web browser',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3170,'Google Chrome 13',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3171,'Google Chrome 11',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3172,'Google Chrome Canary',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3173,'Chrome Extensions',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3174,'Chromium (engine)',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3175,'GBrowser',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3176,'Chrome (web browser)',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3177,'Google Chrome for iOS',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3178,'Chrome for Android',2,55,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3180,'Pivotal Greenplum Database',2,56,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3181,'Greenplum database',2,56,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3182,'Hadoop distributed file system',2,57,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3183,'Hadoop Distributed Filesystem',2,57,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3184,'Hadoop YARN',2,57,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3185,'HDFS',2,57,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3186,'Amazon Elastic MapReduce',2,57,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3187,'Hadoop Distributed File System',2,57,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3188,'YARN',2,57,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3190,'NorCroft',2,59,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3191,'Norcroft compiler suite',2,59,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3192,'Norcroft C',2,59,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3193,'Norcroft compiler',2,59,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3194,'Norcroft',2,59,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3195,'Tivoli Endpoint Manager',2,62,'also_known_as'); +INSERT INTO entity_mentions VALUES(3196,'IBM Endpoint Manager',2,62,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3197,'Datastage',2,67,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3198,'IBM InfoSphere',2,67,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3199,'DataStage',2,67,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3200,'IBM WebSphere DataStage',2,67,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3202,'IBM WebSphere Message Broker',2,68,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3204,'IBM MobileFirst',2,72,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3205,'IBM WebSphere ILOG JRules',2,73,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3206,'Spectrum Scale',2,605,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3208,'General Parallel File System',2,605,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3209,'IBM General Parallel File System',2,605,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3210,'Vesta File System',2,605,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3211,'Adstar Distributed Storage Manager',2,604,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3213,'ADSM',2,604,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3214,'ADSTAR Distributed Storage Manager',2,604,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3215,'IBM Tivoli Storage Manager FastBack',2,604,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3216,'Distributed Storage Manager Client',2,604,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3217,'WebSphere Adapters',2,80,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3218,'MQ Series',2,81,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3220,'IBM Message Queue Interface',2,81,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3221,'Mqseries',2,81,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3222,'IBM WebSphere MQ',2,81,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3224,'WebSphere MQ',2,81,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3225,'MQSeries',2,81,'also_known_as'); +INSERT INTO entity_mentions VALUES(3226,'Hierarchical sequential access method',2,84,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3227,'IBM IMS',2,84,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3228,'Information Management System',2,84,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3229,'IMS DC',2,84,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3230,'IMS/DC',2,84,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3231,'HSAM (computing)',2,84,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3232,'Information management system',2,84,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3233,'Hierarchical Sequential Access Method',2,84,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3234,'IMS/DB',2,84,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3235,'IMS/TM',2,84,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3236,'IMS system',2,84,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3237,'WiZ',2,85,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3238,'Zip (software)',2,85,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3239,'Info-Zip',2,85,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3240,'InfoZip',2,85,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3242,'Berkeley Ingres QUEL',2,88,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3243,'IngresCorporation',2,88,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3244,'Ingres II',2,88,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3245,'Ingres Database',2,88,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3246,'University Ingres',2,88,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3247,'OpenIngres',2,88,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3248,'CA-Ingres',2,88,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3249,'Ingres database',2,88,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3250,'INGRES',2,88,'also_known_as'); +INSERT INTO entity_mentions VALUES(3252,'Lotus domino',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3253,'Notes Release 3.0',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3254,'Lotus Notes 3.0',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3255,'Lotus Notes Mail',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3256,'Lotus Notes 2.1',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3257,'Lotus Notes Release 3.0',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3258,'Lotus notes',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3259,'Eproductivity',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3260,'Notes 3.0',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3261,'Lodus notes',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3262,'Domino XML',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3263,'Lodus nodes',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3264,'Notes Release 2.1',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3265,'Lodus Nodes',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3266,'IBM Lotus Notes',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3267,'IBM Lotus Domino',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3268,'Notes Storage Facility',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3270,'Dominoblog',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3271,'Lodus Notes',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3272,'Lotus Notes Release 2.1',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3273,'Notes 2.1',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3274,'IBM iNotes Webmail Redirect',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3275,'Domino (software)',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3276,'HLC Domino',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3277,'HCL Notes',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3278,'EProductivity',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3279,'Notes Storage Format',2,93,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3281,'IBM Notes',2,93,'also_known_as'); +INSERT INTO entity_mentions VALUES(3282,'MaaS 360 (Software)',2,94,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3283,'Malwarebytes'' AntiMalware',2,95,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3284,'Malwarebytes'' Anti-Malware',2,95,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3285,'Malware Bytes',2,95,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3287,'Mark Logic',2,97,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3288,'MarkMail',2,97,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3289,'MarkLogic Corporation',2,97,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3290,'Mark logic',2,97,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3292,'Memory Cache Daemon',2,98,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3293,'Microsoft Access Development',2,99,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3294,'Ms access',2,99,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3295,'Ms Access',2,99,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3296,'Microsoft Access 2002',2,99,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3297,'Access 2002',2,99,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3298,'MS access',2,99,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3299,'Access 97 SR2',2,99,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3300,'Microsoft Access 2007',2,99,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3301,'Access 2',2,99,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3302,'Accdb',2,99,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3304,'MSAccess',2,99,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3305,'Office Access',2,99,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3306,'Microsoft Acces',2,99,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3307,'Access 97',2,99,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3308,'MSACCESS',2,99,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3309,'Microsoft access',2,99,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3310,'Microsoft Office Access',2,99,'also_known_as'); +INSERT INTO entity_mentions VALUES(3311,'Biztalk',2,100,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3312,'BizTalk',2,100,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3313,'BizTalk Server',2,100,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3314,'Microsoft Biztalk Server',2,100,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3315,'Axapta',2,101,'also_known_as'); +INSERT INTO entity_mentions VALUES(3316,'En''tegrate',2,101,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3317,'X++',2,101,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3318,'En''tegrate Software',2,101,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3319,'Dynamics AX',2,101,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3320,'MorphX',2,101,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3321,'System Management Server',2,102,'also_known_as'); +INSERT INTO entity_mentions VALUES(3323,'System center configuration manager',2,102,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3324,'System Centre Configuration Manager',2,102,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3325,'Systems Management Server',2,102,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3326,'System Center Configuration Manager',2,102,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3327,'AssetMetrix',2,102,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3328,'SCCM 2007',2,102,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3329,'MSSMS',2,102,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3330,'Microsoft Systems Management Server',2,102,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3331,'MS excel',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3332,'Excel (Microsoft)',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3333,'Excel macro',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3334,'Microsoft XL',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3335,'Excel function',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3337,'Microsoft excel file formats',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3338,'Microsoft excel',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3339,'Microsoft(r) Excel(r)',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3340,'XLW',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3341,'Ms Excel',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3342,'XLS files',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3343,'XLS file',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3344,'Microsoft Excel XP',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3345,'Ms excel',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3346,'Excel Viewer',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3347,'XLS FILE',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3348,'Microsoft Excel:mac',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3349,'Excel spreadsheet',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3350,'Microsoft Excel 95',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3351,'Microsoft Excel 2002',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3352,'Microsoft Excel 2003',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3353,'Excel 2007',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3354,'Microsoft Excel Viewer',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3355,'Microsoft Excel file format',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3356,'Excel Web App',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3357,'EXCEL',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3358,'Xlw',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3359,'Microsoft Excel 2004',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3360,'MICROSOFT EXCEL',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3361,'Excel table',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3362,'Excel 2003',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3363,'Excel VBA',2,103,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3364,'Microsoft Office Excel',2,103,'also_known_as'); +INSERT INTO entity_mentions VALUES(3367,'Office Excel',2,103,'also_known_as'); +INSERT INTO entity_mentions VALUES(3368,'MS Exchange Server',2,104,'also_known_as'); +INSERT INTO entity_mentions VALUES(3369,'Exchange email',2,104,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3370,'Exchange 2007',2,104,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3371,'Exchange Online',2,104,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3372,'Microsoft Exchange Client',2,104,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3373,'Exchange Server',2,104,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3374,'Cluster continuos replication',2,104,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3375,'Exchange 2010',2,104,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3376,'Microsoft Exchange 2013',2,104,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3377,'Microsoft Exchange Server 2013',2,104,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3378,'Microsoft Exchange server',2,104,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3379,'LinkAge Software',2,104,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3380,'Exchange Server 2007',2,104,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3381,'Exchange Server 2003',2,104,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3382,'Exchange 2013',2,104,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3383,'MS Exchange 2010 SP2',2,104,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3384,'Exchange Server 2013',2,104,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3385,'Cluster continuous replication',2,104,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3386,'Identity Lifecycle Manager',2,105,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3387,'Microsoft Office Infopath',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3388,'Microsoft infoPath',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3389,'Microsoft Infopath',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3390,'Microsoft infopath',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3391,'Infopath 2007',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3392,'Office Forms Server',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3393,'MS InfoPath',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3394,'Infopath Form Services',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3395,'MS infoPath',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3396,'Ms Infopath',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3397,'Infopath Forms Services',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3399,'Microsoft InfoPath Filler',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3400,'InfoPath Forms Services',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3401,'Forms Server',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3402,'Infopath',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3403,'Ms infoPath',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3404,'InfoPath Form Services',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3405,'Infopass',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3406,'Ms infopath',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3407,'Microsoft Office Forms Server',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3408,'Office InfoPath',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3409,'MS infopath',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3410,'InfoPath forms services',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3411,'Microsoft Office InfoPath 2007',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3412,'Infopath forms services',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3413,'Microsoft InfoPath Designer',2,106,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3414,'Microsoft Office InfoPath',2,106,'also_known_as'); +INSERT INTO entity_mentions VALUES(3415,'XDocs',2,106,'also_known_as'); +INSERT INTO entity_mentions VALUES(3417,'MSIE',2,107,'also_known_as'); +INSERT INTO entity_mentions VALUES(3418,'Windows Internet Explorer',2,107,'also_known_as'); +INSERT INTO entity_mentions VALUES(3419,'MS IE',2,107,'also_known_as'); +INSERT INTO entity_mentions VALUES(3420,'Internetexplorer',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3421,'Microsoft IE',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3422,'Stopie',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3423,'Internut Exploder',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3424,'WinInet',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3425,'Internex',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3426,'Wininet',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3427,'Internet Exploder',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3428,'Iexplorer',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3429,'Features of internet explorer',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3430,'WinINET',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3431,'MicroSoft Internet Explorer',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3432,'Innerhtml',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3433,'Iexplore',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3434,'MSIE (web browser)',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3435,'Internet explorer',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3436,'Internet exploiter',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3437,'Internet Exploiter',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3438,'MS Internet Explorer',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3439,'InternetExplorer',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3440,'M.S.I.E.',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3441,'IE browser',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3442,'InnerHTML',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3443,'StopIE',2,107,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3444,'Microsoft Proxy Server',2,108,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3445,'Threat Management Gateway',2,108,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3446,'Internet Security and Acceleratoin Server',2,108,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3447,'Internet Security and Acceleration Server',2,108,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3449,'Internet Security and Acceleration',2,108,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3450,'MS Proxy Server',2,108,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3451,'ISA server',2,108,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3452,'Forefront Threat Management Gateway',2,108,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3454,'Forefront TMG',2,108,'also_known_as'); +INSERT INTO entity_mentions VALUES(3455,'Microsoft Internet Security and Acceleration Server',2,108,'also_known_as'); +INSERT INTO entity_mentions VALUES(3456,'MSMQ',2,109,'also_known_as'); +INSERT INTO entity_mentions VALUES(3457,'Microsoft Message Queue Server',2,109,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3458,'Microsoft Message Queue',2,109,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3459,'Visual Studio .NET',2,111,'also_known_as'); +INSERT INTO entity_mentions VALUES(3460,'Microsoft Visual Studio .NET',2,111,'also_known_as'); +INSERT INTO entity_mentions VALUES(3462,'Vs2010',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3463,'Visual Studio 97',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3464,'Microsoft Visual Studio 2008',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3465,'Data dude',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3466,'Visual Studio Shell',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3467,'Microsoft Development Environment',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3468,'Visual Studio .NET 2003',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3469,'VS2008',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3470,'LightSwitch',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3471,'Visual Studio Team Services',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3472,'Visual Studio 2017',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3473,'Microsoft visual studio',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3474,'Microsoft Visual Studio 2015',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3475,'Visual Studio Online',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3476,'Visual Studio 11',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3477,'DevBiz Business Solutions',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3478,'Visual Studio .NET 2005',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3479,'Visual Studio .NET 2002',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3480,'Visual Studio Test Professional',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3481,'VS2017',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3482,'Visual Studio 2019',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3483,'VS2010',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3484,'Microsoft Visual Studio Community',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3485,'Visual Studio.NET 2005',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3486,'Microsoft Visual Studio debugger',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3487,'MSDEV',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3488,'Visual Studio 2013',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3489,'Visual Studio Application Lifecycle Management',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3490,'Visual Studio Team Suite',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3491,'Visual studio',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3492,'VS6',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3493,'Microsoft Test professional',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3494,'Visual Studio 2015',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3495,'Azure DevOps Services',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3496,'Visual Studio 2010',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3497,'Microsoft visual studio 2010',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3498,'VS2005',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3499,'Visual Studio.NET',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3500,'VS 2005',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3501,'DXCore',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3502,'Visual Studio debugger',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3503,'Visual Studio Team Test',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3504,'MS Visual Studio',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3505,'RefactorPro',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3506,'Visual Studio Debugger',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3507,'VisualStudio',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3508,'Visual Studio LightSwitch',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3509,'Microsoft Orcas',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3510,'Visual Studio ALM',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3511,'Microsoft Visual Studio 2005',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3512,'Visual Studio 2005',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3513,'CodeView and the Visual Studio Debugger',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3514,'Visual Studio Orcas',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3515,'Visual Studio 2022',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3516,'Microsoft Test Professional',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3517,'Visual Studio 2008',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3518,'Microsoft Visual Studio Debugger',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3519,'Vs.net',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3520,'VS05',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3521,'Vs 2010',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3522,'Visual Studio 6.0',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3523,'Visual Studio Community',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3524,'VISUAL STUDIO 2008',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3525,'DevBiz',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3527,'Visual Studio 2012',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3528,'VS 2008',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3529,'Visual Studio Ultimate 2010',2,111,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3532,'Mongo db',2,116,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3533,'Mongodb',2,116,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3534,'Firefox (browser)',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3535,'Firebird browser',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3536,'FireBird (browser)',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3537,'Mozila Firefox',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3538,'Firefox minefield',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3539,'Minefield (trunk build)',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3540,'FireFox (web browser)',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3541,'Firebird (web browser)',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3542,'Mozilla Phoenix',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3543,'Mozilla/browser',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3544,'Firefox (software)',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3545,'Mozilla firefox',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3546,'M/b',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3547,'Phoenix web browser',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3548,'Firefox Aurora',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3549,'Mozilla Firerfox',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3550,'Firebird (browser)',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3551,'Mozilla''s Firefox',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3552,'MineField Browser',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3553,'Firefox (web browser)',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3554,'Mozilla phoenix',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3555,'SpreadFirefox',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3556,'FireBird (web browser)',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3557,'Mozzila Firefox',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3558,'FireFox (browser)',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3559,'Mozilla Minefield',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3560,'Firefox esr',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3561,'Mozilla FireFox',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3562,'Mozilla Firefox''s',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3563,'Mozilla firebird',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3564,'Mozff',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3565,'Mozilla firefox esr',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3566,'Firebird Web Browser',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3567,'Frefox',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3568,'Phoenix (browser)',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3569,'Spread Firefox',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3570,'Forefox',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3571,'FireFox',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3572,'Mozillafirefox',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3573,'Mozilla Fire Fox',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3574,'Firefox Roadmap',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3575,'Firefox roadmap',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3576,'Firebird web browser',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3577,'Mozilla Firefox (software)',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3578,'Mozilla Firefox ESR',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3579,'SpreadFireFox',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3580,'Moz firefox',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3581,'Firefox Browser',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3582,'Firefo',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3583,'Fire Fox',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3584,'Mozilla FireBird',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3585,'Mozilla FX',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3586,'Firefox ESR',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3587,'Mozilla ff',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3588,'Phoenix (web browser)',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3589,'Fire fox',2,117,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3590,'Firefox web browser',2,117,'also_known_as'); +INSERT INTO entity_mentions VALUES(3591,'Firefox browser',2,117,'also_known_as'); +INSERT INTO entity_mentions VALUES(3592,'Mozilla Firebird',2,117,'also_known_as'); +INSERT INTO entity_mentions VALUES(3594,'MS-Office 365',2,119,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3598,'MS-SQL',2,581,'also_known_as'); +INSERT INTO entity_mentions VALUES(3600,'Sql Server 2000',2,581,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3601,'SQL Server 2017',2,581,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3602,'Sqlcmd',2,581,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3603,'SQL Server 2014 ISO',2,581,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3607,'Microsoft SQL Server 2008 R2',2,581,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3608,'Microsoft SQL server',2,581,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3610,'SQL Server 2014 CAB',2,581,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3611,'SQL Server 2008 R2',2,581,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3612,'Pubs (database)',2,581,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3614,'Microsoft SQL',2,581,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3616,'Microsoft Sql Server',2,581,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3617,'SQL 6.5',2,581,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3618,'Ms sql server',2,581,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3620,'Microsoft sql server',2,581,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3621,'Mssql',2,581,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3623,'SQL 7.0',2,581,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3624,'SQL Server 2019',2,581,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3625,'SQL Server 2005 Compact Edition',2,121,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3626,'SQL Server Compact 3.5',2,121,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3627,'Microsoft SQL Server Compact Edition',2,121,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3628,'SQL Server Compact Edition Database File',2,121,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3629,'Sql mobile',2,121,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3630,'SQL Server Compact Edition',2,121,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3631,'SQL Mobile',2,121,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3632,'SQLCE',2,121,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3633,'SQL Server Mobile',2,121,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3634,'SQLce',2,121,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3635,'SQL Server Compact 2005 Edition',2,121,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3636,'SQL Server Mobile Edition',2,121,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3637,'SQL Server CE',2,121,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3638,'Microsoft SQL Server Mobile Edition',2,121,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3639,'Microsoft SQL Server Compact',2,121,'also_known_as'); +INSERT INTO entity_mentions VALUES(3640,'SQL CE',2,121,'also_known_as'); +INSERT INTO entity_mentions VALUES(3641,'My sql',2,122,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3642,'MySQL server',2,122,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3643,'Mysql 5.0',2,122,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3644,'MySQL Fabric',2,122,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3645,'Mysqldump',2,122,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3646,'MySql',2,122,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3648,'MySQL HA',2,122,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3649,'SunSQL',2,122,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3650,'Libmysqld',2,122,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3651,'Mysql-server',2,122,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3652,'Mysql',2,122,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3653,'Mqsql',2,122,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3654,'My Structured Query Language',2,122,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3655,'My SQL',2,122,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3656,'MySql 5',2,122,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3657,'Mysql 5.1',2,122,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3658,'Neo Technology',2,123,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3660,'Nix language',2,125,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3661,'Nix Package Manager',2,125,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3662,'Openldap',2,126,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3664,'PrivateVPN',2,128,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3665,'Openvon',2,128,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3666,'Openvpn',2,128,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3667,'Open VPN',2,128,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3668,'ADF Faces',2,130,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3670,'Oracle HTML DB',2,131,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3671,'Html db',2,131,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3672,'HTML DB',2,131,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3674,'Oracle XML Publisher',2,132,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3676,'Oracle11i',2,134,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3677,'Oracle8i',2,134,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3678,'Oracle (software)',2,134,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3679,'Oracle (database)',2,134,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3680,'Ora92',2,134,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3681,'Oracle 11i',2,134,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3682,'Oracle express',2,134,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3683,'Oracle XE',2,134,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3684,'Oracle (DBMS)',2,134,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3685,'Oracle database',2,134,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3686,'Instantclient',2,134,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3687,'Oracle db',2,134,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3689,'Oracle R Enterprise',2,134,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3690,'Oracle9i',2,134,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3691,'Oracle11g',2,134,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3692,'Oracle DBMS',2,134,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3693,'Oracle8',2,134,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3694,'Oracle RDBMS',2,134,'also_known_as'); +INSERT INTO entity_mentions VALUES(3695,'Oracle Designer 2000',2,135,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3698,'Oracle Hyperion|Hyperion Planning',2,139,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3699,'Oracle Net',2,140,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3700,'Real application clusters',2,141,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3702,'Oracle soa',2,145,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3705,'Timesten',2,147,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3706,'Smallbase',2,147,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3707,'TimesTen In-Memory Database',2,147,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3709,'Orbix (Software)',2,149,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3710,'Pentaho Data Integration',2,150,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3711,'Ramsetcube',2,150,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3712,'PeopleSoft Enterprise',2,151,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3713,'People Soft',2,151,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3714,'PeopleSoft',2,151,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3715,'PeopleSoft EnterpriseOne',2,151,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3716,'PeopleSoft HRMS',2,151,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3717,'Peoplesoft',2,151,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3718,'Pervasive psql',2,153,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3719,'Actian Zen',2,153,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3720,'Pervasive sql',2,153,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3721,'PKZip',2,155,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3722,'PKSFX',2,155,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3723,'PKUNZIP',2,155,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3724,'SecureZIP',2,155,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3725,'Pkunzip',2,155,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3726,'Pkzip',2,155,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3727,'Metis (modelling)',2,156,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3728,'Metis (software)',2,156,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3729,'PgSQL',2,157,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3730,'PostgreSQL Data Base Management System',2,157,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3731,'Postsql',2,157,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3732,'Postgres95',2,157,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3733,'POSTGRES',2,157,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3734,'Autovacuum',2,157,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3735,'PGSQL',2,157,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3736,'PostSQL',2,157,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3737,'PostGRES',2,157,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3738,'POSTGRES95',2,157,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3739,'Psql (PostgreSQL)',2,157,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3740,'Pgsql',2,157,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3741,'PortugueseSQL',2,157,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3742,'PostegreSQL',2,157,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3743,'PostGRE',2,157,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3744,'PostgresSQL',2,157,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3745,'Postgresql',2,157,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3746,'PostGres',2,157,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3747,'PostgreSql',2,157,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3748,'Postgre sql',2,157,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3750,'Postgre',2,157,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3751,'Postgres',2,157,'also_known_as'); +INSERT INTO entity_mentions VALUES(3753,'Sybase PowerBuilder',2,158,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3755,'Oracle Primavera',2,159,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3756,'Primavera p6',2,159,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3757,'XER (file format)',2,159,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3758,'Primavera P3',2,159,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3761,'Polytron Version Control System',2,163,'also_known_as'); +INSERT INTO entity_mentions VALUES(3763,'Rabbit MQ',2,165,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3764,'Rabbitmq',2,165,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3765,'RabbitMq',2,165,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3766,'Rabbit mq',2,165,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3767,'MultiVersion File System',2,166,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3768,'IBM Rational ClearCase',2,166,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3769,'Clear case',2,166,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3770,'IBM Rational MultiVersion File System',2,166,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3771,'Clearcase',2,166,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3772,'Rational MultiVersion File System',2,166,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3773,'Ibm clear case',2,166,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3774,'ClearCase',2,166,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3775,'Rational Business Developer Extension',2,167,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3776,'Rational Service Tester for SOA Quality',2,167,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3777,'Rational Business Developer',2,167,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3779,'IBM Rational SQABasic',2,167,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3780,'SQABasic',2,167,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3781,'IBM Rational Business Developer Extension',2,167,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3782,'Rationale Software',2,167,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3783,'Rational Machines',2,167,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3784,'Rational Application Developer',2,167,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3785,'Rational Team Concert',2,167,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3786,'Rational Engineering Lifecycle Manager',2,167,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3787,'IBM Jazz',2,167,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3788,'IBM Rational Team Concert',2,167,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3789,'Rational Rose RealTime',2,167,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3790,'IBM Rational Business Developer',2,167,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3791,'IBM Rational Software',2,167,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3792,'Rational Software Corporation',2,167,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3793,'Rational Functional Tester',2,167,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3794,'Rational Tau',2,167,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3795,'Rational robot',2,167,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3796,'IBM Rational',2,167,'also_known_as'); +INSERT INTO entity_mentions VALUES(3797,'Redis (data store)',2,168,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3798,'Redis (dbms)',2,168,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3799,'Redis database format',2,168,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3802,'Rumba criolla',2,172,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3803,'Mysap',2,174,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3804,'SAP enterprise software',2,174,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3805,'SAP Transport management system',2,174,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3806,'Profitability Analysis (SAP)',2,174,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3807,'MySAP',2,174,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3808,'SAP ERP Financials',2,174,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3809,'MySAP ERP',2,174,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3810,'SAP Basis',2,174,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3811,'SAP HCM PA',2,174,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3812,'SAP ECC',2,174,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3813,'MySAP ERP Operations',2,174,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3814,'SAP ERP Human Capital Management',2,174,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3815,'MySAP ERP Financials',2,174,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3816,'SAP Fiori',2,174,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3817,'SAP ERP Operations',2,174,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3818,'SAP ERP Corporate Services',2,174,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3819,'High-performance Analytical Application',2,175,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3820,'SAP DB',2,176,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3821,'SAPDB',2,176,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3822,'SapDB',2,176,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3823,'SAP Netweaver Business Intelligence',2,177,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3824,'SAP NetWeaver Business Intelligence',2,177,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3825,'SAP BW',2,177,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3826,'SAP Business Information Warehouse',2,177,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3827,'Sybase ASA',2,178,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3828,'ASA (SQL Anywhere)',2,178,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3829,'PowerSoft SQL',2,178,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3830,'SAP Adaptive Server Anywhere',2,178,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3831,'Sybase asa',2,178,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3832,'PowerSoft Watcom SQL',2,178,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3833,'Sybase Anywhere',2,178,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3834,'Sql anywhere',2,178,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3835,'Adaptive Server Anywhere',2,178,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3837,'PowerSoft SQL Anywhere',2,178,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3838,'Sybase SQL Anywhere',2,178,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3839,'SAP Sybase Adaptive Server Anywhere',2,178,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3840,'SAP Sybase ASA',2,178,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3841,'Watcom SQL',2,178,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3842,'Sybase Adaptive Server Anywhere',2,178,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3843,'SAP ASA',2,178,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3844,'Web Dynpro ABAP',2,179,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3845,'Webdynpro',2,179,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3846,'Dynpro',2,179,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3847,'Sentry Risk Table',2,180,'also_known_as'); +INSERT INTO entity_mentions VALUES(3848,'Windows Sharepoint',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3849,'Microsoft SharePoint Server',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3850,'MOSS 2007',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3851,'Microsoft Office SharePoint Server 2007',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3852,'SharePoint 2007',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3853,'Windows sharepoint',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3854,'Microsoft SharePoint 2010',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3855,'SharePoint 2010',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3856,'Microsoft SharePoint 2007',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3857,'Sharepoint',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3858,'Share point server',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3859,'SharePoint Foundation',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3860,'SharePoint services',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3861,'SharePoint Server',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3862,'Sharepoint portal server',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3863,'Microsoft sharepoint',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3864,'Windows SharePoint 2007',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3865,'Microsoft SharePoint',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3866,'Office SharePoint Server',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3867,'Windows SharePoint',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3868,'MS Sharepoint',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3869,'Windows SharePoint Server',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3871,'Windows SharePoint Services',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3872,'Share Point',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3873,'Microsoft Office Sharepoint Server 2007',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3874,'Microsoft Windows SharePoint Services',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3875,'Microsoft Office SharePoint Portal Server',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3876,'Microsoft Sharepoint Foundation',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3877,'SharePoint Portal Server',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3878,'Sharepoint services',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3879,'Sharepoint Services',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3881,'Microsoft Sharepoint',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3882,'Windows Sharepoint Services 3',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3883,'Sharepoint server',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3884,'MS SharePoint',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3885,'Microsoft Office SharePoint',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3886,'SharePointCOE',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3887,'Share point',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3888,'Sharepoint collaboration',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3889,'Microsoft SharePoint Foundation',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3890,'SharePoint Services',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3891,'SharePoint Resources',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3892,'Windows Sharepoint Services',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3893,'Microsoft Office SharePoint Server',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3894,'Snaglt',2,184,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3896,'IBM Mobile',2,185,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3897,'SonarLint',2,186,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3898,'Sonarqube',2,186,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3899,'Sonar (software quality)',2,186,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3902,'SAP Sybase DB',2,190,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3903,'SAP Sybase SQL Server',2,190,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3904,'SAP Sybase ASE',2,190,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3905,'Sybase Adaptive Server Enterprise',2,190,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3906,'SAP Adaptive Server Enterprise',2,190,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3907,'SAP Sybase Adaptive Server Enterprise (ASE)',2,190,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3908,'Sybase (database)',2,190,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3909,'SAP SQL Server',2,190,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3910,'SAP Sybase',2,190,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3911,'SAP Sybase Adaptive Server Enterprise',2,190,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3912,'Sybase database',2,190,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3913,'ASE (SQL Server)',2,190,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3914,'Sybase Enterprise',2,190,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3915,'Sybase ASE',2,190,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3916,'SAP ASE',2,190,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3917,'Sybase DB',2,190,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3918,'Syncsort',2,191,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3919,'Teradata Geospatial',2,215,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3920,'Teradata FastLoad',2,215,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3921,'Teradata Warehouse Miner',2,215,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3922,'Fastexport',2,215,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3923,'BTEQ',2,215,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3924,'Teradata Parallel Transporter',2,215,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3925,'FastExport',2,215,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3926,'ADAM Software',2,215,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3927,'Tibco Rendezvous',2,219,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3928,'Tivoli Access Manager',2,220,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3929,'Tortoise CVS',2,221,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3930,'TSVN',2,222,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3931,'Tortoisesvn',2,222,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3932,'Tortoise svn',2,222,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3933,'Tortoise SVN',2,222,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3934,'UNIFACE',2,225,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3935,'VisiBroker',2,228,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3936,'Vcenter',2,231,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3937,'IBM WebSphere Commerce',2,234,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3940,'Index Server',2,238,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3942,'Windows indexing service',2,238,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3943,'WinMerge 2011',2,241,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3944,'Winmerge',2,241,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3945,'Winrar',2,242,'also_known_as'); +INSERT INTO entity_mentions VALUES(3946,'WinRar',2,242,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3947,'RAR5',2,242,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3948,'Rarlab WinRAR',2,242,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3949,'Win RAR',2,242,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3950,'WINSCP',2,243,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3951,'Winscp',2,243,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3952,'Word press',2,245,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3953,'BbPress',2,245,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3954,'Cafelog',2,245,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3955,'WordPress MU',2,245,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3956,'B2\cafelog',2,245,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3958,'B2/cafelog',2,245,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3959,'WordPress 2.1.2',2,245,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3960,'WordCamp',2,245,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3961,'WordPress Foundation',2,245,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3962,'Word Press',2,245,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3963,'The WordPress Foundation',2,245,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3964,'Wordpress foundation',2,245,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3965,'B2 (software)',2,245,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3966,'Xampp',2,246,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3967,'XAMPP Lite',2,246,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3968,'Xamp',2,246,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3969,'Xampp Lite',2,246,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3970,'Apache Friends',2,246,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3971,'0MQ',2,248,'also_known_as'); +INSERT INTO entity_mentions VALUES(3973,'Nanomsg',2,248,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3974,'Zero MQ',2,248,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3975,'ØMQ',2,248,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3976,'0mq',2,248,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3977,'Zmq',2,248,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3978,'Zeromq',2,248,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3979,'OMQ',2,248,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3981,'HACMP',2,250,'also_known_as'); +INSERT INTO entity_mentions VALUES(3982,'High Availability Cluster Multiprocessing',2,250,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3985,'OPL Development Studio',2,253,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3986,'LogicTools',2,257,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3987,'Sqlite',2,258,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3988,'SQL Lite',2,258,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3989,'Sqlite3',2,258,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3990,'SqlLite',2,258,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3991,'SQLLite',2,258,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3992,'SQLite4',2,258,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3993,'SQLlite',2,258,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3994,'SQLite3',2,258,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3995,'SQlite',2,258,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3996,'SQLLite DB',2,258,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3997,'SQLite Manager',2,258,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3998,'Sqllite',2,258,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(3999,'SQLITE',2,258,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4000,'Apache webserver',8,259,'also_known_as'); +INSERT INTO entity_mentions VALUES(4001,'Apache Server',8,259,'also_known_as'); +INSERT INTO entity_mentions VALUES(4002,'Apache web server',8,259,'also_known_as'); +INSERT INTO entity_mentions VALUES(4003,'Apache WWW Server',8,259,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4004,'Apache (server)',8,259,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4005,'Apache (web server)',8,259,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4006,'Apache httpd',8,259,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4007,'Apache server',8,259,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4008,'Apache2',8,259,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4009,'Apache2ctl',8,259,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4012,'Apache Web server',8,259,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4013,'Apache HTTPd',8,259,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4014,'Apache http',8,259,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4015,'Apache HTTPD',8,259,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4016,'Apachectl',8,259,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4017,'Apache http server',8,259,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4018,'Apache HTTP server',8,259,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4019,'Apache (HTTP server)',8,259,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4020,'Apache 1.3',8,259,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4021,'Apache (webserver)',8,259,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4022,'Apache 2.2',8,259,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4023,'Apache Webserver',8,259,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4024,'Apache (computing)',8,259,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4025,'Tomcat Catalina',8,260,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4026,'Apache tomcat',8,260,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4027,'Tomcat Jasper',8,260,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4028,'Tomcat6',8,260,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4030,'Tomcat5',8,260,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4031,'Catalina (Tomcat)',8,260,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4032,'Tomcat Coyote',8,260,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4033,'Tomcat (software)',8,260,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4034,'Jakarta Tomcat',8,260,'also_known_as'); +INSERT INTO entity_mentions VALUES(4036,'BEA-WebLogic',8,600,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4037,'Bea Weblogic',8,600,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4038,'Oracle Weblogic',8,600,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4040,'BEA AS',8,600,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4041,'BEA WebLogic',8,600,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4043,'BEA Application Server',8,600,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4045,'Oracle WebLogic',8,600,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4047,'Oracle Weblogic Server',8,600,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4048,'WebLogic Application Server',8,600,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4049,'Sun ONE Application Server',8,263,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4050,'Oracle GlassFish Server',8,263,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4051,'SJSAS',8,263,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4052,'Java System Application Server',8,263,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4053,'Glassfish Application Server',8,263,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4054,'Sun GlassFish Enterprise Server',8,263,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4055,'Glassfish server',8,263,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4056,'Sun Java Application Server',8,263,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4057,'Sun Java System Application Server',8,263,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4058,'IPlanet Application Server',8,263,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4059,'Haproxy',8,264,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4061,'Microsoft IIS',8,609,'also_known_as'); +INSERT INTO entity_mentions VALUES(4063,'Internet Information Server',8,609,'also_known_as'); +INSERT INTO entity_mentions VALUES(4064,'IIS 7',8,609,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4065,'Microsoft Internet Information Server',8,609,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4066,'IIS Media Services',8,609,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4067,'Microsoft-IIS',8,609,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4068,'MS IIS',8,609,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4069,'IIS7',8,609,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4070,'IIS Media Pack',8,609,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4071,'Microsoft-iis',8,609,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4072,'Microsoft IIS server',8,609,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4074,'IIS server',8,609,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4075,'Red Hat Software',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4076,'RHTS',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4077,'RHAT (NASDAQ)',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4078,'Red Hat Czech',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4079,'PNAELV',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4080,'JBoss (company)',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4081,'RHAT',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4082,'Redhat.com',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4083,'Red Hat Test Suite',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4084,'Ntsysv',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4085,'FUSE Message Broker',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4086,'JBOSS',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4087,'RESTEasy',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4088,'Red Hat (company)',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4089,'REDHAT',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4090,'Red.ht',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4091,'CloudForms',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4092,'Red Hat High',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4093,'Red Hat Enterprise MRG',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4095,'RED HAT',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4096,'JBoss Group',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4097,'Red hat',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4098,'Red Hat',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4099,'Red Hat MGR',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4101,'Red Hat MRG',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4102,'RESTeasy',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4103,'Red Hat Inc',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4104,'Red Hat India',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4105,'Red Hat Inc.',8,268,'also_known_as'); +INSERT INTO entity_mentions VALUES(4106,'RedHat',8,268,'also_known_as'); +INSERT INTO entity_mentions VALUES(4111,'Fuse Message Broker',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4119,'NASDAQ:RHAT',8,268,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4142,'IBM Domino',8,270,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4146,'Nginx plus',8,274,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4147,'NGINX',8,274,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4148,'Engine X',8,274,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4149,'NGINX Unit',8,274,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4150,'Oracle OC4J',8,610,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4152,'Oracle Application Server 10g',8,610,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4153,'Oracle Imaging and Process Management',8,276,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4154,'Oracle Content Management',8,276,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4155,'WebCenter',8,276,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4156,'Oracle Universal Content Management',8,276,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4157,'Universal Content Management',8,276,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4158,'Oracle WebCenter Imaging',8,276,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4159,'Resin Server',8,278,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4160,'Resin Application Server',8,278,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4161,'Caucho Resin',8,278,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4162,'Quercus (software)',8,278,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4163,'NetWeawer',8,279,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4164,'SAP Netweaver solution',8,279,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4165,'Netweaver',8,279,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4166,'SAP Central Process Scheduling',8,279,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4168,'Apache Spark',8,280,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4169,'Sun Java System Web Server',8,281,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4170,'Sun Java Enterprise System Web Server',8,281,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4171,'IPlanet Web Server 4.1',8,281,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4174,'Netscape FastTrack Server',8,281,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4176,'IPlanet Web Server',8,281,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4177,'Sun-Java-System-Web-Server',8,281,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4179,'WebSphere Application Server V3.0',8,284,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4180,'WebSphere Application Server V5.0',8,284,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4181,'Websphere 6',8,284,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4182,'WAS 6',8,284,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4183,'WebSphere Application Server',8,284,'also_known_as'); +INSERT INTO entity_mentions VALUES(4184,'WebSphere',8,285,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4185,'WebSphere Application Server V5.1 Business Integration Foundation Edition',8,285,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4186,'WebSphere Application Server V6.0',8,285,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4187,'WebSphere Application Server V5.0 Enterprise Edition',8,285,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4188,'IBM WebSphere Real Time',8,285,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4189,'Websphere',8,285,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4190,'IBM Websphere',8,285,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4191,'WebSphere Application Server V4.0',8,285,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4192,'Websphere Software',8,285,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4193,'IBM WebSphere Information Integration',8,285,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4194,'WebSphere Information Integration',8,285,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4196,'WebSphere Process Server',8,287,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4197,'Integrity NonStop',4,293,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4198,'HP Integrity NonStop',4,293,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4199,'HPE NonStop',4,293,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4200,'Nonstop kernel',4,293,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4201,'NonStop Kernel',4,293,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4202,'NonStop OS',4,293,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4203,'IBM Power System',4,295,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4204,'Lpar2rrd',4,295,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4205,'Power Systems',4,295,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4206,'L5335',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4207,'Xeon E5-26xx',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4208,'Dunnington (microprocessor)',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4209,'Cascades (microprocessor)',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4210,'Scalable Memory Interconnect',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4211,'X7460',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4212,'Xeon E3-12xx',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4213,'Xeonx',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4214,'Woodcrest (microprocessor)',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4215,'Pentium II Xeon',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4216,'Tigerton (microprocessor)',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4217,'Jasper Forest (microprocessor)',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4218,'XEON',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4219,'Xeon E7-48xx v3',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4220,'Clovertown (microprocessor)',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4221,'Xeon E5',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4222,'Westmere-EX',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4223,'Drake (microprocessor)',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4224,'X5650',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4225,'Xeon E3 v2',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4226,'Wolfdale-DP (microprocessor)',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4227,'Quad-Core Intel Xeon',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4228,'Tanner (microprocessor)',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4229,'Scalable memory interconnect',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4230,'Intel Xeon CPU',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4231,'Quad-Core Xeon',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4232,'Intel Xeon E5',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4233,'Xeon E3 v3',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4234,'Dempsey (microprocessor)',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4235,'Xeon Silver',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4236,'Xeon E7-88xx v3',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4237,'Harpertown (microprocessor)',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4238,'Xeon E5 v3',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4239,'Intel SMI',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4240,'Gainestown (microprocessor)',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4241,'Xeon MP',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4242,'Dual-Core Xeon',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4243,'Xeon E5-26xx v3',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4244,'Intel Xeon Gold',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4245,'Nancona',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4246,'Haswell-EP',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4247,'Intel Xeon Platinum',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4248,'Sossaman (microprocessor)',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4249,'Xeon E3',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4250,'Xeon E7 v3',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4251,'Xeon E7 v2',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4252,'Intel Woodcrest',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4253,'E5310',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4254,'Intel Xeon Bronze',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4255,'Xeon E5 v2',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4256,'Pentium III Xeon',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4257,'Nehalem-ex',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4258,'Xeon E5-16xx',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4259,'Intel Xeon Silver',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4260,'Beckton (microprocessor)',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4261,'Xeon E5-16xx v3',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4262,'Xeon Bronze',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4263,'Sossaman',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4264,'Xeon E3-12xx v3',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4265,'Intel Xeon',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4266,'Xeon Platinum',4,296,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4268,'Oracle Database Machine',4,298,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4269,'Exadata',4,298,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4270,'Autoit',9,299,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4271,'Autoit script',9,299,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4272,'AutoIt3',9,299,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4273,'AI3',9,299,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4274,'Awk',9,300,'also_known_as'); +INSERT INTO entity_mentions VALUES(4275,'Nawk',9,300,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4276,'GNU Awk',9,300,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4277,'GAWK',9,300,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4278,'GNU awk',9,300,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4279,'One true AWK',9,300,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4280,'AWK (programming language)',9,300,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4281,'AWK programming language',9,300,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4282,'Awk (language)',9,300,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4283,'Tawk',9,300,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4284,'One True AWK',9,300,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4285,'Gawk (GNU package)',9,300,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4286,'Awk language',9,300,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4287,'One true awk',9,300,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4288,'Awk programming language',9,300,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4289,'BASAIC programming language',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4290,'Beginner All-Purpose Symbolic',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4291,'Beginner''s All Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4292,'Beginners All Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4293,'Beginner All Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4294,'Beginner''s All-Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4295,'Basic programming language',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4296,'Beginners'' All-Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4297,'Beginners'' All-Purpose Symbolic',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4298,'Basic (programming language)',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4299,'Basic (language)',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4300,'Basic computer language',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4301,'Unstructured BASIC',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4302,'B.A.S.I.C.',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4303,'ECMA-55',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4304,'Beginner All-Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4305,'Compiled BASIC',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4306,'Structured BASIC',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4307,'Beginners All-Purpose Symbolic',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4308,'Beginner''s All-Purpose Symbolic',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4309,'ROM BASIC programming language',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4310,'Beginners All-Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4311,'BASIC language',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4312,'BASIC (programming language)',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4313,'Beginners All-purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4314,'Basic (computer language)',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4315,'Beginners'' All Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4316,'ANSI BASIC',9,301,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4317,'BASIC programming language',9,301,'also_known_as'); +INSERT INTO entity_mentions VALUES(4318,'Beginner''s All-purpose Symbolic Instruction Code',9,301,'also_known_as'); +INSERT INTO entity_mentions VALUES(4319,'C prog',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4320,'C programming Language',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4321,'C-programming',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4322,'C programming language/Evolution',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4323,'C (computer language)',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4324,'C (programming langage)',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4325,'C lang',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4326,'C (lang)',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4327,'C programing language',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4328,'C (programming)',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4329,'C78 (C version)',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4330,'C programming',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4331,'C Language',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4332,'C language',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4333,'C Programming',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4334,'C program',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4335,'C programming language/K and R C',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4336,'C (language)',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4337,'32/16 bit C programming',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4338,'C (software)',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4339,'C(programming language)',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4340,'C (Programming Language)',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4341,'Programming language C',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4342,'Computer language C',9,303,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4343,'C programming language',9,303,'also_known_as'); +INSERT INTO entity_mentions VALUES(4344,'C# (programming language)',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4345,'C++++',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4346,'Visual C Sharp .Net',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4347,'Visual C Sharp Express Edition',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4348,'C♯ (programming language)',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4349,'Microsoft Visual C ♯',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4350,'C Sharp language',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4351,'C# programming language',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4352,'ISO/IEC 23270',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4353,'C Sharp Programming Language',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4354,'Microsoft Visual C Sharp',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4355,'C-sharp programming language',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4356,'C ♯ (programming language)',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4357,'C hash',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4358,'C♯ (language)',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4359,'C sharp (computing)',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4360,'CS (programming language)',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4361,'C sharp (language)',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4362,'C Sharp (language)',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4363,'ECMA-334',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4364,'C-hash',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4365,'C sharp 6.0',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4366,'C♯ programming language',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4367,'Visual C Sharp',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4368,'C Sharp 5.0',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4369,'C-Hash',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4370,'C sharp programming language',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4371,'ISO 23270',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4372,'C Sharp Programming language',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4373,'C Sharp (computing)',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4374,'C # (programming language)',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4375,'C sharp (programming language)',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4376,'C hashtag',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4377,'C Pound',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4378,'C Sharp programming language',9,582,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4379,'C plus plus',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4380,'C++ 1.0',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4381,'C plus plus programming language',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4382,'ISO/IEC 14882:2003',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4383,'C++ standard',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4384,'Standard C++ Foundation',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4385,'ISO/IEC 14882',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4386,'Sepples',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4387,'Cee plus plus',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4388,'C++ program',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4389,'C++ (Programming Language)',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4390,'C+++',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4391,'C++ syntax',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4392,'ANSI C++',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4393,'ISO C++',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4394,'C++ (programming language)',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4395,'C++ 2.0',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4396,'C++ language',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4397,'Cee Plus Plus',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4398,'C Plus Plus programming language',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4399,'Core language',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4400,'ISO C++ programming language',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4401,'Cplusplus',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4402,'C++ programming language',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4403,'C++98',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4404,'ISO/IEC 14882:2014',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4405,'++C',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4406,'CPlusPlus',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4407,'ISO/IEC 14882:2015',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4408,'C-plus-plus programming language',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4409,'C-plus-plus',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4410,'C Plus Plus',9,583,'also_known_as'); +INSERT INTO entity_mentions VALUES(4411,'Microsoft C',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4412,'Visual C++ .NET 2003',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4413,'Embedded Visual C++',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4414,'Visual C++ 2002',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4415,'Visual C++ 5.0',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4416,'Visual C++ 2010',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4417,'Visual C++ .NET 2002',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4418,'Visual C++ 2003',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4419,'Vc++',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4420,'MSVC90',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4422,'MSVC 2005',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4423,'Embedded visual c plus plus',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4424,'Visual C++ 6.0',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4425,'Visual C++ 2.0',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4427,'Visual C plus plus',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4428,'Visual C Plus Plus',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4429,'MSVC80',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4430,'Visual C++ 4.0',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4431,'Visual C++ 2012',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4432,'Visual C++ 4.2',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4433,'VisualC++',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4434,'MSVC110',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4435,'VC++',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4436,'MSVC120',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4437,'Microsoft C compiler',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4438,'MSVC 2010',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4439,'Microsoft Visual C plus plus',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4440,'MSVC100',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4441,'MSVC71',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4442,'Vc9',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4443,'MSVC 2013',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4444,'Visual C++ 1.0',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4445,'MSVC 2003',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4446,'Msvc',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4447,'Visual C++ 2013',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4448,'Microsoft Visual C Plus Plus',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4449,'Visual C++ 2005',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4450,'MSVC 2002',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4451,'MSVC 2008',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4452,'MSVC 2012',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4453,'Visual c',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4454,'MS Visual C++',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4455,'Vc6',9,306,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4459,'Cascading Stylesheets',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4460,'Css1',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4461,'Cascading Style Sheet',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4462,'CSS stylesheet',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4463,'CSS selector',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4464,'CSS (internet)',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4465,'Cascading style sheets',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4466,'CSS1',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4467,'Css 2.1',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4468,'Aural Cascading Style Sheets',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4469,'Css3',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4470,'CSS 2',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4471,'CSS2',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4472,'CSs',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4473,'CSS 1.0',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4474,'Text/css',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4475,'Css 2.0',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4476,'CSS4',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4477,'Cascading Style Sheets - CSS',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4478,'Css 3',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4479,'Css',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4480,'Cascading style sheet',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4481,'CSS 4',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4482,'XML/XSL skin',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4483,'CSS styles',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4484,'CSS style sheets',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4485,'Cascading Style Sheets 4',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4486,'CSS styling',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4487,'CSS 3.0',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4488,'CSS style',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4489,'CSS2.1',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4490,'Cascading stylesheets',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4491,'Css2',9,307,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4492,'CSS3',9,307,'also_known_as'); +INSERT INTO entity_mentions VALUES(4493,'Clipper programming language',9,308,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4494,'CA clipper',9,308,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4495,'Clipper prog',9,308,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4496,'CA-Clipper',9,308,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4497,'Clist',9,309,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4498,'CoBoL',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4499,'COBOL-85',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4500,'COBOL 20XX',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4501,'COBOL 85',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4502,'ISO/IEC 1989',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4503,'MF-COBOL',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4504,'O-O COBOL',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4505,'COBOL programming language',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4506,'COBOL-74',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4507,'COBOL 60',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4508,'ISO 1989',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4509,'COBOL 74',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4510,'COBOL74',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4511,'COBOL-68',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4512,'OO COBOL',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4513,'COBOL language',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4514,'COBOL 1985',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4515,'Common Ordinary Business-Oriented Language',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4516,'COBOL 1968',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4517,'COBOL 2014',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4518,'Object-oriented COBOL',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4519,'Common Business Oriented Language',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4520,'COBOL (programming language)',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4521,'X3J4',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4522,'COBOL68',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4523,'COBOL 1974',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4524,'COBOL85',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4525,'OO-COBOL',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4526,'COBOL-60',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4527,'COmmon Business-Oriented Language',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4528,'COBOL 1960',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4529,'COBOL 2002',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4530,'RM/COBOL',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4531,'COBOL 68',9,594,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4532,'Common Business-Oriented Language',9,594,'also_known_as'); +INSERT INTO entity_mentions VALUES(4533,'Cobol',9,594,'also_known_as'); +INSERT INTO entity_mentions VALUES(4535,'Cfml',9,311,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4536,'Data Language/1',9,312,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4537,'IBM Data Language One (DL/1)',9,312,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4539,'DL/1',9,312,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4540,'Borland Delphi 2006',9,313,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4541,'Delphi rad',9,313,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4542,'Delphi 2006',9,313,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4543,'Delphi XE2',9,313,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4544,'RAD Studio',9,313,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4545,'Embarcadero RAD Studio',9,313,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4546,'Delphi 2009',9,313,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4547,'Delphi XE',9,313,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4548,'CodeGear Delphi',9,313,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4549,'Delphi (IDE)',9,313,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4550,'Delphi XE4',9,313,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4551,'Delphi XE3',9,313,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4552,'Borland Delphi',9,313,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4553,'Delphi code',9,313,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4554,'Delphi 4',9,313,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4555,'Embarcadero Delphi',9,313,'also_known_as'); +INSERT INTO entity_mentions VALUES(4558,'Xhtml11',9,316,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4559,'Xhtml strict',9,316,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4560,'XHTML 1.0',9,316,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4561,'XHTML 1.1',9,316,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4562,'Xhtml',9,316,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4563,'Xht',9,316,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4564,'Xhtml 2',9,316,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4565,'EXtensible HyperText Markup Language',9,316,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4566,'XHTML2',9,316,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4567,'X(HTML)',9,316,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4568,'XHTML 2.0',9,316,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4569,'Extensible HyperText Markup Language',9,316,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4570,'XHTML 2',9,316,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4571,'Extensible Hypertext Markup Language',9,316,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4572,'EXtensible Hypertext Markup Language',9,316,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4573,'(X)HTML',9,316,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4574,'XML feed',9,596,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4575,'XML feeds',9,596,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4576,'Well-formed XML',9,596,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4577,'Extended markup language',9,596,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4578,'EXtensible Markup Language',9,596,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4579,'Xml:lang',9,596,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4580,'Xml parser',9,596,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4581,'XML tag set',9,596,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4582,'Web3S',9,596,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4583,'Extensible markup language',9,596,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4584,'Xml',9,596,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4585,'Extended Markup Language',9,596,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4586,'Dynamic XML',9,596,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4587,'XML parser',9,596,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4588,'Text/xml',9,596,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4590,'Valid XML document',9,596,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4591,'MS XML',9,318,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4592,'Microsoft XML Core Services',9,318,'also_known_as'); +INSERT INTO entity_mentions VALUES(4593,'Xsl',9,319,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4594,'Extensible stylesheet language',9,319,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4595,'EXtensible Stylesheet Language',9,319,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4596,'XSL stylesheet',9,319,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4597,'XSL stylesheets',9,319,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4599,'XML template engine',9,320,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4600,'XSL Transformation',9,320,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4601,'XSLT 2.0',9,320,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4602,'Xslt',9,320,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4603,'XSLT processor',9,320,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4604,'XLST',9,320,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4605,'XML template processor',9,320,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4606,'XSL-T',9,320,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4607,'XSL Transformations',9,320,'also_known_as'); +INSERT INTO entity_mentions VALUES(4609,'Focus (software)',9,321,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4610,'Focus software',9,321,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4611,'FORTRAN',9,322,'also_known_as'); +INSERT INTO entity_mentions VALUES(4612,'Formula Translation',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4613,'Fortran 77',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4614,'FORTRAN II',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4615,'Formula Translator',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4616,'FORTRAN 66',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4617,'FORTRAN programming language',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4618,'Fortran (programming language)',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4619,'Fortran 2018',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4620,'Fortran IV',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4621,'Fortran 2008',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4622,'Format (Fortran 66)',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4623,'Fortran 66',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4624,'Fortran programming language',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4625,'FORTRAN77',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4626,'ECMA-9',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4627,'Fortran language',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4628,'FORTRAN IV',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4629,'Fortran 95',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4630,'F77',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4631,'Fortran 2003',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4632,'FORTRAN 77',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4633,'Visual Fortran',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4634,'Fortran 90',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4635,'FORTRAN (programming language)',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4636,'FORTRAN 86',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4637,'Formula translation',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4638,'F2003',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4639,'Fort77',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4640,'Fortran 5 (programming language)',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4641,'F95',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4642,'Fortran 8X',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4643,'Fortran 2015',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4644,'Fortran-66',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4645,'FORTRAN I',9,322,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4646,'Go (Programming language)',9,323,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4647,'Gccgo',9,323,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4648,'Go Programming Language',9,323,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4649,'Google go',9,323,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4650,'Go language',9,323,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4651,'Golang',9,323,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4652,'Go google',9,323,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4653,'Go (language)',9,323,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4654,'GoLang',9,323,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4655,'Go lang',9,323,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4656,'Go programming language',9,323,'also_known_as'); +INSERT INTO entity_mentions VALUES(4657,'Google Go',9,323,'also_known_as'); +INSERT INTO entity_mentions VALUES(4658,'Graphql',9,324,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4660,'Dynamic Hypertext Markup Language',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4661,'HTML file',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4662,'Hypertext markup language',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4664,'Basic HTML',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4665,'HTM file',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4666,'HTML 4.01',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4667,'ISO/IEC HTML',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4668,'Hyper text Markup Language',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4670,'Hyper Text Markup Language',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4671,'HTML2',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4672,'HTML 4',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4673,'HTML 3.2',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4674,'HTML+',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4675,'HLMT',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4676,'ISO/IEC 15445',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4677,'Hyper text markup language',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4678,'Html comment',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4679,'HTML code',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4680,'HTML strict',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4681,'HyperText Markup Language',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4682,'HTML 4.0',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4683,'Html',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4684,'Html language',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4685,'Html code',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4686,'HTML File Format',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4687,'HTML syntax',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4688,'HTML 3',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4689,'HMTL',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4690,'Text/html',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4691,'Html coding',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4692,'HTML 2',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4693,'HTML3',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4694,'Html 4.01',9,327,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4696,'HLASM',9,328,'also_known_as'); +INSERT INTO entity_mentions VALUES(4697,'IBM High-Level Assembler',9,328,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4699,'AS/400 Control Language',9,329,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4700,'CL Programming',9,329,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4701,'Control Language Programming',9,329,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4702,'CL (OS/400 command interpreter)',9,329,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4703,'AS/400 Command Language',9,329,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4704,'IBM i Control Language',9,329,'also_known_as'); +INSERT INTO entity_mentions VALUES(4705,'Informix 4GL/SQL',9,330,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4707,'Java programming language',9,584,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4708,'Javax',9,584,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4709,'Java (software)',9,584,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4710,'Java (Programming language)',9,584,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4711,'Javalang',9,584,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4712,'Java Programming',9,584,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4713,'JPD (file format)',9,584,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4714,'Java (programming)',9,584,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4715,'Java (langage)',9,584,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4716,'Java language',9,584,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4717,'Java technology',9,584,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4718,'Flow Java',9,584,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4719,'Java (language)',9,584,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4720,'Java programming',9,584,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4721,'Java (Programming Language)',9,584,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4722,'Java prog',9,584,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4723,'Java code',9,584,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4724,'Java computer language',9,584,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4725,'Java Programing Languge',9,584,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4732,'JavaEE',9,333,'also_known_as'); +INSERT INTO entity_mentions VALUES(4734,'J2EE',9,333,'also_known_as'); +INSERT INTO entity_mentions VALUES(4735,'Enterprise Java',9,333,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4736,'Java enterprise',9,333,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4737,'JSR 313',9,333,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4738,'Java EE 5',9,333,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4739,'Java Platform',9,333,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4741,'Java Enterprise Platform',9,333,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4742,'JSR 58',9,333,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4743,'Java 2 Platform Enterprise',9,333,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4744,'Java ee',9,333,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4745,'J2EE 1.4',9,333,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4746,'Jakarta Enterprise Edition',9,333,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4747,'J2EE 1.3',9,333,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4748,'Java 2 Enterprise Edition',9,333,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4749,'J2EE 1.2',9,333,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4750,'JSR 151',9,333,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4751,'JSR 244',9,333,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4752,'J2ee',9,333,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4753,'J2SE',9,334,'also_known_as'); +INSERT INTO entity_mentions VALUES(4754,'Java 2 Platform Standard Edition',9,334,'also_known_as'); +INSERT INTO entity_mentions VALUES(4755,'Java SE',9,334,'also_known_as'); +INSERT INTO entity_mentions VALUES(4756,'JSR 59',9,334,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4757,'Javase',9,334,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4758,'J2se',9,334,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4759,'Java 2 Platform',9,334,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4760,'Java 2 Standard Edition',9,334,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4761,'Java Standard Edition',9,334,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4762,'JavaSE',9,334,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4763,'Java se',9,334,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4764,'JSR 270',9,334,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4765,'Java SE platform',9,334,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4766,'JSR 176',9,334,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4767,'JSR 152',9,335,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4768,'JSP compiler',9,335,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4769,'JSP container',9,335,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4770,'Jave Page',9,335,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4771,'Jakarta Server Pages compiler',9,335,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4772,'Jave Server',9,335,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4773,'Java server pages',9,335,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4774,'Javaserver pages',9,335,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4775,'Jsp2',9,335,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4776,'JSP files',9,335,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4777,'Java Server Page',9,335,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4778,'Java Server Pages',9,335,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4779,'JSP engine',9,335,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4780,'JSPF',9,335,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4781,'JSR 245',9,335,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4782,'JavaServer Pages compiler',9,335,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4783,'JavaServer Page',9,335,'also_known_as'); +INSERT INTO entity_mentions VALUES(4785,'Scriptlets',9,336,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4786,'JavaScripts',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4787,'Live-script',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4788,'JavaScript programming language',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4789,'Mocha (programming language)',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4790,'JavaScript rollover',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4791,'Live-Script',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4792,'Javascript Console',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4793,'Server side javascript',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4794,'Live script',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4795,'Javascript programming language',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4796,'JavaScript Forums',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4797,'JavaScript 1.6',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4799,'JavaScript language',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4800,'Escript',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4801,'JavaScript (programming language)',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4802,'Client-side JavaScript',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4803,'Javascript (programming language)',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4804,'Vanilla JS',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4805,'SSJS',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4806,'Javascript 1.7',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4807,'Java script',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4809,'JavaScript 1.7',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4810,'DOM scripting',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4811,'Vanilla JavaScript',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4812,'Live Script',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4813,'CSJS',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4814,'Server-side JavaScript',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4815,'Server-Side JavaScript',9,589,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4816,'IBM JCL',9,338,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4817,'Job Control Statements',9,338,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4818,'Job management language',9,338,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4819,'Job entry control language',9,338,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4820,'JECL',9,338,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4821,'Job control language',9,338,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4822,'Jscript',9,340,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4823,'Microsoft JScript',9,340,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4824,'JS script',9,340,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4825,'ActiveXObject',9,340,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4826,'Managed JScript',9,340,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4827,'Lisp computer language',9,341,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4828,'Lisp language',9,341,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4829,'Lisp atom',9,341,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4830,'LISP (programming language)',9,341,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4831,'LISP atom',9,341,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4832,'Lisp (programming)',9,341,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4833,'List Processing',9,341,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4834,'Lisp (language)',9,341,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4835,'MuLISP',9,341,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4836,'LISP',9,341,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4837,'LISP language',9,341,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4838,'Lisp 1.5',9,341,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4839,'LISP programming language',9,341,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4840,'Lisp programming language',9,341,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4841,'LISP 1.5',9,341,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4842,'Lithp (programming language)',9,341,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4843,'Lisp renaissance',9,341,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4844,'LISP (programming)',9,341,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4845,'NPL (Programming language)',9,342,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4846,'NPL programming language',9,342,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4848,'ObjC',9,343,'also_known_as'); +INSERT INTO entity_mentions VALUES(4849,'Objc',9,343,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4850,'Objective-C 2.0',9,343,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4851,'Objective C++',9,343,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4852,'Objective-C++',9,343,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4854,'Object C',9,343,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4855,'Objective-C (programming language)',9,343,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4856,'Obj-c',9,343,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4857,'ObjC programming language',9,343,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4858,'Objective c',9,343,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4859,'C and Smalltalk',9,343,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4860,'Objective-c',9,343,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4861,'ObjectiveC',9,343,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4862,'Obj C',9,343,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4863,'Objective-C programming language',9,343,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4864,'Obj C programming language',9,343,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4865,'Objective C programming language',9,343,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4866,'Objective C plus plus',9,343,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4867,'Obj-C programming language',9,343,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4868,'Smalltalk and C',9,343,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4869,'Object-C',9,343,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4870,'OpenEdge Advanced Business Language (ABL)',9,344,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4871,'OpenEdge Database',9,344,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4873,'OpenEdge Advance Business Language (ABL)',9,344,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4874,'Progress RDBMS',9,344,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4875,'Progress DBMS',9,344,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4876,'Advanced Business Language',9,344,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4877,'Progress (software)',9,344,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4878,'Progress4GL',9,344,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4879,'Webspeed',9,344,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4880,'Progress 4GL',9,344,'also_known_as'); +INSERT INTO entity_mentions VALUES(4881,'Pascal-SC',9,599,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4882,'Pascal-P1',9,599,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4883,'Pascal (language)',9,599,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4884,'Pascal-P',9,599,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4885,'Pascal programming language',9,599,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4886,'PASCAL-XSC',9,599,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4887,'Pascal-S',9,599,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4888,'Pascal Programming Language',9,599,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4889,'PASCAL-SC',9,599,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4890,'PASCAL (Programming language)',9,599,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4891,'Pascal-P2',9,599,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4892,'Pascal-P3',9,599,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4893,'Pascal-P system',9,599,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4894,'Pascal-P System',9,599,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4895,'Pascal-F',9,599,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4896,'Pascal (command)',9,599,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4897,'ISO/IEC 10206',9,599,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4898,'Pascal-P5',9,599,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4899,'Pascal language',9,599,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4900,'Pascal-p2',9,599,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4901,'Pascal 86',9,599,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4902,'Pascal-P4',9,599,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4903,'Pascal-XSC',9,599,'also_known_as'); +INSERT INTO entity_mentions VALUES(4904,'Delphi (language)',9,346,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4905,'Delphi programming language',9,346,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4906,'Delphi (programming language)',9,346,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4907,'Object-Oriented Pascal',9,346,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4908,'Delphi language',9,346,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4909,'Delphi (Computer Language)',9,346,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4910,'Delphi programming',9,346,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4911,'Perl 7',9,585,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4912,'Perl (programming language)',9,585,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4913,'Practical Extraction and Report Language',9,585,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4914,'Perl interpreter',9,585,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4915,'Vanilla Perl',9,585,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4916,'Practical Extraction And Report Language',9,585,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4917,'Ponie',9,585,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4918,'Embedded Perl',9,585,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4919,'Perl language',9,585,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4920,'X-perl',9,585,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4921,'Perl programming language',9,585,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4922,'Swiss army chainsaw',9,585,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4923,'IndigoPerl',9,585,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4924,'Perl code',9,585,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4925,'Swiss-army chainsaw',9,585,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4926,'Perl5',9,585,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4927,'PONIE',9,585,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4928,'PERL',9,585,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4929,'Perl 5',9,585,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4930,'Perl programming',9,585,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4931,'Perl (language)',9,585,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4932,'PerlScript',9,348,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4933,'Active Perl',9,348,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4934,'Activeperl',9,348,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4935,'Perlscript',9,348,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4947,'Perl Golf',9,349,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4958,'Php language',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4959,'Php (programming language)',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4960,'Zend Engine 3',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4961,'Php 5.3',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4962,'PHP interpreter',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4963,'PHP (programming language)',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4964,'Php 4',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4965,'PHP 5',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4966,'PHPNG',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4967,'PHP8',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4968,'PHP Next Generation',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4969,'PHP5-FPM',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4970,'PHP5',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4971,'PHP4',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4972,'Php 5.4',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4973,'Php 5.1',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4974,'PHP-FPM',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4975,'Php',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4976,'PHTML',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4977,'PHP/FI',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4978,'Php-fpm',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4979,'Php6',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4980,'PHP 6',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4981,'Php 5.0',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4982,'PHP3',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4983,'Php 6.0',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4984,'Zephir (programming language)',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4985,'Php1',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4986,'PHP:Hypertext Preprocessor',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4987,'Php 3',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4988,'PHP7',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4989,'PHP programming',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4990,'Phtml',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4991,'Php 5.2',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4992,'Php5',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4993,'Php2',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4994,'Phpng',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4995,'PHP Hypertext Preprocessor (programming language)',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4996,'PHP next generation',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4997,'Php3',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4998,'PHP6',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(4999,'PHP programing language',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5000,'PHP 7',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5001,'Php 1',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5002,'Php 2',9,586,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5003,'Hypertext Preprocessor',9,586,'also_known_as'); +INSERT INTO entity_mentions VALUES(5004,'PHP programming language',9,586,'also_known_as'); +INSERT INTO entity_mentions VALUES(5005,'PHP: Hypertext Preprocessor',9,586,'also_known_as'); +INSERT INTO entity_mentions VALUES(5006,'PHP Hypertext Preprocessor',9,586,'also_known_as'); +INSERT INTO entity_mentions VALUES(5007,'SL/1',9,351,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5009,'Pl/1',9,351,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5010,'PL1 language',9,351,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5011,'PL/I programming language',9,351,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5012,'Visual PL/1',9,351,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5013,'DEC PL/I',9,351,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5014,'PL/I-80',9,351,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5015,'PL/MP',9,351,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5016,'Raincode PL/1',9,351,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5017,'PL/I-86',9,351,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5018,'PLI programming language',9,351,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5019,'PL/I (programming language)',9,351,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5020,'PL1 programming language',9,351,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5021,'PL/MI',9,351,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5022,'PLI-86',9,351,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5023,'VAX PL/I',9,351,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5024,'PL/Ⅰ',9,351,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5025,'RainCode PL/1',9,351,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5026,'PL/1 programming language',9,351,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5027,'StepSqlite',9,352,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5028,'PLSQL',9,352,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5029,'P/SQL',9,352,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5031,'Pro*C++',9,353,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5032,'Pro C',9,353,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5033,'Pro*C/C++',9,353,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5034,'Python scripting language',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5035,'Python program',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5036,'PythonLanguage',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5037,'Python computer language',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5038,'Python code',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5039,'Python3',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5040,'Python (computing)',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5041,'Python programming language',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5042,'Python programming',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5043,'Pythonistas',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5044,'PEP8',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5045,'Pyston',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5046,'Python language',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5047,'Python (lang)',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5048,'Python2',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5049,'Python3000',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5050,'Python 3k',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5051,'Python (language)',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5052,'Coconut (programming language)',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5053,'Python (software)',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5054,'Pythonlang',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5055,'Python prog',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5056,'Python Programming',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5057,'Python Programming Language',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5058,'Python (scripting language)',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5059,'Pythonista',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5060,'Python (programming)',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5061,'Python (Programming Language)',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5062,'Python (computer language)',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5063,'Python 3K',9,587,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5064,'R project',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5065,'R (programming)',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5066,'R Shiny',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5067,'GNU-S',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5068,'RStat',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5069,'R programming language',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5070,'R Statistics',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5071,'R-stat',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5072,'R lang',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5073,'RPro',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5074,'R code',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5075,'R-Project',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5076,'R (computer language)',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5077,'R Project',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5078,'R programming',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5079,'R (program)',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5080,'R-project',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5081,'R (software)',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5082,'R-Stat',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5083,'Rstat',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5084,'RGL (software package)',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5085,'R (language)',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5086,'Rlang',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5087,'ParallelR',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5088,'R Open',9,355,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5089,'GNU R',9,355,'also_known_as'); +INSERT INTO entity_mentions VALUES(5090,'GNU S',9,355,'also_known_as'); +INSERT INTO entity_mentions VALUES(5091,'R language',9,355,'also_known_as'); +INSERT INTO entity_mentions VALUES(5092,'Quercus Personal REXX',9,356,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5093,'Personal Rexx',9,356,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5094,'Personal REXX',9,356,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5095,'REstructured eXtended eXecutor',9,356,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5096,'Enterprise REXX',9,356,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5097,'Rexx programming language',9,356,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5098,'IBM REXX',9,356,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5099,'Restructured Extended Executor',9,356,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5100,'REXX',9,356,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5101,'Kilowatt Portable REXX',9,356,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5102,'Pmrexx',9,356,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5103,'Enterprise Alternatives REXX',9,356,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5104,'Kilowatt Portable Rexx',9,356,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5105,'Restructured extended executor',9,356,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5106,'Quercus Personal Rexx',9,356,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5107,'REXX (programming language)',9,356,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5108,'Portable REXX',9,356,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5109,'Portable Rexx',9,356,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5110,'REXX programming language',9,356,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5111,'Report Program Generator',9,357,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5112,'Report program generator',9,357,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5113,'RPGLE',9,357,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5114,'RPG (programming language)',9,357,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5115,'IBM RPG (programming language)',9,357,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5116,'RPG IV',9,357,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5117,'RPG programming language',9,357,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5118,'Ruby (Programming Language)',9,588,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5119,'Ruby Programming Language',9,588,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5120,'Ruby programming',9,588,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5121,'Ruby Enterprise Edition',9,588,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5122,'Ruby language',9,588,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5123,'Ruby (language)',9,588,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5124,'Ruby (programming language',9,588,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5125,'Ruby (lang)',9,588,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5126,'Ruby lang',9,588,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5127,'Ruby-gnome2',9,588,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5128,'Ruby-language',9,588,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5129,'Ruby (computing)',9,588,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5130,'Ruby programming language',9,588,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5131,'Rubylang',9,588,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5132,'Ruby prog',9,588,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5133,'SAS (Software)',9,360,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5134,'SAS System',9,360,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5135,'SAS (programming language)',9,360,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5136,'SAS/STAT',9,360,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5137,'Interactive Matrix Language',9,360,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5138,'Statistical Analysis System',9,360,'also_known_as'); +INSERT INTO entity_mentions VALUES(5139,'Scss',9,361,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5140,'Sass CSS',9,361,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5141,'Sass (CSS)',9,361,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5142,'Sass (Stylesheet Language)',9,361,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5143,'Sass (markup language)',9,361,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5144,'SASS (language)',9,361,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5145,'Sass (software)',9,361,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5146,'Libsass',9,361,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5147,'Scala programming language',9,362,'also_known_as'); +INSERT INTO entity_mentions VALUES(5148,'Scala language',9,362,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5149,'Scala.js (programming language)',9,362,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5150,'ScalaNative',9,362,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5151,'ScalaNative (programming language)',9,362,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5152,'Scala-JS (Programming Language)',9,362,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5153,'Scala-JS',9,362,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5154,'Scala Native',9,362,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5155,'ScalaJS (Programming Language)',9,362,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5156,'Scala (programming language',9,362,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5157,'ScalaJs (programming language)',9,362,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5158,'Scala.js',9,362,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5159,'Scala Native (programming language)',9,362,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5160,'Smalltalk (programming language)',9,363,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5161,'Smalltalk programming language',9,363,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5162,'Smalltak',9,363,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5163,'Smalltalk-80',9,363,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5164,'Smalltalk Programming Language',9,363,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5165,'Smalltalk-72',9,363,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5166,'SmallTalk',9,363,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5167,'Smalltalk/V',9,363,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5168,'Visual Smalltalk',9,363,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5169,'Smalltalk 80',9,363,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5170,'SmallTalk programming language',9,363,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5171,'Swift (Apple programming language)',9,364,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5172,'Swift programming language',9,364,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5173,'Swift language',9,364,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5174,'Apple Swift',9,364,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5175,'SwiftNIO',9,364,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5176,'Swiftlang',9,364,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5177,'Tool Command Language',9,365,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5178,'Safe-Tcl',9,365,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5179,'Tcl (computer language)',9,365,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5180,'Object-oriented programming in Tcl',9,365,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5181,'Tcl (programming language)',9,365,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5182,'Tcl programming language',9,365,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5183,'Tcl/tk',9,365,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5184,'TclTk',9,365,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5185,'Tsql',9,366,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5188,'T-sql',9,366,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5190,'Microsoft TypeScript',9,367,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5192,'Microsoft Visual Basic.NET',9,368,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5193,'VB.Net',9,368,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5194,'VB.net',9,368,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5195,'Microsoft Visual Basic 2008 Express',9,368,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5196,'VB 2005',9,368,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5197,'VBx',9,368,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5198,'Vb dot net',9,368,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5199,'Visual Basic 2005',9,368,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5201,'Visual BASIC .net',9,368,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5202,'Visual Basic.NET',9,368,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5203,'Vb.net',9,368,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5204,'Visual Basic (.NET Version)',9,368,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5205,'Visual Basic .NET 2003',9,368,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5206,'VB .NET',9,368,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5207,'Visual basic .net',9,368,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5208,'Visual Basic.net',9,368,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5209,'Visual Basic.Net',9,368,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5210,'Microsoft Visual Basic .NET',9,368,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5211,'Visual Basic .net',9,368,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5212,'Vbscript',9,369,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5214,'VBS Script',9,369,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5215,'VBScript (programming language)',9,369,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5216,'VBSCRIPT',9,369,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5217,'VB script',9,369,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5218,'Visual Basic Scripting',9,369,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5220,'Visual Basic Script Edition',9,369,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5221,'Visual Basic Scripting Edition',9,369,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5222,'VBSScript',9,369,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5223,'Visual Basic Script',9,369,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5224,'VbScript',9,369,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5225,'VBScript programming language',9,369,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5226,'Visual Basic 6',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5227,'Visual basic',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5228,'Microsoft Visual Basic 5.0',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5229,'Visual basic 6',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5230,'Microsoft Visual Basic 6.0',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5231,'Vbasic',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5232,'Microsoft Visual Basic 6',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5234,'VB4',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5236,'Classic Visual Basic',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5237,'Microsoft Visual Basic',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5238,'Hummingbird Basic',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5239,'MSVB',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5240,'VBP',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5241,'VB3',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5242,'Visual Basic 6 Portable',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5243,'Visual Basic programming language',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5244,'Microsoft Visual BASIC',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5245,'VBLang',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5246,'Visual Basic Control',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5247,'VisualBasic',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5248,'VBDOS 1.0',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5249,'Virtual Basic',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5250,'Visual BASIC',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5251,'Visual Basic Classic',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5252,'Visual Basic 5',9,370,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5253,'Microsoft visual basic for applications',9,371,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5254,'Visual Basic for Applications programming language',9,371,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5255,'Visual basic for applications',9,371,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5256,'Visual Foxpro',9,372,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5257,'Visual Fox pro',9,372,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5258,'Microsoft Visual FoxPro',9,372,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5259,'Microsoft Visual Fox pro',9,372,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5260,'Microsoft Visual Foxpro',9,372,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5261,'Visual FoxPro programming language',9,372,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5262,'Visual Fox Pro',9,372,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5263,'Microsoft Visual Fox Pro',9,372,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5265,'Voice XML',9,373,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5266,'Voicexml',9,373,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5268,'XBase plus plus',9,374,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5269,'Clucene',12,375,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5270,'KinoSearch',12,375,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5271,'Kinosearch',12,375,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5272,'Solr/Lucene',12,375,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5274,'Apache Xerces',12,376,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5275,'Bootstarpping',12,377,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5276,'Boot strap',12,377,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5277,'Bootstrapped',12,377,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5278,'Bootstrap support',12,377,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5279,'Bootstrapping (computing)',12,377,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5280,'Bootstrapper',12,377,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5281,'Boot-strap',12,377,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5282,'Bootstrap (word origin)',12,377,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5283,'Java|Apache Camel',12,378,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5284,'Java|Apache Commons BeanUtils',12,379,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5286,'Velocity apache',12,381,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5287,'Velocity (software)',12,381,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5288,'Jakarta Velocity',12,381,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5289,'Java|EclipseLink',12,382,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5292,'Enterprise Java Beans',12,383,'also_known_as'); +INSERT INTO entity_mentions VALUES(5293,'Enterprise Beans',12,383,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5294,'Enterprise beans',12,383,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5295,'Enterprise JavaBean',12,383,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5296,'Enterprise Bean',12,383,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5297,'SLSB',12,383,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5298,'Enterprise bean',12,383,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5299,'SFSB',12,383,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5300,'Jakarta Enterprise Bean',12,383,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5301,'Bean-Managed Persistence',12,383,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5302,'Enterprise Java Bean',12,383,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5303,'Java Enterprise Bean',12,383,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5304,'EJB Container',12,383,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5305,'Jakarta Enterprise beans',12,383,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5306,'Jakarta Enterprise bean',12,383,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5307,'JSR 153',12,383,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5308,'JSR 19',12,383,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5309,'EJB container',12,383,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5310,'Ejb',12,383,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5311,'JSR 220',12,383,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5312,'Container-Managed Persistence',12,383,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5313,'Message-driven EJB',12,383,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5314,'JSNI',12,385,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5315,'Hibernate Query Language',12,386,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5316,'Hibernate (Java)',12,386,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5317,'Hibernate OGM',12,386,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5318,'Hibernate (software)',12,386,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5319,'Hibernet',12,386,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5320,'Hibernate Core',12,386,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5321,'Hibernate (java)',12,386,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5322,'Java 2 SDK',12,388,'also_known_as'); +INSERT INTO entity_mentions VALUES(5324,'Java SDK',12,388,'also_known_as'); +INSERT INTO entity_mentions VALUES(5325,'J2SDK',12,388,'also_known_as'); +INSERT INTO entity_mentions VALUES(5326,'Java 2 Software Development Kit',12,388,'also_known_as'); +INSERT INTO entity_mentions VALUES(5327,'JDK 1.2',12,388,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5328,'Java Development Toolkit',12,388,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5329,'Java jdk',12,388,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5330,'JSR 914',12,389,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5331,'Java messaging service',12,389,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5333,'JNLP',12,390,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5334,'Web Start',12,390,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5335,'Java webstart',12,390,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5336,'Java Network Launching Protocol',12,390,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5337,'JavaWS',12,390,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5338,'Webstart',12,390,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5339,'JSR 56',12,390,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5340,'Javaws',12,390,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5341,'Java web start',12,390,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5342,'Java Webstart',12,390,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5343,'JSR 127',12,391,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5344,'JSR 252',12,391,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5345,'Java Server Faces',12,391,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5346,'Javaserver faces',12,391,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5349,'Jdbc',12,392,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5350,'Java Data Base Connectivity',12,392,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5352,'JRuby programming language',12,393,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5353,'JRuby language',12,393,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5354,'Jruby',12,393,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5355,'Apache Log4net',12,394,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5356,'Log4javascript',12,394,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5357,'Apache log4net',12,394,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5358,'Log4js',12,394,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5359,'Log4Net',12,394,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5360,'Log4c',12,394,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5361,'Log4J',12,394,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5362,'Quartz job scheduler',12,395,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5363,'JRMI',12,396,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5364,'Remote Method Invokation',12,396,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5365,'Java Remote Method Invocation',12,396,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5366,'Rmic',12,396,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5368,'Free-source',12,397,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5369,'Free source',12,397,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5370,'Four Freedoms (software)',12,397,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5371,'Free (software)',12,397,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5372,'Software Libre',12,397,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5373,'Libre software',12,397,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5374,'Free-source software',12,397,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5375,'Free-libre software',12,397,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5376,'Four Freedoms (Free software)',12,397,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5377,'Libre Software',12,397,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5378,'Freedom-ware',12,397,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5379,'4 software freedoms',12,397,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5380,'Free sofware',12,397,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5381,'Free-software',12,397,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5382,'FSF''s "free software" ideal',12,397,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5383,'Free and Open Source Software (FOSS) for development',12,397,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5384,'Freedomware',12,397,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5385,'Free computer software',12,397,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5386,'Freed Software',12,397,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5387,'Freedom software',12,397,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5388,'Software libre',12,397,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5389,'Free software development',12,397,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5390,'Four Freedoms (free software)',12,397,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5391,'Spring (Java)',12,398,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5392,'Spring framework',12,398,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5394,'Spring beans',12,398,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5395,'Spring (framework)',12,398,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5396,'Spring Boot',12,398,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5397,'Java Spring',12,398,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5398,'Spring Framework (Java)',12,398,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5399,'Springframework',12,398,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5400,'Spring IOC Framework',12,398,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5401,'Spring AOP framework',12,398,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5402,'Spring AOP',12,398,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5403,'The Spring Framework',12,398,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5404,'Java|Spring|Spring Boot',12,399,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5405,'Jakarta Struts',12,402,'also_known_as'); +INSERT INTO entity_mentions VALUES(5406,'Struts Studio',12,402,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5407,'Struts Framework',12,402,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5408,'Java Struts',12,402,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5409,'Swing (java)',12,403,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5410,'Swing java',12,403,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5411,'Java Swing',12,403,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5412,'Javax.swing',12,403,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5413,'IT Mill Toolkit',12,404,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5414,'Ajax framework',12,405,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5415,'Ajax programming',12,405,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5416,'CAJAX',12,405,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5417,'Ajax scripts',12,405,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5418,'AJAX (programming)',12,405,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5419,'AJAXy',12,405,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5420,'AJAX framework',12,405,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5421,'Ajax desktops',12,405,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5422,'Asynchronous Javascript and XML',12,405,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5423,'Ajax language',12,405,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5424,'Ajax (software)',12,405,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5425,'Asynchronous JavaScript and JSON',12,405,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5426,'Asynchronous JavaScript and XML',12,405,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5427,'AJAX Framework',12,405,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5428,'AJAJ',12,405,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5431,'Angular.js',12,406,'also_known_as'); +INSERT INTO entity_mentions VALUES(5432,'MVW framework',12,406,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5433,'Scope (AngularJS)',12,406,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5434,'Angularjs',12,406,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5435,'Expressjs',12,408,'also_known_as'); +INSERT INTO entity_mentions VALUES(5436,'Ext Core',12,409,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5437,'Extjs',12,409,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5438,'Ext (JavaScript library)',12,409,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5440,'Ext (javascript library)',12,409,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5441,'CssQuery',12,411,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5442,'Jquery Library',12,411,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5443,'Jquery',12,411,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5444,'JQueryUI',12,412,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5445,'React.js',12,413,'also_known_as'); +INSERT INTO entity_mentions VALUES(5447,'Reactjs',12,413,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5448,'Facebook React',12,413,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5449,'React (web framework)',12,413,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5450,'React JS',12,413,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5451,'React Fiber',12,413,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5452,'JavaScript|script.aculo.us',12,414,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5453,'Android operating system',6,418,'also_known_as'); +INSERT INTO entity_mentions VALUES(5454,'Android OS',6,418,'also_known_as'); +INSERT INTO entity_mentions VALUES(5455,'Google Android',6,418,'also_known_as'); +INSERT INTO entity_mentions VALUES(5456,'Android (software stack)',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5457,'Android system',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5458,'Android (phone)',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5459,'Android (Google)',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5460,'Android phone operating system',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5461,'Google Android Linux OS',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5462,'Android (Operating System)',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5463,'Android (mobile device platform)',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5464,'Android Apps',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5465,'Android Phone',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5466,'Android cell phone',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5467,'Honeycomb',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5468,'Android software',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5469,'Android google',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5470,'Android 3.0 Honeycomb',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5471,'Android platform',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5472,'Android cellphone',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5473,'Android device',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5474,'Android mobile phone',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5475,'Mobile Android',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5476,'Android 3.0',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5478,'Android phone',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5479,'TaintDroid',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5480,'Google android',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5481,'Android (system)',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5482,'Android Open Source Project',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5483,'Android app',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5484,'Os android',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5485,'Android (software)',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5486,'Android application',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5487,'Android (os)',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5488,'Android.os',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5489,'Android (OS)',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5490,'Android Device Manager',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5491,'Android (platform)',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5492,'Android client',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5493,'IDroid',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5494,'Android (company)',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5495,'Android-powered device',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5496,'Android (mobile phone platform)',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5497,'Android Operating System',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5498,'Android devices',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5499,'Google''s Android',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5500,'Android mobile',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5501,'Android fork',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5502,'Android (google)',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5503,'Surfaceflinger',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5504,'Android os',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5505,'Android mobile phone platform',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5506,'Google Android One',6,418,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5507,'B.E.O.S',6,419,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5508,'Be OS',6,419,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5509,'Internetwork Operating System',6,420,'also_known_as'); +INSERT INTO entity_mentions VALUES(5510,'IOS (Cisco)',6,420,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5511,'CIOSS',6,420,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5512,'Interface Descriptor Block',6,420,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5513,'Google Dash',6,421,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5514,'ECMA Dart',6,421,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5515,'Dart (language)',6,421,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5516,'Dart programming language',6,421,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5517,'Dart language',6,421,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5518,'DartLang',6,421,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5519,'ECMA-408',6,421,'also_known_as'); +INSERT INTO entity_mentions VALUES(5520,'Google Dart',6,421,'also_known_as'); +INSERT INTO entity_mentions VALUES(5521,'Fabos',6,422,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5522,'The GNU operating system',6,423,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5523,'GNU/DOS',6,423,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5524,'GNU System',6,423,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5525,'GNU Operating System',6,423,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5526,'The GNU system',6,423,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5527,'GNU OS',6,423,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5528,'GNU system',6,423,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5529,'GNU''s Not Unix',6,423,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5530,'GNU operating system',6,423,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5531,'I5os',6,424,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5532,'IBM OS/400',6,424,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5534,'IBM i5/OS',6,424,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5535,'I on Power',6,424,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5536,'IBM i on Power',6,424,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5538,'I5/OS',6,424,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5539,'IBM I5/OS',6,424,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5540,'I-OS',6,425,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5541,'OS X iPhone',6,425,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5542,'IPhoneOS',6,425,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5543,'IPhone Operating System',6,425,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5544,'IPhone os',6,425,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5545,'Mac OS X (iPhone)',6,425,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5546,'IOS Apple',6,425,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5547,'Ipod touch os',6,425,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5548,'IPod Touch OS',6,425,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5549,'IPhone OS',6,425,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5550,'Apple iPhone OS',6,425,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5551,'OS X Mobile',6,425,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5552,'IOS (Apple Inc.)',6,425,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5553,'Multitasking (iOS)',6,425,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5554,'Apple iOS',6,425,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5555,'Iphone os',6,425,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5556,'IPhone operating system',6,425,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5557,'AppleiOS',6,425,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5558,'IOS (Apple)',6,425,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5559,'IOS (operating system)',6,425,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5560,'Ios (Apple)',6,425,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5561,'Linux (operating system)',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5562,'LINUX',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5563,'Linuces',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5564,'GNU/Linux/X11',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5565,'LinuX',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5566,'Linux-based GNU system',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5567,'Gnu/Linux',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5568,'Linux+GNU',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5569,'Linux desktop',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5570,'Lienucks',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5571,'GNU-Linux',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5572,'Linux/GNU',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5573,'Desktop GNU/Linux',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5574,'Desktop Linux',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5575,'Linux Powered System',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5576,'Linux/gnu',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5577,'Linux server',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5578,'GNU-linux',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5579,'GNU/Linux',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5580,'Linux box',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5581,'GNULinux',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5582,'Lynux',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5583,'Linux OS',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5584,'Linices',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5585,'Linux-based GNU systems',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5586,'GNU/Linux/X',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5587,'Desktop linux',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5588,'GNU–Linux',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5589,'Gnu/linux',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5590,'Linux on the desktop',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5591,'GNU+Linux',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5592,'GNU Linux',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5593,'Linux (GNU/Linux)',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5594,'Lineux',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5595,'Linux/X11',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5596,'Linix',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5597,'Linux operating system',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5598,'Linux/X',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5599,'BlackRhino GNU/Linux',6,576,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5600,'Centos',6,427,'also_known_as'); +INSERT INTO entity_mentions VALUES(5601,'CentOs',6,427,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5602,'Centos7',6,427,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5603,'Centos Stream',6,427,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5604,'CentOS Linux',6,427,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5605,'Community Enterprise Operating System',6,427,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5606,'CAOS Linux',6,427,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5607,'Cent OS',6,427,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5608,'CentOS Stream',6,427,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5609,'CheckPoint INSPECT Code',6,428,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5610,'VPN-1',6,428,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5611,'FireWall-1',6,428,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5612,'VPN-1 Power',6,428,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5613,'FireWall-1/VPN-1',6,428,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5615,'Debian GNU/Linux',6,429,'also_known_as'); +INSERT INTO entity_mentions VALUES(5616,'Debian Sid',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5617,'Debian GNU Hurd',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5618,'Debian Unstable',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5619,'Debian GNU/kFreeBSD',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5620,'Debian/sid',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5621,'Debian GNU/FreeBSD',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5622,'Debian Live',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5623,'Embedded Debian',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5624,'Debian Project',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5625,'Debian stable',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5626,'Kfreebsd-i386',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5627,'Debian Multimedia Project',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5628,'Debian repository',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5629,'Debian GNU',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5630,'Sid (Debian)',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5631,'Debian LTS',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5632,'GNU/Debian',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5633,'Kfreebsd-amd64',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5634,'Debian gnu/kfreebsd',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5635,'Debian OS',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5636,'Embedian',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5637,'KFreeBSD',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5638,'Debian Manifesto',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5639,'Debian Hurd',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5640,'Debian GNU/Hurd',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5641,'Debian (operating system)',6,429,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5643,'Juniper JUNOS',6,430,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5644,'Juniper OS',6,430,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5645,'JUNOS',6,430,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5646,'Juniper Junos',6,430,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5647,'Junos SDK',6,430,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5648,'Junos',6,430,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5649,'OpenSuSE',6,431,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5650,'SUSE Linux Professional',6,431,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5651,'OpenSUSE 11',6,431,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5652,'OpenSUSE Linux',6,431,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5653,'Factory (openSUSE)',6,431,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5654,'Factory (software)',6,431,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5655,'OpenSuSe',6,431,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5656,'Tumbleweed (software)',6,431,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5657,'OpenSUSE Tumbleweed',6,431,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5658,'Open SUSE',6,431,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5660,'Tumbleweed (operating system)',6,431,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5661,'OPENSUSE',6,431,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5662,'SUSEWatcher',6,431,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5663,'Opensuse',6,431,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5664,'Unbreakable Enterprise Kernel',6,432,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5665,'Oracle Unbreakable Enterprise Kernel',6,432,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5666,'Unbreakable Linux',6,432,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5667,'Oracle linux',6,432,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5668,'Unbreakable Linux Network',6,432,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5669,'Red Hat Compatible Kernel',6,432,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5670,'Oracle Unbreakable Linux',6,432,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5674,'Red Hat Global Desktop',6,434,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5675,'RedHat enterprise linux',6,434,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5676,'Red hat enterprise linux',6,434,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5677,'RedHat Enterprise Linux',6,434,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5678,'Redhat Enterprise Linux',6,434,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5679,'Redhat enterprise linux',6,434,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5680,'Rhel',6,434,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5681,'Red hat enterprise',6,434,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5682,'Red Hat enterprise linux',6,434,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5683,'Rhel4',6,434,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5684,'Red Hat Global Desktop Linux',6,434,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5685,'Red Hat Enterprise Linux (RHEL)',6,434,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5686,'Red hat Enterprise Linux',6,434,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5687,'Red Hat Enterprise Linux 3',6,434,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5688,'Enterprise Linux',6,434,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5689,'RedPatch',6,434,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5690,'SUSE LINUX Enterprise Server',6,435,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5691,'SuSE SLES',6,435,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5692,'SLES (software)',6,435,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5693,'SuSE Linux Enterprise Server',6,435,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5694,'SUSE Linux Enterprise',6,435,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5695,'SLES (operating system)',6,435,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5696,'SuSE Enterprise Linux',6,435,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5697,'SUSE SLES',6,435,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5698,'Ubunt',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5699,'Ubuntu (GNU/Linux distribution)',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5700,'Ubuntu Server Edition',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5701,'Ubuntu Light',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5702,'Ubuntu (linux)',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5703,'Ubuntu (Operating system)',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5704,'Ubuntulinux',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5705,'Uboonto Linux',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5706,'Easyubuntu',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5707,'Ubuntu (os)',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5708,'Ubuntu LTS',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5709,'Linux ubuntu',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5710,'Ubuntu (software)',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5711,'Ubuntu desktop',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5712,'Ubuntu (OS)',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5713,'Ubuntu (Operating System)',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5714,'Ubuntu operating system',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5715,'Ubufox',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5716,'Ubunto Linux',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5717,'Ubuntu (O.S.)',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5718,'Ubuntu Business Desktop Remix',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5719,'Ubuntu GNU/Linux',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5720,'Ubuntu os',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5721,'Ubuntu Server',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5722,'Ubuntu (distribution)',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5723,'Ubuntu (operating system)',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5724,'Ubanto',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5725,'Unbuntu',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5726,'Uboonto',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5727,'Ubuntu Linux (operating system based on Debian)',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5728,'EasyUbuntu',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5729,'Ubuntu Linux os',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5730,'Portable Ubuntu for Windows',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5731,'Ubuntu distro',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5732,'Ubuntu server',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5733,'Ubuntu distribution',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5734,'Ubuntu linux os',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5735,'Ubuntu (Linux)',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5736,'Ubuntu (Linux distribution)',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5737,'Ubutnu',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5738,'Ubunut',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5739,'Ubuntu Desktop',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5740,'Ubuntu Linux Server Edition',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5741,'Ubuntu Universe',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5742,'Unbutu',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5743,'Ubuntu Foundation',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5744,'Linux Ubuntu',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5745,'Universe ubuntu',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5746,'Ubuntu operatng system',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5747,'Ubuntu (linux distribution)',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5748,'Ubununtu',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5749,'Ubuntu Linux distribution',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5750,'Easy Ubuntu',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5751,'Ubunto',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5752,'Ubuntu Enterprise Cloud',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5753,'ShipIt',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5754,'Ubuntu linux',6,436,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5755,'Ubuntu Linux operating system',6,436,'also_known_as'); +INSERT INTO entity_mentions VALUES(5757,'Ubuntu OS',6,436,'also_known_as'); +INSERT INTO entity_mentions VALUES(5758,'Ubuntu Project',6,436,'also_known_as'); +INSERT INTO entity_mentions VALUES(5759,'Ubuntu GNU/linux',6,436,'also_known_as'); +INSERT INTO entity_mentions VALUES(5760,'Linux on zSeries',6,437,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5761,'LinuxONE',6,437,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5762,'ZLinux',6,437,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5763,'Linux for zSeries',6,437,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5764,'Linux on System z9',6,437,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5765,'Linux on mainframe',6,437,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5766,'S390x',6,437,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5767,'Linux/390',6,437,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5768,'IBM LinuxONE',6,437,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5769,'Linux for mainframe',6,437,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5770,'Linux on z Systems',6,437,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5771,'Linux on System z',6,437,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5772,'Linux on Z Systems',6,437,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5773,'Linux for mainframes',6,437,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5774,'Linux on zseries',6,437,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5775,'Linux on mainframes',6,437,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5776,'Mainframe Linux',6,437,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5777,'Linux on z',6,437,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5778,'Z/Linux',6,437,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5779,'Apple OS X',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5780,'Marklar project',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5781,'OS/X',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5782,'Max os x',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5783,'Mac OS X 10',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5784,'OS-X',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5785,'Mac os 10',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5786,'Mac osx',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5787,'MacOS X',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5788,'Macintosh OSX',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5789,'Macos',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5790,'Mac OSX',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5791,'MacOSX',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5792,'Macosx',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5793,'Apple Macintosh OSX',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5794,'Mac OS/OS X',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5795,'Macintosh OS-X',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5796,'Os x',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5797,'Mac OS-X',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5798,'MacOS/X',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5799,'Mac Os X',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5800,'MAC OS X',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5801,'MacintoshOSX',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5802,'Apple Macintosh OS X',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5803,'Os ten',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5804,'Mac OS/X',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5805,'Osx',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5806,'IBSD',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5807,'Apple macOS',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5808,'OSx',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5809,'Mac os ten',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5810,'OS X (operating system)',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5811,'MacOs',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5812,'Apple Mac OSX',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5813,'Macos x',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5814,'MAC OSX',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5815,'Apple OSX',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5816,'Apple Mac OS X',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5817,'Macintosh OS X',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5818,'MOSX',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5819,'Mac os x',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5820,'Apple MacOSX',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5821,'MacOS 10',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5822,'Apple os x',6,438,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5823,'OSX',6,438,'also_known_as'); +INSERT INTO entity_mentions VALUES(5824,'Mac OS 10',6,438,'also_known_as'); +INSERT INTO entity_mentions VALUES(5825,'Mac OS X',6,438,'also_known_as'); +INSERT INTO entity_mentions VALUES(5826,'OS X',6,438,'also_known_as'); +INSERT INTO entity_mentions VALUES(5827,'MSP (operating system)',6,577,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5828,'MVS/ESA',6,577,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5829,'OS/MVS',6,577,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5830,'MVS Operating System',6,577,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5831,'Data Facility Product',6,577,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5832,'MVS/XA',6,577,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5833,'MVS/370',6,577,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5834,'Fujitsu MSP',6,577,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5835,'OS/VS2 (MVS)',6,577,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5836,'Hitachi VOS3',6,577,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5837,'MVS/SP',6,577,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5838,'Multiple Virtual Storage',6,577,'also_known_as'); +INSERT INTO entity_mentions VALUES(5839,'MVS|OS/390',6,440,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5840,'ZOS',6,441,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5841,'IBM z/OS',6,441,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5842,'Virtual Memory System',6,442,'also_known_as'); +INSERT INTO entity_mentions VALUES(5843,'VAX/VMS',6,442,'also_known_as'); +INSERT INTO entity_mentions VALUES(5844,'Open vms',6,442,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5845,'VMS operating system',6,442,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5846,'OpenVMS 7.2',6,442,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5847,'DECwindows',6,442,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5848,'VMS (operating system)',6,442,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5849,'VAX-VMS',6,442,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5850,'DEC VMS',6,442,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5851,'DECWindows',6,442,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5852,'Vax/vms',6,442,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5853,'Open VMS',6,442,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5854,'Openvms',6,442,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5855,'OS/2 Warp',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5856,'Win-OS/2',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5857,'DOS/286 (OS/2)',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5858,'NEWDOS (OS/2)',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5859,'Microsoft Betriebssystem/2',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5860,'Os2 warp',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5861,'OS/2 Warp 3',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5862,'OS/2 Warp 3J',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5863,'Warp 3',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5864,'IBM BS/2',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5865,'BS/2 1.1',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5866,'Os2',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5867,'OS/2 1.21',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5868,'BS/2 1.3',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5869,'Advanced DOS',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5870,'OS2',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5871,'BS/2 1.0',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5872,'WINOS/2',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5873,'OS/2 Warp 4.5',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5874,'IBM OS2',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5875,'OS/2 Special Edition for Windows',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5876,'OS/2 2.1',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5877,'OS/2 Warp 4',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5878,'OS/2 1.3',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5879,'WinOS/2',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5880,'OS/2 1.0',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5881,'Warp Server',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5882,'Microsoft OS/2',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5883,'WIN-OS/2',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5884,'OS/2 Warp Connect',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5885,'Microsoft Operating System/2',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5886,'IBM OS/2',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5887,'OS/2 for Windows',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5888,'OS/2 2.0',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5889,'IBM Operating System/2',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5890,'OS 2',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5891,'Betriebssystem/2',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5892,'DOS 5 (OS/2)',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5893,'Microsoft BS/2',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5894,'IBM Betriebssystem/2',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5895,'DOS 286 (OS/2)',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5896,'OS/2 API',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5897,'OS/2 1.1',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5898,'BS/2 1.2',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5899,'Os/2',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5900,'BS/2',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5901,'CP/DOS',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5902,'ADOS (OS/2)',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5903,'OS/2 1.2',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5904,'0S/2',6,443,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5905,'Operating System/2',6,443,'also_known_as'); +INSERT INTO entity_mentions VALUES(5906,'Unixes',6,578,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5907,'UNIX operating system',6,578,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5908,'UNIX systems',6,578,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5909,'Unix operating system',6,578,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5910,'Truly Unix',6,578,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5911,'UNIX system',6,578,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5912,'Unix box',6,578,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5913,'Unix system',6,578,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5914,'Traditional Unix',6,578,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5915,'UNIX',6,578,'also_known_as'); +INSERT INTO entity_mentions VALUES(5916,'Advanced IBM UNIX',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5917,'IBM-RT/AIX',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5918,'IBM AIX (operating system)',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5919,'Object Data Manager',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5920,'AIX (operating system)',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5921,'Aix os',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5922,'IBM System AIX',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5923,'Ibm lum',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5924,'AIX for Apple Network Server',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5925,'IBM AIX/370',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5926,'Advanced Interactive eXecutive',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5927,'AIX/RT',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5928,'AIX/370',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5929,'AIXv3',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5930,'IBM370/AIX',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5931,'IBM AIX/PS2',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5932,'VM/IX',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5933,'IX/370',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5934,'AIX for ANS',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5935,'IBM AIX/RT',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5936,'AIX Operating System',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5937,'AIX operating system',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5938,'AIX for Apple Network Servers',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5939,'IBM AIX/390',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5940,'AIX/PS2',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5941,'AIX/390',6,445,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5943,'BSD operating system',6,579,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5944,'Berkeley software distribution',6,579,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5945,'4.4BSD-Lite',6,579,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5946,'Vmunix',6,579,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5947,'BSD Unices',6,579,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5948,'HPBSD',6,579,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5949,'4.4BSD-Encumbered',6,579,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5950,'Berkeley UNIX',6,579,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5951,'Berkley Software Distribution',6,579,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5952,'Net/1',6,579,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5953,'Berkeley UNIX 4.3BSD',6,579,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5954,'BSD-based',6,579,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5955,'Bsdgames',6,579,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5956,'Net/2',6,579,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5957,'Bsd',6,579,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5958,'*BSD',6,579,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5960,'BSD (operating system)',6,579,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5962,'BSD UNIX',6,579,'also_known_as'); +INSERT INTO entity_mentions VALUES(5965,'TrustedBSD',6,447,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5966,'Freebsd',6,447,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5967,'FBSD',6,447,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5968,'Free BSD',6,447,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5969,'FreeBSD 8',6,447,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5970,'NanoBSD',6,447,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5971,'Linuxulator',6,447,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5972,'FreeBSD Project',6,447,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5973,'FREEBSD',6,447,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5974,'FreeBSD kernel',6,447,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5975,'FreeBSD 5.0',6,447,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5976,'Free bsd',6,447,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5978,'Sun os',6,448,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5979,'SunOS Unix',6,448,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5980,'Sunos',6,448,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5981,'SunOS 4.1',6,448,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5982,'Sun OS',6,448,'also_known_as'); +INSERT INTO entity_mentions VALUES(5984,'Hewlett Packard Unix',6,449,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5985,'HP/UX',6,449,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5986,'Hewlett-Packard UniX',6,449,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5987,'Hewlett Packard-Unix',6,449,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5988,'Hpux',6,449,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5989,'Hewlett-Packard Unix',6,449,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5991,'Hewlett-Packard UNIX',6,449,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5992,'Hewlett Packard UniX',6,449,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5993,'Hewlett Packard UNIX',6,449,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5995,'MS Windows',6,580,'also_known_as'); +INSERT INTO entity_mentions VALUES(5997,'Apptimum',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5998,'Windows Operating System',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(5999,'Windows OS',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6000,'Windows 365',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6001,'Windows the operating system',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6002,'Windows (Operating System)',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6003,'WINDOWS',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6004,'Windows (OS)',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6005,'Microsoft windows',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6006,'MS-Windows',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6007,'Windows operating system',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6009,'Mswin',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6010,'Microsoft windows os',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6011,'MICROSOFT WINDOWS',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6012,'Widnows',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6013,'Windwos',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6014,'Windows (operating system)',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6015,'MSWindows',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6016,'Alliance OS',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6017,'Windows®',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6019,'Ms windows',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6020,'Windows os',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6021,'MsWindows',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6022,'Windows (Operating system)',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6023,'32-bit Windows',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6024,'Microsoft windows operating system',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6025,'Windows Microsoft',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6026,'Freedows OS',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6027,'MSWin',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6028,'Windows computers',6,580,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6042,'Windows PC',6,451,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6052,'PC Windows',6,451,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6063,'Windows Storage Server',6,452,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6064,'Microsoft Windows Server',6,452,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6065,'Windows Web Edition',6,452,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6066,'Windows server',6,452,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6067,'Windows Server 200x',6,452,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6068,'Windows Server 2022',6,452,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6069,'Microsoft Windows server',6,452,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6070,'Fedora Rawhide',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6071,'Linux fedora',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6072,'Fedora (OS)',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6073,'Fedora AOS',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6074,'Fedora Extras',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6075,'Fedora (GNU/Linux distribution)',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6076,'Fedora Core Linux',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6077,'Fedora Workstation',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6078,'Fedora OS',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6079,'Fedora (linux distribution)',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6080,'COPR (Fedora)',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6081,'Rawhide (operating system)',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6082,'Fedora linux',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6083,'Fedora Robotics',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6084,'Cool Other Package Repositories',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6085,'Fedora Linux',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6086,'Fedomatix',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6087,'Fedora (Operating System)',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6088,'Rawhide (software)',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6089,'Eeedora',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6090,'Fedora operating system',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6091,'Fedora (software)',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6092,'Fedora Core',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6093,'Fedora Cloud',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6094,'Rawhide (computing)',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6095,'Fedora IoT',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6096,'Fedora Linux Swap',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6097,'Fedora (Linux)',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6098,'Fedora Modular Server',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6099,'Fedora (Linux distribution)',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6100,'Fedora CoreOS',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6101,'Fedora 10',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6102,'Fedora Silverblue',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6103,'Fedora Atomic Host',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6104,'Fedora spin',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6105,'Fedora Server',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6106,'EPEL',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6107,'Fedora LXQt',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6108,'Fedora core',6,453,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6109,'Linux|Amazon Linux',6,454,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6111,'Microsoft Exchange Server|Veeam Explorer',5,464,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6112,'Data Transformation Service',5,466,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6113,'DTS package',5,466,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6114,'DTS Package',5,466,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6115,'Data transformation service',5,466,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6116,'DTS Packages',5,466,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6117,'DTS Tasks',5,466,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6118,'OLAP Services',5,468,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6119,'ADOMD.NET',5,468,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6121,'SSIS package',5,470,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6122,'SSMS',5,471,'also_known_as'); +INSERT INTO entity_mentions VALUES(6123,'SSMSE',5,471,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6124,'Management studio',5,471,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6127,'SQL Reporting Services',5,473,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6128,'Sql server reporting services',5,473,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6129,'Spatial Data Option',5,475,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6130,'GeoRaster',5,475,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6131,'Oracle Spatial',5,475,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6133,'Sqlplus',5,478,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6135,'Run-time library',7,482,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6136,'.NET Framework|log4net',7,483,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6137,'Windows Communications Foundation',7,485,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6138,'Indigo Application Server',7,485,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6139,'Windows communication foundation',7,485,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6141,'Windows Communication Framework',7,485,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6142,'Indigo (messaging system)',7,485,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6143,'Microsoft Indigo',7,485,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6144,'WF4',7,486,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6145,'Workflow Foundation',7,486,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6146,'Windows Overflow Foundation',7,486,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6147,'Windows.Forms',7,487,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6148,'Winforms',7,487,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6149,'Windows Forms control',7,487,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6150,'WindowsForms',7,487,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6151,'Windows Forms application',7,487,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6153,'ActiveX Data Object',7,488,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6154,'Active X Data Objects',7,488,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6155,'Msado',7,488,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6156,'Jboss seam',7,492,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6157,'JBoss SEAM',7,492,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6158,'Seam framework',7,492,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6159,'JBoss application server',7,493,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6161,'JBoss AS',7,493,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6162,'Jbossas',7,493,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6163,'Jboss as',7,493,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6164,'Jboss',7,493,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6165,'JBossWS',7,493,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6168,'ABAP Objects',7,496,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6169,'SAP ABAP',7,496,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6170,'Abap Objects',7,496,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6171,'ABAP/4',7,496,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6172,'Abap IV',7,496,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6173,'Abap',7,496,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6174,'.NET SDK',10,497,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6175,'Dot NET Framework',10,497,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6176,'Microsoft net framework',10,497,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6177,'Net Framework',10,497,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6178,'Dotnet framework',10,497,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6179,'Netfx',10,497,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6180,'Dot Net Framework',10,497,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6181,'Dot net framework',10,497,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6182,'.NET Enterprise Server',10,497,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6183,'.NET framework',10,497,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6184,'NetFX',10,497,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6185,'Microsoft .NET framework',10,497,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6186,'Microsoft''s .NET Framework',10,497,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6187,'.NET Server',10,497,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6188,'.Net Framework',10,497,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6190,'.NET Services',10,497,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6191,'.NET platform',10,497,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6192,'.Net (programming language)',10,497,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6193,'Microsoft .NET Framework',10,497,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6194,'.net framework',10,497,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6195,'NET Framework',10,497,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6196,'Active Directory Services',10,498,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6197,'Likewise Open',10,498,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6198,'Active directory object',10,498,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6199,'AD/LDS',10,498,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6200,'Active Directory Schema',10,498,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6201,'AD DS',10,498,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6202,'Microsoft Active Directory',10,498,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6203,'NT Directory Service',10,498,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6204,'Active Directory Site',10,498,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6205,'ActiveDirectory',10,498,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6206,'Active directory authentication module',10,498,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6207,'Active Directory Domain Services',10,498,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6208,'Active directory objects',10,498,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6209,'Active directory',10,498,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6210,'Micorsoft Active Directory',10,498,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6211,'Active Directory Service Interfaces',10,498,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6212,'Active Directory Service',10,498,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6213,'Active Directory Directory Services',10,498,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6214,'Microsoft Active Direcory',10,498,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6215,'Domain tree',10,498,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6216,'Active Directory Application Mode',10,498,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6217,'AD LDS',10,498,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6218,'ASP programming language',9,592,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6220,'ASP3',9,592,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6221,'Apache::ASP',9,592,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6222,'Active server pages',9,592,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6224,'Asp Apache',9,592,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6225,'Active X',10,500,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6226,'ActiveX Control',10,500,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6227,'Activex',10,500,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6228,'ActiveX client',10,500,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6229,'ActiveX Object',10,500,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6230,'ActiveX control',10,500,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6231,'ActiveX component',10,500,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6232,'MFC ActiveX Control',10,500,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6233,'Active x',10,500,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6234,'ActiveX server',10,500,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6235,'Active-x',10,500,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6236,'Activex control',10,500,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6237,'Apache Cordoba',10,501,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6238,'Apache Callback',10,501,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6239,'Customer Information Control System',10,502,'also_known_as'); +INSERT INTO entity_mentions VALUES(6240,'CICS Transaction Server',10,502,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6241,'Docker software',10,503,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6242,'Docker (Linux container engine)',10,503,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6243,'Libcontainer',10,503,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6244,'Dockerfile',10,503,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6245,'Docker Toolbox',10,503,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6246,'Shockwave Flash',10,504,'also_known_as'); +INSERT INTO entity_mentions VALUES(6247,'UIRA',10,504,'also_known_as'); +INSERT INTO entity_mentions VALUES(6248,'Flash MX',10,504,'also_known_as'); +INSERT INTO entity_mentions VALUES(6249,'Flash CS3',10,504,'also_known_as'); +INSERT INTO entity_mentions VALUES(6250,'Futuresplash',10,504,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6251,'Adobe Flash CS4',10,504,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6252,'Flash 8',10,504,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6253,'Flash mx 2004',10,504,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6254,'Flash (software)',10,504,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6255,'FutureSplash',10,504,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6256,'Macromedia Flash Remoting',10,504,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6257,'Macromedia flash',10,504,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6258,'Flash programming',10,504,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6259,'Adobe Flash animation',10,504,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6260,'Flash 6',10,504,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6261,'Adobe flash',10,504,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6262,'Adobe Flash Platform',10,504,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6263,'Macromedia Flash Professional 9',10,504,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6264,'F4L',10,504,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6265,'Flash components',10,504,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6266,'Flash 10',10,504,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6267,'F4l',10,504,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6268,'Flash 9',10,504,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6269,'Qflash',10,504,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6270,'Flash mx',10,504,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6273,'NodeJs',10,507,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6274,'Node js',10,507,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6275,'Node.JS',10,507,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6277,'Iojs',10,507,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6278,'Io.js',10,507,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6279,'NodeJS',10,507,'also_known_as'); +INSERT INTO entity_mentions VALUES(6280,'Action Web Service',10,508,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6281,'Rubyonrails',10,508,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6282,'Ruby on Яails',10,508,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6283,'Ruby on rails',10,508,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6284,'Action Mailer',10,508,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6285,'Ruby on Iaails',10,508,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6286,'Rails framework',10,508,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6287,'Ruby on Rails (web framework)',10,508,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6288,'Ruby On Rails',10,508,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6289,'Ruby-on-rails',10,508,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6290,'Ruby with rails',10,508,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6293,'Application management',1,511,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6294,'Application life-cycle management',1,511,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6295,'Integrated application lifecycle management',1,511,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6296,'Software Lifecycle Management',1,511,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6297,'Assembly Language',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6298,'Assembler (computer programming)',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6299,'Meta-assembler',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6300,'Op code mnemonic',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6301,'Cross-assembler',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6302,'Assembly languages',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6303,'Programming language/assembly',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6304,'Assembly language assembler',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6305,'Two-pass assembler',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6306,'Cross assembler',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6307,'Assembly code',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6308,'Assembler code',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6309,'Assembler language',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6310,'Assembler program',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6311,'Assembly language macros',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6312,'Mnemonics (assembler)',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6313,'ARM Assembly Language Programming',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6314,'Extended mnemonics',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6315,'Mnemonics (assembly language)',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6316,'Symbolic machine code',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6317,'Assembly programming language',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6318,'Assembly Programming System',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6319,'Assembler (programming language)',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6320,'Symbolic Machine Code',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6321,'Mnemonic (assembly language)',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6322,'Macro assembler',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6323,'Assembler (computing)',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6324,'Assembly file',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6325,'Mnemonic (assembler)',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6326,'Assember language',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6327,'Assembler for an assembly language',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6328,'Assembler programming',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6329,'Macroassembler',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6330,'Assembler directive',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6331,'Assembly programming',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6332,'Opcode mnemonics',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6333,'Assembly time',1,512,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6335,'Cgi script',1,515,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6336,'CGI script',1,515,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6337,'Common gateway interface',1,515,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6340,'Interface ID',1,516,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6341,'ActiveX application',1,516,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6342,'COM/ActiveX',1,516,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6343,'Multi Threaded Apartment',1,516,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6344,'COM object',1,516,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6345,'Neutral Apartment',1,516,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6346,'COM server',1,516,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6347,'Component object model',1,516,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6348,'Single-Threaded Apartment',1,516,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6349,'ActiveX script',1,516,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6350,'Single Threaded Apartment',1,516,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6351,'COM and OLE',1,516,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6352,'Microsoft Component Object Model',1,516,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6353,'Single-threaded apartment',1,516,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6355,'Apartment model',1,516,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6356,'Multi-Threaded Apartment',1,516,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6358,'Portable Object Adapter',1,517,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6359,'Object Management Architecture',1,517,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6360,'Portable interceptors',1,517,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6361,'OMG IDL',1,517,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6362,'Common object request broker architecture',1,517,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6363,'VMCID',1,517,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6364,'Incarnation (CORBA)',1,517,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6366,'Corbaloc',1,517,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6367,'CORBA Component Model',1,517,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6368,'Servant (CORBA)',1,517,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6369,'Corba',1,517,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6370,'CORBA architecture',1,517,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6373,'DDBMS',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6374,'Enterprise database management',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6375,'Distributed data base',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6376,'Database management system',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6377,'Database Management',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6378,'Database query',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6379,'DBMSs',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6380,'Research database',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6381,'Database management software',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6382,'Database (computing)',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6383,'Distributed Database Management System',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6384,'Database instance',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6385,'Database management program',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6386,'DataBase',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6387,'Library database',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6388,'Database system',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6389,'Database management systems',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6390,'Database/Applications',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6391,'Data Base',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6392,'Distributed database management system',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6393,'Database Management System',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6394,'Database manager',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6395,'Database programming',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6396,'Database software',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6397,'Public database',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6398,'Distributed databases',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6399,'Dbms',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6400,'Forensic database',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6401,'Data base management system',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6402,'Databases',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6403,'Electronic data processing database',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6404,'Database management',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6405,'Computer database',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6406,'Data-base',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6407,'Data bases',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6408,'DBMS',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6409,'Computer Databases',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6410,'Database System',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6411,'Database development',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6412,'Numeric database',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6413,'DB file',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6414,'Scientific database',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6415,'Database Manager',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6416,'Database systems',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6417,'Database information system',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6418,'Data base',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6419,'D-base',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6420,'Database backend',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6421,'General-purpose DBMS',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6422,'Public databases',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6423,'Db management',1,520,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6424,'EDI Translation Software',1,521,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6426,'ANSI ASC X.12',1,521,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6427,'X.12',1,521,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6428,'Web-servers',1,522,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6429,'Web Servers',1,522,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6430,'Webserver',1,522,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6432,'Www server',1,522,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6433,'Web-server',1,522,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6434,'HTTP web server',1,522,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6436,'Web servers',1,522,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6437,'WWW server',1,522,'also_known_as'); +INSERT INTO entity_mentions VALUES(6438,'HTTP server',1,522,'also_known_as'); +INSERT INTO entity_mentions VALUES(6439,'Jdom',1,523,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6440,'Java object model',1,523,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6441,'JSR 102',1,523,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6442,'Java Document Object Model',1,523,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6443,'Ldap',1,524,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6444,'Eldap',1,524,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6445,'LDAPS',1,524,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6447,'Database driver',1,525,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6448,'ODBC driver',1,525,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6449,'ODBC Driver',1,525,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6450,'Open DataBase Connectivity',1,525,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6451,'OBDC',1,525,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6452,'Odbc',1,525,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6453,'Open database connectivity',1,525,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6456,'Order management',1,526,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6459,'REST API',1,529,'also_known_as'); +INSERT INTO entity_mentions VALUES(6462,'REST Architecture',1,529,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6463,'REST-SST',1,529,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6464,'RESTful web service',1,529,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6465,'REST interface',1,529,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6466,'RESTFul',1,529,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6467,'RESTfully',1,529,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6468,'Rest interface',1,529,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6469,'Restful interface',1,529,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6470,'RESTful API',1,529,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6471,'Restful web service',1,529,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6472,'Restful',1,529,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6473,'Restful application',1,529,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6474,'RESTful',1,529,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6475,'SOA Lifecycle',1,530,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6476,'SOA environment',1,530,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6477,'Service Oriented Architecture',1,530,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6478,'Endpoint computing',1,530,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6479,'Service orientated architecture',1,530,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6480,'Soba (computing)',1,530,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6481,'Broker (service-oriented architecture)',1,530,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6483,'Service-oriented business application',1,530,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6484,'Service Oriented Computing',1,530,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6485,'Service-oriented Architecture',1,530,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6486,'Service-oriented architectures',1,530,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6487,'Service oriented architecture',1,530,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6488,'Service Orientated Architecture',1,530,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6489,'Service-orientated architecture',1,530,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6490,'Service-Orientated Architecture',1,530,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6491,'Service Oriented Architectures',1,530,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6493,'SOAP request',1,531,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6494,'SOAP (protocol)',1,531,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6495,'Soap service',1,531,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6496,'Structured Query Language',1,572,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6497,'SQL script',1,572,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6498,'ANSI SQL',1,572,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6499,'SQL Servers',1,572,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6500,'Procedural SQL',1,572,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6501,'Structured query language',1,572,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6502,'SQL language',1,572,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6503,'Distributed SQL processing',1,572,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6504,'SQL programming language',1,572,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6505,'Transaction Control Language',1,572,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6506,'SEQUEL',1,572,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6507,'SQL (programming language)',1,572,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6508,'SQL database',1,572,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6509,'Structure Query Language',1,572,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6510,'Sql',1,572,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6511,'Yaml',1,533,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6512,'Yet Another Markup Language',1,533,'also_known_as'); +INSERT INTO entity_mentions VALUES(6513,'YAML Ain''t Markup Language',1,533,'also_known_as'); +INSERT INTO entity_mentions VALUES(6514,'Model',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6515,'Model-view',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6516,'Model view controller triad',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6517,'controller',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6518,'view',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6519,'Model-template-view',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6520,'Model–View–Controller',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6521,'Model View Controller',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6522,'MVC controller',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6523,'View (MVC)',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6524,'Model-View-Controller',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6525,'Controller (MVC)',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6526,'MVC Design Pattern',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6527,'MVC architecture',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6528,'Model-view controller',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6529,'Model-Template-View',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6530,'MVC Pattern',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6531,'Model-view-controller design pattern',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6532,'Model-View-Controller paradigm',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6533,'Model view controller',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6534,'Model/View/Controller',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6535,'MVC view',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6536,'MVC model',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6537,'Model (MVC)',1,574,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6538,'Model-view-controller',1,574,'also_known_as'); +INSERT INTO entity_mentions VALUES(6539,'Application server computing',1,535,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6541,'Mobile App Server',1,535,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6542,'Application servers',1,535,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6543,'Enterprise application server',1,535,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6544,'Java application server',1,535,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6545,'Appserver',1,535,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6546,'App server',1,535,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6547,'Web application server',1,535,'also_known_as'); +INSERT INTO entity_mentions VALUES(6548,'Cloud hosting',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6549,'Cloud architecture',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6550,'Cloud service',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6551,'IoT Cloud',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6552,'Cloud-hosted',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6553,'Cloud vendor',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6554,'Cloud Provider Interface',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6555,'Cloud transformation',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6556,'XaaS',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6557,'Cloud computing platform',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6558,'Cloud computing vendor',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6559,'Cloud Computing',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6560,'Cloud-based',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6561,'Cloud provider',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6562,'Could computing',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6563,'Cloud computing provider',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6564,'Computing cloud',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6565,'Computing in the cloud',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6566,'Communication as a service',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6567,'Cloud infrastructure',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6568,'Hybrid cloud',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6569,'Private cloud',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6570,'Cloud Technology',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6571,'Cloud client',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6572,'Cloud vendors',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6573,'Cloud networking',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6574,'Cloud Hosting',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6575,'Remote computing',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6576,'Private Cloud',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6577,'Computing-in-the-cloud',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6578,'Cloud hardware',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6579,'Cloud computer',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6580,'Cloud technology',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6581,'Public Cloud',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6582,'Cloud processing',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6583,'Burst computing',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6584,'Member Only Cloud',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6585,'Content Marketing Cloud',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6586,'Cloud computing user',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6587,'Cloud Applications',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6588,'Online software',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6589,'Cloud Software',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6590,'Cloud services provider',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6591,'Computer cloud',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6592,'Cloud-computing',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6593,'Cloud distribution',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6594,'Public cloud',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6595,'Cloud services',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6596,'Cloud-based computing',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6597,'Cloud Service',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6598,'Cloudware',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6599,'EaaS',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6600,'Cloud service provider',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6601,'Cloud software',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6602,'Cloud user',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6603,'Cloud (computing)',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6604,'Cross-Platform Hybrid Cloud',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6605,'Cloud Infrastructure',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6606,'Cloud (computers)',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6607,'Hybrid Cloud',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6608,'Cloud standards',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6609,'Cloud users',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6610,'Cloud clients',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6611,'Cloud computing platforms',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6612,'Enterprise Cloud Computing',1,536,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6613,'Dynamic Provisioning Environment',1,538,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6615,'Workgroup File server',1,541,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6616,'Fileserver',1,541,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6617,'File host',1,541,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6618,'Storage server',1,541,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6620,'Workgroup file server',1,541,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6621,'File Server Solution',1,541,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6622,'Nominal ledgers',1,542,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6624,'Generalledger',1,542,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6625,'General ledgers',1,542,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6626,'Nominal ledger',1,542,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6635,'HTTP daemon',1,522,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6641,'IXP',1,546,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6642,'Internet Exchange',1,546,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6643,'Internet exchange',1,546,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6644,'Internet Exchange Point',1,546,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6645,'IMAP server',1,547,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6646,'DIMAP',1,547,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6647,'Interactive Mail Access Protocol',1,547,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6648,'IMAP4',1,547,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6649,'IMAP3',1,547,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6650,'Imapd',1,547,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6651,'IMAPv4',1,547,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6652,'Imaps',1,547,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6653,'IMAPS',1,547,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6654,'Internet message access protocol',1,547,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6656,'Javascript Object Notation',1,548,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6657,'Json',1,548,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6658,'JSONNP',1,548,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6659,'Internet JSON',1,548,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6660,'JSON Schema',1,548,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6661,'JSON5',1,548,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6662,'I-JSON',1,548,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6663,'HJSON',1,548,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6664,'JavaScript Object Notation',1,548,'also_known_as'); +INSERT INTO entity_mentions VALUES(6665,'Mainframe computers',1,552,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6666,'Mainframe',1,552,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6667,'Main frame',1,552,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6668,'Big-iron',1,552,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6669,'MainFrame',1,552,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6670,'Mainframe computing',1,552,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6671,'Mainframe Computer',1,552,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6672,'Main frame computer',1,552,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6673,'Mainframes',1,552,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6674,'Big iron (computing)',1,552,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6675,'Main Frame Computer',1,552,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6676,'Main-frame',1,552,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6677,'Mainframe server',1,552,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6679,'Manufacturing execution systems',1,553,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6680,'Manufacturing Execution Systems',1,553,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6682,'Software as a secure service',1,556,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6683,'Saasworld',1,556,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6684,'Software as service',1,556,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6685,'SasS',1,556,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6686,'Software-As-A-Service',1,556,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6687,'Software-as-a-service',1,556,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6688,'OpenSaaS',1,556,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6689,'Software plus services',1,556,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6690,'Software-as-a-Service',1,556,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6691,'Software As A Service',1,556,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6692,'Software as a Service',1,556,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6693,'Software as a sevice',1,556,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6694,'Cloud application',1,556,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6695,'SaaSS',1,556,'also_known_as'); +INSERT INTO entity_mentions VALUES(6697,'Storage area networks',1,557,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6698,'Storage Area Networks',1,557,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6699,'Storage network',1,557,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6700,'Distributed storage area networks',1,557,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6702,'Sanoip',1,557,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6703,'SANoIP',1,557,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6704,'Storage area networking',1,557,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6705,'San server',1,557,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6706,'SAN (computing)',1,557,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6707,'Storage Area Network(SAN)',1,557,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6708,'Centralized storage area networks',1,557,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6709,'Storage layer',1,557,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6711,'Storage networking',1,557,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6712,'Online desktop',1,560,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6713,'WebTop',1,560,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6714,'Cloud desktop',1,560,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6716,'Web Desktop',1,560,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6717,'Anonymous Surfing',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6718,'Proxy IP address',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6719,'Application layer proxy',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6720,'Caching proxy server',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6721,'Translation proxy server',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6722,'Internet proxy',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6723,'Anonymous server',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6724,'Anonymous Web surfing',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6725,'Proxyserver',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6726,'Web Proxy',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6727,'Proxy Bouncing',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6728,'Proxifier',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6729,'Http proxy',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6730,'Proxy chaining',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6731,'Suffix proxy',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6732,'Anonymity network',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6733,'Application-layer proxy',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6734,'CGI proxy',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6735,'HTTP proxy server',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6736,'Free proxy',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6737,'Proxy Website',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6738,'Intercepting proxy server',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6739,'HTTPS Proxy',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6740,'Proxy chain',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6741,'Proxy IP',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6742,'Proxy gateway',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6743,'Web proxy',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6745,'Web proxies',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6746,'Proxy servers',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6747,'Proxy bypass',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6748,'Anonymous proxy server',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6749,'Bypass (computing)',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6750,'Residential proxy',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6751,'Transparent proxy',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6752,'Myspace proxy',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6753,'Split proxies',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6754,'Forward proxy',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6755,'P roxy',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6756,'HTTP proxy',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6757,'Proxy Sites',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6758,'SSL Proxy',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6759,'Anonymous Web proxy',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6760,'Server proxy',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6761,'Tproxy',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6762,'Circumventor',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6763,'Caching proxy',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6764,'Secure & Anonymous Internet Surfing',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6765,'HTTP proxying',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6766,'Proxy filter',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6767,'Anonymous web proxy',1,561,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6768,'Utility (computer science)',1,562,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6769,'Software utility',1,562,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6770,'Utility program',1,562,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6771,'Utility (software)',1,562,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6772,'Software utilities',1,562,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6773,'Utility Programs',1,562,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6774,'Utility (computing)',1,562,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6775,'Utility Software',1,562,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6776,'NetScaler',3,563,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6777,'Netscaler',3,563,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6778,'Oracle virtual machine',3,567,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6780,'ESX Server',3,568,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6781,'VMware ESXi Server',3,568,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6782,'VMware ESX Server 2.0',3,568,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6783,'VMWare ESX Server',3,568,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6784,'ESX Server 3i',3,568,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6785,'VMware ESX Server 3.0',3,568,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6786,'VMware ESX',3,568,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6787,'VMware ESXi (software)',3,568,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6790,'VMware ESX Server',3,568,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6791,'ESXI',3,568,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6793,'VMware GSX Server',3,569,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6794,'GSX Server',3,569,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6795,'VMWare Server',3,569,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6811,'Structured Programming Facility',2,223,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6812,'System Productivity Facility',2,223,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6813,'Program Development Facility',2,223,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(6814,'Interactive System Productivity Facility',2,223,'also_known_as'); +INSERT INTO entity_mentions VALUES(6974,'Data Source Views',2,581,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7032,'ISO 14882',9,583,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7050,'Java Language Specification',9,584,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7057,'Java language specification',9,584,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7119,'OpenRsync',6,590,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7120,'Openbsd',6,590,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7121,'OpenCVS',6,590,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7122,'Opencvs',6,590,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7123,'Open bsd',6,590,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7124,'OpenBSD project',6,590,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7125,'Open BSD',6,590,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7126,'OpenBSD Project',6,590,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7127,'Obsd',6,590,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7128,'Openrsync',6,590,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7129,'VSE/SP',6,591,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7130,'Z/VSE (operating system)',6,591,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7131,'VSE/ESA',6,591,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7132,'Z/VSE',6,591,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7140,'ASP Hints',9,592,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7143,'MSDOS',6,593,'also_known_as'); +INSERT INTO entity_mentions VALUES(7146,'MS-DOS 1.51',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7147,'Microsoft Arabic MS-DOS 3.3',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7148,'HP MS-DOS 3.22R',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7149,'MS-DOS 3.31',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7150,'MS-DOS 5.00',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7151,'MS-DOS 3.3a',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7152,'MS-DOS 3.3A',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7153,'Ms-dos',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7154,'TI MS-DOS 2.12',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7155,'MS-DOS 3.30',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7156,'MS-DOS 1.52',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7157,'Ms-Dos',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7158,'TeleVideo Personal Computer DOS',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7159,'MSN-DOS Prompt',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7160,'MS-DOS 2.5',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7161,'AST Premium Exec DOS',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7162,'Texas Instruments MS-DOS 2.12',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7163,'MS-DOS 1.50',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7164,'MS-DOS 1.20',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7165,'Altos MS-DOS 2.11',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7166,'Microsoft Hebrew MS-DOS',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7167,'MS-DOS 3.22R',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7168,'MS-DOS 3.4',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7169,'MSdos',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7170,'HDOS (Microsoft)',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7171,'MS-DOS 3.21R',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7172,'Microsoft MS-DOS 3.30A',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7173,'Compaq MS-DOS 3.31',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7174,'TeleVideo PC DOS',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7175,'AST Premium Exec MS-DOS',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7176,'NCR-DOS',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7177,'MS-DOS 7.00',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7178,'Microsoft ADOS 3.3',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7179,'MS-DOS 1.23',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7180,'Hebrew MS-DOS',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7181,'MS-DOS 2.25',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7182,'MS-DOS 3.0',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7183,'ADOS 5.00',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7184,'Microsoft HDOS 5.0',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7185,'MS-DOS 2.12',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7186,'MS-DOS 2.11',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7187,'MS-DOS Mobile',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7188,'MS-DOS 2.10',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7189,'Microsoft HDOS 3.3',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7190,'MS-DOS 1.27',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7191,'MS-DOS 5.01',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7192,'MS-DOS 1.11',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7193,'MS-DOS 8.00',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7194,'Tandy MS-DOS 2.11R',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7195,'MS-DOS 6.x',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7196,'MS-DOS 2.05',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7197,'MS-DOS 3.30+',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7198,'MS-DOS 5.0',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7199,'HDOS (MS-DOS)',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7200,'MS/DOS',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7201,'MS-DOS 1.1',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7202,'MS-DOS 2.50',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7203,'Microsoft Arabic MS-DOS',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7204,'MS-DOS 3.1',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7205,'MS-DOS 1.14',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7206,'MS-DOS 2.00',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7207,'MS-DOS 3.3R',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7208,'TeleVideo Personal Computer DOS 2.0',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7209,'ADOS (Microsoft)',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7210,'MS-DOS 3.40',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7211,'MS-DOS 2.13',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7212,'TeleVideo PC DOS 2.0',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7213,'Microsoft Arabic MS-DOS 5.0',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7214,'AST Premium Exec MS-DOS 5.0',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7215,'Access DOS',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7216,'MS-DOS 3.30a',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7217,'MS-DOS 2.0',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7218,'PC MS-DOS',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7219,'MS-DOS 3.30A',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7220,'TI MS-DOS 3.30R',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7221,'MS-DOS 6',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7222,'MS-DOS 5',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7223,'Microsoft MS-DOS',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7224,'MS-DOS 1.2',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7225,'MS-DOS 3.3',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7226,'ADOS 5.0',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7227,'Texas Instruments MS-DOS 3.3R',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7228,'AST MS-DOS 5.0',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7229,'Microsoft HDOS',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7230,'TI MS-DOS 3.3R',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7231,'MS-DOS 4.00 (IBM-developed)',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7232,'MS-DOS 1.22',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7233,'MS-DOS 1.53',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7234,'ADOS 3.3',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7235,'MS-ROMDOS',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7236,'MS-DOS 3.25',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7237,'Hebrew MS-DOS 5.0',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7238,'MS-DOS 1.40',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7239,'MS-DOS 3.30R',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7240,'AST Premium Exec DOS 5.0',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7241,'Texas Instruments MS-DOS 3.30R',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7242,'MS-DOS 1.25',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7243,'MS-DOS 2.01',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7244,'MS-DOS 1.26',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7245,'MS-DOS 1.41',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7246,'MS-DOS 1.29',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7247,'TeleVideo Personal Computer DOS 2.11',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7248,'MS-DOS 6.00',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7249,'Microsoft MS-DOS 3.30a',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7250,'TeleVideo PC DOS 2.11',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7251,'SB-DOS',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7252,'Microsoft Hebrew MS-DOS 5.0',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7253,'HDOS 5.0',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7254,'Hewlett-Packard MS-DOS 3.22R',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7255,'MS-DOS 5.00A',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7256,'MS-DOS 6.22',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7257,'Microsoft ADOS 5.0',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7258,'MS-DOS 3.00',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7259,'MS-DOS 2.2',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7260,'Hebrew MS-DOS 3.3',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7261,'MS-DOS 1',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7262,'COMPAQ-DOS',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7263,'MS-DOS 3.21',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7264,'MS-DOS 3.2',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7265,'Microsoft MS-DOS 3.3A',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7266,'MS-DOS 3.22',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7267,'MS-DOS 6.21',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7268,'MS-DOS 3.20',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7269,'Microsoft ADOS',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7270,'MS-DOS 1.30',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7271,'MS-DOS 7.10',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7272,'MS-DOS 3',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7273,'MS-DOS 4.01',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7274,'Altos MS-DOS',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7275,'Microsoft Hebrew MS-DOS 3.3',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7276,'Arabic MS-DOS',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7277,'MsDOS',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7278,'MS-DOS 1.28',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7279,'MS-DOS 2.20',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7280,'MS-DOS 1.13',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7281,'MS-DOS 1.24',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7282,'HDOS 5.00',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7283,'ADOS (MS-DOS)',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7284,'MS-DOS 1.21',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7285,'MS-DOS 2',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7286,'HDOS 3.3',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7287,'MS DOS Mobile',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7288,'MS-DOS 6.2',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7289,'MS-DOS 6.0',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7290,'MS-DOS 2.11R',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7291,'MS-DOS 1.12',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7292,'MS-DOS 6.20',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7293,'Arabic MS-DOS 3.3',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7294,'Arabic MS-DOS 5.0',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7295,'MS-DOS 4.0 (IBM-developed)',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7296,'Microsoft MS-DOS 3.3a',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7297,'MS-DOS 1.54',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7298,'MS-DOS 3.10',6,593,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7335,'XML comment',9,596,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7339,'XML Specification',9,596,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7342,'XML vocabulary',9,596,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7345,'XML document',9,596,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7356,'DOS/VS',6,597,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7357,'IBM TOS/360',6,597,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7359,'Tape Operating System',6,597,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7360,'TOS/360',6,597,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7361,'SSX/VSE',6,597,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7362,'Z/TPF',6,598,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7363,'TPF/ESA',6,598,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7394,'T3Server',8,600,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7395,'DbKona',8,600,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7401,'Netbsd',6,602,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7402,'NETBSD',6,602,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7403,'Nbsd',6,602,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7404,'The NetBSD Foundation',6,602,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7405,'NBSD',6,602,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7406,'Net bsd',6,602,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7407,'Net BSD',6,602,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7408,'NetBSD kernel',6,602,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7438,'Web part packager',2,603,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7466,'Arbor Software',2,607,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7486,'credstash',2,612,NULL); +INSERT INTO entity_mentions VALUES(7487,'Snyk',2,613,NULL); +INSERT INTO entity_mentions VALUES(7488,'Akka',2,614,NULL); +INSERT INTO entity_mentions VALUES(7489,'Akka (software)',2,614,NULL); +INSERT INTO entity_mentions VALUES(7490,'Akka (toolkit)',2,614,NULL); +INSERT INTO entity_mentions VALUES(7491,'Varnish',8,615,NULL); +INSERT INTO entity_mentions VALUES(7492,'Varnish (Software)',8,615,NULL); +INSERT INTO entity_mentions VALUES(7493,'Varinish (Software)',8,615,NULL); +INSERT INTO entity_mentions VALUES(7494,'Varnish cache',8,615,NULL); +INSERT INTO entity_mentions VALUES(7495,'Varnishd',8,615,NULL); +INSERT INTO entity_mentions VALUES(7496,'Varnish cache server',8,615,NULL); +INSERT INTO entity_mentions VALUES(7497,'Varnish-cache.org',8,615,NULL); +INSERT INTO entity_mentions VALUES(7498,'Varnish (software)',8,615,NULL); +INSERT INTO entity_mentions VALUES(7499,'Datadog',10,616,NULL); +INSERT INTO entity_mentions VALUES(7500,'API',1,617,NULL); +INSERT INTO entity_mentions VALUES(7501,'Application-programming interface',1,617,NULL); +INSERT INTO entity_mentions VALUES(7502,'Application Programming Interfaces',1,617,NULL); +INSERT INTO entity_mentions VALUES(7503,'Application-level interaction',1,617,NULL); +INSERT INTO entity_mentions VALUES(7504,'Application Program Interface',1,617,NULL); +INSERT INTO entity_mentions VALUES(7505,'Api',1,617,NULL); +INSERT INTO entity_mentions VALUES(7506,'API documentation',1,617,NULL); +INSERT INTO entity_mentions VALUES(7507,'API Documentation',1,617,NULL); +INSERT INTO entity_mentions VALUES(7508,'Application Programming Interface (API)',1,617,NULL); +INSERT INTO entity_mentions VALUES(7509,'Application program interface',1,617,NULL); +INSERT INTO entity_mentions VALUES(7510,'Applications programming interface',1,617,NULL); +INSERT INTO entity_mentions VALUES(7512,'Hazelcast',10,618,NULL); +INSERT INTO entity_mentions VALUES(7513,'Nuxeo',10,620,NULL); +INSERT INTO entity_mentions VALUES(7514,'ArangoDB',2,621,NULL); +INSERT INTO entity_mentions VALUES(7515,'AQL (ArangoDB Query Language)',2,621,NULL); +INSERT INTO entity_mentions VALUES(7516,'AvocadoDB',2,621,NULL); +INSERT INTO entity_mentions VALUES(7517,'Eclipse Che',2,622,NULL); +INSERT INTO entity_mentions VALUES(7518,'Codenvy',2,622,NULL); +INSERT INTO entity_mentions VALUES(7519,'Amazon S3',2,623,NULL); +INSERT INTO entity_mentions VALUES(7520,'Amazon Simple Storage Service',2,623,NULL); +INSERT INTO entity_mentions VALUES(7521,'Simple Storage Service',2,623,NULL); +INSERT INTO entity_mentions VALUES(7522,'S3.amazonaws.com',2,623,NULL); +INSERT INTO entity_mentions VALUES(7523,'Amazon-s3',2,623,NULL); +INSERT INTO entity_mentions VALUES(7524,'AWS S3',2,623,NULL); +INSERT INTO entity_mentions VALUES(7525,'Applications that use S3 API',2,623,NULL); +INSERT INTO entity_mentions VALUES(7526,'User:Leoinspace/Applications that use S3 API',2,623,NULL); +INSERT INTO entity_mentions VALUES(7527,'Amazon S3 server',2,623,NULL); +INSERT INTO entity_mentions VALUES(7528,'Amazon s3',2,623,NULL); +INSERT INTO entity_mentions VALUES(7530,'S3',2,623,NULL); +INSERT INTO entity_mentions VALUES(7531,'ClickHouse',2,624,NULL); +INSERT INTO entity_mentions VALUES(7532,'Clickhouse',2,624,NULL); +INSERT INTO entity_mentions VALUES(7533,'MinIO',2,625,NULL); +INSERT INTO entity_mentions VALUES(7534,'Minio',2,625,NULL); +INSERT INTO entity_mentions VALUES(7535,'Elasticsearch',2,626,NULL); +INSERT INTO entity_mentions VALUES(7536,'Compass Project',2,626,NULL); +INSERT INTO entity_mentions VALUES(7537,'ElasticSearch',2,626,NULL); +INSERT INTO entity_mentions VALUES(7538,'Shay Banon',2,626,NULL); +INSERT INTO entity_mentions VALUES(7539,'Logstash',2,626,NULL); +INSERT INTO entity_mentions VALUES(7540,'Elastic search',2,626,NULL); +INSERT INTO entity_mentions VALUES(7541,'Elastic Search',2,626,NULL); +INSERT INTO entity_mentions VALUES(7542,'Elasticsearch BV',2,626,NULL); +INSERT INTO entity_mentions VALUES(7543,'Elastic stack',2,626,NULL); +INSERT INTO entity_mentions VALUES(7544,'ELK stack',2,626,NULL); +INSERT INTO entity_mentions VALUES(7545,'es',2,626,NULL); +INSERT INTO entity_mentions VALUES(7546,'XtraDB',2,627,NULL); +INSERT INTO entity_mentions VALUES(7547,'Xtradb',2,627,NULL); +INSERT INTO entity_mentions VALUES(7548,'Xtra DB',2,627,NULL); +INSERT INTO entity_mentions VALUES(7549,'Percona XtraDB',2,627,NULL); +INSERT INTO entity_mentions VALUES(7550,'Keycloak',2,628,NULL); +INSERT INTO entity_mentions VALUES(7551,'JBoss SSO',2,628,NULL); +INSERT INTO entity_mentions VALUES(7552,'PicketLink (software)',2,628,NULL); +INSERT INTO entity_mentions VALUES(7553,'Grafana',2,629,NULL); +INSERT INTO entity_mentions VALUES(7554,'Mattermost',10,630,NULL); +INSERT INTO entity_mentions VALUES(7555,'Mattermost.com',10,630,NULL); +INSERT INTO entity_mentions VALUES(7556,'Cloud IAM',2,632,NULL); +INSERT INTO entity_mentions VALUES(7557,'Knative',10,633,NULL); +INSERT INTO entity_mentions VALUES(7558,'Apache Cassandra',2,634,NULL); +INSERT INTO entity_mentions VALUES(7559,'Apache cassandra',2,634,NULL); +INSERT INTO entity_mentions VALUES(7560,'Cassandra (database)',2,634,NULL); +INSERT INTO entity_mentions VALUES(7561,'Cassandra (software)',2,634,NULL); +INSERT INTO entity_mentions VALUES(7562,'Cassandra software',2,634,NULL); +INSERT INTO entity_mentions VALUES(7563,'Cassandra',2,634,NULL); +INSERT INTO entity_mentions VALUES(7564,'Kubeflow',10,635,NULL); +INSERT INTO entity_mentions VALUES(7565,'Qiskit',2,636,NULL); +INSERT INTO entity_mentions VALUES(7566,'QISKit',2,636,NULL); +INSERT INTO entity_mentions VALUES(7567,'Microsoft Azure',2,637,NULL); +INSERT INTO entity_mentions VALUES(7568,'Windows Strata',2,637,NULL); +INSERT INTO entity_mentions VALUES(7569,'Windows Cloud',2,637,NULL); +INSERT INTO entity_mentions VALUES(7570,'Windows azure',2,637,NULL); +INSERT INTO entity_mentions VALUES(7571,'Windows Azure Fabric Controller',2,637,NULL); +INSERT INTO entity_mentions VALUES(7572,'Microsoft Windows Azure',2,637,NULL); +INSERT INTO entity_mentions VALUES(7573,'Azure Services Platform',2,637,NULL); +INSERT INTO entity_mentions VALUES(7574,'Windows Azure',2,637,NULL); +INSERT INTO entity_mentions VALUES(7575,'Azure machine learning studio',2,637,NULL); +INSERT INTO entity_mentions VALUES(7576,'Microsoft azure',2,637,NULL); +INSERT INTO entity_mentions VALUES(7577,'Ethereum Blockchain as a Service',2,637,NULL); +INSERT INTO entity_mentions VALUES(7579,'Azure',2,637,NULL); +INSERT INTO entity_mentions VALUES(7580,'Strimzi',10,638,NULL); +INSERT INTO entity_mentions VALUES(7581,'Sematext',10,639,NULL); +INSERT INTO entity_mentions VALUES(7582,'Eclipse Ditto',2,641,NULL); +INSERT INTO entity_mentions VALUES(7583,'Zadara',2,643,NULL); +INSERT INTO entity_mentions VALUES(7584,'Zadara Storage',2,643,NULL); +INSERT INTO entity_mentions VALUES(7585,'Istio',2,644,NULL); +INSERT INTO entity_mentions VALUES(7586,'Vault',2,645,NULL); +INSERT INTO entity_mentions VALUES(7587,'Vault overseer',2,645,NULL); +INSERT INTO entity_mentions VALUES(7588,'Vault (disambiguation)',2,645,NULL); +INSERT INTO entity_mentions VALUES(7589,'Vaults',2,645,NULL); +INSERT INTO entity_mentions VALUES(7590,'Vault (software)',2,645,NULL); +INSERT INTO entity_mentions VALUES(7591,'HashiCorp Vault',2,645,NULL); +INSERT INTO entity_mentions VALUES(7592,'Apache Druid',2,646,NULL); +INSERT INTO entity_mentions VALUES(7593,'Druid (open-source data store)',2,646,NULL); +INSERT INTO entity_mentions VALUES(7594,'etcd',2,647,NULL); +INSERT INTO entity_mentions VALUES(7595,'Traefik',8,648,NULL); +INSERT INTO entity_mentions VALUES(7596,'IBM Cloud',2,649,NULL); +INSERT INTO entity_mentions VALUES(7597,'Bluemix',2,649,NULL); +INSERT INTO entity_mentions VALUES(7598,'IBM Bluemix',2,649,NULL); +INSERT INTO entity_mentions VALUES(7599,'OpenWhisk',2,649,NULL); +INSERT INTO entity_mentions VALUES(7600,'CockroachDB',2,651,NULL); +INSERT INTO entity_mentions VALUES(7601,'Cockroach DB',2,651,NULL); +INSERT INTO entity_mentions VALUES(7602,'User:Remote50/sandbox',2,651,NULL); +INSERT INTO entity_mentions VALUES(7603,'Cockroachlabs',2,651,NULL); +INSERT INTO entity_mentions VALUES(7604,'Cockroach Labs',2,651,NULL); +INSERT INTO entity_mentions VALUES(7605,'Jaeger',10,652,NULL); +INSERT INTO entity_mentions VALUES(7606,'NATURAL',9,653,'others'); +INSERT INTO entity_mentions VALUES(7607,'NPL',9,653,'others'); +INSERT INTO entity_mentions VALUES(7608,'Natural Programming Language',9,653,'others'); +INSERT INTO entity_mentions VALUES(7609,'ACUCOBOL-GT',9,654,'also_known_as'); +INSERT INTO entity_mentions VALUES(7610,'ACUCOBOL',9,654,'also_known_as'); +INSERT INTO entity_mentions VALUES(7611,'AcuCOBOL',9,654,'also_known_as'); +INSERT INTO entity_mentions VALUES(7612,'Ada',9,655,'also_known_as'); +INSERT INTO entity_mentions VALUES(7613,'MIL-STD-1815',9,655,'also_known_as'); +INSERT INTO entity_mentions VALUES(7614,'ISO/IEC 8652',9,655,'also_known_as'); +INSERT INTO entity_mentions VALUES(7615,'Ada 95',9,655,'also_known_as'); +INSERT INTO entity_mentions VALUES(7616,'Ada 83',9,655,'also_known_as'); +INSERT INTO entity_mentions VALUES(7617,'Ada 80',9,655,'also_known_as'); +INSERT INTO entity_mentions VALUES(7618,'Ada 2012',9,655,'also_known_as'); +INSERT INTO entity_mentions VALUES(7619,'Adaptable DAta BAse System',2,656,'also_known_as'); +INSERT INTO entity_mentions VALUES(7620,'ADABAS',2,656,'also_known_as'); +INSERT INTO entity_mentions VALUES(7621,'Adabas database',2,656,'also_known_as'); +INSERT INTO entity_mentions VALUES(7622,'Application Development System Online',9,657,'also_known_as'); +INSERT INTO entity_mentions VALUES(7623,'ADS/O',9,657,'also_known_as'); +INSERT INTO entity_mentions VALUES(7624,'ADS',9,657,'also_known_as'); +INSERT INTO entity_mentions VALUES(7625,'ADS/Online',9,657,'also_known_as'); +INSERT INTO entity_mentions VALUES(7626,'Ansible',2,5,'also_known_as'); +INSERT INTO entity_mentions VALUES(7627,'Ansible Software',2,5,'also_known_as'); +INSERT INTO entity_mentions VALUES(7628,'batch',9,659,'also_known_as'); +INSERT INTO entity_mentions VALUES(7629,'BAT file',9,659,'also_known_as'); +INSERT INTO entity_mentions VALUES(7630,'batch file',9,659,'also_known_as'); +INSERT INTO entity_mentions VALUES(7631,'Windows PowerShell',9,660,'also_known_as'); +INSERT INTO entity_mentions VALUES(7632,'PowerShell Core',9,660,'also_known_as'); +INSERT INTO entity_mentions VALUES(7633,'PS',9,660,'also_known_as'); +INSERT INTO entity_mentions VALUES(7634,'Power Shell',9,660,'also_known_as'); +INSERT INTO entity_mentions VALUES(7635,'Monal Shell',9,660,'also_known_as'); +INSERT INTO entity_mentions VALUES(7636,'Microsoft Shell',9,660,'also_known_as'); +INSERT INTO entity_mentions VALUES(7637,'MSH',9,660,'also_known_as'); +INSERT INTO entity_mentions VALUES(7638,'COM+',9,661,'also_known_as'); +INSERT INTO entity_mentions VALUES(7639,'Microsoft Component Services',9,661,'also_known_as'); +INSERT INTO entity_mentions VALUES(7640,'COM Services',9,661,'also_known_as'); +INSERT INTO entity_mentions VALUES(7641,'DataFlex',9,662,'also_known_as'); +INSERT INTO entity_mentions VALUES(7642,'Dataflex',9,662,'also_known_as'); +INSERT INTO entity_mentions VALUES(7643,'Visual DataFlex',9,662,'redirects_transclusions'); +INSERT INTO entity_mentions VALUES(7644,'DDS',9,663,'also_known_as'); +INSERT INTO entity_mentions VALUES(7645,'Data distribution service',9,663,'also_known_as'); +INSERT INTO entity_mentions VALUES(7646,'Forte 4GL',9,664,'also_known_as'); +INSERT INTO entity_mentions VALUES(7647,'Forte',9,664,'also_known_as'); +INSERT INTO entity_mentions VALUES(7648,'FoxPro',9,665,'also_known_as'); +INSERT INTO entity_mentions VALUES(7649,'Foxpro',9,665,'also_known_as'); +INSERT INTO entity_mentions VALUES(7650,'FoxPro 2',9,665,'also_known_as'); +INSERT INTO entity_mentions VALUES(7651,'FoxPro 26',9,665,'also_known_as'); +INSERT INTO entity_mentions VALUES(7652,'FoxPro 2.6',9,665,'also_known_as'); +INSERT INTO entity_mentions VALUES(7653,'FPU26',9,665,'also_known_as'); +INSERT INTO entity_mentions VALUES(7654,'IBM DB2 Purescale',2,666,'others'); +INSERT INTO entity_mentions VALUES(7655,'DB2 Purescale',2,666,'others'); +INSERT INTO entity_mentions VALUES(7656,'IDMS DB',2,667,'others'); +INSERT INTO entity_mentions VALUES(7657,'IDMS Database',2,667,'others'); +INSERT INTO entity_mentions VALUES(7658,'IDMS/DB Database',2,667,'others'); +INSERT INTO entity_mentions VALUES(7659,'IDMS/DB DML',9,668,'others'); +INSERT INTO entity_mentions VALUES(7660,'IDMS/DB Data Manipulation Language',9,668,'others'); +INSERT INTO entity_mentions VALUES(7661,'IDMS DML',9,668,'others'); +INSERT INTO entity_mentions VALUES(7662,'Jaguar',8,669,'others'); +INSERT INTO entity_mentions VALUES(7663,'EAServer',8,670,'also_known_as'); +INSERT INTO entity_mentions VALUES(7664,'Enterprise Application Server',8,670,'also_known_as'); +INSERT INTO entity_mentions VALUES(7665,'Sybase Enterprise Application Server',8,670,'also_known_as'); +INSERT INTO entity_mentions VALUES(7668,'Cassandra SGBD',2,634,'also_known_as'); +INSERT INTO entity_mentions VALUES(7669,'Netezza',4,672,'also_known_as'); +INSERT INTO entity_mentions VALUES(7670,'IBM Netezza',4,672,'also_known_as'); +INSERT INTO entity_mentions VALUES(7674,'OpenEdge Advanced Business Language',9,344,'also_known_as'); +INSERT INTO entity_mentions VALUES(7676,'Open Rapid Object Application Development',9,674,'also_known_as'); +INSERT INTO entity_mentions VALUES(7677,'Oracle Reports',2,675,'also_known_as'); +INSERT INTO entity_mentions VALUES(7678,'Oracle RPT',2,675,'also_known_as'); +INSERT INTO entity_mentions VALUES(7679,'Oracle Reports 1',2,675,'others'); +INSERT INTO entity_mentions VALUES(7680,'Oracle Reports 2.0',2,675,'others'); +INSERT INTO entity_mentions VALUES(7681,'Oracle Reports 2.5',2,675,'others'); +INSERT INTO entity_mentions VALUES(7682,'Oracle Reports 6i',2,675,'others'); +INSERT INTO entity_mentions VALUES(7683,'Oracle Reports 9i',2,675,'others'); +INSERT INTO entity_mentions VALUES(7684,'Oracle Reports 10g',2,675,'others'); +INSERT INTO entity_mentions VALUES(7685,'SAP Replication Server',2,676,'others'); +INSERT INTO entity_mentions VALUES(7686,'content tracker',2,677,'also_known_as'); +INSERT INTO entity_mentions VALUES(7687,'Git',2,677,'also_known_as'); +INSERT INTO entity_mentions VALUES(7688,'the stupid content tracker',2,677,'also_known_as'); +INSERT INTO entity_mentions VALUES(7689,'gitlab',2,678,'also_known_as'); +INSERT INTO entity_mentions VALUES(7690,'Virtual Storage Access Method',2,679,'also_known_as'); +INSERT INTO entity_mentions VALUES(7691,'VSAM',2,679,'also_known_as'); +INSERT INTO entity_mentions VALUES(7692,'BMS Map',9,689,'others'); +INSERT INTO entity_mentions VALUES(7693,'Basic Mapping Supprt',9,689,'others'); +INSERT INTO entity_mentions VALUES(7695,'DB400',2,690,'others'); +INSERT INTO entity_mentions VALUES(7696,'DB/400',2,690,'others'); +INSERT INTO entity_mentions VALUES(7697,'Integrated Language Environment',9,691,'also_known_as'); +INSERT INTO entity_mentions VALUES(7698,'ILE',9,691,'also_known_as'); +INSERT INTO entity_mentions VALUES(7699,'indexed sequential access method',2,693,'also_known_as'); +INSERT INTO entity_mentions VALUES(7700,'ISAM',2,693,'also_known_as'); +INSERT INTO entity_mentions VALUES(7701,'IBM ISAM',2,693,'others'); +INSERT INTO entity_mentions VALUES(7702,'Oracle RDS',2,694,'others'); +INSERT INTO entity_mentions VALUES(7703,'RDS Oracle DB',2,694,'others'); +INSERT INTO entity_mentions VALUES(7704,'Oracle RDS Database',2,694,'others'); +INSERT INTO entity_mentions VALUES(7705,'SAP IQ',2,695,'also_known_as'); +INSERT INTO entity_mentions VALUES(7706,'Sybase IQ',2,695,'also_known_as'); +INSERT INTO entity_mentions VALUES(7707,'SAP Sybase IQ',2,695,'also_known_as'); +INSERT INTO entity_mentions VALUES(7708,'z/Linux',2,437,'also_known_as'); +INSERT INTO entity_mentions VALUES(7709,'Linux on IBM Z',2,437,'also_known_as'); +INSERT INTO entity_mentions VALUES(7710,'Integrated Data Store (IDS)',2,692,'also_known_as'); +INSERT INTO entity_mentions VALUES(7711,'IDS',2,692,'also_known_as'); +INSERT INTO entity_mentions VALUES(7712,'IDS/I',2,692,'also_known_as'); +INSERT INTO entity_mentions VALUES(7713,'Springboot',12,399,'others'); +INSERT INTO entity_mentions VALUES(7714,'Apache Maven',2,697,'others'); +INSERT INTO entity_mentions VALUES(7715,'Maven',2,697,'also_known_as'); +INSERT INTO entity_mentions VALUES(7716,'BAL',9,698,'also_known_as'); +INSERT INTO entity_mentions VALUES(7717,'Basic Assembler Language',9,698,'also_known_as'); +INSERT INTO entity_mentions VALUES(7718,'Basic Assembly Language',9,698,'also_known_as'); +INSERT INTO entity_mentions VALUES(7719,'IBM Basic assembly language',9,698,'others'); +INSERT INTO entity_mentions VALUES(7720,'COM plus',9,661,'others'); +INSERT INTO entity_mentions VALUES(7721,'COM+ Events',9,661,'others'); CREATE TABLE entity_relations ( id integer PRIMARY KEY AUTOINCREMENT, entity_parent_type_id integer NOT NULL, @@ -8743,4882 +7766,1343 @@ CREATE TABLE entity_relations ( FOREIGN KEY (entity_parent_id) REFERENCES entities (id), FOREIGN KEY (entity_child_id) REFERENCES entities (id) ); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1, 6, 580, 10, 497, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (2, 6, 580, 10, 498, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (3, 6, 580, 10, 592, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (4, 6, 580, 10, 500, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (5, 6, 418, 10, 501, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (6, 6, 425, 10, 501, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (7, 6, 438, 10, 501, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (8, 6, 580, 10, 501, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (9, 6, 441, 10, 502, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (10, 6, 591, 10, 502, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (11, 6, 576, 10, 503, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (12, 6, 438, 10, 503, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (13, 6, 580, 10, 503, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (14, 6, 418, 10, 504, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (15, 6, 425, 10, 504, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (16, 6, 576, 10, 504, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (17, 6, 438, 10, 504, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (18, 6, 448, 10, 504, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (19, 6, 580, 10, 504, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (20, 6, 580, 10, 505, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (21, 6, 575, 10, 506, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (22, 6, 576, 10, 507, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (23, 6, 438, 10, 507, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (24, 6, 445, 10, 507, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (25, 6, 447, 10, 507, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (26, 6, 590, 10, 507, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (27, 6, 580, 10, 507, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (28, 6, 576, 10, 508, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (29, 6, 438, 10, 508, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (30, 6, 580, 10, 508, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (31, 6, 575, 10, 509, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (32, 8, 266, 7, 490, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (33, 8, 266, 7, 489, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (34, 8, 266, 7, 491, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (35, 8, 267, 7, 492, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (36, 8, 275, 7, 494, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (37, 8, 276, 7, 495, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (38, 8, 279, 7, 496, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (39, 10, 497, 7, 482, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (40, 10, 497, 7, 483, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (41, 10, 497, 7, 484, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (42, 10, 497, 7, 485, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (43, 10, 497, 7, 486, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (44, 10, 497, 7, 487, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (45, 10, 500, 7, 488, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (46, 2, 33, 5, 455, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (47, 2, 46, 5, 456, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (48, 2, 62, 5, 457, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (49, 2, 68, 5, 458, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (50, 2, 75, 5, 459, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (51, 2, 78, 5, 460, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (52, 2, 78, 5, 461, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (53, 2, 78, 5, 462, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (54, 2, 78, 5, 463, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (55, 2, 104, 5, 464, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (56, 2, 581, 5, 466, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (57, 2, 581, 5, 467, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (58, 2, 581, 5, 468, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (59, 2, 581, 5, 469, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (60, 2, 581, 5, 470, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (61, 2, 581, 5, 471, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (62, 2, 581, 5, 473, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (63, 2, 581, 5, 465, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (64, 2, 581, 5, 472, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (65, 2, 134, 5, 474, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (66, 2, 134, 5, 475, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (67, 2, 134, 5, 478, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (68, 2, 174, 5, 476, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (69, 2, 174, 5, 477, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (70, 2, 190, 5, 479, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (71, 2, 190, 5, 480, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (72, 2, 217, 5, 481, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (73, 9, 582, 12, 375, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (74, 9, 583, 12, 375, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (75, 9, 584, 12, 375, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (76, 9, 346, 12, 375, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (77, 9, 585, 12, 375, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (78, 9, 586, 12, 375, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (79, 9, 587, 12, 375, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (80, 9, 588, 12, 375, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (81, 9, 583, 12, 376, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (82, 9, 584, 12, 376, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (83, 9, 585, 12, 376, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (84, 9, 307, 12, 377, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (85, 9, 584, 12, 378, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (86, 9, 584, 12, 379, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (87, 9, 584, 12, 380, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (88, 9, 584, 12, 381, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (89, 9, 584, 12, 382, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (90, 9, 584, 12, 383, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (91, 9, 584, 12, 384, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (92, 9, 584, 12, 385, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (93, 9, 584, 12, 386, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (94, 9, 584, 12, 387, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (95, 9, 584, 12, 388, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (96, 9, 584, 12, 389, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (97, 9, 584, 12, 390, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (98, 9, 584, 12, 391, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (99, 9, 584, 12, 392, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (100, 9, 584, 12, 393, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (101, 9, 584, 12, 394, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (102, 9, 584, 12, 395, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (103, 9, 584, 12, 396, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (104, 9, 584, 12, 397, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (105, 9, 584, 12, 398, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (106, 9, 584, 12, 399, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (107, 9, 584, 12, 400, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (108, 9, 584, 12, 401, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (109, 9, 584, 12, 402, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (110, 9, 584, 12, 403, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (111, 9, 584, 12, 404, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (112, 9, 589, 12, 405, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (113, 9, 589, 12, 406, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (114, 9, 589, 12, 407, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (115, 9, 589, 12, 408, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (116, 9, 589, 12, 409, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (117, 9, 589, 12, 410, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (118, 9, 589, 12, 411, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (119, 9, 589, 12, 412, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (120, 9, 589, 12, 413, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (121, 9, 589, 12, 414, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (122, 9, 589, 12, 415, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (123, 9, 311, 12, 416, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (124, 9, 584, 12, 416, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (125, 9, 589, 12, 416, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (126, 9, 586, 12, 416, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (127, 9, 587, 12, 416, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (128, 9, 585, 12, 417, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (129, 6, 580, 9, 299, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (130, 6, 576, 9, 300, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (131, 6, 578, 9, 300, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (132, 6, 575, 9, 301, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (133, 6, 580, 9, 302, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (134, 6, 575, 9, 303, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (135, 6, 580, 9, 304, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (136, 6, 575, 9, 583, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (137, 6, 575, 9, 307, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (138, 6, 593, 9, 308, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (139, 6, 577, 9, 309, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (140, 6, 441, 9, 594, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (141, 6, 442, 9, 594, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (142, 6, 578, 9, 594, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (143, 6, 576, 9, 594, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (144, 6, 595, 9, 594, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (145, 6, 580, 9, 594, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (146, 6, 591, 9, 594, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (147, 6, 580, 9, 311, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (148, 6, 575, 9, 312, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (149, 6, 418, 9, 313, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (150, 6, 425, 9, 313, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (151, 6, 576, 9, 313, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (152, 6, 438, 9, 313, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (153, 6, 580, 9, 313, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (154, 6, 576, 9, 314, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (155, 6, 441, 9, 314, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (156, 6, 578, 9, 314, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (157, 6, 580, 9, 314, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (158, 6, 608, 9, 314, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (159, 6, 591, 9, 314, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (160, 6, 575, 9, 315, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (161, 6, 575, 9, 316, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (162, 6, 575, 9, 596, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (163, 6, 575, 9, 319, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (164, 6, 575, 9, 320, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (165, 6, 597, 9, 321, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (166, 6, 577, 9, 321, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (167, 6, 442, 9, 321, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (168, 6, 443, 9, 321, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (169, 6, 578, 9, 321, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (170, 6, 608, 9, 321, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (171, 6, 575, 9, 322, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (172, 6, 576, 9, 323, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (173, 6, 438, 9, 323, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (174, 6, 579, 9, 323, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (175, 6, 580, 9, 323, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (176, 6, 575, 9, 324, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (177, 6, 575, 9, 325, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (178, 6, 575, 9, 326, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (179, 6, 575, 9, 327, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (180, 6, 441, 9, 328, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (181, 6, 598, 9, 328, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (182, 6, 608, 9, 328, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (183, 6, 591, 9, 328, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (184, 6, 424, 9, 329, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (185, 6, 575, 9, 330, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (186, 6, 575, 9, 584, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (187, 6, 575, 9, 589, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (188, 6, 597, 9, 338, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (189, 6, 577, 9, 338, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (190, 6, 591, 9, 338, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (191, 6, 576, 9, 339, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (192, 6, 578, 9, 339, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (193, 6, 580, 9, 339, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (194, 6, 580, 9, 340, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (195, 6, 575, 9, 341, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (196, 6, 431, 9, 342, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (197, 6, 442, 9, 342, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (198, 6, 445, 9, 342, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (199, 6, 448, 9, 342, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (200, 6, 449, 9, 342, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (201, 6, 580, 9, 342, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (202, 6, 575, 9, 343, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (203, 6, 575, 9, 344, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (204, 6, 575, 9, 599, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (205, 6, 576, 9, 585, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (206, 6, 438, 9, 585, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (207, 6, 578, 9, 585, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (208, 6, 580, 9, 585, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (209, 6, 576, 9, 350, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (210, 6, 438, 9, 350, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (211, 6, 578, 9, 350, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (212, 6, 580, 9, 350, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (213, 6, 439, 9, 351, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (214, 6, 445, 9, 351, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (215, 6, 580, 9, 351, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (216, 6, 608, 9, 351, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (217, 6, 575, 9, 352, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (218, 6, 575, 9, 353, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (219, 6, 575, 9, 587, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (220, 6, 575, 9, 355, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (221, 6, 424, 9, 356, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (222, 6, 577, 9, 356, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (223, 6, 443, 9, 356, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (224, 6, 445, 9, 356, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (225, 6, 608, 9, 356, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (226, 6, 591, 9, 356, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (227, 6, 424, 9, 357, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (228, 6, 441, 9, 357, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (229, 6, 442, 9, 357, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (230, 6, 580, 9, 357, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (231, 6, 591, 9, 357, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (232, 6, 575, 9, 358, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (233, 6, 575, 9, 359, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (234, 6, 575, 9, 360, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (235, 6, 575, 9, 361, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (236, 6, 576, 9, 362, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (237, 6, 438, 9, 362, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (238, 6, 578, 9, 362, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (239, 6, 580, 9, 362, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (240, 6, 576, 9, 363, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (241, 6, 438, 9, 363, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (242, 6, 578, 9, 363, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (243, 6, 580, 9, 363, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (244, 6, 576, 9, 364, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (245, 6, 438, 9, 364, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (246, 6, 441, 9, 364, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (247, 6, 447, 9, 364, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (248, 6, 580, 9, 364, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (249, 6, 576, 9, 365, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (250, 6, 438, 9, 365, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (251, 6, 578, 9, 365, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (252, 6, 580, 9, 365, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (253, 6, 575, 9, 366, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (254, 6, 575, 9, 367, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (255, 6, 418, 9, 368, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (256, 6, 425, 9, 368, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (257, 6, 576, 9, 368, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (258, 6, 438, 9, 368, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (259, 6, 578, 9, 368, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (260, 6, 579, 9, 368, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (261, 6, 580, 9, 368, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (262, 6, 580, 9, 369, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (263, 6, 593, 9, 370, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (264, 6, 580, 9, 370, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (265, 6, 438, 9, 371, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (266, 6, 580, 9, 371, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (267, 6, 580, 9, 372, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (268, 6, 575, 9, 373, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (269, 6, 580, 9, 374, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (270, 6, 576, 8, 259, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (271, 6, 445, 8, 259, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (272, 6, 448, 8, 259, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (273, 6, 449, 8, 259, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (274, 6, 580, 8, 259, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (275, 6, 434, 8, 260, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (276, 6, 436, 8, 260, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (277, 6, 448, 8, 260, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (278, 6, 580, 8, 260, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (279, 6, 576, 8, 260, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (280, 6, 578, 8, 260, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (281, 6, 438, 8, 260, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (282, 6, 576, 8, 261, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (283, 6, 580, 8, 261, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (284, 6, 432, 8, 600, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (285, 6, 434, 8, 600, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (286, 6, 435, 8, 600, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (287, 6, 445, 8, 600, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (288, 6, 448, 8, 600, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (289, 6, 449, 8, 600, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (290, 6, 580, 8, 600, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (291, 6, 434, 8, 263, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (292, 6, 435, 8, 263, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (293, 6, 436, 8, 263, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (294, 6, 438, 8, 263, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (295, 6, 445, 8, 263, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (296, 6, 448, 8, 263, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (297, 6, 580, 8, 263, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (298, 6, 576, 8, 264, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (299, 6, 438, 8, 264, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (300, 6, 445, 8, 264, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (301, 6, 447, 8, 264, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (302, 6, 590, 8, 264, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (303, 6, 448, 8, 264, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (304, 6, 580, 8, 609, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (305, 6, 576, 8, 267, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (306, 6, 434, 8, 267, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (307, 6, 578, 8, 267, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (308, 6, 448, 8, 267, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (309, 6, 580, 8, 267, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (310, 6, 580, 8, 267, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (311, 6, 425, 8, 269, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (312, 6, 576, 8, 269, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (313, 6, 438, 8, 269, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (314, 6, 576, 8, 270, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (315, 6, 438, 8, 270, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (316, 6, 580, 8, 270, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (317, 6, 576, 8, 271, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (318, 6, 438, 8, 271, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (319, 6, 578, 8, 271, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (320, 6, 580, 8, 271, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (321, 6, 448, 8, 272, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (322, 6, 580, 8, 272, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (323, 6, 576, 8, 273, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (324, 6, 445, 8, 273, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (325, 6, 448, 8, 273, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (326, 6, 449, 8, 273, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (327, 6, 580, 8, 273, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (328, 6, 576, 8, 274, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (329, 6, 438, 8, 274, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (330, 6, 445, 8, 274, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (331, 6, 579, 8, 274, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (332, 6, 449, 8, 274, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (333, 6, 580, 8, 274, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (334, 6, 580, 8, 610, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (335, 6, 432, 8, 610, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (336, 6, 434, 8, 610, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (337, 6, 435, 8, 610, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (338, 6, 438, 8, 610, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (339, 6, 445, 8, 610, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (340, 6, 448, 8, 610, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (341, 6, 449, 8, 610, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (342, 6, 432, 8, 276, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (343, 6, 434, 8, 276, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (344, 6, 435, 8, 276, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (345, 6, 445, 8, 276, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (346, 6, 448, 8, 276, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (347, 6, 449, 8, 276, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (348, 6, 580, 8, 276, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (349, 6, 576, 8, 278, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (350, 6, 438, 8, 278, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (351, 6, 578, 8, 278, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (352, 6, 580, 8, 278, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (353, 6, 576, 8, 280, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (354, 6, 438, 8, 280, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (355, 6, 580, 8, 280, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (356, 6, 580, 8, 282, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (357, 6, 432, 8, 262, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (358, 6, 434, 8, 262, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (359, 6, 435, 8, 262, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (360, 6, 445, 8, 262, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (361, 6, 448, 8, 262, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (362, 6, 449, 8, 262, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (363, 6, 580, 8, 262, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (364, 6, 424, 8, 283, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (365, 6, 576, 8, 283, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (366, 6, 445, 8, 283, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (367, 6, 448, 8, 283, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (368, 6, 449, 8, 283, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (369, 6, 580, 8, 283, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (370, 6, 424, 8, 284, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (371, 6, 576, 8, 284, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (372, 6, 441, 8, 284, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (373, 6, 445, 8, 284, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (374, 6, 448, 8, 284, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (375, 6, 449, 8, 284, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (376, 6, 580, 8, 284, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (377, 6, 580, 8, 285, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (378, 6, 424, 8, 285, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (379, 6, 576, 8, 285, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (380, 6, 441, 8, 285, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (381, 6, 445, 8, 285, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (382, 6, 448, 8, 285, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (383, 6, 449, 8, 285, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (384, 6, 580, 8, 285, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (385, 6, 424, 8, 286, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (386, 6, 576, 8, 286, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (387, 6, 441, 8, 286, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (388, 6, 445, 8, 286, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (389, 6, 448, 8, 286, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (390, 6, 449, 8, 286, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (391, 6, 580, 8, 286, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (392, 6, 424, 8, 287, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (393, 6, 576, 8, 287, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (394, 6, 441, 8, 287, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (395, 6, 445, 8, 287, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (396, 6, 448, 8, 287, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (397, 6, 449, 8, 287, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (398, 6, 580, 8, 287, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (399, 6, 445, 8, 265, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (400, 6, 449, 8, 265, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (401, 6, 576, 8, 265, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (402, 6, 448, 8, 265, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (403, 6, 580, 8, 265, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (404, 6, 424, 8, 265, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (405, 6, 441, 8, 265, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (406, 6, 434, 8, 277, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (407, 6, 432, 8, 277, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (408, 6, 427, 8, 277, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (409, 6, 435, 8, 277, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (410, 6, 436, 8, 277, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (411, 6, 448, 8, 277, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (412, 6, 580, 8, 277, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (413, 6, 438, 8, 277, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (414, 6, 445, 8, 279, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (415, 6, 449, 8, 279, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (416, 6, 576, 8, 279, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (417, 6, 448, 8, 279, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (418, 6, 580, 8, 281, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (419, 6, 445, 8, 281, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (420, 6, 449, 8, 281, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (421, 6, 445, 8, 281, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (422, 6, 449, 8, 281, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (423, 6, 580, 8, 281, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (424, 6, 448, 8, 281, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (425, 6, 434, 8, 281, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (426, 6, 576, 8, 267, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (427, 6, 580, 8, 267, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (428, 6, 578, 8, 267, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (429, 6, 441, 2, 1, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (430, 6, 575, 2, 3, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (431, 6, 576, 2, 5, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (432, 6, 438, 2, 5, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (433, 6, 578, 2, 5, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (434, 6, 580, 2, 5, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (435, 6, 576, 2, 6, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (436, 6, 438, 2, 6, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (437, 6, 578, 2, 6, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (438, 6, 580, 2, 6, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (439, 6, 576, 2, 8, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (440, 6, 438, 2, 8, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (441, 6, 578, 2, 8, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (442, 6, 580, 2, 8, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (443, 6, 576, 2, 9, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (444, 6, 438, 2, 9, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (445, 6, 580, 2, 9, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (446, 6, 578, 2, 9, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (447, 6, 576, 2, 10, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (448, 6, 438, 2, 10, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (449, 6, 578, 2, 10, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (450, 6, 580, 2, 10, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (451, 6, 576, 2, 11, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (452, 6, 438, 2, 11, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (453, 6, 580, 2, 11, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (454, 6, 419, 2, 12, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (455, 6, 427, 2, 12, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (456, 6, 429, 2, 12, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (457, 6, 431, 2, 12, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (458, 6, 434, 2, 12, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (459, 6, 435, 2, 12, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (460, 6, 436, 2, 12, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (461, 6, 438, 2, 12, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (462, 6, 443, 2, 12, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (463, 6, 579, 2, 12, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (464, 6, 449, 2, 12, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (465, 6, 580, 2, 12, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (466, 6, 575, 2, 13, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (467, 6, 576, 2, 14, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (468, 6, 438, 2, 14, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (469, 6, 579, 2, 14, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (470, 6, 580, 2, 14, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (471, 6, 427, 2, 15, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (472, 6, 434, 2, 15, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (473, 6, 580, 2, 15, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (474, 6, 576, 2, 16, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (475, 6, 445, 2, 16, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (476, 6, 448, 2, 16, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (477, 6, 449, 2, 16, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (478, 6, 580, 2, 16, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (479, 6, 576, 2, 19, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (480, 6, 445, 2, 19, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (481, 6, 448, 2, 19, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (482, 6, 449, 2, 19, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (483, 6, 580, 2, 19, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (484, 6, 427, 2, 21, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (485, 6, 431, 2, 21, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (486, 6, 432, 2, 21, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (487, 6, 434, 2, 21, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (488, 6, 435, 2, 21, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (489, 6, 580, 2, 21, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (490, 6, 576, 2, 23, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (491, 6, 445, 2, 23, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (492, 6, 448, 2, 23, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (493, 6, 580, 2, 23, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (494, 6, 424, 2, 25, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (495, 6, 593, 2, 25, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (496, 6, 439, 2, 25, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (497, 6, 443, 2, 25, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (498, 6, 578, 2, 25, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (499, 6, 580, 2, 25, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (500, 6, 591, 2, 25, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (501, 6, 575, 2, 26, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (502, 6, 427, 2, 27, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (503, 6, 429, 2, 27, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (504, 6, 432, 2, 27, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (505, 6, 434, 2, 27, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (506, 6, 435, 2, 27, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (507, 6, 436, 2, 27, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (508, 6, 438, 2, 27, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (509, 6, 445, 2, 27, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (510, 6, 447, 2, 27, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (511, 6, 448, 2, 27, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (512, 6, 580, 2, 27, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (513, 6, 448, 2, 29, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (514, 6, 580, 2, 29, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (515, 6, 576, 2, 31, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (516, 6, 580, 2, 32, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (517, 6, 576, 2, 32, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (518, 6, 575, 2, 33, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (519, 6, 418, 2, 36, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (520, 6, 425, 2, 36, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (521, 6, 434, 2, 36, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (522, 6, 435, 2, 36, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (523, 6, 436, 2, 36, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (524, 6, 445, 2, 36, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (525, 6, 448, 2, 36, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (526, 6, 580, 2, 36, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (527, 6, 427, 2, 37, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (528, 6, 434, 2, 37, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (529, 6, 435, 2, 37, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (530, 6, 436, 2, 37, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (531, 6, 438, 2, 37, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (532, 6, 580, 2, 37, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (533, 6, 575, 2, 38, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (534, 6, 580, 2, 39, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (535, 6, 434, 2, 40, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (536, 6, 435, 2, 40, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (537, 6, 441, 2, 40, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (538, 6, 445, 2, 40, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (539, 6, 448, 2, 40, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (540, 6, 449, 2, 40, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (541, 6, 580, 2, 40, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (542, 6, 580, 2, 41, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (543, 6, 580, 2, 42, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (544, 6, 576, 2, 43, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (545, 6, 438, 2, 43, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (546, 6, 445, 2, 43, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (547, 6, 580, 2, 43, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (548, 6, 576, 2, 44, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (549, 6, 578, 2, 44, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (550, 6, 580, 2, 44, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (551, 6, 576, 2, 45, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (552, 6, 438, 2, 45, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (553, 6, 578, 2, 45, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (554, 6, 580, 2, 45, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (555, 6, 576, 2, 46, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (556, 6, 438, 2, 46, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (557, 6, 448, 2, 46, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (558, 6, 580, 2, 46, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (559, 6, 427, 2, 47, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (560, 6, 429, 2, 47, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (561, 6, 431, 2, 47, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (562, 6, 432, 2, 47, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (563, 6, 434, 2, 47, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (564, 6, 435, 2, 47, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (565, 6, 436, 2, 47, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (566, 6, 580, 2, 47, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (567, 6, 575, 2, 50, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (568, 6, 425, 2, 51, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (569, 6, 438, 2, 51, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (570, 6, 580, 2, 51, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (571, 6, 418, 2, 54, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (572, 6, 425, 2, 54, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (573, 6, 438, 2, 54, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (574, 6, 580, 2, 54, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (575, 6, 427, 2, 57, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (576, 6, 429, 2, 57, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (577, 6, 432, 2, 57, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (578, 6, 434, 2, 57, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (579, 6, 435, 2, 57, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (580, 6, 436, 2, 57, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (581, 6, 580, 2, 57, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (582, 6, 449, 2, 58, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (583, 6, 449, 2, 59, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (584, 6, 434, 2, 60, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (585, 6, 435, 2, 60, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (586, 6, 447, 2, 60, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (587, 6, 448, 2, 60, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (588, 6, 580, 2, 60, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (589, 6, 575, 2, 61, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (590, 6, 434, 2, 65, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (591, 6, 435, 2, 65, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (592, 6, 437, 2, 65, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (593, 6, 445, 2, 65, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (594, 6, 448, 2, 65, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (595, 6, 449, 2, 65, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (596, 6, 580, 2, 65, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (597, 6, 576, 2, 66, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (598, 6, 445, 2, 66, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (599, 6, 448, 2, 66, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (600, 6, 449, 2, 66, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (601, 6, 580, 2, 66, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (602, 6, 576, 2, 67, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (603, 6, 445, 2, 67, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (604, 6, 580, 2, 67, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (605, 6, 576, 2, 68, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (606, 6, 441, 2, 68, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (607, 6, 445, 2, 68, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (608, 6, 448, 2, 68, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (609, 6, 449, 2, 68, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (610, 6, 580, 2, 68, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (611, 6, 580, 2, 71, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (612, 6, 418, 2, 72, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (613, 6, 425, 2, 72, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (614, 6, 576, 2, 72, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (615, 6, 438, 2, 72, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (616, 6, 445, 2, 72, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (617, 6, 448, 2, 72, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (618, 6, 449, 2, 72, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (619, 6, 580, 2, 72, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (620, 6, 424, 2, 79, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (621, 6, 576, 2, 79, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (622, 6, 445, 2, 79, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (623, 6, 448, 2, 79, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (624, 6, 449, 2, 79, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (625, 6, 580, 2, 79, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (626, 6, 424, 2, 81, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (627, 6, 576, 2, 81, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (628, 6, 441, 2, 81, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (629, 6, 445, 2, 81, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (630, 6, 448, 2, 81, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (631, 6, 449, 2, 81, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (632, 6, 580, 2, 81, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (633, 6, 591, 2, 81, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (634, 6, 434, 2, 82, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (635, 6, 435, 2, 82, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (636, 6, 445, 2, 82, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (637, 6, 580, 2, 82, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (638, 6, 576, 2, 83, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (639, 6, 441, 2, 83, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (640, 6, 445, 2, 83, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (641, 6, 448, 2, 83, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (642, 6, 449, 2, 83, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (643, 6, 580, 2, 83, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (644, 6, 576, 2, 601, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (645, 6, 441, 2, 601, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (646, 6, 445, 2, 601, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (647, 6, 448, 2, 601, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (648, 6, 449, 2, 601, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (649, 6, 580, 2, 601, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (650, 6, 441, 2, 84, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (651, 6, 576, 2, 86, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (652, 6, 580, 2, 86, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (653, 6, 434, 2, 87, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (654, 6, 435, 2, 87, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (655, 6, 445, 2, 87, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (656, 6, 448, 2, 87, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (657, 6, 580, 2, 87, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (658, 6, 576, 2, 88, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (659, 6, 442, 2, 88, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (660, 6, 445, 2, 88, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (661, 6, 448, 2, 88, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (662, 6, 449, 2, 88, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (663, 6, 580, 2, 88, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (664, 6, 427, 2, 90, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (665, 6, 429, 2, 90, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (666, 6, 453, 2, 90, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (667, 6, 431, 2, 90, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (668, 6, 434, 2, 90, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (669, 6, 436, 2, 90, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (670, 6, 438, 2, 90, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (671, 6, 447, 2, 90, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (672, 6, 590, 2, 90, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (673, 6, 580, 2, 90, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (674, 6, 576, 2, 93, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (675, 6, 438, 2, 93, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (676, 6, 580, 2, 93, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (677, 6, 418, 2, 94, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (678, 6, 425, 2, 94, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (679, 6, 438, 2, 94, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (680, 6, 580, 2, 94, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (681, 6, 580, 2, 96, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (682, 6, 580, 2, 99, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (683, 6, 580, 2, 100, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (684, 6, 580, 2, 101, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (685, 6, 580, 2, 102, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (686, 6, 580, 2, 104, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (687, 6, 580, 2, 106, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (688, 6, 580, 2, 109, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (689, 6, 580, 2, 112, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (690, 6, 580, 2, 113, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (691, 6, 580, 2, 114, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (692, 6, 576, 2, 115, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (693, 6, 438, 2, 115, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (694, 6, 580, 2, 115, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (695, 6, 576, 2, 116, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (696, 6, 438, 2, 116, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (697, 6, 447, 2, 116, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (698, 6, 448, 2, 116, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (699, 6, 580, 2, 116, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (700, 6, 424, 2, 118, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (701, 6, 576, 2, 118, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (702, 6, 441, 2, 118, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (703, 6, 445, 2, 118, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (704, 6, 448, 2, 118, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (705, 6, 449, 2, 118, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (706, 6, 580, 2, 118, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (707, 6, 576, 2, 581, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (708, 6, 580, 2, 581, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (709, 6, 578, 2, 581, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (710, 6, 580, 2, 121, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (711, 6, 576, 2, 122, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (712, 6, 438, 2, 122, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (713, 6, 445, 2, 122, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (714, 6, 447, 2, 122, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (715, 6, 448, 2, 122, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (716, 6, 449, 2, 122, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (717, 6, 580, 2, 122, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (718, 6, 427, 2, 123, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (719, 6, 429, 2, 123, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (720, 6, 453, 2, 123, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (721, 6, 434, 2, 123, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (722, 6, 435, 2, 123, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (723, 6, 436, 2, 123, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (724, 6, 438, 2, 123, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (725, 6, 580, 2, 123, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (726, 6, 575, 2, 124, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (727, 6, 576, 2, 125, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (728, 6, 438, 2, 125, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (729, 6, 418, 2, 126, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (730, 6, 438, 2, 126, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (731, 6, 441, 2, 126, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (732, 6, 445, 2, 126, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (733, 6, 579, 2, 126, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (734, 6, 448, 2, 126, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (735, 6, 449, 2, 126, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (736, 6, 580, 2, 126, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (737, 6, 575, 2, 127, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (738, 6, 576, 2, 128, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (739, 6, 438, 2, 128, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (740, 6, 447, 2, 128, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (741, 6, 602, 2, 128, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (742, 6, 590, 2, 128, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (743, 6, 448, 2, 128, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (744, 6, 580, 2, 128, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (745, 6, 575, 2, 129, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (746, 6, 432, 2, 130, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (747, 6, 434, 2, 130, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (748, 6, 435, 2, 130, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (749, 6, 438, 2, 130, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (750, 6, 580, 2, 130, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (751, 6, 576, 2, 131, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (752, 6, 445, 2, 131, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (753, 6, 448, 2, 131, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (754, 6, 449, 2, 131, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (755, 6, 580, 2, 131, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (756, 6, 432, 2, 132, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (757, 6, 434, 2, 132, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (758, 6, 435, 2, 132, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (759, 6, 580, 2, 132, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (760, 6, 432, 2, 133, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (761, 6, 434, 2, 133, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (762, 6, 435, 2, 133, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (763, 6, 445, 2, 133, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (764, 6, 448, 2, 133, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (765, 6, 449, 2, 133, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (766, 6, 580, 2, 133, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (767, 6, 432, 2, 134, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (768, 6, 434, 2, 134, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (769, 6, 445, 2, 134, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (770, 6, 448, 2, 134, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (771, 6, 449, 2, 134, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (772, 6, 580, 2, 134, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (773, 6, 424, 2, 134, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (774, 6, 441, 2, 134, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (775, 6, 575, 2, 135, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (776, 6, 576, 2, 136, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (777, 6, 445, 2, 136, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (778, 6, 448, 2, 136, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (779, 6, 449, 2, 136, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (780, 6, 580, 2, 136, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (781, 6, 432, 2, 137, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (782, 6, 434, 2, 137, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (783, 6, 435, 2, 137, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (784, 6, 445, 2, 137, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (785, 6, 448, 2, 137, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (786, 6, 449, 2, 137, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (787, 6, 580, 2, 137, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (788, 6, 575, 2, 140, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (789, 6, 575, 2, 141, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (790, 6, 432, 2, 143, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (791, 6, 434, 2, 143, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (792, 6, 435, 2, 143, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (793, 6, 445, 2, 143, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (794, 6, 448, 2, 143, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (795, 6, 449, 2, 143, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (796, 6, 580, 2, 143, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (797, 6, 432, 2, 147, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (798, 6, 434, 2, 147, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (799, 6, 435, 2, 147, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (800, 6, 438, 2, 147, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (801, 6, 445, 2, 147, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (802, 6, 448, 2, 147, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (803, 6, 580, 2, 147, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (804, 6, 432, 2, 148, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (805, 6, 434, 2, 148, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (806, 6, 445, 2, 148, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (807, 6, 448, 2, 148, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (808, 6, 449, 2, 148, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (809, 6, 580, 2, 148, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (810, 6, 577, 2, 149, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (811, 6, 443, 2, 149, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (812, 6, 445, 2, 149, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (813, 6, 448, 2, 149, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (814, 6, 449, 2, 149, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (815, 6, 580, 2, 149, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (816, 6, 576, 2, 150, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (817, 6, 438, 2, 150, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (818, 6, 580, 2, 150, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (819, 6, 575, 2, 151, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (820, 6, 575, 2, 152, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (821, 6, 576, 2, 157, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (822, 6, 438, 2, 157, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (823, 6, 447, 2, 157, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (824, 6, 590, 2, 157, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (825, 6, 580, 2, 157, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (826, 6, 580, 2, 158, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (827, 6, 576, 2, 160, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (828, 6, 448, 2, 160, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (829, 6, 580, 2, 160, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (830, 6, 434, 2, 163, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (831, 6, 445, 2, 163, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (832, 6, 448, 2, 163, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (833, 6, 580, 2, 163, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (834, 6, 576, 2, 165, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (835, 6, 438, 2, 165, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (836, 6, 447, 2, 165, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (837, 6, 448, 2, 165, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (838, 6, 580, 2, 165, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (839, 6, 454, 2, 168, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (840, 6, 427, 2, 168, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (841, 6, 432, 2, 168, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (842, 6, 434, 2, 168, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (843, 6, 427, 2, 169, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (844, 6, 434, 2, 169, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (845, 6, 435, 2, 169, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (846, 6, 448, 2, 169, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (847, 6, 580, 2, 169, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (848, 6, 576, 2, 170, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (849, 6, 438, 2, 170, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (850, 6, 579, 2, 170, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (851, 6, 448, 2, 170, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (852, 6, 580, 2, 171, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (853, 6, 580, 2, 172, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (854, 6, 580, 2, 173, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (855, 6, 575, 2, 179, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (856, 6, 575, 2, 180, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (857, 6, 580, 2, 603, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (858, 6, 432, 2, 182, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (859, 6, 434, 2, 182, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (860, 6, 435, 2, 182, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (861, 6, 445, 2, 182, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (862, 6, 448, 2, 182, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (863, 6, 449, 2, 182, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (864, 6, 580, 2, 182, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (865, 6, 580, 2, 183, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (866, 6, 576, 2, 188, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (867, 6, 438, 2, 188, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (868, 6, 445, 2, 188, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (869, 6, 447, 2, 188, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (870, 6, 448, 2, 188, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (871, 6, 580, 2, 188, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (872, 6, 580, 2, 189, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (873, 6, 575, 2, 190, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (874, 6, 441, 2, 191, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (875, 6, 435, 2, 215, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (876, 6, 580, 2, 216, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (877, 6, 434, 2, 217, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (878, 6, 435, 2, 217, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (879, 6, 445, 2, 217, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (880, 6, 448, 2, 217, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (881, 6, 449, 2, 217, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (882, 6, 580, 2, 217, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (883, 6, 575, 2, 218, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (884, 6, 424, 2, 219, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (885, 6, 434, 2, 219, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (886, 6, 435, 2, 219, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (887, 6, 438, 2, 219, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (888, 6, 442, 2, 219, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (889, 6, 445, 2, 219, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (890, 6, 448, 2, 219, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (891, 6, 449, 2, 219, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (892, 6, 580, 2, 219, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (893, 6, 434, 2, 220, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (894, 6, 435, 2, 220, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (895, 6, 437, 2, 220, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (896, 6, 445, 2, 220, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (897, 6, 448, 2, 220, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (898, 6, 580, 2, 220, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (899, 6, 441, 2, 223, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (900, 6, 441, 2, 224, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (901, 6, 580, 2, 226, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (902, 6, 424, 2, 227, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (903, 6, 434, 2, 227, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (904, 6, 435, 2, 227, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (905, 6, 445, 2, 227, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (906, 6, 434, 2, 228, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (907, 6, 435, 2, 228, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (908, 6, 445, 2, 228, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (909, 6, 448, 2, 228, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (910, 6, 449, 2, 228, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (911, 6, 580, 2, 228, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (912, 6, 580, 2, 228, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (913, 6, 424, 2, 232, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (914, 6, 434, 2, 232, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (915, 6, 437, 2, 232, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (916, 6, 445, 2, 232, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (917, 6, 448, 2, 232, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (918, 6, 449, 2, 232, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (919, 6, 580, 2, 232, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (920, 6, 432, 2, 233, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (921, 6, 434, 2, 233, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (922, 6, 435, 2, 233, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (923, 6, 445, 2, 233, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (924, 6, 448, 2, 233, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (925, 6, 449, 2, 233, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (926, 6, 580, 2, 233, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (927, 6, 576, 2, 235, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (928, 6, 441, 2, 235, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (929, 6, 445, 2, 235, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (930, 6, 448, 2, 235, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (931, 6, 449, 2, 235, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (932, 6, 580, 2, 235, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (933, 6, 576, 2, 236, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (934, 6, 578, 2, 236, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (935, 6, 580, 2, 236, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (936, 6, 580, 2, 237, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (937, 6, 580, 2, 244, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (938, 6, 576, 2, 245, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (939, 6, 578, 2, 245, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (940, 6, 580, 2, 245, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (941, 6, 576, 2, 246, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (942, 6, 438, 2, 246, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (943, 6, 580, 2, 246, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (944, 6, 427, 2, 248, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (945, 6, 429, 2, 248, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (946, 6, 453, 2, 248, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (947, 6, 434, 2, 248, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (948, 6, 435, 2, 248, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (949, 6, 436, 2, 248, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (950, 6, 438, 2, 248, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (951, 6, 580, 2, 248, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (952, 6, 441, 2, 2, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (953, 6, 578, 2, 2, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (954, 6, 576, 2, 2, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (955, 6, 580, 2, 2, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (956, 6, 580, 2, 4, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (957, 6, 438, 2, 4, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (958, 6, 418, 2, 4, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (959, 6, 425, 2, 4, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (960, 6, 576, 2, 4, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (961, 6, 448, 2, 4, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (962, 6, 449, 2, 4, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (963, 6, 445, 2, 4, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (964, 6, 575, 2, 7, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (965, 6, 580, 2, 17, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (966, 6, 454, 2, 18, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (967, 6, 427, 2, 18, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (968, 6, 445, 2, 18, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (969, 6, 580, 2, 18, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (970, 6, 432, 2, 18, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (971, 6, 448, 2, 18, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (972, 6, 434, 2, 18, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (973, 6, 435, 2, 18, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (974, 6, 580, 2, 20, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (975, 6, 449, 2, 22, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (976, 6, 445, 2, 22, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (977, 6, 448, 2, 22, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (978, 6, 576, 2, 22, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (979, 6, 441, 2, 24, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (980, 6, 591, 2, 24, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (981, 6, 580, 2, 193, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (982, 6, 580, 2, 213, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (983, 6, 438, 2, 213, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (984, 6, 576, 2, 213, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (985, 6, 445, 2, 604, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (986, 6, 449, 2, 604, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (987, 6, 576, 2, 604, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (988, 6, 448, 2, 604, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (989, 6, 580, 2, 604, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (990, 6, 580, 2, 103, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (991, 6, 438, 2, 103, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (992, 6, 418, 2, 103, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (993, 6, 425, 2, 103, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (994, 6, 434, 2, 77, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (995, 6, 435, 2, 77, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (996, 6, 580, 2, 77, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (997, 6, 580, 2, 77, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (998, 6, 576, 2, 77, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (999, 6, 578, 2, 77, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1000, 6, 580, 2, 77, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1001, 6, 418, 2, 117, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1002, 6, 576, 2, 117, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1003, 6, 438, 2, 117, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1004, 6, 425, 2, 117, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1005, 6, 580, 2, 117, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1006, 6, 447, 2, 117, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1007, 6, 602, 2, 117, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1008, 6, 590, 2, 117, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1009, 6, 448, 2, 117, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1010, 6, 418, 2, 119, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1011, 6, 425, 2, 119, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1012, 6, 438, 2, 119, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1013, 6, 580, 2, 119, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1014, 6, 580, 2, 121, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1015, 6, 580, 2, 30, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1016, 6, 424, 2, 43, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1017, 6, 418, 2, 55, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1018, 6, 425, 2, 55, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1019, 6, 576, 2, 55, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1020, 6, 580, 2, 55, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1021, 6, 438, 2, 55, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1022, 6, 434, 2, 56, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1023, 6, 427, 2, 56, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1024, 6, 436, 2, 56, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1025, 6, 445, 2, 63, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1026, 6, 576, 2, 63, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1027, 6, 448, 2, 63, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1028, 6, 580, 2, 63, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1029, 6, 418, 2, 28, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1030, 6, 425, 2, 28, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1031, 6, 434, 2, 28, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1032, 6, 438, 2, 28, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1033, 6, 580, 2, 28, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1034, 6, 434, 2, 34, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1035, 6, 427, 2, 34, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1036, 6, 580, 2, 34, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1037, 6, 438, 2, 34, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1038, 6, 580, 2, 48, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1039, 6, 580, 2, 49, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1040, 6, 580, 2, 52, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1041, 6, 445, 2, 52, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1042, 6, 454, 2, 52, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1043, 6, 427, 2, 52, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1044, 6, 429, 2, 52, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1045, 6, 580, 2, 53, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1046, 6, 580, 2, 62, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1047, 6, 576, 2, 62, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1048, 6, 448, 2, 62, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1049, 6, 445, 2, 62, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1050, 6, 438, 2, 62, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1051, 6, 418, 2, 62, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1052, 6, 425, 2, 62, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1053, 6, 445, 2, 64, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1054, 6, 576, 2, 64, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1055, 6, 448, 2, 64, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1056, 6, 580, 2, 64, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1057, 6, 445, 2, 69, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1058, 6, 449, 2, 69, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1059, 6, 424, 2, 69, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1060, 6, 576, 2, 69, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1061, 6, 448, 2, 69, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1062, 6, 580, 2, 69, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1063, 6, 445, 2, 70, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1064, 6, 576, 2, 70, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1065, 6, 580, 2, 70, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1066, 6, 445, 2, 73, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1067, 6, 576, 2, 73, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1068, 6, 580, 2, 73, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1069, 6, 441, 2, 73, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1070, 6, 445, 2, 605, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1071, 6, 576, 2, 605, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1072, 6, 580, 2, 605, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1073, 6, 580, 2, 606, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1074, 6, 576, 2, 606, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1075, 6, 445, 2, 606, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1076, 6, 448, 2, 606, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1077, 6, 449, 2, 606, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1078, 6, 445, 2, 76, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1079, 6, 434, 2, 76, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1080, 6, 435, 2, 76, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1081, 6, 448, 2, 76, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1082, 6, 580, 2, 76, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1083, 6, 445, 2, 80, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1084, 6, 449, 2, 80, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1085, 6, 576, 2, 80, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1086, 6, 448, 2, 80, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1087, 6, 580, 2, 80, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1088, 6, 441, 2, 80, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1089, 6, 438, 2, 85, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1090, 6, 580, 2, 85, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1091, 6, 577, 2, 91, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1092, 6, 438, 2, 92, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1093, 6, 580, 2, 92, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1094, 6, 580, 2, 95, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1095, 6, 438, 2, 95, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1096, 6, 418, 2, 95, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1097, 6, 425, 2, 95, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1098, 6, 580, 2, 97, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1099, 6, 448, 2, 97, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1100, 6, 434, 2, 97, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1101, 6, 435, 2, 97, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1102, 6, 427, 2, 97, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1103, 6, 454, 2, 97, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1104, 6, 438, 2, 97, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1105, 6, 576, 2, 98, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1106, 6, 438, 2, 98, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1107, 6, 580, 2, 98, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1108, 6, 580, 2, 105, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1109, 6, 580, 2, 107, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1110, 6, 438, 2, 107, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1111, 6, 448, 2, 107, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1112, 6, 449, 2, 107, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1113, 6, 580, 2, 108, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1114, 6, 580, 2, 110, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1115, 6, 576, 2, 110, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1116, 6, 438, 2, 110, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1117, 6, 580, 2, 111, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1118, 6, 438, 2, 111, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1119, 6, 580, 2, 607, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1120, 6, 576, 2, 607, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1121, 6, 448, 2, 607, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1122, 6, 449, 2, 607, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1123, 6, 445, 2, 607, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1124, 6, 435, 2, 142, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1125, 6, 580, 2, 144, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1126, 6, 580, 2, 145, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1127, 6, 432, 2, 145, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1128, 6, 434, 2, 145, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1129, 6, 435, 2, 145, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1130, 6, 580, 2, 146, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1131, 6, 434, 2, 146, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1132, 6, 435, 2, 146, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1133, 6, 436, 2, 146, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1134, 6, 432, 2, 146, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1135, 6, 580, 2, 153, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1136, 6, 434, 2, 153, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1137, 6, 435, 2, 153, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1138, 6, 580, 2, 154, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1139, 6, 593, 2, 155, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1140, 6, 443, 2, 155, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1141, 6, 580, 2, 155, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1142, 6, 580, 2, 156, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1143, 6, 438, 2, 156, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1144, 6, 580, 2, 159, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1145, 6, 438, 2, 159, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1146, 6, 425, 2, 159, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1147, 6, 418, 2, 159, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1148, 6, 580, 2, 161, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1149, 6, 580, 2, 162, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1150, 6, 580, 2, 164, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1151, 6, 445, 2, 166, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1152, 6, 449, 2, 166, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1153, 6, 576, 2, 166, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1154, 6, 441, 2, 166, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1155, 6, 438, 2, 166, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1156, 6, 448, 2, 166, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1157, 6, 580, 2, 166, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1158, 6, 445, 2, 167, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1159, 6, 449, 2, 167, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1160, 6, 576, 2, 167, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1161, 6, 448, 2, 167, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1162, 6, 580, 2, 167, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1163, 6, 580, 2, 174, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1164, 6, 434, 2, 174, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1165, 6, 435, 2, 174, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1166, 6, 449, 2, 174, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1167, 6, 445, 2, 174, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1168, 6, 448, 2, 174, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1169, 6, 434, 2, 175, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1170, 6, 435, 2, 175, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1171, 6, 445, 2, 176, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1172, 6, 449, 2, 176, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1173, 6, 434, 2, 176, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1174, 6, 435, 2, 176, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1175, 6, 448, 2, 176, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1176, 6, 580, 2, 176, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1177, 6, 434, 2, 177, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1178, 6, 435, 2, 177, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1179, 6, 580, 2, 177, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1180, 6, 580, 2, 178, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1181, 6, 438, 2, 178, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1182, 6, 576, 2, 178, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1183, 6, 445, 2, 178, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1184, 6, 449, 2, 178, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1185, 6, 448, 2, 178, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1186, 6, 438, 2, 184, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1187, 6, 580, 2, 184, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1188, 6, 445, 2, 185, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1189, 6, 434, 2, 185, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1190, 6, 435, 2, 185, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1191, 6, 437, 2, 185, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1192, 6, 448, 2, 185, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1193, 6, 580, 2, 185, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1194, 6, 575, 2, 186, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1195, 6, 580, 2, 187, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1196, 6, 580, 2, 214, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1197, 6, 580, 2, 221, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1198, 6, 580, 2, 222, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1199, 6, 580, 2, 225, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1200, 6, 442, 2, 225, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1201, 6, 424, 2, 225, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1202, 6, 441, 2, 225, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1203, 6, 578, 2, 225, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1204, 6, 575, 2, 229, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1205, 6, 580, 2, 230, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1206, 6, 434, 2, 230, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1207, 6, 435, 2, 230, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1208, 6, 436, 2, 230, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1209, 6, 438, 2, 230, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1210, 6, 448, 2, 230, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1211, 6, 580, 2, 231, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1212, 6, 427, 2, 231, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1213, 6, 434, 2, 231, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1214, 6, 435, 2, 231, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1215, 6, 436, 2, 231, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1216, 6, 445, 2, 234, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1217, 6, 437, 2, 234, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1218, 6, 434, 2, 234, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1219, 6, 435, 2, 234, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1220, 6, 448, 2, 234, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1221, 6, 580, 2, 234, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1222, 6, 424, 2, 234, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1223, 6, 580, 2, 238, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1224, 6, 580, 2, 239, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1225, 6, 580, 2, 240, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1226, 6, 580, 2, 241, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1227, 6, 580, 2, 242, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1228, 6, 580, 2, 243, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1229, 6, 580, 2, 247, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1230, 6, 580, 2, 249, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1231, 6, 434, 2, 249, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1232, 6, 435, 2, 249, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1233, 6, 427, 2, 249, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1234, 6, 436, 2, 249, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1235, 6, 432, 2, 249, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1236, 6, 441, 2, 43, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1237, 6, 576, 2, 224, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1238, 6, 580, 2, 224, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1239, 6, 576, 8, 289, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1240, 6, 580, 8, 289, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1241, 6, 578, 8, 289, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1242, 6, 445, 2, 250, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1243, 6, 424, 2, 250, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1244, 6, 576, 2, 250, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1245, 6, 445, 2, 251, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1246, 6, 576, 2, 251, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1247, 6, 580, 2, 252, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1248, 6, 576, 2, 252, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1249, 6, 580, 2, 253, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1250, 6, 576, 2, 253, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1251, 6, 580, 2, 254, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1252, 6, 576, 2, 254, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1253, 6, 580, 2, 255, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1254, 6, 576, 2, 255, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1255, 6, 580, 2, 256, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1256, 6, 576, 2, 256, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1257, 6, 580, 2, 257, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1258, 6, 576, 2, 257, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1259, 6, 580, 2, 258, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1260, 6, 576, 2, 258, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1261, 6, 576, 2, 322, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1262, 6, 576, 10, 611, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1263, 6, 576, 2, 612, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1264, 6, 576, 2, 613, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1265, 6, 576, 2, 614, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1266, 6, 576, 8, 615, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1267, 6, 576, 10, 616, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1268, 6, 576, 10, 618, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1269, 6, 576, 2, 619, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1270, 6, 576, 10, 620, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1271, 6, 576, 2, 621, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1272, 6, 576, 2, 622, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1273, 6, 576, 2, 623, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1274, 6, 576, 2, 624, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1275, 6, 576, 2, 625, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1276, 6, 576, 2, 626, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1277, 6, 576, 2, 627, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1278, 6, 576, 2, 628, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1279, 6, 576, 2, 629, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1280, 6, 576, 10, 630, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1281, 6, 576, 2, 631, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1282, 6, 576, 2, 632, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1283, 6, 576, 10, 633, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1284, 6, 576, 2, 634, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1285, 6, 576, 10, 635, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1286, 6, 576, 2, 636, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1287, 6, 576, 2, 637, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1288, 6, 576, 10, 638, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1289, 6, 576, 10, 639, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1290, 6, 576, 2, 640, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1291, 6, 576, 2, 641, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1292, 6, 576, 2, 642, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1293, 6, 576, 2, 643, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1294, 6, 576, 2, 644, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1295, 6, 576, 2, 645, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1296, 6, 576, 2, 646, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1297, 6, 576, 2, 647, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1298, 6, 576, 8, 648, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1299, 6, 576, 2, 649, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1300, 6, 576, 2, 650, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1301, 6, 576, 2, 651, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1302, 6, 576, 10, 652, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1303, 6, 580, 9, 660, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1304, 6, 576, 9, 660, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1305, 6, 438, 9, 660, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1306, 6, 441, 9, 653, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1307, 6, 437, 9, 653, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1308, 6, 591, 9, 653, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1309, 6, 580, 9, 654, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1310, 6, 576, 9, 654, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1311, 6, 578, 9, 654, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1312, 6, 576, 9, 655, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1313, 6, 576, 2, 656, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1314, 6, 580, 2, 656, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1315, 6, 578, 2, 656, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1316, 6, 441, 9, 657, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1317, 6, 576, 2, 5, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1318, 6, 580, 2, 5, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1319, 6, 578, 2, 5, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1320, 6, 438, 2, 5, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1321, 6, 593, 9, 659, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1322, 6, 443, 9, 659, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1323, 6, 580, 9, 659, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1324, 6, 580, 10, 661, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1325, 6, 443, 9, 662, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1326, 6, 578, 9, 662, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1327, 6, 593, 9, 662, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1328, 6, 580, 9, 662, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1329, 6, 580, 9, 663, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1330, 6, 576, 9, 663, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1331, 6, 580, 9, 664, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1332, 6, 442, 9, 664, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1333, 6, 578, 9, 664, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1334, 6, 593, 9, 665, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1335, 6, 580, 9, 665, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1336, 6, 438, 9, 665, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1337, 6, 578, 9, 665, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1338, 6, 576, 9, 665, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1339, 6, 576, 2, 666, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1340, 6, 580, 2, 666, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1341, 6, 578, 2, 666, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1342, 6, 577, 2, 667, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1343, 6, 577, 2, 668, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1344, 6, 576, 8, 669, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1345, 6, 580, 8, 669, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1346, 6, 449, 8, 669, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1347, 6, 576, 8, 670, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1348, 6, 580, 8, 670, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1349, 6, 449, 8, 670, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1350, 6, 576, 2, 634, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1351, 6, 576, 4, 672, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1352, 6, 578, 2, 673, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1353, 6, 580, 2, 673, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1354, 6, 580, 2, 674, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1355, 6, 576, 2, 674, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1356, 6, 578, 2, 674, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1357, 6, 580, 2, 675, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1358, 6, 578, 2, 675, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1359, 6, 576, 2, 676, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1360, 6, 578, 2, 676, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1361, 6, 578, 2, 677, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1362, 6, 576, 2, 677, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1363, 6, 580, 2, 677, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1364, 6, 438, 2, 677, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1365, 6, 576, 2, 678, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1366, 6, 577, 2, 679, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1367, 6, 577, 9, 689, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1368, 6, 424, 2, 690, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1369, 6, 424, 2, 691, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1370, 6, 577, 2, 693, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1371, 6, 576, 2, 695, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1372, 6, 578, 2, 695, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1373, 6, 580, 2, 695, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1374, 6, 576, 2, 694, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1375, 6, 578, 2, 694, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1376, 9, 331, 2, 697, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1377, 6, 576, 2, 697, ''); -INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1378, 6, 580, 2, 697, ''); - --- Table: entity_types +INSERT INTO entity_relations VALUES(1,6,580,10,497,''); +INSERT INTO entity_relations VALUES(2,6,580,10,498,''); +INSERT INTO entity_relations VALUES(3,6,580,10,592,''); +INSERT INTO entity_relations VALUES(4,6,580,10,500,''); +INSERT INTO entity_relations VALUES(5,6,418,10,501,''); +INSERT INTO entity_relations VALUES(6,6,425,10,501,''); +INSERT INTO entity_relations VALUES(7,6,438,10,501,''); +INSERT INTO entity_relations VALUES(8,6,580,10,501,''); +INSERT INTO entity_relations VALUES(9,6,441,10,502,''); +INSERT INTO entity_relations VALUES(10,6,591,10,502,''); +INSERT INTO entity_relations VALUES(11,6,576,10,503,''); +INSERT INTO entity_relations VALUES(12,6,438,10,503,''); +INSERT INTO entity_relations VALUES(13,6,580,10,503,''); +INSERT INTO entity_relations VALUES(14,6,418,10,504,''); +INSERT INTO entity_relations VALUES(15,6,425,10,504,''); +INSERT INTO entity_relations VALUES(16,6,576,10,504,''); +INSERT INTO entity_relations VALUES(17,6,438,10,504,''); +INSERT INTO entity_relations VALUES(18,6,448,10,504,''); +INSERT INTO entity_relations VALUES(19,6,580,10,504,''); +INSERT INTO entity_relations VALUES(20,6,580,10,505,''); +INSERT INTO entity_relations VALUES(22,6,576,10,507,''); +INSERT INTO entity_relations VALUES(23,6,438,10,507,''); +INSERT INTO entity_relations VALUES(24,6,445,10,507,''); +INSERT INTO entity_relations VALUES(25,6,447,10,507,''); +INSERT INTO entity_relations VALUES(26,6,590,10,507,''); +INSERT INTO entity_relations VALUES(27,6,580,10,507,''); +INSERT INTO entity_relations VALUES(28,6,576,10,508,''); +INSERT INTO entity_relations VALUES(29,6,438,10,508,''); +INSERT INTO entity_relations VALUES(30,6,580,10,508,''); +INSERT INTO entity_relations VALUES(32,8,609,7,490,''); +INSERT INTO entity_relations VALUES(33,8,609,7,489,''); +INSERT INTO entity_relations VALUES(34,8,609,7,491,''); +INSERT INTO entity_relations VALUES(35,8,268,7,492,''); +INSERT INTO entity_relations VALUES(36,8,610,7,494,''); +INSERT INTO entity_relations VALUES(37,8,276,7,495,''); +INSERT INTO entity_relations VALUES(38,8,279,7,496,''); +INSERT INTO entity_relations VALUES(39,10,497,7,482,''); +INSERT INTO entity_relations VALUES(40,10,497,7,483,''); +INSERT INTO entity_relations VALUES(41,10,497,7,484,''); +INSERT INTO entity_relations VALUES(42,10,497,7,485,''); +INSERT INTO entity_relations VALUES(43,10,497,7,486,''); +INSERT INTO entity_relations VALUES(44,10,497,7,487,''); +INSERT INTO entity_relations VALUES(45,10,500,7,488,''); +INSERT INTO entity_relations VALUES(46,2,33,5,455,''); +INSERT INTO entity_relations VALUES(47,2,46,5,456,''); +INSERT INTO entity_relations VALUES(48,2,62,5,457,''); +INSERT INTO entity_relations VALUES(49,2,68,5,458,''); +INSERT INTO entity_relations VALUES(50,2,606,5,459,''); +INSERT INTO entity_relations VALUES(51,2,604,5,460,''); +INSERT INTO entity_relations VALUES(52,2,604,5,461,''); +INSERT INTO entity_relations VALUES(53,2,604,5,462,''); +INSERT INTO entity_relations VALUES(54,2,604,5,463,''); +INSERT INTO entity_relations VALUES(55,2,104,5,464,''); +INSERT INTO entity_relations VALUES(56,2,581,5,466,''); +INSERT INTO entity_relations VALUES(57,2,581,5,467,''); +INSERT INTO entity_relations VALUES(58,2,581,5,468,''); +INSERT INTO entity_relations VALUES(59,2,581,5,469,''); +INSERT INTO entity_relations VALUES(60,2,581,5,470,''); +INSERT INTO entity_relations VALUES(61,2,581,5,471,''); +INSERT INTO entity_relations VALUES(62,2,581,5,473,''); +INSERT INTO entity_relations VALUES(63,2,581,5,465,''); +INSERT INTO entity_relations VALUES(64,2,581,5,472,''); +INSERT INTO entity_relations VALUES(65,2,134,5,474,''); +INSERT INTO entity_relations VALUES(66,2,134,5,475,''); +INSERT INTO entity_relations VALUES(67,2,134,5,478,''); +INSERT INTO entity_relations VALUES(68,2,174,5,476,''); +INSERT INTO entity_relations VALUES(69,2,174,5,477,''); +INSERT INTO entity_relations VALUES(70,2,190,5,479,''); +INSERT INTO entity_relations VALUES(71,2,190,5,480,''); +INSERT INTO entity_relations VALUES(72,2,217,5,481,''); +INSERT INTO entity_relations VALUES(73,9,582,12,375,''); +INSERT INTO entity_relations VALUES(74,9,583,12,375,''); +INSERT INTO entity_relations VALUES(75,9,584,12,375,''); +INSERT INTO entity_relations VALUES(76,9,346,12,375,''); +INSERT INTO entity_relations VALUES(77,9,585,12,375,''); +INSERT INTO entity_relations VALUES(78,9,586,12,375,''); +INSERT INTO entity_relations VALUES(79,9,587,12,375,''); +INSERT INTO entity_relations VALUES(80,9,588,12,375,''); +INSERT INTO entity_relations VALUES(81,9,583,12,376,''); +INSERT INTO entity_relations VALUES(82,9,584,12,376,''); +INSERT INTO entity_relations VALUES(83,9,585,12,376,''); +INSERT INTO entity_relations VALUES(84,9,307,12,377,''); +INSERT INTO entity_relations VALUES(85,9,584,12,378,''); +INSERT INTO entity_relations VALUES(86,9,584,12,379,''); +INSERT INTO entity_relations VALUES(87,9,584,12,380,''); +INSERT INTO entity_relations VALUES(88,9,584,12,381,''); +INSERT INTO entity_relations VALUES(89,9,584,12,382,''); +INSERT INTO entity_relations VALUES(90,9,584,12,383,''); +INSERT INTO entity_relations VALUES(91,9,584,12,384,''); +INSERT INTO entity_relations VALUES(92,9,584,12,385,''); +INSERT INTO entity_relations VALUES(93,9,584,12,386,''); +INSERT INTO entity_relations VALUES(94,9,584,12,387,''); +INSERT INTO entity_relations VALUES(95,9,584,12,388,''); +INSERT INTO entity_relations VALUES(96,9,584,12,389,''); +INSERT INTO entity_relations VALUES(97,9,584,12,390,''); +INSERT INTO entity_relations VALUES(98,9,584,12,391,''); +INSERT INTO entity_relations VALUES(99,9,584,12,392,''); +INSERT INTO entity_relations VALUES(100,9,584,12,393,''); +INSERT INTO entity_relations VALUES(101,9,584,12,394,''); +INSERT INTO entity_relations VALUES(102,9,584,12,395,''); +INSERT INTO entity_relations VALUES(103,9,584,12,396,''); +INSERT INTO entity_relations VALUES(104,9,584,12,397,''); +INSERT INTO entity_relations VALUES(105,9,584,12,398,''); +INSERT INTO entity_relations VALUES(106,9,584,12,399,''); +INSERT INTO entity_relations VALUES(107,9,584,12,400,''); +INSERT INTO entity_relations VALUES(108,9,584,12,401,''); +INSERT INTO entity_relations VALUES(109,9,584,12,402,''); +INSERT INTO entity_relations VALUES(110,9,584,12,403,''); +INSERT INTO entity_relations VALUES(111,9,584,12,404,''); +INSERT INTO entity_relations VALUES(112,9,589,12,405,''); +INSERT INTO entity_relations VALUES(113,9,589,12,406,''); +INSERT INTO entity_relations VALUES(114,9,589,12,407,''); +INSERT INTO entity_relations VALUES(115,9,589,12,408,''); +INSERT INTO entity_relations VALUES(116,9,589,12,409,''); +INSERT INTO entity_relations VALUES(117,9,589,12,410,''); +INSERT INTO entity_relations VALUES(118,9,589,12,411,''); +INSERT INTO entity_relations VALUES(119,9,589,12,412,''); +INSERT INTO entity_relations VALUES(120,9,589,12,413,''); +INSERT INTO entity_relations VALUES(121,9,589,12,414,''); +INSERT INTO entity_relations VALUES(122,9,589,12,415,''); +INSERT INTO entity_relations VALUES(123,9,311,12,416,''); +INSERT INTO entity_relations VALUES(124,9,584,12,416,''); +INSERT INTO entity_relations VALUES(125,9,589,12,416,''); +INSERT INTO entity_relations VALUES(126,9,586,12,416,''); +INSERT INTO entity_relations VALUES(127,9,587,12,416,''); +INSERT INTO entity_relations VALUES(128,9,585,12,417,''); +INSERT INTO entity_relations VALUES(129,6,580,9,299,''); +INSERT INTO entity_relations VALUES(130,6,576,9,300,''); +INSERT INTO entity_relations VALUES(131,6,578,9,300,''); +INSERT INTO entity_relations VALUES(133,6,580,9,302,''); +INSERT INTO entity_relations VALUES(135,6,580,9,582,''); +INSERT INTO entity_relations VALUES(138,6,593,9,308,''); +INSERT INTO entity_relations VALUES(139,6,577,9,309,''); +INSERT INTO entity_relations VALUES(140,6,441,9,594,''); +INSERT INTO entity_relations VALUES(141,6,442,9,594,''); +INSERT INTO entity_relations VALUES(142,6,578,9,594,''); +INSERT INTO entity_relations VALUES(143,6,576,9,594,''); +INSERT INTO entity_relations VALUES(144,6,595,9,594,''); +INSERT INTO entity_relations VALUES(145,6,580,9,594,''); +INSERT INTO entity_relations VALUES(146,6,591,9,594,''); +INSERT INTO entity_relations VALUES(147,6,580,9,311,''); +INSERT INTO entity_relations VALUES(149,6,418,9,313,''); +INSERT INTO entity_relations VALUES(150,6,425,9,313,''); +INSERT INTO entity_relations VALUES(151,6,576,9,313,''); +INSERT INTO entity_relations VALUES(152,6,438,9,313,''); +INSERT INTO entity_relations VALUES(153,6,580,9,313,''); +INSERT INTO entity_relations VALUES(154,6,576,9,314,''); +INSERT INTO entity_relations VALUES(155,6,441,9,314,''); +INSERT INTO entity_relations VALUES(156,6,578,9,314,''); +INSERT INTO entity_relations VALUES(157,6,580,9,314,''); +INSERT INTO entity_relations VALUES(158,6,608,9,314,''); +INSERT INTO entity_relations VALUES(159,6,591,9,314,''); +INSERT INTO entity_relations VALUES(165,6,597,9,321,''); +INSERT INTO entity_relations VALUES(166,6,577,9,321,''); +INSERT INTO entity_relations VALUES(167,6,442,9,321,''); +INSERT INTO entity_relations VALUES(168,6,443,9,321,''); +INSERT INTO entity_relations VALUES(169,6,578,9,321,''); +INSERT INTO entity_relations VALUES(170,6,608,9,321,''); +INSERT INTO entity_relations VALUES(172,6,576,9,323,''); +INSERT INTO entity_relations VALUES(173,6,438,9,323,''); +INSERT INTO entity_relations VALUES(174,6,579,9,323,''); +INSERT INTO entity_relations VALUES(175,6,580,9,323,''); +INSERT INTO entity_relations VALUES(180,6,441,9,328,''); +INSERT INTO entity_relations VALUES(181,6,598,9,328,''); +INSERT INTO entity_relations VALUES(182,6,608,9,328,''); +INSERT INTO entity_relations VALUES(183,6,591,9,328,''); +INSERT INTO entity_relations VALUES(184,6,424,9,329,''); +INSERT INTO entity_relations VALUES(188,6,597,9,338,''); +INSERT INTO entity_relations VALUES(189,6,577,9,338,''); +INSERT INTO entity_relations VALUES(190,6,591,9,338,''); +INSERT INTO entity_relations VALUES(191,6,576,9,339,''); +INSERT INTO entity_relations VALUES(192,6,578,9,339,''); +INSERT INTO entity_relations VALUES(193,6,580,9,339,''); +INSERT INTO entity_relations VALUES(194,6,580,9,340,''); +INSERT INTO entity_relations VALUES(196,6,431,9,342,''); +INSERT INTO entity_relations VALUES(197,6,442,9,342,''); +INSERT INTO entity_relations VALUES(198,6,445,9,342,''); +INSERT INTO entity_relations VALUES(199,6,448,9,342,''); +INSERT INTO entity_relations VALUES(200,6,449,9,342,''); +INSERT INTO entity_relations VALUES(201,6,580,9,342,''); +INSERT INTO entity_relations VALUES(205,6,576,9,585,''); +INSERT INTO entity_relations VALUES(206,6,438,9,585,''); +INSERT INTO entity_relations VALUES(207,6,578,9,585,''); +INSERT INTO entity_relations VALUES(208,6,580,9,585,''); +INSERT INTO entity_relations VALUES(209,6,576,9,586,''); +INSERT INTO entity_relations VALUES(210,6,438,9,586,''); +INSERT INTO entity_relations VALUES(211,6,578,9,586,''); +INSERT INTO entity_relations VALUES(212,6,580,9,586,''); +INSERT INTO entity_relations VALUES(213,6,577,9,351,''); +INSERT INTO entity_relations VALUES(214,6,445,9,351,''); +INSERT INTO entity_relations VALUES(215,6,580,9,351,''); +INSERT INTO entity_relations VALUES(216,6,608,9,351,''); +INSERT INTO entity_relations VALUES(221,6,424,9,356,''); +INSERT INTO entity_relations VALUES(222,6,577,9,356,''); +INSERT INTO entity_relations VALUES(223,6,443,9,356,''); +INSERT INTO entity_relations VALUES(224,6,445,9,356,''); +INSERT INTO entity_relations VALUES(225,6,608,9,356,''); +INSERT INTO entity_relations VALUES(226,6,591,9,356,''); +INSERT INTO entity_relations VALUES(227,6,424,9,357,''); +INSERT INTO entity_relations VALUES(228,6,441,9,357,''); +INSERT INTO entity_relations VALUES(229,6,442,9,357,''); +INSERT INTO entity_relations VALUES(230,6,580,9,357,''); +INSERT INTO entity_relations VALUES(231,6,591,9,357,''); +INSERT INTO entity_relations VALUES(236,6,576,9,362,''); +INSERT INTO entity_relations VALUES(237,6,438,9,362,''); +INSERT INTO entity_relations VALUES(238,6,578,9,362,''); +INSERT INTO entity_relations VALUES(239,6,580,9,362,''); +INSERT INTO entity_relations VALUES(240,6,576,9,363,''); +INSERT INTO entity_relations VALUES(241,6,438,9,363,''); +INSERT INTO entity_relations VALUES(242,6,578,9,363,''); +INSERT INTO entity_relations VALUES(243,6,580,9,363,''); +INSERT INTO entity_relations VALUES(244,6,576,9,364,''); +INSERT INTO entity_relations VALUES(245,6,438,9,364,''); +INSERT INTO entity_relations VALUES(246,6,441,9,364,''); +INSERT INTO entity_relations VALUES(247,6,447,9,364,''); +INSERT INTO entity_relations VALUES(248,6,580,9,364,''); +INSERT INTO entity_relations VALUES(249,6,576,9,365,''); +INSERT INTO entity_relations VALUES(250,6,438,9,365,''); +INSERT INTO entity_relations VALUES(251,6,578,9,365,''); +INSERT INTO entity_relations VALUES(252,6,580,9,365,''); +INSERT INTO entity_relations VALUES(255,6,418,9,368,''); +INSERT INTO entity_relations VALUES(256,6,425,9,368,''); +INSERT INTO entity_relations VALUES(257,6,576,9,368,''); +INSERT INTO entity_relations VALUES(258,6,438,9,368,''); +INSERT INTO entity_relations VALUES(259,6,578,9,368,''); +INSERT INTO entity_relations VALUES(260,6,579,9,368,''); +INSERT INTO entity_relations VALUES(261,6,580,9,368,''); +INSERT INTO entity_relations VALUES(262,6,580,9,369,''); +INSERT INTO entity_relations VALUES(263,6,593,9,370,''); +INSERT INTO entity_relations VALUES(264,6,580,9,370,''); +INSERT INTO entity_relations VALUES(265,6,438,9,371,''); +INSERT INTO entity_relations VALUES(266,6,580,9,371,''); +INSERT INTO entity_relations VALUES(267,6,580,9,372,''); +INSERT INTO entity_relations VALUES(269,6,580,9,374,''); +INSERT INTO entity_relations VALUES(270,6,576,8,259,''); +INSERT INTO entity_relations VALUES(271,6,445,8,259,''); +INSERT INTO entity_relations VALUES(272,6,448,8,259,''); +INSERT INTO entity_relations VALUES(273,6,449,8,259,''); +INSERT INTO entity_relations VALUES(274,6,580,8,259,''); +INSERT INTO entity_relations VALUES(275,6,434,8,260,''); +INSERT INTO entity_relations VALUES(276,6,436,8,260,''); +INSERT INTO entity_relations VALUES(277,6,448,8,260,''); +INSERT INTO entity_relations VALUES(278,6,580,8,260,''); +INSERT INTO entity_relations VALUES(279,6,576,8,260,''); +INSERT INTO entity_relations VALUES(280,6,578,8,260,''); +INSERT INTO entity_relations VALUES(281,6,438,8,260,''); +INSERT INTO entity_relations VALUES(282,6,576,8,261,''); +INSERT INTO entity_relations VALUES(283,6,580,8,261,''); +INSERT INTO entity_relations VALUES(284,6,432,8,600,''); +INSERT INTO entity_relations VALUES(285,6,434,8,600,''); +INSERT INTO entity_relations VALUES(286,6,435,8,600,''); +INSERT INTO entity_relations VALUES(287,6,445,8,600,''); +INSERT INTO entity_relations VALUES(288,6,448,8,600,''); +INSERT INTO entity_relations VALUES(289,6,449,8,600,''); +INSERT INTO entity_relations VALUES(290,6,580,8,600,''); +INSERT INTO entity_relations VALUES(291,6,434,8,263,''); +INSERT INTO entity_relations VALUES(292,6,435,8,263,''); +INSERT INTO entity_relations VALUES(293,6,436,8,263,''); +INSERT INTO entity_relations VALUES(294,6,438,8,263,''); +INSERT INTO entity_relations VALUES(295,6,445,8,263,''); +INSERT INTO entity_relations VALUES(296,6,448,8,263,''); +INSERT INTO entity_relations VALUES(297,6,580,8,263,''); +INSERT INTO entity_relations VALUES(298,6,576,8,264,''); +INSERT INTO entity_relations VALUES(299,6,438,8,264,''); +INSERT INTO entity_relations VALUES(300,6,445,8,264,''); +INSERT INTO entity_relations VALUES(301,6,447,8,264,''); +INSERT INTO entity_relations VALUES(302,6,590,8,264,''); +INSERT INTO entity_relations VALUES(303,6,448,8,264,''); +INSERT INTO entity_relations VALUES(304,6,580,8,609,''); +INSERT INTO entity_relations VALUES(305,6,576,8,268,''); +INSERT INTO entity_relations VALUES(306,6,434,8,268,''); +INSERT INTO entity_relations VALUES(307,6,578,8,268,''); +INSERT INTO entity_relations VALUES(308,6,448,8,268,''); +INSERT INTO entity_relations VALUES(309,6,580,8,268,''); +INSERT INTO entity_relations VALUES(310,6,580,8,268,''); +INSERT INTO entity_relations VALUES(311,6,425,8,269,''); +INSERT INTO entity_relations VALUES(312,6,576,8,269,''); +INSERT INTO entity_relations VALUES(313,6,438,8,269,''); +INSERT INTO entity_relations VALUES(314,6,576,8,270,''); +INSERT INTO entity_relations VALUES(315,6,438,8,270,''); +INSERT INTO entity_relations VALUES(316,6,580,8,270,''); +INSERT INTO entity_relations VALUES(317,6,576,8,271,''); +INSERT INTO entity_relations VALUES(318,6,438,8,271,''); +INSERT INTO entity_relations VALUES(319,6,578,8,271,''); +INSERT INTO entity_relations VALUES(320,6,580,8,271,''); +INSERT INTO entity_relations VALUES(321,6,448,8,272,''); +INSERT INTO entity_relations VALUES(322,6,580,8,272,''); +INSERT INTO entity_relations VALUES(323,6,576,8,273,''); +INSERT INTO entity_relations VALUES(324,6,445,8,273,''); +INSERT INTO entity_relations VALUES(325,6,448,8,273,''); +INSERT INTO entity_relations VALUES(326,6,449,8,273,''); +INSERT INTO entity_relations VALUES(327,6,580,8,273,''); +INSERT INTO entity_relations VALUES(328,6,576,8,274,''); +INSERT INTO entity_relations VALUES(329,6,438,8,274,''); +INSERT INTO entity_relations VALUES(330,6,445,8,274,''); +INSERT INTO entity_relations VALUES(331,6,579,8,274,''); +INSERT INTO entity_relations VALUES(332,6,449,8,274,''); +INSERT INTO entity_relations VALUES(333,6,580,8,274,''); +INSERT INTO entity_relations VALUES(334,6,580,8,610,''); +INSERT INTO entity_relations VALUES(335,6,432,8,610,''); +INSERT INTO entity_relations VALUES(336,6,434,8,610,''); +INSERT INTO entity_relations VALUES(337,6,435,8,610,''); +INSERT INTO entity_relations VALUES(338,6,438,8,610,''); +INSERT INTO entity_relations VALUES(339,6,445,8,610,''); +INSERT INTO entity_relations VALUES(340,6,448,8,610,''); +INSERT INTO entity_relations VALUES(341,6,449,8,610,''); +INSERT INTO entity_relations VALUES(342,6,432,8,276,''); +INSERT INTO entity_relations VALUES(343,6,434,8,276,''); +INSERT INTO entity_relations VALUES(344,6,435,8,276,''); +INSERT INTO entity_relations VALUES(345,6,445,8,276,''); +INSERT INTO entity_relations VALUES(346,6,448,8,276,''); +INSERT INTO entity_relations VALUES(347,6,449,8,276,''); +INSERT INTO entity_relations VALUES(348,6,580,8,276,''); +INSERT INTO entity_relations VALUES(349,6,576,8,278,''); +INSERT INTO entity_relations VALUES(350,6,438,8,278,''); +INSERT INTO entity_relations VALUES(351,6,578,8,278,''); +INSERT INTO entity_relations VALUES(352,6,580,8,278,''); +INSERT INTO entity_relations VALUES(353,6,576,8,280,''); +INSERT INTO entity_relations VALUES(354,6,438,8,280,''); +INSERT INTO entity_relations VALUES(355,6,580,8,280,''); +INSERT INTO entity_relations VALUES(356,6,580,8,282,''); +INSERT INTO entity_relations VALUES(357,6,432,8,600,''); +INSERT INTO entity_relations VALUES(358,6,434,8,600,''); +INSERT INTO entity_relations VALUES(359,6,435,8,600,''); +INSERT INTO entity_relations VALUES(360,6,445,8,600,''); +INSERT INTO entity_relations VALUES(361,6,448,8,600,''); +INSERT INTO entity_relations VALUES(362,6,449,8,600,''); +INSERT INTO entity_relations VALUES(363,6,580,8,600,''); +INSERT INTO entity_relations VALUES(364,6,424,8,283,''); +INSERT INTO entity_relations VALUES(365,6,576,8,283,''); +INSERT INTO entity_relations VALUES(366,6,445,8,283,''); +INSERT INTO entity_relations VALUES(367,6,448,8,283,''); +INSERT INTO entity_relations VALUES(368,6,449,8,283,''); +INSERT INTO entity_relations VALUES(369,6,580,8,283,''); +INSERT INTO entity_relations VALUES(370,6,424,8,284,''); +INSERT INTO entity_relations VALUES(371,6,576,8,284,''); +INSERT INTO entity_relations VALUES(372,6,441,8,284,''); +INSERT INTO entity_relations VALUES(373,6,445,8,284,''); +INSERT INTO entity_relations VALUES(374,6,448,8,284,''); +INSERT INTO entity_relations VALUES(375,6,449,8,284,''); +INSERT INTO entity_relations VALUES(376,6,580,8,284,''); +INSERT INTO entity_relations VALUES(377,6,580,8,285,''); +INSERT INTO entity_relations VALUES(378,6,424,8,285,''); +INSERT INTO entity_relations VALUES(379,6,576,8,285,''); +INSERT INTO entity_relations VALUES(380,6,441,8,285,''); +INSERT INTO entity_relations VALUES(381,6,445,8,285,''); +INSERT INTO entity_relations VALUES(382,6,448,8,285,''); +INSERT INTO entity_relations VALUES(383,6,449,8,285,''); +INSERT INTO entity_relations VALUES(384,6,580,8,285,''); +INSERT INTO entity_relations VALUES(385,6,424,8,286,''); +INSERT INTO entity_relations VALUES(386,6,576,8,286,''); +INSERT INTO entity_relations VALUES(387,6,441,8,286,''); +INSERT INTO entity_relations VALUES(388,6,445,8,286,''); +INSERT INTO entity_relations VALUES(389,6,448,8,286,''); +INSERT INTO entity_relations VALUES(390,6,449,8,286,''); +INSERT INTO entity_relations VALUES(391,6,580,8,286,''); +INSERT INTO entity_relations VALUES(392,6,424,8,287,''); +INSERT INTO entity_relations VALUES(393,6,576,8,287,''); +INSERT INTO entity_relations VALUES(394,6,441,8,287,''); +INSERT INTO entity_relations VALUES(395,6,445,8,287,''); +INSERT INTO entity_relations VALUES(396,6,448,8,287,''); +INSERT INTO entity_relations VALUES(397,6,449,8,287,''); +INSERT INTO entity_relations VALUES(398,6,580,8,287,''); +INSERT INTO entity_relations VALUES(399,6,445,8,265,''); +INSERT INTO entity_relations VALUES(400,6,449,8,265,''); +INSERT INTO entity_relations VALUES(401,6,576,8,265,''); +INSERT INTO entity_relations VALUES(402,6,448,8,265,''); +INSERT INTO entity_relations VALUES(403,6,580,8,265,''); +INSERT INTO entity_relations VALUES(404,6,424,8,265,''); +INSERT INTO entity_relations VALUES(405,6,441,8,265,''); +INSERT INTO entity_relations VALUES(406,6,434,8,277,''); +INSERT INTO entity_relations VALUES(407,6,432,8,277,''); +INSERT INTO entity_relations VALUES(408,6,427,8,277,''); +INSERT INTO entity_relations VALUES(409,6,435,8,277,''); +INSERT INTO entity_relations VALUES(410,6,436,8,277,''); +INSERT INTO entity_relations VALUES(411,6,448,8,277,''); +INSERT INTO entity_relations VALUES(412,6,580,8,277,''); +INSERT INTO entity_relations VALUES(413,6,438,8,277,''); +INSERT INTO entity_relations VALUES(414,6,445,8,279,''); +INSERT INTO entity_relations VALUES(415,6,449,8,279,''); +INSERT INTO entity_relations VALUES(416,6,576,8,279,''); +INSERT INTO entity_relations VALUES(417,6,448,8,279,''); +INSERT INTO entity_relations VALUES(418,6,580,8,281,''); +INSERT INTO entity_relations VALUES(419,6,445,8,281,''); +INSERT INTO entity_relations VALUES(420,6,449,8,281,''); +INSERT INTO entity_relations VALUES(421,6,445,8,281,''); +INSERT INTO entity_relations VALUES(422,6,449,8,281,''); +INSERT INTO entity_relations VALUES(423,6,580,8,281,''); +INSERT INTO entity_relations VALUES(424,6,448,8,281,''); +INSERT INTO entity_relations VALUES(425,6,434,8,281,''); +INSERT INTO entity_relations VALUES(426,6,576,8,268,''); +INSERT INTO entity_relations VALUES(427,6,580,8,268,''); +INSERT INTO entity_relations VALUES(428,6,578,8,268,''); +INSERT INTO entity_relations VALUES(429,6,441,2,1,''); +INSERT INTO entity_relations VALUES(431,6,576,2,5,''); +INSERT INTO entity_relations VALUES(432,6,438,2,5,''); +INSERT INTO entity_relations VALUES(433,6,578,2,5,''); +INSERT INTO entity_relations VALUES(434,6,580,2,5,''); +INSERT INTO entity_relations VALUES(435,6,576,2,6,''); +INSERT INTO entity_relations VALUES(436,6,438,2,6,''); +INSERT INTO entity_relations VALUES(437,6,578,2,6,''); +INSERT INTO entity_relations VALUES(438,6,580,2,6,''); +INSERT INTO entity_relations VALUES(439,6,576,2,8,''); +INSERT INTO entity_relations VALUES(440,6,438,2,8,''); +INSERT INTO entity_relations VALUES(441,6,578,2,8,''); +INSERT INTO entity_relations VALUES(442,6,580,2,8,''); +INSERT INTO entity_relations VALUES(443,6,576,2,9,''); +INSERT INTO entity_relations VALUES(444,6,438,2,9,''); +INSERT INTO entity_relations VALUES(445,6,580,2,9,''); +INSERT INTO entity_relations VALUES(446,6,578,2,9,''); +INSERT INTO entity_relations VALUES(447,6,576,2,10,''); +INSERT INTO entity_relations VALUES(448,6,438,2,10,''); +INSERT INTO entity_relations VALUES(449,6,578,2,10,''); +INSERT INTO entity_relations VALUES(450,6,580,2,10,''); +INSERT INTO entity_relations VALUES(451,6,576,2,11,''); +INSERT INTO entity_relations VALUES(452,6,438,2,11,''); +INSERT INTO entity_relations VALUES(453,6,580,2,11,''); +INSERT INTO entity_relations VALUES(454,6,419,2,12,''); +INSERT INTO entity_relations VALUES(455,6,427,2,12,''); +INSERT INTO entity_relations VALUES(456,6,429,2,12,''); +INSERT INTO entity_relations VALUES(457,6,431,2,12,''); +INSERT INTO entity_relations VALUES(458,6,434,2,12,''); +INSERT INTO entity_relations VALUES(459,6,435,2,12,''); +INSERT INTO entity_relations VALUES(460,6,436,2,12,''); +INSERT INTO entity_relations VALUES(461,6,438,2,12,''); +INSERT INTO entity_relations VALUES(462,6,443,2,12,''); +INSERT INTO entity_relations VALUES(463,6,579,2,12,''); +INSERT INTO entity_relations VALUES(464,6,449,2,12,''); +INSERT INTO entity_relations VALUES(465,6,580,2,12,''); +INSERT INTO entity_relations VALUES(467,6,576,2,14,''); +INSERT INTO entity_relations VALUES(468,6,438,2,14,''); +INSERT INTO entity_relations VALUES(469,6,579,2,14,''); +INSERT INTO entity_relations VALUES(470,6,580,2,14,''); +INSERT INTO entity_relations VALUES(471,6,427,2,15,''); +INSERT INTO entity_relations VALUES(472,6,434,2,15,''); +INSERT INTO entity_relations VALUES(473,6,580,2,15,''); +INSERT INTO entity_relations VALUES(474,6,576,2,16,''); +INSERT INTO entity_relations VALUES(475,6,445,2,16,''); +INSERT INTO entity_relations VALUES(476,6,448,2,16,''); +INSERT INTO entity_relations VALUES(477,6,449,2,16,''); +INSERT INTO entity_relations VALUES(478,6,580,2,16,''); +INSERT INTO entity_relations VALUES(479,6,576,2,19,''); +INSERT INTO entity_relations VALUES(480,6,445,2,19,''); +INSERT INTO entity_relations VALUES(481,6,448,2,19,''); +INSERT INTO entity_relations VALUES(482,6,449,2,19,''); +INSERT INTO entity_relations VALUES(483,6,580,2,19,''); +INSERT INTO entity_relations VALUES(484,6,427,2,21,''); +INSERT INTO entity_relations VALUES(485,6,431,2,21,''); +INSERT INTO entity_relations VALUES(486,6,432,2,21,''); +INSERT INTO entity_relations VALUES(487,6,434,2,21,''); +INSERT INTO entity_relations VALUES(488,6,435,2,21,''); +INSERT INTO entity_relations VALUES(489,6,580,2,21,''); +INSERT INTO entity_relations VALUES(490,6,576,2,23,''); +INSERT INTO entity_relations VALUES(491,6,445,2,23,''); +INSERT INTO entity_relations VALUES(492,6,448,2,23,''); +INSERT INTO entity_relations VALUES(493,6,580,2,23,''); +INSERT INTO entity_relations VALUES(494,6,424,2,25,''); +INSERT INTO entity_relations VALUES(495,6,593,2,25,''); +INSERT INTO entity_relations VALUES(496,6,577,2,25,''); +INSERT INTO entity_relations VALUES(497,6,443,2,25,''); +INSERT INTO entity_relations VALUES(498,6,578,2,25,''); +INSERT INTO entity_relations VALUES(499,6,580,2,25,''); +INSERT INTO entity_relations VALUES(500,6,591,2,25,''); +INSERT INTO entity_relations VALUES(502,6,427,2,27,''); +INSERT INTO entity_relations VALUES(503,6,429,2,27,''); +INSERT INTO entity_relations VALUES(504,6,432,2,27,''); +INSERT INTO entity_relations VALUES(505,6,434,2,27,''); +INSERT INTO entity_relations VALUES(506,6,435,2,27,''); +INSERT INTO entity_relations VALUES(507,6,436,2,27,''); +INSERT INTO entity_relations VALUES(508,6,438,2,27,''); +INSERT INTO entity_relations VALUES(509,6,445,2,27,''); +INSERT INTO entity_relations VALUES(510,6,447,2,27,''); +INSERT INTO entity_relations VALUES(511,6,448,2,27,''); +INSERT INTO entity_relations VALUES(512,6,580,2,27,''); +INSERT INTO entity_relations VALUES(513,6,448,2,29,''); +INSERT INTO entity_relations VALUES(514,6,580,2,29,''); +INSERT INTO entity_relations VALUES(515,6,576,2,31,''); +INSERT INTO entity_relations VALUES(516,6,580,2,32,''); +INSERT INTO entity_relations VALUES(517,6,576,2,32,''); +INSERT INTO entity_relations VALUES(519,6,418,2,36,''); +INSERT INTO entity_relations VALUES(520,6,425,2,36,''); +INSERT INTO entity_relations VALUES(521,6,434,2,36,''); +INSERT INTO entity_relations VALUES(522,6,435,2,36,''); +INSERT INTO entity_relations VALUES(523,6,436,2,36,''); +INSERT INTO entity_relations VALUES(524,6,445,2,36,''); +INSERT INTO entity_relations VALUES(525,6,448,2,36,''); +INSERT INTO entity_relations VALUES(526,6,580,2,36,''); +INSERT INTO entity_relations VALUES(527,6,427,2,37,''); +INSERT INTO entity_relations VALUES(528,6,434,2,37,''); +INSERT INTO entity_relations VALUES(529,6,435,2,37,''); +INSERT INTO entity_relations VALUES(530,6,436,2,37,''); +INSERT INTO entity_relations VALUES(531,6,438,2,37,''); +INSERT INTO entity_relations VALUES(532,6,580,2,37,''); +INSERT INTO entity_relations VALUES(534,6,580,2,39,''); +INSERT INTO entity_relations VALUES(535,6,434,2,40,''); +INSERT INTO entity_relations VALUES(536,6,435,2,40,''); +INSERT INTO entity_relations VALUES(537,6,441,2,40,''); +INSERT INTO entity_relations VALUES(538,6,445,2,40,''); +INSERT INTO entity_relations VALUES(539,6,448,2,40,''); +INSERT INTO entity_relations VALUES(540,6,449,2,40,''); +INSERT INTO entity_relations VALUES(541,6,580,2,40,''); +INSERT INTO entity_relations VALUES(542,6,580,2,41,''); +INSERT INTO entity_relations VALUES(543,6,580,2,42,''); +INSERT INTO entity_relations VALUES(544,6,576,2,43,''); +INSERT INTO entity_relations VALUES(545,6,438,2,43,''); +INSERT INTO entity_relations VALUES(546,6,445,2,43,''); +INSERT INTO entity_relations VALUES(547,6,580,2,43,''); +INSERT INTO entity_relations VALUES(548,6,576,2,44,''); +INSERT INTO entity_relations VALUES(549,6,578,2,44,''); +INSERT INTO entity_relations VALUES(550,6,580,2,44,''); +INSERT INTO entity_relations VALUES(551,6,576,2,45,''); +INSERT INTO entity_relations VALUES(552,6,438,2,45,''); +INSERT INTO entity_relations VALUES(553,6,578,2,45,''); +INSERT INTO entity_relations VALUES(554,6,580,2,45,''); +INSERT INTO entity_relations VALUES(555,6,576,2,46,''); +INSERT INTO entity_relations VALUES(556,6,438,2,46,''); +INSERT INTO entity_relations VALUES(557,6,448,2,46,''); +INSERT INTO entity_relations VALUES(558,6,580,2,46,''); +INSERT INTO entity_relations VALUES(559,6,427,2,47,''); +INSERT INTO entity_relations VALUES(560,6,429,2,47,''); +INSERT INTO entity_relations VALUES(561,6,431,2,47,''); +INSERT INTO entity_relations VALUES(562,6,432,2,47,''); +INSERT INTO entity_relations VALUES(563,6,434,2,47,''); +INSERT INTO entity_relations VALUES(564,6,435,2,47,''); +INSERT INTO entity_relations VALUES(565,6,436,2,47,''); +INSERT INTO entity_relations VALUES(566,6,580,2,47,''); +INSERT INTO entity_relations VALUES(568,6,425,2,51,''); +INSERT INTO entity_relations VALUES(569,6,438,2,51,''); +INSERT INTO entity_relations VALUES(570,6,580,2,51,''); +INSERT INTO entity_relations VALUES(571,6,418,2,54,''); +INSERT INTO entity_relations VALUES(572,6,425,2,54,''); +INSERT INTO entity_relations VALUES(573,6,438,2,54,''); +INSERT INTO entity_relations VALUES(574,6,580,2,54,''); +INSERT INTO entity_relations VALUES(575,6,427,2,57,''); +INSERT INTO entity_relations VALUES(576,6,429,2,57,''); +INSERT INTO entity_relations VALUES(577,6,432,2,57,''); +INSERT INTO entity_relations VALUES(578,6,434,2,57,''); +INSERT INTO entity_relations VALUES(579,6,435,2,57,''); +INSERT INTO entity_relations VALUES(580,6,436,2,57,''); +INSERT INTO entity_relations VALUES(581,6,580,2,57,''); +INSERT INTO entity_relations VALUES(582,6,449,2,58,''); +INSERT INTO entity_relations VALUES(583,6,449,2,59,''); +INSERT INTO entity_relations VALUES(584,6,434,2,60,''); +INSERT INTO entity_relations VALUES(585,6,435,2,60,''); +INSERT INTO entity_relations VALUES(586,6,447,2,60,''); +INSERT INTO entity_relations VALUES(587,6,448,2,60,''); +INSERT INTO entity_relations VALUES(588,6,580,2,60,''); +INSERT INTO entity_relations VALUES(590,6,434,2,65,''); +INSERT INTO entity_relations VALUES(591,6,435,2,65,''); +INSERT INTO entity_relations VALUES(592,6,437,2,65,''); +INSERT INTO entity_relations VALUES(593,6,445,2,65,''); +INSERT INTO entity_relations VALUES(594,6,448,2,65,''); +INSERT INTO entity_relations VALUES(595,6,449,2,65,''); +INSERT INTO entity_relations VALUES(596,6,580,2,65,''); +INSERT INTO entity_relations VALUES(597,6,576,2,66,''); +INSERT INTO entity_relations VALUES(598,6,445,2,66,''); +INSERT INTO entity_relations VALUES(599,6,448,2,66,''); +INSERT INTO entity_relations VALUES(600,6,449,2,66,''); +INSERT INTO entity_relations VALUES(601,6,580,2,66,''); +INSERT INTO entity_relations VALUES(602,6,576,2,67,''); +INSERT INTO entity_relations VALUES(603,6,445,2,67,''); +INSERT INTO entity_relations VALUES(604,6,580,2,67,''); +INSERT INTO entity_relations VALUES(605,6,576,2,68,''); +INSERT INTO entity_relations VALUES(606,6,441,2,68,''); +INSERT INTO entity_relations VALUES(607,6,445,2,68,''); +INSERT INTO entity_relations VALUES(608,6,448,2,68,''); +INSERT INTO entity_relations VALUES(609,6,449,2,68,''); +INSERT INTO entity_relations VALUES(610,6,580,2,68,''); +INSERT INTO entity_relations VALUES(611,6,580,2,71,''); +INSERT INTO entity_relations VALUES(612,6,418,2,72,''); +INSERT INTO entity_relations VALUES(613,6,425,2,72,''); +INSERT INTO entity_relations VALUES(614,6,576,2,72,''); +INSERT INTO entity_relations VALUES(615,6,438,2,72,''); +INSERT INTO entity_relations VALUES(616,6,445,2,72,''); +INSERT INTO entity_relations VALUES(617,6,448,2,72,''); +INSERT INTO entity_relations VALUES(618,6,449,2,72,''); +INSERT INTO entity_relations VALUES(619,6,580,2,72,''); +INSERT INTO entity_relations VALUES(620,6,424,2,79,''); +INSERT INTO entity_relations VALUES(621,6,576,2,79,''); +INSERT INTO entity_relations VALUES(622,6,445,2,79,''); +INSERT INTO entity_relations VALUES(623,6,448,2,79,''); +INSERT INTO entity_relations VALUES(624,6,449,2,79,''); +INSERT INTO entity_relations VALUES(625,6,580,2,79,''); +INSERT INTO entity_relations VALUES(626,6,424,2,81,''); +INSERT INTO entity_relations VALUES(627,6,576,2,81,''); +INSERT INTO entity_relations VALUES(628,6,441,2,81,''); +INSERT INTO entity_relations VALUES(629,6,445,2,81,''); +INSERT INTO entity_relations VALUES(630,6,448,2,81,''); +INSERT INTO entity_relations VALUES(631,6,449,2,81,''); +INSERT INTO entity_relations VALUES(632,6,580,2,81,''); +INSERT INTO entity_relations VALUES(633,6,591,2,81,''); +INSERT INTO entity_relations VALUES(634,6,434,2,82,''); +INSERT INTO entity_relations VALUES(635,6,435,2,82,''); +INSERT INTO entity_relations VALUES(636,6,445,2,82,''); +INSERT INTO entity_relations VALUES(637,6,580,2,82,''); +INSERT INTO entity_relations VALUES(638,6,576,2,83,''); +INSERT INTO entity_relations VALUES(639,6,441,2,83,''); +INSERT INTO entity_relations VALUES(640,6,445,2,83,''); +INSERT INTO entity_relations VALUES(641,6,448,2,83,''); +INSERT INTO entity_relations VALUES(642,6,449,2,83,''); +INSERT INTO entity_relations VALUES(643,6,580,2,83,''); +INSERT INTO entity_relations VALUES(644,6,576,2,601,''); +INSERT INTO entity_relations VALUES(645,6,441,2,601,''); +INSERT INTO entity_relations VALUES(646,6,445,2,601,''); +INSERT INTO entity_relations VALUES(647,6,448,2,601,''); +INSERT INTO entity_relations VALUES(648,6,449,2,601,''); +INSERT INTO entity_relations VALUES(649,6,580,2,601,''); +INSERT INTO entity_relations VALUES(650,6,441,2,84,''); +INSERT INTO entity_relations VALUES(651,6,576,2,86,''); +INSERT INTO entity_relations VALUES(652,6,580,2,86,''); +INSERT INTO entity_relations VALUES(653,6,434,2,87,''); +INSERT INTO entity_relations VALUES(654,6,435,2,87,''); +INSERT INTO entity_relations VALUES(655,6,445,2,87,''); +INSERT INTO entity_relations VALUES(656,6,448,2,87,''); +INSERT INTO entity_relations VALUES(657,6,580,2,87,''); +INSERT INTO entity_relations VALUES(658,6,576,2,88,''); +INSERT INTO entity_relations VALUES(659,6,442,2,88,''); +INSERT INTO entity_relations VALUES(660,6,445,2,88,''); +INSERT INTO entity_relations VALUES(661,6,448,2,88,''); +INSERT INTO entity_relations VALUES(662,6,449,2,88,''); +INSERT INTO entity_relations VALUES(663,6,580,2,88,''); +INSERT INTO entity_relations VALUES(664,6,427,2,90,''); +INSERT INTO entity_relations VALUES(665,6,429,2,90,''); +INSERT INTO entity_relations VALUES(666,6,453,2,90,''); +INSERT INTO entity_relations VALUES(667,6,431,2,90,''); +INSERT INTO entity_relations VALUES(668,6,434,2,90,''); +INSERT INTO entity_relations VALUES(669,6,436,2,90,''); +INSERT INTO entity_relations VALUES(670,6,438,2,90,''); +INSERT INTO entity_relations VALUES(671,6,447,2,90,''); +INSERT INTO entity_relations VALUES(672,6,590,2,90,''); +INSERT INTO entity_relations VALUES(673,6,580,2,90,''); +INSERT INTO entity_relations VALUES(674,6,576,2,93,''); +INSERT INTO entity_relations VALUES(675,6,438,2,93,''); +INSERT INTO entity_relations VALUES(676,6,580,2,93,''); +INSERT INTO entity_relations VALUES(677,6,418,2,94,''); +INSERT INTO entity_relations VALUES(678,6,425,2,94,''); +INSERT INTO entity_relations VALUES(679,6,438,2,94,''); +INSERT INTO entity_relations VALUES(680,6,580,2,94,''); +INSERT INTO entity_relations VALUES(681,6,580,2,96,''); +INSERT INTO entity_relations VALUES(682,6,580,2,99,''); +INSERT INTO entity_relations VALUES(683,6,580,2,100,''); +INSERT INTO entity_relations VALUES(684,6,580,2,101,''); +INSERT INTO entity_relations VALUES(685,6,580,2,102,''); +INSERT INTO entity_relations VALUES(686,6,580,2,104,''); +INSERT INTO entity_relations VALUES(687,6,580,2,106,''); +INSERT INTO entity_relations VALUES(688,6,580,2,109,''); +INSERT INTO entity_relations VALUES(689,6,580,2,112,''); +INSERT INTO entity_relations VALUES(690,6,580,2,113,''); +INSERT INTO entity_relations VALUES(691,6,580,2,114,''); +INSERT INTO entity_relations VALUES(692,6,576,2,115,''); +INSERT INTO entity_relations VALUES(693,6,438,2,115,''); +INSERT INTO entity_relations VALUES(694,6,580,2,115,''); +INSERT INTO entity_relations VALUES(695,6,576,2,116,''); +INSERT INTO entity_relations VALUES(696,6,438,2,116,''); +INSERT INTO entity_relations VALUES(697,6,447,2,116,''); +INSERT INTO entity_relations VALUES(698,6,448,2,116,''); +INSERT INTO entity_relations VALUES(699,6,580,2,116,''); +INSERT INTO entity_relations VALUES(700,6,424,2,118,''); +INSERT INTO entity_relations VALUES(701,6,576,2,118,''); +INSERT INTO entity_relations VALUES(702,6,441,2,118,''); +INSERT INTO entity_relations VALUES(703,6,445,2,118,''); +INSERT INTO entity_relations VALUES(704,6,448,2,118,''); +INSERT INTO entity_relations VALUES(705,6,449,2,118,''); +INSERT INTO entity_relations VALUES(706,6,580,2,118,''); +INSERT INTO entity_relations VALUES(707,6,576,2,581,''); +INSERT INTO entity_relations VALUES(708,6,580,2,581,''); +INSERT INTO entity_relations VALUES(709,6,578,2,581,''); +INSERT INTO entity_relations VALUES(710,6,580,2,121,''); +INSERT INTO entity_relations VALUES(711,6,576,2,122,''); +INSERT INTO entity_relations VALUES(712,6,438,2,122,''); +INSERT INTO entity_relations VALUES(713,6,445,2,122,''); +INSERT INTO entity_relations VALUES(714,6,447,2,122,''); +INSERT INTO entity_relations VALUES(715,6,448,2,122,''); +INSERT INTO entity_relations VALUES(716,6,449,2,122,''); +INSERT INTO entity_relations VALUES(717,6,580,2,122,''); +INSERT INTO entity_relations VALUES(718,6,427,2,123,''); +INSERT INTO entity_relations VALUES(719,6,429,2,123,''); +INSERT INTO entity_relations VALUES(720,6,453,2,123,''); +INSERT INTO entity_relations VALUES(721,6,434,2,123,''); +INSERT INTO entity_relations VALUES(722,6,435,2,123,''); +INSERT INTO entity_relations VALUES(723,6,436,2,123,''); +INSERT INTO entity_relations VALUES(724,6,438,2,123,''); +INSERT INTO entity_relations VALUES(725,6,580,2,123,''); +INSERT INTO entity_relations VALUES(727,6,576,2,125,''); +INSERT INTO entity_relations VALUES(728,6,438,2,125,''); +INSERT INTO entity_relations VALUES(729,6,418,2,126,''); +INSERT INTO entity_relations VALUES(730,6,438,2,126,''); +INSERT INTO entity_relations VALUES(731,6,441,2,126,''); +INSERT INTO entity_relations VALUES(732,6,445,2,126,''); +INSERT INTO entity_relations VALUES(733,6,579,2,126,''); +INSERT INTO entity_relations VALUES(734,6,448,2,126,''); +INSERT INTO entity_relations VALUES(735,6,449,2,126,''); +INSERT INTO entity_relations VALUES(736,6,580,2,126,''); +INSERT INTO entity_relations VALUES(738,6,576,2,128,''); +INSERT INTO entity_relations VALUES(739,6,438,2,128,''); +INSERT INTO entity_relations VALUES(740,6,447,2,128,''); +INSERT INTO entity_relations VALUES(741,6,602,2,128,''); +INSERT INTO entity_relations VALUES(742,6,590,2,128,''); +INSERT INTO entity_relations VALUES(743,6,448,2,128,''); +INSERT INTO entity_relations VALUES(744,6,580,2,128,''); +INSERT INTO entity_relations VALUES(746,6,432,2,130,''); +INSERT INTO entity_relations VALUES(747,6,434,2,130,''); +INSERT INTO entity_relations VALUES(748,6,435,2,130,''); +INSERT INTO entity_relations VALUES(749,6,438,2,130,''); +INSERT INTO entity_relations VALUES(750,6,580,2,130,''); +INSERT INTO entity_relations VALUES(751,6,576,2,131,''); +INSERT INTO entity_relations VALUES(752,6,445,2,131,''); +INSERT INTO entity_relations VALUES(753,6,448,2,131,''); +INSERT INTO entity_relations VALUES(754,6,449,2,131,''); +INSERT INTO entity_relations VALUES(755,6,580,2,131,''); +INSERT INTO entity_relations VALUES(756,6,432,2,132,''); +INSERT INTO entity_relations VALUES(757,6,434,2,132,''); +INSERT INTO entity_relations VALUES(758,6,435,2,132,''); +INSERT INTO entity_relations VALUES(759,6,580,2,132,''); +INSERT INTO entity_relations VALUES(760,6,432,2,133,''); +INSERT INTO entity_relations VALUES(761,6,434,2,133,''); +INSERT INTO entity_relations VALUES(762,6,435,2,133,''); +INSERT INTO entity_relations VALUES(763,6,445,2,133,''); +INSERT INTO entity_relations VALUES(764,6,448,2,133,''); +INSERT INTO entity_relations VALUES(765,6,449,2,133,''); +INSERT INTO entity_relations VALUES(766,6,580,2,133,''); +INSERT INTO entity_relations VALUES(767,6,432,2,134,''); +INSERT INTO entity_relations VALUES(768,6,434,2,134,''); +INSERT INTO entity_relations VALUES(769,6,445,2,134,''); +INSERT INTO entity_relations VALUES(770,6,448,2,134,''); +INSERT INTO entity_relations VALUES(771,6,449,2,134,''); +INSERT INTO entity_relations VALUES(772,6,580,2,134,''); +INSERT INTO entity_relations VALUES(773,6,424,2,134,''); +INSERT INTO entity_relations VALUES(774,6,441,2,134,''); +INSERT INTO entity_relations VALUES(776,6,576,2,136,''); +INSERT INTO entity_relations VALUES(777,6,445,2,136,''); +INSERT INTO entity_relations VALUES(778,6,448,2,136,''); +INSERT INTO entity_relations VALUES(779,6,449,2,136,''); +INSERT INTO entity_relations VALUES(780,6,580,2,136,''); +INSERT INTO entity_relations VALUES(781,6,432,2,137,''); +INSERT INTO entity_relations VALUES(782,6,434,2,137,''); +INSERT INTO entity_relations VALUES(783,6,435,2,137,''); +INSERT INTO entity_relations VALUES(784,6,445,2,137,''); +INSERT INTO entity_relations VALUES(785,6,448,2,137,''); +INSERT INTO entity_relations VALUES(786,6,449,2,137,''); +INSERT INTO entity_relations VALUES(787,6,580,2,137,''); +INSERT INTO entity_relations VALUES(790,6,432,2,143,''); +INSERT INTO entity_relations VALUES(791,6,434,2,143,''); +INSERT INTO entity_relations VALUES(792,6,435,2,143,''); +INSERT INTO entity_relations VALUES(793,6,445,2,143,''); +INSERT INTO entity_relations VALUES(794,6,448,2,143,''); +INSERT INTO entity_relations VALUES(795,6,449,2,143,''); +INSERT INTO entity_relations VALUES(796,6,580,2,143,''); +INSERT INTO entity_relations VALUES(797,6,432,2,147,''); +INSERT INTO entity_relations VALUES(798,6,434,2,147,''); +INSERT INTO entity_relations VALUES(799,6,435,2,147,''); +INSERT INTO entity_relations VALUES(800,6,438,2,147,''); +INSERT INTO entity_relations VALUES(801,6,445,2,147,''); +INSERT INTO entity_relations VALUES(802,6,448,2,147,''); +INSERT INTO entity_relations VALUES(803,6,580,2,147,''); +INSERT INTO entity_relations VALUES(804,6,432,2,148,''); +INSERT INTO entity_relations VALUES(805,6,434,2,148,''); +INSERT INTO entity_relations VALUES(806,6,445,2,148,''); +INSERT INTO entity_relations VALUES(807,6,448,2,148,''); +INSERT INTO entity_relations VALUES(808,6,449,2,148,''); +INSERT INTO entity_relations VALUES(809,6,580,2,148,''); +INSERT INTO entity_relations VALUES(810,6,577,2,149,''); +INSERT INTO entity_relations VALUES(811,6,443,2,149,''); +INSERT INTO entity_relations VALUES(812,6,445,2,149,''); +INSERT INTO entity_relations VALUES(813,6,448,2,149,''); +INSERT INTO entity_relations VALUES(814,6,449,2,149,''); +INSERT INTO entity_relations VALUES(815,6,580,2,149,''); +INSERT INTO entity_relations VALUES(816,6,576,2,150,''); +INSERT INTO entity_relations VALUES(817,6,438,2,150,''); +INSERT INTO entity_relations VALUES(818,6,580,2,150,''); +INSERT INTO entity_relations VALUES(821,6,576,2,157,''); +INSERT INTO entity_relations VALUES(822,6,438,2,157,''); +INSERT INTO entity_relations VALUES(823,6,447,2,157,''); +INSERT INTO entity_relations VALUES(824,6,590,2,157,''); +INSERT INTO entity_relations VALUES(825,6,580,2,157,''); +INSERT INTO entity_relations VALUES(826,6,580,2,158,''); +INSERT INTO entity_relations VALUES(827,6,576,2,160,''); +INSERT INTO entity_relations VALUES(828,6,448,2,160,''); +INSERT INTO entity_relations VALUES(829,6,580,2,160,''); +INSERT INTO entity_relations VALUES(830,6,434,2,163,''); +INSERT INTO entity_relations VALUES(831,6,445,2,163,''); +INSERT INTO entity_relations VALUES(832,6,448,2,163,''); +INSERT INTO entity_relations VALUES(833,6,580,2,163,''); +INSERT INTO entity_relations VALUES(834,6,576,2,165,''); +INSERT INTO entity_relations VALUES(835,6,438,2,165,''); +INSERT INTO entity_relations VALUES(836,6,447,2,165,''); +INSERT INTO entity_relations VALUES(837,6,448,2,165,''); +INSERT INTO entity_relations VALUES(838,6,580,2,165,''); +INSERT INTO entity_relations VALUES(839,6,454,2,168,''); +INSERT INTO entity_relations VALUES(840,6,427,2,168,''); +INSERT INTO entity_relations VALUES(841,6,432,2,168,''); +INSERT INTO entity_relations VALUES(842,6,434,2,168,''); +INSERT INTO entity_relations VALUES(843,6,427,2,169,''); +INSERT INTO entity_relations VALUES(844,6,434,2,169,''); +INSERT INTO entity_relations VALUES(845,6,435,2,169,''); +INSERT INTO entity_relations VALUES(846,6,448,2,169,''); +INSERT INTO entity_relations VALUES(847,6,580,2,169,''); +INSERT INTO entity_relations VALUES(848,6,576,2,170,''); +INSERT INTO entity_relations VALUES(849,6,438,2,170,''); +INSERT INTO entity_relations VALUES(850,6,579,2,170,''); +INSERT INTO entity_relations VALUES(851,6,448,2,170,''); +INSERT INTO entity_relations VALUES(852,6,580,2,171,''); +INSERT INTO entity_relations VALUES(853,6,580,2,172,''); +INSERT INTO entity_relations VALUES(854,6,580,2,173,''); +INSERT INTO entity_relations VALUES(857,6,580,2,603,''); +INSERT INTO entity_relations VALUES(858,6,432,2,182,''); +INSERT INTO entity_relations VALUES(859,6,434,2,182,''); +INSERT INTO entity_relations VALUES(860,6,435,2,182,''); +INSERT INTO entity_relations VALUES(861,6,445,2,182,''); +INSERT INTO entity_relations VALUES(862,6,448,2,182,''); +INSERT INTO entity_relations VALUES(863,6,449,2,182,''); +INSERT INTO entity_relations VALUES(864,6,580,2,182,''); +INSERT INTO entity_relations VALUES(865,6,580,2,183,''); +INSERT INTO entity_relations VALUES(866,6,576,2,188,''); +INSERT INTO entity_relations VALUES(867,6,438,2,188,''); +INSERT INTO entity_relations VALUES(868,6,445,2,188,''); +INSERT INTO entity_relations VALUES(869,6,447,2,188,''); +INSERT INTO entity_relations VALUES(870,6,448,2,188,''); +INSERT INTO entity_relations VALUES(871,6,580,2,188,''); +INSERT INTO entity_relations VALUES(872,6,580,2,189,''); +INSERT INTO entity_relations VALUES(874,6,441,2,191,''); +INSERT INTO entity_relations VALUES(875,6,435,2,215,''); +INSERT INTO entity_relations VALUES(876,6,580,2,216,''); +INSERT INTO entity_relations VALUES(877,6,434,2,217,''); +INSERT INTO entity_relations VALUES(878,6,435,2,217,''); +INSERT INTO entity_relations VALUES(879,6,445,2,217,''); +INSERT INTO entity_relations VALUES(880,6,448,2,217,''); +INSERT INTO entity_relations VALUES(881,6,449,2,217,''); +INSERT INTO entity_relations VALUES(882,6,580,2,217,''); +INSERT INTO entity_relations VALUES(884,6,424,2,219,''); +INSERT INTO entity_relations VALUES(885,6,434,2,219,''); +INSERT INTO entity_relations VALUES(886,6,435,2,219,''); +INSERT INTO entity_relations VALUES(887,6,438,2,219,''); +INSERT INTO entity_relations VALUES(888,6,442,2,219,''); +INSERT INTO entity_relations VALUES(889,6,445,2,219,''); +INSERT INTO entity_relations VALUES(890,6,448,2,219,''); +INSERT INTO entity_relations VALUES(891,6,449,2,219,''); +INSERT INTO entity_relations VALUES(892,6,580,2,219,''); +INSERT INTO entity_relations VALUES(893,6,434,2,220,''); +INSERT INTO entity_relations VALUES(894,6,435,2,220,''); +INSERT INTO entity_relations VALUES(895,6,437,2,220,''); +INSERT INTO entity_relations VALUES(896,6,445,2,220,''); +INSERT INTO entity_relations VALUES(897,6,448,2,220,''); +INSERT INTO entity_relations VALUES(898,6,580,2,220,''); +INSERT INTO entity_relations VALUES(899,6,441,2,223,''); +INSERT INTO entity_relations VALUES(900,6,441,2,224,''); +INSERT INTO entity_relations VALUES(901,6,580,2,226,''); +INSERT INTO entity_relations VALUES(902,6,424,2,227,''); +INSERT INTO entity_relations VALUES(903,6,434,2,227,''); +INSERT INTO entity_relations VALUES(904,6,435,2,227,''); +INSERT INTO entity_relations VALUES(905,6,445,2,227,''); +INSERT INTO entity_relations VALUES(906,6,434,2,228,''); +INSERT INTO entity_relations VALUES(907,6,435,2,228,''); +INSERT INTO entity_relations VALUES(908,6,445,2,228,''); +INSERT INTO entity_relations VALUES(909,6,448,2,228,''); +INSERT INTO entity_relations VALUES(910,6,449,2,228,''); +INSERT INTO entity_relations VALUES(911,6,580,2,228,''); +INSERT INTO entity_relations VALUES(912,6,580,2,228,''); +INSERT INTO entity_relations VALUES(913,6,424,2,232,''); +INSERT INTO entity_relations VALUES(914,6,434,2,232,''); +INSERT INTO entity_relations VALUES(915,6,437,2,232,''); +INSERT INTO entity_relations VALUES(916,6,445,2,232,''); +INSERT INTO entity_relations VALUES(917,6,448,2,232,''); +INSERT INTO entity_relations VALUES(918,6,449,2,232,''); +INSERT INTO entity_relations VALUES(919,6,580,2,232,''); +INSERT INTO entity_relations VALUES(920,6,432,2,233,''); +INSERT INTO entity_relations VALUES(921,6,434,2,233,''); +INSERT INTO entity_relations VALUES(922,6,435,2,233,''); +INSERT INTO entity_relations VALUES(923,6,445,2,233,''); +INSERT INTO entity_relations VALUES(924,6,448,2,233,''); +INSERT INTO entity_relations VALUES(925,6,449,2,233,''); +INSERT INTO entity_relations VALUES(926,6,580,2,233,''); +INSERT INTO entity_relations VALUES(927,6,576,2,235,''); +INSERT INTO entity_relations VALUES(928,6,441,2,235,''); +INSERT INTO entity_relations VALUES(929,6,445,2,235,''); +INSERT INTO entity_relations VALUES(930,6,448,2,235,''); +INSERT INTO entity_relations VALUES(931,6,449,2,235,''); +INSERT INTO entity_relations VALUES(932,6,580,2,235,''); +INSERT INTO entity_relations VALUES(933,6,576,2,236,''); +INSERT INTO entity_relations VALUES(934,6,578,2,236,''); +INSERT INTO entity_relations VALUES(935,6,580,2,236,''); +INSERT INTO entity_relations VALUES(936,6,580,2,237,''); +INSERT INTO entity_relations VALUES(937,6,580,2,244,''); +INSERT INTO entity_relations VALUES(938,6,576,2,245,''); +INSERT INTO entity_relations VALUES(939,6,578,2,245,''); +INSERT INTO entity_relations VALUES(940,6,580,2,245,''); +INSERT INTO entity_relations VALUES(941,6,576,2,246,''); +INSERT INTO entity_relations VALUES(942,6,438,2,246,''); +INSERT INTO entity_relations VALUES(943,6,580,2,246,''); +INSERT INTO entity_relations VALUES(944,6,427,2,248,''); +INSERT INTO entity_relations VALUES(945,6,429,2,248,''); +INSERT INTO entity_relations VALUES(946,6,453,2,248,''); +INSERT INTO entity_relations VALUES(947,6,434,2,248,''); +INSERT INTO entity_relations VALUES(948,6,435,2,248,''); +INSERT INTO entity_relations VALUES(949,6,436,2,248,''); +INSERT INTO entity_relations VALUES(950,6,438,2,248,''); +INSERT INTO entity_relations VALUES(951,6,580,2,248,''); +INSERT INTO entity_relations VALUES(952,6,441,2,2,''); +INSERT INTO entity_relations VALUES(953,6,578,2,2,''); +INSERT INTO entity_relations VALUES(954,6,576,2,2,''); +INSERT INTO entity_relations VALUES(955,6,580,2,2,''); +INSERT INTO entity_relations VALUES(956,6,580,2,4,''); +INSERT INTO entity_relations VALUES(957,6,438,2,4,''); +INSERT INTO entity_relations VALUES(958,6,418,2,4,''); +INSERT INTO entity_relations VALUES(959,6,425,2,4,''); +INSERT INTO entity_relations VALUES(960,6,576,2,4,''); +INSERT INTO entity_relations VALUES(961,6,448,2,4,''); +INSERT INTO entity_relations VALUES(962,6,449,2,4,''); +INSERT INTO entity_relations VALUES(963,6,445,2,4,''); +INSERT INTO entity_relations VALUES(965,6,580,2,17,''); +INSERT INTO entity_relations VALUES(966,6,454,2,18,''); +INSERT INTO entity_relations VALUES(967,6,427,2,18,''); +INSERT INTO entity_relations VALUES(968,6,445,2,18,''); +INSERT INTO entity_relations VALUES(969,6,580,2,18,''); +INSERT INTO entity_relations VALUES(970,6,432,2,18,''); +INSERT INTO entity_relations VALUES(971,6,448,2,18,''); +INSERT INTO entity_relations VALUES(972,6,434,2,18,''); +INSERT INTO entity_relations VALUES(973,6,435,2,18,''); +INSERT INTO entity_relations VALUES(974,6,580,2,20,''); +INSERT INTO entity_relations VALUES(975,6,449,2,22,''); +INSERT INTO entity_relations VALUES(976,6,445,2,22,''); +INSERT INTO entity_relations VALUES(977,6,448,2,22,''); +INSERT INTO entity_relations VALUES(978,6,576,2,22,''); +INSERT INTO entity_relations VALUES(979,6,441,2,24,''); +INSERT INTO entity_relations VALUES(980,6,591,2,24,''); +INSERT INTO entity_relations VALUES(981,6,580,2,193,''); +INSERT INTO entity_relations VALUES(982,6,580,2,213,''); +INSERT INTO entity_relations VALUES(983,6,438,2,213,''); +INSERT INTO entity_relations VALUES(984,6,576,2,213,''); +INSERT INTO entity_relations VALUES(985,6,445,2,604,''); +INSERT INTO entity_relations VALUES(986,6,449,2,604,''); +INSERT INTO entity_relations VALUES(987,6,576,2,604,''); +INSERT INTO entity_relations VALUES(988,6,448,2,604,''); +INSERT INTO entity_relations VALUES(989,6,580,2,604,''); +INSERT INTO entity_relations VALUES(990,6,580,2,103,''); +INSERT INTO entity_relations VALUES(991,6,438,2,103,''); +INSERT INTO entity_relations VALUES(992,6,418,2,103,''); +INSERT INTO entity_relations VALUES(993,6,425,2,103,''); +INSERT INTO entity_relations VALUES(994,6,434,2,77,''); +INSERT INTO entity_relations VALUES(995,6,435,2,77,''); +INSERT INTO entity_relations VALUES(996,6,580,2,77,''); +INSERT INTO entity_relations VALUES(997,6,580,2,77,''); +INSERT INTO entity_relations VALUES(998,6,576,2,77,''); +INSERT INTO entity_relations VALUES(999,6,578,2,77,''); +INSERT INTO entity_relations VALUES(1000,6,580,2,77,''); +INSERT INTO entity_relations VALUES(1001,6,418,2,117,''); +INSERT INTO entity_relations VALUES(1002,6,576,2,117,''); +INSERT INTO entity_relations VALUES(1003,6,438,2,117,''); +INSERT INTO entity_relations VALUES(1004,6,425,2,117,''); +INSERT INTO entity_relations VALUES(1005,6,580,2,117,''); +INSERT INTO entity_relations VALUES(1006,6,447,2,117,''); +INSERT INTO entity_relations VALUES(1007,6,602,2,117,''); +INSERT INTO entity_relations VALUES(1008,6,590,2,117,''); +INSERT INTO entity_relations VALUES(1009,6,448,2,117,''); +INSERT INTO entity_relations VALUES(1010,6,418,2,119,''); +INSERT INTO entity_relations VALUES(1011,6,425,2,119,''); +INSERT INTO entity_relations VALUES(1012,6,438,2,119,''); +INSERT INTO entity_relations VALUES(1013,6,580,2,119,''); +INSERT INTO entity_relations VALUES(1014,6,580,2,121,''); +INSERT INTO entity_relations VALUES(1015,6,580,2,30,''); +INSERT INTO entity_relations VALUES(1016,6,424,2,43,''); +INSERT INTO entity_relations VALUES(1017,6,418,2,55,''); +INSERT INTO entity_relations VALUES(1018,6,425,2,55,''); +INSERT INTO entity_relations VALUES(1019,6,576,2,55,''); +INSERT INTO entity_relations VALUES(1020,6,580,2,55,''); +INSERT INTO entity_relations VALUES(1021,6,438,2,55,''); +INSERT INTO entity_relations VALUES(1022,6,434,2,56,''); +INSERT INTO entity_relations VALUES(1023,6,427,2,56,''); +INSERT INTO entity_relations VALUES(1024,6,436,2,56,''); +INSERT INTO entity_relations VALUES(1025,6,445,2,63,''); +INSERT INTO entity_relations VALUES(1026,6,576,2,63,''); +INSERT INTO entity_relations VALUES(1027,6,448,2,63,''); +INSERT INTO entity_relations VALUES(1028,6,580,2,63,''); +INSERT INTO entity_relations VALUES(1029,6,418,2,28,''); +INSERT INTO entity_relations VALUES(1030,6,425,2,28,''); +INSERT INTO entity_relations VALUES(1031,6,434,2,28,''); +INSERT INTO entity_relations VALUES(1032,6,438,2,28,''); +INSERT INTO entity_relations VALUES(1033,6,580,2,28,''); +INSERT INTO entity_relations VALUES(1034,6,434,2,34,''); +INSERT INTO entity_relations VALUES(1035,6,427,2,34,''); +INSERT INTO entity_relations VALUES(1036,6,580,2,34,''); +INSERT INTO entity_relations VALUES(1037,6,438,2,34,''); +INSERT INTO entity_relations VALUES(1038,6,580,2,48,''); +INSERT INTO entity_relations VALUES(1039,6,580,2,49,''); +INSERT INTO entity_relations VALUES(1040,6,580,2,52,''); +INSERT INTO entity_relations VALUES(1041,6,445,2,52,''); +INSERT INTO entity_relations VALUES(1042,6,454,2,52,''); +INSERT INTO entity_relations VALUES(1043,6,427,2,52,''); +INSERT INTO entity_relations VALUES(1044,6,429,2,52,''); +INSERT INTO entity_relations VALUES(1045,6,580,2,53,''); +INSERT INTO entity_relations VALUES(1046,6,580,2,62,''); +INSERT INTO entity_relations VALUES(1047,6,576,2,62,''); +INSERT INTO entity_relations VALUES(1048,6,448,2,62,''); +INSERT INTO entity_relations VALUES(1049,6,445,2,62,''); +INSERT INTO entity_relations VALUES(1050,6,438,2,62,''); +INSERT INTO entity_relations VALUES(1051,6,418,2,62,''); +INSERT INTO entity_relations VALUES(1052,6,425,2,62,''); +INSERT INTO entity_relations VALUES(1053,6,445,2,64,''); +INSERT INTO entity_relations VALUES(1054,6,576,2,64,''); +INSERT INTO entity_relations VALUES(1055,6,448,2,64,''); +INSERT INTO entity_relations VALUES(1056,6,580,2,64,''); +INSERT INTO entity_relations VALUES(1057,6,445,2,69,''); +INSERT INTO entity_relations VALUES(1058,6,449,2,69,''); +INSERT INTO entity_relations VALUES(1059,6,424,2,69,''); +INSERT INTO entity_relations VALUES(1060,6,576,2,69,''); +INSERT INTO entity_relations VALUES(1061,6,448,2,69,''); +INSERT INTO entity_relations VALUES(1062,6,580,2,69,''); +INSERT INTO entity_relations VALUES(1063,6,445,2,70,''); +INSERT INTO entity_relations VALUES(1064,6,576,2,70,''); +INSERT INTO entity_relations VALUES(1065,6,580,2,70,''); +INSERT INTO entity_relations VALUES(1066,6,445,2,73,''); +INSERT INTO entity_relations VALUES(1067,6,576,2,73,''); +INSERT INTO entity_relations VALUES(1068,6,580,2,73,''); +INSERT INTO entity_relations VALUES(1069,6,441,2,73,''); +INSERT INTO entity_relations VALUES(1070,6,445,2,605,''); +INSERT INTO entity_relations VALUES(1071,6,576,2,605,''); +INSERT INTO entity_relations VALUES(1072,6,580,2,605,''); +INSERT INTO entity_relations VALUES(1073,6,580,2,606,''); +INSERT INTO entity_relations VALUES(1074,6,576,2,606,''); +INSERT INTO entity_relations VALUES(1075,6,445,2,606,''); +INSERT INTO entity_relations VALUES(1076,6,448,2,606,''); +INSERT INTO entity_relations VALUES(1077,6,449,2,606,''); +INSERT INTO entity_relations VALUES(1078,6,445,2,76,''); +INSERT INTO entity_relations VALUES(1079,6,434,2,76,''); +INSERT INTO entity_relations VALUES(1080,6,435,2,76,''); +INSERT INTO entity_relations VALUES(1081,6,448,2,76,''); +INSERT INTO entity_relations VALUES(1082,6,580,2,76,''); +INSERT INTO entity_relations VALUES(1083,6,445,2,80,''); +INSERT INTO entity_relations VALUES(1084,6,449,2,80,''); +INSERT INTO entity_relations VALUES(1085,6,576,2,80,''); +INSERT INTO entity_relations VALUES(1086,6,448,2,80,''); +INSERT INTO entity_relations VALUES(1087,6,580,2,80,''); +INSERT INTO entity_relations VALUES(1088,6,441,2,80,''); +INSERT INTO entity_relations VALUES(1089,6,438,2,85,''); +INSERT INTO entity_relations VALUES(1090,6,580,2,85,''); +INSERT INTO entity_relations VALUES(1091,6,577,2,91,''); +INSERT INTO entity_relations VALUES(1092,6,438,2,92,''); +INSERT INTO entity_relations VALUES(1093,6,580,2,92,''); +INSERT INTO entity_relations VALUES(1094,6,580,2,95,''); +INSERT INTO entity_relations VALUES(1095,6,438,2,95,''); +INSERT INTO entity_relations VALUES(1096,6,418,2,95,''); +INSERT INTO entity_relations VALUES(1097,6,425,2,95,''); +INSERT INTO entity_relations VALUES(1098,6,580,2,97,''); +INSERT INTO entity_relations VALUES(1099,6,448,2,97,''); +INSERT INTO entity_relations VALUES(1100,6,434,2,97,''); +INSERT INTO entity_relations VALUES(1101,6,435,2,97,''); +INSERT INTO entity_relations VALUES(1102,6,427,2,97,''); +INSERT INTO entity_relations VALUES(1103,6,454,2,97,''); +INSERT INTO entity_relations VALUES(1104,6,438,2,97,''); +INSERT INTO entity_relations VALUES(1105,6,576,2,98,''); +INSERT INTO entity_relations VALUES(1106,6,438,2,98,''); +INSERT INTO entity_relations VALUES(1107,6,580,2,98,''); +INSERT INTO entity_relations VALUES(1108,6,580,2,105,''); +INSERT INTO entity_relations VALUES(1109,6,580,2,107,''); +INSERT INTO entity_relations VALUES(1110,6,438,2,107,''); +INSERT INTO entity_relations VALUES(1111,6,448,2,107,''); +INSERT INTO entity_relations VALUES(1112,6,449,2,107,''); +INSERT INTO entity_relations VALUES(1113,6,580,2,108,''); +INSERT INTO entity_relations VALUES(1114,6,580,2,110,''); +INSERT INTO entity_relations VALUES(1115,6,576,2,110,''); +INSERT INTO entity_relations VALUES(1116,6,438,2,110,''); +INSERT INTO entity_relations VALUES(1117,6,580,2,111,''); +INSERT INTO entity_relations VALUES(1118,6,438,2,111,''); +INSERT INTO entity_relations VALUES(1119,6,580,2,607,''); +INSERT INTO entity_relations VALUES(1120,6,576,2,607,''); +INSERT INTO entity_relations VALUES(1121,6,448,2,607,''); +INSERT INTO entity_relations VALUES(1122,6,449,2,607,''); +INSERT INTO entity_relations VALUES(1123,6,445,2,607,''); +INSERT INTO entity_relations VALUES(1124,6,435,2,142,''); +INSERT INTO entity_relations VALUES(1125,6,580,2,144,''); +INSERT INTO entity_relations VALUES(1126,6,580,2,145,''); +INSERT INTO entity_relations VALUES(1127,6,432,2,145,''); +INSERT INTO entity_relations VALUES(1128,6,434,2,145,''); +INSERT INTO entity_relations VALUES(1129,6,435,2,145,''); +INSERT INTO entity_relations VALUES(1130,6,580,2,146,''); +INSERT INTO entity_relations VALUES(1131,6,434,2,146,''); +INSERT INTO entity_relations VALUES(1132,6,435,2,146,''); +INSERT INTO entity_relations VALUES(1133,6,436,2,146,''); +INSERT INTO entity_relations VALUES(1134,6,432,2,146,''); +INSERT INTO entity_relations VALUES(1135,6,580,2,153,''); +INSERT INTO entity_relations VALUES(1136,6,434,2,153,''); +INSERT INTO entity_relations VALUES(1137,6,435,2,153,''); +INSERT INTO entity_relations VALUES(1138,6,580,2,154,''); +INSERT INTO entity_relations VALUES(1139,6,593,2,155,''); +INSERT INTO entity_relations VALUES(1140,6,443,2,155,''); +INSERT INTO entity_relations VALUES(1141,6,580,2,155,''); +INSERT INTO entity_relations VALUES(1142,6,580,2,156,''); +INSERT INTO entity_relations VALUES(1143,6,438,2,156,''); +INSERT INTO entity_relations VALUES(1144,6,580,2,159,''); +INSERT INTO entity_relations VALUES(1145,6,438,2,159,''); +INSERT INTO entity_relations VALUES(1146,6,425,2,159,''); +INSERT INTO entity_relations VALUES(1147,6,418,2,159,''); +INSERT INTO entity_relations VALUES(1148,6,580,2,161,''); +INSERT INTO entity_relations VALUES(1149,6,580,2,162,''); +INSERT INTO entity_relations VALUES(1150,6,580,2,164,''); +INSERT INTO entity_relations VALUES(1151,6,445,2,166,''); +INSERT INTO entity_relations VALUES(1152,6,449,2,166,''); +INSERT INTO entity_relations VALUES(1153,6,576,2,166,''); +INSERT INTO entity_relations VALUES(1154,6,441,2,166,''); +INSERT INTO entity_relations VALUES(1155,6,438,2,166,''); +INSERT INTO entity_relations VALUES(1156,6,448,2,166,''); +INSERT INTO entity_relations VALUES(1157,6,580,2,166,''); +INSERT INTO entity_relations VALUES(1158,6,445,2,167,''); +INSERT INTO entity_relations VALUES(1159,6,449,2,167,''); +INSERT INTO entity_relations VALUES(1160,6,576,2,167,''); +INSERT INTO entity_relations VALUES(1161,6,448,2,167,''); +INSERT INTO entity_relations VALUES(1162,6,580,2,167,''); +INSERT INTO entity_relations VALUES(1163,6,580,2,174,''); +INSERT INTO entity_relations VALUES(1164,6,434,2,174,''); +INSERT INTO entity_relations VALUES(1165,6,435,2,174,''); +INSERT INTO entity_relations VALUES(1166,6,449,2,174,''); +INSERT INTO entity_relations VALUES(1167,6,445,2,174,''); +INSERT INTO entity_relations VALUES(1168,6,448,2,174,''); +INSERT INTO entity_relations VALUES(1169,6,434,2,175,''); +INSERT INTO entity_relations VALUES(1170,6,435,2,175,''); +INSERT INTO entity_relations VALUES(1171,6,445,2,176,''); +INSERT INTO entity_relations VALUES(1172,6,449,2,176,''); +INSERT INTO entity_relations VALUES(1173,6,434,2,176,''); +INSERT INTO entity_relations VALUES(1174,6,435,2,176,''); +INSERT INTO entity_relations VALUES(1175,6,448,2,176,''); +INSERT INTO entity_relations VALUES(1176,6,580,2,176,''); +INSERT INTO entity_relations VALUES(1177,6,434,2,177,''); +INSERT INTO entity_relations VALUES(1178,6,435,2,177,''); +INSERT INTO entity_relations VALUES(1179,6,580,2,177,''); +INSERT INTO entity_relations VALUES(1180,6,580,2,178,''); +INSERT INTO entity_relations VALUES(1181,6,438,2,178,''); +INSERT INTO entity_relations VALUES(1182,6,576,2,178,''); +INSERT INTO entity_relations VALUES(1183,6,445,2,178,''); +INSERT INTO entity_relations VALUES(1184,6,449,2,178,''); +INSERT INTO entity_relations VALUES(1185,6,448,2,178,''); +INSERT INTO entity_relations VALUES(1186,6,438,2,184,''); +INSERT INTO entity_relations VALUES(1187,6,580,2,184,''); +INSERT INTO entity_relations VALUES(1188,6,445,2,185,''); +INSERT INTO entity_relations VALUES(1189,6,434,2,185,''); +INSERT INTO entity_relations VALUES(1190,6,435,2,185,''); +INSERT INTO entity_relations VALUES(1191,6,437,2,185,''); +INSERT INTO entity_relations VALUES(1192,6,448,2,185,''); +INSERT INTO entity_relations VALUES(1193,6,580,2,185,''); +INSERT INTO entity_relations VALUES(1195,6,580,2,187,''); +INSERT INTO entity_relations VALUES(1196,6,580,2,214,''); +INSERT INTO entity_relations VALUES(1197,6,580,2,221,''); +INSERT INTO entity_relations VALUES(1198,6,580,2,222,''); +INSERT INTO entity_relations VALUES(1199,6,580,2,225,''); +INSERT INTO entity_relations VALUES(1200,6,442,2,225,''); +INSERT INTO entity_relations VALUES(1201,6,424,2,225,''); +INSERT INTO entity_relations VALUES(1202,6,441,2,225,''); +INSERT INTO entity_relations VALUES(1203,6,578,2,225,''); +INSERT INTO entity_relations VALUES(1205,6,580,2,230,''); +INSERT INTO entity_relations VALUES(1206,6,434,2,230,''); +INSERT INTO entity_relations VALUES(1207,6,435,2,230,''); +INSERT INTO entity_relations VALUES(1208,6,436,2,230,''); +INSERT INTO entity_relations VALUES(1209,6,438,2,230,''); +INSERT INTO entity_relations VALUES(1210,6,448,2,230,''); +INSERT INTO entity_relations VALUES(1211,6,580,2,231,''); +INSERT INTO entity_relations VALUES(1212,6,427,2,231,''); +INSERT INTO entity_relations VALUES(1213,6,434,2,231,''); +INSERT INTO entity_relations VALUES(1214,6,435,2,231,''); +INSERT INTO entity_relations VALUES(1215,6,436,2,231,''); +INSERT INTO entity_relations VALUES(1216,6,445,2,234,''); +INSERT INTO entity_relations VALUES(1217,6,437,2,234,''); +INSERT INTO entity_relations VALUES(1218,6,434,2,234,''); +INSERT INTO entity_relations VALUES(1219,6,435,2,234,''); +INSERT INTO entity_relations VALUES(1220,6,448,2,234,''); +INSERT INTO entity_relations VALUES(1221,6,580,2,234,''); +INSERT INTO entity_relations VALUES(1222,6,424,2,234,''); +INSERT INTO entity_relations VALUES(1223,6,580,2,238,''); +INSERT INTO entity_relations VALUES(1224,6,580,2,239,''); +INSERT INTO entity_relations VALUES(1225,6,580,2,240,''); +INSERT INTO entity_relations VALUES(1226,6,580,2,241,''); +INSERT INTO entity_relations VALUES(1227,6,580,2,242,''); +INSERT INTO entity_relations VALUES(1228,6,580,2,243,''); +INSERT INTO entity_relations VALUES(1229,6,580,2,247,''); +INSERT INTO entity_relations VALUES(1230,6,580,2,249,''); +INSERT INTO entity_relations VALUES(1231,6,434,2,249,''); +INSERT INTO entity_relations VALUES(1232,6,435,2,249,''); +INSERT INTO entity_relations VALUES(1233,6,427,2,249,''); +INSERT INTO entity_relations VALUES(1234,6,436,2,249,''); +INSERT INTO entity_relations VALUES(1235,6,432,2,249,''); +INSERT INTO entity_relations VALUES(1236,6,441,2,43,''); +INSERT INTO entity_relations VALUES(1237,6,576,2,224,''); +INSERT INTO entity_relations VALUES(1238,6,580,2,224,''); +INSERT INTO entity_relations VALUES(1239,6,576,8,289,''); +INSERT INTO entity_relations VALUES(1240,6,580,8,289,''); +INSERT INTO entity_relations VALUES(1241,6,578,8,289,''); +INSERT INTO entity_relations VALUES(1242,6,445,2,250,''); +INSERT INTO entity_relations VALUES(1243,6,424,2,250,''); +INSERT INTO entity_relations VALUES(1244,6,576,2,250,''); +INSERT INTO entity_relations VALUES(1245,6,445,2,251,''); +INSERT INTO entity_relations VALUES(1246,6,576,2,251,''); +INSERT INTO entity_relations VALUES(1247,6,580,2,252,''); +INSERT INTO entity_relations VALUES(1248,6,576,2,252,''); +INSERT INTO entity_relations VALUES(1249,6,580,2,253,''); +INSERT INTO entity_relations VALUES(1250,6,576,2,253,''); +INSERT INTO entity_relations VALUES(1251,6,580,2,254,''); +INSERT INTO entity_relations VALUES(1252,6,576,2,254,''); +INSERT INTO entity_relations VALUES(1253,6,580,2,255,''); +INSERT INTO entity_relations VALUES(1254,6,576,2,255,''); +INSERT INTO entity_relations VALUES(1255,6,580,2,256,''); +INSERT INTO entity_relations VALUES(1256,6,576,2,256,''); +INSERT INTO entity_relations VALUES(1257,6,580,2,257,''); +INSERT INTO entity_relations VALUES(1258,6,576,2,257,''); +INSERT INTO entity_relations VALUES(1259,6,580,2,258,''); +INSERT INTO entity_relations VALUES(1260,6,576,2,258,''); +INSERT INTO entity_relations VALUES(1261,6,576,2,322,''); +INSERT INTO entity_relations VALUES(1262,6,576,10,611,''); +INSERT INTO entity_relations VALUES(1263,6,576,2,612,''); +INSERT INTO entity_relations VALUES(1264,6,576,2,613,''); +INSERT INTO entity_relations VALUES(1265,6,576,2,614,''); +INSERT INTO entity_relations VALUES(1266,6,576,8,615,''); +INSERT INTO entity_relations VALUES(1267,6,576,10,616,''); +INSERT INTO entity_relations VALUES(1268,6,576,10,618,''); +INSERT INTO entity_relations VALUES(1269,6,576,2,619,''); +INSERT INTO entity_relations VALUES(1270,6,576,10,620,''); +INSERT INTO entity_relations VALUES(1271,6,576,2,621,''); +INSERT INTO entity_relations VALUES(1272,6,576,2,622,''); +INSERT INTO entity_relations VALUES(1273,6,576,2,623,''); +INSERT INTO entity_relations VALUES(1274,6,576,2,624,''); +INSERT INTO entity_relations VALUES(1275,6,576,2,625,''); +INSERT INTO entity_relations VALUES(1276,6,576,2,626,''); +INSERT INTO entity_relations VALUES(1277,6,576,2,627,''); +INSERT INTO entity_relations VALUES(1278,6,576,2,628,''); +INSERT INTO entity_relations VALUES(1279,6,576,2,629,''); +INSERT INTO entity_relations VALUES(1280,6,576,10,630,''); +INSERT INTO entity_relations VALUES(1281,6,576,2,631,''); +INSERT INTO entity_relations VALUES(1282,6,576,2,632,''); +INSERT INTO entity_relations VALUES(1283,6,576,10,633,''); +INSERT INTO entity_relations VALUES(1284,6,576,2,634,''); +INSERT INTO entity_relations VALUES(1285,6,576,10,635,''); +INSERT INTO entity_relations VALUES(1286,6,576,2,636,''); +INSERT INTO entity_relations VALUES(1287,6,576,2,637,''); +INSERT INTO entity_relations VALUES(1288,6,576,10,638,''); +INSERT INTO entity_relations VALUES(1289,6,576,10,639,''); +INSERT INTO entity_relations VALUES(1290,6,576,2,640,''); +INSERT INTO entity_relations VALUES(1291,6,576,2,641,''); +INSERT INTO entity_relations VALUES(1292,6,576,2,642,''); +INSERT INTO entity_relations VALUES(1293,6,576,2,643,''); +INSERT INTO entity_relations VALUES(1294,6,576,2,644,''); +INSERT INTO entity_relations VALUES(1295,6,576,2,645,''); +INSERT INTO entity_relations VALUES(1296,6,576,2,646,''); +INSERT INTO entity_relations VALUES(1297,6,576,2,647,''); +INSERT INTO entity_relations VALUES(1298,6,576,8,648,''); +INSERT INTO entity_relations VALUES(1299,6,576,2,649,''); +INSERT INTO entity_relations VALUES(1300,6,576,2,650,''); +INSERT INTO entity_relations VALUES(1301,6,576,2,651,''); +INSERT INTO entity_relations VALUES(1302,6,576,10,652,''); +INSERT INTO entity_relations VALUES(1303,6,580,9,660,''); +INSERT INTO entity_relations VALUES(1304,6,576,9,660,''); +INSERT INTO entity_relations VALUES(1305,6,438,9,660,''); +INSERT INTO entity_relations VALUES(1306,6,441,9,653,''); +INSERT INTO entity_relations VALUES(1307,6,437,9,653,''); +INSERT INTO entity_relations VALUES(1308,6,591,9,653,''); +INSERT INTO entity_relations VALUES(1309,6,580,9,654,''); +INSERT INTO entity_relations VALUES(1310,6,576,9,654,''); +INSERT INTO entity_relations VALUES(1311,6,578,9,654,''); +INSERT INTO entity_relations VALUES(1312,6,576,9,655,''); +INSERT INTO entity_relations VALUES(1313,6,576,2,656,''); +INSERT INTO entity_relations VALUES(1314,6,580,2,656,''); +INSERT INTO entity_relations VALUES(1315,6,578,2,656,''); +INSERT INTO entity_relations VALUES(1316,6,441,9,657,''); +INSERT INTO entity_relations VALUES(1317,6,576,2,5,''); +INSERT INTO entity_relations VALUES(1318,6,580,2,5,''); +INSERT INTO entity_relations VALUES(1319,6,578,2,5,''); +INSERT INTO entity_relations VALUES(1320,6,438,2,5,''); +INSERT INTO entity_relations VALUES(1321,6,593,9,659,''); +INSERT INTO entity_relations VALUES(1322,6,443,9,659,''); +INSERT INTO entity_relations VALUES(1323,6,580,9,659,''); +INSERT INTO entity_relations VALUES(1324,6,580,10,661,''); +INSERT INTO entity_relations VALUES(1325,6,443,9,662,''); +INSERT INTO entity_relations VALUES(1326,6,578,9,662,''); +INSERT INTO entity_relations VALUES(1327,6,593,9,662,''); +INSERT INTO entity_relations VALUES(1328,6,580,9,662,''); +INSERT INTO entity_relations VALUES(1329,6,580,9,663,''); +INSERT INTO entity_relations VALUES(1330,6,576,9,663,''); +INSERT INTO entity_relations VALUES(1331,6,580,9,664,''); +INSERT INTO entity_relations VALUES(1332,6,442,9,664,''); +INSERT INTO entity_relations VALUES(1333,6,578,9,664,''); +INSERT INTO entity_relations VALUES(1334,6,593,9,665,''); +INSERT INTO entity_relations VALUES(1335,6,580,9,665,''); +INSERT INTO entity_relations VALUES(1336,6,438,9,665,''); +INSERT INTO entity_relations VALUES(1337,6,578,9,665,''); +INSERT INTO entity_relations VALUES(1338,6,576,9,665,''); +INSERT INTO entity_relations VALUES(1339,6,576,2,666,''); +INSERT INTO entity_relations VALUES(1340,6,580,2,666,''); +INSERT INTO entity_relations VALUES(1341,6,578,2,666,''); +INSERT INTO entity_relations VALUES(1342,6,577,2,667,''); +INSERT INTO entity_relations VALUES(1343,6,577,2,668,''); +INSERT INTO entity_relations VALUES(1344,6,576,8,669,''); +INSERT INTO entity_relations VALUES(1345,6,580,8,669,''); +INSERT INTO entity_relations VALUES(1346,6,449,8,669,''); +INSERT INTO entity_relations VALUES(1347,6,576,8,670,''); +INSERT INTO entity_relations VALUES(1348,6,580,8,670,''); +INSERT INTO entity_relations VALUES(1349,6,449,8,670,''); +INSERT INTO entity_relations VALUES(1350,6,576,2,634,''); +INSERT INTO entity_relations VALUES(1351,6,576,4,672,''); +INSERT INTO entity_relations VALUES(1352,6,578,9,344,''); +INSERT INTO entity_relations VALUES(1353,6,580,9,344,''); +INSERT INTO entity_relations VALUES(1354,6,580,2,674,''); +INSERT INTO entity_relations VALUES(1355,6,576,2,674,''); +INSERT INTO entity_relations VALUES(1356,6,578,2,674,''); +INSERT INTO entity_relations VALUES(1357,6,580,2,675,''); +INSERT INTO entity_relations VALUES(1358,6,578,2,675,''); +INSERT INTO entity_relations VALUES(1359,6,576,2,676,''); +INSERT INTO entity_relations VALUES(1360,6,578,2,676,''); +INSERT INTO entity_relations VALUES(1361,6,578,2,677,''); +INSERT INTO entity_relations VALUES(1362,6,576,2,677,''); +INSERT INTO entity_relations VALUES(1363,6,580,2,677,''); +INSERT INTO entity_relations VALUES(1364,6,438,2,677,''); +INSERT INTO entity_relations VALUES(1365,6,576,2,678,''); +INSERT INTO entity_relations VALUES(1366,6,577,2,679,''); +INSERT INTO entity_relations VALUES(1367,6,577,9,689,''); +INSERT INTO entity_relations VALUES(1368,6,424,2,690,''); +INSERT INTO entity_relations VALUES(1369,6,424,2,691,''); +INSERT INTO entity_relations VALUES(1370,6,577,2,693,''); +INSERT INTO entity_relations VALUES(1371,6,576,2,695,''); +INSERT INTO entity_relations VALUES(1372,6,578,2,695,''); +INSERT INTO entity_relations VALUES(1373,6,580,2,695,''); +INSERT INTO entity_relations VALUES(1374,6,576,2,694,''); +INSERT INTO entity_relations VALUES(1375,6,578,2,694,''); +INSERT INTO entity_relations VALUES(1376,9,584,2,697,''); +INSERT INTO entity_relations VALUES(1377,6,576,2,697,''); +INSERT INTO entity_relations VALUES(1378,6,580,2,697,''); CREATE TABLE entity_types ( id integer PRIMARY KEY AUTOINCREMENT, entity_type_name text NOT NULL ); -INSERT INTO entity_types (id, entity_type_name) VALUES (1, 'Technology'); -INSERT INTO entity_types (id, entity_type_name) VALUES (2, 'App'); -INSERT INTO entity_types (id, entity_type_name) VALUES (3, 'VM'); -INSERT INTO entity_types (id, entity_type_name) VALUES (4, 'HW'); -INSERT INTO entity_types (id, entity_type_name) VALUES (5, 'Plugin'); -INSERT INTO entity_types (id, entity_type_name) VALUES (6, 'OS'); -INSERT INTO entity_types (id, entity_type_name) VALUES (7, 'Runlib'); -INSERT INTO entity_types (id, entity_type_name) VALUES (8, 'App Server'); -INSERT INTO entity_types (id, entity_type_name) VALUES (9, 'Lang'); -INSERT INTO entity_types (id, entity_type_name) VALUES (10, 'Runtime'); -INSERT INTO entity_types (id, entity_type_name) VALUES (11, 'Storage'); -INSERT INTO entity_types (id, entity_type_name) VALUES (12, 'Lib'); - --- Table: entity_versions -CREATE TABLE entity_versions ( - id integer PRIMARY KEY AUTOINCREMENT, - entity_id integer NOT NULL, - version text, - release_date date, - end_date date, - FOREIGN KEY (entity_id) REFERENCES entities (id) - ); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1, 497, '1', '01/15/2002', '07/14/2009'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2, 497, '1.1', '04/09/2003', '10/08/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3, 497, '2', '10/27/2005', '07/12/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (4, 497, '3', '11/06/2006', '07/12/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (5, 497, '3.5', '11/19/2007', '10/10/2028'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (6, 497, '4', '04/12/2010', '01/12/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (7, 497, '4.5', '08/15/2012', '01/12/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (8, 497, '4.5.1', '10/17/2013', '01/12/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (9, 497, '4.5.2', '05/05/2014', '04/26/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (10, 497, '4.6', '07/20/2015', '04/26/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (11, 497, '4.6.1', '11/30/2015', '04/26/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (12, 497, '4.6.2', '08/02/2016', '04/26/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (13, 497, '4.7', '04/05/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (14, 497, '4.7.1', '10/17/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (15, 497, '4.7.2', '04/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (16, 497, '4.8', '09/04/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (17, 498, ' ', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (18, 499, '1', '12/01/1996', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (19, 499, '2', '09/01/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (20, 499, '3', '11/01/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (21, 500, ' ', '01/01/1996', '08/31/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (22, 501, '6', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (23, 501, '7', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (24, 501, '8', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (25, 501, '9', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (26, 501, '10.0.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (27, 502, '5.6', '06/01/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (28, 502, '5.5', '12/01/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (29, 502, '5.4', '06/01/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (30, 502, '5.3', '12/01/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (31, 502, '5.2', '12/31/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (32, 502, '5.1', '12/31/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (33, 502, '4.2', '12/31/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (34, 502, '4.1', '12/31/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (35, 502, '3.2', '12/31/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (36, 502, '3.1', '12/31/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (37, 502, '2.2', '12/31/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (38, 502, '2.1', '12/31/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (39, 503, '20.10.8', '08/03/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (40, 503, '20.10.7', '06/02/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (41, 503, '20.10.6', '04/12/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (42, 503, '20.10.5', '03/02/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (43, 503, '20.10.4', '04/26/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (44, 503, '20.10.3', '02/01/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (45, 503, '20.10.2', '01/04/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (46, 503, '20.10.1', '12/14/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (47, 503, '20.10.0', '12/08/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (48, 504, '2', '12/31/1997', '12/31/1998'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (49, 504, '3', '12/31/1997', '12/31/1998'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (50, 504, '7.0.14.0', '12/31/1997', '12/31/2005'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (51, 504, '9.0.289.0', '12/31/1998', '12/31/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (52, 504, '10.3.183.90', '12/31/1999', '12/31/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (53, 504, '11.1.102.55', '12/31/1999', '12/31/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (54, 504, '32.0.0.465', '12/31/2001', '12/31/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (55, 504, '5.0.41.0', '12/31/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (56, 504, '32.0.0.465', '12/31/2014', '12/31/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (57, 504, '29.0.0.171', '12/31/2013', '12/31/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (58, 504, '22.0.0.209', '12/31/2009', '12/31/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (59, 504, '10.3.183.90', '12/31/2007', '12/31/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (60, 504, '10.1.102.64', '12/31/2005', '12/31/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (61, 504, '9.0.289.0', '12/31/2001', '12/31/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (62, 504, '7.0.14.0', '12/31/1997', '12/31/2005'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (63, 504, '3', '12/31/1997', '12/31/1998'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (64, 504, '4.0r12', '12/31/1999', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (65, 504, '32.0.0.465', '12/31/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (66, 504, '4.0r12', '12/31/1999', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (67, 504, '4.0r12', '12/31/2004', '12/31/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (68, 504, '11.2.202.223', '12/31/2004', '12/31/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (69, 504, '10.3.183.90', '12/31/2004', '12/31/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (70, 505, '1', '12/31/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (71, 505, '2.3', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (72, 506, 'JDK Beta', '01/01/1995', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (73, 506, '1.0', '01/01/1996', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (74, 506, '1.1', '02/01/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (75, 506, '1.2', '12/01/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (76, 506, '1.3', '05/01/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (77, 506, '1.4', '02/01/2002', '08/31/2008'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (78, 506, '5.0', '09/01/2004', '11/30/2009'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (79, 506, '6', '12/01/2006', '04/30/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (80, 506, '7', '07/01/2011', '04/30/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (81, 506, '8', '03/01/2014', '12/31/2026'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (82, 506, '9', '09/01/2017', '03/31/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (83, 506, '10', '03/01/2018', '09/30/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (84, 506, '11', '09/01/2018', '12/31/2026'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (85, 506, '12', '03/31/2019', '09/30/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (86, 506, '13', '09/01/2019', '03/31/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (87, 506, '14', '03/01/2020', '09/30/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (88, 506, '15', '09/01/2020', '03/31/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (89, 506, '16', '03/01/2021', '09/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (90, 506, '17', '09/30/2021', '12/31/2029'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (91, 506, '18', '03/01/2022', '09/30/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (92, 506, '19', '09/01/2022', '03/31/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (93, 506, '20', '03/01/2023', '09/30/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (94, 506, '21', '09/01/2023', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (95, 507, '0.10', '03/01/2013', '10/31/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (96, 507, '0.12', '02/06/2015', '12/31/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (97, 507, '4', '09/08/2015', '04/30/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (98, 507, '5', '10/29/2015', '06/30/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (99, 507, '6', '04/26/2016', '04/30/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (100, 507, '7', '10/25/2016', '06/30/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (101, 507, '8', '05/30/2017', '12/31/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (102, 507, '9', '10/01/2017', '06/30/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (103, 507, '10', '04/24/2018', '04/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (104, 507, '11', '10/23/2018', '06/01/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (105, 507, '12', '04/23/2019', '04/30/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (106, 507, '13', '10/22/2019', '06/01/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (107, 507, '14', '04/21/2020', '04/30/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (108, 507, '15', '10/20/2020', '06/01/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (109, 507, '16', '04/20/2021', '04/30/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (110, 507, '17', '10/19/2021', '06/01/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (111, 507, '18', '04/19/2022', '04/30/2025'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (112, 508, '1', '12/13/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (113, 508, '1.2', '01/19/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (114, 508, '2', '12/07/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (115, 508, '2.1', '06/01/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (116, 508, '2.2', '11/21/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (117, 508, '2.3', '03/16/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (118, 508, '3', '08/29/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (119, 508, '3.1', '08/31/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (120, 508, '3.2', '01/20/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (121, 508, '4', '06/25/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (122, 508, '4.1', '04/08/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (123, 508, '4.2', '12/19/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (124, 508, '5', '06/30/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (125, 508, '5.1', '05/10/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (126, 508, '5.2', '04/09/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (127, 508, '6', '08/16/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (128, 508, '6.1', '12/09/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (129, 508, '7', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (130, 509, '53.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (131, 263, '1', '12/16/2001', '12/30/2001'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (132, 264, '1.1', '03/10/2002', '01/29/2006'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (133, 264, '1.2', '11/09/2003', '08/06/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (134, 264, '1.3', '06/29/2006', '03/14/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (135, 264, '1.4', '02/26/2010', '02/08/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (136, 264, '1.5', '06/19/2014', '01/10/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (137, 264, '1.6', '10/13/2015', '12/31/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (138, 264, '1.7', '11/25/2016', '12/31/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (139, 264, '1.8', '11/26/2017', '12/31/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (140, 264, '1.9', '12/19/2018', '06/30/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (141, 264, '2', '06/16/2019', '06/30/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (142, 264, '2.1', '11/25/2019', '03/31/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (143, 264, '2.2', '07/07/2020', '06/30/2025'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (144, 264, '2.3', '11/05/2020', '03/31/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (145, 264, '2.4', '05/14/2021', '06/30/2026'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (146, 264, '2.5', '11/01/2021', '03/31/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (147, 259, '1.3', '06/06/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (148, 259, '2', '04/06/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (149, 259, '2.2', '12/01/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (150, 259, '2.4', '02/21/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (151, 266, '1', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (152, 266, '2', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (153, 266, '3', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (154, 266, '4', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (155, 266, '5', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (156, 266, '5.1', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (157, 266, '6', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (158, 266, '7', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (159, 266, '7.5', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (160, 266, '8', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (161, 266, '8.5', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (162, 266, '10', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (163, 274, ' ', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (164, 260, '3.3', '03/09/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (165, 260, '4.1', '06/25/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (166, 260, '5.5', '10/10/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (167, 260, '6.0', '04/07/2017', '12/31/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (168, 260, '7.0', '04/26/2021', '03/31/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (169, 260, '8.0', '07/05/2018', '06/30/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (170, 260, '8.5', '09/13/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (171, 260, '9.0', '09/10/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (172, 260, '10.0', '09/10/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (173, 260, '10.1', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (174, 285, '8.5', '06/15/2012', '06/24/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (175, 280, '0.5', '10/07/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (176, 280, '0.6', '02/07/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (177, 280, '0.7', '07/16/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (178, 280, '0.8', '12/19/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (179, 280, '0.9', '07/23/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (180, 280, '1.0', '08/05/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (181, 280, '1.1', '11/26/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (182, 280, '1.2', '04/17/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (183, 280, '1.3', '04/17/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (184, 280, '1.4', '07/15/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (185, 280, '1.5', '11/09/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (186, 280, '1.6', '11/07/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (187, 280, '2.0', '11/14/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (188, 280, '2.1', '06/26/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (189, 280, '2.2', '01/11/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (190, 280, '2.3', '09/09/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (191, 280, '2.4', '05/17/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (192, 280, '3.0', '01/06/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (193, 280, '3.1', '01/06/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (194, 278, '3.1', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (195, 278, '4.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (196, 265, '6.0.1', '04/15/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (197, 265, '6.0.2', '07/29/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (198, 265, '6.1.0', '07/21/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (199, 265, '7.0.0', '03/15/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (200, 265, '8.0.0', '06/17/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (201, 265, '8.5.0', '06/15/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (202, 265, '9.0.0', '03/11/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (203, 269, '2.6', '02/09/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (204, 269, '2.9.1', '04/11/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (205, 286, '4.1', '12/31/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (206, 286, '5', '07/01/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (207, 286, '6', '04/01/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (208, 286, '6.1', '03/01/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (209, 286, '6.1.5', '11/01/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (210, 286, '7', '09/01/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (211, 286, '8', '05/01/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (212, 286, '8.5', '06/01/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (213, 286, '9', '12/01/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (214, 286, '9.5', '07/01/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (215, 284, '9', '03/26/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (216, 284, '8.5.5', '02/15/2021', '06/24/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (217, 284, '8.5', '06/15/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (218, 284, '8', '06/17/2011', '04/30/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (219, 284, '7', '08/17/2008', '04/30/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (220, 284, '6.1', '06/30/2006', '09/30/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (221, 284, '6', '12/31/2004', '09/30/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (222, 284, '5.1', '01/16/2004', '09/30/2008'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (223, 284, '5', '01/03/2003', '09/30/2006'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (224, 284, '4', '08/15/2001', '04/30/2005'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (225, 284, '3.5', '08/31/2000', '11/30/2003'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (226, 267, '7.1.1', '03/09/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (227, 267, '7.1.0', '02/16/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (228, 267, '7.0.2', '09/22/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (229, 267, '7.0.1', '08/17/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (230, 267, '7.0.0', '07/12/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (231, 267, '6.1.0', '08/16/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (232, 267, '6.0.0', '12/22/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (233, 267, '5.1.0', '05/23/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (234, 267, '5.0.0', '12/05/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (235, 267, '4.2.3', '07/18/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (236, 267, '4.2.2', '10/22/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (237, 267, '4.2.1', '07/16/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (238, 267, '4.2.0', '05/11/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (239, 267, '4.0.5', '10/18/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (240, 267, '4.0.4', '05/15/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (241, 267, '4.0.3', '10/24/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (242, 267, '4.0.2', '05/02/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (243, 267, '4.0.1', '02/16/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (244, 267, '4.0.0', '09/20/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (245, 267, '3.2.8', '03/02/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (246, 267, '3.2.7', '01/28/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (247, 267, '3.2.6', '10/14/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (248, 267, '3.2.5', '06/25/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (249, 267, '3.2.4', '06/04/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (250, 267, '3.2.3', '11/30/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (251, 267, '3.2.2', '10/18/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (252, 267, '3.2.1', '06/02/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (253, 267, '3.0.8', '06/06/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (254, 267, '3.0.7', '04/08/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (255, 267, '3.0.6', '01/26/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (256, 267, '3.0.5', '01/13/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (257, 267, '3.0.4', '11/02/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (258, 267, '3.0.3', '09/29/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (259, 267, '3.0.2', '08/26/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (260, 267, '3.0.1', '08/05/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (261, 267, '3.0.0', '05/29/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (262, 493, ' ', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (263, 271, '4.5', '01/29/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (264, 271, '5', '04/07/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (265, 137, '2', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (266, 137, '2.3', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (267, 137, '3', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (268, 137, '4', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (269, 137, '4.5', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (270, 137, '5', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (271, 137, '6', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (272, 137, '6i', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (273, 137, '9i', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (274, 137, '10g', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (275, 137, '10gR2', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (276, 137, '11g', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (277, 137, '11gR2', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (278, 137, '12c', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (279, 46, '3', '06/21/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (280, 46, '3.1', '06/28/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (281, 46, '3.2', '06/30/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (282, 46, '3.3', '06/29/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (283, 46, '3.4', '06/25/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (284, 46, '3.5', '06/24/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (285, 46, '3.6', '06/23/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (286, 46, '3.7', '06/22/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (287, 46, '3.8', '06/27/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (288, 46, '4.2', '06/27/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (289, 46, '4.3', '06/26/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (290, 46, '4.4', '06/25/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (291, 46, '4.5', '06/24/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (292, 46, '4.6', '06/22/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (293, 46, '4.7', '06/28/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (294, 46, '4.8', '06/27/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (295, 46, '4.9', '09/19/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (296, 46, '4.1', '12/19/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (297, 46, '4.11', '03/20/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (298, 46, '4.12', '06/19/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (299, 46, '4.13', '09/18/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (300, 46, '4.14', '12/18/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (301, 46, '4.15', '03/18/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (302, 46, '4.16', '06/17/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (303, 46, '4.17', '09/16/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (304, 46, '4.18', '12/16/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (305, 46, '4.19', '03/17/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (306, 46, '4.2', '06/16/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (307, 46, '4.21', '09/15/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (308, 46, '4.22', '12/08/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (309, 176, '7.6', '12/31/2006', '12/31/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (310, 176, '7.7', '12/31/2008', '12/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (311, 176, '7.8', '12/31/2010', '12/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (312, 176, '7.9', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (313, 70, '7.6.1.2', '07/24/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (314, 70, '7.6.0.10', '12/14/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (315, 70, '7.5.0.11', '10/28/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (316, 70, '7.1.1.13', '06/27/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (317, 70, '6.2.8', '06/10/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (318, 70, '6.1', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (319, 70, '5.2.9.1', '07/03/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (320, 70, '4.1.1 ', '06/28/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (321, 135, ' ', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (322, 141, ' ', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (323, 134, '2.3', '12/31/1979', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (324, 134, '3.1.3', '12/31/1983', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (325, 134, '4.1.4.0', '12/31/1984', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (326, 134, '5.0.22', '12/31/1985', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (327, 134, '6.0.17', '12/31/1988', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (328, 134, '6.2.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (329, 134, '7.0.12', '06/30/1992', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (330, 134, '7.1.0', '05/31/1994', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (331, 134, '7.2.0', '05/31/1995', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (332, 134, '7.3.0', '02/28/1996', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (333, 134, '8.0.3', '06/30/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (334, 134, '8.1.5.0', '12/31/1998', '08/31/2000'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (335, 134, '9.0.1.0', '12/31/2001', '12/31/2003'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (336, 134, '9.2.0.1', '12/31/2002', '04/30/2007'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (337, 134, '10.1.0.2', '12/31/2003', '02/28/2006'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (338, 134, '10.2.0.1', '07/31/2005', '04/30/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (339, 134, '11.1.0.6', '09/30/2007', '09/30/2008'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (340, 134, '11.2.0.1', '09/30/2009', '08/31/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (341, 134, '12.1.0.1', '07/31/2013', '07/31/2014'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (342, 134, '12.2.0.1', '09/30/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (343, 134, '12.2.0.2', '02/28/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (344, 134, '12.2.0.3', '02/28/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (345, 134, '21.1', '12/31/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (346, 182, '1', '12/31/1993', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (347, 182, '2', '12/31/1995', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (348, 182, '3', '12/31/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (349, 182, '98', '12/31/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (350, 182, '99', '12/31/1999', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (351, 182, '6', '12/31/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (352, 182, '7', '12/31/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (353, 182, '7.5', '12/31/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (354, 182, '7.7', '12/31/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (355, 182, '7.8', '12/31/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (356, 182, '8', '12/31/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (357, 182, '8.1', '12/31/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (358, 182, '8.2', '12/31/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (359, 182, '15', '05/11/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (360, 182, '16', '04/29/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (361, 182, '17', '07/31/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (362, 182, '18', '01/23/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (363, 182, '19', '01/21/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (364, 182, '20', '01/21/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (365, 126, '1', '08/31/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (366, 126, '1.1', '12/31/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (367, 126, '1.2', '02/28/1999', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (368, 126, '2', '08/31/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (369, 126, '2.1', '06/30/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (370, 126, '2.2', '12/31/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (371, 126, '2.3', '06/30/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (372, 126, '2.4', '10/31/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (373, 126, '2.5', '04/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (374, 77, '1.1', '08/31/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (375, 77, '2.1', '04/30/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (376, 77, '2.2', '05/31/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (377, 77, '3.1', '07/12/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (378, 77, '3.2', '12/31/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (379, 77, '4.1', '01/31/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (380, 77, '4.2', '02/28/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (381, 77, '5.1', '01/31/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (382, 77, '6.1', '10/31/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (383, 77, '6.2', '04/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (384, 77, '6.3', '08/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (385, 23, '10.7', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (386, 45, '8.3', '04/05/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (387, 45, '8.2', '10/05/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (388, 45, '8.1', '04/20/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (389, 45, '8', '11/19/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (390, 45, '7', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (391, 45, '6', '02/13/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (392, 45, '5', '01/15/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (393, 45, '4', '06/15/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (394, 45, '3', '09/15/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (395, 45, '2', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (396, 45, '1', '01/15/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (397, 220, '4.4', '12/31/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (398, 220, '4.5.1', '09/30/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (399, 220, '4.6', '07/31/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (400, 220, '5', '12/31/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (401, 220, '5.1', '06/30/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (402, 90, '2.285', '03/23/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (403, 90, '2.286', '03/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (404, 90, '2.287', '04/07/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (405, 90, '2.288', '04/11/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (406, 90, '2.289', '04/20/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (407, 90, '2.29', '04/28/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (408, 90, '2.291', '05/04/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (409, 90, '2.292', '05/11/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (410, 90, '2.293', '05/12/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (411, 90, '2.294', '05/25/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (412, 90, '2.295', '05/25/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (413, 90, '2.296', '06/01/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (414, 90, '2.297', '06/08/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (415, 90, '2.298', '06/15/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (416, 90, '2.299', '06/22/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (417, 90, '2.3', '06/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (418, 90, '2.301', '07/06/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (419, 90, '2.302', '07/13/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (420, 90, '2.303', '07/20/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (421, 90, '2.304', '07/27/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (422, 90, '2.305', '08/03/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (423, 90, '2.306', '08/10/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (424, 90, '2.307', '08/17/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (425, 90, '2.308', '08/24/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (426, 90, '2.309', '08/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (427, 90, '2.31', '09/07/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (428, 90, '2.311', '09/09/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (429, 90, '2.312', '09/14/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (430, 90, '2.313', '09/21/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (431, 90, '2.314', '09/28/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (432, 97, '10', '05/31/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (433, 97, '9', '12/31/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (434, 97, '8', '12/31/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (435, 97, '7', '12/31/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (436, 97, '6', '12/31/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (437, 97, '5', '12/31/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (438, 97, '4.2', '12/31/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (439, 97, '4.1', '12/31/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (440, 97, '4', '12/31/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (441, 97, '3.2', '12/31/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (442, 97, '3.1', '12/31/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (443, 97, '3', '12/31/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (444, 97, '2', '12/31/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (445, 97, '1', '12/31/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (446, 98, '1.6.12', '09/28/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (447, 98, '1.6.11', '09/27/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (448, 98, '1.6.10', '07/25/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (449, 98, '1.6.9', '11/20/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (450, 98, '1.6.8', '10/26/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (451, 98, '1.6.7', '09/04/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (452, 98, '1.6.6', '05/12/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (453, 98, '1.6.5', '04/13/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (454, 98, '1.6.4', '04/12/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (455, 98, '1.6.3', '03/28/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (456, 98, '1.6.2', '03/23/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (457, 98, '1.6.1', '03/16/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (458, 98, '1.6.0', '03/08/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (459, 98, '1.5.22', '02/28/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (460, 98, '1.5.21', '01/21/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (461, 98, '1.5.20', '11/11/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (462, 98, '1.5.19', '09/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (463, 98, '1.5.18', '09/17/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (464, 98, '1.5.17', '08/29/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (465, 98, '1.5.16', '05/24/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (466, 98, '1.5.15', '05/20/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (467, 98, '1.5.14', '04/27/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (468, 98, '1.5.13', '04/15/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (469, 98, '1.5.12', '11/03/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (470, 98, '1.5.11', '10/10/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (471, 98, '1.5.10', '08/10/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (472, 98, '1.5.9', '07/07/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (473, 98, '1.5.8', '05/25/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (474, 98, '1.5.7', '03/28/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (475, 98, '1.5.6', '02/27/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (476, 98, '1.5.5', '02/12/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (477, 98, '1.5.4', '12/20/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (478, 98, '1.5.3', '11/04/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (479, 98, '1.5.2', '09/30/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (480, 98, '1.5.1', '08/24/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (481, 98, '1.5.0', '07/21/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (482, 98, '1.4.39', '07/04/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (483, 98, '1.4.38', '06/24/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (484, 98, '1.4.37', '06/04/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (485, 98, '1.4.36', '03/19/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (486, 98, '1.4.35', '02/26/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (487, 98, '1.4.34', '01/07/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (488, 98, '1.4.33', '10/31/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (489, 98, '1.4.32', '10/12/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (490, 98, '1.4.31', '08/19/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (491, 98, '1.4.30', '08/11/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (492, 98, '1.4.29', '07/13/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (493, 98, '1.4.28', '07/01/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (494, 98, '1.4.27', '06/24/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (495, 98, '1.4.26', '06/17/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (496, 98, '1.4.25', '11/19/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (497, 98, '1.4.24', '04/24/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (498, 98, '1.4.23', '04/19/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (499, 98, '1.4.22', '12/31/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (500, 98, '1.4.21', '10/12/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (501, 98, '1.4.20', '05/11/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (502, 98, '1.4.19', '05/01/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (503, 98, '1.4.18', '04/17/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (504, 98, '1.4.17', '12/20/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (505, 98, '1.4.16', '12/09/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (506, 98, '1.4.15', '09/03/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (507, 98, '1.4.14', '07/30/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (508, 98, '1.4.13', '02/02/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (509, 98, '1.4.12', '02/01/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (510, 98, '1.4.11', '01/16/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (511, 98, '1.4.10', '11/09/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (512, 98, '1.4.9', '10/18/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (513, 98, '1.4.8', '10/04/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (514, 98, '1.4.7', '08/16/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (515, 98, '1.4.6', '07/15/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (516, 98, '1.4.5', '04/03/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (517, 98, '1.4.4', '11/26/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (518, 98, '1.4.3', '11/07/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (519, 98, '1.4.2', '10/11/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (520, 98, '1.4.1', '08/29/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (521, 98, '1.4.0', '07/09/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (522, 120, '1', '12/31/1989', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (523, 120, '1.1', '12/31/1990', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (524, 120, '4.2A', '12/31/1992', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (525, 120, '4.2B', '12/31/1993', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (526, 120, '4.21', '12/31/1993', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (527, 120, '6', '12/31/1995', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (528, 120, '6.5', '12/31/1996', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (529, 120, '7', '12/31/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (530, 120, '8', '12/31/2000', '04/08/2008'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (531, 120, '9', '01/14/2006', '04/12/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (532, 120, '10', '11/06/2008', '07/08/2014'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (533, 120, '10.25', '07/02/1905', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (534, 120, '10.5', '07/20/2010', '07/08/2014'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (535, 120, '11', '05/20/2012', '07/11/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (536, 120, '12', '06/05/2014', '07/09/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (537, 120, '13', '06/01/2016', '07/13/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (538, 120, '14', '09/29/2017', '10/11/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (539, 120, '15', '11/04/2019', '01/07/2025'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (540, 116, '4.4', '12/31/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (541, 116, '4.2', '12/31/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (542, 116, '4', '12/31/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (543, 116, '3.6', '12/31/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (544, 116, '3.4', '12/31/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (545, 116, '3.2', '12/31/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (546, 116, '3', '12/31/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (547, 116, '2.6', '12/31/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (548, 122, '3.19', '12/31/1996', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (549, 122, '3.2', '01/31/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (550, 122, '3.21', '12/31/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (551, 122, '3.22', '12/31/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (552, 122, '3.23', '06/30/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (553, 122, '4', '08/30/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (554, 122, '4.1', '06/30/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (555, 122, '5', '03/31/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (556, 122, '5.1', '11/27/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (557, 122, '5.5', '12/31/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (558, 122, '6', '05/22/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (559, 122, '5.6', '02/28/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (560, 122, '5.7', '10/31/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (561, 122, '8', '04/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (562, 123, '4.3.5', '09/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (563, 123, '4.3.4', '09/22/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (564, 123, '4.3.3', '08/09/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (565, 123, '4.3.2', '07/01/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (566, 123, '4.3.1', '06/21/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (567, 123, '4.2.11', '09/06/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (568, 123, '4.2.10', '08/23/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (569, 123, '4.2.9', '07/02/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (570, 123, '4.2.8', '06/18/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (571, 123, '4.2.7', '05/27/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (572, 123, '4.2.6', '05/05/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (573, 245, '0.7', '05/27/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (574, 245, '1', '01/03/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (575, 245, '1.2', '05/22/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (576, 245, '1.5', '02/17/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (577, 245, '2', '12/31/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (578, 245, '2.1', '01/22/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (579, 245, '2.2', '05/16/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (580, 245, '2.3', '09/24/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (581, 245, '2.5', '03/29/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (582, 245, '2.6', '07/15/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (583, 245, '2.7', '12/11/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (584, 245, '2.8', '06/10/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (585, 245, '2.9', '12/19/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (586, 245, '3', '06/17/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (587, 245, '3.1', '02/23/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (588, 245, '3.2', '07/04/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (589, 245, '3.3', '12/12/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (590, 245, '3.4', '06/13/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (591, 245, '3.5', '12/11/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (592, 245, '3.6', '08/01/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (593, 245, '3.7', '10/24/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (594, 245, '3.8', '12/12/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (595, 245, '3.9', '04/16/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (596, 245, '4', '09/04/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (597, 245, '4.1', '12/18/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (598, 245, '4.2', '04/23/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (599, 245, '4.3', '08/18/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (600, 245, '4.4', '12/08/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (601, 245, '4.5', '04/12/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (602, 245, '4.6', '08/16/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (603, 245, '4.7', '12/06/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (604, 245, '4.8', '06/08/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (605, 245, '4.9', '11/16/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (606, 245, '5', '12/06/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (607, 245, '5.1', '02/21/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (608, 245, '5.2', '05/07/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (609, 245, '5.3', '11/12/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (610, 245, '5.4', '03/31/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (611, 245, '5.5', '08/11/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (612, 245, '5.6', '12/08/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (613, 245, '5.7', '03/09/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (614, 245, '5.8', '07/20/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (615, 258, '3.37.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (616, 258, '3.36.0', '06/18/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (617, 258, '3.35.5', '04/19/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (618, 258, '3.35.4', '04/02/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (619, 258, '3.35.3', '03/26/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (620, 258, '3.35.2', '03/17/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (621, 258, '3.35.1', '03/15/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (622, 258, '3.35.0', '03/12/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (623, 258, '3.34.1', '01/20/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (624, 258, '3.34.0', '12/01/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (625, 258, '3.33.0', '08/14/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (626, 258, '3.32.3', '06/18/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (627, 258, '3.32.2', '06/04/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (628, 258, '3.32.1', '05/25/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (629, 258, '3.32.0', '05/22/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (630, 258, '3.31.1', '01/27/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (631, 258, '3.31.0', '01/22/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (632, 258, '3.30.1', '10/10/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (633, 258, '3.30.0', '10/04/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (634, 258, '3.29.0', '07/10/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (635, 258, '3.28.0', '04/16/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (636, 258, '3.27.2', '02/25/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (637, 258, '3.27.1', '02/08/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (638, 258, '3.27.0', '02/07/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (639, 258, '3.26.0', '12/01/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (640, 258, '3.25.3', '11/05/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (641, 258, '3.25.2', '09/25/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (642, 258, '3.25.1', '09/18/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (643, 258, '3.25.0', '09/15/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (644, 258, '3.24.0', '06/04/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (645, 258, '3.23.1', '04/10/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (646, 258, '3.23.0', '04/02/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (647, 258, '3.22.0', '01/22/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (648, 258, '3.21.0', '10/24/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (649, 258, '3.20.1', '08/24/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (650, 258, '3.20.0', '08/01/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (651, 258, '3.18.2', '06/17/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (652, 258, '3.18.1', '06/16/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (653, 258, '3.19.3', '06/08/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (654, 258, '3.19.2', '05/25/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (655, 258, '3.19.1', '05/24/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (656, 258, '3.19.0', '05/22/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (657, 258, '3.18.0', '03/28/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (658, 258, '3.17.0', '02/13/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (659, 258, '3.16.2', '01/06/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (660, 258, '3.16.1', '01/03/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (661, 258, '3.16.0', '01/02/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (662, 258, '3.15.2', '11/28/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (663, 258, '3.15.1', '11/04/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (664, 258, '3.15.0', '10/14/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (665, 258, '3.14.2', '09/12/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (666, 258, '3.14.1', '08/11/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (667, 258, '3.14', '08/08/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (668, 258, '3.13.0', '05/18/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (669, 258, '3.12.2', '04/18/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (670, 258, '3.12.1', '04/08/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (671, 258, '3.9.3', '03/31/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (672, 258, '3.12.0', '03/29/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (673, 258, '3.11.1', '03/03/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (674, 258, '3.11.0', '02/15/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (675, 258, '3.10.2', '01/20/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (676, 258, '3.10.1', '01/14/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (677, 258, '3.10.0', '01/06/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (678, 258, '3.9.2', '11/02/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (679, 258, '3.9.1', '10/16/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (680, 258, '3.9.0', '10/14/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (681, 258, '3.8.11.1', '07/29/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (682, 258, '3.8.11', '07/27/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (683, 258, '3.8.10.2', '05/20/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (684, 258, '3.8.10.1', '05/09/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (685, 258, '3.8.10', '05/07/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (686, 258, '3.8.9', '04/08/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (687, 258, '3.8.8.3', '02/25/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (688, 258, '3.8.8.2', '01/30/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (689, 258, '3.8.8.1', '01/20/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (690, 258, '3.8.8', '01/16/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (691, 258, '3.8.7.4', '12/09/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (692, 258, '3.8.7.3', '12/05/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (693, 258, '3.8.7.2', '11/18/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (694, 258, '3.8.7.1', '10/29/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (695, 258, '3.8.6.1', '10/22/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (696, 258, '3.8.7', '10/17/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (697, 258, '3.8.6', '08/15/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (698, 258, '3.8.5', '06/04/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (699, 258, '3.8.4.3', '04/03/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (700, 258, '3.8.4.2', '03/26/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (701, 258, '3.8.4.1', '03/11/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (702, 258, '3.8.4', '03/10/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (703, 258, '3.8.3.1', '02/11/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (704, 258, '3.8.3', '02/03/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (705, 258, '3.8.2', '12/06/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (706, 258, '3.8.1', '10/17/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (707, 258, '3.8.0.2', '09/03/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (708, 258, '3.8.0.1', '08/29/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (709, 258, '3.8.0', '08/26/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (710, 258, '3.7.17', '05/20/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (711, 258, '3.7.16.2', '04/12/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (712, 258, '3.7.16.1', '03/29/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (713, 258, '3.7.16', '03/18/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (714, 258, '3.7.15.2', '01/09/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (715, 258, '3.7.15.1', '12/19/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (716, 258, '3.7.15', '12/12/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (717, 258, '3.7.14.1', '10/04/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (718, 258, '3.7.14', '09/03/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (719, 258, '3.7.13', '06/11/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (720, 258, '3.7.12.1', '05/22/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (721, 258, '3.7.12', '05/14/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (722, 258, '3.7.12', '05/14/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (723, 258, '3.7.12', '05/14/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (724, 258, '3.7.11', '03/20/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (725, 258, '3.7.10', '01/16/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (726, 258, '3.7.9', '11/01/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (727, 258, '3.7.8', '09/19/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (728, 258, '3.7.7.1', '06/28/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (729, 258, '3.7.7', '06/23/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (730, 258, '3.7.6.3', '05/19/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (731, 258, '3.7.6.2', '04/17/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (732, 258, '3.7.6.1', '04/13/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (733, 258, '3.7.6', '04/12/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (734, 258, '3.7.5', '02/01/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (735, 258, '3.7.4', '12/07/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (736, 258, '3.7.3', '10/08/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (737, 258, '3.7.2', '08/24/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (738, 258, '3.7.1', '08/23/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (739, 258, '3.7.0.1', '08/04/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (740, 258, '3.7.0', '07/21/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (741, 258, '3.6.23.1', '03/26/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (742, 258, '3.6.23', '03/09/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (743, 258, '3.6.22', '01/06/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (744, 258, '3.6.21', '12/07/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (745, 258, '3.6.20', '11/04/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (746, 258, '3.6.16.1', '10/30/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (747, 258, '3.6.19', '10/14/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (748, 258, '3.6.18', '09/11/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (749, 258, '3.6.17', '08/10/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (750, 258, '3.6.16', '06/27/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (751, 258, '3.6.15', '06/15/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (752, 258, '3.6.14.2', '05/25/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (753, 258, '3.6.14.1', '05/19/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (754, 258, '3.6.14', '05/07/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (755, 258, '3.6.13', '04/13/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (756, 258, '3.6.12', '03/31/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (757, 258, '3.6.11', '02/18/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (758, 258, '3.6.10', '01/15/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (759, 258, '3.6.9', '01/14/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (760, 258, '3.6.8', '01/12/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (761, 258, '3.6.7', '12/16/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (762, 258, '3.6.6.2', '11/26/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (763, 258, '3.6.6.1', '11/22/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (764, 258, '3.6.6', '11/19/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (765, 258, '3.6.5', '11/12/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (766, 258, '3.6.4', '10/15/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (767, 258, '3.6.3', '09/22/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (768, 258, '3.6.2', '08/30/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (769, 258, '3.6.1', '08/06/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (770, 258, '3.6.0', '07/16/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (771, 258, '3.5.9', '05/14/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (772, 258, '3.5.8', '04/16/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (773, 258, '3.5.7', '03/17/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (774, 258, '3.5.6', '02/06/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (775, 258, '3.5.5', '01/31/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (776, 258, '3.5.4', '12/14/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (777, 258, '3.5.3', '11/27/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (778, 258, '3.5.2', '11/05/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (779, 258, '3.5.1', '10/04/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (780, 258, '3.5.0', '09/04/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (781, 258, '3.4.2', '08/13/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (782, 258, '3.4.1', '07/20/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (783, 258, '3.4.0', '06/18/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (784, 258, '3.3.17', '04/25/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (785, 258, '3.3.16', '04/18/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (786, 258, '3.3.15', '04/09/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (787, 258, '3.3.14', '04/02/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (788, 258, '3.3.13', '02/13/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (789, 258, '3.3.12', '01/27/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (790, 258, '3.3.11', '01/22/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (791, 258, '3.3.10', '01/10/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (792, 258, '3.3.9', '01/04/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (793, 258, '3.3.8', '10/09/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (794, 258, '3.3.7', '08/12/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (795, 258, '3.3.6', '06/06/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (796, 258, '3.3.5', '04/05/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (797, 258, '3.3.4', '02/11/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (798, 258, '3.3.3', '01/31/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (799, 258, '3.3.2', '01/24/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (800, 258, '3.3.1', '01/16/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (801, 258, '3.3.0', '01/11/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (802, 258, '2.8.17', '12/19/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (803, 258, '3.2.8', '12/19/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (804, 258, '3.2.7', '09/24/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (805, 258, '3.2.6', '09/17/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (806, 258, '3.2.5', '08/27/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (807, 258, '3.2.4', '08/24/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (808, 258, '3.2.3', '08/21/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (809, 258, '3.2.2', '06/12/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (810, 258, '3.2.1', '03/29/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (811, 258, '3.2.0', '03/21/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (812, 258, '3.1.6', '03/17/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (813, 258, '3.1.5', '03/11/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (814, 258, '3.1.4', '03/11/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (815, 258, '3.1.3.1', '02/28/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (816, 258, '3.1.3', '02/20/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (817, 258, '3.1.2', '02/15/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (818, 258, '2.8.16', '02/15/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (819, 258, '3.1.1', '02/01/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (820, 258, '3.1.0', '01/21/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (821, 258, '3.0.8', '10/12/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (822, 258, '3.0.7', '09/18/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (823, 258, '3.0.6', '09/02/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (824, 258, '3.0.5', '08/29/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (825, 258, '3.0.4', '08/09/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (826, 258, '3.0.3', '07/22/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (827, 258, '2.8.15', '07/22/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (828, 258, '3.0.2', '06/30/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (829, 258, '3.0.1', '06/22/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (830, 258, '3.0.0', '06/18/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (831, 258, '2.8.14', '06/09/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (832, 258, '2.8.13', '03/08/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (833, 258, '2.8.12', '02/08/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (834, 258, '2.8.11', '01/14/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (835, 258, '2.8.10', '01/14/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (836, 258, '2.8.9', '01/06/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (837, 258, '2.8.8', '12/18/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (838, 258, '2.8.7', '12/04/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (839, 258, '2.8.6', '08/22/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (840, 258, '2.8.5', '07/22/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (841, 258, '2.8.4', '06/29/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (842, 258, '2.8.3', '06/04/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (843, 258, '2.8.2', '05/17/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (844, 258, '2.8.1', '05/17/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (845, 258, '2.8.0', '02/16/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (846, 258, '2.7.6', '01/25/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (847, 258, '2.7.5', '12/28/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (848, 258, '2.7.4', '12/17/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (849, 258, '2.7.3', '10/31/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (850, 258, '2.7.2', '09/25/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (851, 258, '2.7.1', '08/31/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (852, 258, '2.7.0', '08/25/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (853, 258, '2.6.3', '08/13/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (854, 258, '2.6.2', '07/31/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (855, 258, '2.6.1', '07/19/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (856, 258, '2.6.0', '07/18/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (857, 258, '2.5.6', '07/07/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (858, 258, '2.5.5', '07/06/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (859, 258, '2.5.4', '07/01/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (860, 258, '2.5.3', '06/25/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (861, 258, '2.5.2', '06/25/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (862, 258, '2.5.1', '06/19/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (863, 258, '2.5.0', '06/17/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (864, 258, '2.4.12', '05/10/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (865, 258, '2.4.11', '05/08/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (866, 258, '2.4.10', '05/03/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (867, 258, '2.4.9', '04/22/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (868, 258, '2.4.8', '04/20/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (869, 258, '2.4.7', '04/12/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (870, 258, '2.4.6', '04/02/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (871, 258, '2.4.5', '04/02/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (872, 258, '2.4.4', '03/30/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (873, 258, '2.4.3', '03/23/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (874, 258, '2.4.2', '03/20/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (875, 258, '2.4.1', '03/13/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (876, 258, '2.4.1', '03/13/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (877, 258, '2.4.0', '03/11/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (878, 258, '2.3.3', '02/19/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (879, 258, '2.3.2', '02/14/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (880, 258, '2.3.1', '02/13/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (881, 258, '2.3.0', '02/03/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (882, 258, '2.2.5', '01/28/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (883, 258, '2.2.4', '01/22/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (884, 258, '2.2.3', '01/16/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (885, 258, '2.2.2', '01/14/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (886, 258, '2.2.1', '01/09/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (887, 258, '2.2.0', '12/22/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (888, 258, '2.1.7', '12/15/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (889, 258, '2.1.6', '12/14/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (890, 258, '2.1.5', '12/06/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (891, 258, '2.1.4', '12/05/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (892, 258, '2.1.3', '11/24/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (893, 258, '2.1.2', '11/23/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (894, 258, '2.1.1', '11/13/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (895, 258, '2.1.0', '11/12/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (896, 258, '2.0.8', '11/04/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (897, 258, '2.0.7', '10/22/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (898, 258, '2.0.6', '10/19/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (899, 258, '2.0.5', '10/15/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (900, 258, '2.0.4', '10/13/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (901, 258, '2.0.3', '10/13/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (902, 258, '2.0.2', '10/09/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (903, 258, '2.0.1', '10/02/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (904, 258, '2.0.0', '09/28/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (905, 258, '1.0.32', '07/23/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (906, 258, '1.0.31', '04/15/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (907, 258, '1.0.30', '04/06/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (908, 258, '1.0.29', '04/05/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (909, 258, '1.0.28', '04/04/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (910, 258, '1.0.27', '03/20/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (911, 258, '1.0.26', '03/20/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (912, 258, '1.0.25', '03/15/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (913, 258, '1.0.24', '03/14/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (914, 258, '1.0.23', '02/20/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (915, 258, '1.0.22', '02/19/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (916, 258, '1.0.21', '02/19/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (917, 258, '1.0.20', '02/11/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (918, 258, '1.0.19', '02/06/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (919, 258, '1.0.18', '01/04/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (920, 258, '1.0.17', '12/10/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (921, 258, '1.0.16', '11/28/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (922, 258, '1.0.15', '10/23/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (923, 258, '1.0.14', '10/19/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (924, 258, '1.0.13', '10/19/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (925, 258, '1.0.12', '10/17/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (926, 258, '1.0.10', '10/11/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (927, 258, '1.0.9', '10/09/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (928, 258, '1.0.8', '09/30/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (929, 258, '1.0.5', '09/14/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (930, 258, '1.0.4', '08/28/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (931, 258, '1.0.3', '08/22/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (932, 258, '1.0.1', '08/18/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (933, 258, '1', '08/17/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (934, 14, '18', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (935, 14, '17', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (936, 14, '16', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (937, 14, '13', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (938, 14, '1.2', '11/21/2005', '11/21/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (939, 14, '1.4', '12/23/2006', '04/21/2012'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (940, 14, '1.6.0', '10/01/2008', '10/01/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (941, 14, '1.6.1', '04/27/2009', '04/27/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (942, 14, '1.6.2', '12/18/2009', '04/21/2012'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (943, 14, '1.8', '10/21/2010', '10/21/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (944, 14, '10', '12/15/2011', '12/15/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (945, 14, '11', '10/25/2012', '10/25/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (946, 14, '12', '12/20/2013', '12/20/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (947, 14, '13', '10/24/2014', '10/24/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (948, 14, '14', '10/01/2015', '10/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (949, 14, '15', '10/01/2016', '10/31/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (950, 5, '1', '02/20/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (951, 5, '4.6.0', '09/21/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (952, 319, '1', '12/31/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (953, 319, '3', '06/08/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (954, 131, '21.1', '05/12/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (955, 131, '20.2', '10/21/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (956, 131, '20.1', '04/23/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (957, 131, '19.2', '11/01/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (958, 131, '19.1', '03/21/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (959, 131, '18.2', '09/28/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (960, 131, '18.1', '05/24/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (961, 131, '5.1.4', '12/17/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (962, 131, '5.1', '12/21/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (963, 19, '9.1.04', '12/05/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (964, 19, '9.1.03', '06/09/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (965, 19, '9.1.02', '12/05/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (966, 19, '9.1.01', '06/23/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (967, 19, '9.1.00', '12/22/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (968, 170, '1.1', '02/21/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (969, 170, '1.4', '07/10/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (970, 170, '2', '09/02/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (971, 170, '2.1', '04/16/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (972, 170, '2.2', '11/17/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (973, 170, '2.2.5', '04/26/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (974, 8, '2.3.8', '01/17/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (975, 8, '2.3.7', '04/18/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (976, 8, '3.1.2', '08/26/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (977, 8, '2.3.6', '08/23/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (978, 8, '2.3.5', '05/14/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (979, 8, '2.3.4', '11/07/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (980, 8, '3.1.1', '11/01/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (981, 8, '3.1.0', '07/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (982, 8, '3.0.0', '05/21/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (983, 8, '2.3.3', '04/03/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (984, 8, '2.3.2', '11/18/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (985, 8, '2.3.1', '08/24/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (986, 8, '2.2.0', '07/25/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (987, 8, '2.3.0', '07/17/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (988, 8, '1.2.2', '04/07/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (989, 8, '2.1.1', '12/08/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (990, 8, '2.1.0', '06/20/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (991, 8, '2.0.1', '05/25/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (992, 8, '2.0.0', '02/15/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (993, 8, '1.2.1', '06/27/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (994, 8, '1.1.1', '05/21/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (995, 8, '1.0.1', '05/21/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (996, 8, '0.14.0', '11/12/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (997, 8, '0.13.0', '04/21/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (998, 8, '0.12.0', '10/15/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (999, 8, '0.11.0', '05/15/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1000, 8, '0.10.0', '01/11/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1001, 175, '1', '07/02/1905', '06/01/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1002, 175, '2', '06/26/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1003, 180, '2.1.0', '07/06/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1004, 180, '2.0.1', '07/06/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1005, 180, '1.8.0', '07/06/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1006, 180, '1.7.1', '07/06/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1007, 180, '1.7.0', '10/04/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1008, 180, '1.6.0', '04/06/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1009, 180, '1.5.1', '04/06/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1010, 180, '1.4.0', '04/06/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1011, 180, '1.3.0', '04/06/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1012, 180, '1.2.0', '04/06/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1013, 186, '9.1', '07/31/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1014, 186, '9', '06/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1015, 186, '8.9', '05/04/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1016, 168, '6.2.4', '08/31/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1017, 168, '6.0.20', '04/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1018, 168, '6.0.12', '01/31/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1019, 168, '6.0.8', '09/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1020, 168, '6', '05/31/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1021, 168, '5.6.0', '04/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1022, 168, '5.5', '04/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1023, 168, '5.4.14', '02/28/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1024, 168, '5.4.10', '12/31/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1025, 168, '5.4.6', '07/31/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1026, 168, '5.4.4', '06/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1027, 168, '5.4.2', '04/28/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1028, 168, '5.4', '12/31/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1029, 168, '5.2.2', '08/31/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1030, 168, '5.2', '07/31/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1031, 168, '5.0.2', '06/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1032, 168, '5', '03/31/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1033, 168, '4.5', '05/31/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1034, 168, '4.4', '12/31/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1035, 168, '4.3', '08/02/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1036, 168, '4.2.1', '10/18/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1037, 168, '4', '06/18/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1038, 165, '3.9.7', '09/24/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1039, 165, '3.8.23', '09/24/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1040, 165, '3.9.6', '09/16/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1041, 165, '3.9.5', '08/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1042, 165, '3.8.22', '08/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1043, 165, '3.9.4', '08/17/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1044, 165, '3.9.3', '08/12/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1045, 165, '3.8.21', '08/12/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1046, 165, '3.9.2', '08/09/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1047, 165, '3.8.20', '08/09/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1048, 165, '3.9.1', '07/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1049, 165, '3.9.0', '07/23/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1050, 165, '3.8.19', '07/05/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1051, 165, '3.8.18', '06/25/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1052, 165, '3.8.17', '06/08/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1053, 165, '3.8.16', '05/04/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1054, 165, '3.8.15', '05/03/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1055, 165, '3.8.14', '03/02/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1056, 165, '3.8.13', '02/27/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1057, 165, '3.8.12', '02/16/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1058, 165, '3.8.11', '01/22/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1059, 165, '3.8.10', '01/19/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1060, 165, '3.8.9', '09/28/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1061, 165, '3.8.8', '09/03/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1062, 165, '3.8.7', '08/17/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1063, 165, '3.7.28', '08/17/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1064, 165, '3.8.6', '08/04/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1065, 165, '3.7.27', '07/25/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1066, 165, '3.8.5', '06/15/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1067, 165, '3.8.4', '05/25/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1068, 165, '3.7.26', '05/04/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1069, 165, '3.7.25', '04/09/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1070, 165, '3.8.3', '03/10/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1071, 165, '3.7.24', '02/13/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1072, 165, '3.7.23', '12/05/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1073, 165, '3.8.2', '12/02/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1074, 165, '3.7.22', '11/27/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1075, 165, '3.8.1', '10/31/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1076, 165, '3.7.21', '10/31/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1077, 165, '3.7.20', '10/25/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1078, 165, '3.7.19', '10/02/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1079, 165, '3.8.0', '10/01/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1080, 165, '3.7.18', '09/18/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1081, 165, '3.7.17', '07/29/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1082, 165, '3.7.16', '07/08/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1083, 165, '3.7.15', '05/20/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1084, 165, '3.7.14', '03/29/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1085, 165, '3.7.13', '03/08/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1086, 165, '3.7.12', '02/15/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1087, 165, '3.7.11', '01/31/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1088, 165, '3.7.10', '01/07/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1089, 165, '3.7.9', '11/16/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1090, 165, '3.7.8', '09/20/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1091, 165, '3.7.7', '07/05/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1092, 165, '3.7.6', '06/13/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1093, 165, '3.6.16', '06/13/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1094, 165, '3.7.5', '05/09/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1095, 165, '3.7.4', '03/08/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1096, 165, '3.7.3', '01/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1097, 165, '3.6.15', '01/17/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1098, 165, '3.7.2', '12/23/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1099, 165, '3.7.1', '12/21/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1100, 165, '3.7.0', '11/29/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1101, 165, '3.6.14', '11/07/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1102, 165, '3.6.13', '11/06/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1103, 165, '3.6.12', '09/11/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1104, 165, '3.6.11', '08/16/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1105, 165, '3.6.10', '05/25/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1106, 165, '3.6.9', '03/29/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1107, 165, '3.6.8', '03/17/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1108, 165, '3.6.7', '03/15/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1109, 165, '3.6.6', '11/21/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1110, 165, '3.5.8', '11/21/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1111, 165, '3.6.5', '08/05/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1112, 165, '3.6.4', '07/29/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1113, 165, '3.6.3', '07/06/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1114, 165, '3.6.2', '05/19/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1115, 165, '3.6.1', '03/01/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1116, 165, '3.6.0', '12/22/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1117, 165, '3.5.7', '12/15/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1118, 165, '3.5.6', '10/07/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1119, 165, '3.5.5', '09/24/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1120, 165, '3.5.4', '07/22/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1121, 165, '3.5.3', '05/22/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1122, 165, '3.5.2', '05/12/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1123, 165, '3.5.1', '04/03/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1124, 165, '3.5.0', '03/11/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1125, 165, '3.4.4', '02/11/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1126, 165, '3.4.3', '01/07/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1127, 165, '3.4.2', '11/26/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1128, 165, '3.4.1', '10/29/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1129, 165, '3.4.0', '10/21/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1130, 165, '3.3.5', '08/11/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1131, 165, '3.3.4', '06/24/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1132, 165, '3.3.3', '06/17/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1133, 165, '3.3.2', '06/09/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1134, 165, '3.3.1', '04/29/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1135, 165, '3.3.0', '04/02/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1136, 165, '3.2.4', '03/04/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1137, 165, '3.2.3', '01/23/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1138, 165, '3.2.2', '12/11/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1139, 165, '3.2.1', '11/07/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1140, 165, '3.2.0', '10/23/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1141, 165, '3.1.5', '08/15/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1142, 165, '3.1.4', '08/07/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1143, 165, '3.1.3', '06/26/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1144, 165, '3.1.2', '06/24/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1145, 165, '3.1.1', '05/21/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1146, 165, '3.1.0', '05/01/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1147, 165, '3.0.4', '03/12/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1148, 165, '3.0.3', '03/06/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1149, 165, '3.0.2', '01/31/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1150, 165, '3.0.1', '12/11/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1151, 165, '3.0.0', '11/19/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1152, 165, '2.8.7', '09/27/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1153, 165, '2.8.6', '08/22/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1154, 165, '2.8.5', '08/02/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1155, 165, '2.8.4', '06/22/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1156, 165, '2.8.3', '06/21/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1157, 165, '2.8.2', '04/30/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1158, 165, '2.8.1', '03/22/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1159, 165, '2.8.0', '03/19/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1160, 165, '2.7.1', '12/20/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1161, 165, '2.7.0', '11/09/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1162, 165, '2.6.1', '09/12/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1163, 165, '2.6.0', '08/31/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1164, 165, '2.5.1', '06/27/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1165, 165, '2.5.0', '06/14/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1166, 165, '2.4.1', '04/07/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1167, 165, '2.4.0', '03/23/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1168, 165, '2.3.1', '02/03/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1169, 165, '2.3.0', '02/02/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1170, 165, '2.2.0', '11/30/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1171, 165, '2.1.1', '10/20/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1172, 165, '2.1.0', '09/15/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1173, 165, '2.0.0', '08/25/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1174, 165, '1.8.1', '07/15/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1175, 165, '1.8.0', '06/16/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1176, 165, '1.7.2', '02/16/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1177, 165, '1.7.1', '01/25/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1178, 165, '1.7.0', '10/07/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1179, 165, '1.6.0', '06/17/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1180, 165, '1.5.5', '05/30/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1181, 165, '1.5.4', '04/06/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1182, 165, '1.5.3', '02/24/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1183, 165, '1.5.1', '01/21/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1184, 165, '1.5.0', '12/18/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1185, 165, '1.4.0', '07/30/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1186, 165, '1.3.0', '04/01/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1187, 165, '1.2.0', '09/27/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1188, 165, '1.1.1', '08/29/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1189, 165, '1.1.0', '08/01/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1190, 165, '1.0.0', '02/08/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1191, 9, '3.0.0', '09/21/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1192, 9, '2.8.1', '09/18/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1193, 9, '2.8.0', '04/19/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1194, 9, '2.7.1', '05/10/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1195, 9, '2.7.0', '12/21/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1196, 9, '2.6.2', '04/20/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1197, 9, '2.6.1', '01/07/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1198, 9, '2.6.0', '08/03/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1199, 9, '2.5.1', '08/10/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1200, 9, '2.5.0', '04/15/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1201, 9, '2.4.1', '03/12/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1202, 9, '2.4.0', '12/16/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1203, 9, '2.3.1', '08/24/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1204, 9, '2.3.0', '06/25/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1205, 9, '2.2.2', '12/01/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1206, 9, '2.2.1', '06/01/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1207, 9, '2.2.0', '03/22/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1208, 9, '2.1.1', '02/15/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1209, 9, '2.1.0', '11/20/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1210, 9, '2.0.1', '11/09/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1211, 9, '2.0.0', '06/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1212, 9, '1.1.1', '07/19/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1213, 9, '1.1.0', '03/28/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1214, 9, '1.0.2', '07/08/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1215, 9, '1.0.1', '03/05/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1216, 9, '1.0.0', '11/01/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1217, 9, '0.11.0', '06/28/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1218, 9, '0.10.0', '05/22/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1219, 9, '0.9.0', '11/23/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1220, 9, '0.8.0', '03/12/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1221, 9, '0.7.0', '01/04/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1222, 157, '6', '01/29/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1223, 157, '6.1', '06/08/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1224, 157, '6.2', '10/02/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1225, 157, '6.3', '03/01/1998', '03/01/2003'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1226, 157, '6.4', '10/30/1998', '10/30/2003'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1227, 157, '6.5', '06/09/1999', '06/09/2004'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1228, 157, '7', '05/08/2000', '05/08/2004'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1229, 157, '7.1', '04/13/2001', '04/13/2006'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1230, 157, '7.2', '02/04/2002', '02/04/2007'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1231, 157, '7.3', '11/27/2002', '11/27/2007'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1232, 157, '7.4', '11/17/2003', '10/01/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1233, 157, '8', '01/19/2005', '10/01/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1234, 157, '8.1', '11/08/2005', '11/08/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1235, 157, '8.2', '12/05/2006', '12/05/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1236, 157, '8.3', '02/04/2008', '02/07/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1237, 157, '8.4', '07/01/2009', '07/24/2014'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1238, 157, '9', '09/20/2010', '10/08/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1239, 157, '9.1', '09/12/2011', '10/27/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1240, 157, '9.2', '09/10/2012', '11/09/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1241, 157, '9.3', '09/09/2013', '11/08/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1242, 157, '9.4', '12/18/2014', '02/13/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1243, 157, '9.5', '01/07/2016', '02/11/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1244, 157, '9.6', '09/29/2016', '11/11/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1245, 157, '10', '10/05/2017', '11/10/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1246, 157, '11', '10/18/2018', '11/09/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1247, 157, '12', '10/03/2019', '11/14/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1248, 157, '13', '09/24/2020', '11/13/2025'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1249, 157, '14', '09/30/2021', '11/12/2026'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1250, 21, '1.0', '03/01/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1251, 21, '1', '06/06/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1252, 21, '1.0.1', '07/31/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1253, 21, '2', '01/23/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1254, 21, '2.0.1', '02/22/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1255, 21, '2.1', '06/28/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1256, 21, '2.0.2', '08/04/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1257, 21, '2.1.1', '09/26/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1258, 21, '2.1.2', '02/27/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1259, 21, '2.1.3', '07/05/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1260, 21, '2.2', '06/28/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1261, 21, '2.2.1', '10/02/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1262, 21, '2.2.1.1', '11/01/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1263, 21, '2.2.2', '02/27/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1264, 21, '2.3', '06/25/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1265, 21, '2.3.1', '09/24/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1266, 21, '2.3.2', '02/25/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1267, 21, '2.5', '06/24/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1268, 21, '2.5.1', '09/25/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1269, 21, '2.5.2', '02/28/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1270, 21, '2.6', '06/24/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1271, 21, '2.6.1', '09/17/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1272, 21, '2.6.2', '02/25/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1273, 21, '3.7', '06/22/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1274, 21, '3.7.1', '09/23/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1275, 21, '3.7.2', '02/24/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1276, 21, '4.2.0', '06/27/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1277, 21, '4.2.1', '09/28/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1278, 21, '4.2.2', '02/22/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1279, 21, '4.3', '06/26/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1280, 21, '4.3.1', '09/27/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1281, 21, '4.3.2', '02/28/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1282, 21, '4.4.0', '06/25/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1283, 21, '4.4.1', '09/26/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1284, 21, '4.4.2', '02/27/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1285, 21, '4.5.0', '06/24/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1286, 21, '4.6.0', '06/22/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1287, 21, '4.7.0', '06/28/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1288, 21, '4.8.0', '06/27/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1289, 21, '4.9.0', '06/16/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1290, 55, '94', '09/21/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1291, 55, '93', '08/31/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1292, 55, '92', '06/20/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1293, 55, '91', '05/25/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1294, 55, '90', '04/14/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1295, 55, '89', '03/09/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1296, 55, '88', '01/19/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1297, 55, '87', '11/17/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1298, 55, '86', '10/06/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1299, 55, '85', '08/25/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1300, 55, '84', '07/14/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1301, 55, '83', '05/19/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1302, 55, '81', '04/07/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1303, 55, '80', '02/04/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1304, 55, '79', '12/11/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1305, 55, '78', '10/22/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1306, 55, '77', '09/10/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1307, 55, '76', '06/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1308, 55, '75', '06/04/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1309, 55, '74', '04/23/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1310, 55, '73', '03/12/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1311, 55, '72', '01/29/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1312, 55, '71', '12/04/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1313, 55, '70', '10/16/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1314, 55, '69', '09/04/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1315, 55, '68', '07/24/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1316, 55, '67', '05/29/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1317, 55, '66', '04/17/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1318, 55, '65', '03/06/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1319, 55, '64', '01/23/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1320, 55, '63', '12/05/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1321, 55, '62', '10/17/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1322, 55, '61', '09/05/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1323, 55, '60', '07/25/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1324, 55, '59', '05/30/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1325, 55, '58', '04/18/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1326, 55, '57', '03/07/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1327, 150, '9.3', '12/31/2022', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1328, 150, '9.2', '08/31/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1329, 150, '9.1', '10/31/2020', '08/01/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1330, 150, '9.0', '02/28/2020', '10/01/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1331, 150, '8.3', '07/31/2019', '07/01/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1332, 150, '8.2', '11/30/2018', '02/01/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1333, 150, '8.1', '05/31/2018', '02/01/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1334, 150, '8.0', '11/30/2017', '02/01/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1335, 150, '7.1', '04/30/2017', '02/01/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1336, 27, '20210923171324', '09/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1337, 27, '20210907035717', '10/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1338, 27, '20210824134201', '08/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1339, 27, '20210813114337', '08/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1340, 27, '20210727104144', '08/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1341, 27, '20210720135142', '07/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1342, 27, '20210713164523', '07/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1343, 27, '20210629161835', '07/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1344, 27, '20210616033549', '06/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1345, 27, '20210601124849', '06/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1346, 27, '20210526024943', '05/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1347, 27, '20210518074441', '05/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1348, 27, '20210504084406', '05/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1349, 27, '20210420090302', '04/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1350, 27, '20210406040048', '04/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1351, 27, '20210324172345', '03/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1352, 27, '20210309093358', '03/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1353, 27, '20210219171521', '03/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1354, 27, '20210129162733', '02/28/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1355, 27, '20210125155346', '01/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1356, 27, '20210112001354', '01/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1357, 27, '20201230192246', '01/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1358, 27, '20201127104018', '12/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1359, 27, '20201106153948', '11/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1360, 27, '20201020140427', '11/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1361, 27, '20201012185603', '10/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1362, 27, '20201005173827', '10/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1363, 27, '20200922182722', '09/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1364, 27, '20200908235050', '09/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1365, 27, '20200831163517', '09/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1366, 27, '20200816214709', '08/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1367, 27, '20200811175306', '08/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1368, 27, '20200807155122', '08/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1369, 27, '20200728181447', '07/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1370, 27, '20200707173044', '07/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1371, 27, '20200701215317', '07/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1372, 27, '20200617215626', '06/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1373, 27, '20200610173731', '06/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1374, 27, '20200603114954', '06/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1375, 27, '20200529133631', '06/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1376, 27, '20200520145933', '05/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1377, 27, '20200513205422', '05/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1378, 27, '20200506172513', '05/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1379, 27, '20200429153636', '05/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1380, 27, '20200420162758', '04/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1381, 27, '20200416222158', '04/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1382, 27, '20200408145843', '04/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1383, 27, '20200325163209', '03/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1384, 27, '20200316122114', '03/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1385, 27, '20200310163217', '03/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1386, 27, '20200303183409', '03/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1387, 27, '20200220011437', '02/28/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1388, 27, '20200131232134', '02/28/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1389, 27, '20200127203438', '02/28/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1390, 27, '20200123225613', '01/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1391, 27, '20200115001116', '01/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1392, 27, '20191211163405', '12/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1393, 27, '20191129172405', '12/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1394, 27, '20191104205453', '11/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1395, 27, '20191030224959', '11/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1396, 27, '20191024135531', '10/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1397, 27, '20191015190829', '10/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1398, 27, '20191007115919', '10/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1399, 27, '20191001203421', '10/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1400, 27, '20190904132002', '09/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1401, 27, '20190827222442', '09/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1402, 27, '20190820163418', '08/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1403, 27, '20190813170406', '08/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1404, 27, '20190806202030', '08/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1405, 27, '20190729085402', '08/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1406, 27, '20190722200451', '07/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1407, 27, '20190717161024', '07/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1408, 27, '20190711110747', '07/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1409, 27, '20190628200755', '07/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1410, 27, '20190617144820', '06/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1411, 27, '20190610211245', '06/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1412, 27, '20190605190944', '06/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1413, 27, '20190513175357', '05/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1414, 27, '20190506101326', '05/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1415, 27, '20190501153509', '05/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1416, 27, '20190422213145', '04/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1417, 27, '20190415203801', '04/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1418, 27, '20190410001346', '04/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1419, 27, '20190325233053', '04/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1420, 27, '20190304193624', '03/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1421, 27, '20190225235742', '03/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1422, 27, '20190207004055', '02/28/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1423, 27, '20190131011635', '02/28/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1424, 27, '20190124232144', '01/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1425, 27, '20190116225739', '01/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1426, 27, '20181212095204', '12/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1427, 27, '20181203095916', '12/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1428, 27, '20181126154627', '12/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1429, 27, '20181118185209', '11/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1430, 27, '20181112131523', '11/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1431, 27, '20181029174254', '11/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1432, 27, '20181020020209', '10/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1433, 27, '20181015112149', '10/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1434, 27, '20181011135231', '10/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1435, 27, '20181001090525', '10/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1436, 27, '20180920223835', '09/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1437, 27, '20180912124609', '09/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1438, 27, '20180831173550', '09/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1439, 27, '20180827132056', '08/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1440, 27, '20180817182829', '08/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1441, 27, '20180810152540', '08/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1442, 27, '20180807052402', '08/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1443, 27, '20180806202947', '08/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1444, 27, '20180803154514', '08/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1445, 27, '20180802181335', '08/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1446, 27, '20180728222031', '07/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1447, 27, '20180720170058', '07/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1448, 27, '20180717131009', '07/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1449, 27, '20180714142423', '07/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1450, 27, '20180706210448', '07/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1451, 27, '20180629132035', '07/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1452, 27, '20180621090851', '06/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1453, 27, '20180615105327', '06/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1454, 27, '20180608102534', '06/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1455, 27, '20180604124326', '06/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1456, 27, '20180519154949', '05/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1457, 27, '20180514204156', '05/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1458, 27, '20180504185246', '05/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1459, 27, '20180501212258', '05/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1460, 27, '20180430173459', '04/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1461, 27, '20180424200344', '04/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1462, 27, '20180424150704', '04/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1463, 27, '20180420141712', '04/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1464, 27, '20180416135645', '04/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1465, 27, '20180406143035', '04/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1466, 27, '20180403044658', '04/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1467, 27, '20180326145220', '03/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1468, 27, '20180322085330', '03/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1469, 27, '20180319150121', '03/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1470, 249, '5', '11/15/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1471, 249, '4.5', '03/07/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1472, 249, '4', '05/05/2015', '05/08/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1473, 249, '3.5', '05/27/2014', '09/30/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1474, 249, '3.1', '12/19/2013', '06/10/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1475, 249, '3', '07/17/2013', '06/10/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1476, 249, '2', '12/16/2012', '06/10/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1477, 308, '5', '06/12/1905', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1478, 308, '5.01', '04/15/1991', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1479, 308, '5.2', '02/15/1993', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1480, 308, '5.2a', '03/15/1993', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1481, 308, '5.2b', '06/25/1993', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1482, 308, '5.2c', '08/06/1993', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1483, 308, '5.2d', '03/25/1994', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1484, 308, '5.2e', '02/07/1995', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1485, 308, '5.3', '06/26/1995', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1486, 308, '5.3a', '05/20/1996', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1487, 308, '5.3b', '05/20/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1488, 230, '10', '06/21/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1489, 230, '10.1', '03/20/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1490, 230, '10.2', '01/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1491, 230, '10.3', '08/23/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1492, 230, '11', '04/02/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1493, 230, '11.1', '05/07/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1494, 230, '11.2', '08/29/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1495, 230, '11.3', '06/17/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1496, 246, ' ', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1497, 3, '6', '05/31/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1498, 178, '3', '12/31/1992', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1499, 178, '4', '12/31/1994', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1500, 178, '5', '12/31/1995', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1501, 178, '6', '12/31/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1502, 178, '6.0.2', '12/31/1999', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1503, 178, '7', '12/31/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1504, 178, '8', '12/31/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1505, 178, '9', '12/31/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1506, 178, '10', '12/31/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1507, 178, '11', '12/31/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1508, 178, '12', '12/31/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1509, 178, '16', '12/31/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1510, 178, '17', '12/31/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1511, 232, '8.2.04', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1512, 10, '5', '02/21/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1513, 10, '6', '05/22/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1514, 10, '7', '05/22/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1515, 365, '8.1', '04/30/1999', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1516, 365, '8.2', '08/18/1999', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1517, 365, '8.3', '02/10/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1518, 365, '8.4', '09/30/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1519, 365, '8.5', '12/31/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1520, 365, '8.6', '12/31/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1521, 365, '7.6', '10/16/1996', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1522, 365, '7.5', '04/21/1996', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1523, 365, '7.4', '07/01/1995', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1524, 145, ' ', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1525, 7, '2.3.4', '01/22/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1526, 7, '2.4.2', '03/17/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1527, 7, '1.4.13', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1528, 7, '1.6.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1529, 7, '1.7.1', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1530, 7, '2.2.7', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1531, 7, '2.3.6', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1532, 7, '2.4.6', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1533, 7, '3.0.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1534, 60, ' ', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1535, 12, '1.14.1', '02/10/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1536, 12, '1.10.7', '02/10/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1537, 12, '1.14.0', '05/27/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1538, 12, '1.13.0', '10/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1539, 12, '1.12.2', '07/24/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1540, 12, '1.10.6', '07/24/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1541, 12, '1.9.12', '07/24/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1542, 12, '1.12.0', '04/24/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1543, 12, '1.11.1', '01/11/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1544, 12, '1.10.4', '01/11/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1545, 12, '1.9.10', '01/11/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1546, 12, '1.11.0', '10/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1547, 12, '1.10.3', '10/10/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1548, 12, '1.10.2', '07/20/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1549, 12, '1.9.9', '07/20/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1550, 12, '1.10.0', '04/12/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1551, 12, '1.9.7', '08/10/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1552, 12, '1.8.19', '08/10/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1553, 12, '1.8.18', '07/07/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1554, 12, '1.9.6', '07/06/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1555, 12, '1.9.5', '11/29/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1556, 12, '1.8.17', '11/29/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1557, 12, '1.9.4', '04/28/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1558, 12, '1.8.16', '04/28/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1559, 12, '1.9.3', '09/15/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1560, 12, '1.8.15', '09/15/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1561, 12, '1.9.2', '09/23/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1562, 12, '1.9.1', '09/02/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1563, 12, '1.7.22', '08/14/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1564, 12, '1.9.0', '08/05/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1565, 12, '1.8.14', '08/05/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1566, 12, '1.7.21', '08/05/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1567, 12, '1.8.13', '03/31/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1568, 12, '1.7.20', '03/31/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1569, 12, '1.8.11', '12/15/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1570, 12, '1.7.19', '12/15/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1571, 12, '1.8.10', '08/11/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1572, 12, '1.7.18', '08/11/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1573, 12, '1.7.17', '05/19/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1574, 12, '1.8.9', '05/14/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1575, 12, '1.7.16', '02/26/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1576, 12, '1.8.8', '02/20/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1577, 12, '1.8.5', '11/25/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1578, 12, '1.7.14', '11/25/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1579, 12, '1.8.4', '10/29/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1580, 12, '1.8.3', '08/30/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1581, 12, '1.7.13', '08/30/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1582, 12, '1.8.1', '07/24/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1583, 12, '1.7.11', '07/24/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1584, 12, '1.8.0', '06/18/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1585, 12, '1.7.10', '05/31/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1586, 12, '1.6.23', '05/31/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1587, 12, '1.7.9', '04/04/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1588, 12, '1.6.21', '04/04/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1589, 12, '1.6.20', '01/08/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1590, 12, '1.7.8', '12/20/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1591, 12, '1.7.7', '10/09/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1592, 12, '1.6.19', '09/21/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1593, 12, '1.7.6', '08/15/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1594, 12, '1.7.5', '05/17/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1595, 12, '1.7.4', '03/08/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1596, 12, '1.7.3', '02/13/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1597, 12, '1.7.2', '12/05/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1598, 12, '1.7.1', '10/23/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1599, 12, '1.7.0', '10/11/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1600, 12, '1.6.18', '04/12/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1601, 12, '1.6.17', '06/01/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1602, 12, '1.6.16', '03/03/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1603, 12, '1.5.9', '12/22/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1604, 12, '1.6.15', '11/24/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1605, 12, '1.6.13', '10/01/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1606, 12, '1.6.12', '06/21/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1607, 12, '1.6.11', '04/16/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1608, 12, '1.6.9', '01/25/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1609, 12, '1.6.6', '10/22/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1610, 12, '1.6.5', '08/22/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1611, 12, '1.6.4', '08/06/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1612, 12, '1.6.3', '06/22/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1613, 12, '1.6.2', '05/11/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1614, 12, '1.6.1', '04/09/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1615, 12, '1.6.0', '03/20/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1616, 12, '1.5.7', '08/06/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1617, 12, '1.5.6', '02/26/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1618, 12, '1.5.5', '12/22/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1619, 12, '1.5.4', '10/24/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1620, 12, '1.5.3', '10/10/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1621, 12, '1.5.2', '08/30/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1622, 12, '1.5.1', '07/26/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1623, 12, '1.5.0', '06/19/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1624, 12, '1.4.6', '12/20/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1625, 12, '1.4.5', '08/28/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1626, 12, '1.4.4', '06/08/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1627, 12, '1.4.3', '01/25/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1628, 12, '1.4.2', '11/07/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1629, 12, '1.4.0', '09/10/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1630, 12, '1.3.2', '05/31/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1631, 12, '1.3.1', '04/03/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1632, 12, '1.3.0', '01/03/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1633, 12, '1.2.3', '08/25/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1634, 12, '1.2.1', '07/05/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1635, 12, '1.2.0', '05/23/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1636, 12, '1.1.4', '04/01/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1637, 12, '1.1.3', '01/14/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1638, 12, '1.1.2', '12/20/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1639, 12, '1.1.1', '10/22/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1640, 12, '1.0.9', '10/13/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1641, 12, '1.1.0', '09/29/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1642, 12, '1.0.8', '09/22/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1643, 12, '1.0.7', '09/17/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1644, 12, '1.0.6', '07/19/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1645, 12, '1.0.5', '06/10/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1646, 12, '1.0.4', '05/21/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1647, 12, '1.0.3', '05/19/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1648, 12, '1.0.2', '04/19/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1649, 12, '1.0.1', '03/12/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1650, 12, '1.0.0', '02/23/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1651, 12, '0.37', '01/25/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1652, 12, '0.36', '01/13/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1653, 12, '0.35.1', '12/20/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1654, 12, '0.35', '12/19/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1655, 12, '0.34', '12/03/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1656, 12, '0.33.1', '11/18/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1657, 12, '0.33', '11/13/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1658, 12, '0.32.1', '10/23/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1659, 12, '0.31', '10/07/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1660, 12, '0.30', '09/24/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1661, 12, '0.29', '09/05/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1662, 12, '0.28.2', '09/02/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1663, 12, '0.28.1', '08/28/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1664, 12, '0.28', '08/27/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1665, 12, '0.27', '08/10/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1666, 12, '0.26', '07/23/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1667, 12, '0.25', '07/10/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1668, 12, '0.24.2', '06/18/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1669, 12, '0.24.1', '06/16/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1670, 12, '0.24', '06/15/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1671, 12, '0.23', '05/17/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1672, 12, '0.22.2', '05/13/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1673, 12, '0.22.1', '05/09/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1674, 12, '0.22', '05/07/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1675, 12, '0.21', '04/15/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1676, 12, '0.20.1', '03/26/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1677, 12, '0.20', '03/20/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1678, 12, '0.19.1', '03/12/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1679, 12, '0.19', '03/10/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1680, 12, '0.18.1', '02/26/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1681, 12, '0.18', '02/19/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1682, 12, '0.17.1', '01/22/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1683, 12, '0.17', '01/20/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1684, 12, '0.16.1', '01/06/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1685, 12, '0.16', '12/03/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1686, 12, '0.15', '11/07/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1687, 12, '0.14.5', '10/29/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1688, 12, '0.14.4', '10/29/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1689, 12, '0.14.3', '09/20/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1690, 12, '0.14.2', '08/22/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1691, 12, '0.14.1', '08/09/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1692, 12, '0.13.2', '06/28/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1693, 12, '0.13.1', '06/20/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1694, 12, '0.13.0', '06/10/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1695, 12, '0.12', '05/03/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1696, 12, '0.11', '04/12/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1697, 12, '0.10', '03/08/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1698, 12, '0.9', '02/18/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1699, 12, '0.8', '01/14/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1700, 12, '0.7', '12/03/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1701, 422, '9', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1702, 422, '8', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1703, 422, '7', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1704, 422, '6', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1705, 422, '5', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1706, 422, '4', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1707, 422, '3', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1708, 422, '2', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1709, 43, '11.5', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1710, 43, '11.1', ' ', '04/30/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1711, 43, '10.5', ' ', '04/30/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1712, 43, '10.1', ' ', '09/30/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1713, 43, '9.8', ' ', '04/30/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1714, 43, '9.7', ' ', '09/30/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1715, 43, '9.5', ' ', '04/30/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1716, 43, '9.1', ' ', '04/30/2012'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1717, 43, '8.1', ' ', '04/30/2009'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1718, 68, '10', '03/27/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1719, 68, '9', '06/28/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1720, 330, '12.1', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1721, 330, '14.1', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1722, 81, '9.2', '07/23/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1723, 81, '9.1', '07/27/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1724, 81, 'IBM MQ on IBM Cloud', '03/13/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1725, 81, 'IBM MQ for HPE Nonstop 8.0', '06/23/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1726, 81, '9.0', '06/02/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1727, 81, '8.0', '05/23/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1728, 81, '7.5', '06/15/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1729, 81, '7.1', '11/30/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1730, 81, '7.0', '06/30/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1731, 81, '7.0', '05/31/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1732, 81, '6.0', '06/30/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1733, 81, 'WebSphere MQ 6.0 (Distributed, iSeries)', '05/31/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1734, 81, '5.3', '06/30/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1735, 81, 'WebSphere MQ 5.3 (Distributed, iSeries)', '11/30/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1736, 81, 'MQSeries 5.2 (Distributed)', '12/31/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1737, 81, '5.2', '11/30/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1738, 81, '5.1', '08/31/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1739, 81, '2.1', '02/28/1999', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1740, 81, '5.1', '06/30/1999', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1741, 81, '4.2', '02/28/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1742, 81, '5.0', '10/31/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1743, 81, '1.2', '08/29/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1744, 81, '1.1.4,', '06/30/1996', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1745, 81, '2.2', '07/31/1996', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1746, 81, '2.0', '06/30/1996', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1747, 81, '2.2', '12/31/1995', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1748, 81, '1.1.3', '05/31/1995', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1749, 81, '2.0', '02/28/1995', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1750, 81, '3', '12/31/1994', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1751, 81, '3.0', '07/01/1994', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1752, 81, '1.1.2', '06/01/1994', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1753, 81, '2.3', '04/30/1994', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1754, 81, '1.1.1', '12/31/1993', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1755, 127, '9.5.3', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1756, 169, ' ', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1757, 36, ' ', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1758, 225, '3', '12/31/1986', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1759, 225, '4', '12/31/1988', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1760, 225, '5', '12/31/1990', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1761, 225, '6', '12/31/1994', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1762, 225, '7', '12/31/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1763, 225, '8', '12/31/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1764, 225, '9', '12/31/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1765, 225, '9.4', '12/31/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1766, 225, '9.5', '12/31/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1767, 225, '9.6', '12/31/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1768, 225, '9.7', '12/31/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1769, 225, '10', '12/31/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1770, 225, '10.4', '12/31/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1771, 219, '8.5.0', '12/31/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1772, 128, '2.5.0', '10/31/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1773, 128, '2.5.1', '10/31/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1774, 128, '2.5.2', '10/31/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1775, 128, '2.5.3', '10/31/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1776, 128, '2.4.0', '12/26/2016', '05/31/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1777, 128, '2.4.1', '12/26/2016', '05/31/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1778, 128, '2.4.2', '12/26/2016', '05/31/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1779, 128, '2.4.3', '12/26/2016', '05/31/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1780, 128, '2.4.4', '12/26/2016', '05/31/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1781, 128, '2.4.5', '12/26/2016', '05/31/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1782, 128, '2.4.6', '12/26/2016', '05/31/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1783, 128, '2.4.7', '12/26/2016', '05/31/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1784, 128, '2.4.8', '12/26/2016', '05/31/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1785, 128, '2.4.9', '12/26/2016', '05/31/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1786, 128, '2.4.10', '12/26/2016', '05/31/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1787, 128, '2.4.11', '12/26/2016', '05/31/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1788, 128, '2.3.0', '02/28/2013', '06/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1789, 128, '2.3.1', '02/28/2013', '06/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1790, 128, '2.3.2', '02/28/2013', '06/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1791, 128, '2.3.3', '02/28/2013', '06/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1792, 128, '2.3.4', '02/28/2013', '06/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1793, 128, '2.3.5', '02/28/2013', '06/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1794, 128, '2.3.6', '02/28/2013', '06/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1795, 128, '2.3.7', '02/28/2013', '06/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1796, 128, '2.3.8', '02/28/2013', '06/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1797, 128, '2.3.9', '02/28/2013', '06/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1798, 128, '2.3.10', '02/28/2013', '06/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1799, 128, '2.3.11', '02/28/2013', '06/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1800, 128, '2.3.12', '02/28/2013', '06/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1801, 128, '2.3.13', '02/28/2013', '06/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1802, 128, '2.3.14', '02/28/2013', '06/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1803, 128, '2.3.15', '02/28/2013', '06/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1804, 128, '2.3.16', '02/28/2013', '06/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1805, 128, '2.3.17', '02/28/2013', '06/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1806, 128, '2.3.18', '02/28/2013', '06/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1807, 128, '2.2.0', '04/21/2011', '11/30/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1808, 128, '2.2.1', '04/21/2011', '11/30/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1809, 128, '2.2.2', '04/21/2011', '11/30/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1810, 128, '2.2.3', '04/21/2011', '11/30/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1811, 128, '2.1.0', '12/11/2009', '11/30/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1812, 128, '2.1.1', '12/11/2009', '11/30/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1813, 128, '2.1.2', '12/11/2009', '11/30/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1814, 128, '2.1.3', '12/11/2009', '11/30/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1815, 128, '2.1.4', '12/11/2009', '11/30/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1816, 215, '15', '03/31/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1817, 215, '16', '11/30/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1818, 117, '1', '11/09/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1819, 117, '1.5', '11/30/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1820, 117, '2', '10/24/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1821, 117, '3', '06/17/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1822, 117, '3.5', '06/30/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1823, 117, '3.6', '01/21/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1824, 117, '4', '10/13/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1825, 146, '1', '03/31/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1826, 146, '1.1', '12/31/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1827, 146, '1.2.1', '08/31/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1828, 146, '1.5', '04/30/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1829, 146, '1.5.1', '06/30/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1830, 146, '1.5.3', '12/31/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1831, 146, '1.5.4', '03/31/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1832, 146, '1.5.5', '07/31/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1833, 146, '2.1', '12/31/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1834, 146, '3', '03/31/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1835, 146, '3.1', '02/28/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1836, 146, '3.2', '08/31/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1837, 146, '4', '12/31/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1838, 146, '4.0.1', '02/28/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1839, 146, '4.0.2', '05/31/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1840, 146, '4.0.3', '09/30/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1841, 146, '4.1.1', '06/30/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1842, 146, '4.1.2', '10/31/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1843, 146, '4.1.3', '12/31/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1844, 146, '4.1.5', '09/30/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1845, 146, '4.2.0', '04/30/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1846, 146, '17.2', '07/31/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1847, 146, '17.4', '12/31/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1848, 146, '18.1', '04/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1849, 146, '18.2', '07/31/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1850, 146, '18.3', '10/31/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1851, 146, '18.4', '01/31/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1852, 146, '19.1', '04/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1853, 146, '19.2', '08/31/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1854, 146, '19.4', '12/31/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1855, 146, '20.2', '06/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1856, 146, '20.4', '01/31/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1857, 146, '20.4.1', '02/28/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1858, 146, '21.2', '08/31/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1859, 241, '2.16.0', '11/23/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1860, 241, '2.15.2', '01/28/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1861, 241, '2.14.0', '02/02/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1862, 241, '2.13.20', '10/20/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1863, 241, '2.12.0', '03/05/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1864, 241, '2.11.1', '07/11/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1865, 241, '2.9.1', '04/23/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1866, 241, '2.8', '03/04/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1867, 241, '2.7.1', '11/16/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1868, 241, ' ', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1869, 115, ' ', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1870, 86, ' ', '12/31/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1871, 4, '1', '06/15/1993', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1872, 4, '2', '09/01/1994', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1873, 4, '3', '11/01/1996', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1874, 4, '4', '04/01/1999', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1875, 4, '5', '05/01/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1876, 4, '6', '07/01/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1877, 4, '7', '12/28/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1878, 4, '8', '11/03/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1879, 4, '9', '06/02/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1880, 4, '10', '11/15/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1881, 4, '11', '10/15/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1882, 4, '2015', '04/06/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1883, 4, '2017', '06/06/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1884, 4, '2020', '06/01/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1885, 101, '1.5', '12/31/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1886, 101, '2012', '09/30/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1887, 101, '7 ', '02/28/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1888, 101, '7.0.4.17', '05/27/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1889, 88, '2.8', '09/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1890, 88, '2.81', '10/31/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1891, 125, '20.03', '03/31/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1892, 125, '21.05', '05/31/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1893, 234, '8.6', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1894, 234, '8.5.1', '05/22/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1895, 231, '7.0.0', '04/02/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1896, 231, '6.7', '04/17/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1897, 231, '6.5', '11/15/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1898, 231, '6', '03/12/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1899, 231, '5.5', '09/22/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1900, 231, '5', '08/24/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1901, 56, '5', '09/30/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1902, 56, '6', '09/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1903, 57, '1', '04/30/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1904, 57, '2.7.7', '05/31/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1905, 57, '2.8.5', '09/15/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1906, 57, '2.9.2', '11/09/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1907, 57, '2.10.1', '09/21/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1908, 57, '3.1.4', '08/03/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1909, 57, '3.2.2', '01/09/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1910, 57, '3.3.1', '06/15/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1911, 124, '3.29.1', '12/24/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1912, 124, '3.29', '12/04/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1913, 124, '3.28.1', '10/19/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1914, 124, '3.28', '10/01/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1915, 124, '3.27', '09/03/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1916, 124, '3.26.1', '08/12/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1917, 124, '3.26', '08/10/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1918, 124, '3.25.1', '07/29/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1919, 124, '3.25', '07/13/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1920, 124, '3.24', '06/08/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1921, 124, '3.23', '05/05/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1922, 124, '3.22.1', '04/16/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1923, 124, '3.22.0', '03/27/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1924, 124, '3', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1925, 188, '6', '10/01/2013', '10/22/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1926, 188, '6.1', '05/06/2014', '10/22/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1927, 188, '6.2', '10/07/2014', '10/22/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1928, 188, '6.3', '09/22/2015', '10/22/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1929, 188, '6.4', '04/05/2016', '10/22/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1930, 188, '6.5', '09/27/2016', '10/22/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1931, 188, '6.6', '05/02/2017', '01/31/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1932, 188, '7', '09/26/2017', '01/31/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1933, 188, '7.1', '04/24/2018', '10/31/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1934, 188, '7.2', '10/02/2018', '04/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1935, 188, '7.3', '06/04/2019', '10/22/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1936, 188, '8', '10/22/2019', '10/22/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1937, 188, '8.1', '10/19/2020', '10/19/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1938, 188, '8.2', '05/12/2021', '05/12/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1939, 151, '7', '12/31/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1940, 151, '7.5', '12/31/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1941, 151, '9', '12/31/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1942, 151, '9.1', '12/31/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1943, 151, '9.2', '12/31/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1944, 84, '12.1.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1945, 84, '13.1.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1946, 84, '14.1.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1947, 84, '15.1.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1948, 84, '15.2.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1949, 181, '2013', '08/31/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1950, 181, '2016', '04/30/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1951, 181, '2019', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1952, 192, ' ', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1953, 6, '5.16.3', '08/17/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1954, 6, '5.16.2', '04/28/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1955, 6, '5.16.1', '01/20/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1956, 6, '5.16.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1957, 6, '5.15.15', '04/28/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1958, 6, '5.15.14', '12/09/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1959, 6, '5.15.13', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1960, 6, '5.15.12', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1961, 6, '5.15.11', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1962, 6, '5.15.10', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1963, 6, '5.15.9', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1964, 6, '5.15.8', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1965, 6, '5.15.7', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1966, 6, '5.15.6', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1967, 6, '5.15.5', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1968, 6, '5.15.4', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1969, 6, '5.15.3', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1970, 6, '5.15.2', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1971, 6, '5.15.1', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1972, 6, '5.15.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1973, 6, '5.14.5', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1974, 6, '5.14.4', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1975, 6, '5.14.3', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1976, 6, '5.14.2', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1977, 6, '5.14.1', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1978, 6, '5.14.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1979, 6, '5.13.4', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1980, 6, '5.13.3', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1981, 6, '5.13.2', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1982, 6, '5.13.1', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1983, 6, '5.13.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1984, 6, '5.12.2', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1985, 6, '5.12.1', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1986, 6, '5.12.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1987, 6, '5.11.3', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1988, 6, '5.11.2', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1989, 6, '5.11.1', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1990, 6, '5.11.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1991, 6, '5.10.2', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1992, 6, '5.10.1', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1993, 6, '5.10.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1994, 6, '5.9.1', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1995, 6, '5.9.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1996, 6, '5.8.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1997, 6, '5.7.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1998, 6, '5.6.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1999, 6, '5.5.1', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2000, 6, '5.5.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2001, 6, '5.4.3', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2002, 6, '5.4.2', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2003, 6, '5.4.1', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2004, 6, '5.4.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2005, 6, '5.3.2', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2006, 6, '5.3.1', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2007, 6, '5.3.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2008, 6, '5.2.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2009, 6, '5.1.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2010, 6, '5.0.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2011, 240, '10', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2012, 240, '9.2', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2013, 248, '0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2014, 248, '1', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2015, 248, '2', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2016, 248, '3', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2017, 248, '4', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2018, 79, '9.2', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2019, 79, '9.1', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2020, 79, '8.6', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2021, 83, '8.2', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2022, 83, '8.3', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2023, 83, '9', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2024, 83, '10', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2025, 157, '14', '09/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2026, 157, '13', '09/24/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2027, 157, '12', '10/03/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2028, 157, '11', '10/18/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2029, 157, '10', '10/05/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2030, 157, '9.6', '09/29/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2031, 157, '9.5', '01/07/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2032, 157, '9.4', '12/18/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2033, 157, '9.3', '09/09/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2034, 157, '9.2', '09/10/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2035, 157, '9.1', '09/12/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2036, 157, '9', '09/20/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2037, 157, '8.4', '07/01/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2038, 157, '8.3', '02/04/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2039, 157, '8.2', '12/05/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2040, 157, '8.1', '11/08/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2041, 157, '8', '01/19/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2042, 157, '7.4', '11/17/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2043, 157, '7.3', '11/27/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2044, 157, '7.2', '02/04/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2045, 157, '7.1', '04/13/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2046, 157, '7', '05/08/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2047, 157, '6.5', '06/09/1999', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2048, 157, '6.4', '10/30/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2049, 157, '6.3', '03/01/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2050, 11, '1', '12/31/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2051, 11, '1.3', '12/31/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2052, 11, '1.4', '12/31/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2053, 11, '4', '10/31/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2054, 11, '5', '10/31/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2055, 11, '6', '04/30/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2056, 11, '7', '09/30/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2057, 11, '8', '03/31/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2058, 73, '08.10.05', '12/18/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2059, 73, '08.10.02', '06/19/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2060, 73, '08.10.00', '12/07/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2061, 73, '08.09.02', '03/23/2018', '04/30/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2062, 73, '08.09.01', '11/10/2017', '04/30/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2063, 73, '08.09.00', '03/03/2017', '04/30/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2064, 73, '08.08.01', '07/19/2016', '04/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2065, 73, '08.08.00', '11/27/2015', '04/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2066, 73, '08.07.01', '05/15/2015', '04/30/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2067, 73, '08.07.00', '12/05/2014', '04/30/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2068, 73, '08.06.00', '06/06/2014', '09/30/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2069, 73, '08.05.01', '11/29/2013', '09/30/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2070, 73, '08.05.00', '06/07/2013', '09/30/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2071, 73, '08.00.01', '12/30/2012', '09/30/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2072, 73, '08.00.00', '06/08/2012', '09/30/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2073, 73, '07.05.00', '11/18/2011', '04/30/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2074, 73, '07.01.00', '10/15/2010', '09/30/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2075, 176, '7.6', '12/31/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2076, 176, '7.7', '12/31/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2077, 176, '7.8', '12/31/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2078, 176, '7.9', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2079, 120, '1.0', '12/31/1989', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2080, 120, '1.1', '12/31/1990', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2081, 120, '4.2A', '12/31/1990', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2082, 120, '4.2B', '12/31/1993', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2083, 120, '4.21', '12/31/1993', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2084, 120, '6', '12/31/1995', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2085, 120, '6.5', '12/31/1996', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2086, 120, '7', '12/31/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2087, 120, '8', '12/31/2000', '04/08/2008'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2088, 120, '9', '01/14/2006', '04/12/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2089, 120, '10', '11/06/2008', '07/08/2014'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2090, 120, '10.25', '12/31/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2091, 120, '10.5', '07/20/2010', '07/08/2014'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2092, 120, '11', '05/20/2012', '07/11/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2093, 120, '12', '06/05/2014', '07/09/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2094, 120, '13', '06/01/2016', '07/13/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2095, 120, '14', '09/29/2017', '10/11/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2096, 120, '15', '11/04/2019', '01/07/2025'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2097, 121, '1.0', '10/26/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2098, 121, '2.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2099, 121, '3.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2100, 121, '3.1', '02/19/2007', '04/12/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2101, 121, '3.5', '02/19/2008', '04/10/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2102, 121, '4.0', '04/13/2011', '07/13/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2103, 31, ' ', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2104, 190, '3', '12/31/1988', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2105, 190, '4', '12/31/1990', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2106, 190, '4.2', '12/31/1991', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2107, 190, '4.8', '12/31/1992', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2108, 190, '4.9', '12/31/1992', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2109, 190, '4.9.1', '12/31/1993', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2110, 190, '4.9.2', '12/31/1993', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2111, 190, '11', '12/31/1995', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2112, 190, '11.5', '12/31/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2113, 190, '11.9', '12/31/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2114, 190, '11.9.2', '12/31/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2115, 190, '12', '12/31/1999', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2116, 190, '12.5', '12/31/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2117, 190, '12.5.0.1', '12/31/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2118, 190, '12.5.0.3', '12/31/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2119, 190, '12.5.2', '12/31/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2120, 190, '12.5.3', '12/31/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2121, 190, '12.5.4', '12/31/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2122, 190, '15', '12/31/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2123, 190, '15.0.1', '12/31/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2124, 190, '15.0.2', '12/31/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2125, 190, '15.5', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2126, 190, '16', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2127, 436, '12.04.5', '07/08/2014', '04/28/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2128, 436, '12.04.5', '07/08/2014', '04/28/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2129, 436, '12.04.5', '07/08/2014', '04/28/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2130, 436, '14.04.6', '03/07/2019', '04/30/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2131, 436, '14.04.6', '03/07/2019', '04/30/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2132, 436, '14.04.6', '03/07/2019', '04/30/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2133, 436, '16.04.7', '08/18/2020', '04/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2134, 436, '16.04.7', '08/18/2020', '04/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2135, 436, '16.04.7', '08/18/2020', '04/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2136, 436, '16.04.7', '08/18/2020', '04/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2137, 436, '18.04.5', '08/13/2020', '04/30/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2138, 436, '18.04.5', '08/13/2020', '04/30/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2139, 436, '18.04.5', '08/13/2020', '04/30/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2140, 436, '18.04.5', '08/13/2020', '04/30/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2141, 436, '20.04.1', '08/06/2020', '04/30/2025'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2142, 436, '20.04.1', '08/06/2020', '04/30/2025'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2143, 436, '20.04.1', '08/06/2020', '04/30/2025'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2144, 436, '20.04.1', '08/06/2020', '04/30/2025'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2145, 436, '20.10', '10/22/2020', '07/22/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2146, 436, '20.10', '10/22/2020', '07/22/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2147, 436, '4.1', '10/26/2004', '04/30/2006'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2148, 436, '5.04', '04/08/2005', '10/31/2006'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2149, 436, '5.1', '10/12/2005', '04/13/2007'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2150, 436, '6.06.0', '06/01/2006', '07/14/2009'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2151, 436, '6.06.1', '08/10/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2152, 436, '6.06.2', '01/21/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2153, 436, '6.1', '10/26/2006', '04/26/2008'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2154, 436, '7.04', '04/19/2007', '10/19/2008'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2155, 436, '7.1', '10/18/2007', '04/18/2009'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2156, 436, '8.04.0', '04/24/2008', '05/12/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2157, 436, '8.04.1', '07/03/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2158, 436, '8.04.2', '01/22/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2159, 436, '8.04.3', '07/16/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2160, 436, '8.04.4', '01/28/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2161, 436, '8.1', '10/30/2008', '04/30/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2162, 436, '9.04', '04/23/2009', '10/23/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2163, 436, '9.1', '08/23/2013', '04/30/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2164, 436, '10.04.0', '10/21/2015', '05/09/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2165, 436, '10.04.1', '10/21/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2166, 436, '10.04.2', '10/21/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2167, 436, '10.04.3', '10/21/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2168, 436, '10.04.4', '10/21/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2169, 436, '10.1', '08/23/2013', '04/10/2012'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2170, 436, '11.04', '08/23/2013', '10/28/2012'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2171, 436, '11.1', '08/23/2013', '05/09/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2172, 436, '12.04.0', '04/27/2018', '04/28/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2173, 436, '12.04.1', '04/27/2018', '04/28/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2174, 436, '12.04.2', '04/27/2018', '08/08/2014'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2175, 436, '12.04.3', '04/27/2018', '08/08/2014'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2176, 436, '12.04.4', '04/27/2018', '08/08/2014'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2177, 436, '12.1', '04/22/2016', '05/16/2014'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2178, 436, '13.04', '04/22/2016', '01/27/2014'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2179, 436, '13.1', '04/22/2016', '07/17/2014'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2180, 436, '14.04.0', '03/07/2019', '04/30/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2181, 436, '14.04.1', '03/07/2019', '04/30/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2182, 436, '14.04.2', '03/07/2019', '08/31/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2183, 436, '14.04.3', '03/07/2019', '08/31/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2184, 436, '14.04.4', '03/07/2019', '08/31/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2185, 436, '14.04.5', '03/07/2019', '04/30/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2186, 436, '14.1', '04/22/2016', '07/23/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2187, 436, '15.04', '04/28/2016', '02/04/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2188, 436, '15.1', '08/04/2016', '07/28/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2189, 436, '16.04.0', '08/13/2020', '04/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2190, 436, '16.04.1', '08/13/2020', '04/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2191, 436, '16.04.2', '08/13/2020', '04/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2192, 436, '16.04.3', '08/13/2020', '04/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2193, 436, '16.04.4', '08/13/2020', '04/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2194, 436, '16.04.5', '08/13/2020', '04/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2195, 436, '16.1', '07/21/2017', '07/20/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2196, 436, '17.04', '02/07/2018', '01/13/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2197, 436, '17.1', '08/02/2018', '07/19/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2198, 436, '18.04.0', '08/13/2020', '04/30/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2199, 436, '18.04.1', '08/13/2020', '04/30/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2200, 436, '18.04.2', '08/13/2020', '04/30/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2201, 436, '18.04.3', '08/13/2020', '04/30/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2202, 436, '18.04.4', '08/13/2020', '04/30/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2203, 436, '18.1', '08/08/2019', '07/18/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2204, 436, '19.04', '08/18/2020', '04/18/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2205, 436, '19.1', '08/21/2020', '10/17/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2206, 436, '20.04.0', '02/11/2021', '04/30/2025'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2207, 436, '20.04.1', '02/11/2021', '04/30/2025'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2208, 436, '20.04', '02/11/2021', '04/30/2025'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2209, 436, '20.1', '10/22/2020', '01/31/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2210, 434, '8.3', '11/03/2020', '05/31/2029'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2211, 434, '8.2', '04/28/2020', '05/31/2029'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2212, 434, '8.1', '11/05/2019', '05/31/2029'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2213, 434, '8', '05/07/2019', '05/31/2029'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2214, 434, '7.9', '09/29/2020', '06/30/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2215, 434, '7.8', '03/31/2020', '06/30/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2216, 434, '7.7', '08/06/2019', '06/30/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2217, 434, '7.6', '10/30/2018', '06/30/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2218, 434, '7.5', '04/10/2018', '06/30/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2219, 434, '7.4', '07/31/2017', '06/30/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2220, 434, '7.3', '11/03/2016', '06/30/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2221, 434, '7.2', '11/19/2015', '06/30/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2222, 434, '7.1', '03/05/2015', '06/30/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2223, 434, '7.0', '06/09/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2224, 434, '7.0', '12/11/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2225, 434, '6.10', '06/19/2018', '11/30/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2226, 434, '6.9', '03/21/2017', '11/30/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2227, 434, '6.8', '05/10/2016', '11/30/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2228, 434, '6.7', '07/22/2015', '11/30/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2229, 434, '6.6', '10/14/2014', '11/30/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2230, 434, '6.5', '11/21/2013', '11/30/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2231, 434, '6.4', '02/21/2013', '11/30/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2232, 434, '6.3', '06/20/2012', '11/30/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2233, 434, '6.2', '12/06/2011', '11/30/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2234, 434, '6.1', '05/19/2011', '11/30/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2235, 434, '6.0', '11/09/2010', '11/30/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2236, 434, '5.11', '09/16/2014', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2237, 434, '5.10', '10/01/2013', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2238, 434, '5.9', '01/07/2013', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2239, 434, '5.8', '02/20/2012', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2240, 434, '5.7', '07/21/2011', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2241, 434, '5.6', '01/13/2011', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2242, 434, '5.5', '03/30/2010', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2243, 434, '5.4', '09/02/2009', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2244, 434, '5.3', '01/20/2009', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2245, 434, '5.2', '05/21/2008', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2246, 434, '5.1', '11/07/2007', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2247, 434, '5.0', '03/15/2007', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2248, 434, '4.9', '02/16/2011', '02/16/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2249, 434, '4.8', '05/19/2009', '02/16/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2250, 434, '4.7', '07/29/2008', '02/16/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2251, 434, '4.6', '11/15/2007', '02/16/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2252, 434, '4.5', '05/01/2007', '02/16/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2253, 434, '4.4', '08/10/2006', '02/16/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2254, 434, '4.3', '03/12/2006', '02/16/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2255, 434, '4.2', '10/05/2005', '02/16/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2256, 434, '4.1', '06/08/2005', '02/16/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2257, 434, '4', '02/15/2005', '02/16/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2258, 434, '3.9', '06/20/2007', '10/21/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2259, 434, '3.8', '07/20/2006', '10/21/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2260, 434, '3.7', '03/17/2006', '10/21/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2261, 434, '3.6', '09/28/2005', '10/21/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2262, 434, '3.5', '05/18/2005', '10/21/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2263, 434, '3.4', '12/12/2004', '10/21/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2264, 434, '3.3', '09/03/2004', '10/21/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2265, 434, '3.2', '05/12/2004', '10/21/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2266, 434, '3.1', '01/16/2004', '10/21/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2267, 434, '3', '10/22/2003', '10/21/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2268, 434, '2.1.7', '04/28/2005', '05/31/2009'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2269, 434, '2.1.6', '12/13/2004', '05/31/2009'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2270, 434, '2.1.5', '08/18/2004', '05/31/2009'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2271, 434, '2.1.4', '04/21/2004', '05/31/2009'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2272, 434, '2.1.3', '12/19/2004', '05/31/2009'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2273, 434, '2.1.2', '03/29/2003', '05/31/2009'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2274, 434, '2.1.1', '02/14/2003', '05/31/2009'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2275, 434, '2.1', '03/23/2002', '05/31/2009'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2276, 429, '0.9', '08/01/1993', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2277, 429, '0.91', '01/01/1994', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2278, 429, '0.93R5', '03/01/1995', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2279, 429, '0.93R6', '11/01/1995', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2280, 429, '1', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2281, 429, '1.1', '06/17/1996', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2282, 429, '1.2', '12/12/1996', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2283, 429, '1.3', '06/05/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2284, 429, '2.0', '07/24/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2285, 429, '2.1', '03/09/1999', '09/30/2000'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2286, 429, '2.2', '08/15/2000', '06/30/2003'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2287, 429, '3.0', '07/19/2002', '06/30/2006'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2288, 429, '3.1', '06/06/2005', '03/31/2008'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2289, 429, '4.0', '04/08/2007', '02/15/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2290, 429, '5.0', '02/14/2009', '02/06/2012'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2291, 429, '6.0', '02/06/2011', '05/31/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2292, 429, '7', '05/04/2013', '04/26/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2293, 429, '8', '04/26/2015', '06/30/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2294, 429, '9', '06/17/2017', '01/31/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2295, 429, '10', '07/06/2019', '01/31/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2296, 429, '11', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2297, 429, '12', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2298, 429, '13', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2299, 427, '2.1', '08/19/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2300, 427, '3.1', '07/31/2005', '10/31/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2301, 427, '3.3', '03/17/2005', '10/31/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2302, 427, '3.4', '03/01/2005', '10/31/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2303, 427, '3.5', '07/28/2005', '10/31/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2304, 427, '3.6', '04/04/2006', '10/31/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2305, 427, '3.7', '05/06/2006', '10/31/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2306, 427, '3.8', '04/20/2012', '10/31/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2307, 427, '3.9', '04/20/2012', '10/31/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2308, 427, '4', '06/23/2005', '02/29/2012'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2309, 427, '4.0', '09/15/2005', '02/29/2012'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2310, 427, '4.1', '10/19/2005', '02/29/2012'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2311, 427, '4.2', '11/04/2006', '02/29/2012'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2312, 427, '4.2.0', '10/23/2005', '02/29/2012'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2313, 427, '4.3', '08/27/2006', '02/29/2012'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2314, 427, '4.4', '11/01/2006', '02/29/2012'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2315, 427, '4.5', '12/08/2007', '02/29/2012'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2316, 427, '4.6', '09/18/2008', '02/29/2012'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2317, 427, '4.7', '02/14/2010', '02/29/2012'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2318, 427, '4.8', '04/20/2012', '02/29/2012'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2319, 427, '4.9', '04/20/2012', '02/29/2012'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2320, 427, '5', '04/11/2007', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2321, 427, '5.1', '11/27/2007', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2322, 427, '5.2', '06/18/2008', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2323, 427, '5.3', '02/14/2010', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2324, 427, '5.4', '06/25/2010', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2325, 427, '5.5', '05/14/2010', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2326, 427, '5.6', '08/12/2011', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2327, 427, '5.7', '09/13/2011', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2328, 427, '5.8', '02/27/2012', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2329, 427, '5.9', '01/12/2013', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2330, 427, '5.1', '10/07/2014', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2331, 427, '5.11', '09/27/2014', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2332, 427, '6', '12/19/2011', '05/10/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2333, 427, '6.1', '12/08/2011', '05/10/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2334, 427, '6.2', '12/19/2011', '05/10/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2335, 427, '6.3', '07/09/2012', '05/10/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2336, 427, '6.4', '06/20/2013', '05/10/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2337, 427, '6.5', '12/21/2013', '05/10/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2338, 427, '6.6', '07/31/2015', '05/10/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2339, 427, '6.7', '01/21/2016', '05/10/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2340, 427, '6.8', '05/24/2016', '05/10/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2341, 427, '6.9', '04/04/2017', '05/10/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2342, 427, '6.1', '07/02/2018', '05/10/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2343, 427, '7.0.1406', '04/07/2015', '08/06/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2344, 427, '7.1.1503', '11/13/2015', '08/06/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2345, 427, '7.2.1511', '05/18/2016', '08/06/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2346, 427, '7.3.1611', '02/20/2017', '08/06/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2347, 427, '7.4.1708', '02/26/2018', '08/06/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2348, 427, '7.5.1804', '05/09/2018', '08/06/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2349, 427, '7.6.1810', '12/02/2018', '08/06/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2350, 427, '7.7.1908', '09/15/2019', '08/06/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2351, 427, '7.8.2003', '06/17/2020', '08/06/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2352, 427, '7.9.2009', '01/18/2021', '08/06/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2353, 427, '8.0', '03/10/2021', '05/31/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2354, 427, '8.0.1905', '09/09/2020', '05/31/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2355, 427, '8.1.1911', '10/21/2020', '05/31/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2356, 427, '8.2.2004', '01/15/2021', '05/31/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2357, 427, '8.3.2011', '02/22/2021', '05/31/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2358, 453, '1', '11/05/2003', '09/20/2004'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2359, 453, '2', '05/18/2004', '04/11/2005'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2360, 453, '3', '11/08/2004', '01/16/2006'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2361, 453, '4', '06/13/2005', '08/07/2006'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2362, 453, '5', '03/20/2006', '07/02/2007'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2363, 453, '6', '10/24/2006', '12/07/2007'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2364, 453, '7', '05/31/2007', '06/13/2008'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2365, 453, '8', '11/08/2007', '01/07/2009'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2366, 453, '9', '05/13/2008', '07/10/2009'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2367, 453, '10', '11/25/2008', '12/17/2009'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2368, 453, '11', '06/09/2009', '06/25/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2369, 453, '12', '11/17/2009', '12/02/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2370, 453, '13', '05/25/2010', '06/24/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2371, 453, '14', '11/02/2010', '12/09/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2372, 453, '15', '05/24/2011', '06/26/2012'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2373, 453, '16', '11/08/2011', '02/12/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2374, 453, '17', '05/29/2012', '07/30/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2375, 453, '18', '01/15/2013', '01/14/2014'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2376, 453, '19', '07/02/2013', '01/06/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2377, 453, '20', '12/17/2013', '06/23/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2378, 453, '21', '12/09/2014', '01/12/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2379, 453, '22', '05/26/2015', '07/19/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2380, 453, '23', '11/03/2015', '12/20/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2381, 453, '24', '06/21/2016', '08/08/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2382, 453, '25', '11/22/2016', '12/12/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2383, 453, '26', '07/11/2017', '05/29/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2384, 453, '27', '11/14/2017', '11/30/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2385, 453, '28', '05/01/2018', '05/28/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2386, 453, '29', '10/30/2018', '11/26/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2387, 453, '30', '05/07/2019', '05/26/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2388, 453, '31', '10/29/2019', '11/24/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2389, 453, '32', '04/28/2020', '05/25/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2390, 453, '33', '10/27/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2391, 453, '34', '04/20/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2392, 453, '35', '10/19/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2393, 432, '4.5', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2394, 432, '4.6', '12/10/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2395, 432, '4.7', '08/05/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2396, 432, '4.8', '05/26/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2397, 432, '4.9', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2398, 432, '5', '06/26/2007', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2399, 432, '5.1', '11/26/2007', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2400, 432, '5.2', '06/02/2008', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2401, 432, '5.3', '01/28/2009', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2402, 432, '5.4', '09/09/2009', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2403, 432, '5.5', '04/07/2010', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2404, 432, '5.6', '01/22/2011', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2405, 432, '5.7', '08/16/2011', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2406, 432, '5.8', '03/02/2012', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2407, 432, '5.9', '01/16/2013', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2408, 432, '5.1', '10/08/2013', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2409, 432, '5.11', '09/23/2014', '03/31/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2410, 432, '6', '02/11/2011', '03/31/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2411, 432, '6.1', '06/01/2011', '03/31/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2412, 432, '6.2', '12/15/2011', '03/31/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2413, 432, '6.3', '06/28/2012', '03/31/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2414, 432, '6.4', '02/28/2013', '03/31/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2415, 432, '6.5', '11/27/2013', '03/31/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2416, 432, '6.6', '10/21/2014', '03/31/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2417, 432, '6.7', '07/31/2015', '03/31/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2418, 432, ' ', '03/31/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2419, 432, '6.8', '05/16/2016', '03/31/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2420, 432, '6.9', '03/28/2017', '03/31/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2421, 432, '6.1', '07/02/2018', '03/31/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2422, 432, '7', '07/23/2014', '07/31/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2423, 432, '7.1', '03/12/2015', '07/31/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2424, 432, '7.2', '11/25/2015', '07/31/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2425, 432, '7.3', '11/10/2016', '07/31/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2426, 432, '7.4', '08/08/2017', '07/31/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2427, 432, '7.5', '04/17/2018', '07/31/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2428, 432, '7.6', '11/07/2018', '07/31/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2429, 432, '7.7', '08/15/2019', '07/31/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2430, 432, '7.8', '04/08/2020', '07/31/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2431, 432, '7.9', '10/07/2020', '07/31/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2432, 432, '8', '07/18/2019', '07/31/2029'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2433, 432, '8.1', '11/15/2019', '07/31/2029'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2434, 432, '8.2', '05/06/2020', '07/31/2029'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2435, 432, '8.3', '11/13/2020', '07/31/2029'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2436, 454, '2011.09', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2437, 454, '2012.03.3', '06/27/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2438, 454, '2012.09.1', '02/19/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2439, 454, '2013.03', '05/13/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2440, 454, '2013.03.1', '05/13/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2441, 454, '2013.09.1', '11/11/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2442, 454, '2013.09.2', '12/12/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2443, 454, '2014.03.1', '04/14/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2444, 454, '2014.03.2', '06/16/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2445, 454, '2014.09.1', '10/14/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2446, 454, '2014.09.2', '01/29/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2447, 454, '2015.03.1', '08/21/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2448, 454, '2015.09.2', '02/16/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2449, 454, '2016.03.1', '05/04/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2450, 454, '2016.03.2', '06/09/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2451, 454, '2016.03.3', '06/28/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2452, 454, '2016.09.1', '12/22/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2453, 454, '2017.03', '06/19/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2454, 454, '2017.09', '11/06/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2455, 454, '2018.03', '05/14/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2456, 431, '10.2', '12/07/2006', '11/30/2008'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2457, 431, '10.3', '10/04/2007', '10/31/2009'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2458, 431, '11', '06/19/2008', '07/26/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2459, 431, '11.1', '12/18/2008', '01/14/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2460, 431, '11.2', '11/12/2009', '05/12/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2461, 431, '11.3', '07/15/2010', '01/20/2012'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2462, 431, '11.4', '03/10/2011', '11/05/2012'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2463, 431, '12.1', '11/16/2011', '05/15/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2464, 431, '12.2', '09/05/2012', '01/15/2014'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2465, 431, '12.3', '03/13/2013', '01/29/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2466, 431, '13.1', '11/19/2013', '02/03/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2467, 431, '13.2', '11/04/2014', '01/17/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2468, 431, '42.1', '11/04/2015', '05/17/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2469, 431, '42.2', '11/16/2016', '01/26/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2470, 431, '42.3', '07/26/2017', '07/01/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2471, 431, '15', '05/25/2018', '12/03/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2472, 431, '15.1', '05/22/2019', '02/02/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2473, 431, '15.2', '07/02/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2474, 431, '15.3', '07/07/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2475, 435, 'SuSE Linux Enterprise Server S/390', '10/31/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2476, 435, 'Sparc', '04/01/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2477, 435, 'IAs32', '04/01/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2478, 435, '7', '10/13/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2479, 435, '8', '10/01/2002', '12/20/2007'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2480, 435, '8 SP1', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2481, 435, '8 SP2', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2482, 435, '8 SP2a', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2483, 435, '8 SP3', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2484, 435, '8 SP4', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2485, 435, '9', '08/03/2004', '08/31/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2486, 435, '9 SP1', '01/19/2005', '08/31/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2487, 435, '9 SP2', '07/07/2005', '08/31/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2488, 435, '9 SP3', '12/22/2005', '08/31/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2489, 435, '9 SP4', '12/12/2007', '08/31/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2490, 435, '10', '06/17/2006', '07/31/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2491, 435, '10 SP1', '06/18/2007', '07/31/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2492, 435, '10 SP2', '05/19/2008', '07/31/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2493, 435, '10 SP3', '10/12/2009', '07/31/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2494, 435, '10 SP4', '04/12/2011', '07/31/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2495, 435, '11', '03/24/2009', '03/31/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2496, 435, '11 SP1', '06/02/2010', '03/31/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2497, 435, '11 SP2', '02/15/2012', '03/31/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2498, 435, '11 SP3', '07/01/2013', '03/31/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2499, 435, '11 SP4', '07/16/2015', '03/31/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2500, 435, '12', '10/27/2014', '08/31/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2501, 435, '12 SP1', '01/12/2016', '08/31/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2502, 435, '12 SP2', '11/11/2016', '08/31/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2503, 435, '12 SP3', '09/07/2017', '08/31/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2504, 435, '12 SP4', '12/11/2018', '08/31/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2505, 435, '12 SP5', '12/09/2019', '08/31/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2506, 435, '15', '07/16/2018', '07/31/2028'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2507, 435, '15 SP1', '06/24/2019', '07/31/2028'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2508, 435, '15 SP2', '07/21/2020', '07/31/2028'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2509, 430, '20.4', '12/25/2020', '06/25/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2510, 430, '20.3', '09/29/2020', '03/29/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2511, 430, '20.2', '06/30/2020', '12/30/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2512, 430, '20.1', '03/27/2020', '09/27/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2513, 430, '19.4', '12/26/2019', '06/26/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2514, 430, '19.3', '09/26/2019', '03/26/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2515, 430, '19.2', '06/26/2019', '12/26/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2516, 430, '19.1', '03/27/2019', '09/27/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2517, 430, '18.4', '12/22/2018', '06/22/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2518, 430, '18.3', '09/26/2018', '03/26/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2519, 430, '18.2', '06/29/2018', '12/29/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2520, 430, '18.1', '03/28/2018', '09/28/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2521, 430, '17.4', '12/21/2017', '06/21/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2522, 430, '17.3', '08/25/2017', '02/25/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2523, 430, '17.2', '06/06/2017', '12/06/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2524, 430, '17.1', '03/03/2017', '09/03/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2525, 430, '16.2', '11/29/2016', '05/29/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2526, 430, '16.1', '07/28/2016', '01/28/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2527, 430, '15.1X53', '06/05/2015', '12/05/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2528, 430, '15.1X49', '06/30/2015', '06/30/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2529, 430, '15.1', '06/05/2015', '12/05/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2530, 430, '14.2', '11/05/2014', '05/05/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2531, 430, '14.1X53', '09/26/2014', '06/30/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2532, 430, '14.1', '06/13/2014', '06/13/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2533, 430, '13.3', '01/22/2014', '07/22/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2534, 430, '13.2X52', '07/06/2014', '06/30/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2535, 430, '13.2X51', '11/22/2013', '06/30/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2536, 430, '13.2X50', '06/28/2013', '12/28/2014'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2537, 430, '13.2', '08/29/2013', '02/29/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2538, 430, '13.1X50', '07/25/2013', '12/30/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2539, 430, '13.1', '03/15/2013', '09/15/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2540, 430, '12.3X54', '07/18/2014', '07/18/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2541, 430, '12.3X52', '08/23/2013', '02/23/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2542, 430, '12.3X51', '03/15/2013', '09/15/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2543, 430, '12.3X50', '12/08/2012', '07/31/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2544, 430, '12.3X48', '03/06/2015', '06/30/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2545, 430, '12.3', '01/31/2013', '07/31/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2546, 430, '12.2X50', '07/05/2012', '07/31/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2547, 430, '12.2', '09/05/2012', '03/05/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2548, 430, '12.1X49', '04/19/2012', '10/19/2014'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2549, 430, '12.1X48', '01/28/2013', '06/30/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2550, 430, '12.1X47', '08/18/2014', '02/18/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2551, 430, '12.1X46', '12/30/2013', '06/30/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2552, 430, '12.1X45', '07/17/2013', '01/17/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2553, 430, '12.1X44', '01/18/2013', '07/18/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2554, 430, '12.1', '03/28/2012', '09/28/2014'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2555, 430, '11.4', '12/21/2011', '06/21/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2556, 430, '11.3', '08/15/2011', '03/15/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2557, 430, '11.2', '08/03/2011', '02/15/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2558, 430, '11.1', '03/29/2011', '05/15/2012'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2559, 430, '10.41', '12/08/2010', '06/08/2014'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2560, 430, '10.3', '08/15/2010', '12/21/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2561, 430, '10.2', '05/28/2010', '11/15/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2562, 430, '10.1', '02/15/2010', '05/15/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2563, 430, '10.0', '11/04/2009', '05/15/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2564, 430, '9.6', '08/06/2009', '11/06/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2565, 430, '9.5', '04/14/2009', '08/15/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2566, 430, '9.4', '02/11/2009', '05/11/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2567, 430, '9.3', '11/14/2008', '05/15/2012'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2568, 430, '9.2', '08/12/2008', '11/12/2009'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2569, 430, '9.1', '04/28/2008', '07/28/2009'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2570, 430, '9.0', '02/15/2008', '05/15/2009'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2571, 430, '8.5', '11/16/2007', '05/16/2011'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2572, 430, '8.4', '08/09/2007', '11/09/2008'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2573, 430, '8.3', '04/18/2007', '07/18/2008'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2574, 430, '8.2', '02/15/2007', '05/15/2008'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2575, 430, '8.11', '11/06/2006', '05/06/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2576, 430, '8.0', '08/15/2006', '11/15/2007'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2577, 430, '7.6', '05/15/2006', '08/15/2007'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2578, 430, '7.5', '02/08/2006', '05/08/2007'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2579, 430, '7.4', '11/15/2005', '02/15/2007'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2580, 430, '7.3', '08/16/2005', '11/16/2006'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2581, 430, '7.2', '05/14/2005', '08/14/2006'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2582, 430, '7.1', '02/14/2005', '05/14/2006'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2583, 430, '7.0', '11/15/2004', '02/15/2006'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2584, 430, '6.4', '08/12/2004', '11/12/2005'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2585, 430, '6.3', '05/15/2004', '08/15/2005'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2586, 430, '6.2', '02/15/2004', '05/15/2005'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2587, 430, '6.1', '11/15/2003', '02/15/2005'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2588, 430, '6.0', '08/15/2003', '11/15/2004'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2589, 430, '5.7', '05/15/2003', '08/15/2004'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2590, 430, '5.6', '02/15/2003', '05/15/2004'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2591, 430, '5.5', '11/15/2002', '02/15/2004'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2592, 430, '5.4', '08/12/2002', '11/15/2003'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2593, 430, '5.3', '05/12/2002', '08/15/2003'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2594, 430, '5.2', '02/12/2002', '05/15/2003'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2595, 430, '5.1', '11/07/2001', '02/15/2003'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2596, 430, '5.0', '08/17/2001', '11/15/2002'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2597, 430, '4.4', '04/30/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2598, 430, '4.3', '01/31/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2599, 430, '4.2', '10/16/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2600, 430, '4.1', '08/15/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2601, 430, '4.0', '03/31/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2602, 433, '1', '06/16/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2603, 433, '2', '10/31/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2604, 433, '3', '02/07/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2605, 433, '4', '03/05/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2606, 322, '1', '10/01/1956', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2607, 322, '2', '12/31/1958', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2608, 322, '3', '12/31/1958', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2609, 322, '4', '12/31/1961', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2610, 322, '5.0', '12/31/1968', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2611, 322, '5.1', '12/31/1980', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2612, 322, '6', '12/31/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2613, 322, '66', '12/31/1966', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2614, 322, '77', '12/31/1978', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2615, 322, '90', '12/31/1991', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2616, 322, '95', '12/31/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2617, 322, '2003', '12/31/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2618, 322, '2008', '09/01/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2619, 322, '2018', '11/28/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2620, 337, 'ES1', '12/31/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2621, 337, 'ES2', '12/31/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2622, 337, 'ES3', '12/31/1999', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2623, 337, 'ES4', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2624, 337, 'ES5', '12/31/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2625, 337, 'ES6', '12/31/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2626, 343, '1', '12/31/1981', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2627, 343, '2', '12/31/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2628, 345, 'pascal', '12/31/2070', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2629, 345, 'Object pascal', '12/31/1985', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2630, 345, 'extended pascal', '12/31/1990', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2631, 345, 'Free pascal', '12/31/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2632, 345, 'smalltalk80', '12/31/1980', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2633, 363, 'ANSI smalltalk', '12/31/1988', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2634, 363, 'Ambrai smalltalk', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2635, 363, 'Dolphin smalltalk', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2636, 363, 'GNU smalltalk', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2637, 363, 'LSWsvision smalltalk', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2638, 363, 'Little smalltalk', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2639, 363, 'Resilient embedded smalltalk', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2640, 363, 'Object studio smalltalk', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2641, 363, 'Pocket smalltalk', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2642, 363, 'Public Domain smalltalk (PDST)', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2643, 363, 'Slate smalltalk', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2644, 363, 'Smalltalk Express', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2645, 363, 'smalltalk MT', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2646, 363, 'smalltalk X', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2647, 363, 'Squat smalltalk', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2648, 363, 'Squeak smalltalk', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2649, 363, 'Strong smalltalk', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2650, 363, 'Susie smalltalk', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2651, 363, 'Talks2 smalltalk', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2652, 363, 'VisualWorks smalltalk', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2653, 363, 'VisualAge smalltalk', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2654, 363, 'Vmx Quicknet smalltalk', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2655, 363, 'Zoku smalltalk', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2656, 324, '0.1.1', '07/02/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2657, 324, '0.2.0', '07/30/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2658, 324, '0.3.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2659, 324, '0.4.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2660, 324, '0.5.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2661, 324, '0.6.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2662, 324, '0.7.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2663, 324, '0.8.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2664, 324, '0.9.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2665, 324, '0.10.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2666, 324, '0.11.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2667, 324, '0.12.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2668, 324, '0.13.0', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2669, 324, '14', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2670, 324, '14.1', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2671, 324, '14.2', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2672, 324, '14.3', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2673, 324, '14.4', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2674, 324, '14.5', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2675, 324, '15', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2676, 360, '72', '01/31/1972', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2677, 360, '76', '07/31/1976', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2678, 360, '79.5', '04/30/1981', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2679, 360, '82.4', '01/31/1983', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2680, 360, '4.06', '03/31/1984', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2681, 360, '5.03', '07/31/1986', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2682, 360, '6.01', '01/31/1985', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2683, 360, '6.03', '03/31/1988', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2684, 360, '6.06', '03/31/1990', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2685, 360, '6.07', '04/30/1991', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2686, 360, '6.08', '03/31/1993', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2687, 360, '6.09', '10/31/1993', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2688, 360, '6.1', '10/31/1994', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2689, 360, '6.11', '10/31/1995', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2690, 360, '6.12', '11/30/1996', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2691, 360, '7', '10/31/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2692, 360, '8', '11/30/1999', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2693, 360, '8.1', '07/31/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2694, 360, '8.2', '03/31/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2695, 360, '9', '10/31/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2696, 360, '9.1', '12/31/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2697, 360, '9.1.3', '08/31/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2698, 360, '9.2', '03/31/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2699, 360, '9.2M2', '04/30/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2700, 360, '9.3', '07/31/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2701, 360, '9.3M2', '08/31/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2702, 360, '9.4', '07/31/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2703, 360, '9.4M1', '12/31/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2704, 360, '9.4M2', '08/31/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2705, 360, '9.4M3', '07/31/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2706, 360, '9.4M4', '11/30/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2707, 360, '9.4M5', '09/30/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2708, 360, '9.4M6', '11/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2709, 360, '9.4M7', '08/31/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2710, 367, '0.8', '10/31/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2711, 367, '0.9', '06/18/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2712, 367, '1', '04/12/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2713, 367, '1.1', '10/06/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2714, 367, '1.3', '11/12/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2715, 367, '1.4', '01/20/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2716, 367, '1.5', '07/20/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2717, 367, '1.6', '09/16/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2718, 367, '1.7', '11/30/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2719, 367, '1.8', '02/22/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2720, 367, '2', '09/22/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2721, 367, '2.1', '11/08/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2722, 367, '2.2', '02/22/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2723, 367, '2.3', '04/27/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2724, 367, '2.4', '06/27/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2725, 367, '2.5', '08/31/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2726, 367, '2.6', '10/31/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2727, 367, '2.7', '01/31/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2728, 367, '2.8', '03/27/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2729, 367, '2.9', '05/14/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2730, 367, '3', '07/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2731, 367, '3.1', '09/27/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2732, 367, '3.2', '11/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2733, 367, '3.3', '01/31/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2734, 367, '3.4', '03/29/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2735, 367, '3.5', '05/29/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2736, 367, '3.6', '08/28/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2737, 367, '3.7', '11/05/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2738, 367, '3.8', '02/20/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2739, 367, '3.9', '05/12/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2740, 367, '4', '08/20/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2741, 367, '4.1', '11/19/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2742, 367, '4.2', '02/25/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2743, 367, '4.3', '05/26/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2744, 367, '4.4', '08/26/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2745, 331, 'JDK Beta', '12/31/1995', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2746, 331, '1.0', '01/01/1996', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2747, 331, '1.1', '02/01/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2748, 331, '1.2', '12/01/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2749, 331, '1.3', '05/01/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2750, 331, '1.4', '02/01/2002', '10/01/2008'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2751, 331, '5.0', '09/01/2004', '11/01/2009'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2752, 331, '6', '12/01/2006', '04/01/2013'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2753, 331, '7', '07/01/2011', '04/01/2015'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2754, 331, '8', '03/01/2014', '12/01/1930'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2755, 331, '9', '09/01/2017', '03/01/2018'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2756, 331, '10', '03/01/2018', '09/01/2026'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2757, 331, '11', '09/01/2018', '10/01/2024'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2758, 331, '12', '03/01/2019', '09/01/2019'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2759, 331, '13', '09/01/2019', '03/01/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2760, 331, '14', '03/01/2020', '09/01/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2761, 331, '15', '09/01/2020', '03/01/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2762, 331, '16', '03/01/2021', '09/01/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2763, 331, '17', '09/01/2021', '09/01/2029'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2764, 331, '18', '03/01/2022', '09/01/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2765, 331, '19', '09/01/2022', '03/01/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2766, 331, '20', '03/01/2023', '01/09/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2767, 331, '21', '09/01/2023', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2768, 347, '1', '12/18/1987', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2769, 347, '4', '12/31/1993', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2770, 347, '5', '10/17/1994', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2771, 347, '5.001', '03/13/1995', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2772, 347, '5.002', '02/29/1996', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2773, 347, '5.003', '06/25/1996', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2774, 347, '5.004', '05/15/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2775, 347, '5.005', '07/22/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2776, 347, '5.6', '03/22/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2777, 347, '5.8', '07/18/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2778, 347, '5.10.0', '12/18/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2779, 347, '5.11', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2780, 347, '5.12', '04/12/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2781, 347, '5.12.3', '01/21/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2782, 347, '5.12.4', '06/20/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2783, 347, '5.12.5', '11/10/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2784, 347, '5.14', '05/14/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2785, 347, '5.16', '05/20/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2786, 347, '5.18', '05/18/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2787, 347, '5.20.0', '05/27/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2788, 368, '7.0', '12/31/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2789, 368, '7.1', '12/31/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2790, 368, '8.0', '12/31/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2791, 368, '9.0', '11/19/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2792, 368, '10.0', '04/01/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2793, 368, '11.0', '12/31/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2794, 368, '12.0', '12/31/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2795, 368, '14.0', '12/31/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2796, 368, '15.0', '12/31/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2797, 368, '16.0', '12/31/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2798, 315, '1', '09/01/1987', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2799, 315, '2', '04/01/1990', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2800, 315, '3', '10/01/1991', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2801, 315, '4', '01/01/1993', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2802, 315, '5', '03/01/1994', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2803, 315, '5.45.5', '02/04/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2804, 364, '1.0', '09/09/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2805, 364, '1.1', '10/22/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2806, 364, '1.2', '04/08/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2807, 364, '2.0', '09/21/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2808, 364, '2.1', '10/20/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2809, 364, '2.2', '03/21/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2810, 364, '2.2.1', '05/03/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2811, 364, '3.0', '09/13/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2812, 364, '3.0.1', '10/28/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2813, 364, '3.0.2', '12/13/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2814, 364, '3.1', '03/27/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2815, 364, '3.1.1', '04/21/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2816, 364, '4.0', '09/19/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2817, 364, '4.0.2', '11/01/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2818, 364, '4.0.3', '12/05/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2819, 364, '4.1', '03/29/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2820, 364, '4.1.1', '05/04/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2821, 364, '4.1.2', '05/31/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2822, 364, '4.1.3', '07/27/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2823, 364, '4.2', '09/17/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2824, 364, '4.2.1', '10/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2825, 364, '4.2.2', '02/04/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2826, 364, '4.2.3', '02/28/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2827, 364, '4.2.4', '03/29/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2828, 364, '5.0', '03/25/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2829, 364, '5.0.1', '04/18/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2830, 364, '5.0.2', '07/15/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2831, 364, '5.0.3', '08/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2832, 364, '5.1', '09/10/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2833, 364, '5.1.1', '10/11/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2834, 364, '5.1.2', '11/07/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2835, 364, '5.1.3', '12/13/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2836, 364, '5.1.4', '01/31/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2837, 364, '5.1.5', '03/09/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2838, 364, '5.2', '03/24/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2839, 364, '5.2.1', '03/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2840, 364, '5.2.2', '04/15/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2841, 364, '5.2.3', '04/29/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2842, 364, '5.2.4', '05/20/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2843, 364, '5.2.5', '08/05/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2844, 364, '5.3', '09/16/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2845, 364, '5.3.1', '11/13/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2846, 364, '5.3.2', '12/15/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2847, 364, '5.3.3', '01/25/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2848, 364, '5.4', '04/26/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2849, 364, '5.4.1', '05/25/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2850, 364, '5.4.2', '06/28/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2851, 364, '5.4.3', '09/09/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2852, 364, '5.5', '09/20/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2853, 341, 'ACL2', '12/31/1990', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2854, 341, 'Arc', '12/31/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2855, 341, 'AutoLISP', '12/31/1986', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2856, 341, 'BBN LISP', '12/31/2066', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2857, 341, 'Chez Scheme', '12/31/1985', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2858, 341, 'Chicken', '12/31/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2859, 341, 'Clojure', '12/31/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2860, 341, 'ANSI Common Lisp', '12/31/1994', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2861, 341, 'Common Lisp', '12/31/1984', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2862, 341, 'Dylan', '12/31/1992', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2863, 341, 'Emacs Lisp', '12/31/1976', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2864, 341, 'EuLisp', '12/31/1990', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2865, 341, 'Franz Lisp', '12/31/1980', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2866, 341, 'Game Oriented Assembly Lisp (GOAL)', '12/31/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2867, 341, 'Hy', '12/31/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2868, 341, 'Ikarus', '12/31/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2869, 341, 'Interlisp', '12/31/2067', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2870, 341, 'ISLISP', '12/31/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2871, 341, 'Le Lisp', '12/31/1981', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2872, 341, 'Lisp Flavored Erlang (LFE)', '12/31/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2873, 341, 'Lisp Machine Lisp', '12/31/1984', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2874, 341, 'Maclisp', '12/31/2066', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2875, 341, 'MultiLisp', '12/31/1980', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2876, 341, 'NIL', '12/31/2070', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2877, 341, 'OpenLisp', '12/31/1988', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2878, 341, 'Owl Lisp', '12/31/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2879, 341, 'PicoLisp', '12/31/1988', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2880, 341, 'Portable Standard Lisp', '12/31/1980', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2881, 341, 'Racket', '12/31/1994', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2882, 341, 'Scheme', '12/31/2070', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2883, 341, 'Scheme In One Defun (SIOD)', '12/31/1988', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2884, 341, 'SKILL', '12/31/1990', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2885, 341, 'TXR Lisp', '12/31/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2886, 354, '3.10.0', '10/04/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2887, 354, '3.9.7', '08/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2888, 354, '3.9.6', '06/28/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2889, 354, '3.9.5', '05/03/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2890, 354, '3.9.4', '04/04/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2891, 354, '3.9.3', '04/02/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2892, 354, '3.9.2', '02/19/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2893, 354, '3.9.1', '12/08/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2894, 354, '3.9.0', '10/05/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2895, 354, '3.8.12', '08/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2896, 354, '3.8.11', '06/28/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2897, 354, '3.8.10', '05/03/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2898, 354, '3.8.9', '04/02/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2899, 354, '3.8.8', '02/19/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2900, 354, '3.8.7', '12/21/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2901, 354, '3.8.6', '09/23/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2902, 354, '3.8.5', '07/20/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2903, 354, '3.8.4', '07/13/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2904, 354, '3.8.3', '05/13/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2905, 354, '3.8.2', '02/24/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2906, 354, '3.8.1', '12/18/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2907, 354, '3.8.0', '10/14/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2908, 354, '3.7.12', '09/04/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2909, 354, '3.7.11', '06/28/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2910, 354, '3.7.10', '02/15/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2911, 354, '3.7.9', '08/17/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2912, 354, '3.7.8', '06/27/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2913, 354, '3.7.7', '03/10/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2914, 354, '3.7.6', '12/18/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2915, 354, '3.7.5', '10/15/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2916, 354, '3.7.4', '07/08/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2917, 354, '3.7.3', '03/25/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2918, 354, '3.7.2', '12/24/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2919, 354, '3.7.1', '10/20/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2920, 354, '3.7.0', '06/27/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2921, 354, '3.6.15', '09/04/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2922, 354, '3.6.14', '06/28/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2923, 354, '3.6.13', '02/15/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2924, 354, '3.6.12', '08/17/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2925, 354, '3.6.11', '06/27/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2926, 354, '3.6.10', '12/18/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2927, 354, '3.6.9', '07/02/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2928, 354, '3.6.8', '12/24/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2929, 354, '3.6.7', '10/20/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2930, 354, '3.6.6', '06/27/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2931, 354, '3.6.5', '03/28/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2932, 354, '3.6.4', '12/19/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2933, 354, '3.6.3', '10/03/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2934, 354, '3.6.2', '07/17/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2935, 354, '3.6.1', '03/21/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2936, 354, '3.6.0', '12/23/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2937, 354, '3.5.10', '09/05/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2938, 354, '3.5.8', '11/01/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2939, 354, '3.5.7', '03/18/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2940, 354, '3.5.6', '08/08/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2941, 354, '3.5.5', '02/04/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2942, 354, '3.5.4', '07/25/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2943, 354, '3.5.3', '01/17/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2944, 354, '3.5.2', '06/27/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2945, 354, '3.5.1', '12/07/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2946, 354, '3.5.0', '09/13/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2947, 354, '3.4.10', '03/18/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2948, 354, '3.4.9', '08/08/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2949, 354, '3.4.8', '02/04/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2950, 354, '3.4.7', '07/25/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2951, 354, '3.4.6', '01/17/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2952, 354, '3.4.5', '06/26/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2953, 354, '3.4.4', '12/06/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2954, 354, '3.4.3', '02/25/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2955, 354, '3.4.2', '10/04/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2956, 354, '3.4.1', '05/18/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2957, 354, '3.4.0', '03/16/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2958, 354, '3.3.7', '09/19/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2959, 354, '3.3.6', '10/12/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2960, 354, '3.3.5', '03/09/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2961, 354, '3.3.4', '02/09/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2962, 354, '3.3.3', '11/17/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2963, 354, '3.3.2', '05/15/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2964, 354, '3.3.1', '04/07/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2965, 354, '3.3.0', '09/29/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2966, 354, '3.2.6', '10/11/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2967, 354, '3.2.5', '05/15/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2968, 354, '3.2.4', '04/07/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2969, 354, '3.2.3', '04/10/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2970, 354, '3.2.2', '09/04/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2971, 354, '3.2.1', '07/10/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2972, 354, '3.2', '02/20/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2973, 354, '3.1.5', '04/09/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2974, 354, '3.1.4', '06/11/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2975, 354, '3.1.3', '11/27/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2976, 354, '3.1.2', '03/21/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2977, 354, '3.1.1', '08/17/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2978, 354, '3.1', '06/27/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2979, 354, '3.0.1', '02/13/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2980, 354, '3', '12/03/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2981, 354, '2.7.18', '04/20/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2982, 354, '2.7.17', '10/19/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2983, 354, '2.7.16', '03/02/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2984, 354, '2.7.15', '04/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2985, 354, '2.7.14', '09/16/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2986, 354, '2.7.13', '12/17/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2987, 354, '2.7.12', '06/26/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2988, 354, '2.7.11', '12/05/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2989, 354, '2.7.10', '05/23/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2990, 354, '2.7.9', '12/10/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2991, 354, '2.7.8', '07/01/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2992, 354, '2.7.7', '05/31/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2993, 354, '2.7.6', '11/10/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2994, 354, '2.7.5', '05/15/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2995, 354, '2.7.4', '04/06/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2996, 354, '2.7.3', '04/09/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2997, 354, '2.7.2', '06/11/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2998, 354, '2.7.1', '11/27/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2999, 354, '2.7', '07/04/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3000, 354, '2.6.9', '10/29/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3001, 354, '2.6.8', '04/10/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3002, 354, '2.6.7', '06/03/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3003, 354, '2.6.6', '08/24/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3004, 354, '2.6.5', '03/19/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3005, 354, '2.6.4', '10/25/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3006, 354, '2.6.3', '10/02/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3007, 354, '2.6.2', '04/14/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3008, 354, '2.6.1', '12/04/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3009, 354, '2.6', '10/01/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3010, 354, '2.5.4', '12/23/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3011, 354, '2.5.3', '12/19/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3012, 354, '2.5.2', '02/21/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3013, 354, '2.5.1', '04/18/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3014, 354, '2.5', '09/19/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3015, 354, '2.4.4', '10/18/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3016, 354, '2.4.3', '03/29/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3017, 354, '2.4.2', '09/28/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3018, 354, '2.4.1', '03/30/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3019, 354, '2.4', '11/30/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3020, 354, '2.3.5', '02/08/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3021, 354, '2.3.4', '05/27/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3022, 354, '2.3.3', '12/19/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3023, 354, '2.3.2', '10/03/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3024, 354, '2.3.1', '09/23/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3025, 354, '2.3', '07/29/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3026, 354, '2.2.3', '05/30/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3027, 354, '2.2.2', '10/14/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3028, 354, '2.2.1', '04/10/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3029, 354, '2.2.0', '03/29/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3030, 354, '2.2', '12/21/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3031, 354, '2.1.3', '04/08/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3032, 354, '2.1.2', '01/16/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3033, 354, '2.1.1', '07/20/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3034, 354, '2.1', '04/15/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3035, 354, '2.0.1', '06/22/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3036, 354, '2', '10/16/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3037, 354, '1.6', '09/05/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3038, 354, '1.5.2p2', '03/22/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3039, 354, '1.5.2p1', '07/06/1999', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3040, 354, '1.5.2', '04/30/1999', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3041, 354, '1.5.1p1', '08/06/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3042, 354, '1.5.1', '04/14/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3043, 354, '1.5', '02/17/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3044, 354, '1.4', '10/25/1996', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3045, 354, '1', '01/01/1994', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3046, 355, '4.1.1', '08/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3047, 355, '4.1.0', '05/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3048, 355, '4.0.5', '03/30/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3049, 355, '4.0.4', '02/28/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3050, 355, '4.0.3', '10/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3051, 355, '4.0.2', '06/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3052, 355, '4.0.1', '06/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3053, 355, '4.0.0', '04/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3054, 355, '3.6.3', '02/28/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3055, 355, '3.6.2', '12/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3056, 355, '3.6.1', '07/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3057, 355, '3.6.0', '04/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3058, 355, '3.5.3', '03/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3059, 355, '3.5.2', '12/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3060, 355, '3.5.1', '07/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3061, 355, '3.5.0', '04/30/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3062, 355, '3.4.4', '03/30/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3063, 355, '3.4.3', '11/30/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3064, 355, '3.4.2', '09/30/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3065, 355, '3.4.1', '06/30/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3066, 355, '3.4.0', '04/30/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3067, 355, '3.3.3', '03/30/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3068, 355, '3.3.2', '10/30/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3069, 355, '3.3.1', '06/30/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3070, 355, '3.3.0', '04/30/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3071, 355, '3.2.5', '04/30/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3072, 355, '3.2.4', '03/30/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3073, 355, '3.2.3', '12/30/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3074, 355, '3.2.2', '08/30/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3075, 355, '3.2.1', '06/30/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3076, 355, '3.2.0', '04/30/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3077, 355, '3.1.3', '03/30/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3078, 355, '3.1.2', '10/30/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3079, 355, '3.1.1', '07/30/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3080, 355, '3.1.0', '04/30/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3081, 355, '3.0.3', '03/30/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3082, 355, '3.0.2', '09/30/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3083, 355, '3.0.1', '05/30/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3084, 355, '3.0.0', '04/30/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3085, 355, '2.15.3', '03/30/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3086, 355, '2.15.2', '10/30/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3087, 355, '2.15.1', '06/30/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3088, 355, '2.15.0', '03/30/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3089, 355, '2.14.2', '02/28/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3090, 355, '2.14.1', '12/30/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3091, 355, '2.14.0', '11/30/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3092, 355, '2.13.2', '09/30/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3093, 355, '2.13.1', '07/30/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3094, 355, '2.13.0', '04/30/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3095, 355, '2.12.2', '02/28/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3096, 355, '2.12.1', '12/30/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3097, 355, '2.12.0', '10/30/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3098, 355, '2.11.1', '05/30/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3099, 355, '2.11.0', '04/30/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3100, 355, '2.10.1', '12/30/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3101, 355, '2.10.0', '10/30/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3102, 355, '2.9.2', '08/30/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3103, 355, '2.9.1', '06/30/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3104, 355, '2.9.0', '04/30/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3105, 355, '2.8.1', '12/30/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3106, 355, '2.8.0', '10/30/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3107, 355, '2.7.2', '08/30/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3108, 355, '2.7.1', '06/30/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3109, 355, '2.7.0', '04/30/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3110, 355, '2.6.2', '02/28/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3111, 355, '2.6.1', '11/30/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3112, 355, '2.6.0', '10/30/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3113, 355, '2.5.1', '07/30/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3114, 355, '2.5.0', '04/30/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3115, 355, '2.4.1', '12/30/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3116, 355, '2.4.0', '10/30/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3117, 355, '2.3.1', '06/30/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3118, 355, '2.3.0', '04/30/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3119, 355, '2.2.1', '12/30/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3120, 355, '2.2.0', '10/30/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3121, 355, '2.1.1', '06/30/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3122, 355, '2.1.0', '04/30/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3123, 355, '2.0.1', '11/30/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3124, 355, '2.0.0', '10/30/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3125, 355, '1.9.1', '06/30/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3126, 355, '1.8.1', '11/30/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3127, 355, '1.7.1', '06/30/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3128, 355, '1.6.2', '01/30/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3129, 355, '1.5.1', '06/30/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3130, 355, '1.4.1', '01/30/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3131, 355, '1.3.1', '09/30/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3132, 355, '1.2.2', '03/30/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3133, 355, '1.0.0', '02/28/2000', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3134, 358, '3.0.2', '07/07/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3135, 358, '2.7.4', '07/07/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3136, 358, '2.6.8', '07/07/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3137, 358, '3.0.1', '04/05/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3138, 358, '2.7.3', '04/05/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3139, 358, '2.6.7', '04/05/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3140, 358, '2.5.9', '04/05/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3141, 358, '3.0.0', '12/25/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3142, 358, '3.0.0src1', '12/20/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3143, 358, '3.0.0spreview2', '12/08/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3144, 358, '2.7.2', '10/02/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3145, 358, '3.0.0spreview1', '09/25/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3146, 358, '2.7.1', '03/31/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3147, 358, '2.6.6', '03/31/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3148, 358, '2.5.8', '03/31/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3149, 358, '2.4.10', '03/31/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3150, 358, '2.7.0', '12/25/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3151, 358, '2.7.0src2', '12/21/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3152, 358, '2.7.0src1', '12/17/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3153, 358, '2.7.0spreview3', '11/23/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3154, 358, '2.7.0spreview2', '10/22/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3155, 358, '2.4.9', '10/02/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3156, 358, '2.6.5', '10/01/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3157, 358, '2.5.7', '10/01/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3158, 358, '2.4.8', '10/01/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3159, 358, '2.6.4', '08/28/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3160, 358, '2.5.6', '08/28/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3161, 358, '2.4.7', '08/28/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3162, 358, '2.7.0spreview1', '05/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3163, 358, '2.6.3', '04/17/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3164, 358, '2.4.6', '04/01/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3165, 358, '2.5.5', '03/15/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3166, 358, '2.6.2', '03/13/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3167, 358, '2.5.4', '03/13/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3168, 358, '2.6.1', '01/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3169, 358, '2.6.0', '12/25/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3170, 358, '2.6.0src2', '12/15/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3171, 358, '2.6.0src1', '12/06/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3172, 358, '2.6.0spreview3', '11/06/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3173, 358, '2.5.3', '10/18/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3174, 358, '2.5.2', '10/17/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3175, 358, '2.4.5', '10/17/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3176, 358, '2.3.8', '10/17/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3177, 358, '2.6.0spreview2', '05/31/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3178, 358, '2.5.1', '03/28/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3179, 358, '2.4.4', '03/28/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3180, 358, '2.3.7', '03/28/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3181, 358, '2.2.10', '03/28/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3182, 358, '2.6.0spreview1', '02/24/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3183, 358, '2.5.0', '12/25/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3184, 358, '2.5.0src1', '12/14/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3185, 358, '2.4.3', '12/14/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3186, 358, '2.3.6', '12/14/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3187, 358, '2.2.9', '12/14/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3188, 358, '2.5.0spreview1', '10/10/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3189, 358, '2.4.2', '09/14/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3190, 358, '2.3.5', '09/14/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3191, 358, '2.2.8', '09/14/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3192, 358, '2.3.4', '03/30/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3193, 358, '2.2.7', '03/28/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3194, 358, '2.4.1', '03/22/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3195, 358, '2.4.0', '12/25/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3196, 358, '2.4.0src1', '12/12/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3197, 358, '2.3.3', '11/21/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3198, 358, '2.3.2', '11/15/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3199, 358, '2.2.6', '11/15/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3200, 358, '2.4.0spreview3', '11/09/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3201, 358, '2.4.0spreview2', '09/08/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3202, 358, '2.4.0spreview1', '06/20/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3203, 358, '2.3.1', '04/26/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3204, 358, '2.2.5', '04/26/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3205, 358, '2.1.10', '04/01/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3206, 358, '2.1.9', '03/30/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3207, 358, '2.3.0', '12/25/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3208, 358, '2.2.4', '12/16/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3209, 358, '2.1.8', '12/16/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3210, 358, '2.0.0sp648', '12/16/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3211, 358, '2.3.0spreview2', '12/11/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3212, 358, '2.3.0spreview1', '11/11/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3213, 358, '2.2.3', '08/18/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3214, 358, '2.1.7', '08/18/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3215, 358, '2.0.0sp647', '08/18/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3216, 358, '2.2.2', '04/13/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3217, 358, '2.1.6', '04/13/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3218, 358, '2.0.0sp645', '04/13/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3219, 358, '2.2.1', '03/03/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3220, 358, '2.0.0sp643', '02/25/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3221, 358, '2.2.0', '12/25/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3222, 358, '2.2.0src1', '12/18/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3223, 358, '2.2.0spreview2', '11/28/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3224, 358, '2.1.5', '11/13/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3225, 358, '2.0.0sp598', '11/13/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3226, 358, '1.9.3sp551', '11/13/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3227, 358, '2.1.4', '10/27/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3228, 358, '2.0.0sp594', '10/27/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3229, 358, '1.9.3sp550', '10/27/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3230, 358, '2.1.3', '09/19/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3231, 358, '2.0.0sp576', '09/19/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3232, 358, '2.2.0spreview1', '09/18/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3233, 358, '1.9.2sp330', '08/19/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3234, 358, '1.9.3sp547', '05/16/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3235, 358, '2.1.2', '05/09/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3236, 358, '2.0.0sp481', '05/09/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3237, 358, '2.1.1', '02/24/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3238, 358, '2.0.0sp451', '02/24/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3239, 358, '1.9.3sp545', '02/24/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3240, 358, '2.1.0', '12/25/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3241, 358, '2.1.0src1', '12/20/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3242, 358, '2.1.0spreview2', '11/22/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3243, 358, '2.0.0sp353', '11/22/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3244, 358, '1.9.3sp484', '11/22/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3245, 358, '2.1.0spreview1', '09/23/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3246, 358, '2.0.0sp247', '06/27/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3247, 358, '1.9.3sp448', '06/27/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3248, 358, '1.8.7sp374', '06/27/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3249, 358, '2.0.0sp195', '05/14/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3250, 358, '1.9.3sp429', '05/14/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3251, 358, '2.0.0', '02/24/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3252, 358, '1.9.3sp392', '02/22/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3253, 358, '2.0.0src2', '02/08/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3254, 358, '1.9.3sp385', '02/06/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3255, 358, '1.9.3sp374', '01/17/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3256, 358, '1.9.3sp362', '12/25/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3257, 358, '1.9.3sp327', '11/09/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3258, 358, '1.9.3sp286', '10/12/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3259, 358, '1.8.7sp370', '06/29/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3260, 358, '1.9.2sp320', '04/21/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3261, 358, '1.9.3sp194', '04/20/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3262, 358, '1.9.3sp125', '02/16/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3263, 358, '1.9.3', '10/31/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3264, 358, '1.9.3src1', '09/24/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3265, 358, '1.9.3spreview1', '08/01/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3266, 358, '1.9.2sp290', '07/15/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3267, 358, '1.8.7sp352', '07/02/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3268, 358, '1.9.2sp136', '12/25/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3269, 358, '1.8.7sp330', '12/25/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3270, 358, '1.9.2', '08/18/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3271, 358, '1.9.1sp430', '08/16/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3272, 358, '1.8.7sp302', '08/16/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3273, 358, '1.9.2src2', '07/11/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3274, 358, '1.9.2src1', '07/02/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3275, 358, '1.9.1sp429', '07/02/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3276, 358, '1.8.7sp299', '06/23/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3277, 358, '1.8.7sp248', '12/25/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3278, 358, '1.9.1sp376', '12/07/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3279, 358, '1.9.2spreview1', '07/20/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3280, 358, '1.9.1sp243', '07/20/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3281, 358, '1.9.1sp129', '05/12/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3282, 358, '1.8.7sp160', '04/18/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3283, 358, '1.8.6sp368', '04/18/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3284, 358, '1.9.1', '01/30/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3285, 358, '1.9.1spreview1', '10/28/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3286, 358, '1.8.7sp72', '08/11/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3287, 358, '1.8.6sp287', '08/11/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3288, 358, '1.8.7', '05/31/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3289, 358, '1.9.0', '12/25/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3290, 358, '1.8.6', '03/12/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3291, 358, '1.8.5', '08/29/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3292, 358, '1.8.4', '12/24/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3293, 358, '1.8.4spreview2', '12/14/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3294, 358, '1.8.3', '09/21/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3295, 358, '1.8.2', '12/26/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3296, 358, '1.8.2spreview4', '12/22/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3297, 358, '1.8.2spreview3', '11/08/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3298, 358, '1.8.2spreview2', '07/30/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3299, 358, '1.8.2spreview1', '07/21/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3300, 358, '1.8.0', '08/04/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3301, 358, '1.6.7', '03/01/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3302, 323, '1', '03/28/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3303, 323, '1.1', '05/13/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3304, 323, '1.2', '12/01/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3305, 323, '1.3', '06/18/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3306, 323, '1.4', '12/10/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3307, 323, '1.5', '08/19/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3308, 323, '1.6', '02/17/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3309, 323, '1.7', '08/15/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3310, 323, '1.8', '02/16/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3311, 323, '1.9', '08/24/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3312, 323, '1.10', '02/16/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3313, 323, '1.11', '08/24/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3314, 323, '1.12.1', '02/25/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3315, 323, '1.13.1', '09/03/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3316, 323, '1.14', '02/25/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3317, 323, '1.15', '08/11/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3318, 323, '1.16', '02/16/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3319, 323, '1.17', '08/16/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3320, 325, '1', '01/02/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3321, 325, '1.2', '12/07/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3322, 325, '1.5', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3323, 325, '2', '07/02/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3324, 325, '3', '02/07/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3325, 325, '4.0', '09/01/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3326, 333, '1.2', '12/12/1999', '05/22/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3327, 333, '1.3', '09/24/2001', '06/28/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3328, 333, '1.4', '11/11/2003', '08/29/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3329, 333, '5', '05/11/2006', '08/11/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3330, 333, '6', '12/10/2009', '12/19/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3331, 333, '7', '05/28/2013', '04/30/2001'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3332, 333, '8', '08/31/2017', '06/23/2001'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3333, 333, '9', '11/22/2020', '12/10/2001'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3334, 333, '9.1', '05/25/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3335, 305, '98', '12/31/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3336, 305, '03', '12/31/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3337, 305, '11', '12/31/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3338, 305, '14', '12/31/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3339, 305, '17', '12/31/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3340, 305, '20', '12/31/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3341, 344, 'progress 4gl', '12/31/1981', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3342, 344, '10.1', '12/31/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3343, 350, '3.0.0', '08/20/2020', '08/20/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3344, 350, '4', '05/22/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3345, 350, '4.1', '12/10/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3346, 350, '4.2', '04/22/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3347, 350, '4.3', '12/27/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3348, 350, '4.4', '07/11/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3349, 350, '5', '07/13/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3350, 350, '5.1', '11/24/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3351, 350, '5.2', '11/02/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3352, 350, '5.3', '06/30/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3353, 350, '5.4', '03/01/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3354, 350, '5.5', '06/20/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3355, 350, '5.6', '08/28/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3356, 350, '7', '12/03/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3357, 350, '7.1', '12/01/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3358, 350, '7.2', '11/30/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3359, 350, '7.3', '12/06/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3360, 350, '7.4', '11/28/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3361, 350, '8', '11/26/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3362, 311, '3', '06/30/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3363, 311, '4', '11/30/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3364, 311, '4.5', '11/30/1999', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3365, 311, '5', '06/30/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3366, 311, '6', '06/30/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3367, 311, '7', '02/07/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3368, 311, '8', '06/30/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3369, 311, '9', '10/05/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3370, 311, '10', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3371, 311, '11', '04/29/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3372, 311, '2016', '02/16/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3373, 311, '2018', '07/12/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3374, 311, '2021', '11/11/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3375, 362, '1.0.0', '12/08/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3376, 362, '1.1.0', '02/19/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3377, 362, '1.1.1', '03/23/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3378, 362, '1.2.0', '06/09/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3379, 362, '1.3.0', '09/16/2004', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3380, 362, '1.4.0', '06/20/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3381, 362, '2', '03/12/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3382, 362, '2.1.0', '03/17/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3383, 362, '2.1.8', '08/23/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3384, 362, '2.3.0', '11/23/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3385, 362, '2.4.0', '03/09/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3386, 362, '2.5.0', '05/02/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3387, 362, '2.6.0', '07/27/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3388, 362, '2.7.0', '02/07/2008', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3389, 362, '2.8.0', '07/14/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3390, 362, '2.9.0', '05/12/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3391, 362, '2.1', '01/04/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3392, 313, '1', '12/31/1995', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3393, 313, '2', '12/31/1996', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3394, 313, '3', '12/31/1997', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3395, 313, '4', '12/31/1998', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3396, 313, '5', '12/31/1999', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3397, 313, '6', '12/31/2001', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3398, 313, '7', '08/31/2002', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3399, 313, '8', '12/31/2003', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3400, 313, '2005', '12/31/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3401, 313, '2006', '12/31/2005', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3402, 313, 'Turbo', '09/06/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3403, 313, 'Transfer', '02/08/2006', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3404, 313, '2007', '03/16/2007', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3405, 313, '2009', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3406, 313, '2010', '08/25/2009', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3407, 313, 'XE', '08/30/2010', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3408, 313, 'XE1', '01/27/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3409, 313, 'XE2', '09/01/2011', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3410, 313, 'XE3', '09/01/2012', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3411, 313, 'XE4', '04/22/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3412, 313, 'XE5', '09/12/2013', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3413, 313, 'XE6', '04/15/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3414, 313, 'XE7', '09/02/2014', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3415, 313, 'XE8', '04/07/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3416, 313, '10', '08/31/2015', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3417, 313, '10.1', '04/20/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3418, 313, '10.1.1', '09/30/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3419, 313, '10.1.2', '12/31/2016', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3420, 313, '10.2', '03/22/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3421, 313, '10.2.1', '08/30/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3422, 313, '10.2.2', '12/31/2017', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3423, 313, '10.2.3', '03/31/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3424, 313, '10.3', '11/21/2018', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3425, 313, '10.3.1', '02/28/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3426, 313, '10.3.2', '07/31/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3427, 313, '10.3.3', '11/30/2019', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3428, 313, '10.4', '05/26/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3429, 313, '10.4.1', '09/30/2020', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3430, 313, '10.4.2', '02/24/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3431, 313, '11', '09/09/2021', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3432, 310, '60', '05/29/1959', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3433, 310, '65', '12/31/1965', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3434, 310, '74', '12/31/1974', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3435, 310, '85', '12/31/1985', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3436, 310, '2002', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3437, 310, '2014', ' ', ' '); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3438, 450, '1.01', '11/20/1985', '12/31/2001'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3439, 450, '1.02', '05/14/1986', '12/31/2001'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3440, 450, '1.03', '08/21/1986', '12/31/2001'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3441, 450, '1.04', '04/10/1987', '12/31/2001'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3442, 450, '2.01', '12/09/1987', '12/31/2001'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3443, 450, '2.03', '12/09/1987', '12/31/2001'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3444, 450, '2.1', '05/27/1988', '12/31/2001'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3445, 450, '2.11', '03/13/1989', '12/31/2001'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3446, 450, '3', '05/22/1990', '12/31/2001'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3447, 450, '3.1', '04/06/1992', '12/31/2001'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3448, 450, ' NT 3.1', '07/27/1993', '12/31/2001'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3449, 450, '3.11', '11/08/1993', '12/31/2001'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3450, 450, '3.2', '11/22/1993', '12/31/2001'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3451, 450, 'NT 3.5', '09/21/1994', '12/31/2001'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3452, 450, 'NT 3.51', '08/24/1995', '12/31/2001'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3453, 450, '95', '08/24/1996', '12/31/2001'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3454, 450, 'NT 4.0', '06/25/1998', '06/30/2004'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3455, 450, '98', '05/05/1999', '07/11/2006'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3456, 450, '2000', '02/17/2000', '07/13/2010'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3457, 450, 'Me', '09/14/2000', '07/11/2006'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3458, 450, 'XP', '10/25/2001', '04/08/2014'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3459, 450, 'Vista', '01/30/2007', '04/11/2017'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3460, 450, '7', '10/22/2009', '01/14/2020'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3461, 450, '8', '10/26/2012', '01/12/2016'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3462, 450, '8.1', '10/17/2013', '01/10/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3463, 450, '10', '07/29/2015', '10/14/2025'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3464, 450, '11', '10/05/2021', '10/10/2023'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3465, 697, '3.8.5', '03/05/2022', ''); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3466, 697, '3.8.4', '11/12/2021', '03/05/2022'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3467, 697, '3.8.3', '09/27/2021', '11/12/2021'); -INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3468, 697, '3.8.1', '04/04/2021', '09/27/2021'); - --- Table: openshift_baseos_images +INSERT INTO entity_types VALUES(1,'Technology'); +INSERT INTO entity_types VALUES(2,'App'); +INSERT INTO entity_types VALUES(3,'VM'); +INSERT INTO entity_types VALUES(4,'HW'); +INSERT INTO entity_types VALUES(5,'Plugin'); +INSERT INTO entity_types VALUES(6,'OS'); +INSERT INTO entity_types VALUES(7,'Runlib'); +INSERT INTO entity_types VALUES(8,'App Server'); +INSERT INTO entity_types VALUES(9,'Lang'); +INSERT INTO entity_types VALUES(10,'Runtime'); +INSERT INTO entity_types VALUES(11,'Storage'); +INSERT INTO entity_types VALUES(12,'Lib'); CREATE TABLE openshift_baseos_images ( id integer PRIMARY KEY AUTOINCREMENT, container_name text NOT NULL, @@ -13629,9 +9113,7 @@ CREATE TABLE openshift_baseos_images ( DockerImageType text, FOREIGN KEY (OS) REFERENCES entity_types (id) ); -INSERT INTO openshift_baseos_images (id, container_name, OS, OpenShift_Correspondent_Image_URL, Notes, OpenShiftStatus, DockerImageType) VALUES (1, 'Red Hat Enterprise Linux', 434, 'https://catalog.redhat.com/software/containers/rhel7/57ea8cee9c624c035f96f3af', '', '', ''); - --- Table: openshift_images +INSERT INTO openshift_baseos_images VALUES(1,'Red Hat Enterprise Linux',434,'https://catalog.redhat.com/software/containers/rhel7/57ea8cee9c624c035f96f3af','','',''); CREATE TABLE openshift_images ( id integer PRIMARY KEY AUTOINCREMENT, container_name text NOT NULL, @@ -13654,138 +9136,59 @@ CREATE TABLE openshift_images ( FOREIGN KEY (runlib) REFERENCES entity_types (id), FOREIGN KEY (runtime) REFERENCES entity_types (id) ); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (1, 'IBM Maximo Asset Management', 434, NULL, NULL, 70, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/ema-maximo-integration/5d79b41f3d73db51b9ba7ea7', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (2, 'OpenLDAP', 434, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/netcool-openldap-16/5d1a1e94702c56364a5d4101', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (3, 'gcc', 426, 305, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/gcc-toolset-10-toolchain/5ea311fd5a13466876a077ca', 'Lang'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (4, 'golang_Linux', 434, 323, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/go-toolset/5b9c810add19c70b45cbd666', 'Lang(OS specific)'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (5, 'haproxy', 434, NULL, NULL, NULL, 264, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/openshift4/ose-haproxy-router/5cd9b367bed8bd5717d4fdaa', 'App Server'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (6, 'httpd', 434, NULL, NULL, NULL, 259, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhscl/httpd-24-rhel7/57ea8d049c624c035f96f42e', 'App Server'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (7, 'jenkins', 434, NULL, NULL, 90, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/openshift3/jenkins-2-rhel7/581d2f4500e5d05639b6517b', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (8, 'MarkLogic', 434, NULL, NULL, 97, NULL, NULL, NULL, NULL, 'https://access.redhat.com/containers/#/docker.io/store/marklogicdb/marklogic-server', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (9, 'memcached', 434, NULL, NULL, 98, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhacm2/memcached-rhel8/5f523955ee8349144fa8634a', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (10, 'Java SE JRE_Linux', 434, NULL, NULL, NULL, NULL, NULL, NULL, 506, 'https://catalog.redhat.com/software/containers/ubi8/openjdk-11/5dd6a4b45a13461646f677f4', 'Runtime(OS specific)'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (11, 'Microsoft SQL Server', 434, NULL, NULL, 120, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/mssql/rhel/server/5ba50865f5a0de06555a2ee7', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (12, 'Mongo_Linux', 434, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rh-marketplace/mongodb-enterprise-advanced-ibm-bundle/5f84ce93ecb524508951386d', 'App(OS specific)'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (13, 'mysql', 434, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/mysql-80/5ba0ad4cdd19c70b45cbf48c', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (14, 'nginx', 434, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/nginx-118/5f521a46e05bbcd88f128b64', 'App Server'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (15, 'node', 426, NULL, NULL, NULL, NULL, NULL, NULL, 507, 'https://catalog.redhat.com/software/containers/rhel8/nodejs-14/5ed76a59d70cc50e69c2f891', 'Runtime'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (16, 'php', 426, 350, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ubi8/php-74/5f521244e05bbcd88f128b63', 'Lang'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (17, 'Python_Linux', 434, 354, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhscl/python-27-rhel7/57ea8d049c624c035f96f430', 'Lang(OS specific)'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (18, 'rabbitmq', 426, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/jfrog/xray-rabbitmq/5ec6ef9eecb5246c0903f401', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (19, 'redis_Linux', 434, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/redis-5/5c401b0cbed8bd75a2c4c287', 'App(OS specific)'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (20, 'ruby', 434, 358, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/ruby-26/5d3ffc6a5a13461f5fb862e6', 'Lang'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (21, 'swift', 434, 364, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhosp-beta/openstack-swift-base/5cdcbbcbdd19c778293be49f', 'Lang'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (22, 'tomcat', 434, 331, NULL, NULL, 260, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3', 'App Server'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (23, 'websphere-liberty', 434, 331, NULL, NULL, 285, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/websphere-liberty/5d0298c9f5a0de52d547adf7', 'App Server'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (24, 'ansible', 434, NULL, NULL, 5, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/openshift3/ose-ansible-service-broker/5989580dbed8bd284e93201e', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (25, 'hive', 434, NULL, NULL, 8, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/openshift4/ose-metering-hive/5d96f106d70cc50ebeaadb53', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (26, 'kafka', 429, NULL, NULL, 9, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/kafka2/5e8208a8ac3db903708fe0a5', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (27, 'postgresql', 429, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/postgresql-12/5db133bd5a13461646df330b', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (28, 'spark', 429, NULL, NULL, NULL, 280, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/sdu-spark/5d695066d095e36f9d387421', 'App Server'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (29, 'vmware-tools', 436, NULL, NULL, 230, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel7/open-vm-tools/58ee4f6e4b339a32b5fb7bae', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (30, 'fabric-ca', 426, NULL, NULL, 422, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/ca-base/5d09538bf5a0de52d548efd3', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (31, 'db2', 426, NULL, NULL, 43, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/ibm-db2z-ui/5d8bd4bf69aea310b5373e17', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (32, 'mq', 426, NULL, NULL, 81, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/ibm-mqadvanced-server/5bacf2bf4841f1065681eb5f', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (33, 'websphere-traditional', 434, 331, NULL, NULL, 284, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/r/ibmcom/websphere-traditional/5d77b2e4702c566f4cbf438b', 'App Server'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (34, 'base', 426, NULL, NULL, NULL, 267, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3', 'App Server'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (35, 'wildfly', 426, NULL, NULL, NULL, 493, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3', 'App Server'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (36, 'nginx-proxy', 426, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/anaconda/nginx-proxy/5ea3014becb5246c0903c5da', 'App Server'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (37, 'javascript-node.js', 426, 337, NULL, NULL, NULL, NULL, NULL, 507, 'https://catalog.redhat.com/software/containers/rhel8/nodejs-12/5d3fff06d70cc5521d0009c2', 'Runtime'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (38, 'objectivec-gcc', 426, 343, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/gcc-toolset-10-perftools/5ea31291dd19c778961bf8da', 'Lang'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (39, 'nginx-ingress', 426, NULL, NULL, 88, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/nginx/nginx-ingress-operator/5e7ce1b8ecb5246c09fe03c7', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (40, 'node-red-docker', 426, NULL, NULL, 236, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm-edge/node-red/5ecf8c35ecb5246c0903fb58', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (41, 'sas', 426, 360, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/sas-base/5e2b5c69ac3db9037062d878', 'Lang'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (42, 'activemq', 426, NULL, NULL, 6, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/tremolosecurity/activemq/5cbbc19e293738790b2fc3d2', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (43, 'hadoop-docker', 426, NULL, NULL, 57, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/openshift4/ose-metering-hadoop/5d963124bed8bd2245d85da3', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (44, 'nexus3', 426, NULL, NULL, 124, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/sonatype/nexus-repository-manager/594c281c1fbe9847af657690', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (45, 'splunk', 426, NULL, NULL, 188, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/layers/splunk/splunk/7.3-redhat/images/sha256-55050c2097d994abc0e6d1c9f7fd0f0c2fb5f4019a9b1e094ffdf33a70a/5e162fab69aea316427f7947', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (46, 'IBM Transformation Extender', 426, NULL, NULL, 83, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibmcom/ibm-itx-rs-operator/5f9c27ddac3db90370a213a4', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (47, 'openjdk_Linux', 426, 331, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ubi8/openjdk-11/5dd6a4b45a13461646f677f4', 'Lang(OS specific)'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (48, 'perl', 426, 347, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ubi8/perl-526/5c83998abed8bd28d0e74c0f', 'Lang'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (49, 'postgres', 426, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhscl/postgresql-13-rhel7/60af640142119b927780b520', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (50, 'solr', 426, NULL, NULL, 11, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/cp/cpd/solr-ubi/5db082ea69aea35a1c141026', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (51, 'odm', 426, NULL, NULL, 73, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/odm-dbserver/5d80f766702c566f4cbf46e6', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (52, 'asterisk', 426, NULL, NULL, 14, NULL, NULL, NULL, NULL, 'https://quay.io/repository/citybaseinc/asterisk', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (53, 'drupal', 426, NULL, NULL, 45, NULL, NULL, NULL, NULL, 'https://quay.io/repository/swsmirror/drupal', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (54, 'elastic', 426, NULL, NULL, 47, NULL, NULL, NULL, NULL, 'https://quay.io/repository/kmamgain/elastic', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (55, 'genymotion', 426, NULL, NULL, 54, NULL, NULL, NULL, NULL, 'https://quay.io/repository/alaska/genymotion', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (56, 'hadoop', 426, NULL, NULL, 57, NULL, NULL, NULL, NULL, 'https://quay.io/repository/iguazio/hadoop', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (57, 'neo4j', 426, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/neo4j', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (58, 'openldap', 426, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/openldap', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (59, 'openvpn', 426, NULL, NULL, 128, NULL, NULL, NULL, NULL, 'https://quay.io/repository/kubermatic/openvpn', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (60, 'pentaho', 426, NULL, NULL, 150, NULL, NULL, NULL, NULL, 'https://quay.io/repository/hasni/pentaho', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (61, 'redis', 426, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sameersbn/redis', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (62, 'remedy', 426, NULL, NULL, 169, NULL, NULL, NULL, NULL, 'https://quay.io/repository/amosnl/remedy', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (63, 'riak', 426, NULL, NULL, 170, NULL, NULL, NULL, NULL, 'https://quay.io/repository/dotabuff/riak', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (64, 'sentry', 426, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://quay.io/repository/app-sre/sentry', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (65, 'sonarqube', 426, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/gpte-devops-automation/sonarqube', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (66, 'whois', 426, NULL, NULL, 212, NULL, NULL, NULL, NULL, 'https://quay.io/repository/westonsteimel/whois', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (67, 'tableau', 426, NULL, NULL, 213, NULL, NULL, NULL, NULL, 'https://quay.io/repository/growthstack/tableau', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (68, 'wordpress', 426, NULL, NULL, 245, NULL, NULL, NULL, NULL, 'https://quay.io/repository/redhattraining/wordpress', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (69, 'sqlite', 426, NULL, NULL, 258, NULL, NULL, NULL, NULL, 'https://quay.io/repository/fale/sqlite', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (70, 'glassfish', 426, NULL, NULL, NULL, 263, NULL, NULL, NULL, 'https://quay.io/repository/mohamedf0/glassfish', 'App_Server'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (71, 'lucee', 426, NULL, NULL, NULL, 271, NULL, NULL, NULL, 'https://quay.io/repository/daemonite/lucee', 'App_Server'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (72, 'awk', 426, 300, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/shenglai/awk', 'Lang'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (73, 'basic', 426, 301, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/biocontainers/basic', 'Lang'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (74, 'expect', 426, 315, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/baseimage/expect', 'Lang'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (75, 'focus', 426, 321, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/biocontainers/focus', 'Lang'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (76, 'fortran', 426, 322, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/eriktrent/fortran', 'Lang'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (77, 'graphql', 426, 324, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/wasmoffload/graphql', 'Lang'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (78, 'groovy', 426, 325, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/official-images/groovy', 'Lang'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (79, 'java', 426, 331, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/tamr/java', 'Lang'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (80, 'jcl', 426, 338, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/jclaret/jcl', 'Lang'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (81, 'python', 426, 354, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/python', 'Lang'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (82, 'scala', 426, 362, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/azavea/scala', 'Lang'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (83, 'typescript', 426, 367, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/ellerbrock/typescript', 'Lang'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (84, 'android', 418, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/bitriseio/android', 'Os'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (85, 'dart', 421, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/biocontainers/dart', 'Os'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (86, 'debian', 429, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/official-images/debian', 'Os'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (87, 'opensuse', 431, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/wstein/opensuse', 'Os'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (88, 'ubuntu', 436, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/tamr/ubuntu', 'Os'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (89, 'freebsd', 447, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/uchida/freebsd', 'Os'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (90, 'windows', 450, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/mhallin/windows', 'Os'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (91, 'fedora', 453, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/fedora/fedora', 'Os'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (92, 'ado', 426, NULL, NULL, NULL, NULL, NULL, 488, NULL, 'https://quay.io/repository/scottlezberg/ado', 'Runlib'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (93, 'flash', 426, NULL, NULL, NULL, NULL, NULL, NULL, 504, 'https://quay.io/repository/biocontainers/flash', 'Runtime'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (94, 'database', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/deisci/database', 'Technology'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (95, 'webtop', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/linuxserver.io/webtop', 'Technology'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (96, 'utility', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/theiagen/utility', 'Technology'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (97, 'instana', 426, NULL, NULL, NULL, NULL, NULL, NULL, 611, 'https://quay.io/repository/yaoyao/instana', 'Runtime'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (98, 'credstash', 426, NULL, NULL, 612, NULL, NULL, NULL, NULL, 'https://quay.io/repository/safesoftware/credstash', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (99, 'snyk', 426, NULL, NULL, 613, NULL, NULL, NULL, NULL, 'https://quay.io/repository/exd_infra_plts_cip/snyk', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (100, 'akka', 426, NULL, NULL, 614, NULL, NULL, NULL, NULL, 'https://quay.io/repository/j0zi/akka', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (101, 'varnish', 426, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'https://quay.io/repository/api-platform/varnish', 'App_Server'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (102, 'datadog', 426, NULL, NULL, NULL, NULL, NULL, NULL, 616, 'https://quay.io/repository/blondie/datadog', 'Runtime'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (103, 'api', 426, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/infrabox/api', 'Technology'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (104, 'hazelcast', 426, NULL, NULL, NULL, NULL, NULL, NULL, 618, 'https://quay.io/repository/hazelcast_cloud/hazelcast', 'Runtime'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (105, 'infinispan', 426, NULL, NULL, 619, NULL, NULL, NULL, NULL, 'https://quay.io/repository/operatorhubio/infinispan', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (106, 'nuxeo', 426, NULL, NULL, NULL, NULL, NULL, NULL, 620, 'https://quay.io/repository/swsmirror/nuxeo', 'Runtime'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (107, 'arangodb', 426, NULL, NULL, 621, NULL, NULL, NULL, NULL, 'https://quay.io/repository/swsmirror/arangodb', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (108, 'clickhouse', 426, NULL, NULL, 624, NULL, NULL, NULL, NULL, 'https://quay.io/repository/operatorhubio/clickhouse', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (109, 'minio', 426, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://quay.io/repository/minio/minio', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (110, 'elasticsearch', 426, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'https://quay.io/repository/fluentd_elasticsearch/elasticsearch', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (111, 'keycloak', 426, NULL, NULL, 628, NULL, NULL, NULL, NULL, 'https://quay.io/repository/keycloak/keycloak', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (112, 'grafana', 426, NULL, NULL, 629, NULL, NULL, NULL, NULL, 'https://quay.io/repository/tamr/grafana', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (113, 'mattermost', 426, NULL, NULL, NULL, NULL, NULL, NULL, 630, 'https://quay.io/repository/jostone/mattermost', 'Runtime'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (114, 'synapse', 426, NULL, NULL, 631, NULL, NULL, NULL, NULL, 'https://quay.io/repository/dockernohub/synapse', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (115, 'kubeflow', 426, NULL, NULL, NULL, NULL, NULL, NULL, 635, 'https://quay.io/repository/operatorhubio/kubeflow', 'Runtime'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (116, 'sematext', 426, NULL, NULL, NULL, NULL, NULL, NULL, 639, 'https://quay.io/repository/operatorhubio/sematext', 'Runtime'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (117, 'mariadb', 426, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'https://quay.io/repository/startx/mariadb', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (118, 'istio', 426, NULL, NULL, 644, NULL, NULL, NULL, NULL, 'https://quay.io/repository/aspenmesh/istio', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (119, 'vault', 426, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'https://quay.io/repository/cybozu/vault', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (120, 'etcd', 426, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'https://quay.io/repository/coreos/etcd', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (121, 'traefik', 426, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://quay.io/repository/widen/traefik', 'App_Server'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (122, 'yugabytedb', 426, NULL, NULL, 650, NULL, NULL, NULL, NULL, 'https://quay.io/repository/marco_antonioni/yugabytedb', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (123, 'cockroachdb', 426, NULL, NULL, 651, NULL, NULL, NULL, NULL, 'https://quay.io/repository/helmoperators/cockroachdb', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (124, 'jaeger', 426, NULL, NULL, NULL, NULL, NULL, NULL, 652, 'https://quay.io/repository/operatorhubio/jaeger', 'Runtime'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (125, 'powershell', 426, 660, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/powerdock/powershell', 'Lang'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (126, 'dds', 426, 663, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/havoc/dds', 'Lang'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (127, 'openedge', 426, 673, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/g_querret/openedge', 'Lang'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (128, 'git', 426, NULL, NULL, 677, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sisense/git', 'App'); -INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (129, 'gitlab', 426, NULL, NULL, 678, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sameersbn/gitlab', 'App'); - --- Table: operator_images - +INSERT INTO openshift_images VALUES(1,'IBM Maximo Asset Management',434,NULL,NULL,70,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/ema-maximo-integration/5d79b41f3d73db51b9ba7ea7','App'); +INSERT INTO openshift_images VALUES(2,'OpenLDAP',434,NULL,NULL,126,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/netcool-openldap-16/5d1a1e94702c56364a5d4101','App'); +INSERT INTO openshift_images VALUES(3,'gcc',576,583,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/gcc-toolset-10-toolchain/5ea311fd5a13466876a077ca','Lang'); +INSERT INTO openshift_images VALUES(4,'golang_Linux',434,323,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/go-toolset/5b9c810add19c70b45cbd666','Lang(OS specific)'); +INSERT INTO openshift_images VALUES(5,'haproxy',434,NULL,NULL,NULL,264,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/openshift4/ose-haproxy-router/5cd9b367bed8bd5717d4fdaa','App Server'); +INSERT INTO openshift_images VALUES(6,'httpd',434,NULL,NULL,NULL,259,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhscl/httpd-24-rhel7/57ea8d049c624c035f96f42e','App Server'); +INSERT INTO openshift_images VALUES(7,'jenkins',434,NULL,NULL,90,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/openshift3/jenkins-2-rhel7/581d2f4500e5d05639b6517b','App'); +INSERT INTO openshift_images VALUES(8,'MarkLogic',434,NULL,NULL,97,NULL,NULL,NULL,NULL,'https://access.redhat.com/containers/#/docker.io/store/marklogicdb/marklogic-server','App'); +INSERT INTO openshift_images VALUES(9,'memcached',434,NULL,NULL,98,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhacm2/memcached-rhel8/5f523955ee8349144fa8634a','App'); +INSERT INTO openshift_images VALUES(10,'Java SE JRE_Linux',434,NULL,NULL,NULL,NULL,NULL,NULL,506,'https://catalog.redhat.com/software/containers/ubi8/openjdk-11/5dd6a4b45a13461646f677f4','Runtime(OS specific)'); +INSERT INTO openshift_images VALUES(11,'Microsoft SQL Server',434,NULL,NULL,581,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/mssql/rhel/server/5ba50865f5a0de06555a2ee7','App'); +INSERT INTO openshift_images VALUES(12,'Mongo_Linux',434,NULL,NULL,116,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rh-marketplace/mongodb-enterprise-advanced-ibm-bundle/5f84ce93ecb524508951386d','App(OS specific)'); +INSERT INTO openshift_images VALUES(13,'mysql',434,NULL,NULL,122,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/mysql-80/5ba0ad4cdd19c70b45cbf48c','App'); +INSERT INTO openshift_images VALUES(14,'nginx',434,NULL,NULL,NULL,274,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/nginx-118/5f521a46e05bbcd88f128b64','App Server'); +INSERT INTO openshift_images VALUES(15,'node',576,NULL,NULL,NULL,NULL,NULL,NULL,507,'https://catalog.redhat.com/software/containers/rhel8/nodejs-14/5ed76a59d70cc50e69c2f891','Runtime'); +INSERT INTO openshift_images VALUES(16,'php',576,586,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ubi8/php-74/5f521244e05bbcd88f128b63','Lang'); +INSERT INTO openshift_images VALUES(17,'Python_Linux',434,587,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhscl/python-27-rhel7/57ea8d049c624c035f96f430','Lang(OS specific)'); +INSERT INTO openshift_images VALUES(18,'rabbitmq',576,NULL,NULL,165,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/jfrog/xray-rabbitmq/5ec6ef9eecb5246c0903f401','App'); +INSERT INTO openshift_images VALUES(19,'redis_Linux',434,NULL,NULL,168,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/redis-5/5c401b0cbed8bd75a2c4c287','App(OS specific)'); +INSERT INTO openshift_images VALUES(20,'ruby',434,588,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/ruby-26/5d3ffc6a5a13461f5fb862e6','Lang'); +INSERT INTO openshift_images VALUES(21,'swift',434,364,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhosp-beta/openstack-swift-base/5cdcbbcbdd19c778293be49f','Lang'); +INSERT INTO openshift_images VALUES(22,'tomcat',434,584,NULL,NULL,260,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3','App Server'); +INSERT INTO openshift_images VALUES(23,'websphere-liberty',434,584,NULL,NULL,285,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/websphere-liberty/5d0298c9f5a0de52d547adf7','App Server'); +INSERT INTO openshift_images VALUES(24,'ansible',434,NULL,NULL,5,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/openshift3/ose-ansible-service-broker/5989580dbed8bd284e93201e','App'); +INSERT INTO openshift_images VALUES(25,'hive',434,NULL,NULL,8,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/openshift4/ose-metering-hive/5d96f106d70cc50ebeaadb53','App'); +INSERT INTO openshift_images VALUES(26,'kafka',429,NULL,NULL,9,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/kafka2/5e8208a8ac3db903708fe0a5','App'); +INSERT INTO openshift_images VALUES(27,'postgresql',429,NULL,NULL,157,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/postgresql-12/5db133bd5a13461646df330b','App'); +INSERT INTO openshift_images VALUES(28,'spark',429,NULL,NULL,NULL,280,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/sdu-spark/5d695066d095e36f9d387421','App Server'); +INSERT INTO openshift_images VALUES(29,'vmware-tools',436,NULL,NULL,230,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel7/open-vm-tools/58ee4f6e4b339a32b5fb7bae','App'); +INSERT INTO openshift_images VALUES(30,'fabric-ca',576,NULL,NULL,422,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/ca-base/5d09538bf5a0de52d548efd3','App'); +INSERT INTO openshift_images VALUES(31,'db2',576,NULL,NULL,43,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/ibm-db2z-ui/5d8bd4bf69aea310b5373e17','App'); +INSERT INTO openshift_images VALUES(32,'mq',576,NULL,NULL,81,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/ibm-mqadvanced-server/5bacf2bf4841f1065681eb5f','App'); +INSERT INTO openshift_images VALUES(33,'websphere-traditional',434,584,NULL,NULL,284,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/r/ibmcom/websphere-traditional/5d77b2e4702c566f4cbf438b','App Server'); +INSERT INTO openshift_images VALUES(34,'base',576,NULL,NULL,NULL,268,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3','App Server'); +INSERT INTO openshift_images VALUES(35,'wildfly',576,NULL,NULL,NULL,493,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3','App Server'); +INSERT INTO openshift_images VALUES(36,'nginx-proxy',576,NULL,NULL,NULL,274,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/anaconda/nginx-proxy/5ea3014becb5246c0903c5da','App Server'); +INSERT INTO openshift_images VALUES(37,'javascript-node.js',576,589,NULL,NULL,NULL,NULL,NULL,507,'https://catalog.redhat.com/software/containers/rhel8/nodejs-12/5d3fff06d70cc5521d0009c2','Runtime'); +INSERT INTO openshift_images VALUES(38,'objectivec-gcc',576,343,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/gcc-toolset-10-perftools/5ea31291dd19c778961bf8da','Lang'); +INSERT INTO openshift_images VALUES(39,'nginx-ingress',576,NULL,NULL,88,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/nginx/nginx-ingress-operator/5e7ce1b8ecb5246c09fe03c7','App'); +INSERT INTO openshift_images VALUES(40,'node-red-docker',576,NULL,NULL,236,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm-edge/node-red/5ecf8c35ecb5246c0903fb58','App'); +INSERT INTO openshift_images VALUES(41,'sas',576,360,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/sas-base/5e2b5c69ac3db9037062d878','Lang'); +INSERT INTO openshift_images VALUES(42,'activemq',576,NULL,NULL,6,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/tremolosecurity/activemq/5cbbc19e293738790b2fc3d2','App'); +INSERT INTO openshift_images VALUES(43,'hadoop-docker',576,NULL,NULL,57,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/openshift4/ose-metering-hadoop/5d963124bed8bd2245d85da3','App'); +INSERT INTO openshift_images VALUES(44,'nexus3',576,NULL,NULL,124,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/sonatype/nexus-repository-manager/594c281c1fbe9847af657690','App'); +INSERT INTO openshift_images VALUES(45,'splunk',576,NULL,NULL,188,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/layers/splunk/splunk/7.3-redhat/images/sha256-55050c2097d994abc0e6d1c9f7fd0f0c2fb5f4019a9b1e094ffdf33a70a/5e162fab69aea316427f7947','App'); +INSERT INTO openshift_images VALUES(46,'IBM Transformation Extender',576,NULL,NULL,83,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibmcom/ibm-itx-rs-operator/5f9c27ddac3db90370a213a4','App'); +INSERT INTO openshift_images VALUES(47,'openjdk_Linux',576,584,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ubi8/openjdk-11/5dd6a4b45a13461646f677f4','Lang(OS specific)'); +INSERT INTO openshift_images VALUES(48,'perl',576,585,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ubi8/perl-526/5c83998abed8bd28d0e74c0f','Lang'); +INSERT INTO openshift_images VALUES(49,'postgres',576,NULL,NULL,157,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhscl/postgresql-13-rhel7/60af640142119b927780b520','App'); +INSERT INTO openshift_images VALUES(50,'solr',576,NULL,NULL,11,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/cp/cpd/solr-ubi/5db082ea69aea35a1c141026','App'); +INSERT INTO openshift_images VALUES(51,'odm',576,NULL,NULL,73,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/odm-dbserver/5d80f766702c566f4cbf46e6','App'); +INSERT INTO openshift_images VALUES(52,'Apache Cassandra',434,NULL,NULL,634,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/datastax/cassandra/5ee857c969aea31642b67910','App'); +INSERT INTO openshift_images VALUES(53,'Ansible Tower',434,NULL,NULL,5,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ansible-tower-38/ansible-tower-rhel7/5fa1c5d968d8b9a71232b1f7','App'); CREATE TABLE operator_images ( id integer PRIMARY KEY AUTOINCREMENT, container_name text NOT NULL, @@ -13808,69 +9211,3591 @@ CREATE TABLE operator_images ( FOREIGN KEY (runlib) REFERENCES entities (id), FOREIGN KEY (runtime) REFERENCES entities (id) ); -INSERT INTO operator_images VALUES(1,'Apache Spark Operator',426,331,NULL,280,NULL,NULL,NULL,NULL,'quay.io/radanalyticsio/spark-operator:1.0.2','https://github.com/radanalyticsio/spark-operator'); -INSERT INTO operator_images VALUES(2,'Banzai Cloud Kafka Operator',426,323,NULL,9,NULL,NULL,NULL,NULL,'banzaicloud/kafka-operator:0.3.1','https://github.com/banzaicloud/kafka-operator/tree/master'); -INSERT INTO operator_images VALUES(3,'Camel K Operator',426,323,NULL,378,NULL,NULL,NULL,NULL,'docker.io/apache/camel-k:1.3.0','https://github.com/apache/camel-k'); -INSERT INTO operator_images VALUES(4,'GrdsCloud MySQL for Kubernetes',426,NULL,NULL,122,NULL,NULL,NULL,NULL,'grds/mysql-operator:1.0.0','https://github.com/GrdsCloud'); -INSERT INTO operator_images VALUES(5,'Hive for Red Hat OpenShift',426,323,NULL,8,NULL,NULL,NULL,NULL,'quay.io/openshift-hive/hive:v1.0.17','https://github.com/openshift/hive'); -INSERT INTO operator_images VALUES(6,'IBM Spectrum Scale CSI Plugin Operator',426,323,NULL,74,NULL,NULL,NULL,NULL,'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0','https://github.com/IBM/ibm-spectrum-scale-csi/'); -INSERT INTO operator_images VALUES(7,'Jenkins Operator',426,323,NULL,90,NULL,NULL,NULL,NULL,'virtuslab/jenkins-operator:v0.3.0','https://github.com/jenkinsci/kubernetes-operator'); -INSERT INTO operator_images VALUES(8,'Postgresql Operator',426,NULL,NULL,157,NULL,NULL,NULL,NULL,'quay.io/deekshah86/postgresql-operator','https://github.com/janepelladinesh/postgresql-operator'); -INSERT INTO operator_images VALUES(9,'Redis Operator',426,323,NULL,168,NULL,NULL,NULL,NULL,'quay.io/opstree/redis-operator:v0.3.0','https://github.com/ot-container-kit/redis-operator'); -INSERT INTO operator_images VALUES(10,'WildFly',426,323,NULL,493,NULL,NULL,NULL,NULL,'quay.io/wildfly/wildfly-operator:0.3.0','https://github.com/wildfly/wildfly-operator'); -INSERT INTO operator_images VALUES(11,'MongoDB Enterprise Operator',426,NULL,NULL,116,NULL,NULL,NULL,NULL,'quay.io/mongodb/mongodb-enterprise-operator:1.12.0','https://github.com/mongodb/mongodb-enterprise-kubernetes'); -INSERT INTO operator_images VALUES(12,'Apache Spark Operator',426,NULL,NULL,280,NULL,NULL,NULL,NULL,'quay.io/radanalyticsio/spark-operator:1.0.2','https://github.com/radanalyticsio/spark-operator'); -INSERT INTO operator_images VALUES(13,'Banzai Cloud Kafka Operator',426,NULL,NULL,9,NULL,NULL,NULL,NULL,'banzaicloud/kafka-operator:0.3.1','https://github.com/banzaicloud/kafka-operator/tree/master'); -INSERT INTO operator_images VALUES(14,'Camel K Operator',426,NULL,NULL,378,NULL,NULL,NULL,NULL,'docker.io/apache/camel-k:1.3.0','https://github.com/apache/camel-k'); -INSERT INTO operator_images VALUES(15,'GrdsCloud MySQL for Kubernetes',426,NULL,NULL,122,NULL,NULL,NULL,NULL,'grds/mysql-operator:1.0.0','https://github.com/GrdsCloud'); -INSERT INTO operator_images VALUES(16,'Hive for Red Hat OpenShift',426,NULL,NULL,8,NULL,NULL,NULL,NULL,'quay.io/openshift-hive/hive:v1.0.17','https://github.com/openshift/hive'); -INSERT INTO operator_images VALUES(17,'IBM Spectrum Scale CSI Plugin Operator',426,NULL,NULL,74,NULL,NULL,NULL,NULL,'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0','https://github.com/IBM/ibm-spectrum-scale-csi/'); -INSERT INTO operator_images VALUES(18,'Jenkins Operator',426,NULL,NULL,90,NULL,NULL,NULL,NULL,'virtuslab/jenkins-operator:v0.3.0','https://github.com/jenkinsci/kubernetes-operator'); -INSERT INTO operator_images VALUES(19,'Postgresql Operator',426,NULL,NULL,157,NULL,NULL,NULL,NULL,'quay.io/deekshah86/postgresql-operator','https://github.com/janepelladinesh/postgresql-operator'); -INSERT INTO operator_images VALUES(20,'Redis Operator',426,NULL,NULL,168,NULL,NULL,NULL,NULL,'quay.io/opstree/redis-operator:v0.3.0','https://github.com/ot-container-kit/redis-operator'); -INSERT INTO operator_images VALUES(21,'WildFly',426,NULL,NULL,493,NULL,NULL,NULL,NULL,'quay.io/wildfly/wildfly-operator:0.3.0','https://github.com/wildfly/wildfly-operator'); -INSERT INTO operator_images VALUES(22,'MongoDB Enterprise Operator',426,NULL,NULL,116,NULL,NULL,NULL,NULL,'quay.io/mongodb/mongodb-enterprise-operator:1.12.0','https://github.com/mongodb/mongodb-enterprise-kubernetes'); -INSERT INTO operator_images VALUES(23,'Instana Agent Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,611,'instana/instana-agent-operator:0.3.7','https://github.com/instana/instana-agent-operator'); -INSERT INTO operator_images VALUES(24,'credstash-operator',426,NULL,NULL,612,NULL,NULL,NULL,NULL,'quay.io/ouzi/credstash-operator:v1.13.0','https://github.com/ouzi-dev/credstash-operator'); -INSERT INTO operator_images VALUES(25,'Snyk Operator',426,NULL,NULL,613,NULL,NULL,NULL,NULL,'docker.io/snyk/kubernetes-operator:1.59.3','https://github.com/snyk/kubernetes-monitor'); -INSERT INTO operator_images VALUES(26,'Akka Cluster Operator',426,NULL,NULL,614,NULL,NULL,NULL,NULL,'lightbend-docker-registry.bintray.io/lightbend/akkacluster-operator:v1.0.0','https://github.com/lightbend/akka-cluster-operator'); -INSERT INTO operator_images VALUES(27,'Varnish Operator',426,NULL,NULL,NULL,615,NULL,NULL,NULL,'ibmcom/varnish-operator:0.27.2','https://github.com/IBM/varnish-operator'); -INSERT INTO operator_images VALUES(28,'Datadog Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,616,'datadog/operator:0.3.0','https://github.com/DataDog/datadog-operator'); -INSERT INTO operator_images VALUES(29,'Hazelcast Enterprise Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,618,'hazelcast/hazelcast-enterprise-operator:0.3.7','https://github.com/hazelcast/hazelcast-operator'); -INSERT INTO operator_images VALUES(30,'infinispan',426,NULL,NULL,619,NULL,NULL,NULL,NULL,'docker.io/jboss/infinispan-operator:0.3.0','https://github.com/infinispan/infinispan-operator'); -INSERT INTO operator_images VALUES(31,'Nuxeo Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,620,'docker.io/appzygy/nuxeo-operator:0.7.1','https://github.com/aceeric/nuxeo-operator'); -INSERT INTO operator_images VALUES(32,'ArangoDB',426,NULL,NULL,621,NULL,NULL,NULL,NULL,'arangodb/kube-arangodb:1.0.2','https://github.com/arangodb/kube-arangodb'); -INSERT INTO operator_images VALUES(33,'Eclipse Che',426,NULL,NULL,622,NULL,NULL,NULL,NULL,'quay.io/eclipse/che-operator@sha256:ea3641202e11ad00bd639b59809b6f4a6508f2c143d260b1683a9f36d74ed54f','https://github.com/eclipse-che/che-operator'); -INSERT INTO operator_images VALUES(34,'AWS S3 Operator',426,NULL,NULL,623,NULL,NULL,NULL,NULL,'quay.io/screeley44/aws-s3-provisioner:v1.0.0','https://github.com/yard-turkey/aws-s3-provisioner'); -INSERT INTO operator_images VALUES(35,'Altinity ClickHouse Operator',426,NULL,NULL,624,NULL,NULL,NULL,NULL,'altinity/clickhouse-operator:0.9.9','https://github.com/altinity/clickhouse-operator'); -INSERT INTO operator_images VALUES(36,'MinIO Operator',426,NULL,NULL,625,NULL,NULL,NULL,NULL,'minio/k8s-operator:1.0.3','https://github.com/minio/minio-operator'); -INSERT INTO operator_images VALUES(37,'Elastic Cloud on Kubernetes',426,NULL,NULL,626,NULL,NULL,NULL,NULL,'docker.elastic.co/eck/eck-operator:1.0.0-beta1','https://github.com/elastic/cloud-on-k8s'); -INSERT INTO operator_images VALUES(38,'Percona XtraDB Cluster Operator',426,NULL,NULL,627,NULL,NULL,NULL,NULL,'percona/percona-xtradb-cluster-operator:1.7.0','https://github.com/percona/percona-xtradb-cluster-operator'); -INSERT INTO operator_images VALUES(39,'Keycloak Operator',426,NULL,NULL,628,NULL,NULL,NULL,NULL,'quay.io/keycloak/keycloak-operator:9.0.2','https://github.com/keycloak/keycloak-operator'); -INSERT INTO operator_images VALUES(40,'Grafana Operator',426,NULL,NULL,629,NULL,NULL,NULL,NULL,'quay.io/integreatly/grafana-operator:v3.10.1','https://github.com/integr8ly/grafana-operator'); -INSERT INTO operator_images VALUES(41,'Mattermost Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,630,'docker.io/mattermost/mattermost-operator:v0.5.0','https://github.com/mattermost/mattermost-operator'); -INSERT INTO operator_images VALUES(42,'synapse-helm',426,NULL,NULL,631,NULL,NULL,NULL,NULL,'quay.io/mgoerens/synapse-helm:v0.0.11','https://github.com/opdev/synapse-helm'); -INSERT INTO operator_images VALUES(43,'IBM Cloud IAM Operator',426,NULL,NULL,632,NULL,NULL,NULL,NULL,'cloudoperators/ibmcloud-iam-operator:0.1.0','https://github.com/IBM/ibmcloud-iam-operator'); -INSERT INTO operator_images VALUES(44,'Knative Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,633,'gcr.io/knative-releases/knative.dev/operator/cmd/operator:v0.20.0','https://github.com/knative/operator'); -INSERT INTO operator_images VALUES(45,'Cassandra',426,NULL,NULL,634,NULL,NULL,NULL,NULL,'gcr.io/cassandra-operator/cassandra-operator:v2.0.0','https://github.com/instaclustr/cassandra-operator'); -INSERT INTO operator_images VALUES(46,'Kubeflow',426,NULL,NULL,NULL,NULL,NULL,NULL,635,'aipipeline/kubeflow-operator:v1.0.0','https://github.com/kubeflow/kfctl'); -INSERT INTO operator_images VALUES(47,'Openshift Qiskit Operator',426,NULL,NULL,636,NULL,NULL,NULL,NULL,'https://hub.docker.com/repository/docker/singhp11/openshift-qiskit-operator','https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/openshift-qiskit-operator'); -INSERT INTO operator_images VALUES(48,'Azure Service Operator',426,NULL,NULL,637,NULL,NULL,NULL,NULL,'mcr.microsoft.com/k8s/azureserviceoperator:1.0.27207','https://github.com/Azure/azure-service-operator'); -INSERT INTO operator_images VALUES(49,'Strimzi',426,NULL,NULL,NULL,NULL,NULL,NULL,638,'docker.io/strimzi/operator@sha256:62218aee7553b31db1f65bc30b3c6b6595c2fd631b2e1792e24e554a47080aa6','https://github.com/strimzi/strimzi-kafka-operator'); -INSERT INTO operator_images VALUES(50,'Sematext Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,639,'docker.io/sematext/sematext-operator:1.0.33','https://github.com/sematext/sematext-operator'); -INSERT INTO operator_images VALUES(51,'Eclipse Hawkbit',426,NULL,NULL,640,NULL,NULL,NULL,NULL,'docker.io/ctron/hawkbit-operator:0.1.4','https://github.com/ctron/hawkbit-operator'); -INSERT INTO operator_images VALUES(52,'Eclipse Ditto',426,NULL,NULL,641,NULL,NULL,NULL,NULL,'docker.io/ctron/ditto-operator:0.1.0','https://github.com/ctron/ditto-operator'); -INSERT INTO operator_images VALUES(53,'Mariadb Operator',426,NULL,NULL,642,NULL,NULL,NULL,NULL,'quay.io/manojdhanorkar/mariadb-operator:v0.0.1','https://github.com/abalki001/mariadb-operator'); -INSERT INTO operator_images VALUES(54,'Zadara Operator',426,NULL,NULL,643,NULL,NULL,NULL,NULL,'zadara/zoperator:0.3.6','https://github.com/zadarastorage/zadara-operator'); -INSERT INTO operator_images VALUES(55,'Istio',426,NULL,NULL,644,NULL,NULL,NULL,NULL,'banzaicloud/istio-operator:0.1.6','https://github.com/banzaicloud/istio-operator/tree/release-1.1'); -INSERT INTO operator_images VALUES(56,'Vault Helm',426,NULL,NULL,645,NULL,NULL,NULL,NULL,'quay.io/brejohns/vault-helm:0.0.1','https://github.com/SDBrett/vault-helm'); -INSERT INTO operator_images VALUES(57,'druid-operator',426,NULL,NULL,646,NULL,NULL,NULL,NULL,'druidio/druid-operator:0.0.6','https://github.com/druid-io/druid-operator'); -INSERT INTO operator_images VALUES(58,'etcd',426,NULL,NULL,647,NULL,NULL,NULL,NULL,'quay.io/coreos/etcd-operator@sha256:66a37fd61a06a43969854ee6d3e21087a98b93838e284a6086b13917f96b0d9b','https://github.com/coreos/etcd-operator'); -INSERT INTO operator_images VALUES(59,'Traefikee Operator',426,NULL,NULL,NULL,648,NULL,NULL,NULL,'containous/traefikee-operator:v0.3.0','https://github.com/containous/traefikee-operator'); -INSERT INTO operator_images VALUES(60,'IBM Cloud Operator',426,NULL,NULL,649,NULL,NULL,NULL,NULL,'cloudoperators/ibmcloud-operator:0.1.10','https://github.com/IBM/cloud-operators'); -INSERT INTO operator_images VALUES(61,'Yugabyte Operator',426,NULL,NULL,650,NULL,NULL,NULL,NULL,'quay.io/yugabyte/yugabytedb-operator','https://github.com/yugabyte/yugabyte-operator'); -INSERT INTO operator_images VALUES(62,'CockroachDB',426,NULL,NULL,651,NULL,NULL,NULL,NULL,'quay.io/helmoperators/cockroachdb:v3.0.7','https://github.com/dmesser/cockroachdb-operator'); -INSERT INTO operator_images VALUES(63,'Community Jaeger Operator',426,NULL,NULL,NULL,NULL,NULL,NULL,652,'docker.io/jaegertracing/jaeger-operator:1.11.1','https://github.com/jaegertracing/jaeger-operator'); - -COMMIT TRANSACTION; -PRAGMA foreign_keys = on; +INSERT INTO operator_images VALUES(1,'Apache Spark Operator',576,584,NULL,280,NULL,NULL,NULL,NULL,'quay.io/radanalyticsio/spark-operator:1.0.2','https://github.com/radanalyticsio/spark-operator'); +INSERT INTO operator_images VALUES(2,'Banzai Cloud Kafka Operator',576,323,NULL,9,NULL,NULL,NULL,NULL,'banzaicloud/kafka-operator:0.3.1','https://github.com/banzaicloud/kafka-operator/tree/master'); +INSERT INTO operator_images VALUES(3,'Camel K Operator',576,323,NULL,378,NULL,NULL,NULL,NULL,'docker.io/apache/camel-k:1.3.0','https://github.com/apache/camel-k'); +INSERT INTO operator_images VALUES(4,'GrdsCloud MySQL for Kubernetes',576,NULL,NULL,122,NULL,NULL,NULL,NULL,'grds/mysql-operator:1.0.0','https://github.com/GrdsCloud'); +INSERT INTO operator_images VALUES(5,'Hive for Red Hat OpenShift',576,323,NULL,8,NULL,NULL,NULL,NULL,'quay.io/openshift-hive/hive:v1.0.17','https://github.com/openshift/hive'); +INSERT INTO operator_images VALUES(6,'IBM Spectrum Scale CSI Plugin Operator',576,323,NULL,605,NULL,NULL,NULL,NULL,'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0','https://github.com/IBM/ibm-spectrum-scale-csi/'); +INSERT INTO operator_images VALUES(7,'Jenkins Operator',576,323,NULL,90,NULL,NULL,NULL,NULL,'virtuslab/jenkins-operator:v0.3.0','https://github.com/jenkinsci/kubernetes-operator'); +INSERT INTO operator_images VALUES(8,'Postgresql Operator',576,NULL,NULL,157,NULL,NULL,NULL,NULL,'quay.io/deekshah86/postgresql-operator','https://github.com/janepelladinesh/postgresql-operator'); +INSERT INTO operator_images VALUES(9,'Redis Operator',576,323,NULL,168,NULL,NULL,NULL,NULL,'quay.io/opstree/redis-operator:v0.3.0','https://github.com/ot-container-kit/redis-operator'); +INSERT INTO operator_images VALUES(10,'WildFly',576,323,NULL,493,NULL,NULL,NULL,NULL,'quay.io/wildfly/wildfly-operator:0.3.0','https://github.com/wildfly/wildfly-operator'); +INSERT INTO operator_images VALUES(11,'MongoDB Enterprise Operator',576,NULL,NULL,116,NULL,NULL,NULL,NULL,'quay.io/mongodb/mongodb-enterprise-operator:1.12.0','https://github.com/mongodb/mongodb-enterprise-kubernetes'); +INSERT INTO operator_images VALUES(12,'Apache Spark Operator',576,NULL,NULL,280,NULL,NULL,NULL,NULL,'quay.io/radanalyticsio/spark-operator:1.0.2','https://github.com/radanalyticsio/spark-operator'); +INSERT INTO operator_images VALUES(13,'Banzai Cloud Kafka Operator',576,NULL,NULL,9,NULL,NULL,NULL,NULL,'banzaicloud/kafka-operator:0.3.1','https://github.com/banzaicloud/kafka-operator/tree/master'); +INSERT INTO operator_images VALUES(14,'Camel K Operator',576,NULL,NULL,378,NULL,NULL,NULL,NULL,'docker.io/apache/camel-k:1.3.0','https://github.com/apache/camel-k'); +INSERT INTO operator_images VALUES(15,'GrdsCloud MySQL for Kubernetes',576,NULL,NULL,122,NULL,NULL,NULL,NULL,'grds/mysql-operator:1.0.0','https://github.com/GrdsCloud'); +INSERT INTO operator_images VALUES(16,'Hive for Red Hat OpenShift',576,NULL,NULL,8,NULL,NULL,NULL,NULL,'quay.io/openshift-hive/hive:v1.0.17','https://github.com/openshift/hive'); +INSERT INTO operator_images VALUES(17,'IBM Spectrum Scale CSI Plugin Operator',576,NULL,NULL,605,NULL,NULL,NULL,NULL,'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0','https://github.com/IBM/ibm-spectrum-scale-csi/'); +INSERT INTO operator_images VALUES(18,'Jenkins Operator',576,NULL,NULL,90,NULL,NULL,NULL,NULL,'virtuslab/jenkins-operator:v0.3.0','https://github.com/jenkinsci/kubernetes-operator'); +INSERT INTO operator_images VALUES(19,'Postgresql Operator',576,NULL,NULL,157,NULL,NULL,NULL,NULL,'quay.io/deekshah86/postgresql-operator','https://github.com/janepelladinesh/postgresql-operator'); +INSERT INTO operator_images VALUES(20,'Redis Operator',576,NULL,NULL,168,NULL,NULL,NULL,NULL,'quay.io/opstree/redis-operator:v0.3.0','https://github.com/ot-container-kit/redis-operator'); +INSERT INTO operator_images VALUES(21,'WildFly',576,NULL,NULL,493,NULL,NULL,NULL,NULL,'quay.io/wildfly/wildfly-operator:0.3.0','https://github.com/wildfly/wildfly-operator'); +INSERT INTO operator_images VALUES(22,'MongoDB Enterprise Operator',576,NULL,NULL,116,NULL,NULL,NULL,NULL,'quay.io/mongodb/mongodb-enterprise-operator:1.12.0','https://github.com/mongodb/mongodb-enterprise-kubernetes'); +INSERT INTO operator_images VALUES(23,'Instana Agent Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,611,'instana/instana-agent-operator:0.3.7','https://github.com/instana/instana-agent-operator'); +INSERT INTO operator_images VALUES(24,'credstash-operator',576,NULL,NULL,612,NULL,NULL,NULL,NULL,'quay.io/ouzi/credstash-operator:v1.13.0','https://github.com/ouzi-dev/credstash-operator'); +INSERT INTO operator_images VALUES(25,'Snyk Operator',576,NULL,NULL,613,NULL,NULL,NULL,NULL,'docker.io/snyk/kubernetes-operator:1.59.3','https://github.com/snyk/kubernetes-monitor'); +INSERT INTO operator_images VALUES(26,'Akka Cluster Operator',576,NULL,NULL,614,NULL,NULL,NULL,NULL,'lightbend-docker-registry.bintray.io/lightbend/akkacluster-operator:v1.0.0','https://github.com/lightbend/akka-cluster-operator'); +INSERT INTO operator_images VALUES(27,'Varnish Operator',576,NULL,NULL,NULL,615,NULL,NULL,NULL,'ibmcom/varnish-operator:0.27.2','https://github.com/IBM/varnish-operator'); +INSERT INTO operator_images VALUES(28,'Datadog Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,616,'datadog/operator:0.3.0','https://github.com/DataDog/datadog-operator'); +INSERT INTO operator_images VALUES(29,'Hazelcast Enterprise Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,618,'hazelcast/hazelcast-enterprise-operator:0.3.7','https://github.com/hazelcast/hazelcast-operator'); +INSERT INTO operator_images VALUES(30,'infinispan',576,NULL,NULL,619,NULL,NULL,NULL,NULL,'docker.io/jboss/infinispan-operator:0.3.0','https://github.com/infinispan/infinispan-operator'); +INSERT INTO operator_images VALUES(31,'Nuxeo Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,620,'docker.io/appzygy/nuxeo-operator:0.7.1','https://github.com/aceeric/nuxeo-operator'); +INSERT INTO operator_images VALUES(32,'ArangoDB',576,NULL,NULL,621,NULL,NULL,NULL,NULL,'arangodb/kube-arangodb:1.0.2','https://github.com/arangodb/kube-arangodb'); +INSERT INTO operator_images VALUES(33,'Eclipse Che',576,NULL,NULL,622,NULL,NULL,NULL,NULL,'quay.io/eclipse/che-operator@sha256:ea3641202e11ad00bd639b59809b6f4a6508f2c143d260b1683a9f36d74ed54f','https://github.com/eclipse-che/che-operator'); +INSERT INTO operator_images VALUES(34,'AWS S3 Operator',576,NULL,NULL,623,NULL,NULL,NULL,NULL,'quay.io/screeley44/aws-s3-provisioner:v1.0.0','https://github.com/yard-turkey/aws-s3-provisioner'); +INSERT INTO operator_images VALUES(35,'Altinity ClickHouse Operator',576,NULL,NULL,624,NULL,NULL,NULL,NULL,'altinity/clickhouse-operator:0.9.9','https://github.com/altinity/clickhouse-operator'); +INSERT INTO operator_images VALUES(36,'MinIO Operator',576,NULL,NULL,625,NULL,NULL,NULL,NULL,'minio/k8s-operator:1.0.3','https://github.com/minio/minio-operator'); +INSERT INTO operator_images VALUES(37,'Elastic Cloud on Kubernetes',576,NULL,NULL,626,NULL,NULL,NULL,NULL,'docker.elastic.co/eck/eck-operator:1.0.0-beta1','https://github.com/elastic/cloud-on-k8s'); +INSERT INTO operator_images VALUES(38,'Percona XtraDB Cluster Operator',576,NULL,NULL,627,NULL,NULL,NULL,NULL,'percona/percona-xtradb-cluster-operator:1.7.0','https://github.com/percona/percona-xtradb-cluster-operator'); +INSERT INTO operator_images VALUES(39,'Keycloak Operator',576,NULL,NULL,628,NULL,NULL,NULL,NULL,'quay.io/keycloak/keycloak-operator:9.0.2','https://github.com/keycloak/keycloak-operator'); +INSERT INTO operator_images VALUES(40,'Grafana Operator',576,NULL,NULL,629,NULL,NULL,NULL,NULL,'quay.io/integreatly/grafana-operator:v3.10.1','https://github.com/integr8ly/grafana-operator'); +INSERT INTO operator_images VALUES(41,'Mattermost Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,630,'docker.io/mattermost/mattermost-operator:v0.5.0','https://github.com/mattermost/mattermost-operator'); +INSERT INTO operator_images VALUES(42,'synapse-helm',576,NULL,NULL,631,NULL,NULL,NULL,NULL,'quay.io/mgoerens/synapse-helm:v0.0.11','https://github.com/opdev/synapse-helm'); +INSERT INTO operator_images VALUES(43,'IBM Cloud IAM Operator',576,NULL,NULL,632,NULL,NULL,NULL,NULL,'cloudoperators/ibmcloud-iam-operator:0.1.0','https://github.com/IBM/ibmcloud-iam-operator'); +INSERT INTO operator_images VALUES(44,'Knative Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,633,'gcr.io/knative-releases/knative.dev/operator/cmd/operator:v0.20.0','https://github.com/knative/operator'); +INSERT INTO operator_images VALUES(45,'Cassandra',576,NULL,NULL,634,NULL,NULL,NULL,NULL,'gcr.io/cassandra-operator/cassandra-operator:v2.0.0','https://github.com/instaclustr/cassandra-operator'); +INSERT INTO operator_images VALUES(46,'Kubeflow',576,NULL,NULL,NULL,NULL,NULL,NULL,635,'aipipeline/kubeflow-operator:v1.0.0','https://github.com/kubeflow/kfctl'); +INSERT INTO operator_images VALUES(47,'Openshift Qiskit Operator',576,NULL,NULL,636,NULL,NULL,NULL,NULL,'https://hub.docker.com/repository/docker/singhp11/openshift-qiskit-operator','https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/openshift-qiskit-operator'); +INSERT INTO operator_images VALUES(48,'Azure Service Operator',576,NULL,NULL,637,NULL,NULL,NULL,NULL,'mcr.microsoft.com/k8s/azureserviceoperator:1.0.27207','https://github.com/Azure/azure-service-operator'); +INSERT INTO operator_images VALUES(49,'Strimzi',576,NULL,NULL,NULL,NULL,NULL,NULL,638,'docker.io/strimzi/operator@sha256:62218aee7553b31db1f65bc30b3c6b6595c2fd631b2e1792e24e554a47080aa6','https://github.com/strimzi/strimzi-kafka-operator'); +INSERT INTO operator_images VALUES(50,'Sematext Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,639,'docker.io/sematext/sematext-operator:1.0.33','https://github.com/sematext/sematext-operator'); +INSERT INTO operator_images VALUES(51,'Eclipse Hawkbit',576,NULL,NULL,640,NULL,NULL,NULL,NULL,'docker.io/ctron/hawkbit-operator:0.1.4','https://github.com/ctron/hawkbit-operator'); +INSERT INTO operator_images VALUES(52,'Eclipse Ditto',576,NULL,NULL,641,NULL,NULL,NULL,NULL,'docker.io/ctron/ditto-operator:0.1.0','https://github.com/ctron/ditto-operator'); +INSERT INTO operator_images VALUES(53,'Mariadb Operator',576,NULL,NULL,642,NULL,NULL,NULL,NULL,'quay.io/manojdhanorkar/mariadb-operator:v0.0.1','https://github.com/abalki001/mariadb-operator'); +INSERT INTO operator_images VALUES(54,'Zadara Operator',576,NULL,NULL,643,NULL,NULL,NULL,NULL,'zadara/zoperator:0.3.6','https://github.com/zadarastorage/zadara-operator'); +INSERT INTO operator_images VALUES(55,'Istio',576,NULL,NULL,644,NULL,NULL,NULL,NULL,'banzaicloud/istio-operator:0.1.6','https://github.com/banzaicloud/istio-operator/tree/release-1.1'); +INSERT INTO operator_images VALUES(56,'Vault Helm',576,NULL,NULL,645,NULL,NULL,NULL,NULL,'quay.io/brejohns/vault-helm:0.0.1','https://github.com/SDBrett/vault-helm'); +INSERT INTO operator_images VALUES(57,'druid-operator',576,NULL,NULL,646,NULL,NULL,NULL,NULL,'druidio/druid-operator:0.0.6','https://github.com/druid-io/druid-operator'); +INSERT INTO operator_images VALUES(58,'etcd',576,NULL,NULL,647,NULL,NULL,NULL,NULL,'quay.io/coreos/etcd-operator@sha256:66a37fd61a06a43969854ee6d3e21087a98b93838e284a6086b13917f96b0d9b','https://github.com/coreos/etcd-operator'); +INSERT INTO operator_images VALUES(59,'Traefikee Operator',576,NULL,NULL,NULL,648,NULL,NULL,NULL,'containous/traefikee-operator:v0.3.0','https://github.com/containous/traefikee-operator'); +INSERT INTO operator_images VALUES(60,'IBM Cloud Operator',576,NULL,NULL,649,NULL,NULL,NULL,NULL,'cloudoperators/ibmcloud-operator:0.1.10','https://github.com/IBM/cloud-operators'); +INSERT INTO operator_images VALUES(61,'Yugabyte Operator',576,NULL,NULL,650,NULL,NULL,NULL,NULL,'quay.io/yugabyte/yugabytedb-operator','https://github.com/yugabyte/yugabyte-operator'); +INSERT INTO operator_images VALUES(62,'CockroachDB',576,NULL,NULL,651,NULL,NULL,NULL,NULL,'quay.io/helmoperators/cockroachdb:v3.0.7','https://github.com/dmesser/cockroachdb-operator'); +INSERT INTO operator_images VALUES(63,'Community Jaeger Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,652,'docker.io/jaegertracing/jaeger-operator:1.11.1','https://github.com/jaegertracing/jaeger-operator'); +CREATE TABLE docker_environment_variables( + id integer NOT NULL PRIMARY KEY AUTOINCREMENT, + Environment_Variables text, + Container_Name text, + Required text, + Default_Values text, + FOREIGN KEY (Container_Name) REFERENCES docker_images (id) + ); +INSERT INTO docker_environment_variables VALUES(1,'DB2INSTANCE','db2','Y',''); +INSERT INTO docker_environment_variables VALUES(2,'DB2INST1_PASSWORD','db2','Y',''); +INSERT INTO docker_environment_variables VALUES(3,'DBNAME','db2','Y',''); +INSERT INTO docker_environment_variables VALUES(4,'BLU','db2','N','True'); +INSERT INTO docker_environment_variables VALUES(5,'ENABLE_ORACLE_COMPATIBILITY','db2','',''); +INSERT INTO docker_environment_variables VALUES(6,'SAMPLEDB','db2','',''); +INSERT INTO docker_environment_variables VALUES(7,'PERSISTENT_HOME','db2','',''); +INSERT INTO docker_environment_variables VALUES(8,'HADR_ENABLED','db2','',''); +INSERT INTO docker_environment_variables VALUES(9,'ETCD_ENDPOINT','db2','',''); +INSERT INTO docker_environment_variables VALUES(10,'ETCD_USERNAME','db2','',''); +INSERT INTO docker_environment_variables VALUES(11,'ETCD_PASSWORD','db2','',''); +INSERT INTO docker_environment_variables VALUES(12,'TEXT_SEARCH','db2','N',''); +INSERT INTO docker_environment_variables VALUES(13,'ARCHIVE_LOGS','db2','N','True'); +INSERT INTO docker_environment_variables VALUES(14,'AUTOCONFIG','db2','N','True'); +INSERT INTO docker_environment_variables VALUES(15,'MYSQL_HOST','mysql','',''); +INSERT INTO docker_environment_variables VALUES(16,'MYSQL_ROOT_PASSWORD','mysql','',''); +INSERT INTO docker_environment_variables VALUES(17,'MYSQL_DATABASE','mysql','',''); +INSERT INTO docker_environment_variables VALUES(18,'MYSQL_USER','mysql','',''); +INSERT INTO docker_environment_variables VALUES(19,'MYSQL_PASSWORD','mysql','',''); +INSERT INTO docker_environment_variables VALUES(20,'MYSQL_ALLOW_EMPTY_PASSWORD','mysql','',''); +INSERT INTO docker_environment_variables VALUES(21,'MYSQL_RANDOM_ROOT_PASSWORD','mysql','',''); +INSERT INTO docker_environment_variables VALUES(22,'MYSQL_ONETIME_PASSWORD','mysql','',''); +INSERT INTO docker_environment_variables VALUES(23,'MYSQL_INITDB_SKIP_TZINFO','mysql','',''); +INSERT INTO docker_environment_variables VALUES(24,'CATALINA_BASE','tomcat','',''); +INSERT INTO docker_environment_variables VALUES(25,'CATALINA_HOME','tomcat','',''); +INSERT INTO docker_environment_variables VALUES(26,'CATALINA_TMPDIR','tomcat','',''); +INSERT INTO docker_environment_variables VALUES(27,'JRE_HOME','tomcat','',''); +INSERT INTO docker_environment_variables VALUES(28,'CLASSPATH','tomcat','',''); +CREATE TABLE entity_versions ( + id integer PRIMARY KEY AUTOINCREMENT, + entity_id integer NOT NULL, + version text, + release_date date, + end_date date, + FOREIGN KEY (entity_id) REFERENCES entities (id) + ); +INSERT INTO entity_versions VALUES(1,497,'1','01/15/2002','07/14/2009'); +INSERT INTO entity_versions VALUES(2,497,'1.1','04/09/2003','10/08/2013'); +INSERT INTO entity_versions VALUES(3,497,'2','10/27/2005','07/12/2011'); +INSERT INTO entity_versions VALUES(4,497,'3','11/06/2006','07/12/2011'); +INSERT INTO entity_versions VALUES(5,497,'3.5','11/19/2007','10/10/2028'); +INSERT INTO entity_versions VALUES(6,497,'4','04/12/2010','01/12/2016'); +INSERT INTO entity_versions VALUES(7,497,'4.5','08/15/2012','01/12/2016'); +INSERT INTO entity_versions VALUES(8,497,'4.5.1','10/17/2013','01/12/2016'); +INSERT INTO entity_versions VALUES(9,497,'4.5.2','05/05/2014','04/26/2022'); +INSERT INTO entity_versions VALUES(10,497,'4.6','07/20/2015','04/26/2022'); +INSERT INTO entity_versions VALUES(11,497,'4.6.1','11/30/2015','04/26/2022'); +INSERT INTO entity_versions VALUES(12,497,'4.6.2','08/02/2016','04/26/2022'); +INSERT INTO entity_versions VALUES(13,497,'4.7','04/05/2017',' '); +INSERT INTO entity_versions VALUES(14,497,'4.7.1','10/17/2017',' '); +INSERT INTO entity_versions VALUES(15,497,'4.7.2','04/30/2018',' '); +INSERT INTO entity_versions VALUES(16,497,'4.8','09/04/2019',' '); +INSERT INTO entity_versions VALUES(17,498,' ',' ',' '); +INSERT INTO entity_versions VALUES(18,592,'1','12/01/1996',' '); +INSERT INTO entity_versions VALUES(19,592,'2','09/01/1997',' '); +INSERT INTO entity_versions VALUES(20,592,'3','11/01/2000',' '); +INSERT INTO entity_versions VALUES(21,500,' ','01/01/1996','08/31/2020'); +INSERT INTO entity_versions VALUES(22,501,'6',' ',' '); +INSERT INTO entity_versions VALUES(23,501,'7',' ',' '); +INSERT INTO entity_versions VALUES(24,501,'8',' ',' '); +INSERT INTO entity_versions VALUES(25,501,'9',' ',' '); +INSERT INTO entity_versions VALUES(26,501,'10.0.0',' ',' '); +INSERT INTO entity_versions VALUES(27,502,'5.6','06/01/2020',' '); +INSERT INTO entity_versions VALUES(28,502,'5.5','12/01/2018',' '); +INSERT INTO entity_versions VALUES(29,502,'5.4','06/01/2017',' '); +INSERT INTO entity_versions VALUES(30,502,'5.3','12/01/2015',' '); +INSERT INTO entity_versions VALUES(31,502,'5.2','12/31/2014',' '); +INSERT INTO entity_versions VALUES(32,502,'5.1','12/31/2012',' '); +INSERT INTO entity_versions VALUES(33,502,'4.2','12/31/2011',' '); +INSERT INTO entity_versions VALUES(34,502,'4.1','12/31/2009',' '); +INSERT INTO entity_versions VALUES(35,502,'3.2','12/31/2007',' '); +INSERT INTO entity_versions VALUES(36,502,'3.1','12/31/2005',' '); +INSERT INTO entity_versions VALUES(37,502,'2.2','12/31/2003',' '); +INSERT INTO entity_versions VALUES(38,502,'2.1','12/31/2001',' '); +INSERT INTO entity_versions VALUES(39,503,'20.10.8','08/03/2021',' '); +INSERT INTO entity_versions VALUES(40,503,'20.10.7','06/02/2021',' '); +INSERT INTO entity_versions VALUES(41,503,'20.10.6','04/12/2021',' '); +INSERT INTO entity_versions VALUES(42,503,'20.10.5','03/02/2021',' '); +INSERT INTO entity_versions VALUES(43,503,'20.10.4','04/26/2021',' '); +INSERT INTO entity_versions VALUES(44,503,'20.10.3','02/01/2021',' '); +INSERT INTO entity_versions VALUES(45,503,'20.10.2','01/04/2021',' '); +INSERT INTO entity_versions VALUES(46,503,'20.10.1','12/14/2020',' '); +INSERT INTO entity_versions VALUES(47,503,'20.10.0','12/08/2020',' '); +INSERT INTO entity_versions VALUES(48,504,'2','12/31/1997','12/31/1998'); +INSERT INTO entity_versions VALUES(49,504,'3','12/31/1997','12/31/1998'); +INSERT INTO entity_versions VALUES(50,504,'7.0.14.0','12/31/1997','12/31/2005'); +INSERT INTO entity_versions VALUES(51,504,'9.0.289.0','12/31/1998','12/31/2011'); +INSERT INTO entity_versions VALUES(52,504,'10.3.183.90','12/31/1999','12/31/2013'); +INSERT INTO entity_versions VALUES(53,504,'11.1.102.55','12/31/1999','12/31/2013'); +INSERT INTO entity_versions VALUES(54,504,'32.0.0.465','12/31/2001','12/31/2020'); +INSERT INTO entity_versions VALUES(55,504,'5.0.41.0','12/31/1997',' '); +INSERT INTO entity_versions VALUES(56,504,'32.0.0.465','12/31/2014','12/31/2020'); +INSERT INTO entity_versions VALUES(57,504,'29.0.0.171','12/31/2013','12/31/2018'); +INSERT INTO entity_versions VALUES(58,504,'22.0.0.209','12/31/2009','12/31/2016'); +INSERT INTO entity_versions VALUES(59,504,'10.3.183.90','12/31/2007','12/31/2013'); +INSERT INTO entity_versions VALUES(60,504,'10.1.102.64','12/31/2005','12/31/2011'); +INSERT INTO entity_versions VALUES(61,504,'9.0.289.0','12/31/2001','12/31/2011'); +INSERT INTO entity_versions VALUES(62,504,'7.0.14.0','12/31/1997','12/31/2005'); +INSERT INTO entity_versions VALUES(63,504,'3','12/31/1997','12/31/1998'); +INSERT INTO entity_versions VALUES(64,504,'4.0r12','12/31/1999',' '); +INSERT INTO entity_versions VALUES(65,504,'32.0.0.465','12/31/2020',' '); +INSERT INTO entity_versions VALUES(66,504,'4.0r12','12/31/1999',' '); +INSERT INTO entity_versions VALUES(67,504,'4.0r12','12/31/2004','12/31/2013'); +INSERT INTO entity_versions VALUES(68,504,'11.2.202.223','12/31/2004','12/31/2013'); +INSERT INTO entity_versions VALUES(69,504,'10.3.183.90','12/31/2004','12/31/2013'); +INSERT INTO entity_versions VALUES(70,505,'1','12/31/2002',' '); +INSERT INTO entity_versions VALUES(71,505,'2.3',' ',' '); +INSERT INTO entity_versions VALUES(72,506,'JDK Beta','01/01/1995',' '); +INSERT INTO entity_versions VALUES(73,506,'1.0','01/01/1996',' '); +INSERT INTO entity_versions VALUES(74,506,'1.1','02/01/1997',' '); +INSERT INTO entity_versions VALUES(75,506,'1.2','12/01/1998',' '); +INSERT INTO entity_versions VALUES(76,506,'1.3','05/01/2000',' '); +INSERT INTO entity_versions VALUES(77,506,'1.4','02/01/2002','08/31/2008'); +INSERT INTO entity_versions VALUES(78,506,'5.0','09/01/2004','11/30/2009'); +INSERT INTO entity_versions VALUES(79,506,'6','12/01/2006','04/30/2013'); +INSERT INTO entity_versions VALUES(80,506,'7','07/01/2011','04/30/2015'); +INSERT INTO entity_versions VALUES(81,506,'8','03/01/2014','12/31/2026'); +INSERT INTO entity_versions VALUES(82,506,'9','09/01/2017','03/31/2018'); +INSERT INTO entity_versions VALUES(83,506,'10','03/01/2018','09/30/2018'); +INSERT INTO entity_versions VALUES(84,506,'11','09/01/2018','12/31/2026'); +INSERT INTO entity_versions VALUES(85,506,'12','03/31/2019','09/30/2019'); +INSERT INTO entity_versions VALUES(86,506,'13','09/01/2019','03/31/2020'); +INSERT INTO entity_versions VALUES(87,506,'14','03/01/2020','09/30/2020'); +INSERT INTO entity_versions VALUES(88,506,'15','09/01/2020','03/31/2021'); +INSERT INTO entity_versions VALUES(89,506,'16','03/01/2021','09/30/2021'); +INSERT INTO entity_versions VALUES(90,506,'17','09/30/2021','12/31/2029'); +INSERT INTO entity_versions VALUES(91,506,'18','03/01/2022','09/30/2022'); +INSERT INTO entity_versions VALUES(92,506,'19','09/01/2022','03/31/2023'); +INSERT INTO entity_versions VALUES(93,506,'20','03/01/2023','09/30/2023'); +INSERT INTO entity_versions VALUES(94,506,'21','09/01/2023',' '); +INSERT INTO entity_versions VALUES(95,507,'0.10','03/01/2013','10/31/2016'); +INSERT INTO entity_versions VALUES(96,507,'0.12','02/06/2015','12/31/2016'); +INSERT INTO entity_versions VALUES(97,507,'4','09/08/2015','04/30/2018'); +INSERT INTO entity_versions VALUES(98,507,'5','10/29/2015','06/30/2016'); +INSERT INTO entity_versions VALUES(99,507,'6','04/26/2016','04/30/2019'); +INSERT INTO entity_versions VALUES(100,507,'7','10/25/2016','06/30/2017'); +INSERT INTO entity_versions VALUES(101,507,'8','05/30/2017','12/31/2019'); +INSERT INTO entity_versions VALUES(102,507,'9','10/01/2017','06/30/2018'); +INSERT INTO entity_versions VALUES(103,507,'10','04/24/2018','04/30/2021'); +INSERT INTO entity_versions VALUES(104,507,'11','10/23/2018','06/01/2019'); +INSERT INTO entity_versions VALUES(105,507,'12','04/23/2019','04/30/2022'); +INSERT INTO entity_versions VALUES(106,507,'13','10/22/2019','06/01/2020'); +INSERT INTO entity_versions VALUES(107,507,'14','04/21/2020','04/30/2023'); +INSERT INTO entity_versions VALUES(108,507,'15','10/20/2020','06/01/2021'); +INSERT INTO entity_versions VALUES(109,507,'16','04/20/2021','04/30/2024'); +INSERT INTO entity_versions VALUES(110,507,'17','10/19/2021','06/01/2022'); +INSERT INTO entity_versions VALUES(111,507,'18','04/19/2022','04/30/2025'); +INSERT INTO entity_versions VALUES(112,508,'1','12/13/2005',' '); +INSERT INTO entity_versions VALUES(113,508,'1.2','01/19/2007',' '); +INSERT INTO entity_versions VALUES(114,508,'2','12/07/2007',' '); +INSERT INTO entity_versions VALUES(115,508,'2.1','06/01/2008',' '); +INSERT INTO entity_versions VALUES(116,508,'2.2','11/21/2008',' '); +INSERT INTO entity_versions VALUES(117,508,'2.3','03/16/2009',' '); +INSERT INTO entity_versions VALUES(118,508,'3','08/29/2010',' '); +INSERT INTO entity_versions VALUES(119,508,'3.1','08/31/2011',' '); +INSERT INTO entity_versions VALUES(120,508,'3.2','01/20/2012',' '); +INSERT INTO entity_versions VALUES(121,508,'4','06/25/2013',' '); +INSERT INTO entity_versions VALUES(122,508,'4.1','04/08/2014',' '); +INSERT INTO entity_versions VALUES(123,508,'4.2','12/19/2014',' '); +INSERT INTO entity_versions VALUES(124,508,'5','06/30/2016',' '); +INSERT INTO entity_versions VALUES(125,508,'5.1','05/10/2017',' '); +INSERT INTO entity_versions VALUES(126,508,'5.2','04/09/2018',' '); +INSERT INTO entity_versions VALUES(127,508,'6','08/16/2019',' '); +INSERT INTO entity_versions VALUES(128,508,'6.1','12/09/2020',' '); +INSERT INTO entity_versions VALUES(129,508,'7',' ',' '); +INSERT INTO entity_versions VALUES(130,509,'53.0',' ',' '); +INSERT INTO entity_versions VALUES(131,263,'1','12/16/2001','12/30/2001'); +INSERT INTO entity_versions VALUES(132,264,'1.1','03/10/2002','01/29/2006'); +INSERT INTO entity_versions VALUES(133,264,'1.2','11/09/2003','08/06/2011'); +INSERT INTO entity_versions VALUES(134,264,'1.3','06/29/2006','03/14/2016'); +INSERT INTO entity_versions VALUES(135,264,'1.4','02/26/2010','02/08/2018'); +INSERT INTO entity_versions VALUES(136,264,'1.5','06/19/2014','01/10/2020'); +INSERT INTO entity_versions VALUES(137,264,'1.6','10/13/2015','12/31/2020'); +INSERT INTO entity_versions VALUES(138,264,'1.7','11/25/2016','12/31/2021'); +INSERT INTO entity_versions VALUES(139,264,'1.8','11/26/2017','12/31/2022'); +INSERT INTO entity_versions VALUES(140,264,'1.9','12/19/2018','06/30/2020'); +INSERT INTO entity_versions VALUES(141,264,'2','06/16/2019','06/30/2024'); +INSERT INTO entity_versions VALUES(142,264,'2.1','11/25/2019','03/31/2021'); +INSERT INTO entity_versions VALUES(143,264,'2.2','07/07/2020','06/30/2025'); +INSERT INTO entity_versions VALUES(144,264,'2.3','11/05/2020','03/31/2022'); +INSERT INTO entity_versions VALUES(145,264,'2.4','05/14/2021','06/30/2026'); +INSERT INTO entity_versions VALUES(146,264,'2.5','11/01/2021','03/31/2023'); +INSERT INTO entity_versions VALUES(147,259,'1.3','06/06/1998',' '); +INSERT INTO entity_versions VALUES(148,259,'2','04/06/2002',' '); +INSERT INTO entity_versions VALUES(149,259,'2.2','12/01/2005',' '); +INSERT INTO entity_versions VALUES(150,259,'2.4','02/21/2012',' '); +INSERT INTO entity_versions VALUES(151,609,'1',' ',' '); +INSERT INTO entity_versions VALUES(152,609,'2',' ',' '); +INSERT INTO entity_versions VALUES(153,609,'3',' ',' '); +INSERT INTO entity_versions VALUES(154,609,'4',' ',' '); +INSERT INTO entity_versions VALUES(155,609,'5',' ',' '); +INSERT INTO entity_versions VALUES(156,609,'5.1',' ',' '); +INSERT INTO entity_versions VALUES(157,609,'6',' ',' '); +INSERT INTO entity_versions VALUES(158,609,'7',' ',' '); +INSERT INTO entity_versions VALUES(159,609,'7.5',' ',' '); +INSERT INTO entity_versions VALUES(160,609,'8',' ',' '); +INSERT INTO entity_versions VALUES(161,609,'8.5',' ',' '); +INSERT INTO entity_versions VALUES(162,609,'10',' ',' '); +INSERT INTO entity_versions VALUES(163,274,' ',' ',' '); +INSERT INTO entity_versions VALUES(164,260,'3.3','03/09/2004',' '); +INSERT INTO entity_versions VALUES(165,260,'4.1','06/25/2009',' '); +INSERT INTO entity_versions VALUES(166,260,'5.5','10/10/2012',' '); +INSERT INTO entity_versions VALUES(167,260,'6.0','04/07/2017','12/31/2016'); +INSERT INTO entity_versions VALUES(168,260,'7.0','04/26/2021','03/31/2021'); +INSERT INTO entity_versions VALUES(169,260,'8.0','07/05/2018','06/30/2018'); +INSERT INTO entity_versions VALUES(170,260,'8.5','09/13/2021',' '); +INSERT INTO entity_versions VALUES(171,260,'9.0','09/10/2021',' '); +INSERT INTO entity_versions VALUES(172,260,'10.0','09/10/2021',' '); +INSERT INTO entity_versions VALUES(173,260,'10.1',' ',' '); +INSERT INTO entity_versions VALUES(174,285,'8.5','06/15/2012','06/24/2016'); +INSERT INTO entity_versions VALUES(175,280,'0.5','10/07/2012',' '); +INSERT INTO entity_versions VALUES(176,280,'0.6','02/07/2013',' '); +INSERT INTO entity_versions VALUES(177,280,'0.7','07/16/2013',' '); +INSERT INTO entity_versions VALUES(178,280,'0.8','12/19/2013',' '); +INSERT INTO entity_versions VALUES(179,280,'0.9','07/23/2014',' '); +INSERT INTO entity_versions VALUES(180,280,'1.0','08/05/2014',' '); +INSERT INTO entity_versions VALUES(181,280,'1.1','11/26/2014',' '); +INSERT INTO entity_versions VALUES(182,280,'1.2','04/17/2015',' '); +INSERT INTO entity_versions VALUES(183,280,'1.3','04/17/2015',' '); +INSERT INTO entity_versions VALUES(184,280,'1.4','07/15/2015',' '); +INSERT INTO entity_versions VALUES(185,280,'1.5','11/09/2015',' '); +INSERT INTO entity_versions VALUES(186,280,'1.6','11/07/2016',' '); +INSERT INTO entity_versions VALUES(187,280,'2.0','11/14/2016',' '); +INSERT INTO entity_versions VALUES(188,280,'2.1','06/26/2018',' '); +INSERT INTO entity_versions VALUES(189,280,'2.2','01/11/2019',' '); +INSERT INTO entity_versions VALUES(190,280,'2.3','09/09/2019',' '); +INSERT INTO entity_versions VALUES(191,280,'2.4','05/17/2021',' '); +INSERT INTO entity_versions VALUES(192,280,'3.0','01/06/2021',' '); +INSERT INTO entity_versions VALUES(193,280,'3.1','01/06/2021',' '); +INSERT INTO entity_versions VALUES(194,278,'3.1',' ',' '); +INSERT INTO entity_versions VALUES(195,278,'4.0',' ',' '); +INSERT INTO entity_versions VALUES(196,265,'6.0.1','04/15/2005',' '); +INSERT INTO entity_versions VALUES(197,265,'6.0.2','07/29/2005',' '); +INSERT INTO entity_versions VALUES(198,265,'6.1.0','07/21/2006',' '); +INSERT INTO entity_versions VALUES(199,265,'7.0.0','03/15/2009',' '); +INSERT INTO entity_versions VALUES(200,265,'8.0.0','06/17/2011',' '); +INSERT INTO entity_versions VALUES(201,265,'8.5.0','06/15/2012',' '); +INSERT INTO entity_versions VALUES(202,265,'9.0.0','03/11/2016',' '); +INSERT INTO entity_versions VALUES(203,269,'2.6','02/09/2016',' '); +INSERT INTO entity_versions VALUES(204,269,'2.9.1','04/11/2019',' '); +INSERT INTO entity_versions VALUES(205,286,'4.1','12/31/2001',' '); +INSERT INTO entity_versions VALUES(206,286,'5','07/01/2002',' '); +INSERT INTO entity_versions VALUES(207,286,'6','04/01/2006',' '); +INSERT INTO entity_versions VALUES(208,286,'6.1','03/01/2009',' '); +INSERT INTO entity_versions VALUES(209,286,'6.1.5','11/01/2009',' '); +INSERT INTO entity_versions VALUES(210,286,'7','09/01/2010',' '); +INSERT INTO entity_versions VALUES(211,286,'8','05/01/2012',' '); +INSERT INTO entity_versions VALUES(212,286,'8.5','06/01/2014',' '); +INSERT INTO entity_versions VALUES(213,286,'9','12/01/2016',' '); +INSERT INTO entity_versions VALUES(214,286,'9.5','07/01/2019',' '); +INSERT INTO entity_versions VALUES(215,284,'9','03/26/2021',' '); +INSERT INTO entity_versions VALUES(216,284,'8.5.5','02/15/2021','06/24/2016'); +INSERT INTO entity_versions VALUES(217,284,'8.5','06/15/2012',' '); +INSERT INTO entity_versions VALUES(218,284,'8','06/17/2011','04/30/2018'); +INSERT INTO entity_versions VALUES(219,284,'7','08/17/2008','04/30/2018'); +INSERT INTO entity_versions VALUES(220,284,'6.1','06/30/2006','09/30/2013'); +INSERT INTO entity_versions VALUES(221,284,'6','12/31/2004','09/30/2010'); +INSERT INTO entity_versions VALUES(222,284,'5.1','01/16/2004','09/30/2008'); +INSERT INTO entity_versions VALUES(223,284,'5','01/03/2003','09/30/2006'); +INSERT INTO entity_versions VALUES(224,284,'4','08/15/2001','04/30/2005'); +INSERT INTO entity_versions VALUES(225,284,'3.5','08/31/2000','11/30/2003'); +INSERT INTO entity_versions VALUES(226,268,'7.1.1','03/09/2012',' '); +INSERT INTO entity_versions VALUES(227,268,'7.1.0','02/16/2012',' '); +INSERT INTO entity_versions VALUES(228,268,'7.0.2','09/22/2011',' '); +INSERT INTO entity_versions VALUES(229,268,'7.0.1','08/17/2011',' '); +INSERT INTO entity_versions VALUES(230,268,'7.0.0','07/12/2011',' '); +INSERT INTO entity_versions VALUES(231,268,'6.1.0','08/16/2011',' '); +INSERT INTO entity_versions VALUES(232,268,'6.0.0','12/22/2010',' '); +INSERT INTO entity_versions VALUES(233,268,'5.1.0','05/23/2009',' '); +INSERT INTO entity_versions VALUES(234,268,'5.0.0','12/05/2008',' '); +INSERT INTO entity_versions VALUES(235,268,'4.2.3','07/18/2008',' '); +INSERT INTO entity_versions VALUES(236,268,'4.2.2','10/22/2007',' '); +INSERT INTO entity_versions VALUES(237,268,'4.2.1','07/16/2006',' '); +INSERT INTO entity_versions VALUES(238,268,'4.2.0','05/11/2007',' '); +INSERT INTO entity_versions VALUES(239,268,'4.0.5','10/18/2006',' '); +INSERT INTO entity_versions VALUES(240,268,'4.0.4','05/15/2006',' '); +INSERT INTO entity_versions VALUES(241,268,'4.0.3','10/24/2005',' '); +INSERT INTO entity_versions VALUES(242,268,'4.0.2','05/02/2005',' '); +INSERT INTO entity_versions VALUES(243,268,'4.0.1','02/16/2005',' '); +INSERT INTO entity_versions VALUES(244,268,'4.0.0','09/20/2004',' '); +INSERT INTO entity_versions VALUES(245,268,'3.2.8','03/02/2006',' '); +INSERT INTO entity_versions VALUES(246,268,'3.2.7','01/28/2005',' '); +INSERT INTO entity_versions VALUES(247,268,'3.2.6','10/14/2004',' '); +INSERT INTO entity_versions VALUES(248,268,'3.2.5','06/25/2004',' '); +INSERT INTO entity_versions VALUES(249,268,'3.2.4','06/04/2004',' '); +INSERT INTO entity_versions VALUES(250,268,'3.2.3','11/30/2003',' '); +INSERT INTO entity_versions VALUES(251,268,'3.2.2','10/18/2003',' '); +INSERT INTO entity_versions VALUES(252,268,'3.2.1','06/02/2003',' '); +INSERT INTO entity_versions VALUES(253,268,'3.0.8','06/06/2003',' '); +INSERT INTO entity_versions VALUES(254,268,'3.0.7','04/08/2003',' '); +INSERT INTO entity_versions VALUES(255,268,'3.0.6','01/26/2003',' '); +INSERT INTO entity_versions VALUES(256,268,'3.0.5','01/13/2003',' '); +INSERT INTO entity_versions VALUES(257,268,'3.0.4','11/02/2002',' '); +INSERT INTO entity_versions VALUES(258,268,'3.0.3','09/29/2002',' '); +INSERT INTO entity_versions VALUES(259,268,'3.0.2','08/26/2002',' '); +INSERT INTO entity_versions VALUES(260,268,'3.0.1','08/05/2002',' '); +INSERT INTO entity_versions VALUES(261,268,'3.0.0','05/29/2002',' '); +INSERT INTO entity_versions VALUES(262,493,' ',' ',' '); +INSERT INTO entity_versions VALUES(263,271,'4.5','01/29/2015',' '); +INSERT INTO entity_versions VALUES(264,271,'5','04/07/2015',' '); +INSERT INTO entity_versions VALUES(265,137,'2',' ',' '); +INSERT INTO entity_versions VALUES(266,137,'2.3',' ',' '); +INSERT INTO entity_versions VALUES(267,137,'3',' ',' '); +INSERT INTO entity_versions VALUES(268,137,'4',' ',' '); +INSERT INTO entity_versions VALUES(269,137,'4.5',' ',' '); +INSERT INTO entity_versions VALUES(270,137,'5',' ',' '); +INSERT INTO entity_versions VALUES(271,137,'6',' ',' '); +INSERT INTO entity_versions VALUES(272,137,'6i',' ',' '); +INSERT INTO entity_versions VALUES(273,137,'9i',' ',' '); +INSERT INTO entity_versions VALUES(274,137,'10g',' ',' '); +INSERT INTO entity_versions VALUES(275,137,'10gR2',' ',' '); +INSERT INTO entity_versions VALUES(276,137,'11g',' ',' '); +INSERT INTO entity_versions VALUES(277,137,'11gR2',' ',' '); +INSERT INTO entity_versions VALUES(278,137,'12c',' ',' '); +INSERT INTO entity_versions VALUES(279,46,'3','06/21/2004',' '); +INSERT INTO entity_versions VALUES(280,46,'3.1','06/28/2005',' '); +INSERT INTO entity_versions VALUES(281,46,'3.2','06/30/2006',' '); +INSERT INTO entity_versions VALUES(282,46,'3.3','06/29/2007',' '); +INSERT INTO entity_versions VALUES(283,46,'3.4','06/25/2008',' '); +INSERT INTO entity_versions VALUES(284,46,'3.5','06/24/2009',' '); +INSERT INTO entity_versions VALUES(285,46,'3.6','06/23/2010',' '); +INSERT INTO entity_versions VALUES(286,46,'3.7','06/22/2011',' '); +INSERT INTO entity_versions VALUES(287,46,'3.8','06/27/2012',' '); +INSERT INTO entity_versions VALUES(288,46,'4.2','06/27/2012',' '); +INSERT INTO entity_versions VALUES(289,46,'4.3','06/26/2013',' '); +INSERT INTO entity_versions VALUES(290,46,'4.4','06/25/2014',' '); +INSERT INTO entity_versions VALUES(291,46,'4.5','06/24/2015',' '); +INSERT INTO entity_versions VALUES(292,46,'4.6','06/22/2016',' '); +INSERT INTO entity_versions VALUES(293,46,'4.7','06/28/2017',' '); +INSERT INTO entity_versions VALUES(294,46,'4.8','06/27/2018',' '); +INSERT INTO entity_versions VALUES(295,46,'4.9','09/19/2018',' '); +INSERT INTO entity_versions VALUES(296,46,'4.1','12/19/2018',' '); +INSERT INTO entity_versions VALUES(297,46,'4.11','03/20/2019',' '); +INSERT INTO entity_versions VALUES(298,46,'4.12','06/19/2019',' '); +INSERT INTO entity_versions VALUES(299,46,'4.13','09/18/2019',' '); +INSERT INTO entity_versions VALUES(300,46,'4.14','12/18/2019',' '); +INSERT INTO entity_versions VALUES(301,46,'4.15','03/18/2020',' '); +INSERT INTO entity_versions VALUES(302,46,'4.16','06/17/2020',' '); +INSERT INTO entity_versions VALUES(303,46,'4.17','09/16/2020',' '); +INSERT INTO entity_versions VALUES(304,46,'4.18','12/16/2020',' '); +INSERT INTO entity_versions VALUES(305,46,'4.19','03/17/2021',' '); +INSERT INTO entity_versions VALUES(306,46,'4.2','06/16/2021',' '); +INSERT INTO entity_versions VALUES(307,46,'4.21','09/15/2021',' '); +INSERT INTO entity_versions VALUES(308,46,'4.22','12/08/2021',' '); +INSERT INTO entity_versions VALUES(309,176,'7.6','12/31/2006','12/31/2016'); +INSERT INTO entity_versions VALUES(310,176,'7.7','12/31/2008','12/31/2017'); +INSERT INTO entity_versions VALUES(311,176,'7.8','12/31/2010','12/31/2017'); +INSERT INTO entity_versions VALUES(312,176,'7.9',' ',' '); +INSERT INTO entity_versions VALUES(313,70,'7.6.1.2','07/24/2020',' '); +INSERT INTO entity_versions VALUES(314,70,'7.6.0.10','12/14/2018',' '); +INSERT INTO entity_versions VALUES(315,70,'7.5.0.11','10/28/2016',' '); +INSERT INTO entity_versions VALUES(316,70,'7.1.1.13','06/27/2014',' '); +INSERT INTO entity_versions VALUES(317,70,'6.2.8','06/10/2011',' '); +INSERT INTO entity_versions VALUES(318,70,'6.1',' ',' '); +INSERT INTO entity_versions VALUES(319,70,'5.2.9.1','07/03/2009',' '); +INSERT INTO entity_versions VALUES(320,70,'4.1.1 ','06/28/2007',' '); +INSERT INTO entity_versions VALUES(321,135,' ',' ',' '); +INSERT INTO entity_versions VALUES(322,141,' ',' ',' '); +INSERT INTO entity_versions VALUES(323,134,'2.3','12/31/1979',' '); +INSERT INTO entity_versions VALUES(324,134,'3.1.3','12/31/1983',' '); +INSERT INTO entity_versions VALUES(325,134,'4.1.4.0','12/31/1984',' '); +INSERT INTO entity_versions VALUES(326,134,'5.0.22','12/31/1985',' '); +INSERT INTO entity_versions VALUES(327,134,'6.0.17','12/31/1988',' '); +INSERT INTO entity_versions VALUES(328,134,'6.2.0',' ',' '); +INSERT INTO entity_versions VALUES(329,134,'7.0.12','06/30/1992',' '); +INSERT INTO entity_versions VALUES(330,134,'7.1.0','05/31/1994',' '); +INSERT INTO entity_versions VALUES(331,134,'7.2.0','05/31/1995',' '); +INSERT INTO entity_versions VALUES(332,134,'7.3.0','02/28/1996',' '); +INSERT INTO entity_versions VALUES(333,134,'8.0.3','06/30/1997',' '); +INSERT INTO entity_versions VALUES(334,134,'8.1.5.0','12/31/1998','08/31/2000'); +INSERT INTO entity_versions VALUES(335,134,'9.0.1.0','12/31/2001','12/31/2003'); +INSERT INTO entity_versions VALUES(336,134,'9.2.0.1','12/31/2002','04/30/2007'); +INSERT INTO entity_versions VALUES(337,134,'10.1.0.2','12/31/2003','02/28/2006'); +INSERT INTO entity_versions VALUES(338,134,'10.2.0.1','07/31/2005','04/30/2010'); +INSERT INTO entity_versions VALUES(339,134,'11.1.0.6','09/30/2007','09/30/2008'); +INSERT INTO entity_versions VALUES(340,134,'11.2.0.1','09/30/2009','08/31/2013'); +INSERT INTO entity_versions VALUES(341,134,'12.1.0.1','07/31/2013','07/31/2014'); +INSERT INTO entity_versions VALUES(342,134,'12.2.0.1','09/30/2016',' '); +INSERT INTO entity_versions VALUES(343,134,'12.2.0.2','02/28/2018',' '); +INSERT INTO entity_versions VALUES(344,134,'12.2.0.3','02/28/2019',' '); +INSERT INTO entity_versions VALUES(345,134,'21.1','12/31/2020',' '); +INSERT INTO entity_versions VALUES(346,182,'1','12/31/1993',' '); +INSERT INTO entity_versions VALUES(347,182,'2','12/31/1995',' '); +INSERT INTO entity_versions VALUES(348,182,'3','12/31/1997',' '); +INSERT INTO entity_versions VALUES(349,182,'98','12/31/1998',' '); +INSERT INTO entity_versions VALUES(350,182,'99','12/31/1999',' '); +INSERT INTO entity_versions VALUES(351,182,'6','12/31/2000',' '); +INSERT INTO entity_versions VALUES(352,182,'7','12/31/2001',' '); +INSERT INTO entity_versions VALUES(353,182,'7.5','12/31/2002',' '); +INSERT INTO entity_versions VALUES(354,182,'7.7','12/31/2004',' '); +INSERT INTO entity_versions VALUES(355,182,'7.8','12/31/2005',' '); +INSERT INTO entity_versions VALUES(356,182,'8','12/31/2007',' '); +INSERT INTO entity_versions VALUES(357,182,'8.1','12/31/2008',' '); +INSERT INTO entity_versions VALUES(358,182,'8.2','12/31/2011',' '); +INSERT INTO entity_versions VALUES(359,182,'15','05/11/2015',' '); +INSERT INTO entity_versions VALUES(360,182,'16','04/29/2016',' '); +INSERT INTO entity_versions VALUES(361,182,'17','07/31/2017',' '); +INSERT INTO entity_versions VALUES(362,182,'18','01/23/2018',' '); +INSERT INTO entity_versions VALUES(363,182,'19','01/21/2019',' '); +INSERT INTO entity_versions VALUES(364,182,'20','01/21/2020',' '); +INSERT INTO entity_versions VALUES(365,126,'1','08/31/1998',' '); +INSERT INTO entity_versions VALUES(366,126,'1.1','12/31/1998',' '); +INSERT INTO entity_versions VALUES(367,126,'1.2','02/28/1999',' '); +INSERT INTO entity_versions VALUES(368,126,'2','08/31/2000',' '); +INSERT INTO entity_versions VALUES(369,126,'2.1','06/30/2002',' '); +INSERT INTO entity_versions VALUES(370,126,'2.2','12/31/2003',' '); +INSERT INTO entity_versions VALUES(371,126,'2.3','06/30/2005',' '); +INSERT INTO entity_versions VALUES(372,126,'2.4','10/31/2007',' '); +INSERT INTO entity_versions VALUES(373,126,'2.5','04/30/2021',' '); +INSERT INTO entity_versions VALUES(374,77,'1.1','08/31/2009',' '); +INSERT INTO entity_versions VALUES(375,77,'2.1','04/30/2011',' '); +INSERT INTO entity_versions VALUES(376,77,'2.2','05/31/2011',' '); +INSERT INTO entity_versions VALUES(377,77,'3.1','07/12/2021',' '); +INSERT INTO entity_versions VALUES(378,77,'3.2','12/31/2012',' '); +INSERT INTO entity_versions VALUES(379,77,'4.1','01/31/2014',' '); +INSERT INTO entity_versions VALUES(380,77,'4.2','02/28/2014',' '); +INSERT INTO entity_versions VALUES(381,77,'5.1','01/31/2015',' '); +INSERT INTO entity_versions VALUES(382,77,'6.1','10/31/2017',' '); +INSERT INTO entity_versions VALUES(383,77,'6.2','04/30/2019',' '); +INSERT INTO entity_versions VALUES(384,77,'6.3','08/30/2019',' '); +INSERT INTO entity_versions VALUES(385,23,'10.7',' ',' '); +INSERT INTO entity_versions VALUES(386,45,'8.3','04/05/2017',' '); +INSERT INTO entity_versions VALUES(387,45,'8.2','10/05/2016',' '); +INSERT INTO entity_versions VALUES(388,45,'8.1','04/20/2016',' '); +INSERT INTO entity_versions VALUES(389,45,'8','11/19/2015',' '); +INSERT INTO entity_versions VALUES(390,45,'7',' ',' '); +INSERT INTO entity_versions VALUES(391,45,'6','02/13/2008',' '); +INSERT INTO entity_versions VALUES(392,45,'5','01/15/2007',' '); +INSERT INTO entity_versions VALUES(393,45,'4','06/15/2002',' '); +INSERT INTO entity_versions VALUES(394,45,'3','09/15/2001',' '); +INSERT INTO entity_versions VALUES(395,45,'2',' ',' '); +INSERT INTO entity_versions VALUES(396,45,'1','01/15/2001',' '); +INSERT INTO entity_versions VALUES(397,220,'4.4','12/31/2002',' '); +INSERT INTO entity_versions VALUES(398,220,'4.5.1','09/30/2003',' '); +INSERT INTO entity_versions VALUES(399,220,'4.6','07/31/2005',' '); +INSERT INTO entity_versions VALUES(400,220,'5','12/31/2007',' '); +INSERT INTO entity_versions VALUES(401,220,'5.1','06/30/2009',' '); +INSERT INTO entity_versions VALUES(402,90,'2.285','03/23/2021',' '); +INSERT INTO entity_versions VALUES(403,90,'2.286','03/30/2021',' '); +INSERT INTO entity_versions VALUES(404,90,'2.287','04/07/2021',' '); +INSERT INTO entity_versions VALUES(405,90,'2.288','04/11/2021',' '); +INSERT INTO entity_versions VALUES(406,90,'2.289','04/20/2021',' '); +INSERT INTO entity_versions VALUES(407,90,'2.29','04/28/2021',' '); +INSERT INTO entity_versions VALUES(408,90,'2.291','05/04/2021',' '); +INSERT INTO entity_versions VALUES(409,90,'2.292','05/11/2021',' '); +INSERT INTO entity_versions VALUES(410,90,'2.293','05/12/2021',' '); +INSERT INTO entity_versions VALUES(411,90,'2.294','05/25/2021',' '); +INSERT INTO entity_versions VALUES(412,90,'2.295','05/25/2021',' '); +INSERT INTO entity_versions VALUES(413,90,'2.296','06/01/2021',' '); +INSERT INTO entity_versions VALUES(414,90,'2.297','06/08/2021',' '); +INSERT INTO entity_versions VALUES(415,90,'2.298','06/15/2021',' '); +INSERT INTO entity_versions VALUES(416,90,'2.299','06/22/2021',' '); +INSERT INTO entity_versions VALUES(417,90,'2.3','06/30/2021',' '); +INSERT INTO entity_versions VALUES(418,90,'2.301','07/06/2021',' '); +INSERT INTO entity_versions VALUES(419,90,'2.302','07/13/2021',' '); +INSERT INTO entity_versions VALUES(420,90,'2.303','07/20/2021',' '); +INSERT INTO entity_versions VALUES(421,90,'2.304','07/27/2021',' '); +INSERT INTO entity_versions VALUES(422,90,'2.305','08/03/2021',' '); +INSERT INTO entity_versions VALUES(423,90,'2.306','08/10/2021',' '); +INSERT INTO entity_versions VALUES(424,90,'2.307','08/17/2021',' '); +INSERT INTO entity_versions VALUES(425,90,'2.308','08/24/2021',' '); +INSERT INTO entity_versions VALUES(426,90,'2.309','08/30/2021',' '); +INSERT INTO entity_versions VALUES(427,90,'2.31','09/07/2021',' '); +INSERT INTO entity_versions VALUES(428,90,'2.311','09/09/2021',' '); +INSERT INTO entity_versions VALUES(429,90,'2.312','09/14/2021',' '); +INSERT INTO entity_versions VALUES(430,90,'2.313','09/21/2021',' '); +INSERT INTO entity_versions VALUES(431,90,'2.314','09/28/2021',' '); +INSERT INTO entity_versions VALUES(432,97,'10','05/31/2019',' '); +INSERT INTO entity_versions VALUES(433,97,'9','12/31/2017',' '); +INSERT INTO entity_versions VALUES(434,97,'8','12/31/2015',' '); +INSERT INTO entity_versions VALUES(435,97,'7','12/31/2013',' '); +INSERT INTO entity_versions VALUES(436,97,'6','12/31/2012',' '); +INSERT INTO entity_versions VALUES(437,97,'5','12/31/2011',' '); +INSERT INTO entity_versions VALUES(438,97,'4.2','12/31/2010',' '); +INSERT INTO entity_versions VALUES(439,97,'4.1','12/31/2009',' '); +INSERT INTO entity_versions VALUES(440,97,'4','12/31/2008',' '); +INSERT INTO entity_versions VALUES(441,97,'3.2','12/31/2007',' '); +INSERT INTO entity_versions VALUES(442,97,'3.1','12/31/2006',' '); +INSERT INTO entity_versions VALUES(443,97,'3','12/31/2005',' '); +INSERT INTO entity_versions VALUES(444,97,'2','12/31/2004',' '); +INSERT INTO entity_versions VALUES(445,97,'1','12/31/2001',' '); +INSERT INTO entity_versions VALUES(446,98,'1.6.12','09/28/2021',' '); +INSERT INTO entity_versions VALUES(447,98,'1.6.11','09/27/2021',' '); +INSERT INTO entity_versions VALUES(448,98,'1.6.10','07/25/2021',' '); +INSERT INTO entity_versions VALUES(449,98,'1.6.9','11/20/2020',' '); +INSERT INTO entity_versions VALUES(450,98,'1.6.8','10/26/2020',' '); +INSERT INTO entity_versions VALUES(451,98,'1.6.7','09/04/2020',' '); +INSERT INTO entity_versions VALUES(452,98,'1.6.6','05/12/2020',' '); +INSERT INTO entity_versions VALUES(453,98,'1.6.5','04/13/2020',' '); +INSERT INTO entity_versions VALUES(454,98,'1.6.4','04/12/2020',' '); +INSERT INTO entity_versions VALUES(455,98,'1.6.3','03/28/2020',' '); +INSERT INTO entity_versions VALUES(456,98,'1.6.2','03/23/2020',' '); +INSERT INTO entity_versions VALUES(457,98,'1.6.1','03/16/2020',' '); +INSERT INTO entity_versions VALUES(458,98,'1.6.0','03/08/2020',' '); +INSERT INTO entity_versions VALUES(459,98,'1.5.22','02/28/2020',' '); +INSERT INTO entity_versions VALUES(460,98,'1.5.21','01/21/2020',' '); +INSERT INTO entity_versions VALUES(461,98,'1.5.20','11/11/2019',' '); +INSERT INTO entity_versions VALUES(462,98,'1.5.19','09/30/2019',' '); +INSERT INTO entity_versions VALUES(463,98,'1.5.18','09/17/2019',' '); +INSERT INTO entity_versions VALUES(464,98,'1.5.17','08/29/2019',' '); +INSERT INTO entity_versions VALUES(465,98,'1.5.16','05/24/2019',' '); +INSERT INTO entity_versions VALUES(466,98,'1.5.15','05/20/2019',' '); +INSERT INTO entity_versions VALUES(467,98,'1.5.14','04/27/2019',' '); +INSERT INTO entity_versions VALUES(468,98,'1.5.13','04/15/2019',' '); +INSERT INTO entity_versions VALUES(469,98,'1.5.12','11/03/2018',' '); +INSERT INTO entity_versions VALUES(470,98,'1.5.11','10/10/2018',' '); +INSERT INTO entity_versions VALUES(471,98,'1.5.10','08/10/2018',' '); +INSERT INTO entity_versions VALUES(472,98,'1.5.9','07/07/2018',' '); +INSERT INTO entity_versions VALUES(473,98,'1.5.8','05/25/2018',' '); +INSERT INTO entity_versions VALUES(474,98,'1.5.7','03/28/2018',' '); +INSERT INTO entity_versions VALUES(475,98,'1.5.6','02/27/2018',' '); +INSERT INTO entity_versions VALUES(476,98,'1.5.5','02/12/2018',' '); +INSERT INTO entity_versions VALUES(477,98,'1.5.4','12/20/2017',' '); +INSERT INTO entity_versions VALUES(478,98,'1.5.3','11/04/2017',' '); +INSERT INTO entity_versions VALUES(479,98,'1.5.2','09/30/2017',' '); +INSERT INTO entity_versions VALUES(480,98,'1.5.1','08/24/2017',' '); +INSERT INTO entity_versions VALUES(481,98,'1.5.0','07/21/2017',' '); +INSERT INTO entity_versions VALUES(482,98,'1.4.39','07/04/2017',' '); +INSERT INTO entity_versions VALUES(483,98,'1.4.38','06/24/2017',' '); +INSERT INTO entity_versions VALUES(484,98,'1.4.37','06/04/2017',' '); +INSERT INTO entity_versions VALUES(485,98,'1.4.36','03/19/2017',' '); +INSERT INTO entity_versions VALUES(486,98,'1.4.35','02/26/2017',' '); +INSERT INTO entity_versions VALUES(487,98,'1.4.34','01/07/2017',' '); +INSERT INTO entity_versions VALUES(488,98,'1.4.33','10/31/2016',' '); +INSERT INTO entity_versions VALUES(489,98,'1.4.32','10/12/2016',' '); +INSERT INTO entity_versions VALUES(490,98,'1.4.31','08/19/2016',' '); +INSERT INTO entity_versions VALUES(491,98,'1.4.30','08/11/2016',' '); +INSERT INTO entity_versions VALUES(492,98,'1.4.29','07/13/2016',' '); +INSERT INTO entity_versions VALUES(493,98,'1.4.28','07/01/2016',' '); +INSERT INTO entity_versions VALUES(494,98,'1.4.27','06/24/2016',' '); +INSERT INTO entity_versions VALUES(495,98,'1.4.26','06/17/2016',' '); +INSERT INTO entity_versions VALUES(496,98,'1.4.25','11/19/2015',' '); +INSERT INTO entity_versions VALUES(497,98,'1.4.24','04/24/2015',' '); +INSERT INTO entity_versions VALUES(498,98,'1.4.23','04/19/2015',' '); +INSERT INTO entity_versions VALUES(499,98,'1.4.22','12/31/2014',' '); +INSERT INTO entity_versions VALUES(500,98,'1.4.21','10/12/2014',' '); +INSERT INTO entity_versions VALUES(501,98,'1.4.20','05/11/2014',' '); +INSERT INTO entity_versions VALUES(502,98,'1.4.19','05/01/2014',' '); +INSERT INTO entity_versions VALUES(503,98,'1.4.18','04/17/2014',' '); +INSERT INTO entity_versions VALUES(504,98,'1.4.17','12/20/2013',' '); +INSERT INTO entity_versions VALUES(505,98,'1.4.16','12/09/2013',' '); +INSERT INTO entity_versions VALUES(506,98,'1.4.15','09/03/2012',' '); +INSERT INTO entity_versions VALUES(507,98,'1.4.14','07/30/2012',' '); +INSERT INTO entity_versions VALUES(508,98,'1.4.13','02/02/2012',' '); +INSERT INTO entity_versions VALUES(509,98,'1.4.12','02/01/2012',' '); +INSERT INTO entity_versions VALUES(510,98,'1.4.11','01/16/2012',' '); +INSERT INTO entity_versions VALUES(511,98,'1.4.10','11/09/2011',' '); +INSERT INTO entity_versions VALUES(512,98,'1.4.9','10/18/2011',' '); +INSERT INTO entity_versions VALUES(513,98,'1.4.8','10/04/2011',' '); +INSERT INTO entity_versions VALUES(514,98,'1.4.7','08/16/2011',' '); +INSERT INTO entity_versions VALUES(515,98,'1.4.6','07/15/2011',' '); +INSERT INTO entity_versions VALUES(516,98,'1.4.5','04/03/2010',' '); +INSERT INTO entity_versions VALUES(517,98,'1.4.4','11/26/2009',' '); +INSERT INTO entity_versions VALUES(518,98,'1.4.3','11/07/2009',' '); +INSERT INTO entity_versions VALUES(519,98,'1.4.2','10/11/2009',' '); +INSERT INTO entity_versions VALUES(520,98,'1.4.1','08/29/2009',' '); +INSERT INTO entity_versions VALUES(521,98,'1.4.0','07/09/2009',' '); +INSERT INTO entity_versions VALUES(522,581,'1','12/31/1989',' '); +INSERT INTO entity_versions VALUES(523,581,'1.1','12/31/1990',' '); +INSERT INTO entity_versions VALUES(524,581,'4.2A','12/31/1992',' '); +INSERT INTO entity_versions VALUES(525,581,'4.2B','12/31/1993',' '); +INSERT INTO entity_versions VALUES(526,581,'4.21','12/31/1993',' '); +INSERT INTO entity_versions VALUES(527,581,'6','12/31/1995',' '); +INSERT INTO entity_versions VALUES(528,581,'6.5','12/31/1996',' '); +INSERT INTO entity_versions VALUES(529,581,'7','12/31/1998',' '); +INSERT INTO entity_versions VALUES(530,581,'8','12/31/2000','04/08/2008'); +INSERT INTO entity_versions VALUES(531,581,'9','01/14/2006','04/12/2011'); +INSERT INTO entity_versions VALUES(532,581,'10','11/06/2008','07/08/2014'); +INSERT INTO entity_versions VALUES(533,581,'10.25','07/02/1905',' '); +INSERT INTO entity_versions VALUES(534,581,'10.5','07/20/2010','07/08/2014'); +INSERT INTO entity_versions VALUES(535,581,'11','05/20/2012','07/11/2017'); +INSERT INTO entity_versions VALUES(536,581,'12','06/05/2014','07/09/2019'); +INSERT INTO entity_versions VALUES(537,581,'13','06/01/2016','07/13/2021'); +INSERT INTO entity_versions VALUES(538,581,'14','09/29/2017','10/11/2022'); +INSERT INTO entity_versions VALUES(539,581,'15','11/04/2019','01/07/2025'); +INSERT INTO entity_versions VALUES(540,116,'4.4','12/31/2020',' '); +INSERT INTO entity_versions VALUES(541,116,'4.2','12/31/2019',' '); +INSERT INTO entity_versions VALUES(542,116,'4','12/31/2018',' '); +INSERT INTO entity_versions VALUES(543,116,'3.6','12/31/2017',' '); +INSERT INTO entity_versions VALUES(544,116,'3.4','12/31/2016',' '); +INSERT INTO entity_versions VALUES(545,116,'3.2','12/31/2015',' '); +INSERT INTO entity_versions VALUES(546,116,'3','12/31/2015',' '); +INSERT INTO entity_versions VALUES(547,116,'2.6','12/31/2014',' '); +INSERT INTO entity_versions VALUES(548,122,'3.19','12/31/1996',' '); +INSERT INTO entity_versions VALUES(549,122,'3.2','01/31/1997',' '); +INSERT INTO entity_versions VALUES(550,122,'3.21','12/31/1998',' '); +INSERT INTO entity_versions VALUES(551,122,'3.22','12/31/1998',' '); +INSERT INTO entity_versions VALUES(552,122,'3.23','06/30/2000',' '); +INSERT INTO entity_versions VALUES(553,122,'4','08/30/2002',' '); +INSERT INTO entity_versions VALUES(554,122,'4.1','06/30/2004',' '); +INSERT INTO entity_versions VALUES(555,122,'5','03/31/2005',' '); +INSERT INTO entity_versions VALUES(556,122,'5.1','11/27/2008',' '); +INSERT INTO entity_versions VALUES(557,122,'5.5','12/31/2010',' '); +INSERT INTO entity_versions VALUES(558,122,'6','05/22/2009',' '); +INSERT INTO entity_versions VALUES(559,122,'5.6','02/28/2013',' '); +INSERT INTO entity_versions VALUES(560,122,'5.7','10/31/2015',' '); +INSERT INTO entity_versions VALUES(561,122,'8','04/30/2018',' '); +INSERT INTO entity_versions VALUES(562,123,'4.3.5','09/30/2021',' '); +INSERT INTO entity_versions VALUES(563,123,'4.3.4','09/22/2021',' '); +INSERT INTO entity_versions VALUES(564,123,'4.3.3','08/09/2021',' '); +INSERT INTO entity_versions VALUES(565,123,'4.3.2','07/01/2021',' '); +INSERT INTO entity_versions VALUES(566,123,'4.3.1','06/21/2021',' '); +INSERT INTO entity_versions VALUES(567,123,'4.2.11','09/06/2021',' '); +INSERT INTO entity_versions VALUES(568,123,'4.2.10','08/23/2020',' '); +INSERT INTO entity_versions VALUES(569,123,'4.2.9','07/02/2021',' '); +INSERT INTO entity_versions VALUES(570,123,'4.2.8','06/18/2021',' '); +INSERT INTO entity_versions VALUES(571,123,'4.2.7','05/27/2021',' '); +INSERT INTO entity_versions VALUES(572,123,'4.2.6','05/05/2021',' '); +INSERT INTO entity_versions VALUES(573,245,'0.7','05/27/2003',' '); +INSERT INTO entity_versions VALUES(574,245,'1','01/03/2004',' '); +INSERT INTO entity_versions VALUES(575,245,'1.2','05/22/2004',' '); +INSERT INTO entity_versions VALUES(576,245,'1.5','02/17/2005',' '); +INSERT INTO entity_versions VALUES(577,245,'2','12/31/2005',' '); +INSERT INTO entity_versions VALUES(578,245,'2.1','01/22/2007',' '); +INSERT INTO entity_versions VALUES(579,245,'2.2','05/16/2007',' '); +INSERT INTO entity_versions VALUES(580,245,'2.3','09/24/2007',' '); +INSERT INTO entity_versions VALUES(581,245,'2.5','03/29/2008',' '); +INSERT INTO entity_versions VALUES(582,245,'2.6','07/15/2008',' '); +INSERT INTO entity_versions VALUES(583,245,'2.7','12/11/2008',' '); +INSERT INTO entity_versions VALUES(584,245,'2.8','06/10/2009',' '); +INSERT INTO entity_versions VALUES(585,245,'2.9','12/19/2009',' '); +INSERT INTO entity_versions VALUES(586,245,'3','06/17/2010',' '); +INSERT INTO entity_versions VALUES(587,245,'3.1','02/23/2011',' '); +INSERT INTO entity_versions VALUES(588,245,'3.2','07/04/2011',' '); +INSERT INTO entity_versions VALUES(589,245,'3.3','12/12/2011',' '); +INSERT INTO entity_versions VALUES(590,245,'3.4','06/13/2012',' '); +INSERT INTO entity_versions VALUES(591,245,'3.5','12/11/2012',' '); +INSERT INTO entity_versions VALUES(592,245,'3.6','08/01/2013',' '); +INSERT INTO entity_versions VALUES(593,245,'3.7','10/24/2013',' '); +INSERT INTO entity_versions VALUES(594,245,'3.8','12/12/2013',' '); +INSERT INTO entity_versions VALUES(595,245,'3.9','04/16/2014',' '); +INSERT INTO entity_versions VALUES(596,245,'4','09/04/2014',' '); +INSERT INTO entity_versions VALUES(597,245,'4.1','12/18/2014',' '); +INSERT INTO entity_versions VALUES(598,245,'4.2','04/23/2015',' '); +INSERT INTO entity_versions VALUES(599,245,'4.3','08/18/2015',' '); +INSERT INTO entity_versions VALUES(600,245,'4.4','12/08/2015',' '); +INSERT INTO entity_versions VALUES(601,245,'4.5','04/12/2016',' '); +INSERT INTO entity_versions VALUES(602,245,'4.6','08/16/2016',' '); +INSERT INTO entity_versions VALUES(603,245,'4.7','12/06/2016',' '); +INSERT INTO entity_versions VALUES(604,245,'4.8','06/08/2017',' '); +INSERT INTO entity_versions VALUES(605,245,'4.9','11/16/2017',' '); +INSERT INTO entity_versions VALUES(606,245,'5','12/06/2018',' '); +INSERT INTO entity_versions VALUES(607,245,'5.1','02/21/2019',' '); +INSERT INTO entity_versions VALUES(608,245,'5.2','05/07/2019',' '); +INSERT INTO entity_versions VALUES(609,245,'5.3','11/12/2019',' '); +INSERT INTO entity_versions VALUES(610,245,'5.4','03/31/2020',' '); +INSERT INTO entity_versions VALUES(611,245,'5.5','08/11/2020',' '); +INSERT INTO entity_versions VALUES(612,245,'5.6','12/08/2020',' '); +INSERT INTO entity_versions VALUES(613,245,'5.7','03/09/2021',' '); +INSERT INTO entity_versions VALUES(614,245,'5.8','07/20/2021',' '); +INSERT INTO entity_versions VALUES(615,258,'3.37.0',' ',' '); +INSERT INTO entity_versions VALUES(616,258,'3.36.0','06/18/2021',' '); +INSERT INTO entity_versions VALUES(617,258,'3.35.5','04/19/2021',' '); +INSERT INTO entity_versions VALUES(618,258,'3.35.4','04/02/2021',' '); +INSERT INTO entity_versions VALUES(619,258,'3.35.3','03/26/2021',' '); +INSERT INTO entity_versions VALUES(620,258,'3.35.2','03/17/2021',' '); +INSERT INTO entity_versions VALUES(621,258,'3.35.1','03/15/2021',' '); +INSERT INTO entity_versions VALUES(622,258,'3.35.0','03/12/2021',' '); +INSERT INTO entity_versions VALUES(623,258,'3.34.1','01/20/2021',' '); +INSERT INTO entity_versions VALUES(624,258,'3.34.0','12/01/2020',' '); +INSERT INTO entity_versions VALUES(625,258,'3.33.0','08/14/2020',' '); +INSERT INTO entity_versions VALUES(626,258,'3.32.3','06/18/2020',' '); +INSERT INTO entity_versions VALUES(627,258,'3.32.2','06/04/2020',' '); +INSERT INTO entity_versions VALUES(628,258,'3.32.1','05/25/2020',' '); +INSERT INTO entity_versions VALUES(629,258,'3.32.0','05/22/2020',' '); +INSERT INTO entity_versions VALUES(630,258,'3.31.1','01/27/2020',' '); +INSERT INTO entity_versions VALUES(631,258,'3.31.0','01/22/2020',' '); +INSERT INTO entity_versions VALUES(632,258,'3.30.1','10/10/2019',' '); +INSERT INTO entity_versions VALUES(633,258,'3.30.0','10/04/2019',' '); +INSERT INTO entity_versions VALUES(634,258,'3.29.0','07/10/2019',' '); +INSERT INTO entity_versions VALUES(635,258,'3.28.0','04/16/2019',' '); +INSERT INTO entity_versions VALUES(636,258,'3.27.2','02/25/2019',' '); +INSERT INTO entity_versions VALUES(637,258,'3.27.1','02/08/2019',' '); +INSERT INTO entity_versions VALUES(638,258,'3.27.0','02/07/2019',' '); +INSERT INTO entity_versions VALUES(639,258,'3.26.0','12/01/2018',' '); +INSERT INTO entity_versions VALUES(640,258,'3.25.3','11/05/2018',' '); +INSERT INTO entity_versions VALUES(641,258,'3.25.2','09/25/2018',' '); +INSERT INTO entity_versions VALUES(642,258,'3.25.1','09/18/2018',' '); +INSERT INTO entity_versions VALUES(643,258,'3.25.0','09/15/2018',' '); +INSERT INTO entity_versions VALUES(644,258,'3.24.0','06/04/2018',' '); +INSERT INTO entity_versions VALUES(645,258,'3.23.1','04/10/2018',' '); +INSERT INTO entity_versions VALUES(646,258,'3.23.0','04/02/2018',' '); +INSERT INTO entity_versions VALUES(647,258,'3.22.0','01/22/2018',' '); +INSERT INTO entity_versions VALUES(648,258,'3.21.0','10/24/2017',' '); +INSERT INTO entity_versions VALUES(649,258,'3.20.1','08/24/2017',' '); +INSERT INTO entity_versions VALUES(650,258,'3.20.0','08/01/2017',' '); +INSERT INTO entity_versions VALUES(651,258,'3.18.2','06/17/2017',' '); +INSERT INTO entity_versions VALUES(652,258,'3.18.1','06/16/2017',' '); +INSERT INTO entity_versions VALUES(653,258,'3.19.3','06/08/2017',' '); +INSERT INTO entity_versions VALUES(654,258,'3.19.2','05/25/2017',' '); +INSERT INTO entity_versions VALUES(655,258,'3.19.1','05/24/2017',' '); +INSERT INTO entity_versions VALUES(656,258,'3.19.0','05/22/2017',' '); +INSERT INTO entity_versions VALUES(657,258,'3.18.0','03/28/2017',' '); +INSERT INTO entity_versions VALUES(658,258,'3.17.0','02/13/2017',' '); +INSERT INTO entity_versions VALUES(659,258,'3.16.2','01/06/2017',' '); +INSERT INTO entity_versions VALUES(660,258,'3.16.1','01/03/2017',' '); +INSERT INTO entity_versions VALUES(661,258,'3.16.0','01/02/2017',' '); +INSERT INTO entity_versions VALUES(662,258,'3.15.2','11/28/2016',' '); +INSERT INTO entity_versions VALUES(663,258,'3.15.1','11/04/2016',' '); +INSERT INTO entity_versions VALUES(664,258,'3.15.0','10/14/2016',' '); +INSERT INTO entity_versions VALUES(665,258,'3.14.2','09/12/2016',' '); +INSERT INTO entity_versions VALUES(666,258,'3.14.1','08/11/2016',' '); +INSERT INTO entity_versions VALUES(667,258,'3.14','08/08/2016',' '); +INSERT INTO entity_versions VALUES(668,258,'3.13.0','05/18/2016',' '); +INSERT INTO entity_versions VALUES(669,258,'3.12.2','04/18/2016',' '); +INSERT INTO entity_versions VALUES(670,258,'3.12.1','04/08/2016',' '); +INSERT INTO entity_versions VALUES(671,258,'3.9.3','03/31/2016',' '); +INSERT INTO entity_versions VALUES(672,258,'3.12.0','03/29/2016',' '); +INSERT INTO entity_versions VALUES(673,258,'3.11.1','03/03/2016',' '); +INSERT INTO entity_versions VALUES(674,258,'3.11.0','02/15/2016',' '); +INSERT INTO entity_versions VALUES(675,258,'3.10.2','01/20/2016',' '); +INSERT INTO entity_versions VALUES(676,258,'3.10.1','01/14/2016',' '); +INSERT INTO entity_versions VALUES(677,258,'3.10.0','01/06/2016',' '); +INSERT INTO entity_versions VALUES(678,258,'3.9.2','11/02/2015',' '); +INSERT INTO entity_versions VALUES(679,258,'3.9.1','10/16/2015',' '); +INSERT INTO entity_versions VALUES(680,258,'3.9.0','10/14/2015',' '); +INSERT INTO entity_versions VALUES(681,258,'3.8.11.1','07/29/2015',' '); +INSERT INTO entity_versions VALUES(682,258,'3.8.11','07/27/2015',' '); +INSERT INTO entity_versions VALUES(683,258,'3.8.10.2','05/20/2015',' '); +INSERT INTO entity_versions VALUES(684,258,'3.8.10.1','05/09/2015',' '); +INSERT INTO entity_versions VALUES(685,258,'3.8.10','05/07/2015',' '); +INSERT INTO entity_versions VALUES(686,258,'3.8.9','04/08/2015',' '); +INSERT INTO entity_versions VALUES(687,258,'3.8.8.3','02/25/2015',' '); +INSERT INTO entity_versions VALUES(688,258,'3.8.8.2','01/30/2015',' '); +INSERT INTO entity_versions VALUES(689,258,'3.8.8.1','01/20/2015',' '); +INSERT INTO entity_versions VALUES(690,258,'3.8.8','01/16/2015',' '); +INSERT INTO entity_versions VALUES(691,258,'3.8.7.4','12/09/2014',' '); +INSERT INTO entity_versions VALUES(692,258,'3.8.7.3','12/05/2014',' '); +INSERT INTO entity_versions VALUES(693,258,'3.8.7.2','11/18/2014',' '); +INSERT INTO entity_versions VALUES(694,258,'3.8.7.1','10/29/2014',' '); +INSERT INTO entity_versions VALUES(695,258,'3.8.6.1','10/22/2014',' '); +INSERT INTO entity_versions VALUES(696,258,'3.8.7','10/17/2014',' '); +INSERT INTO entity_versions VALUES(697,258,'3.8.6','08/15/2014',' '); +INSERT INTO entity_versions VALUES(698,258,'3.8.5','06/04/2014',' '); +INSERT INTO entity_versions VALUES(699,258,'3.8.4.3','04/03/2014',' '); +INSERT INTO entity_versions VALUES(700,258,'3.8.4.2','03/26/2014',' '); +INSERT INTO entity_versions VALUES(701,258,'3.8.4.1','03/11/2014',' '); +INSERT INTO entity_versions VALUES(702,258,'3.8.4','03/10/2014',' '); +INSERT INTO entity_versions VALUES(703,258,'3.8.3.1','02/11/2014',' '); +INSERT INTO entity_versions VALUES(704,258,'3.8.3','02/03/2014',' '); +INSERT INTO entity_versions VALUES(705,258,'3.8.2','12/06/2013',' '); +INSERT INTO entity_versions VALUES(706,258,'3.8.1','10/17/2013',' '); +INSERT INTO entity_versions VALUES(707,258,'3.8.0.2','09/03/2013',' '); +INSERT INTO entity_versions VALUES(708,258,'3.8.0.1','08/29/2013',' '); +INSERT INTO entity_versions VALUES(709,258,'3.8.0','08/26/2013',' '); +INSERT INTO entity_versions VALUES(710,258,'3.7.17','05/20/2013',' '); +INSERT INTO entity_versions VALUES(711,258,'3.7.16.2','04/12/2013',' '); +INSERT INTO entity_versions VALUES(712,258,'3.7.16.1','03/29/2013',' '); +INSERT INTO entity_versions VALUES(713,258,'3.7.16','03/18/2013',' '); +INSERT INTO entity_versions VALUES(714,258,'3.7.15.2','01/09/2013',' '); +INSERT INTO entity_versions VALUES(715,258,'3.7.15.1','12/19/2012',' '); +INSERT INTO entity_versions VALUES(716,258,'3.7.15','12/12/2012',' '); +INSERT INTO entity_versions VALUES(717,258,'3.7.14.1','10/04/2012',' '); +INSERT INTO entity_versions VALUES(718,258,'3.7.14','09/03/2012',' '); +INSERT INTO entity_versions VALUES(719,258,'3.7.13','06/11/2012',' '); +INSERT INTO entity_versions VALUES(720,258,'3.7.12.1','05/22/2012',' '); +INSERT INTO entity_versions VALUES(721,258,'3.7.12','05/14/2012',' '); +INSERT INTO entity_versions VALUES(722,258,'3.7.12','05/14/2012',' '); +INSERT INTO entity_versions VALUES(723,258,'3.7.12','05/14/2012',' '); +INSERT INTO entity_versions VALUES(724,258,'3.7.11','03/20/2012',' '); +INSERT INTO entity_versions VALUES(725,258,'3.7.10','01/16/2012',' '); +INSERT INTO entity_versions VALUES(726,258,'3.7.9','11/01/2011',' '); +INSERT INTO entity_versions VALUES(727,258,'3.7.8','09/19/2011',' '); +INSERT INTO entity_versions VALUES(728,258,'3.7.7.1','06/28/2011',' '); +INSERT INTO entity_versions VALUES(729,258,'3.7.7','06/23/2011',' '); +INSERT INTO entity_versions VALUES(730,258,'3.7.6.3','05/19/2011',' '); +INSERT INTO entity_versions VALUES(731,258,'3.7.6.2','04/17/2011',' '); +INSERT INTO entity_versions VALUES(732,258,'3.7.6.1','04/13/2011',' '); +INSERT INTO entity_versions VALUES(733,258,'3.7.6','04/12/2011',' '); +INSERT INTO entity_versions VALUES(734,258,'3.7.5','02/01/2011',' '); +INSERT INTO entity_versions VALUES(735,258,'3.7.4','12/07/2010',' '); +INSERT INTO entity_versions VALUES(736,258,'3.7.3','10/08/2010',' '); +INSERT INTO entity_versions VALUES(737,258,'3.7.2','08/24/2010',' '); +INSERT INTO entity_versions VALUES(738,258,'3.7.1','08/23/2010',' '); +INSERT INTO entity_versions VALUES(739,258,'3.7.0.1','08/04/2010',' '); +INSERT INTO entity_versions VALUES(740,258,'3.7.0','07/21/2010',' '); +INSERT INTO entity_versions VALUES(741,258,'3.6.23.1','03/26/2010',' '); +INSERT INTO entity_versions VALUES(742,258,'3.6.23','03/09/2010',' '); +INSERT INTO entity_versions VALUES(743,258,'3.6.22','01/06/2010',' '); +INSERT INTO entity_versions VALUES(744,258,'3.6.21','12/07/2009',' '); +INSERT INTO entity_versions VALUES(745,258,'3.6.20','11/04/2009',' '); +INSERT INTO entity_versions VALUES(746,258,'3.6.16.1','10/30/2009',' '); +INSERT INTO entity_versions VALUES(747,258,'3.6.19','10/14/2009',' '); +INSERT INTO entity_versions VALUES(748,258,'3.6.18','09/11/2009',' '); +INSERT INTO entity_versions VALUES(749,258,'3.6.17','08/10/2009',' '); +INSERT INTO entity_versions VALUES(750,258,'3.6.16','06/27/2009',' '); +INSERT INTO entity_versions VALUES(751,258,'3.6.15','06/15/2009',' '); +INSERT INTO entity_versions VALUES(752,258,'3.6.14.2','05/25/2009',' '); +INSERT INTO entity_versions VALUES(753,258,'3.6.14.1','05/19/2009',' '); +INSERT INTO entity_versions VALUES(754,258,'3.6.14','05/07/2009',' '); +INSERT INTO entity_versions VALUES(755,258,'3.6.13','04/13/2009',' '); +INSERT INTO entity_versions VALUES(756,258,'3.6.12','03/31/2009',' '); +INSERT INTO entity_versions VALUES(757,258,'3.6.11','02/18/2009',' '); +INSERT INTO entity_versions VALUES(758,258,'3.6.10','01/15/2009',' '); +INSERT INTO entity_versions VALUES(759,258,'3.6.9','01/14/2009',' '); +INSERT INTO entity_versions VALUES(760,258,'3.6.8','01/12/2009',' '); +INSERT INTO entity_versions VALUES(761,258,'3.6.7','12/16/2008',' '); +INSERT INTO entity_versions VALUES(762,258,'3.6.6.2','11/26/2008',' '); +INSERT INTO entity_versions VALUES(763,258,'3.6.6.1','11/22/2008',' '); +INSERT INTO entity_versions VALUES(764,258,'3.6.6','11/19/2008',' '); +INSERT INTO entity_versions VALUES(765,258,'3.6.5','11/12/2008',' '); +INSERT INTO entity_versions VALUES(766,258,'3.6.4','10/15/2008',' '); +INSERT INTO entity_versions VALUES(767,258,'3.6.3','09/22/2008',' '); +INSERT INTO entity_versions VALUES(768,258,'3.6.2','08/30/2008',' '); +INSERT INTO entity_versions VALUES(769,258,'3.6.1','08/06/2008',' '); +INSERT INTO entity_versions VALUES(770,258,'3.6.0','07/16/2008',' '); +INSERT INTO entity_versions VALUES(771,258,'3.5.9','05/14/2008',' '); +INSERT INTO entity_versions VALUES(772,258,'3.5.8','04/16/2008',' '); +INSERT INTO entity_versions VALUES(773,258,'3.5.7','03/17/2008',' '); +INSERT INTO entity_versions VALUES(774,258,'3.5.6','02/06/2008',' '); +INSERT INTO entity_versions VALUES(775,258,'3.5.5','01/31/2008',' '); +INSERT INTO entity_versions VALUES(776,258,'3.5.4','12/14/2007',' '); +INSERT INTO entity_versions VALUES(777,258,'3.5.3','11/27/2007',' '); +INSERT INTO entity_versions VALUES(778,258,'3.5.2','11/05/2007',' '); +INSERT INTO entity_versions VALUES(779,258,'3.5.1','10/04/2007',' '); +INSERT INTO entity_versions VALUES(780,258,'3.5.0','09/04/2007',' '); +INSERT INTO entity_versions VALUES(781,258,'3.4.2','08/13/2007',' '); +INSERT INTO entity_versions VALUES(782,258,'3.4.1','07/20/2007',' '); +INSERT INTO entity_versions VALUES(783,258,'3.4.0','06/18/2007',' '); +INSERT INTO entity_versions VALUES(784,258,'3.3.17','04/25/2007',' '); +INSERT INTO entity_versions VALUES(785,258,'3.3.16','04/18/2007',' '); +INSERT INTO entity_versions VALUES(786,258,'3.3.15','04/09/2007',' '); +INSERT INTO entity_versions VALUES(787,258,'3.3.14','04/02/2007',' '); +INSERT INTO entity_versions VALUES(788,258,'3.3.13','02/13/2007',' '); +INSERT INTO entity_versions VALUES(789,258,'3.3.12','01/27/2007',' '); +INSERT INTO entity_versions VALUES(790,258,'3.3.11','01/22/2007',' '); +INSERT INTO entity_versions VALUES(791,258,'3.3.10','01/10/2007',' '); +INSERT INTO entity_versions VALUES(792,258,'3.3.9','01/04/2007',' '); +INSERT INTO entity_versions VALUES(793,258,'3.3.8','10/09/2006',' '); +INSERT INTO entity_versions VALUES(794,258,'3.3.7','08/12/2006',' '); +INSERT INTO entity_versions VALUES(795,258,'3.3.6','06/06/2006',' '); +INSERT INTO entity_versions VALUES(796,258,'3.3.5','04/05/2006',' '); +INSERT INTO entity_versions VALUES(797,258,'3.3.4','02/11/2006',' '); +INSERT INTO entity_versions VALUES(798,258,'3.3.3','01/31/2006',' '); +INSERT INTO entity_versions VALUES(799,258,'3.3.2','01/24/2006',' '); +INSERT INTO entity_versions VALUES(800,258,'3.3.1','01/16/2006',' '); +INSERT INTO entity_versions VALUES(801,258,'3.3.0','01/11/2006',' '); +INSERT INTO entity_versions VALUES(802,258,'2.8.17','12/19/2005',' '); +INSERT INTO entity_versions VALUES(803,258,'3.2.8','12/19/2005',' '); +INSERT INTO entity_versions VALUES(804,258,'3.2.7','09/24/2005',' '); +INSERT INTO entity_versions VALUES(805,258,'3.2.6','09/17/2005',' '); +INSERT INTO entity_versions VALUES(806,258,'3.2.5','08/27/2005',' '); +INSERT INTO entity_versions VALUES(807,258,'3.2.4','08/24/2005',' '); +INSERT INTO entity_versions VALUES(808,258,'3.2.3','08/21/2005',' '); +INSERT INTO entity_versions VALUES(809,258,'3.2.2','06/12/2005',' '); +INSERT INTO entity_versions VALUES(810,258,'3.2.1','03/29/2005',' '); +INSERT INTO entity_versions VALUES(811,258,'3.2.0','03/21/2005',' '); +INSERT INTO entity_versions VALUES(812,258,'3.1.6','03/17/2005',' '); +INSERT INTO entity_versions VALUES(813,258,'3.1.5','03/11/2005',' '); +INSERT INTO entity_versions VALUES(814,258,'3.1.4','03/11/2005',' '); +INSERT INTO entity_versions VALUES(815,258,'3.1.3.1','02/28/2005',' '); +INSERT INTO entity_versions VALUES(816,258,'3.1.3','02/20/2005',' '); +INSERT INTO entity_versions VALUES(817,258,'3.1.2','02/15/2005',' '); +INSERT INTO entity_versions VALUES(818,258,'2.8.16','02/15/2005',' '); +INSERT INTO entity_versions VALUES(819,258,'3.1.1','02/01/2005',' '); +INSERT INTO entity_versions VALUES(820,258,'3.1.0','01/21/2005',' '); +INSERT INTO entity_versions VALUES(821,258,'3.0.8','10/12/2004',' '); +INSERT INTO entity_versions VALUES(822,258,'3.0.7','09/18/2004',' '); +INSERT INTO entity_versions VALUES(823,258,'3.0.6','09/02/2004',' '); +INSERT INTO entity_versions VALUES(824,258,'3.0.5','08/29/2004',' '); +INSERT INTO entity_versions VALUES(825,258,'3.0.4','08/09/2004',' '); +INSERT INTO entity_versions VALUES(826,258,'3.0.3','07/22/2004',' '); +INSERT INTO entity_versions VALUES(827,258,'2.8.15','07/22/2004',' '); +INSERT INTO entity_versions VALUES(828,258,'3.0.2','06/30/2004',' '); +INSERT INTO entity_versions VALUES(829,258,'3.0.1','06/22/2004',' '); +INSERT INTO entity_versions VALUES(830,258,'3.0.0','06/18/2004',' '); +INSERT INTO entity_versions VALUES(831,258,'2.8.14','06/09/2004',' '); +INSERT INTO entity_versions VALUES(832,258,'2.8.13','03/08/2004',' '); +INSERT INTO entity_versions VALUES(833,258,'2.8.12','02/08/2004',' '); +INSERT INTO entity_versions VALUES(834,258,'2.8.11','01/14/2004',' '); +INSERT INTO entity_versions VALUES(835,258,'2.8.10','01/14/2004',' '); +INSERT INTO entity_versions VALUES(836,258,'2.8.9','01/06/2004',' '); +INSERT INTO entity_versions VALUES(837,258,'2.8.8','12/18/2003',' '); +INSERT INTO entity_versions VALUES(838,258,'2.8.7','12/04/2003',' '); +INSERT INTO entity_versions VALUES(839,258,'2.8.6','08/22/2003',' '); +INSERT INTO entity_versions VALUES(840,258,'2.8.5','07/22/2003',' '); +INSERT INTO entity_versions VALUES(841,258,'2.8.4','06/29/2003',' '); +INSERT INTO entity_versions VALUES(842,258,'2.8.3','06/04/2003',' '); +INSERT INTO entity_versions VALUES(843,258,'2.8.2','05/17/2003',' '); +INSERT INTO entity_versions VALUES(844,258,'2.8.1','05/17/2003',' '); +INSERT INTO entity_versions VALUES(845,258,'2.8.0','02/16/2003',' '); +INSERT INTO entity_versions VALUES(846,258,'2.7.6','01/25/2003',' '); +INSERT INTO entity_versions VALUES(847,258,'2.7.5','12/28/2002',' '); +INSERT INTO entity_versions VALUES(848,258,'2.7.4','12/17/2002',' '); +INSERT INTO entity_versions VALUES(849,258,'2.7.3','10/31/2002',' '); +INSERT INTO entity_versions VALUES(850,258,'2.7.2','09/25/2002',' '); +INSERT INTO entity_versions VALUES(851,258,'2.7.1','08/31/2002',' '); +INSERT INTO entity_versions VALUES(852,258,'2.7.0','08/25/2002',' '); +INSERT INTO entity_versions VALUES(853,258,'2.6.3','08/13/2002',' '); +INSERT INTO entity_versions VALUES(854,258,'2.6.2','07/31/2002',' '); +INSERT INTO entity_versions VALUES(855,258,'2.6.1','07/19/2002',' '); +INSERT INTO entity_versions VALUES(856,258,'2.6.0','07/18/2002',' '); +INSERT INTO entity_versions VALUES(857,258,'2.5.6','07/07/2002',' '); +INSERT INTO entity_versions VALUES(858,258,'2.5.5','07/06/2002',' '); +INSERT INTO entity_versions VALUES(859,258,'2.5.4','07/01/2002',' '); +INSERT INTO entity_versions VALUES(860,258,'2.5.3','06/25/2002',' '); +INSERT INTO entity_versions VALUES(861,258,'2.5.2','06/25/2002',' '); +INSERT INTO entity_versions VALUES(862,258,'2.5.1','06/19/2002',' '); +INSERT INTO entity_versions VALUES(863,258,'2.5.0','06/17/2002',' '); +INSERT INTO entity_versions VALUES(864,258,'2.4.12','05/10/2002',' '); +INSERT INTO entity_versions VALUES(865,258,'2.4.11','05/08/2002',' '); +INSERT INTO entity_versions VALUES(866,258,'2.4.10','05/03/2002',' '); +INSERT INTO entity_versions VALUES(867,258,'2.4.9','04/22/2002',' '); +INSERT INTO entity_versions VALUES(868,258,'2.4.8','04/20/2002',' '); +INSERT INTO entity_versions VALUES(869,258,'2.4.7','04/12/2002',' '); +INSERT INTO entity_versions VALUES(870,258,'2.4.6','04/02/2002',' '); +INSERT INTO entity_versions VALUES(871,258,'2.4.5','04/02/2002',' '); +INSERT INTO entity_versions VALUES(872,258,'2.4.4','03/30/2002',' '); +INSERT INTO entity_versions VALUES(873,258,'2.4.3','03/23/2002',' '); +INSERT INTO entity_versions VALUES(874,258,'2.4.2','03/20/2002',' '); +INSERT INTO entity_versions VALUES(875,258,'2.4.1','03/13/2002',' '); +INSERT INTO entity_versions VALUES(876,258,'2.4.1','03/13/2002',' '); +INSERT INTO entity_versions VALUES(877,258,'2.4.0','03/11/2002',' '); +INSERT INTO entity_versions VALUES(878,258,'2.3.3','02/19/2002',' '); +INSERT INTO entity_versions VALUES(879,258,'2.3.2','02/14/2002',' '); +INSERT INTO entity_versions VALUES(880,258,'2.3.1','02/13/2002',' '); +INSERT INTO entity_versions VALUES(881,258,'2.3.0','02/03/2002',' '); +INSERT INTO entity_versions VALUES(882,258,'2.2.5','01/28/2002',' '); +INSERT INTO entity_versions VALUES(883,258,'2.2.4','01/22/2002',' '); +INSERT INTO entity_versions VALUES(884,258,'2.2.3','01/16/2002',' '); +INSERT INTO entity_versions VALUES(885,258,'2.2.2','01/14/2002',' '); +INSERT INTO entity_versions VALUES(886,258,'2.2.1','01/09/2002',' '); +INSERT INTO entity_versions VALUES(887,258,'2.2.0','12/22/2001',' '); +INSERT INTO entity_versions VALUES(888,258,'2.1.7','12/15/2001',' '); +INSERT INTO entity_versions VALUES(889,258,'2.1.6','12/14/2001',' '); +INSERT INTO entity_versions VALUES(890,258,'2.1.5','12/06/2001',' '); +INSERT INTO entity_versions VALUES(891,258,'2.1.4','12/05/2001',' '); +INSERT INTO entity_versions VALUES(892,258,'2.1.3','11/24/2001',' '); +INSERT INTO entity_versions VALUES(893,258,'2.1.2','11/23/2001',' '); +INSERT INTO entity_versions VALUES(894,258,'2.1.1','11/13/2001',' '); +INSERT INTO entity_versions VALUES(895,258,'2.1.0','11/12/2001',' '); +INSERT INTO entity_versions VALUES(896,258,'2.0.8','11/04/2001',' '); +INSERT INTO entity_versions VALUES(897,258,'2.0.7','10/22/2001',' '); +INSERT INTO entity_versions VALUES(898,258,'2.0.6','10/19/2001',' '); +INSERT INTO entity_versions VALUES(899,258,'2.0.5','10/15/2001',' '); +INSERT INTO entity_versions VALUES(900,258,'2.0.4','10/13/2001',' '); +INSERT INTO entity_versions VALUES(901,258,'2.0.3','10/13/2001',' '); +INSERT INTO entity_versions VALUES(902,258,'2.0.2','10/09/2001',' '); +INSERT INTO entity_versions VALUES(903,258,'2.0.1','10/02/2001',' '); +INSERT INTO entity_versions VALUES(904,258,'2.0.0','09/28/2001',' '); +INSERT INTO entity_versions VALUES(905,258,'1.0.32','07/23/2001',' '); +INSERT INTO entity_versions VALUES(906,258,'1.0.31','04/15/2001',' '); +INSERT INTO entity_versions VALUES(907,258,'1.0.30','04/06/2001',' '); +INSERT INTO entity_versions VALUES(908,258,'1.0.29','04/05/2001',' '); +INSERT INTO entity_versions VALUES(909,258,'1.0.28','04/04/2001',' '); +INSERT INTO entity_versions VALUES(910,258,'1.0.27','03/20/2001',' '); +INSERT INTO entity_versions VALUES(911,258,'1.0.26','03/20/2001',' '); +INSERT INTO entity_versions VALUES(912,258,'1.0.25','03/15/2001',' '); +INSERT INTO entity_versions VALUES(913,258,'1.0.24','03/14/2001',' '); +INSERT INTO entity_versions VALUES(914,258,'1.0.23','02/20/2001',' '); +INSERT INTO entity_versions VALUES(915,258,'1.0.22','02/19/2001',' '); +INSERT INTO entity_versions VALUES(916,258,'1.0.21','02/19/2001',' '); +INSERT INTO entity_versions VALUES(917,258,'1.0.20','02/11/2001',' '); +INSERT INTO entity_versions VALUES(918,258,'1.0.19','02/06/2001',' '); +INSERT INTO entity_versions VALUES(919,258,'1.0.18','01/04/2001',' '); +INSERT INTO entity_versions VALUES(920,258,'1.0.17','12/10/2000',' '); +INSERT INTO entity_versions VALUES(921,258,'1.0.16','11/28/2000',' '); +INSERT INTO entity_versions VALUES(922,258,'1.0.15','10/23/2000',' '); +INSERT INTO entity_versions VALUES(923,258,'1.0.14','10/19/2000',' '); +INSERT INTO entity_versions VALUES(924,258,'1.0.13','10/19/2000',' '); +INSERT INTO entity_versions VALUES(925,258,'1.0.12','10/17/2000',' '); +INSERT INTO entity_versions VALUES(926,258,'1.0.10','10/11/2000',' '); +INSERT INTO entity_versions VALUES(927,258,'1.0.9','10/09/2000',' '); +INSERT INTO entity_versions VALUES(928,258,'1.0.8','09/30/2000',' '); +INSERT INTO entity_versions VALUES(929,258,'1.0.5','09/14/2000',' '); +INSERT INTO entity_versions VALUES(930,258,'1.0.4','08/28/2000',' '); +INSERT INTO entity_versions VALUES(931,258,'1.0.3','08/22/2000',' '); +INSERT INTO entity_versions VALUES(932,258,'1.0.1','08/18/2000',' '); +INSERT INTO entity_versions VALUES(933,258,'1','08/17/2000',' '); +INSERT INTO entity_versions VALUES(934,14,'18',' ',' '); +INSERT INTO entity_versions VALUES(935,14,'17',' ',' '); +INSERT INTO entity_versions VALUES(936,14,'16',' ',' '); +INSERT INTO entity_versions VALUES(937,14,'13',' ',' '); +INSERT INTO entity_versions VALUES(938,14,'1.2','11/21/2005','11/21/2010'); +INSERT INTO entity_versions VALUES(939,14,'1.4','12/23/2006','04/21/2012'); +INSERT INTO entity_versions VALUES(940,14,'1.6.0','10/01/2008','10/01/2010'); +INSERT INTO entity_versions VALUES(941,14,'1.6.1','04/27/2009','04/27/2011'); +INSERT INTO entity_versions VALUES(942,14,'1.6.2','12/18/2009','04/21/2012'); +INSERT INTO entity_versions VALUES(943,14,'1.8','10/21/2010','10/21/2015'); +INSERT INTO entity_versions VALUES(944,14,'10','12/15/2011','12/15/2013'); +INSERT INTO entity_versions VALUES(945,14,'11','10/25/2012','10/25/2017'); +INSERT INTO entity_versions VALUES(946,14,'12','12/20/2013','12/20/2015'); +INSERT INTO entity_versions VALUES(947,14,'13','10/24/2014','10/24/2019'); +INSERT INTO entity_versions VALUES(948,14,'14','10/01/2015','10/31/2017'); +INSERT INTO entity_versions VALUES(949,14,'15','10/01/2016','10/31/2021'); +INSERT INTO entity_versions VALUES(950,5,'1','02/20/2012',' '); +INSERT INTO entity_versions VALUES(951,5,'4.6.0','09/21/2021',' '); +INSERT INTO entity_versions VALUES(952,319,'1','12/31/1998',' '); +INSERT INTO entity_versions VALUES(953,319,'3','06/08/2017',' '); +INSERT INTO entity_versions VALUES(954,131,'21.1','05/12/2021',' '); +INSERT INTO entity_versions VALUES(955,131,'20.2','10/21/2020',' '); +INSERT INTO entity_versions VALUES(956,131,'20.1','04/23/2020',' '); +INSERT INTO entity_versions VALUES(957,131,'19.2','11/01/2019',' '); +INSERT INTO entity_versions VALUES(958,131,'19.1','03/21/2019',' '); +INSERT INTO entity_versions VALUES(959,131,'18.2','09/28/2018',' '); +INSERT INTO entity_versions VALUES(960,131,'18.1','05/24/2018',' '); +INSERT INTO entity_versions VALUES(961,131,'5.1.4','12/17/2017',' '); +INSERT INTO entity_versions VALUES(962,131,'5.1','12/21/2016',' '); +INSERT INTO entity_versions VALUES(963,19,'9.1.04','12/05/2017',' '); +INSERT INTO entity_versions VALUES(964,19,'9.1.03','06/09/2017',' '); +INSERT INTO entity_versions VALUES(965,19,'9.1.02','12/05/2016',' '); +INSERT INTO entity_versions VALUES(966,19,'9.1.01','06/23/2016',' '); +INSERT INTO entity_versions VALUES(967,19,'9.1.00','12/22/2015',' '); +INSERT INTO entity_versions VALUES(968,170,'1.1','02/21/2012',' '); +INSERT INTO entity_versions VALUES(969,170,'1.4','07/10/2013',' '); +INSERT INTO entity_versions VALUES(970,170,'2','09/02/2014',' '); +INSERT INTO entity_versions VALUES(971,170,'2.1','04/16/2015',' '); +INSERT INTO entity_versions VALUES(972,170,'2.2','11/17/2016',' '); +INSERT INTO entity_versions VALUES(973,170,'2.2.5','04/26/2018',' '); +INSERT INTO entity_versions VALUES(974,8,'2.3.8','01/17/2021',' '); +INSERT INTO entity_versions VALUES(975,8,'2.3.7','04/18/2020',' '); +INSERT INTO entity_versions VALUES(976,8,'3.1.2','08/26/2019',' '); +INSERT INTO entity_versions VALUES(977,8,'2.3.6','08/23/2019',' '); +INSERT INTO entity_versions VALUES(978,8,'2.3.5','05/14/2019',' '); +INSERT INTO entity_versions VALUES(979,8,'2.3.4','11/07/2018',' '); +INSERT INTO entity_versions VALUES(980,8,'3.1.1','11/01/2018',' '); +INSERT INTO entity_versions VALUES(981,8,'3.1.0','07/30/2018',' '); +INSERT INTO entity_versions VALUES(982,8,'3.0.0','05/21/2018',' '); +INSERT INTO entity_versions VALUES(983,8,'2.3.3','04/03/2018',' '); +INSERT INTO entity_versions VALUES(984,8,'2.3.2','11/18/2017',' '); +INSERT INTO entity_versions VALUES(985,8,'2.3.1','08/24/2017',' '); +INSERT INTO entity_versions VALUES(986,8,'2.2.0','07/25/2017',' '); +INSERT INTO entity_versions VALUES(987,8,'2.3.0','07/17/2017',' '); +INSERT INTO entity_versions VALUES(988,8,'1.2.2','04/07/2017',' '); +INSERT INTO entity_versions VALUES(989,8,'2.1.1','12/08/2016',' '); +INSERT INTO entity_versions VALUES(990,8,'2.1.0','06/20/2016',' '); +INSERT INTO entity_versions VALUES(991,8,'2.0.1','05/25/2016',' '); +INSERT INTO entity_versions VALUES(992,8,'2.0.0','02/15/2016',' '); +INSERT INTO entity_versions VALUES(993,8,'1.2.1','06/27/2015',' '); +INSERT INTO entity_versions VALUES(994,8,'1.1.1','05/21/2015',' '); +INSERT INTO entity_versions VALUES(995,8,'1.0.1','05/21/2015',' '); +INSERT INTO entity_versions VALUES(996,8,'0.14.0','11/12/2014',' '); +INSERT INTO entity_versions VALUES(997,8,'0.13.0','04/21/2014',' '); +INSERT INTO entity_versions VALUES(998,8,'0.12.0','10/15/2013',' '); +INSERT INTO entity_versions VALUES(999,8,'0.11.0','05/15/2013',' '); +INSERT INTO entity_versions VALUES(1000,8,'0.10.0','01/11/2013',' '); +INSERT INTO entity_versions VALUES(1001,175,'1','07/02/1905','06/01/2021'); +INSERT INTO entity_versions VALUES(1002,175,'2','06/26/2020',' '); +INSERT INTO entity_versions VALUES(1003,180,'2.1.0','07/06/2020',' '); +INSERT INTO entity_versions VALUES(1004,180,'2.0.1','07/06/2020',' '); +INSERT INTO entity_versions VALUES(1005,180,'1.8.0','07/06/2020',' '); +INSERT INTO entity_versions VALUES(1006,180,'1.7.1','07/06/2020',' '); +INSERT INTO entity_versions VALUES(1007,180,'1.7.0','10/04/2017',' '); +INSERT INTO entity_versions VALUES(1008,180,'1.6.0','04/06/2016',' '); +INSERT INTO entity_versions VALUES(1009,180,'1.5.1','04/06/2016',' '); +INSERT INTO entity_versions VALUES(1010,180,'1.4.0','04/06/2016',' '); +INSERT INTO entity_versions VALUES(1011,180,'1.3.0','04/06/2016',' '); +INSERT INTO entity_versions VALUES(1012,180,'1.2.0','04/06/2016',' '); +INSERT INTO entity_versions VALUES(1013,186,'9.1','07/31/2021',' '); +INSERT INTO entity_versions VALUES(1014,186,'9','06/30/2021',' '); +INSERT INTO entity_versions VALUES(1015,186,'8.9','05/04/2021',' '); +INSERT INTO entity_versions VALUES(1016,168,'6.2.4','08/31/2021',' '); +INSERT INTO entity_versions VALUES(1017,168,'6.0.20','04/30/2021',' '); +INSERT INTO entity_versions VALUES(1018,168,'6.0.12','01/31/2021',' '); +INSERT INTO entity_versions VALUES(1019,168,'6.0.8','09/30/2020',' '); +INSERT INTO entity_versions VALUES(1020,168,'6','05/31/2020',' '); +INSERT INTO entity_versions VALUES(1021,168,'5.6.0','04/30/2020',' '); +INSERT INTO entity_versions VALUES(1022,168,'5.5','04/30/2019',' '); +INSERT INTO entity_versions VALUES(1023,168,'5.4.14','02/28/2020',' '); +INSERT INTO entity_versions VALUES(1024,168,'5.4.10','12/31/2019',' '); +INSERT INTO entity_versions VALUES(1025,168,'5.4.6','07/31/2019',' '); +INSERT INTO entity_versions VALUES(1026,168,'5.4.4','06/30/2019',' '); +INSERT INTO entity_versions VALUES(1027,168,'5.4.2','04/28/2019',' '); +INSERT INTO entity_versions VALUES(1028,168,'5.4','12/31/2018',' '); +INSERT INTO entity_versions VALUES(1029,168,'5.2.2','08/31/2018',' '); +INSERT INTO entity_versions VALUES(1030,168,'5.2','07/31/2018',' '); +INSERT INTO entity_versions VALUES(1031,168,'5.0.2','06/30/2018',' '); +INSERT INTO entity_versions VALUES(1032,168,'5','03/31/2018',' '); +INSERT INTO entity_versions VALUES(1033,168,'4.5','05/31/2017',' '); +INSERT INTO entity_versions VALUES(1034,168,'4.4','12/31/2016',' '); +INSERT INTO entity_versions VALUES(1035,168,'4.3','08/02/2016',' '); +INSERT INTO entity_versions VALUES(1036,168,'4.2.1','10/18/2015',' '); +INSERT INTO entity_versions VALUES(1037,168,'4','06/18/2015',' '); +INSERT INTO entity_versions VALUES(1038,165,'3.9.7','09/24/2021',' '); +INSERT INTO entity_versions VALUES(1039,165,'3.8.23','09/24/2021',' '); +INSERT INTO entity_versions VALUES(1040,165,'3.9.6','09/16/2021',' '); +INSERT INTO entity_versions VALUES(1041,165,'3.9.5','08/30/2021',' '); +INSERT INTO entity_versions VALUES(1042,165,'3.8.22','08/30/2021',' '); +INSERT INTO entity_versions VALUES(1043,165,'3.9.4','08/17/2021',' '); +INSERT INTO entity_versions VALUES(1044,165,'3.9.3','08/12/2021',' '); +INSERT INTO entity_versions VALUES(1045,165,'3.8.21','08/12/2021',' '); +INSERT INTO entity_versions VALUES(1046,165,'3.9.2','08/09/2021',' '); +INSERT INTO entity_versions VALUES(1047,165,'3.8.20','08/09/2021',' '); +INSERT INTO entity_versions VALUES(1048,165,'3.9.1','07/30/2021',' '); +INSERT INTO entity_versions VALUES(1049,165,'3.9.0','07/23/2021',' '); +INSERT INTO entity_versions VALUES(1050,165,'3.8.19','07/05/2021',' '); +INSERT INTO entity_versions VALUES(1051,165,'3.8.18','06/25/2021',' '); +INSERT INTO entity_versions VALUES(1052,165,'3.8.17','06/08/2021',' '); +INSERT INTO entity_versions VALUES(1053,165,'3.8.16','05/04/2021',' '); +INSERT INTO entity_versions VALUES(1054,165,'3.8.15','05/03/2021',' '); +INSERT INTO entity_versions VALUES(1055,165,'3.8.14','03/02/2021',' '); +INSERT INTO entity_versions VALUES(1056,165,'3.8.13','02/27/2021',' '); +INSERT INTO entity_versions VALUES(1057,165,'3.8.12','02/16/2021',' '); +INSERT INTO entity_versions VALUES(1058,165,'3.8.11','01/22/2021',' '); +INSERT INTO entity_versions VALUES(1059,165,'3.8.10','01/19/2021',' '); +INSERT INTO entity_versions VALUES(1060,165,'3.8.9','09/28/2020',' '); +INSERT INTO entity_versions VALUES(1061,165,'3.8.8','09/03/2020',' '); +INSERT INTO entity_versions VALUES(1062,165,'3.8.7','08/17/2020',' '); +INSERT INTO entity_versions VALUES(1063,165,'3.7.28','08/17/2020',' '); +INSERT INTO entity_versions VALUES(1064,165,'3.8.6','08/04/2020',' '); +INSERT INTO entity_versions VALUES(1065,165,'3.7.27','07/25/2020',' '); +INSERT INTO entity_versions VALUES(1066,165,'3.8.5','06/15/2020',' '); +INSERT INTO entity_versions VALUES(1067,165,'3.8.4','05/25/2020',' '); +INSERT INTO entity_versions VALUES(1068,165,'3.7.26','05/04/2020',' '); +INSERT INTO entity_versions VALUES(1069,165,'3.7.25','04/09/2020',' '); +INSERT INTO entity_versions VALUES(1070,165,'3.8.3','03/10/2020',' '); +INSERT INTO entity_versions VALUES(1071,165,'3.7.24','02/13/2020',' '); +INSERT INTO entity_versions VALUES(1072,165,'3.7.23','12/05/2019',' '); +INSERT INTO entity_versions VALUES(1073,165,'3.8.2','12/02/2019',' '); +INSERT INTO entity_versions VALUES(1074,165,'3.7.22','11/27/2019',' '); +INSERT INTO entity_versions VALUES(1075,165,'3.8.1','10/31/2019',' '); +INSERT INTO entity_versions VALUES(1076,165,'3.7.21','10/31/2019',' '); +INSERT INTO entity_versions VALUES(1077,165,'3.7.20','10/25/2019',' '); +INSERT INTO entity_versions VALUES(1078,165,'3.7.19','10/02/2019',' '); +INSERT INTO entity_versions VALUES(1079,165,'3.8.0','10/01/2019',' '); +INSERT INTO entity_versions VALUES(1080,165,'3.7.18','09/18/2019',' '); +INSERT INTO entity_versions VALUES(1081,165,'3.7.17','07/29/2019',' '); +INSERT INTO entity_versions VALUES(1082,165,'3.7.16','07/08/2019',' '); +INSERT INTO entity_versions VALUES(1083,165,'3.7.15','05/20/2019',' '); +INSERT INTO entity_versions VALUES(1084,165,'3.7.14','03/29/2019',' '); +INSERT INTO entity_versions VALUES(1085,165,'3.7.13','03/08/2019',' '); +INSERT INTO entity_versions VALUES(1086,165,'3.7.12','02/15/2019',' '); +INSERT INTO entity_versions VALUES(1087,165,'3.7.11','01/31/2019',' '); +INSERT INTO entity_versions VALUES(1088,165,'3.7.10','01/07/2019',' '); +INSERT INTO entity_versions VALUES(1089,165,'3.7.9','11/16/2018',' '); +INSERT INTO entity_versions VALUES(1090,165,'3.7.8','09/20/2018',' '); +INSERT INTO entity_versions VALUES(1091,165,'3.7.7','07/05/2018',' '); +INSERT INTO entity_versions VALUES(1092,165,'3.7.6','06/13/2018',' '); +INSERT INTO entity_versions VALUES(1093,165,'3.6.16','06/13/2018',' '); +INSERT INTO entity_versions VALUES(1094,165,'3.7.5','05/09/2018',' '); +INSERT INTO entity_versions VALUES(1095,165,'3.7.4','03/08/2018',' '); +INSERT INTO entity_versions VALUES(1096,165,'3.7.3','01/30/2018',' '); +INSERT INTO entity_versions VALUES(1097,165,'3.6.15','01/17/2018',' '); +INSERT INTO entity_versions VALUES(1098,165,'3.7.2','12/23/2017',' '); +INSERT INTO entity_versions VALUES(1099,165,'3.7.1','12/21/2017',' '); +INSERT INTO entity_versions VALUES(1100,165,'3.7.0','11/29/2017',' '); +INSERT INTO entity_versions VALUES(1101,165,'3.6.14','11/07/2017',' '); +INSERT INTO entity_versions VALUES(1102,165,'3.6.13','11/06/2017',' '); +INSERT INTO entity_versions VALUES(1103,165,'3.6.12','09/11/2017',' '); +INSERT INTO entity_versions VALUES(1104,165,'3.6.11','08/16/2017',' '); +INSERT INTO entity_versions VALUES(1105,165,'3.6.10','05/25/2017',' '); +INSERT INTO entity_versions VALUES(1106,165,'3.6.9','03/29/2017',' '); +INSERT INTO entity_versions VALUES(1107,165,'3.6.8','03/17/2017',' '); +INSERT INTO entity_versions VALUES(1108,165,'3.6.7','03/15/2017',' '); +INSERT INTO entity_versions VALUES(1109,165,'3.6.6','11/21/2016',' '); +INSERT INTO entity_versions VALUES(1110,165,'3.5.8','11/21/2016',' '); +INSERT INTO entity_versions VALUES(1111,165,'3.6.5','08/05/2016',' '); +INSERT INTO entity_versions VALUES(1112,165,'3.6.4','07/29/2016',' '); +INSERT INTO entity_versions VALUES(1113,165,'3.6.3','07/06/2016',' '); +INSERT INTO entity_versions VALUES(1114,165,'3.6.2','05/19/2016',' '); +INSERT INTO entity_versions VALUES(1115,165,'3.6.1','03/01/2016',' '); +INSERT INTO entity_versions VALUES(1116,165,'3.6.0','12/22/2015',' '); +INSERT INTO entity_versions VALUES(1117,165,'3.5.7','12/15/2015',' '); +INSERT INTO entity_versions VALUES(1118,165,'3.5.6','10/07/2015',' '); +INSERT INTO entity_versions VALUES(1119,165,'3.5.5','09/24/2015',' '); +INSERT INTO entity_versions VALUES(1120,165,'3.5.4','07/22/2015',' '); +INSERT INTO entity_versions VALUES(1121,165,'3.5.3','05/22/2015',' '); +INSERT INTO entity_versions VALUES(1122,165,'3.5.2','05/12/2015',' '); +INSERT INTO entity_versions VALUES(1123,165,'3.5.1','04/03/2015',' '); +INSERT INTO entity_versions VALUES(1124,165,'3.5.0','03/11/2015',' '); +INSERT INTO entity_versions VALUES(1125,165,'3.4.4','02/11/2015',' '); +INSERT INTO entity_versions VALUES(1126,165,'3.4.3','01/07/2015',' '); +INSERT INTO entity_versions VALUES(1127,165,'3.4.2','11/26/2014',' '); +INSERT INTO entity_versions VALUES(1128,165,'3.4.1','10/29/2014',' '); +INSERT INTO entity_versions VALUES(1129,165,'3.4.0','10/21/2014',' '); +INSERT INTO entity_versions VALUES(1130,165,'3.3.5','08/11/2014',' '); +INSERT INTO entity_versions VALUES(1131,165,'3.3.4','06/24/2014',' '); +INSERT INTO entity_versions VALUES(1132,165,'3.3.3','06/17/2014',' '); +INSERT INTO entity_versions VALUES(1133,165,'3.3.2','06/09/2014',' '); +INSERT INTO entity_versions VALUES(1134,165,'3.3.1','04/29/2014',' '); +INSERT INTO entity_versions VALUES(1135,165,'3.3.0','04/02/2014',' '); +INSERT INTO entity_versions VALUES(1136,165,'3.2.4','03/04/2014',' '); +INSERT INTO entity_versions VALUES(1137,165,'3.2.3','01/23/2014',' '); +INSERT INTO entity_versions VALUES(1138,165,'3.2.2','12/11/2013',' '); +INSERT INTO entity_versions VALUES(1139,165,'3.2.1','11/07/2013',' '); +INSERT INTO entity_versions VALUES(1140,165,'3.2.0','10/23/2013',' '); +INSERT INTO entity_versions VALUES(1141,165,'3.1.5','08/15/2013',' '); +INSERT INTO entity_versions VALUES(1142,165,'3.1.4','08/07/2013',' '); +INSERT INTO entity_versions VALUES(1143,165,'3.1.3','06/26/2013',' '); +INSERT INTO entity_versions VALUES(1144,165,'3.1.2','06/24/2013',' '); +INSERT INTO entity_versions VALUES(1145,165,'3.1.1','05/21/2013',' '); +INSERT INTO entity_versions VALUES(1146,165,'3.1.0','05/01/2013',' '); +INSERT INTO entity_versions VALUES(1147,165,'3.0.4','03/12/2013',' '); +INSERT INTO entity_versions VALUES(1148,165,'3.0.3','03/06/2013',' '); +INSERT INTO entity_versions VALUES(1149,165,'3.0.2','01/31/2013',' '); +INSERT INTO entity_versions VALUES(1150,165,'3.0.1','12/11/2012',' '); +INSERT INTO entity_versions VALUES(1151,165,'3.0.0','11/19/2012',' '); +INSERT INTO entity_versions VALUES(1152,165,'2.8.7','09/27/2012',' '); +INSERT INTO entity_versions VALUES(1153,165,'2.8.6','08/22/2012',' '); +INSERT INTO entity_versions VALUES(1154,165,'2.8.5','08/02/2012',' '); +INSERT INTO entity_versions VALUES(1155,165,'2.8.4','06/22/2012',' '); +INSERT INTO entity_versions VALUES(1156,165,'2.8.3','06/21/2012',' '); +INSERT INTO entity_versions VALUES(1157,165,'2.8.2','04/30/2012',' '); +INSERT INTO entity_versions VALUES(1158,165,'2.8.1','03/22/2012',' '); +INSERT INTO entity_versions VALUES(1159,165,'2.8.0','03/19/2012',' '); +INSERT INTO entity_versions VALUES(1160,165,'2.7.1','12/20/2011',' '); +INSERT INTO entity_versions VALUES(1161,165,'2.7.0','11/09/2011',' '); +INSERT INTO entity_versions VALUES(1162,165,'2.6.1','09/12/2011',' '); +INSERT INTO entity_versions VALUES(1163,165,'2.6.0','08/31/2011',' '); +INSERT INTO entity_versions VALUES(1164,165,'2.5.1','06/27/2011',' '); +INSERT INTO entity_versions VALUES(1165,165,'2.5.0','06/14/2011',' '); +INSERT INTO entity_versions VALUES(1166,165,'2.4.1','04/07/2011',' '); +INSERT INTO entity_versions VALUES(1167,165,'2.4.0','03/23/2011',' '); +INSERT INTO entity_versions VALUES(1168,165,'2.3.1','02/03/2011',' '); +INSERT INTO entity_versions VALUES(1169,165,'2.3.0','02/02/2011',' '); +INSERT INTO entity_versions VALUES(1170,165,'2.2.0','11/30/2010',' '); +INSERT INTO entity_versions VALUES(1171,165,'2.1.1','10/20/2010',' '); +INSERT INTO entity_versions VALUES(1172,165,'2.1.0','09/15/2010',' '); +INSERT INTO entity_versions VALUES(1173,165,'2.0.0','08/25/2010',' '); +INSERT INTO entity_versions VALUES(1174,165,'1.8.1','07/15/2010',' '); +INSERT INTO entity_versions VALUES(1175,165,'1.8.0','06/16/2010',' '); +INSERT INTO entity_versions VALUES(1176,165,'1.7.2','02/16/2010',' '); +INSERT INTO entity_versions VALUES(1177,165,'1.7.1','01/25/2010',' '); +INSERT INTO entity_versions VALUES(1178,165,'1.7.0','10/07/2009',' '); +INSERT INTO entity_versions VALUES(1179,165,'1.6.0','06/17/2009',' '); +INSERT INTO entity_versions VALUES(1180,165,'1.5.5','05/30/2009',' '); +INSERT INTO entity_versions VALUES(1181,165,'1.5.4','04/06/2009',' '); +INSERT INTO entity_versions VALUES(1182,165,'1.5.3','02/24/2009',' '); +INSERT INTO entity_versions VALUES(1183,165,'1.5.1','01/21/2009',' '); +INSERT INTO entity_versions VALUES(1184,165,'1.5.0','12/18/2008',' '); +INSERT INTO entity_versions VALUES(1185,165,'1.4.0','07/30/2008',' '); +INSERT INTO entity_versions VALUES(1186,165,'1.3.0','04/01/2008',' '); +INSERT INTO entity_versions VALUES(1187,165,'1.2.0','09/27/2007',' '); +INSERT INTO entity_versions VALUES(1188,165,'1.1.1','08/29/2007',' '); +INSERT INTO entity_versions VALUES(1189,165,'1.1.0','08/01/2007',' '); +INSERT INTO entity_versions VALUES(1190,165,'1.0.0','02/08/2007',' '); +INSERT INTO entity_versions VALUES(1191,9,'3.0.0','09/21/2021',' '); +INSERT INTO entity_versions VALUES(1192,9,'2.8.1','09/18/2021',' '); +INSERT INTO entity_versions VALUES(1193,9,'2.8.0','04/19/2021',' '); +INSERT INTO entity_versions VALUES(1194,9,'2.7.1','05/10/2020',' '); +INSERT INTO entity_versions VALUES(1195,9,'2.7.0','12/21/2020',' '); +INSERT INTO entity_versions VALUES(1196,9,'2.6.2','04/20/2021',' '); +INSERT INTO entity_versions VALUES(1197,9,'2.6.1','01/07/2021',' '); +INSERT INTO entity_versions VALUES(1198,9,'2.6.0','08/03/2020',' '); +INSERT INTO entity_versions VALUES(1199,9,'2.5.1','08/10/2020',' '); +INSERT INTO entity_versions VALUES(1200,9,'2.5.0','04/15/2020',' '); +INSERT INTO entity_versions VALUES(1201,9,'2.4.1','03/12/2020',' '); +INSERT INTO entity_versions VALUES(1202,9,'2.4.0','12/16/2019',' '); +INSERT INTO entity_versions VALUES(1203,9,'2.3.1','08/24/2019',' '); +INSERT INTO entity_versions VALUES(1204,9,'2.3.0','06/25/2019',' '); +INSERT INTO entity_versions VALUES(1205,9,'2.2.2','12/01/2019',' '); +INSERT INTO entity_versions VALUES(1206,9,'2.2.1','06/01/2019',' '); +INSERT INTO entity_versions VALUES(1207,9,'2.2.0','03/22/2019',' '); +INSERT INTO entity_versions VALUES(1208,9,'2.1.1','02/15/2019',' '); +INSERT INTO entity_versions VALUES(1209,9,'2.1.0','11/20/2018',' '); +INSERT INTO entity_versions VALUES(1210,9,'2.0.1','11/09/2018',' '); +INSERT INTO entity_versions VALUES(1211,9,'2.0.0','06/30/2018',' '); +INSERT INTO entity_versions VALUES(1212,9,'1.1.1','07/19/2018',' '); +INSERT INTO entity_versions VALUES(1213,9,'1.1.0','03/28/2018',' '); +INSERT INTO entity_versions VALUES(1214,9,'1.0.2','07/08/2018',' '); +INSERT INTO entity_versions VALUES(1215,9,'1.0.1','03/05/2018',' '); +INSERT INTO entity_versions VALUES(1216,9,'1.0.0','11/01/2017',' '); +INSERT INTO entity_versions VALUES(1217,9,'0.11.0','06/28/2017',' '); +INSERT INTO entity_versions VALUES(1218,9,'0.10.0','05/22/2016',' '); +INSERT INTO entity_versions VALUES(1219,9,'0.9.0','11/23/2015',' '); +INSERT INTO entity_versions VALUES(1220,9,'0.8.0','03/12/2014',' '); +INSERT INTO entity_versions VALUES(1221,9,'0.7.0','01/04/2012',' '); +INSERT INTO entity_versions VALUES(1222,157,'6','01/29/1997',' '); +INSERT INTO entity_versions VALUES(1223,157,'6.1','06/08/1997',' '); +INSERT INTO entity_versions VALUES(1224,157,'6.2','10/02/1997',' '); +INSERT INTO entity_versions VALUES(1225,157,'6.3','03/01/1998','03/01/2003'); +INSERT INTO entity_versions VALUES(1226,157,'6.4','10/30/1998','10/30/2003'); +INSERT INTO entity_versions VALUES(1227,157,'6.5','06/09/1999','06/09/2004'); +INSERT INTO entity_versions VALUES(1228,157,'7','05/08/2000','05/08/2004'); +INSERT INTO entity_versions VALUES(1229,157,'7.1','04/13/2001','04/13/2006'); +INSERT INTO entity_versions VALUES(1230,157,'7.2','02/04/2002','02/04/2007'); +INSERT INTO entity_versions VALUES(1231,157,'7.3','11/27/2002','11/27/2007'); +INSERT INTO entity_versions VALUES(1232,157,'7.4','11/17/2003','10/01/2010'); +INSERT INTO entity_versions VALUES(1233,157,'8','01/19/2005','10/01/2010'); +INSERT INTO entity_versions VALUES(1234,157,'8.1','11/08/2005','11/08/2010'); +INSERT INTO entity_versions VALUES(1235,157,'8.2','12/05/2006','12/05/2011'); +INSERT INTO entity_versions VALUES(1236,157,'8.3','02/04/2008','02/07/2013'); +INSERT INTO entity_versions VALUES(1237,157,'8.4','07/01/2009','07/24/2014'); +INSERT INTO entity_versions VALUES(1238,157,'9','09/20/2010','10/08/2015'); +INSERT INTO entity_versions VALUES(1239,157,'9.1','09/12/2011','10/27/2016'); +INSERT INTO entity_versions VALUES(1240,157,'9.2','09/10/2012','11/09/2017'); +INSERT INTO entity_versions VALUES(1241,157,'9.3','09/09/2013','11/08/2018'); +INSERT INTO entity_versions VALUES(1242,157,'9.4','12/18/2014','02/13/2020'); +INSERT INTO entity_versions VALUES(1243,157,'9.5','01/07/2016','02/11/2021'); +INSERT INTO entity_versions VALUES(1244,157,'9.6','09/29/2016','11/11/2021'); +INSERT INTO entity_versions VALUES(1245,157,'10','10/05/2017','11/10/2022'); +INSERT INTO entity_versions VALUES(1246,157,'11','10/18/2018','11/09/2023'); +INSERT INTO entity_versions VALUES(1247,157,'12','10/03/2019','11/14/2024'); +INSERT INTO entity_versions VALUES(1248,157,'13','09/24/2020','11/13/2025'); +INSERT INTO entity_versions VALUES(1249,157,'14','09/30/2021','11/12/2026'); +INSERT INTO entity_versions VALUES(1250,21,'1.0','03/01/2005',' '); +INSERT INTO entity_versions VALUES(1251,21,'1','06/06/2005',' '); +INSERT INTO entity_versions VALUES(1252,21,'1.0.1','07/31/2005',' '); +INSERT INTO entity_versions VALUES(1253,21,'2','01/23/2006',' '); +INSERT INTO entity_versions VALUES(1254,21,'2.0.1','02/22/2006',' '); +INSERT INTO entity_versions VALUES(1255,21,'2.1','06/28/2006',' '); +INSERT INTO entity_versions VALUES(1256,21,'2.0.2','08/04/2006',' '); +INSERT INTO entity_versions VALUES(1257,21,'2.1.1','09/26/2006',' '); +INSERT INTO entity_versions VALUES(1258,21,'2.1.2','02/27/2007',' '); +INSERT INTO entity_versions VALUES(1259,21,'2.1.3','07/05/2007',' '); +INSERT INTO entity_versions VALUES(1260,21,'2.2','06/28/2007',' '); +INSERT INTO entity_versions VALUES(1261,21,'2.2.1','10/02/2007',' '); +INSERT INTO entity_versions VALUES(1262,21,'2.2.1.1','11/01/2007',' '); +INSERT INTO entity_versions VALUES(1263,21,'2.2.2','02/27/2008',' '); +INSERT INTO entity_versions VALUES(1264,21,'2.3','06/25/2008',' '); +INSERT INTO entity_versions VALUES(1265,21,'2.3.1','09/24/2008',' '); +INSERT INTO entity_versions VALUES(1266,21,'2.3.2','02/25/2009',' '); +INSERT INTO entity_versions VALUES(1267,21,'2.5','06/24/2009',' '); +INSERT INTO entity_versions VALUES(1268,21,'2.5.1','09/25/2009',' '); +INSERT INTO entity_versions VALUES(1269,21,'2.5.2','02/28/2010',' '); +INSERT INTO entity_versions VALUES(1270,21,'2.6','06/24/2010',' '); +INSERT INTO entity_versions VALUES(1271,21,'2.6.1','09/17/2010',' '); +INSERT INTO entity_versions VALUES(1272,21,'2.6.2','02/25/2011',' '); +INSERT INTO entity_versions VALUES(1273,21,'3.7','06/22/2011',' '); +INSERT INTO entity_versions VALUES(1274,21,'3.7.1','09/23/2011',' '); +INSERT INTO entity_versions VALUES(1275,21,'3.7.2','02/24/2012',' '); +INSERT INTO entity_versions VALUES(1276,21,'4.2.0','06/27/2012',' '); +INSERT INTO entity_versions VALUES(1277,21,'4.2.1','09/28/2012',' '); +INSERT INTO entity_versions VALUES(1278,21,'4.2.2','02/22/2013',' '); +INSERT INTO entity_versions VALUES(1279,21,'4.3','06/26/2013',' '); +INSERT INTO entity_versions VALUES(1280,21,'4.3.1','09/27/2013',' '); +INSERT INTO entity_versions VALUES(1281,21,'4.3.2','02/28/2014',' '); +INSERT INTO entity_versions VALUES(1282,21,'4.4.0','06/25/2014',' '); +INSERT INTO entity_versions VALUES(1283,21,'4.4.1','09/26/2014',' '); +INSERT INTO entity_versions VALUES(1284,21,'4.4.2','02/27/2015',' '); +INSERT INTO entity_versions VALUES(1285,21,'4.5.0','06/24/2015',' '); +INSERT INTO entity_versions VALUES(1286,21,'4.6.0','06/22/2016',' '); +INSERT INTO entity_versions VALUES(1287,21,'4.7.0','06/28/2017',' '); +INSERT INTO entity_versions VALUES(1288,21,'4.8.0','06/27/2018',' '); +INSERT INTO entity_versions VALUES(1289,21,'4.9.0','06/16/2021',' '); +INSERT INTO entity_versions VALUES(1290,55,'94','09/21/2021',' '); +INSERT INTO entity_versions VALUES(1291,55,'93','08/31/2021',' '); +INSERT INTO entity_versions VALUES(1292,55,'92','06/20/2021',' '); +INSERT INTO entity_versions VALUES(1293,55,'91','05/25/2021',' '); +INSERT INTO entity_versions VALUES(1294,55,'90','04/14/2021',' '); +INSERT INTO entity_versions VALUES(1295,55,'89','03/09/2021',' '); +INSERT INTO entity_versions VALUES(1296,55,'88','01/19/2021',' '); +INSERT INTO entity_versions VALUES(1297,55,'87','11/17/2020',' '); +INSERT INTO entity_versions VALUES(1298,55,'86','10/06/2020',' '); +INSERT INTO entity_versions VALUES(1299,55,'85','08/25/2020',' '); +INSERT INTO entity_versions VALUES(1300,55,'84','07/14/2020',' '); +INSERT INTO entity_versions VALUES(1301,55,'83','05/19/2020',' '); +INSERT INTO entity_versions VALUES(1302,55,'81','04/07/2020',' '); +INSERT INTO entity_versions VALUES(1303,55,'80','02/04/2020',' '); +INSERT INTO entity_versions VALUES(1304,55,'79','12/11/2019',' '); +INSERT INTO entity_versions VALUES(1305,55,'78','10/22/2019',' '); +INSERT INTO entity_versions VALUES(1306,55,'77','09/10/2019',' '); +INSERT INTO entity_versions VALUES(1307,55,'76','06/30/2019',' '); +INSERT INTO entity_versions VALUES(1308,55,'75','06/04/2019',' '); +INSERT INTO entity_versions VALUES(1309,55,'74','04/23/2019',' '); +INSERT INTO entity_versions VALUES(1310,55,'73','03/12/2019',' '); +INSERT INTO entity_versions VALUES(1311,55,'72','01/29/2019',' '); +INSERT INTO entity_versions VALUES(1312,55,'71','12/04/2018',' '); +INSERT INTO entity_versions VALUES(1313,55,'70','10/16/2018',' '); +INSERT INTO entity_versions VALUES(1314,55,'69','09/04/2018',' '); +INSERT INTO entity_versions VALUES(1315,55,'68','07/24/2018',' '); +INSERT INTO entity_versions VALUES(1316,55,'67','05/29/2018',' '); +INSERT INTO entity_versions VALUES(1317,55,'66','04/17/2018',' '); +INSERT INTO entity_versions VALUES(1318,55,'65','03/06/2018',' '); +INSERT INTO entity_versions VALUES(1319,55,'64','01/23/2018',' '); +INSERT INTO entity_versions VALUES(1320,55,'63','12/05/2017',' '); +INSERT INTO entity_versions VALUES(1321,55,'62','10/17/2017',' '); +INSERT INTO entity_versions VALUES(1322,55,'61','09/05/2017',' '); +INSERT INTO entity_versions VALUES(1323,55,'60','07/25/2017',' '); +INSERT INTO entity_versions VALUES(1324,55,'59','05/30/2017',' '); +INSERT INTO entity_versions VALUES(1325,55,'58','04/18/2017',' '); +INSERT INTO entity_versions VALUES(1326,55,'57','03/07/2017',' '); +INSERT INTO entity_versions VALUES(1327,150,'9.3','12/31/2022',' '); +INSERT INTO entity_versions VALUES(1328,150,'9.2','08/31/2021',' '); +INSERT INTO entity_versions VALUES(1329,150,'9.1','10/31/2020','08/01/2022'); +INSERT INTO entity_versions VALUES(1330,150,'9.0','02/28/2020','10/01/2021'); +INSERT INTO entity_versions VALUES(1331,150,'8.3','07/31/2019','07/01/2023'); +INSERT INTO entity_versions VALUES(1332,150,'8.2','11/30/2018','02/01/2021'); +INSERT INTO entity_versions VALUES(1333,150,'8.1','05/31/2018','02/01/2021'); +INSERT INTO entity_versions VALUES(1334,150,'8.0','11/30/2017','02/01/2021'); +INSERT INTO entity_versions VALUES(1335,150,'7.1','04/30/2017','02/01/2021'); +INSERT INTO entity_versions VALUES(1336,27,'20210923171324','09/30/2021',' '); +INSERT INTO entity_versions VALUES(1337,27,'20210907035717','10/30/2021',' '); +INSERT INTO entity_versions VALUES(1338,27,'20210824134201','08/30/2021',' '); +INSERT INTO entity_versions VALUES(1339,27,'20210813114337','08/30/2021',' '); +INSERT INTO entity_versions VALUES(1340,27,'20210727104144','08/30/2021',' '); +INSERT INTO entity_versions VALUES(1341,27,'20210720135142','07/30/2021',' '); +INSERT INTO entity_versions VALUES(1342,27,'20210713164523','07/30/2021',' '); +INSERT INTO entity_versions VALUES(1343,27,'20210629161835','07/30/2021',' '); +INSERT INTO entity_versions VALUES(1344,27,'20210616033549','06/30/2021',' '); +INSERT INTO entity_versions VALUES(1345,27,'20210601124849','06/30/2021',' '); +INSERT INTO entity_versions VALUES(1346,27,'20210526024943','05/30/2021',' '); +INSERT INTO entity_versions VALUES(1347,27,'20210518074441','05/30/2021',' '); +INSERT INTO entity_versions VALUES(1348,27,'20210504084406','05/30/2021',' '); +INSERT INTO entity_versions VALUES(1349,27,'20210420090302','04/30/2021',' '); +INSERT INTO entity_versions VALUES(1350,27,'20210406040048','04/30/2021',' '); +INSERT INTO entity_versions VALUES(1351,27,'20210324172345','03/30/2021',' '); +INSERT INTO entity_versions VALUES(1352,27,'20210309093358','03/30/2021',' '); +INSERT INTO entity_versions VALUES(1353,27,'20210219171521','03/30/2021',' '); +INSERT INTO entity_versions VALUES(1354,27,'20210129162733','02/28/2021',' '); +INSERT INTO entity_versions VALUES(1355,27,'20210125155346','01/30/2021',' '); +INSERT INTO entity_versions VALUES(1356,27,'20210112001354','01/30/2021',' '); +INSERT INTO entity_versions VALUES(1357,27,'20201230192246','01/30/2021',' '); +INSERT INTO entity_versions VALUES(1358,27,'20201127104018','12/30/2020',' '); +INSERT INTO entity_versions VALUES(1359,27,'20201106153948','11/30/2020',' '); +INSERT INTO entity_versions VALUES(1360,27,'20201020140427','11/30/2020',' '); +INSERT INTO entity_versions VALUES(1361,27,'20201012185603','10/30/2020',' '); +INSERT INTO entity_versions VALUES(1362,27,'20201005173827','10/30/2020',' '); +INSERT INTO entity_versions VALUES(1363,27,'20200922182722','09/30/2020',' '); +INSERT INTO entity_versions VALUES(1364,27,'20200908235050','09/30/2020',' '); +INSERT INTO entity_versions VALUES(1365,27,'20200831163517','09/30/2020',' '); +INSERT INTO entity_versions VALUES(1366,27,'20200816214709','08/30/2020',' '); +INSERT INTO entity_versions VALUES(1367,27,'20200811175306','08/30/2020',' '); +INSERT INTO entity_versions VALUES(1368,27,'20200807155122','08/30/2020',' '); +INSERT INTO entity_versions VALUES(1369,27,'20200728181447','07/30/2020',' '); +INSERT INTO entity_versions VALUES(1370,27,'20200707173044','07/30/2020',' '); +INSERT INTO entity_versions VALUES(1371,27,'20200701215317','07/30/2020',' '); +INSERT INTO entity_versions VALUES(1372,27,'20200617215626','06/30/2020',' '); +INSERT INTO entity_versions VALUES(1373,27,'20200610173731','06/30/2020',' '); +INSERT INTO entity_versions VALUES(1374,27,'20200603114954','06/30/2020',' '); +INSERT INTO entity_versions VALUES(1375,27,'20200529133631','06/30/2020',' '); +INSERT INTO entity_versions VALUES(1376,27,'20200520145933','05/30/2020',' '); +INSERT INTO entity_versions VALUES(1377,27,'20200513205422','05/30/2020',' '); +INSERT INTO entity_versions VALUES(1378,27,'20200506172513','05/30/2020',' '); +INSERT INTO entity_versions VALUES(1379,27,'20200429153636','05/30/2020',' '); +INSERT INTO entity_versions VALUES(1380,27,'20200420162758','04/30/2020',' '); +INSERT INTO entity_versions VALUES(1381,27,'20200416222158','04/30/2020',' '); +INSERT INTO entity_versions VALUES(1382,27,'20200408145843','04/30/2020',' '); +INSERT INTO entity_versions VALUES(1383,27,'20200325163209','03/30/2020',' '); +INSERT INTO entity_versions VALUES(1384,27,'20200316122114','03/30/2020',' '); +INSERT INTO entity_versions VALUES(1385,27,'20200310163217','03/30/2020',' '); +INSERT INTO entity_versions VALUES(1386,27,'20200303183409','03/30/2020',' '); +INSERT INTO entity_versions VALUES(1387,27,'20200220011437','02/28/2020',' '); +INSERT INTO entity_versions VALUES(1388,27,'20200131232134','02/28/2020',' '); +INSERT INTO entity_versions VALUES(1389,27,'20200127203438','02/28/2020',' '); +INSERT INTO entity_versions VALUES(1390,27,'20200123225613','01/30/2020',' '); +INSERT INTO entity_versions VALUES(1391,27,'20200115001116','01/30/2020',' '); +INSERT INTO entity_versions VALUES(1392,27,'20191211163405','12/30/2019',' '); +INSERT INTO entity_versions VALUES(1393,27,'20191129172405','12/30/2019',' '); +INSERT INTO entity_versions VALUES(1394,27,'20191104205453','11/30/2019',' '); +INSERT INTO entity_versions VALUES(1395,27,'20191030224959','11/30/2019',' '); +INSERT INTO entity_versions VALUES(1396,27,'20191024135531','10/30/2019',' '); +INSERT INTO entity_versions VALUES(1397,27,'20191015190829','10/30/2019',' '); +INSERT INTO entity_versions VALUES(1398,27,'20191007115919','10/30/2019',' '); +INSERT INTO entity_versions VALUES(1399,27,'20191001203421','10/30/2019',' '); +INSERT INTO entity_versions VALUES(1400,27,'20190904132002','09/30/2019',' '); +INSERT INTO entity_versions VALUES(1401,27,'20190827222442','09/30/2019',' '); +INSERT INTO entity_versions VALUES(1402,27,'20190820163418','08/30/2019',' '); +INSERT INTO entity_versions VALUES(1403,27,'20190813170406','08/30/2019',' '); +INSERT INTO entity_versions VALUES(1404,27,'20190806202030','08/30/2019',' '); +INSERT INTO entity_versions VALUES(1405,27,'20190729085402','08/30/2019',' '); +INSERT INTO entity_versions VALUES(1406,27,'20190722200451','07/30/2019',' '); +INSERT INTO entity_versions VALUES(1407,27,'20190717161024','07/30/2019',' '); +INSERT INTO entity_versions VALUES(1408,27,'20190711110747','07/30/2019',' '); +INSERT INTO entity_versions VALUES(1409,27,'20190628200755','07/30/2019',' '); +INSERT INTO entity_versions VALUES(1410,27,'20190617144820','06/30/2019',' '); +INSERT INTO entity_versions VALUES(1411,27,'20190610211245','06/30/2019',' '); +INSERT INTO entity_versions VALUES(1412,27,'20190605190944','06/30/2019',' '); +INSERT INTO entity_versions VALUES(1413,27,'20190513175357','05/30/2019',' '); +INSERT INTO entity_versions VALUES(1414,27,'20190506101326','05/30/2019',' '); +INSERT INTO entity_versions VALUES(1415,27,'20190501153509','05/30/2019',' '); +INSERT INTO entity_versions VALUES(1416,27,'20190422213145','04/30/2019',' '); +INSERT INTO entity_versions VALUES(1417,27,'20190415203801','04/30/2019',' '); +INSERT INTO entity_versions VALUES(1418,27,'20190410001346','04/30/2019',' '); +INSERT INTO entity_versions VALUES(1419,27,'20190325233053','04/30/2019',' '); +INSERT INTO entity_versions VALUES(1420,27,'20190304193624','03/30/2019',' '); +INSERT INTO entity_versions VALUES(1421,27,'20190225235742','03/30/2019',' '); +INSERT INTO entity_versions VALUES(1422,27,'20190207004055','02/28/2019',' '); +INSERT INTO entity_versions VALUES(1423,27,'20190131011635','02/28/2019',' '); +INSERT INTO entity_versions VALUES(1424,27,'20190124232144','01/30/2019',' '); +INSERT INTO entity_versions VALUES(1425,27,'20190116225739','01/30/2019',' '); +INSERT INTO entity_versions VALUES(1426,27,'20181212095204','12/30/2018',' '); +INSERT INTO entity_versions VALUES(1427,27,'20181203095916','12/30/2018',' '); +INSERT INTO entity_versions VALUES(1428,27,'20181126154627','12/30/2018',' '); +INSERT INTO entity_versions VALUES(1429,27,'20181118185209','11/30/2018',' '); +INSERT INTO entity_versions VALUES(1430,27,'20181112131523','11/30/2018',' '); +INSERT INTO entity_versions VALUES(1431,27,'20181029174254','11/30/2018',' '); +INSERT INTO entity_versions VALUES(1432,27,'20181020020209','10/30/2018',' '); +INSERT INTO entity_versions VALUES(1433,27,'20181015112149','10/30/2018',' '); +INSERT INTO entity_versions VALUES(1434,27,'20181011135231','10/30/2018',' '); +INSERT INTO entity_versions VALUES(1435,27,'20181001090525','10/30/2018',' '); +INSERT INTO entity_versions VALUES(1436,27,'20180920223835','09/30/2018',' '); +INSERT INTO entity_versions VALUES(1437,27,'20180912124609','09/30/2018',' '); +INSERT INTO entity_versions VALUES(1438,27,'20180831173550','09/30/2018',' '); +INSERT INTO entity_versions VALUES(1439,27,'20180827132056','08/30/2018',' '); +INSERT INTO entity_versions VALUES(1440,27,'20180817182829','08/30/2018',' '); +INSERT INTO entity_versions VALUES(1441,27,'20180810152540','08/30/2018',' '); +INSERT INTO entity_versions VALUES(1442,27,'20180807052402','08/30/2018',' '); +INSERT INTO entity_versions VALUES(1443,27,'20180806202947','08/30/2018',' '); +INSERT INTO entity_versions VALUES(1444,27,'20180803154514','08/30/2018',' '); +INSERT INTO entity_versions VALUES(1445,27,'20180802181335','08/30/2018',' '); +INSERT INTO entity_versions VALUES(1446,27,'20180728222031','07/30/2018',' '); +INSERT INTO entity_versions VALUES(1447,27,'20180720170058','07/30/2018',' '); +INSERT INTO entity_versions VALUES(1448,27,'20180717131009','07/30/2018',' '); +INSERT INTO entity_versions VALUES(1449,27,'20180714142423','07/30/2018',' '); +INSERT INTO entity_versions VALUES(1450,27,'20180706210448','07/30/2018',' '); +INSERT INTO entity_versions VALUES(1451,27,'20180629132035','07/30/2018',' '); +INSERT INTO entity_versions VALUES(1452,27,'20180621090851','06/30/2018',' '); +INSERT INTO entity_versions VALUES(1453,27,'20180615105327','06/30/2018',' '); +INSERT INTO entity_versions VALUES(1454,27,'20180608102534','06/30/2018',' '); +INSERT INTO entity_versions VALUES(1455,27,'20180604124326','06/30/2018',' '); +INSERT INTO entity_versions VALUES(1456,27,'20180519154949','05/30/2018',' '); +INSERT INTO entity_versions VALUES(1457,27,'20180514204156','05/30/2018',' '); +INSERT INTO entity_versions VALUES(1458,27,'20180504185246','05/30/2018',' '); +INSERT INTO entity_versions VALUES(1459,27,'20180501212258','05/30/2018',' '); +INSERT INTO entity_versions VALUES(1460,27,'20180430173459','04/30/2018',' '); +INSERT INTO entity_versions VALUES(1461,27,'20180424200344','04/30/2018',' '); +INSERT INTO entity_versions VALUES(1462,27,'20180424150704','04/30/2018',' '); +INSERT INTO entity_versions VALUES(1463,27,'20180420141712','04/30/2018',' '); +INSERT INTO entity_versions VALUES(1464,27,'20180416135645','04/30/2018',' '); +INSERT INTO entity_versions VALUES(1465,27,'20180406143035','04/30/2018',' '); +INSERT INTO entity_versions VALUES(1466,27,'20180403044658','04/30/2018',' '); +INSERT INTO entity_versions VALUES(1467,27,'20180326145220','03/30/2018',' '); +INSERT INTO entity_versions VALUES(1468,27,'20180322085330','03/30/2018',' '); +INSERT INTO entity_versions VALUES(1469,27,'20180319150121','03/30/2018',' '); +INSERT INTO entity_versions VALUES(1470,249,'5','11/15/2016',' '); +INSERT INTO entity_versions VALUES(1471,249,'4.5','03/07/2016',' '); +INSERT INTO entity_versions VALUES(1472,249,'4','05/05/2015','05/08/2017'); +INSERT INTO entity_versions VALUES(1473,249,'3.5','05/27/2014','09/30/2016'); +INSERT INTO entity_versions VALUES(1474,249,'3.1','12/19/2013','06/10/2016'); +INSERT INTO entity_versions VALUES(1475,249,'3','07/17/2013','06/10/2016'); +INSERT INTO entity_versions VALUES(1476,249,'2','12/16/2012','06/10/2016'); +INSERT INTO entity_versions VALUES(1477,308,'5','06/12/1905',' '); +INSERT INTO entity_versions VALUES(1478,308,'5.01','04/15/1991',' '); +INSERT INTO entity_versions VALUES(1479,308,'5.2','02/15/1993',' '); +INSERT INTO entity_versions VALUES(1480,308,'5.2a','03/15/1993',' '); +INSERT INTO entity_versions VALUES(1481,308,'5.2b','06/25/1993',' '); +INSERT INTO entity_versions VALUES(1482,308,'5.2c','08/06/1993',' '); +INSERT INTO entity_versions VALUES(1483,308,'5.2d','03/25/1994',' '); +INSERT INTO entity_versions VALUES(1484,308,'5.2e','02/07/1995',' '); +INSERT INTO entity_versions VALUES(1485,308,'5.3','06/26/1995',' '); +INSERT INTO entity_versions VALUES(1486,308,'5.3a','05/20/1996',' '); +INSERT INTO entity_versions VALUES(1487,308,'5.3b','05/20/1997',' '); +INSERT INTO entity_versions VALUES(1488,230,'10','06/21/2017',' '); +INSERT INTO entity_versions VALUES(1489,230,'10.1','03/20/2019',' '); +INSERT INTO entity_versions VALUES(1490,230,'10.2','01/30/2019',' '); +INSERT INTO entity_versions VALUES(1491,230,'10.3','08/23/2019',' '); +INSERT INTO entity_versions VALUES(1492,230,'11','04/02/2020',' '); +INSERT INTO entity_versions VALUES(1493,230,'11.1','05/07/2020',' '); +INSERT INTO entity_versions VALUES(1494,230,'11.2','08/29/2020',' '); +INSERT INTO entity_versions VALUES(1495,230,'11.3','06/17/2021',' '); +INSERT INTO entity_versions VALUES(1496,246,' ',' ',' '); +INSERT INTO entity_versions VALUES(1497,3,'6','05/31/2017',' '); +INSERT INTO entity_versions VALUES(1498,178,'3','12/31/1992',' '); +INSERT INTO entity_versions VALUES(1499,178,'4','12/31/1994',' '); +INSERT INTO entity_versions VALUES(1500,178,'5','12/31/1995',' '); +INSERT INTO entity_versions VALUES(1501,178,'6','12/31/1998',' '); +INSERT INTO entity_versions VALUES(1502,178,'6.0.2','12/31/1999',' '); +INSERT INTO entity_versions VALUES(1503,178,'7','12/31/2000',' '); +INSERT INTO entity_versions VALUES(1504,178,'8','12/31/2001',' '); +INSERT INTO entity_versions VALUES(1505,178,'9','12/31/2003',' '); +INSERT INTO entity_versions VALUES(1506,178,'10','12/31/2006',' '); +INSERT INTO entity_versions VALUES(1507,178,'11','12/31/2008',' '); +INSERT INTO entity_versions VALUES(1508,178,'12','12/31/2010',' '); +INSERT INTO entity_versions VALUES(1509,178,'16','12/31/2015',' '); +INSERT INTO entity_versions VALUES(1510,178,'17','12/31/2021',' '); +INSERT INTO entity_versions VALUES(1511,232,'8.2.04',' ',' '); +INSERT INTO entity_versions VALUES(1512,10,'5','02/21/2017',' '); +INSERT INTO entity_versions VALUES(1513,10,'6','05/22/2017',' '); +INSERT INTO entity_versions VALUES(1514,10,'7','05/22/2017',' '); +INSERT INTO entity_versions VALUES(1515,365,'8.1','04/30/1999',' '); +INSERT INTO entity_versions VALUES(1516,365,'8.2','08/18/1999',' '); +INSERT INTO entity_versions VALUES(1517,365,'8.3','02/10/2000',' '); +INSERT INTO entity_versions VALUES(1518,365,'8.4','09/30/2002',' '); +INSERT INTO entity_versions VALUES(1519,365,'8.5','12/31/2007',' '); +INSERT INTO entity_versions VALUES(1520,365,'8.6','12/31/2012',' '); +INSERT INTO entity_versions VALUES(1521,365,'7.6','10/16/1996',' '); +INSERT INTO entity_versions VALUES(1522,365,'7.5','04/21/1996',' '); +INSERT INTO entity_versions VALUES(1523,365,'7.4','07/01/1995',' '); +INSERT INTO entity_versions VALUES(1524,145,' ',' ',' '); +INSERT INTO entity_versions VALUES(1525,7,'2.3.4','01/22/2021',' '); +INSERT INTO entity_versions VALUES(1526,7,'2.4.2','03/17/2021',' '); +INSERT INTO entity_versions VALUES(1527,7,'1.4.13',' ',' '); +INSERT INTO entity_versions VALUES(1528,7,'1.6.0',' ',' '); +INSERT INTO entity_versions VALUES(1529,7,'1.7.1',' ',' '); +INSERT INTO entity_versions VALUES(1530,7,'2.2.7',' ',' '); +INSERT INTO entity_versions VALUES(1531,7,'2.3.6',' ',' '); +INSERT INTO entity_versions VALUES(1532,7,'2.4.6',' ',' '); +INSERT INTO entity_versions VALUES(1533,7,'3.0.0',' ',' '); +INSERT INTO entity_versions VALUES(1534,60,' ',' ',' '); +INSERT INTO entity_versions VALUES(1535,12,'1.14.1','02/10/2021',' '); +INSERT INTO entity_versions VALUES(1536,12,'1.10.7','02/10/2021',' '); +INSERT INTO entity_versions VALUES(1537,12,'1.14.0','05/27/2020',' '); +INSERT INTO entity_versions VALUES(1538,12,'1.13.0','10/30/2019',' '); +INSERT INTO entity_versions VALUES(1539,12,'1.12.2','07/24/2019',' '); +INSERT INTO entity_versions VALUES(1540,12,'1.10.6','07/24/2019',' '); +INSERT INTO entity_versions VALUES(1541,12,'1.9.12','07/24/2019',' '); +INSERT INTO entity_versions VALUES(1542,12,'1.12.0','04/24/2019',' '); +INSERT INTO entity_versions VALUES(1543,12,'1.11.1','01/11/2019',' '); +INSERT INTO entity_versions VALUES(1544,12,'1.10.4','01/11/2019',' '); +INSERT INTO entity_versions VALUES(1545,12,'1.9.10','01/11/2019',' '); +INSERT INTO entity_versions VALUES(1546,12,'1.11.0','10/30/2018',' '); +INSERT INTO entity_versions VALUES(1547,12,'1.10.3','10/10/2018',' '); +INSERT INTO entity_versions VALUES(1548,12,'1.10.2','07/20/2018',' '); +INSERT INTO entity_versions VALUES(1549,12,'1.9.9','07/20/2018',' '); +INSERT INTO entity_versions VALUES(1550,12,'1.10.0','04/12/2018',' '); +INSERT INTO entity_versions VALUES(1551,12,'1.9.7','08/10/2017',' '); +INSERT INTO entity_versions VALUES(1552,12,'1.8.19','08/10/2017',' '); +INSERT INTO entity_versions VALUES(1553,12,'1.8.18','07/07/2017',' '); +INSERT INTO entity_versions VALUES(1554,12,'1.9.6','07/06/2017',' '); +INSERT INTO entity_versions VALUES(1555,12,'1.9.5','11/29/2016',' '); +INSERT INTO entity_versions VALUES(1556,12,'1.8.17','11/29/2016',' '); +INSERT INTO entity_versions VALUES(1557,12,'1.9.4','04/28/2016',' '); +INSERT INTO entity_versions VALUES(1558,12,'1.8.16','04/28/2016',' '); +INSERT INTO entity_versions VALUES(1559,12,'1.9.3','09/15/2015',' '); +INSERT INTO entity_versions VALUES(1560,12,'1.8.15','09/15/2015',' '); +INSERT INTO entity_versions VALUES(1561,12,'1.9.2','09/23/2015',' '); +INSERT INTO entity_versions VALUES(1562,12,'1.9.1','09/02/2015',' '); +INSERT INTO entity_versions VALUES(1563,12,'1.7.22','08/14/2015',' '); +INSERT INTO entity_versions VALUES(1564,12,'1.9.0','08/05/2015',' '); +INSERT INTO entity_versions VALUES(1565,12,'1.8.14','08/05/2015',' '); +INSERT INTO entity_versions VALUES(1566,12,'1.7.21','08/05/2015',' '); +INSERT INTO entity_versions VALUES(1567,12,'1.8.13','03/31/2015',' '); +INSERT INTO entity_versions VALUES(1568,12,'1.7.20','03/31/2015',' '); +INSERT INTO entity_versions VALUES(1569,12,'1.8.11','12/15/2014',' '); +INSERT INTO entity_versions VALUES(1570,12,'1.7.19','12/15/2014',' '); +INSERT INTO entity_versions VALUES(1571,12,'1.8.10','08/11/2014',' '); +INSERT INTO entity_versions VALUES(1572,12,'1.7.18','08/11/2014',' '); +INSERT INTO entity_versions VALUES(1573,12,'1.7.17','05/19/2014',' '); +INSERT INTO entity_versions VALUES(1574,12,'1.8.9','05/14/2014',' '); +INSERT INTO entity_versions VALUES(1575,12,'1.7.16','02/26/2014',' '); +INSERT INTO entity_versions VALUES(1576,12,'1.8.8','02/20/2014',' '); +INSERT INTO entity_versions VALUES(1577,12,'1.8.5','11/25/2013',' '); +INSERT INTO entity_versions VALUES(1578,12,'1.7.14','11/25/2013',' '); +INSERT INTO entity_versions VALUES(1579,12,'1.8.4','10/29/2013',' '); +INSERT INTO entity_versions VALUES(1580,12,'1.8.3','08/30/2013',' '); +INSERT INTO entity_versions VALUES(1581,12,'1.7.13','08/30/2013',' '); +INSERT INTO entity_versions VALUES(1582,12,'1.8.1','07/24/2013',' '); +INSERT INTO entity_versions VALUES(1583,12,'1.7.11','07/24/2013',' '); +INSERT INTO entity_versions VALUES(1584,12,'1.8.0','06/18/2013',' '); +INSERT INTO entity_versions VALUES(1585,12,'1.7.10','05/31/2013',' '); +INSERT INTO entity_versions VALUES(1586,12,'1.6.23','05/31/2013',' '); +INSERT INTO entity_versions VALUES(1587,12,'1.7.9','04/04/2013',' '); +INSERT INTO entity_versions VALUES(1588,12,'1.6.21','04/04/2013',' '); +INSERT INTO entity_versions VALUES(1589,12,'1.6.20','01/08/2013',' '); +INSERT INTO entity_versions VALUES(1590,12,'1.7.8','12/20/2012',' '); +INSERT INTO entity_versions VALUES(1591,12,'1.7.7','10/09/2012',' '); +INSERT INTO entity_versions VALUES(1592,12,'1.6.19','09/21/2012',' '); +INSERT INTO entity_versions VALUES(1593,12,'1.7.6','08/15/2012',' '); +INSERT INTO entity_versions VALUES(1594,12,'1.7.5','05/17/2012',' '); +INSERT INTO entity_versions VALUES(1595,12,'1.7.4','03/08/2012',' '); +INSERT INTO entity_versions VALUES(1596,12,'1.7.3','02/13/2012',' '); +INSERT INTO entity_versions VALUES(1597,12,'1.7.2','12/05/2011',' '); +INSERT INTO entity_versions VALUES(1598,12,'1.7.1','10/23/2011',' '); +INSERT INTO entity_versions VALUES(1599,12,'1.7.0','10/11/2011',' '); +INSERT INTO entity_versions VALUES(1600,12,'1.6.18','04/12/2012',' '); +INSERT INTO entity_versions VALUES(1601,12,'1.6.17','06/01/2011',' '); +INSERT INTO entity_versions VALUES(1602,12,'1.6.16','03/03/2011',' '); +INSERT INTO entity_versions VALUES(1603,12,'1.5.9','12/22/2010',' '); +INSERT INTO entity_versions VALUES(1604,12,'1.6.15','11/24/2010',' '); +INSERT INTO entity_versions VALUES(1605,12,'1.6.13','10/01/2010',' '); +INSERT INTO entity_versions VALUES(1606,12,'1.6.12','06/21/2010',' '); +INSERT INTO entity_versions VALUES(1607,12,'1.6.11','04/16/2010',' '); +INSERT INTO entity_versions VALUES(1608,12,'1.6.9','01/25/2010',' '); +INSERT INTO entity_versions VALUES(1609,12,'1.6.6','10/22/2009',' '); +INSERT INTO entity_versions VALUES(1610,12,'1.6.5','08/22/2009',' '); +INSERT INTO entity_versions VALUES(1611,12,'1.6.4','08/06/2009',' '); +INSERT INTO entity_versions VALUES(1612,12,'1.6.3','06/22/2009',' '); +INSERT INTO entity_versions VALUES(1613,12,'1.6.2','05/11/2009',' '); +INSERT INTO entity_versions VALUES(1614,12,'1.6.1','04/09/2009',' '); +INSERT INTO entity_versions VALUES(1615,12,'1.6.0','03/20/2009',' '); +INSERT INTO entity_versions VALUES(1616,12,'1.5.7','08/06/2009',' '); +INSERT INTO entity_versions VALUES(1617,12,'1.5.6','02/26/2009',' '); +INSERT INTO entity_versions VALUES(1618,12,'1.5.5','12/22/2008',' '); +INSERT INTO entity_versions VALUES(1619,12,'1.5.4','10/24/2008',' '); +INSERT INTO entity_versions VALUES(1620,12,'1.5.3','10/10/2008',' '); +INSERT INTO entity_versions VALUES(1621,12,'1.5.2','08/30/2008',' '); +INSERT INTO entity_versions VALUES(1622,12,'1.5.1','07/26/2008',' '); +INSERT INTO entity_versions VALUES(1623,12,'1.5.0','06/19/2008',' '); +INSERT INTO entity_versions VALUES(1624,12,'1.4.6','12/20/2007',' '); +INSERT INTO entity_versions VALUES(1625,12,'1.4.5','08/28/2007',' '); +INSERT INTO entity_versions VALUES(1626,12,'1.4.4','06/08/2007',' '); +INSERT INTO entity_versions VALUES(1627,12,'1.4.3','01/25/2007',' '); +INSERT INTO entity_versions VALUES(1628,12,'1.4.2','11/07/2006',' '); +INSERT INTO entity_versions VALUES(1629,12,'1.4.0','09/10/2006',' '); +INSERT INTO entity_versions VALUES(1630,12,'1.3.2','05/31/2006',' '); +INSERT INTO entity_versions VALUES(1631,12,'1.3.1','04/03/2006',' '); +INSERT INTO entity_versions VALUES(1632,12,'1.3.0','01/03/2006',' '); +INSERT INTO entity_versions VALUES(1633,12,'1.2.3','08/25/2005',' '); +INSERT INTO entity_versions VALUES(1634,12,'1.2.1','07/05/2005',' '); +INSERT INTO entity_versions VALUES(1635,12,'1.2.0','05/23/2005',' '); +INSERT INTO entity_versions VALUES(1636,12,'1.1.4','04/01/2005',' '); +INSERT INTO entity_versions VALUES(1637,12,'1.1.3','01/14/2005',' '); +INSERT INTO entity_versions VALUES(1638,12,'1.1.2','12/20/2004',' '); +INSERT INTO entity_versions VALUES(1639,12,'1.1.1','10/22/2004',' '); +INSERT INTO entity_versions VALUES(1640,12,'1.0.9','10/13/2004',' '); +INSERT INTO entity_versions VALUES(1641,12,'1.1.0','09/29/2004',' '); +INSERT INTO entity_versions VALUES(1642,12,'1.0.8','09/22/2004',' '); +INSERT INTO entity_versions VALUES(1643,12,'1.0.7','09/17/2004',' '); +INSERT INTO entity_versions VALUES(1644,12,'1.0.6','07/19/2004',' '); +INSERT INTO entity_versions VALUES(1645,12,'1.0.5','06/10/2004',' '); +INSERT INTO entity_versions VALUES(1646,12,'1.0.4','05/21/2004',' '); +INSERT INTO entity_versions VALUES(1647,12,'1.0.3','05/19/2004',' '); +INSERT INTO entity_versions VALUES(1648,12,'1.0.2','04/19/2004',' '); +INSERT INTO entity_versions VALUES(1649,12,'1.0.1','03/12/2004',' '); +INSERT INTO entity_versions VALUES(1650,12,'1.0.0','02/23/2004',' '); +INSERT INTO entity_versions VALUES(1651,12,'0.37','01/25/2004',' '); +INSERT INTO entity_versions VALUES(1652,12,'0.36','01/13/2004',' '); +INSERT INTO entity_versions VALUES(1653,12,'0.35.1','12/20/2003',' '); +INSERT INTO entity_versions VALUES(1654,12,'0.35','12/19/2003',' '); +INSERT INTO entity_versions VALUES(1655,12,'0.34','12/03/2003',' '); +INSERT INTO entity_versions VALUES(1656,12,'0.33.1','11/18/2003',' '); +INSERT INTO entity_versions VALUES(1657,12,'0.33','11/13/2003',' '); +INSERT INTO entity_versions VALUES(1658,12,'0.32.1','10/23/2003',' '); +INSERT INTO entity_versions VALUES(1659,12,'0.31','10/07/2003',' '); +INSERT INTO entity_versions VALUES(1660,12,'0.30','09/24/2003',' '); +INSERT INTO entity_versions VALUES(1661,12,'0.29','09/05/2003',' '); +INSERT INTO entity_versions VALUES(1662,12,'0.28.2','09/02/2003',' '); +INSERT INTO entity_versions VALUES(1663,12,'0.28.1','08/28/2003',' '); +INSERT INTO entity_versions VALUES(1664,12,'0.28','08/27/2003',' '); +INSERT INTO entity_versions VALUES(1665,12,'0.27','08/10/2003',' '); +INSERT INTO entity_versions VALUES(1666,12,'0.26','07/23/2003',' '); +INSERT INTO entity_versions VALUES(1667,12,'0.25','07/10/2003',' '); +INSERT INTO entity_versions VALUES(1668,12,'0.24.2','06/18/2003',' '); +INSERT INTO entity_versions VALUES(1669,12,'0.24.1','06/16/2003',' '); +INSERT INTO entity_versions VALUES(1670,12,'0.24','06/15/2003',' '); +INSERT INTO entity_versions VALUES(1671,12,'0.23','05/17/2003',' '); +INSERT INTO entity_versions VALUES(1672,12,'0.22.2','05/13/2003',' '); +INSERT INTO entity_versions VALUES(1673,12,'0.22.1','05/09/2003',' '); +INSERT INTO entity_versions VALUES(1674,12,'0.22','05/07/2003',' '); +INSERT INTO entity_versions VALUES(1675,12,'0.21','04/15/2003',' '); +INSERT INTO entity_versions VALUES(1676,12,'0.20.1','03/26/2003',' '); +INSERT INTO entity_versions VALUES(1677,12,'0.20','03/20/2003',' '); +INSERT INTO entity_versions VALUES(1678,12,'0.19.1','03/12/2003',' '); +INSERT INTO entity_versions VALUES(1679,12,'0.19','03/10/2003',' '); +INSERT INTO entity_versions VALUES(1680,12,'0.18.1','02/26/2003',' '); +INSERT INTO entity_versions VALUES(1681,12,'0.18','02/19/2003',' '); +INSERT INTO entity_versions VALUES(1682,12,'0.17.1','01/22/2003',' '); +INSERT INTO entity_versions VALUES(1683,12,'0.17','01/20/2003',' '); +INSERT INTO entity_versions VALUES(1684,12,'0.16.1','01/06/2003',' '); +INSERT INTO entity_versions VALUES(1685,12,'0.16','12/03/2002',' '); +INSERT INTO entity_versions VALUES(1686,12,'0.15','11/07/2002',' '); +INSERT INTO entity_versions VALUES(1687,12,'0.14.5','10/29/2002',' '); +INSERT INTO entity_versions VALUES(1688,12,'0.14.4','10/29/2002',' '); +INSERT INTO entity_versions VALUES(1689,12,'0.14.3','09/20/2002',' '); +INSERT INTO entity_versions VALUES(1690,12,'0.14.2','08/22/2002',' '); +INSERT INTO entity_versions VALUES(1691,12,'0.14.1','08/09/2002',' '); +INSERT INTO entity_versions VALUES(1692,12,'0.13.2','06/28/2002',' '); +INSERT INTO entity_versions VALUES(1693,12,'0.13.1','06/20/2002',' '); +INSERT INTO entity_versions VALUES(1694,12,'0.13.0','06/10/2002',' '); +INSERT INTO entity_versions VALUES(1695,12,'0.12','05/03/2002',' '); +INSERT INTO entity_versions VALUES(1696,12,'0.11','04/12/2002',' '); +INSERT INTO entity_versions VALUES(1697,12,'0.10','03/08/2002',' '); +INSERT INTO entity_versions VALUES(1698,12,'0.9','02/18/2002',' '); +INSERT INTO entity_versions VALUES(1699,12,'0.8','01/14/2002',' '); +INSERT INTO entity_versions VALUES(1700,12,'0.7','12/03/2001',' '); +INSERT INTO entity_versions VALUES(1701,422,'9',' ',' '); +INSERT INTO entity_versions VALUES(1702,422,'8',' ',' '); +INSERT INTO entity_versions VALUES(1703,422,'7',' ',' '); +INSERT INTO entity_versions VALUES(1704,422,'6',' ',' '); +INSERT INTO entity_versions VALUES(1705,422,'5',' ',' '); +INSERT INTO entity_versions VALUES(1706,422,'4',' ',' '); +INSERT INTO entity_versions VALUES(1707,422,'3',' ',' '); +INSERT INTO entity_versions VALUES(1708,422,'2',' ',' '); +INSERT INTO entity_versions VALUES(1709,43,'11.5',' ',' '); +INSERT INTO entity_versions VALUES(1710,43,'11.1',' ','04/30/2022'); +INSERT INTO entity_versions VALUES(1711,43,'10.5',' ','04/30/2023'); +INSERT INTO entity_versions VALUES(1712,43,'10.1',' ','09/30/2020'); +INSERT INTO entity_versions VALUES(1713,43,'9.8',' ','04/30/2016'); +INSERT INTO entity_versions VALUES(1714,43,'9.7',' ','09/30/2020'); +INSERT INTO entity_versions VALUES(1715,43,'9.5',' ','04/30/2015'); +INSERT INTO entity_versions VALUES(1716,43,'9.1',' ','04/30/2012'); +INSERT INTO entity_versions VALUES(1717,43,'8.1',' ','04/30/2009'); +INSERT INTO entity_versions VALUES(1718,68,'10','03/27/2015',' '); +INSERT INTO entity_versions VALUES(1719,68,'9','06/28/2013',' '); +INSERT INTO entity_versions VALUES(1720,330,'12.1',' ',' '); +INSERT INTO entity_versions VALUES(1721,330,'14.1',' ',' '); +INSERT INTO entity_versions VALUES(1722,81,'9.2','07/23/2020',' '); +INSERT INTO entity_versions VALUES(1723,81,'9.1','07/27/2018',' '); +INSERT INTO entity_versions VALUES(1724,81,'IBM MQ on IBM Cloud','03/13/2018',' '); +INSERT INTO entity_versions VALUES(1725,81,'IBM MQ for HPE Nonstop 8.0','06/23/2017',' '); +INSERT INTO entity_versions VALUES(1726,81,'9.0','06/02/2016',' '); +INSERT INTO entity_versions VALUES(1727,81,'8.0','05/23/2014',' '); +INSERT INTO entity_versions VALUES(1728,81,'7.5','06/15/2012',' '); +INSERT INTO entity_versions VALUES(1729,81,'7.1','11/30/2011',' '); +INSERT INTO entity_versions VALUES(1730,81,'7.0','06/30/2008',' '); +INSERT INTO entity_versions VALUES(1731,81,'7.0','05/31/2008',' '); +INSERT INTO entity_versions VALUES(1732,81,'6.0','06/30/2005',' '); +INSERT INTO entity_versions VALUES(1733,81,'WebSphere MQ 6.0 (Distributed, iSeries)','05/31/2005',' '); +INSERT INTO entity_versions VALUES(1734,81,'5.3','06/30/2002',' '); +INSERT INTO entity_versions VALUES(1735,81,'WebSphere MQ 5.3 (Distributed, iSeries)','11/30/2002',' '); +INSERT INTO entity_versions VALUES(1736,81,'MQSeries 5.2 (Distributed)','12/31/2000',' '); +INSERT INTO entity_versions VALUES(1737,81,'5.2','11/30/2000',' '); +INSERT INTO entity_versions VALUES(1738,81,'5.1','08/31/2000',' '); +INSERT INTO entity_versions VALUES(1739,81,'2.1','02/28/1999',' '); +INSERT INTO entity_versions VALUES(1740,81,'5.1','06/30/1999',' '); +INSERT INTO entity_versions VALUES(1741,81,'4.2','02/28/1998',' '); +INSERT INTO entity_versions VALUES(1742,81,'5.0','10/31/1997',' '); +INSERT INTO entity_versions VALUES(1743,81,'1.2','08/29/1997',' '); +INSERT INTO entity_versions VALUES(1744,81,'1.1.4,','06/30/1996',' '); +INSERT INTO entity_versions VALUES(1745,81,'2.2','07/31/1996',' '); +INSERT INTO entity_versions VALUES(1746,81,'2.0','06/30/1996',' '); +INSERT INTO entity_versions VALUES(1747,81,'2.2','12/31/1995',' '); +INSERT INTO entity_versions VALUES(1748,81,'1.1.3','05/31/1995',' '); +INSERT INTO entity_versions VALUES(1749,81,'2.0','02/28/1995',' '); +INSERT INTO entity_versions VALUES(1750,81,'3','12/31/1994',' '); +INSERT INTO entity_versions VALUES(1751,81,'3.0','07/01/1994',' '); +INSERT INTO entity_versions VALUES(1752,81,'1.1.2','06/01/1994',' '); +INSERT INTO entity_versions VALUES(1753,81,'2.3','04/30/1994',' '); +INSERT INTO entity_versions VALUES(1754,81,'1.1.1','12/31/1993',' '); +INSERT INTO entity_versions VALUES(1755,127,'9.5.3',' ',' '); +INSERT INTO entity_versions VALUES(1756,169,' ',' ',' '); +INSERT INTO entity_versions VALUES(1757,36,' ',' ',' '); +INSERT INTO entity_versions VALUES(1758,225,'3','12/31/1986',' '); +INSERT INTO entity_versions VALUES(1759,225,'4','12/31/1988',' '); +INSERT INTO entity_versions VALUES(1760,225,'5','12/31/1990',' '); +INSERT INTO entity_versions VALUES(1761,225,'6','12/31/1994',' '); +INSERT INTO entity_versions VALUES(1762,225,'7','12/31/1997',' '); +INSERT INTO entity_versions VALUES(1763,225,'8','12/31/2001',' '); +INSERT INTO entity_versions VALUES(1764,225,'9','12/31/2006',' '); +INSERT INTO entity_versions VALUES(1765,225,'9.4','12/31/2010',' '); +INSERT INTO entity_versions VALUES(1766,225,'9.5','12/31/2011',' '); +INSERT INTO entity_versions VALUES(1767,225,'9.6','12/31/2012',' '); +INSERT INTO entity_versions VALUES(1768,225,'9.7','12/31/2015',' '); +INSERT INTO entity_versions VALUES(1769,225,'10','12/31/2015',' '); +INSERT INTO entity_versions VALUES(1770,225,'10.4','12/31/2021',' '); +INSERT INTO entity_versions VALUES(1771,219,'8.5.0','12/31/2019',' '); +INSERT INTO entity_versions VALUES(1772,128,'2.5.0','10/31/2020',' '); +INSERT INTO entity_versions VALUES(1773,128,'2.5.1','10/31/2020',' '); +INSERT INTO entity_versions VALUES(1774,128,'2.5.2','10/31/2020',' '); +INSERT INTO entity_versions VALUES(1775,128,'2.5.3','10/31/2020',' '); +INSERT INTO entity_versions VALUES(1776,128,'2.4.0','12/26/2016','05/31/2022'); +INSERT INTO entity_versions VALUES(1777,128,'2.4.1','12/26/2016','05/31/2022'); +INSERT INTO entity_versions VALUES(1778,128,'2.4.2','12/26/2016','05/31/2022'); +INSERT INTO entity_versions VALUES(1779,128,'2.4.3','12/26/2016','05/31/2022'); +INSERT INTO entity_versions VALUES(1780,128,'2.4.4','12/26/2016','05/31/2022'); +INSERT INTO entity_versions VALUES(1781,128,'2.4.5','12/26/2016','05/31/2022'); +INSERT INTO entity_versions VALUES(1782,128,'2.4.6','12/26/2016','05/31/2022'); +INSERT INTO entity_versions VALUES(1783,128,'2.4.7','12/26/2016','05/31/2022'); +INSERT INTO entity_versions VALUES(1784,128,'2.4.8','12/26/2016','05/31/2022'); +INSERT INTO entity_versions VALUES(1785,128,'2.4.9','12/26/2016','05/31/2022'); +INSERT INTO entity_versions VALUES(1786,128,'2.4.10','12/26/2016','05/31/2022'); +INSERT INTO entity_versions VALUES(1787,128,'2.4.11','12/26/2016','05/31/2022'); +INSERT INTO entity_versions VALUES(1788,128,'2.3.0','02/28/2013','06/30/2021'); +INSERT INTO entity_versions VALUES(1789,128,'2.3.1','02/28/2013','06/30/2021'); +INSERT INTO entity_versions VALUES(1790,128,'2.3.2','02/28/2013','06/30/2021'); +INSERT INTO entity_versions VALUES(1791,128,'2.3.3','02/28/2013','06/30/2021'); +INSERT INTO entity_versions VALUES(1792,128,'2.3.4','02/28/2013','06/30/2021'); +INSERT INTO entity_versions VALUES(1793,128,'2.3.5','02/28/2013','06/30/2021'); +INSERT INTO entity_versions VALUES(1794,128,'2.3.6','02/28/2013','06/30/2021'); +INSERT INTO entity_versions VALUES(1795,128,'2.3.7','02/28/2013','06/30/2021'); +INSERT INTO entity_versions VALUES(1796,128,'2.3.8','02/28/2013','06/30/2021'); +INSERT INTO entity_versions VALUES(1797,128,'2.3.9','02/28/2013','06/30/2021'); +INSERT INTO entity_versions VALUES(1798,128,'2.3.10','02/28/2013','06/30/2021'); +INSERT INTO entity_versions VALUES(1799,128,'2.3.11','02/28/2013','06/30/2021'); +INSERT INTO entity_versions VALUES(1800,128,'2.3.12','02/28/2013','06/30/2021'); +INSERT INTO entity_versions VALUES(1801,128,'2.3.13','02/28/2013','06/30/2021'); +INSERT INTO entity_versions VALUES(1802,128,'2.3.14','02/28/2013','06/30/2021'); +INSERT INTO entity_versions VALUES(1803,128,'2.3.15','02/28/2013','06/30/2021'); +INSERT INTO entity_versions VALUES(1804,128,'2.3.16','02/28/2013','06/30/2021'); +INSERT INTO entity_versions VALUES(1805,128,'2.3.17','02/28/2013','06/30/2021'); +INSERT INTO entity_versions VALUES(1806,128,'2.3.18','02/28/2013','06/30/2021'); +INSERT INTO entity_versions VALUES(1807,128,'2.2.0','04/21/2011','11/30/2015'); +INSERT INTO entity_versions VALUES(1808,128,'2.2.1','04/21/2011','11/30/2015'); +INSERT INTO entity_versions VALUES(1809,128,'2.2.2','04/21/2011','11/30/2015'); +INSERT INTO entity_versions VALUES(1810,128,'2.2.3','04/21/2011','11/30/2015'); +INSERT INTO entity_versions VALUES(1811,128,'2.1.0','12/11/2009','11/30/2011'); +INSERT INTO entity_versions VALUES(1812,128,'2.1.1','12/11/2009','11/30/2011'); +INSERT INTO entity_versions VALUES(1813,128,'2.1.2','12/11/2009','11/30/2011'); +INSERT INTO entity_versions VALUES(1814,128,'2.1.3','12/11/2009','11/30/2011'); +INSERT INTO entity_versions VALUES(1815,128,'2.1.4','12/11/2009','11/30/2011'); +INSERT INTO entity_versions VALUES(1816,215,'15','03/31/2014',' '); +INSERT INTO entity_versions VALUES(1817,215,'16','11/30/2016',' '); +INSERT INTO entity_versions VALUES(1818,117,'1','11/09/2006',' '); +INSERT INTO entity_versions VALUES(1819,117,'1.5','11/30/2005',' '); +INSERT INTO entity_versions VALUES(1820,117,'2','10/24/2006',' '); +INSERT INTO entity_versions VALUES(1821,117,'3','06/17/2008',' '); +INSERT INTO entity_versions VALUES(1822,117,'3.5','06/30/2009',' '); +INSERT INTO entity_versions VALUES(1823,117,'3.6','01/21/2010',' '); +INSERT INTO entity_versions VALUES(1824,117,'4','10/13/2006',' '); +INSERT INTO entity_versions VALUES(1825,146,'1','03/31/2006',' '); +INSERT INTO entity_versions VALUES(1826,146,'1.1','12/31/2006',' '); +INSERT INTO entity_versions VALUES(1827,146,'1.2.1','08/31/2007',' '); +INSERT INTO entity_versions VALUES(1828,146,'1.5','04/30/2008',' '); +INSERT INTO entity_versions VALUES(1829,146,'1.5.1','06/30/2008',' '); +INSERT INTO entity_versions VALUES(1830,146,'1.5.3','12/31/2008',' '); +INSERT INTO entity_versions VALUES(1831,146,'1.5.4','03/31/2009',' '); +INSERT INTO entity_versions VALUES(1832,146,'1.5.5','07/31/2009',' '); +INSERT INTO entity_versions VALUES(1833,146,'2.1','12/31/2009',' '); +INSERT INTO entity_versions VALUES(1834,146,'3','03/31/2011',' '); +INSERT INTO entity_versions VALUES(1835,146,'3.1','02/28/2012',' '); +INSERT INTO entity_versions VALUES(1836,146,'3.2','08/31/2012',' '); +INSERT INTO entity_versions VALUES(1837,146,'4','12/31/2013',' '); +INSERT INTO entity_versions VALUES(1838,146,'4.0.1','02/28/2014',' '); +INSERT INTO entity_versions VALUES(1839,146,'4.0.2','05/31/2014',' '); +INSERT INTO entity_versions VALUES(1840,146,'4.0.3','09/30/2014',' '); +INSERT INTO entity_versions VALUES(1841,146,'4.1.1','06/30/2015',' '); +INSERT INTO entity_versions VALUES(1842,146,'4.1.2','10/31/2015',' '); +INSERT INTO entity_versions VALUES(1843,146,'4.1.3','12/31/2015',' '); +INSERT INTO entity_versions VALUES(1844,146,'4.1.5','09/30/2016',' '); +INSERT INTO entity_versions VALUES(1845,146,'4.2.0','04/30/2017',' '); +INSERT INTO entity_versions VALUES(1846,146,'17.2','07/31/2017',' '); +INSERT INTO entity_versions VALUES(1847,146,'17.4','12/31/2017',' '); +INSERT INTO entity_versions VALUES(1848,146,'18.1','04/30/2018',' '); +INSERT INTO entity_versions VALUES(1849,146,'18.2','07/31/2018',' '); +INSERT INTO entity_versions VALUES(1850,146,'18.3','10/31/2018',' '); +INSERT INTO entity_versions VALUES(1851,146,'18.4','01/31/2019',' '); +INSERT INTO entity_versions VALUES(1852,146,'19.1','04/30/2019',' '); +INSERT INTO entity_versions VALUES(1853,146,'19.2','08/31/2019',' '); +INSERT INTO entity_versions VALUES(1854,146,'19.4','12/31/2019',' '); +INSERT INTO entity_versions VALUES(1855,146,'20.2','06/30/2020',' '); +INSERT INTO entity_versions VALUES(1856,146,'20.4','01/31/2021',' '); +INSERT INTO entity_versions VALUES(1857,146,'20.4.1','02/28/2021',' '); +INSERT INTO entity_versions VALUES(1858,146,'21.2','08/31/2021',' '); +INSERT INTO entity_versions VALUES(1859,241,'2.16.0','11/23/2018',' '); +INSERT INTO entity_versions VALUES(1860,241,'2.15.2','01/28/2018',' '); +INSERT INTO entity_versions VALUES(1861,241,'2.14.0','02/02/2013',' '); +INSERT INTO entity_versions VALUES(1862,241,'2.13.20','10/20/2013',' '); +INSERT INTO entity_versions VALUES(1863,241,'2.12.0','03/05/2009',' '); +INSERT INTO entity_versions VALUES(1864,241,'2.11.1','07/11/2008',' '); +INSERT INTO entity_versions VALUES(1865,241,'2.9.1','04/23/2008',' '); +INSERT INTO entity_versions VALUES(1866,241,'2.8','03/04/2008',' '); +INSERT INTO entity_versions VALUES(1867,241,'2.7.1','11/16/2006',' '); +INSERT INTO entity_versions VALUES(1868,241,' ',' ',' '); +INSERT INTO entity_versions VALUES(1869,115,' ',' ',' '); +INSERT INTO entity_versions VALUES(1870,86,' ','12/31/2008',' '); +INSERT INTO entity_versions VALUES(1871,4,'1','06/15/1993',' '); +INSERT INTO entity_versions VALUES(1872,4,'2','09/01/1994',' '); +INSERT INTO entity_versions VALUES(1873,4,'3','11/01/1996',' '); +INSERT INTO entity_versions VALUES(1874,4,'4','04/01/1999',' '); +INSERT INTO entity_versions VALUES(1875,4,'5','05/01/2001',' '); +INSERT INTO entity_versions VALUES(1876,4,'6','07/01/2003',' '); +INSERT INTO entity_versions VALUES(1877,4,'7','12/28/2004',' '); +INSERT INTO entity_versions VALUES(1878,4,'8','11/03/2006',' '); +INSERT INTO entity_versions VALUES(1879,4,'9','06/02/2008',' '); +INSERT INTO entity_versions VALUES(1880,4,'10','11/15/2010',' '); +INSERT INTO entity_versions VALUES(1881,4,'11','10/15/2012',' '); +INSERT INTO entity_versions VALUES(1882,4,'2015','04/06/2015',' '); +INSERT INTO entity_versions VALUES(1883,4,'2017','06/06/2017',' '); +INSERT INTO entity_versions VALUES(1884,4,'2020','06/01/2020',' '); +INSERT INTO entity_versions VALUES(1885,101,'1.5','12/31/2000',' '); +INSERT INTO entity_versions VALUES(1886,101,'2012','09/30/2011',' '); +INSERT INTO entity_versions VALUES(1887,101,'7 ','02/28/2016',' '); +INSERT INTO entity_versions VALUES(1888,101,'7.0.4.17','05/27/2016',' '); +INSERT INTO entity_versions VALUES(1889,88,'2.8','09/30/2020',' '); +INSERT INTO entity_versions VALUES(1890,88,'2.81','10/31/2020',' '); +INSERT INTO entity_versions VALUES(1891,125,'20.03','03/31/2020',' '); +INSERT INTO entity_versions VALUES(1892,125,'21.05','05/31/2021',' '); +INSERT INTO entity_versions VALUES(1893,234,'8.6',' ',' '); +INSERT INTO entity_versions VALUES(1894,234,'8.5.1','05/22/2020',' '); +INSERT INTO entity_versions VALUES(1895,231,'7.0.0','04/02/2020',' '); +INSERT INTO entity_versions VALUES(1896,231,'6.7','04/17/2018',' '); +INSERT INTO entity_versions VALUES(1897,231,'6.5','11/15/2016',' '); +INSERT INTO entity_versions VALUES(1898,231,'6','03/12/2015',' '); +INSERT INTO entity_versions VALUES(1899,231,'5.5','09/22/2013',' '); +INSERT INTO entity_versions VALUES(1900,231,'5','08/24/2011',' '); +INSERT INTO entity_versions VALUES(1901,56,'5','09/30/2017',' '); +INSERT INTO entity_versions VALUES(1902,56,'6','09/30/2019',' '); +INSERT INTO entity_versions VALUES(1903,57,'1','04/30/2006',' '); +INSERT INTO entity_versions VALUES(1904,57,'2.7.7','05/31/2018',' '); +INSERT INTO entity_versions VALUES(1905,57,'2.8.5','09/15/2018',' '); +INSERT INTO entity_versions VALUES(1906,57,'2.9.2','11/09/2018',' '); +INSERT INTO entity_versions VALUES(1907,57,'2.10.1','09/21/2020',' '); +INSERT INTO entity_versions VALUES(1908,57,'3.1.4','08/03/2020',' '); +INSERT INTO entity_versions VALUES(1909,57,'3.2.2','01/09/2021',' '); +INSERT INTO entity_versions VALUES(1910,57,'3.3.1','06/15/2021',' '); +INSERT INTO entity_versions VALUES(1911,124,'3.29.1','12/24/2020',' '); +INSERT INTO entity_versions VALUES(1912,124,'3.29','12/04/2020',' '); +INSERT INTO entity_versions VALUES(1913,124,'3.28.1','10/19/2020',' '); +INSERT INTO entity_versions VALUES(1914,124,'3.28','10/01/2020',' '); +INSERT INTO entity_versions VALUES(1915,124,'3.27','09/03/2020',' '); +INSERT INTO entity_versions VALUES(1916,124,'3.26.1','08/12/2020',' '); +INSERT INTO entity_versions VALUES(1917,124,'3.26','08/10/2020',' '); +INSERT INTO entity_versions VALUES(1918,124,'3.25.1','07/29/2020',' '); +INSERT INTO entity_versions VALUES(1919,124,'3.25','07/13/2020',' '); +INSERT INTO entity_versions VALUES(1920,124,'3.24','06/08/2020',' '); +INSERT INTO entity_versions VALUES(1921,124,'3.23','05/05/2020',' '); +INSERT INTO entity_versions VALUES(1922,124,'3.22.1','04/16/2020',' '); +INSERT INTO entity_versions VALUES(1923,124,'3.22.0','03/27/2020',' '); +INSERT INTO entity_versions VALUES(1924,124,'3',' ',' '); +INSERT INTO entity_versions VALUES(1925,188,'6','10/01/2013','10/22/2019'); +INSERT INTO entity_versions VALUES(1926,188,'6.1','05/06/2014','10/22/2019'); +INSERT INTO entity_versions VALUES(1927,188,'6.2','10/07/2014','10/22/2019'); +INSERT INTO entity_versions VALUES(1928,188,'6.3','09/22/2015','10/22/2019'); +INSERT INTO entity_versions VALUES(1929,188,'6.4','04/05/2016','10/22/2019'); +INSERT INTO entity_versions VALUES(1930,188,'6.5','09/27/2016','10/22/2019'); +INSERT INTO entity_versions VALUES(1931,188,'6.6','05/02/2017','01/31/2020'); +INSERT INTO entity_versions VALUES(1932,188,'7','09/26/2017','01/31/2020'); +INSERT INTO entity_versions VALUES(1933,188,'7.1','04/24/2018','10/31/2020'); +INSERT INTO entity_versions VALUES(1934,188,'7.2','10/02/2018','04/30/2021'); +INSERT INTO entity_versions VALUES(1935,188,'7.3','06/04/2019','10/22/2021'); +INSERT INTO entity_versions VALUES(1936,188,'8','10/22/2019','10/22/2021'); +INSERT INTO entity_versions VALUES(1937,188,'8.1','10/19/2020','10/19/2022'); +INSERT INTO entity_versions VALUES(1938,188,'8.2','05/12/2021','05/12/2023'); +INSERT INTO entity_versions VALUES(1939,151,'7','12/31/1997',' '); +INSERT INTO entity_versions VALUES(1940,151,'7.5','12/31/1998',' '); +INSERT INTO entity_versions VALUES(1941,151,'9','12/31/2006',' '); +INSERT INTO entity_versions VALUES(1942,151,'9.1','12/31/2009',' '); +INSERT INTO entity_versions VALUES(1943,151,'9.2','12/31/2013',' '); +INSERT INTO entity_versions VALUES(1944,84,'12.1.0',' ',' '); +INSERT INTO entity_versions VALUES(1945,84,'13.1.0',' ',' '); +INSERT INTO entity_versions VALUES(1946,84,'14.1.0',' ',' '); +INSERT INTO entity_versions VALUES(1947,84,'15.1.0',' ',' '); +INSERT INTO entity_versions VALUES(1948,84,'15.2.0',' ',' '); +INSERT INTO entity_versions VALUES(1949,603,'2013','08/31/2013',' '); +INSERT INTO entity_versions VALUES(1950,603,'2016','04/30/2016',' '); +INSERT INTO entity_versions VALUES(1951,603,'2019',' ',' '); +INSERT INTO entity_versions VALUES(1952,193,' ',' ',' '); +INSERT INTO entity_versions VALUES(1953,6,'5.16.3','08/17/2021',' '); +INSERT INTO entity_versions VALUES(1954,6,'5.16.2','04/28/2021',' '); +INSERT INTO entity_versions VALUES(1955,6,'5.16.1','01/20/2021',' '); +INSERT INTO entity_versions VALUES(1956,6,'5.16.0',' ',' '); +INSERT INTO entity_versions VALUES(1957,6,'5.15.15','04/28/2021',' '); +INSERT INTO entity_versions VALUES(1958,6,'5.15.14','12/09/2020',' '); +INSERT INTO entity_versions VALUES(1959,6,'5.15.13',' ',' '); +INSERT INTO entity_versions VALUES(1960,6,'5.15.12',' ',' '); +INSERT INTO entity_versions VALUES(1961,6,'5.15.11',' ',' '); +INSERT INTO entity_versions VALUES(1962,6,'5.15.10',' ',' '); +INSERT INTO entity_versions VALUES(1963,6,'5.15.9',' ',' '); +INSERT INTO entity_versions VALUES(1964,6,'5.15.8',' ',' '); +INSERT INTO entity_versions VALUES(1965,6,'5.15.7',' ',' '); +INSERT INTO entity_versions VALUES(1966,6,'5.15.6',' ',' '); +INSERT INTO entity_versions VALUES(1967,6,'5.15.5',' ',' '); +INSERT INTO entity_versions VALUES(1968,6,'5.15.4',' ',' '); +INSERT INTO entity_versions VALUES(1969,6,'5.15.3',' ',' '); +INSERT INTO entity_versions VALUES(1970,6,'5.15.2',' ',' '); +INSERT INTO entity_versions VALUES(1971,6,'5.15.1',' ',' '); +INSERT INTO entity_versions VALUES(1972,6,'5.15.0',' ',' '); +INSERT INTO entity_versions VALUES(1973,6,'5.14.5',' ',' '); +INSERT INTO entity_versions VALUES(1974,6,'5.14.4',' ',' '); +INSERT INTO entity_versions VALUES(1975,6,'5.14.3',' ',' '); +INSERT INTO entity_versions VALUES(1976,6,'5.14.2',' ',' '); +INSERT INTO entity_versions VALUES(1977,6,'5.14.1',' ',' '); +INSERT INTO entity_versions VALUES(1978,6,'5.14.0',' ',' '); +INSERT INTO entity_versions VALUES(1979,6,'5.13.4',' ',' '); +INSERT INTO entity_versions VALUES(1980,6,'5.13.3',' ',' '); +INSERT INTO entity_versions VALUES(1981,6,'5.13.2',' ',' '); +INSERT INTO entity_versions VALUES(1982,6,'5.13.1',' ',' '); +INSERT INTO entity_versions VALUES(1983,6,'5.13.0',' ',' '); +INSERT INTO entity_versions VALUES(1984,6,'5.12.2',' ',' '); +INSERT INTO entity_versions VALUES(1985,6,'5.12.1',' ',' '); +INSERT INTO entity_versions VALUES(1986,6,'5.12.0',' ',' '); +INSERT INTO entity_versions VALUES(1987,6,'5.11.3',' ',' '); +INSERT INTO entity_versions VALUES(1988,6,'5.11.2',' ',' '); +INSERT INTO entity_versions VALUES(1989,6,'5.11.1',' ',' '); +INSERT INTO entity_versions VALUES(1990,6,'5.11.0',' ',' '); +INSERT INTO entity_versions VALUES(1991,6,'5.10.2',' ',' '); +INSERT INTO entity_versions VALUES(1992,6,'5.10.1',' ',' '); +INSERT INTO entity_versions VALUES(1993,6,'5.10.0',' ',' '); +INSERT INTO entity_versions VALUES(1994,6,'5.9.1',' ',' '); +INSERT INTO entity_versions VALUES(1995,6,'5.9.0',' ',' '); +INSERT INTO entity_versions VALUES(1996,6,'5.8.0',' ',' '); +INSERT INTO entity_versions VALUES(1997,6,'5.7.0',' ',' '); +INSERT INTO entity_versions VALUES(1998,6,'5.6.0',' ',' '); +INSERT INTO entity_versions VALUES(1999,6,'5.5.1',' ',' '); +INSERT INTO entity_versions VALUES(2000,6,'5.5.0',' ',' '); +INSERT INTO entity_versions VALUES(2001,6,'5.4.3',' ',' '); +INSERT INTO entity_versions VALUES(2002,6,'5.4.2',' ',' '); +INSERT INTO entity_versions VALUES(2003,6,'5.4.1',' ',' '); +INSERT INTO entity_versions VALUES(2004,6,'5.4.0',' ',' '); +INSERT INTO entity_versions VALUES(2005,6,'5.3.2',' ',' '); +INSERT INTO entity_versions VALUES(2006,6,'5.3.1',' ',' '); +INSERT INTO entity_versions VALUES(2007,6,'5.3.0',' ',' '); +INSERT INTO entity_versions VALUES(2008,6,'5.2.0',' ',' '); +INSERT INTO entity_versions VALUES(2009,6,'5.1.0',' ',' '); +INSERT INTO entity_versions VALUES(2010,6,'5.0.0',' ',' '); +INSERT INTO entity_versions VALUES(2011,240,'10',' ',' '); +INSERT INTO entity_versions VALUES(2012,240,'9.2',' ',' '); +INSERT INTO entity_versions VALUES(2013,248,'0',' ',' '); +INSERT INTO entity_versions VALUES(2014,248,'1',' ',' '); +INSERT INTO entity_versions VALUES(2015,248,'2',' ',' '); +INSERT INTO entity_versions VALUES(2016,248,'3',' ',' '); +INSERT INTO entity_versions VALUES(2017,248,'4',' ',' '); +INSERT INTO entity_versions VALUES(2018,79,'9.2',' ',' '); +INSERT INTO entity_versions VALUES(2019,79,'9.1',' ',' '); +INSERT INTO entity_versions VALUES(2020,79,'8.6',' ',' '); +INSERT INTO entity_versions VALUES(2021,83,'8.2',' ',' '); +INSERT INTO entity_versions VALUES(2022,83,'8.3',' ',' '); +INSERT INTO entity_versions VALUES(2023,83,'9',' ',' '); +INSERT INTO entity_versions VALUES(2024,83,'10',' ',' '); +INSERT INTO entity_versions VALUES(2025,157,'14','09/30/2021',' '); +INSERT INTO entity_versions VALUES(2026,157,'13','09/24/2020',' '); +INSERT INTO entity_versions VALUES(2027,157,'12','10/03/2019',' '); +INSERT INTO entity_versions VALUES(2028,157,'11','10/18/2018',' '); +INSERT INTO entity_versions VALUES(2029,157,'10','10/05/2017',' '); +INSERT INTO entity_versions VALUES(2030,157,'9.6','09/29/2016',' '); +INSERT INTO entity_versions VALUES(2031,157,'9.5','01/07/2016',' '); +INSERT INTO entity_versions VALUES(2032,157,'9.4','12/18/2014',' '); +INSERT INTO entity_versions VALUES(2033,157,'9.3','09/09/2013',' '); +INSERT INTO entity_versions VALUES(2034,157,'9.2','09/10/2012',' '); +INSERT INTO entity_versions VALUES(2035,157,'9.1','09/12/2011',' '); +INSERT INTO entity_versions VALUES(2036,157,'9','09/20/2010',' '); +INSERT INTO entity_versions VALUES(2037,157,'8.4','07/01/2009',' '); +INSERT INTO entity_versions VALUES(2038,157,'8.3','02/04/2008',' '); +INSERT INTO entity_versions VALUES(2039,157,'8.2','12/05/2006',' '); +INSERT INTO entity_versions VALUES(2040,157,'8.1','11/08/2005',' '); +INSERT INTO entity_versions VALUES(2041,157,'8','01/19/2005',' '); +INSERT INTO entity_versions VALUES(2042,157,'7.4','11/17/2003',' '); +INSERT INTO entity_versions VALUES(2043,157,'7.3','11/27/2002',' '); +INSERT INTO entity_versions VALUES(2044,157,'7.2','02/04/2002',' '); +INSERT INTO entity_versions VALUES(2045,157,'7.1','04/13/2001',' '); +INSERT INTO entity_versions VALUES(2046,157,'7','05/08/2000',' '); +INSERT INTO entity_versions VALUES(2047,157,'6.5','06/09/1999',' '); +INSERT INTO entity_versions VALUES(2048,157,'6.4','10/30/1998',' '); +INSERT INTO entity_versions VALUES(2049,157,'6.3','03/01/1998',' '); +INSERT INTO entity_versions VALUES(2050,11,'1','12/31/2007',' '); +INSERT INTO entity_versions VALUES(2051,11,'1.3','12/31/2008',' '); +INSERT INTO entity_versions VALUES(2052,11,'1.4','12/31/2009',' '); +INSERT INTO entity_versions VALUES(2053,11,'4','10/31/2012',' '); +INSERT INTO entity_versions VALUES(2054,11,'5','10/31/2015',' '); +INSERT INTO entity_versions VALUES(2055,11,'6','04/30/2016',' '); +INSERT INTO entity_versions VALUES(2056,11,'7','09/30/2017',' '); +INSERT INTO entity_versions VALUES(2057,11,'8','03/31/2019',' '); +INSERT INTO entity_versions VALUES(2058,73,'08.10.05','12/18/2020',' '); +INSERT INTO entity_versions VALUES(2059,73,'08.10.02','06/19/2019',' '); +INSERT INTO entity_versions VALUES(2060,73,'08.10.00','12/07/2018',' '); +INSERT INTO entity_versions VALUES(2061,73,'08.09.02','03/23/2018','04/30/2022'); +INSERT INTO entity_versions VALUES(2062,73,'08.09.01','11/10/2017','04/30/2022'); +INSERT INTO entity_versions VALUES(2063,73,'08.09.00','03/03/2017','04/30/2022'); +INSERT INTO entity_versions VALUES(2064,73,'08.08.01','07/19/2016','04/30/2021'); +INSERT INTO entity_versions VALUES(2065,73,'08.08.00','11/27/2015','04/30/2021'); +INSERT INTO entity_versions VALUES(2066,73,'08.07.01','05/15/2015','04/30/2020'); +INSERT INTO entity_versions VALUES(2067,73,'08.07.00','12/05/2014','04/30/2020'); +INSERT INTO entity_versions VALUES(2068,73,'08.06.00','06/06/2014','09/30/2019'); +INSERT INTO entity_versions VALUES(2069,73,'08.05.01','11/29/2013','09/30/2018'); +INSERT INTO entity_versions VALUES(2070,73,'08.05.00','06/07/2013','09/30/2018'); +INSERT INTO entity_versions VALUES(2071,73,'08.00.01','12/30/2012','09/30/2017'); +INSERT INTO entity_versions VALUES(2072,73,'08.00.00','06/08/2012','09/30/2017'); +INSERT INTO entity_versions VALUES(2073,73,'07.05.00','11/18/2011','04/30/2017'); +INSERT INTO entity_versions VALUES(2074,73,'07.01.00','10/15/2010','09/30/2017'); +INSERT INTO entity_versions VALUES(2075,176,'7.6','12/31/2016',' '); +INSERT INTO entity_versions VALUES(2076,176,'7.7','12/31/2017',' '); +INSERT INTO entity_versions VALUES(2077,176,'7.8','12/31/2017',' '); +INSERT INTO entity_versions VALUES(2078,176,'7.9',' ',' '); +INSERT INTO entity_versions VALUES(2079,581,'1.0','12/31/1989',' '); +INSERT INTO entity_versions VALUES(2080,581,'1.1','12/31/1990',' '); +INSERT INTO entity_versions VALUES(2081,581,'4.2A','12/31/1990',' '); +INSERT INTO entity_versions VALUES(2082,581,'4.2B','12/31/1993',' '); +INSERT INTO entity_versions VALUES(2083,581,'4.21','12/31/1993',' '); +INSERT INTO entity_versions VALUES(2084,581,'6','12/31/1995',' '); +INSERT INTO entity_versions VALUES(2085,581,'6.5','12/31/1996',' '); +INSERT INTO entity_versions VALUES(2086,581,'7','12/31/1998',' '); +INSERT INTO entity_versions VALUES(2087,581,'8','12/31/2000','04/08/2008'); +INSERT INTO entity_versions VALUES(2088,581,'9','01/14/2006','04/12/2011'); +INSERT INTO entity_versions VALUES(2089,581,'10','11/06/2008','07/08/2014'); +INSERT INTO entity_versions VALUES(2090,581,'10.25','12/31/2010',' '); +INSERT INTO entity_versions VALUES(2091,581,'10.5','07/20/2010','07/08/2014'); +INSERT INTO entity_versions VALUES(2092,581,'11','05/20/2012','07/11/2017'); +INSERT INTO entity_versions VALUES(2093,581,'12','06/05/2014','07/09/2019'); +INSERT INTO entity_versions VALUES(2094,581,'13','06/01/2016','07/13/2021'); +INSERT INTO entity_versions VALUES(2095,581,'14','09/29/2017','10/11/2022'); +INSERT INTO entity_versions VALUES(2096,581,'15','11/04/2019','01/07/2025'); +INSERT INTO entity_versions VALUES(2097,121,'1.0','10/26/2000',' '); +INSERT INTO entity_versions VALUES(2098,121,'2.0',' ',' '); +INSERT INTO entity_versions VALUES(2099,121,'3.0',' ',' '); +INSERT INTO entity_versions VALUES(2100,121,'3.1','02/19/2007','04/12/2016'); +INSERT INTO entity_versions VALUES(2101,121,'3.5','02/19/2008','04/10/2018'); +INSERT INTO entity_versions VALUES(2102,121,'4.0','04/13/2011','07/13/2021'); +INSERT INTO entity_versions VALUES(2103,31,' ',' ',' '); +INSERT INTO entity_versions VALUES(2104,190,'3','12/31/1988',' '); +INSERT INTO entity_versions VALUES(2105,190,'4','12/31/1990',' '); +INSERT INTO entity_versions VALUES(2106,190,'4.2','12/31/1991',' '); +INSERT INTO entity_versions VALUES(2107,190,'4.8','12/31/1992',' '); +INSERT INTO entity_versions VALUES(2108,190,'4.9','12/31/1992',' '); +INSERT INTO entity_versions VALUES(2109,190,'4.9.1','12/31/1993',' '); +INSERT INTO entity_versions VALUES(2110,190,'4.9.2','12/31/1993',' '); +INSERT INTO entity_versions VALUES(2111,190,'11','12/31/1995',' '); +INSERT INTO entity_versions VALUES(2112,190,'11.5','12/31/1997',' '); +INSERT INTO entity_versions VALUES(2113,190,'11.9','12/31/1998',' '); +INSERT INTO entity_versions VALUES(2114,190,'11.9.2','12/31/1998',' '); +INSERT INTO entity_versions VALUES(2115,190,'12','12/31/1999',' '); +INSERT INTO entity_versions VALUES(2116,190,'12.5','12/31/2001',' '); +INSERT INTO entity_versions VALUES(2117,190,'12.5.0.1','12/31/2002',' '); +INSERT INTO entity_versions VALUES(2118,190,'12.5.0.3','12/31/2003',' '); +INSERT INTO entity_versions VALUES(2119,190,'12.5.2','12/31/2004',' '); +INSERT INTO entity_versions VALUES(2120,190,'12.5.3','12/31/2005',' '); +INSERT INTO entity_versions VALUES(2121,190,'12.5.4','12/31/2006',' '); +INSERT INTO entity_versions VALUES(2122,190,'15','12/31/2005',' '); +INSERT INTO entity_versions VALUES(2123,190,'15.0.1','12/31/2006',' '); +INSERT INTO entity_versions VALUES(2124,190,'15.0.2','12/31/2007',' '); +INSERT INTO entity_versions VALUES(2125,190,'15.5',' ',' '); +INSERT INTO entity_versions VALUES(2126,190,'16',' ',' '); +INSERT INTO entity_versions VALUES(2127,436,'12.04.5','07/08/2014','04/28/2017'); +INSERT INTO entity_versions VALUES(2128,436,'12.04.5','07/08/2014','04/28/2017'); +INSERT INTO entity_versions VALUES(2129,436,'12.04.5','07/08/2014','04/28/2017'); +INSERT INTO entity_versions VALUES(2130,436,'14.04.6','03/07/2019','04/30/2022'); +INSERT INTO entity_versions VALUES(2131,436,'14.04.6','03/07/2019','04/30/2022'); +INSERT INTO entity_versions VALUES(2132,436,'14.04.6','03/07/2019','04/30/2022'); +INSERT INTO entity_versions VALUES(2133,436,'16.04.7','08/18/2020','04/30/2021'); +INSERT INTO entity_versions VALUES(2134,436,'16.04.7','08/18/2020','04/30/2021'); +INSERT INTO entity_versions VALUES(2135,436,'16.04.7','08/18/2020','04/30/2021'); +INSERT INTO entity_versions VALUES(2136,436,'16.04.7','08/18/2020','04/30/2021'); +INSERT INTO entity_versions VALUES(2137,436,'18.04.5','08/13/2020','04/30/2023'); +INSERT INTO entity_versions VALUES(2138,436,'18.04.5','08/13/2020','04/30/2023'); +INSERT INTO entity_versions VALUES(2139,436,'18.04.5','08/13/2020','04/30/2023'); +INSERT INTO entity_versions VALUES(2140,436,'18.04.5','08/13/2020','04/30/2023'); +INSERT INTO entity_versions VALUES(2141,436,'20.04.1','08/06/2020','04/30/2025'); +INSERT INTO entity_versions VALUES(2142,436,'20.04.1','08/06/2020','04/30/2025'); +INSERT INTO entity_versions VALUES(2143,436,'20.04.1','08/06/2020','04/30/2025'); +INSERT INTO entity_versions VALUES(2144,436,'20.04.1','08/06/2020','04/30/2025'); +INSERT INTO entity_versions VALUES(2145,436,'20.10','10/22/2020','07/22/2021'); +INSERT INTO entity_versions VALUES(2146,436,'20.10','10/22/2020','07/22/2021'); +INSERT INTO entity_versions VALUES(2147,436,'4.1','10/26/2004','04/30/2006'); +INSERT INTO entity_versions VALUES(2148,436,'5.04','04/08/2005','10/31/2006'); +INSERT INTO entity_versions VALUES(2149,436,'5.1','10/12/2005','04/13/2007'); +INSERT INTO entity_versions VALUES(2150,436,'6.06.0','06/01/2006','07/14/2009'); +INSERT INTO entity_versions VALUES(2151,436,'6.06.1','08/10/2006',' '); +INSERT INTO entity_versions VALUES(2152,436,'6.06.2','01/21/2008',' '); +INSERT INTO entity_versions VALUES(2153,436,'6.1','10/26/2006','04/26/2008'); +INSERT INTO entity_versions VALUES(2154,436,'7.04','04/19/2007','10/19/2008'); +INSERT INTO entity_versions VALUES(2155,436,'7.1','10/18/2007','04/18/2009'); +INSERT INTO entity_versions VALUES(2156,436,'8.04.0','04/24/2008','05/12/2011'); +INSERT INTO entity_versions VALUES(2157,436,'8.04.1','07/03/2008',' '); +INSERT INTO entity_versions VALUES(2158,436,'8.04.2','01/22/2009',' '); +INSERT INTO entity_versions VALUES(2159,436,'8.04.3','07/16/2009',' '); +INSERT INTO entity_versions VALUES(2160,436,'8.04.4','01/28/2010',' '); +INSERT INTO entity_versions VALUES(2161,436,'8.1','10/30/2008','04/30/2010'); +INSERT INTO entity_versions VALUES(2162,436,'9.04','04/23/2009','10/23/2010'); +INSERT INTO entity_versions VALUES(2163,436,'9.1','08/23/2013','04/30/2011'); +INSERT INTO entity_versions VALUES(2164,436,'10.04.0','10/21/2015','05/09/2013'); +INSERT INTO entity_versions VALUES(2165,436,'10.04.1','10/21/2015',' '); +INSERT INTO entity_versions VALUES(2166,436,'10.04.2','10/21/2015',' '); +INSERT INTO entity_versions VALUES(2167,436,'10.04.3','10/21/2015',' '); +INSERT INTO entity_versions VALUES(2168,436,'10.04.4','10/21/2015',' '); +INSERT INTO entity_versions VALUES(2169,436,'10.1','08/23/2013','04/10/2012'); +INSERT INTO entity_versions VALUES(2170,436,'11.04','08/23/2013','10/28/2012'); +INSERT INTO entity_versions VALUES(2171,436,'11.1','08/23/2013','05/09/2013'); +INSERT INTO entity_versions VALUES(2172,436,'12.04.0','04/27/2018','04/28/2017'); +INSERT INTO entity_versions VALUES(2173,436,'12.04.1','04/27/2018','04/28/2017'); +INSERT INTO entity_versions VALUES(2174,436,'12.04.2','04/27/2018','08/08/2014'); +INSERT INTO entity_versions VALUES(2175,436,'12.04.3','04/27/2018','08/08/2014'); +INSERT INTO entity_versions VALUES(2176,436,'12.04.4','04/27/2018','08/08/2014'); +INSERT INTO entity_versions VALUES(2177,436,'12.1','04/22/2016','05/16/2014'); +INSERT INTO entity_versions VALUES(2178,436,'13.04','04/22/2016','01/27/2014'); +INSERT INTO entity_versions VALUES(2179,436,'13.1','04/22/2016','07/17/2014'); +INSERT INTO entity_versions VALUES(2180,436,'14.04.0','03/07/2019','04/30/2019'); +INSERT INTO entity_versions VALUES(2181,436,'14.04.1','03/07/2019','04/30/2019'); +INSERT INTO entity_versions VALUES(2182,436,'14.04.2','03/07/2019','08/31/2016'); +INSERT INTO entity_versions VALUES(2183,436,'14.04.3','03/07/2019','08/31/2016'); +INSERT INTO entity_versions VALUES(2184,436,'14.04.4','03/07/2019','08/31/2016'); +INSERT INTO entity_versions VALUES(2185,436,'14.04.5','03/07/2019','04/30/2019'); +INSERT INTO entity_versions VALUES(2186,436,'14.1','04/22/2016','07/23/2015'); +INSERT INTO entity_versions VALUES(2187,436,'15.04','04/28/2016','02/04/2016'); +INSERT INTO entity_versions VALUES(2188,436,'15.1','08/04/2016','07/28/2016'); +INSERT INTO entity_versions VALUES(2189,436,'16.04.0','08/13/2020','04/30/2021'); +INSERT INTO entity_versions VALUES(2190,436,'16.04.1','08/13/2020','04/30/2021'); +INSERT INTO entity_versions VALUES(2191,436,'16.04.2','08/13/2020','04/30/2021'); +INSERT INTO entity_versions VALUES(2192,436,'16.04.3','08/13/2020','04/30/2021'); +INSERT INTO entity_versions VALUES(2193,436,'16.04.4','08/13/2020','04/30/2021'); +INSERT INTO entity_versions VALUES(2194,436,'16.04.5','08/13/2020','04/30/2021'); +INSERT INTO entity_versions VALUES(2195,436,'16.1','07/21/2017','07/20/2017'); +INSERT INTO entity_versions VALUES(2196,436,'17.04','02/07/2018','01/13/2018'); +INSERT INTO entity_versions VALUES(2197,436,'17.1','08/02/2018','07/19/2018'); +INSERT INTO entity_versions VALUES(2198,436,'18.04.0','08/13/2020','04/30/2023'); +INSERT INTO entity_versions VALUES(2199,436,'18.04.1','08/13/2020','04/30/2023'); +INSERT INTO entity_versions VALUES(2200,436,'18.04.2','08/13/2020','04/30/2023'); +INSERT INTO entity_versions VALUES(2201,436,'18.04.3','08/13/2020','04/30/2023'); +INSERT INTO entity_versions VALUES(2202,436,'18.04.4','08/13/2020','04/30/2023'); +INSERT INTO entity_versions VALUES(2203,436,'18.1','08/08/2019','07/18/2019'); +INSERT INTO entity_versions VALUES(2204,436,'19.04','08/18/2020','04/18/2019'); +INSERT INTO entity_versions VALUES(2205,436,'19.1','08/21/2020','10/17/2019'); +INSERT INTO entity_versions VALUES(2206,436,'20.04.0','02/11/2021','04/30/2025'); +INSERT INTO entity_versions VALUES(2207,436,'20.04.1','02/11/2021','04/30/2025'); +INSERT INTO entity_versions VALUES(2208,436,'20.04','02/11/2021','04/30/2025'); +INSERT INTO entity_versions VALUES(2209,436,'20.1','10/22/2020','01/31/2022'); +INSERT INTO entity_versions VALUES(2210,434,'8.3','11/03/2020','05/31/2029'); +INSERT INTO entity_versions VALUES(2211,434,'8.2','04/28/2020','05/31/2029'); +INSERT INTO entity_versions VALUES(2212,434,'8.1','11/05/2019','05/31/2029'); +INSERT INTO entity_versions VALUES(2213,434,'8','05/07/2019','05/31/2029'); +INSERT INTO entity_versions VALUES(2214,434,'7.9','09/29/2020','06/30/2024'); +INSERT INTO entity_versions VALUES(2215,434,'7.8','03/31/2020','06/30/2024'); +INSERT INTO entity_versions VALUES(2216,434,'7.7','08/06/2019','06/30/2024'); +INSERT INTO entity_versions VALUES(2217,434,'7.6','10/30/2018','06/30/2024'); +INSERT INTO entity_versions VALUES(2218,434,'7.5','04/10/2018','06/30/2024'); +INSERT INTO entity_versions VALUES(2219,434,'7.4','07/31/2017','06/30/2024'); +INSERT INTO entity_versions VALUES(2220,434,'7.3','11/03/2016','06/30/2024'); +INSERT INTO entity_versions VALUES(2221,434,'7.2','11/19/2015','06/30/2024'); +INSERT INTO entity_versions VALUES(2222,434,'7.1','03/05/2015','06/30/2024'); +INSERT INTO entity_versions VALUES(2223,434,'7.0','06/09/2014',' '); +INSERT INTO entity_versions VALUES(2224,434,'7.0','12/11/2013',' '); +INSERT INTO entity_versions VALUES(2225,434,'6.10','06/19/2018','11/30/2020'); +INSERT INTO entity_versions VALUES(2226,434,'6.9','03/21/2017','11/30/2020'); +INSERT INTO entity_versions VALUES(2227,434,'6.8','05/10/2016','11/30/2020'); +INSERT INTO entity_versions VALUES(2228,434,'6.7','07/22/2015','11/30/2020'); +INSERT INTO entity_versions VALUES(2229,434,'6.6','10/14/2014','11/30/2020'); +INSERT INTO entity_versions VALUES(2230,434,'6.5','11/21/2013','11/30/2020'); +INSERT INTO entity_versions VALUES(2231,434,'6.4','02/21/2013','11/30/2020'); +INSERT INTO entity_versions VALUES(2232,434,'6.3','06/20/2012','11/30/2020'); +INSERT INTO entity_versions VALUES(2233,434,'6.2','12/06/2011','11/30/2020'); +INSERT INTO entity_versions VALUES(2234,434,'6.1','05/19/2011','11/30/2020'); +INSERT INTO entity_versions VALUES(2235,434,'6.0','11/09/2010','11/30/2020'); +INSERT INTO entity_versions VALUES(2236,434,'5.11','09/16/2014','03/31/2017'); +INSERT INTO entity_versions VALUES(2237,434,'5.10','10/01/2013','03/31/2017'); +INSERT INTO entity_versions VALUES(2238,434,'5.9','01/07/2013','03/31/2017'); +INSERT INTO entity_versions VALUES(2239,434,'5.8','02/20/2012','03/31/2017'); +INSERT INTO entity_versions VALUES(2240,434,'5.7','07/21/2011','03/31/2017'); +INSERT INTO entity_versions VALUES(2241,434,'5.6','01/13/2011','03/31/2017'); +INSERT INTO entity_versions VALUES(2242,434,'5.5','03/30/2010','03/31/2017'); +INSERT INTO entity_versions VALUES(2243,434,'5.4','09/02/2009','03/31/2017'); +INSERT INTO entity_versions VALUES(2244,434,'5.3','01/20/2009','03/31/2017'); +INSERT INTO entity_versions VALUES(2245,434,'5.2','05/21/2008','03/31/2017'); +INSERT INTO entity_versions VALUES(2246,434,'5.1','11/07/2007','03/31/2017'); +INSERT INTO entity_versions VALUES(2247,434,'5.0','03/15/2007','03/31/2017'); +INSERT INTO entity_versions VALUES(2248,434,'4.9','02/16/2011','02/16/2011'); +INSERT INTO entity_versions VALUES(2249,434,'4.8','05/19/2009','02/16/2011'); +INSERT INTO entity_versions VALUES(2250,434,'4.7','07/29/2008','02/16/2011'); +INSERT INTO entity_versions VALUES(2251,434,'4.6','11/15/2007','02/16/2011'); +INSERT INTO entity_versions VALUES(2252,434,'4.5','05/01/2007','02/16/2011'); +INSERT INTO entity_versions VALUES(2253,434,'4.4','08/10/2006','02/16/2011'); +INSERT INTO entity_versions VALUES(2254,434,'4.3','03/12/2006','02/16/2011'); +INSERT INTO entity_versions VALUES(2255,434,'4.2','10/05/2005','02/16/2011'); +INSERT INTO entity_versions VALUES(2256,434,'4.1','06/08/2005','02/16/2011'); +INSERT INTO entity_versions VALUES(2257,434,'4','02/15/2005','02/16/2011'); +INSERT INTO entity_versions VALUES(2258,434,'3.9','06/20/2007','10/21/2010'); +INSERT INTO entity_versions VALUES(2259,434,'3.8','07/20/2006','10/21/2010'); +INSERT INTO entity_versions VALUES(2260,434,'3.7','03/17/2006','10/21/2010'); +INSERT INTO entity_versions VALUES(2261,434,'3.6','09/28/2005','10/21/2010'); +INSERT INTO entity_versions VALUES(2262,434,'3.5','05/18/2005','10/21/2010'); +INSERT INTO entity_versions VALUES(2263,434,'3.4','12/12/2004','10/21/2010'); +INSERT INTO entity_versions VALUES(2264,434,'3.3','09/03/2004','10/21/2010'); +INSERT INTO entity_versions VALUES(2265,434,'3.2','05/12/2004','10/21/2010'); +INSERT INTO entity_versions VALUES(2266,434,'3.1','01/16/2004','10/21/2010'); +INSERT INTO entity_versions VALUES(2267,434,'3','10/22/2003','10/21/2010'); +INSERT INTO entity_versions VALUES(2268,434,'2.1.7','04/28/2005','05/31/2009'); +INSERT INTO entity_versions VALUES(2269,434,'2.1.6','12/13/2004','05/31/2009'); +INSERT INTO entity_versions VALUES(2270,434,'2.1.5','08/18/2004','05/31/2009'); +INSERT INTO entity_versions VALUES(2271,434,'2.1.4','04/21/2004','05/31/2009'); +INSERT INTO entity_versions VALUES(2272,434,'2.1.3','12/19/2004','05/31/2009'); +INSERT INTO entity_versions VALUES(2273,434,'2.1.2','03/29/2003','05/31/2009'); +INSERT INTO entity_versions VALUES(2274,434,'2.1.1','02/14/2003','05/31/2009'); +INSERT INTO entity_versions VALUES(2275,434,'2.1','03/23/2002','05/31/2009'); +INSERT INTO entity_versions VALUES(2276,429,'0.9','08/01/1993',' '); +INSERT INTO entity_versions VALUES(2277,429,'0.91','01/01/1994',' '); +INSERT INTO entity_versions VALUES(2278,429,'0.93R5','03/01/1995',' '); +INSERT INTO entity_versions VALUES(2279,429,'0.93R6','11/01/1995',' '); +INSERT INTO entity_versions VALUES(2280,429,'1',' ',' '); +INSERT INTO entity_versions VALUES(2281,429,'1.1','06/17/1996',' '); +INSERT INTO entity_versions VALUES(2282,429,'1.2','12/12/1996',' '); +INSERT INTO entity_versions VALUES(2283,429,'1.3','06/05/1997',' '); +INSERT INTO entity_versions VALUES(2284,429,'2.0','07/24/1998',' '); +INSERT INTO entity_versions VALUES(2285,429,'2.1','03/09/1999','09/30/2000'); +INSERT INTO entity_versions VALUES(2286,429,'2.2','08/15/2000','06/30/2003'); +INSERT INTO entity_versions VALUES(2287,429,'3.0','07/19/2002','06/30/2006'); +INSERT INTO entity_versions VALUES(2288,429,'3.1','06/06/2005','03/31/2008'); +INSERT INTO entity_versions VALUES(2289,429,'4.0','04/08/2007','02/15/2010'); +INSERT INTO entity_versions VALUES(2290,429,'5.0','02/14/2009','02/06/2012'); +INSERT INTO entity_versions VALUES(2291,429,'6.0','02/06/2011','05/31/2015'); +INSERT INTO entity_versions VALUES(2292,429,'7','05/04/2013','04/26/2016'); +INSERT INTO entity_versions VALUES(2293,429,'8','04/26/2015','06/30/2020'); +INSERT INTO entity_versions VALUES(2294,429,'9','06/17/2017','01/31/2020'); +INSERT INTO entity_versions VALUES(2295,429,'10','07/06/2019','01/31/2022'); +INSERT INTO entity_versions VALUES(2296,429,'11',' ',' '); +INSERT INTO entity_versions VALUES(2297,429,'12',' ',' '); +INSERT INTO entity_versions VALUES(2298,429,'13',' ',' '); +INSERT INTO entity_versions VALUES(2299,427,'2.1','08/19/2009',' '); +INSERT INTO entity_versions VALUES(2300,427,'3.1','07/31/2005','10/31/2010'); +INSERT INTO entity_versions VALUES(2301,427,'3.3','03/17/2005','10/31/2010'); +INSERT INTO entity_versions VALUES(2302,427,'3.4','03/01/2005','10/31/2010'); +INSERT INTO entity_versions VALUES(2303,427,'3.5','07/28/2005','10/31/2010'); +INSERT INTO entity_versions VALUES(2304,427,'3.6','04/04/2006','10/31/2010'); +INSERT INTO entity_versions VALUES(2305,427,'3.7','05/06/2006','10/31/2010'); +INSERT INTO entity_versions VALUES(2306,427,'3.8','04/20/2012','10/31/2010'); +INSERT INTO entity_versions VALUES(2307,427,'3.9','04/20/2012','10/31/2010'); +INSERT INTO entity_versions VALUES(2308,427,'4','06/23/2005','02/29/2012'); +INSERT INTO entity_versions VALUES(2309,427,'4.0','09/15/2005','02/29/2012'); +INSERT INTO entity_versions VALUES(2310,427,'4.1','10/19/2005','02/29/2012'); +INSERT INTO entity_versions VALUES(2311,427,'4.2','11/04/2006','02/29/2012'); +INSERT INTO entity_versions VALUES(2312,427,'4.2.0','10/23/2005','02/29/2012'); +INSERT INTO entity_versions VALUES(2313,427,'4.3','08/27/2006','02/29/2012'); +INSERT INTO entity_versions VALUES(2314,427,'4.4','11/01/2006','02/29/2012'); +INSERT INTO entity_versions VALUES(2315,427,'4.5','12/08/2007','02/29/2012'); +INSERT INTO entity_versions VALUES(2316,427,'4.6','09/18/2008','02/29/2012'); +INSERT INTO entity_versions VALUES(2317,427,'4.7','02/14/2010','02/29/2012'); +INSERT INTO entity_versions VALUES(2318,427,'4.8','04/20/2012','02/29/2012'); +INSERT INTO entity_versions VALUES(2319,427,'4.9','04/20/2012','02/29/2012'); +INSERT INTO entity_versions VALUES(2320,427,'5','04/11/2007','03/31/2017'); +INSERT INTO entity_versions VALUES(2321,427,'5.1','11/27/2007','03/31/2017'); +INSERT INTO entity_versions VALUES(2322,427,'5.2','06/18/2008','03/31/2017'); +INSERT INTO entity_versions VALUES(2323,427,'5.3','02/14/2010','03/31/2017'); +INSERT INTO entity_versions VALUES(2324,427,'5.4','06/25/2010','03/31/2017'); +INSERT INTO entity_versions VALUES(2325,427,'5.5','05/14/2010','03/31/2017'); +INSERT INTO entity_versions VALUES(2326,427,'5.6','08/12/2011','03/31/2017'); +INSERT INTO entity_versions VALUES(2327,427,'5.7','09/13/2011','03/31/2017'); +INSERT INTO entity_versions VALUES(2328,427,'5.8','02/27/2012','03/31/2017'); +INSERT INTO entity_versions VALUES(2329,427,'5.9','01/12/2013','03/31/2017'); +INSERT INTO entity_versions VALUES(2330,427,'5.1','10/07/2014','03/31/2017'); +INSERT INTO entity_versions VALUES(2331,427,'5.11','09/27/2014','03/31/2017'); +INSERT INTO entity_versions VALUES(2332,427,'6','12/19/2011','05/10/2017'); +INSERT INTO entity_versions VALUES(2333,427,'6.1','12/08/2011','05/10/2017'); +INSERT INTO entity_versions VALUES(2334,427,'6.2','12/19/2011','05/10/2017'); +INSERT INTO entity_versions VALUES(2335,427,'6.3','07/09/2012','05/10/2017'); +INSERT INTO entity_versions VALUES(2336,427,'6.4','06/20/2013','05/10/2017'); +INSERT INTO entity_versions VALUES(2337,427,'6.5','12/21/2013','05/10/2017'); +INSERT INTO entity_versions VALUES(2338,427,'6.6','07/31/2015','05/10/2017'); +INSERT INTO entity_versions VALUES(2339,427,'6.7','01/21/2016','05/10/2017'); +INSERT INTO entity_versions VALUES(2340,427,'6.8','05/24/2016','05/10/2017'); +INSERT INTO entity_versions VALUES(2341,427,'6.9','04/04/2017','05/10/2017'); +INSERT INTO entity_versions VALUES(2342,427,'6.1','07/02/2018','05/10/2017'); +INSERT INTO entity_versions VALUES(2343,427,'7.0.1406','04/07/2015','08/06/2020'); +INSERT INTO entity_versions VALUES(2344,427,'7.1.1503','11/13/2015','08/06/2020'); +INSERT INTO entity_versions VALUES(2345,427,'7.2.1511','05/18/2016','08/06/2020'); +INSERT INTO entity_versions VALUES(2346,427,'7.3.1611','02/20/2017','08/06/2020'); +INSERT INTO entity_versions VALUES(2347,427,'7.4.1708','02/26/2018','08/06/2020'); +INSERT INTO entity_versions VALUES(2348,427,'7.5.1804','05/09/2018','08/06/2020'); +INSERT INTO entity_versions VALUES(2349,427,'7.6.1810','12/02/2018','08/06/2020'); +INSERT INTO entity_versions VALUES(2350,427,'7.7.1908','09/15/2019','08/06/2020'); +INSERT INTO entity_versions VALUES(2351,427,'7.8.2003','06/17/2020','08/06/2020'); +INSERT INTO entity_versions VALUES(2352,427,'7.9.2009','01/18/2021','08/06/2020'); +INSERT INTO entity_versions VALUES(2353,427,'8.0','03/10/2021','05/31/2024'); +INSERT INTO entity_versions VALUES(2354,427,'8.0.1905','09/09/2020','05/31/2024'); +INSERT INTO entity_versions VALUES(2355,427,'8.1.1911','10/21/2020','05/31/2024'); +INSERT INTO entity_versions VALUES(2356,427,'8.2.2004','01/15/2021','05/31/2024'); +INSERT INTO entity_versions VALUES(2357,427,'8.3.2011','02/22/2021','05/31/2024'); +INSERT INTO entity_versions VALUES(2358,453,'1','11/05/2003','09/20/2004'); +INSERT INTO entity_versions VALUES(2359,453,'2','05/18/2004','04/11/2005'); +INSERT INTO entity_versions VALUES(2360,453,'3','11/08/2004','01/16/2006'); +INSERT INTO entity_versions VALUES(2361,453,'4','06/13/2005','08/07/2006'); +INSERT INTO entity_versions VALUES(2362,453,'5','03/20/2006','07/02/2007'); +INSERT INTO entity_versions VALUES(2363,453,'6','10/24/2006','12/07/2007'); +INSERT INTO entity_versions VALUES(2364,453,'7','05/31/2007','06/13/2008'); +INSERT INTO entity_versions VALUES(2365,453,'8','11/08/2007','01/07/2009'); +INSERT INTO entity_versions VALUES(2366,453,'9','05/13/2008','07/10/2009'); +INSERT INTO entity_versions VALUES(2367,453,'10','11/25/2008','12/17/2009'); +INSERT INTO entity_versions VALUES(2368,453,'11','06/09/2009','06/25/2010'); +INSERT INTO entity_versions VALUES(2369,453,'12','11/17/2009','12/02/2010'); +INSERT INTO entity_versions VALUES(2370,453,'13','05/25/2010','06/24/2011'); +INSERT INTO entity_versions VALUES(2371,453,'14','11/02/2010','12/09/2011'); +INSERT INTO entity_versions VALUES(2372,453,'15','05/24/2011','06/26/2012'); +INSERT INTO entity_versions VALUES(2373,453,'16','11/08/2011','02/12/2013'); +INSERT INTO entity_versions VALUES(2374,453,'17','05/29/2012','07/30/2013'); +INSERT INTO entity_versions VALUES(2375,453,'18','01/15/2013','01/14/2014'); +INSERT INTO entity_versions VALUES(2376,453,'19','07/02/2013','01/06/2015'); +INSERT INTO entity_versions VALUES(2377,453,'20','12/17/2013','06/23/2015'); +INSERT INTO entity_versions VALUES(2378,453,'21','12/09/2014','01/12/2015'); +INSERT INTO entity_versions VALUES(2379,453,'22','05/26/2015','07/19/2016'); +INSERT INTO entity_versions VALUES(2380,453,'23','11/03/2015','12/20/2016'); +INSERT INTO entity_versions VALUES(2381,453,'24','06/21/2016','08/08/2017'); +INSERT INTO entity_versions VALUES(2382,453,'25','11/22/2016','12/12/2017'); +INSERT INTO entity_versions VALUES(2383,453,'26','07/11/2017','05/29/2018'); +INSERT INTO entity_versions VALUES(2384,453,'27','11/14/2017','11/30/2018'); +INSERT INTO entity_versions VALUES(2385,453,'28','05/01/2018','05/28/2019'); +INSERT INTO entity_versions VALUES(2386,453,'29','10/30/2018','11/26/2019'); +INSERT INTO entity_versions VALUES(2387,453,'30','05/07/2019','05/26/2020'); +INSERT INTO entity_versions VALUES(2388,453,'31','10/29/2019','11/24/2020'); +INSERT INTO entity_versions VALUES(2389,453,'32','04/28/2020','05/25/2021'); +INSERT INTO entity_versions VALUES(2390,453,'33','10/27/2020',' '); +INSERT INTO entity_versions VALUES(2391,453,'34','04/20/2021',' '); +INSERT INTO entity_versions VALUES(2392,453,'35','10/19/2021',' '); +INSERT INTO entity_versions VALUES(2393,432,'4.5',' ',' '); +INSERT INTO entity_versions VALUES(2394,432,'4.6','12/10/2007',' '); +INSERT INTO entity_versions VALUES(2395,432,'4.7','08/05/2008',' '); +INSERT INTO entity_versions VALUES(2396,432,'4.8','05/26/2009',' '); +INSERT INTO entity_versions VALUES(2397,432,'4.9',' ',' '); +INSERT INTO entity_versions VALUES(2398,432,'5','06/26/2007','03/31/2017'); +INSERT INTO entity_versions VALUES(2399,432,'5.1','11/26/2007','03/31/2017'); +INSERT INTO entity_versions VALUES(2400,432,'5.2','06/02/2008','03/31/2017'); +INSERT INTO entity_versions VALUES(2401,432,'5.3','01/28/2009','03/31/2017'); +INSERT INTO entity_versions VALUES(2402,432,'5.4','09/09/2009','03/31/2017'); +INSERT INTO entity_versions VALUES(2403,432,'5.5','04/07/2010','03/31/2017'); +INSERT INTO entity_versions VALUES(2404,432,'5.6','01/22/2011','03/31/2017'); +INSERT INTO entity_versions VALUES(2405,432,'5.7','08/16/2011','03/31/2017'); +INSERT INTO entity_versions VALUES(2406,432,'5.8','03/02/2012','03/31/2017'); +INSERT INTO entity_versions VALUES(2407,432,'5.9','01/16/2013','03/31/2017'); +INSERT INTO entity_versions VALUES(2408,432,'5.1','10/08/2013','03/31/2017'); +INSERT INTO entity_versions VALUES(2409,432,'5.11','09/23/2014','03/31/2017'); +INSERT INTO entity_versions VALUES(2410,432,'6','02/11/2011','03/31/2021'); +INSERT INTO entity_versions VALUES(2411,432,'6.1','06/01/2011','03/31/2021'); +INSERT INTO entity_versions VALUES(2412,432,'6.2','12/15/2011','03/31/2021'); +INSERT INTO entity_versions VALUES(2413,432,'6.3','06/28/2012','03/31/2021'); +INSERT INTO entity_versions VALUES(2414,432,'6.4','02/28/2013','03/31/2021'); +INSERT INTO entity_versions VALUES(2415,432,'6.5','11/27/2013','03/31/2021'); +INSERT INTO entity_versions VALUES(2416,432,'6.6','10/21/2014','03/31/2021'); +INSERT INTO entity_versions VALUES(2417,432,'6.7','07/31/2015','03/31/2021'); +INSERT INTO entity_versions VALUES(2418,432,' ','03/31/2017',' '); +INSERT INTO entity_versions VALUES(2419,432,'6.8','05/16/2016','03/31/2021'); +INSERT INTO entity_versions VALUES(2420,432,'6.9','03/28/2017','03/31/2021'); +INSERT INTO entity_versions VALUES(2421,432,'6.1','07/02/2018','03/31/2021'); +INSERT INTO entity_versions VALUES(2422,432,'7','07/23/2014','07/31/2024'); +INSERT INTO entity_versions VALUES(2423,432,'7.1','03/12/2015','07/31/2024'); +INSERT INTO entity_versions VALUES(2424,432,'7.2','11/25/2015','07/31/2024'); +INSERT INTO entity_versions VALUES(2425,432,'7.3','11/10/2016','07/31/2024'); +INSERT INTO entity_versions VALUES(2426,432,'7.4','08/08/2017','07/31/2024'); +INSERT INTO entity_versions VALUES(2427,432,'7.5','04/17/2018','07/31/2024'); +INSERT INTO entity_versions VALUES(2428,432,'7.6','11/07/2018','07/31/2024'); +INSERT INTO entity_versions VALUES(2429,432,'7.7','08/15/2019','07/31/2024'); +INSERT INTO entity_versions VALUES(2430,432,'7.8','04/08/2020','07/31/2024'); +INSERT INTO entity_versions VALUES(2431,432,'7.9','10/07/2020','07/31/2024'); +INSERT INTO entity_versions VALUES(2432,432,'8','07/18/2019','07/31/2029'); +INSERT INTO entity_versions VALUES(2433,432,'8.1','11/15/2019','07/31/2029'); +INSERT INTO entity_versions VALUES(2434,432,'8.2','05/06/2020','07/31/2029'); +INSERT INTO entity_versions VALUES(2435,432,'8.3','11/13/2020','07/31/2029'); +INSERT INTO entity_versions VALUES(2436,454,'2011.09',' ',' '); +INSERT INTO entity_versions VALUES(2437,454,'2012.03.3','06/27/2012',' '); +INSERT INTO entity_versions VALUES(2438,454,'2012.09.1','02/19/2013',' '); +INSERT INTO entity_versions VALUES(2439,454,'2013.03','05/13/2013',' '); +INSERT INTO entity_versions VALUES(2440,454,'2013.03.1','05/13/2013',' '); +INSERT INTO entity_versions VALUES(2441,454,'2013.09.1','11/11/2013',' '); +INSERT INTO entity_versions VALUES(2442,454,'2013.09.2','12/12/2013',' '); +INSERT INTO entity_versions VALUES(2443,454,'2014.03.1','04/14/2014',' '); +INSERT INTO entity_versions VALUES(2444,454,'2014.03.2','06/16/2014',' '); +INSERT INTO entity_versions VALUES(2445,454,'2014.09.1','10/14/2014',' '); +INSERT INTO entity_versions VALUES(2446,454,'2014.09.2','01/29/2015',' '); +INSERT INTO entity_versions VALUES(2447,454,'2015.03.1','08/21/2015',' '); +INSERT INTO entity_versions VALUES(2448,454,'2015.09.2','02/16/2016',' '); +INSERT INTO entity_versions VALUES(2449,454,'2016.03.1','05/04/2016',' '); +INSERT INTO entity_versions VALUES(2450,454,'2016.03.2','06/09/2016',' '); +INSERT INTO entity_versions VALUES(2451,454,'2016.03.3','06/28/2016',' '); +INSERT INTO entity_versions VALUES(2452,454,'2016.09.1','12/22/2016',' '); +INSERT INTO entity_versions VALUES(2453,454,'2017.03','06/19/2017',' '); +INSERT INTO entity_versions VALUES(2454,454,'2017.09','11/06/2017',' '); +INSERT INTO entity_versions VALUES(2455,454,'2018.03','05/14/2018',' '); +INSERT INTO entity_versions VALUES(2456,431,'10.2','12/07/2006','11/30/2008'); +INSERT INTO entity_versions VALUES(2457,431,'10.3','10/04/2007','10/31/2009'); +INSERT INTO entity_versions VALUES(2458,431,'11','06/19/2008','07/26/2010'); +INSERT INTO entity_versions VALUES(2459,431,'11.1','12/18/2008','01/14/2011'); +INSERT INTO entity_versions VALUES(2460,431,'11.2','11/12/2009','05/12/2011'); +INSERT INTO entity_versions VALUES(2461,431,'11.3','07/15/2010','01/20/2012'); +INSERT INTO entity_versions VALUES(2462,431,'11.4','03/10/2011','11/05/2012'); +INSERT INTO entity_versions VALUES(2463,431,'12.1','11/16/2011','05/15/2013'); +INSERT INTO entity_versions VALUES(2464,431,'12.2','09/05/2012','01/15/2014'); +INSERT INTO entity_versions VALUES(2465,431,'12.3','03/13/2013','01/29/2015'); +INSERT INTO entity_versions VALUES(2466,431,'13.1','11/19/2013','02/03/2016'); +INSERT INTO entity_versions VALUES(2467,431,'13.2','11/04/2014','01/17/2017'); +INSERT INTO entity_versions VALUES(2468,431,'42.1','11/04/2015','05/17/2017'); +INSERT INTO entity_versions VALUES(2469,431,'42.2','11/16/2016','01/26/2018'); +INSERT INTO entity_versions VALUES(2470,431,'42.3','07/26/2017','07/01/2019'); +INSERT INTO entity_versions VALUES(2471,431,'15','05/25/2018','12/03/2019'); +INSERT INTO entity_versions VALUES(2472,431,'15.1','05/22/2019','02/02/2021'); +INSERT INTO entity_versions VALUES(2473,431,'15.2','07/02/2020',' '); +INSERT INTO entity_versions VALUES(2474,431,'15.3','07/07/2021',' '); +INSERT INTO entity_versions VALUES(2475,435,'SuSE Linux Enterprise Server S/390','10/31/2000',' '); +INSERT INTO entity_versions VALUES(2476,435,'Sparc','04/01/2001',' '); +INSERT INTO entity_versions VALUES(2477,435,'IAs32','04/01/2001',' '); +INSERT INTO entity_versions VALUES(2478,435,'7','10/13/2001',' '); +INSERT INTO entity_versions VALUES(2479,435,'8','10/01/2002','12/20/2007'); +INSERT INTO entity_versions VALUES(2480,435,'8 SP1',' ',' '); +INSERT INTO entity_versions VALUES(2481,435,'8 SP2',' ',' '); +INSERT INTO entity_versions VALUES(2482,435,'8 SP2a',' ',' '); +INSERT INTO entity_versions VALUES(2483,435,'8 SP3',' ',' '); +INSERT INTO entity_versions VALUES(2484,435,'8 SP4',' ',' '); +INSERT INTO entity_versions VALUES(2485,435,'9','08/03/2004','08/31/2011'); +INSERT INTO entity_versions VALUES(2486,435,'9 SP1','01/19/2005','08/31/2011'); +INSERT INTO entity_versions VALUES(2487,435,'9 SP2','07/07/2005','08/31/2011'); +INSERT INTO entity_versions VALUES(2488,435,'9 SP3','12/22/2005','08/31/2011'); +INSERT INTO entity_versions VALUES(2489,435,'9 SP4','12/12/2007','08/31/2011'); +INSERT INTO entity_versions VALUES(2490,435,'10','06/17/2006','07/31/2013'); +INSERT INTO entity_versions VALUES(2491,435,'10 SP1','06/18/2007','07/31/2013'); +INSERT INTO entity_versions VALUES(2492,435,'10 SP2','05/19/2008','07/31/2013'); +INSERT INTO entity_versions VALUES(2493,435,'10 SP3','10/12/2009','07/31/2013'); +INSERT INTO entity_versions VALUES(2494,435,'10 SP4','04/12/2011','07/31/2013'); +INSERT INTO entity_versions VALUES(2495,435,'11','03/24/2009','03/31/2019'); +INSERT INTO entity_versions VALUES(2496,435,'11 SP1','06/02/2010','03/31/2019'); +INSERT INTO entity_versions VALUES(2497,435,'11 SP2','02/15/2012','03/31/2019'); +INSERT INTO entity_versions VALUES(2498,435,'11 SP3','07/01/2013','03/31/2019'); +INSERT INTO entity_versions VALUES(2499,435,'11 SP4','07/16/2015','03/31/2019'); +INSERT INTO entity_versions VALUES(2500,435,'12','10/27/2014','08/31/2024'); +INSERT INTO entity_versions VALUES(2501,435,'12 SP1','01/12/2016','08/31/2024'); +INSERT INTO entity_versions VALUES(2502,435,'12 SP2','11/11/2016','08/31/2024'); +INSERT INTO entity_versions VALUES(2503,435,'12 SP3','09/07/2017','08/31/2024'); +INSERT INTO entity_versions VALUES(2504,435,'12 SP4','12/11/2018','08/31/2024'); +INSERT INTO entity_versions VALUES(2505,435,'12 SP5','12/09/2019','08/31/2024'); +INSERT INTO entity_versions VALUES(2506,435,'15','07/16/2018','07/31/2028'); +INSERT INTO entity_versions VALUES(2507,435,'15 SP1','06/24/2019','07/31/2028'); +INSERT INTO entity_versions VALUES(2508,435,'15 SP2','07/21/2020','07/31/2028'); +INSERT INTO entity_versions VALUES(2509,430,'20.4','12/25/2020','06/25/2024'); +INSERT INTO entity_versions VALUES(2510,430,'20.3','09/29/2020','03/29/2023'); +INSERT INTO entity_versions VALUES(2511,430,'20.2','06/30/2020','12/30/2023'); +INSERT INTO entity_versions VALUES(2512,430,'20.1','03/27/2020','09/27/2022'); +INSERT INTO entity_versions VALUES(2513,430,'19.4','12/26/2019','06/26/2023'); +INSERT INTO entity_versions VALUES(2514,430,'19.3','09/26/2019','03/26/2023'); +INSERT INTO entity_versions VALUES(2515,430,'19.2','06/26/2019','12/26/2022'); +INSERT INTO entity_versions VALUES(2516,430,'19.1','03/27/2019','09/27/2022'); +INSERT INTO entity_versions VALUES(2517,430,'18.4','12/22/2018','06/22/2022'); +INSERT INTO entity_versions VALUES(2518,430,'18.3','09/26/2018','03/26/2022'); +INSERT INTO entity_versions VALUES(2519,430,'18.2','06/29/2018','12/29/2021'); +INSERT INTO entity_versions VALUES(2520,430,'18.1','03/28/2018','09/28/2021'); +INSERT INTO entity_versions VALUES(2521,430,'17.4','12/21/2017','06/21/2021'); +INSERT INTO entity_versions VALUES(2522,430,'17.3','08/25/2017','02/25/2021'); +INSERT INTO entity_versions VALUES(2523,430,'17.2','06/06/2017','12/06/2020'); +INSERT INTO entity_versions VALUES(2524,430,'17.1','03/03/2017','09/03/2020'); +INSERT INTO entity_versions VALUES(2525,430,'16.2','11/29/2016','05/29/2020'); +INSERT INTO entity_versions VALUES(2526,430,'16.1','07/28/2016','01/28/2020'); +INSERT INTO entity_versions VALUES(2527,430,'15.1X53','06/05/2015','12/05/2018'); +INSERT INTO entity_versions VALUES(2528,430,'15.1X49','06/30/2015','06/30/2021'); +INSERT INTO entity_versions VALUES(2529,430,'15.1','06/05/2015','12/05/2018'); +INSERT INTO entity_versions VALUES(2530,430,'14.2','11/05/2014','05/05/2018'); +INSERT INTO entity_versions VALUES(2531,430,'14.1X53','09/26/2014','06/30/2019'); +INSERT INTO entity_versions VALUES(2532,430,'14.1','06/13/2014','06/13/2018'); +INSERT INTO entity_versions VALUES(2533,430,'13.3','01/22/2014','07/22/2017'); +INSERT INTO entity_versions VALUES(2534,430,'13.2X52','07/06/2014','06/30/2017'); +INSERT INTO entity_versions VALUES(2535,430,'13.2X51','11/22/2013','06/30/2016'); +INSERT INTO entity_versions VALUES(2536,430,'13.2X50','06/28/2013','12/28/2014'); +INSERT INTO entity_versions VALUES(2537,430,'13.2','08/29/2013','02/29/2016'); +INSERT INTO entity_versions VALUES(2538,430,'13.1X50','07/25/2013','12/30/2015'); +INSERT INTO entity_versions VALUES(2539,430,'13.1','03/15/2013','09/15/2015'); +INSERT INTO entity_versions VALUES(2540,430,'12.3X54','07/18/2014','07/18/2018'); +INSERT INTO entity_versions VALUES(2541,430,'12.3X52','08/23/2013','02/23/2016'); +INSERT INTO entity_versions VALUES(2542,430,'12.3X51','03/15/2013','09/15/2015'); +INSERT INTO entity_versions VALUES(2543,430,'12.3X50','12/08/2012','07/31/2016'); +INSERT INTO entity_versions VALUES(2544,430,'12.3X48','03/06/2015','06/30/2022'); +INSERT INTO entity_versions VALUES(2545,430,'12.3','01/31/2013','07/31/2016'); +INSERT INTO entity_versions VALUES(2546,430,'12.2X50','07/05/2012','07/31/2015'); +INSERT INTO entity_versions VALUES(2547,430,'12.2','09/05/2012','03/05/2015'); +INSERT INTO entity_versions VALUES(2548,430,'12.1X49','04/19/2012','10/19/2014'); +INSERT INTO entity_versions VALUES(2549,430,'12.1X48','01/28/2013','06/30/2015'); +INSERT INTO entity_versions VALUES(2550,430,'12.1X47','08/18/2014','02/18/2017'); +INSERT INTO entity_versions VALUES(2551,430,'12.1X46','12/30/2013','06/30/2017'); +INSERT INTO entity_versions VALUES(2552,430,'12.1X45','07/17/2013','01/17/2015'); +INSERT INTO entity_versions VALUES(2553,430,'12.1X44','01/18/2013','07/18/2016'); +INSERT INTO entity_versions VALUES(2554,430,'12.1','03/28/2012','09/28/2014'); +INSERT INTO entity_versions VALUES(2555,430,'11.4','12/21/2011','06/21/2015'); +INSERT INTO entity_versions VALUES(2556,430,'11.3','08/15/2011','03/15/2013'); +INSERT INTO entity_versions VALUES(2557,430,'11.2','08/03/2011','02/15/2013'); +INSERT INTO entity_versions VALUES(2558,430,'11.1','03/29/2011','05/15/2012'); +INSERT INTO entity_versions VALUES(2559,430,'10.41','12/08/2010','06/08/2014'); +INSERT INTO entity_versions VALUES(2560,430,'10.3','08/15/2010','12/21/2011'); +INSERT INTO entity_versions VALUES(2561,430,'10.2','05/28/2010','11/15/2011'); +INSERT INTO entity_versions VALUES(2562,430,'10.1','02/15/2010','05/15/2011'); +INSERT INTO entity_versions VALUES(2563,430,'10.0','11/04/2009','05/15/2013'); +INSERT INTO entity_versions VALUES(2564,430,'9.6','08/06/2009','11/06/2010'); +INSERT INTO entity_versions VALUES(2565,430,'9.5','04/14/2009','08/15/2010'); +INSERT INTO entity_versions VALUES(2566,430,'9.4','02/11/2009','05/11/2010'); +INSERT INTO entity_versions VALUES(2567,430,'9.3','11/14/2008','05/15/2012'); +INSERT INTO entity_versions VALUES(2568,430,'9.2','08/12/2008','11/12/2009'); +INSERT INTO entity_versions VALUES(2569,430,'9.1','04/28/2008','07/28/2009'); +INSERT INTO entity_versions VALUES(2570,430,'9.0','02/15/2008','05/15/2009'); +INSERT INTO entity_versions VALUES(2571,430,'8.5','11/16/2007','05/16/2011'); +INSERT INTO entity_versions VALUES(2572,430,'8.4','08/09/2007','11/09/2008'); +INSERT INTO entity_versions VALUES(2573,430,'8.3','04/18/2007','07/18/2008'); +INSERT INTO entity_versions VALUES(2574,430,'8.2','02/15/2007','05/15/2008'); +INSERT INTO entity_versions VALUES(2575,430,'8.11','11/06/2006','05/06/2010'); +INSERT INTO entity_versions VALUES(2576,430,'8.0','08/15/2006','11/15/2007'); +INSERT INTO entity_versions VALUES(2577,430,'7.6','05/15/2006','08/15/2007'); +INSERT INTO entity_versions VALUES(2578,430,'7.5','02/08/2006','05/08/2007'); +INSERT INTO entity_versions VALUES(2579,430,'7.4','11/15/2005','02/15/2007'); +INSERT INTO entity_versions VALUES(2580,430,'7.3','08/16/2005','11/16/2006'); +INSERT INTO entity_versions VALUES(2581,430,'7.2','05/14/2005','08/14/2006'); +INSERT INTO entity_versions VALUES(2582,430,'7.1','02/14/2005','05/14/2006'); +INSERT INTO entity_versions VALUES(2583,430,'7.0','11/15/2004','02/15/2006'); +INSERT INTO entity_versions VALUES(2584,430,'6.4','08/12/2004','11/12/2005'); +INSERT INTO entity_versions VALUES(2585,430,'6.3','05/15/2004','08/15/2005'); +INSERT INTO entity_versions VALUES(2586,430,'6.2','02/15/2004','05/15/2005'); +INSERT INTO entity_versions VALUES(2587,430,'6.1','11/15/2003','02/15/2005'); +INSERT INTO entity_versions VALUES(2588,430,'6.0','08/15/2003','11/15/2004'); +INSERT INTO entity_versions VALUES(2589,430,'5.7','05/15/2003','08/15/2004'); +INSERT INTO entity_versions VALUES(2590,430,'5.6','02/15/2003','05/15/2004'); +INSERT INTO entity_versions VALUES(2591,430,'5.5','11/15/2002','02/15/2004'); +INSERT INTO entity_versions VALUES(2592,430,'5.4','08/12/2002','11/15/2003'); +INSERT INTO entity_versions VALUES(2593,430,'5.3','05/12/2002','08/15/2003'); +INSERT INTO entity_versions VALUES(2594,430,'5.2','02/12/2002','05/15/2003'); +INSERT INTO entity_versions VALUES(2595,430,'5.1','11/07/2001','02/15/2003'); +INSERT INTO entity_versions VALUES(2596,430,'5.0','08/17/2001','11/15/2002'); +INSERT INTO entity_versions VALUES(2597,430,'4.4','04/30/2001',' '); +INSERT INTO entity_versions VALUES(2598,430,'4.3','01/31/2001',' '); +INSERT INTO entity_versions VALUES(2599,430,'4.2','10/16/2000',' '); +INSERT INTO entity_versions VALUES(2600,430,'4.1','08/15/2000',' '); +INSERT INTO entity_versions VALUES(2601,430,'4.0','03/31/2000',' '); +INSERT INTO entity_versions VALUES(2602,433,'1','06/16/2016',' '); +INSERT INTO entity_versions VALUES(2603,433,'2','10/31/2017',' '); +INSERT INTO entity_versions VALUES(2604,433,'3','02/07/2019',' '); +INSERT INTO entity_versions VALUES(2605,433,'4','03/05/2021',' '); +INSERT INTO entity_versions VALUES(2606,322,'1','10/01/1956',' '); +INSERT INTO entity_versions VALUES(2607,322,'2','12/31/1958',' '); +INSERT INTO entity_versions VALUES(2608,322,'3','12/31/1958',' '); +INSERT INTO entity_versions VALUES(2609,322,'4','12/31/1961',' '); +INSERT INTO entity_versions VALUES(2610,322,'5.0','12/31/1968',' '); +INSERT INTO entity_versions VALUES(2611,322,'5.1','12/31/1980',' '); +INSERT INTO entity_versions VALUES(2612,322,'6','12/31/2001',' '); +INSERT INTO entity_versions VALUES(2613,322,'66','12/31/1966',' '); +INSERT INTO entity_versions VALUES(2614,322,'77','12/31/1978',' '); +INSERT INTO entity_versions VALUES(2615,322,'90','12/31/1991',' '); +INSERT INTO entity_versions VALUES(2616,322,'95','12/31/1997',' '); +INSERT INTO entity_versions VALUES(2617,322,'2003','12/31/2004',' '); +INSERT INTO entity_versions VALUES(2618,322,'2008','09/01/2010',' '); +INSERT INTO entity_versions VALUES(2619,322,'2018','11/28/2018',' '); +INSERT INTO entity_versions VALUES(2620,589,'ES1','12/31/1997',' '); +INSERT INTO entity_versions VALUES(2621,589,'ES2','12/31/1998',' '); +INSERT INTO entity_versions VALUES(2622,589,'ES3','12/31/1999',' '); +INSERT INTO entity_versions VALUES(2623,589,'ES4',' ',' '); +INSERT INTO entity_versions VALUES(2624,589,'ES5','12/31/2009',' '); +INSERT INTO entity_versions VALUES(2625,589,'ES6','12/31/2015',' '); +INSERT INTO entity_versions VALUES(2626,343,'1','12/31/1981',' '); +INSERT INTO entity_versions VALUES(2627,343,'2','12/31/2006',' '); +INSERT INTO entity_versions VALUES(2628,599,'pascal','12/31/2070',' '); +INSERT INTO entity_versions VALUES(2629,599,'Object pascal','12/31/1985',' '); +INSERT INTO entity_versions VALUES(2630,599,'extended pascal','12/31/1990',' '); +INSERT INTO entity_versions VALUES(2631,599,'Free pascal','12/31/1997',' '); +INSERT INTO entity_versions VALUES(2632,599,'smalltalk80','12/31/1980',' '); +INSERT INTO entity_versions VALUES(2633,363,'ANSI smalltalk','12/31/1988',' '); +INSERT INTO entity_versions VALUES(2634,363,'Ambrai smalltalk',' ',' '); +INSERT INTO entity_versions VALUES(2635,363,'Dolphin smalltalk',' ',' '); +INSERT INTO entity_versions VALUES(2636,363,'GNU smalltalk',' ',' '); +INSERT INTO entity_versions VALUES(2637,363,'LSWsvision smalltalk',' ',' '); +INSERT INTO entity_versions VALUES(2638,363,'Little smalltalk',' ',' '); +INSERT INTO entity_versions VALUES(2639,363,'Resilient embedded smalltalk',' ',' '); +INSERT INTO entity_versions VALUES(2640,363,'Object studio smalltalk',' ',' '); +INSERT INTO entity_versions VALUES(2641,363,'Pocket smalltalk',' ',' '); +INSERT INTO entity_versions VALUES(2642,363,'Public Domain smalltalk (PDST)',' ',' '); +INSERT INTO entity_versions VALUES(2643,363,'Slate smalltalk',' ',' '); +INSERT INTO entity_versions VALUES(2644,363,'Smalltalk Express',' ',' '); +INSERT INTO entity_versions VALUES(2645,363,'smalltalk MT',' ',' '); +INSERT INTO entity_versions VALUES(2646,363,'smalltalk X',' ',' '); +INSERT INTO entity_versions VALUES(2647,363,'Squat smalltalk',' ',' '); +INSERT INTO entity_versions VALUES(2648,363,'Squeak smalltalk',' ',' '); +INSERT INTO entity_versions VALUES(2649,363,'Strong smalltalk',' ',' '); +INSERT INTO entity_versions VALUES(2650,363,'Susie smalltalk',' ',' '); +INSERT INTO entity_versions VALUES(2651,363,'Talks2 smalltalk',' ',' '); +INSERT INTO entity_versions VALUES(2652,363,'VisualWorks smalltalk',' ',' '); +INSERT INTO entity_versions VALUES(2653,363,'VisualAge smalltalk',' ',' '); +INSERT INTO entity_versions VALUES(2654,363,'Vmx Quicknet smalltalk',' ',' '); +INSERT INTO entity_versions VALUES(2655,363,'Zoku smalltalk',' ',' '); +INSERT INTO entity_versions VALUES(2656,324,'0.1.1','07/02/2015',' '); +INSERT INTO entity_versions VALUES(2657,324,'0.2.0','07/30/2015',' '); +INSERT INTO entity_versions VALUES(2658,324,'0.3.0',' ',' '); +INSERT INTO entity_versions VALUES(2659,324,'0.4.0',' ',' '); +INSERT INTO entity_versions VALUES(2660,324,'0.5.0',' ',' '); +INSERT INTO entity_versions VALUES(2661,324,'0.6.0',' ',' '); +INSERT INTO entity_versions VALUES(2662,324,'0.7.0',' ',' '); +INSERT INTO entity_versions VALUES(2663,324,'0.8.0',' ',' '); +INSERT INTO entity_versions VALUES(2664,324,'0.9.0',' ',' '); +INSERT INTO entity_versions VALUES(2665,324,'0.10.0',' ',' '); +INSERT INTO entity_versions VALUES(2666,324,'0.11.0',' ',' '); +INSERT INTO entity_versions VALUES(2667,324,'0.12.0',' ',' '); +INSERT INTO entity_versions VALUES(2668,324,'0.13.0',' ',' '); +INSERT INTO entity_versions VALUES(2669,324,'14',' ',' '); +INSERT INTO entity_versions VALUES(2670,324,'14.1',' ',' '); +INSERT INTO entity_versions VALUES(2671,324,'14.2',' ',' '); +INSERT INTO entity_versions VALUES(2672,324,'14.3',' ',' '); +INSERT INTO entity_versions VALUES(2673,324,'14.4',' ',' '); +INSERT INTO entity_versions VALUES(2674,324,'14.5',' ',' '); +INSERT INTO entity_versions VALUES(2675,324,'15',' ',' '); +INSERT INTO entity_versions VALUES(2676,360,'72','01/31/1972',' '); +INSERT INTO entity_versions VALUES(2677,360,'76','07/31/1976',' '); +INSERT INTO entity_versions VALUES(2678,360,'79.5','04/30/1981',' '); +INSERT INTO entity_versions VALUES(2679,360,'82.4','01/31/1983',' '); +INSERT INTO entity_versions VALUES(2680,360,'4.06','03/31/1984',' '); +INSERT INTO entity_versions VALUES(2681,360,'5.03','07/31/1986',' '); +INSERT INTO entity_versions VALUES(2682,360,'6.01','01/31/1985',' '); +INSERT INTO entity_versions VALUES(2683,360,'6.03','03/31/1988',' '); +INSERT INTO entity_versions VALUES(2684,360,'6.06','03/31/1990',' '); +INSERT INTO entity_versions VALUES(2685,360,'6.07','04/30/1991',' '); +INSERT INTO entity_versions VALUES(2686,360,'6.08','03/31/1993',' '); +INSERT INTO entity_versions VALUES(2687,360,'6.09','10/31/1993',' '); +INSERT INTO entity_versions VALUES(2688,360,'6.1','10/31/1994',' '); +INSERT INTO entity_versions VALUES(2689,360,'6.11','10/31/1995',' '); +INSERT INTO entity_versions VALUES(2690,360,'6.12','11/30/1996',' '); +INSERT INTO entity_versions VALUES(2691,360,'7','10/31/1998',' '); +INSERT INTO entity_versions VALUES(2692,360,'8','11/30/1999',' '); +INSERT INTO entity_versions VALUES(2693,360,'8.1','07/31/2000',' '); +INSERT INTO entity_versions VALUES(2694,360,'8.2','03/31/2001',' '); +INSERT INTO entity_versions VALUES(2695,360,'9','10/31/2002',' '); +INSERT INTO entity_versions VALUES(2696,360,'9.1','12/31/2003',' '); +INSERT INTO entity_versions VALUES(2697,360,'9.1.3','08/31/2004',' '); +INSERT INTO entity_versions VALUES(2698,360,'9.2','03/31/2008',' '); +INSERT INTO entity_versions VALUES(2699,360,'9.2M2','04/30/2010',' '); +INSERT INTO entity_versions VALUES(2700,360,'9.3','07/31/2011',' '); +INSERT INTO entity_versions VALUES(2701,360,'9.3M2','08/31/2012',' '); +INSERT INTO entity_versions VALUES(2702,360,'9.4','07/31/2013',' '); +INSERT INTO entity_versions VALUES(2703,360,'9.4M1','12/31/2013',' '); +INSERT INTO entity_versions VALUES(2704,360,'9.4M2','08/31/2014',' '); +INSERT INTO entity_versions VALUES(2705,360,'9.4M3','07/31/2015',' '); +INSERT INTO entity_versions VALUES(2706,360,'9.4M4','11/30/2016',' '); +INSERT INTO entity_versions VALUES(2707,360,'9.4M5','09/30/2017',' '); +INSERT INTO entity_versions VALUES(2708,360,'9.4M6','11/30/2018',' '); +INSERT INTO entity_versions VALUES(2709,360,'9.4M7','08/31/2020',' '); +INSERT INTO entity_versions VALUES(2710,367,'0.8','10/31/2012',' '); +INSERT INTO entity_versions VALUES(2711,367,'0.9','06/18/2013',' '); +INSERT INTO entity_versions VALUES(2712,367,'1','04/12/2014',' '); +INSERT INTO entity_versions VALUES(2713,367,'1.1','10/06/2014',' '); +INSERT INTO entity_versions VALUES(2714,367,'1.3','11/12/2014',' '); +INSERT INTO entity_versions VALUES(2715,367,'1.4','01/20/2015',' '); +INSERT INTO entity_versions VALUES(2716,367,'1.5','07/20/2015',' '); +INSERT INTO entity_versions VALUES(2717,367,'1.6','09/16/2015',' '); +INSERT INTO entity_versions VALUES(2718,367,'1.7','11/30/2015',' '); +INSERT INTO entity_versions VALUES(2719,367,'1.8','02/22/2016',' '); +INSERT INTO entity_versions VALUES(2720,367,'2','09/22/2016',' '); +INSERT INTO entity_versions VALUES(2721,367,'2.1','11/08/2016',' '); +INSERT INTO entity_versions VALUES(2722,367,'2.2','02/22/2017',' '); +INSERT INTO entity_versions VALUES(2723,367,'2.3','04/27/2017',' '); +INSERT INTO entity_versions VALUES(2724,367,'2.4','06/27/2017',' '); +INSERT INTO entity_versions VALUES(2725,367,'2.5','08/31/2017',' '); +INSERT INTO entity_versions VALUES(2726,367,'2.6','10/31/2017',' '); +INSERT INTO entity_versions VALUES(2727,367,'2.7','01/31/2018',' '); +INSERT INTO entity_versions VALUES(2728,367,'2.8','03/27/2018',' '); +INSERT INTO entity_versions VALUES(2729,367,'2.9','05/14/2018',' '); +INSERT INTO entity_versions VALUES(2730,367,'3','07/30/2018',' '); +INSERT INTO entity_versions VALUES(2731,367,'3.1','09/27/2018',' '); +INSERT INTO entity_versions VALUES(2732,367,'3.2','11/30/2018',' '); +INSERT INTO entity_versions VALUES(2733,367,'3.3','01/31/2019',' '); +INSERT INTO entity_versions VALUES(2734,367,'3.4','03/29/2019',' '); +INSERT INTO entity_versions VALUES(2735,367,'3.5','05/29/2019',' '); +INSERT INTO entity_versions VALUES(2736,367,'3.6','08/28/2019',' '); +INSERT INTO entity_versions VALUES(2737,367,'3.7','11/05/2019',' '); +INSERT INTO entity_versions VALUES(2738,367,'3.8','02/20/2020',' '); +INSERT INTO entity_versions VALUES(2739,367,'3.9','05/12/2020',' '); +INSERT INTO entity_versions VALUES(2740,367,'4','08/20/2020',' '); +INSERT INTO entity_versions VALUES(2741,367,'4.1','11/19/2020',' '); +INSERT INTO entity_versions VALUES(2742,367,'4.2','02/25/2021',' '); +INSERT INTO entity_versions VALUES(2743,367,'4.3','05/26/2021',' '); +INSERT INTO entity_versions VALUES(2744,367,'4.4','08/26/2021',' '); +INSERT INTO entity_versions VALUES(2745,584,'JDK Beta','12/31/1995',' '); +INSERT INTO entity_versions VALUES(2746,584,'1.0','01/01/1996',' '); +INSERT INTO entity_versions VALUES(2747,584,'1.1','02/01/1997',' '); +INSERT INTO entity_versions VALUES(2748,584,'1.2','12/01/1998',' '); +INSERT INTO entity_versions VALUES(2749,584,'1.3','05/01/2000',' '); +INSERT INTO entity_versions VALUES(2750,584,'1.4','02/01/2002','10/01/2008'); +INSERT INTO entity_versions VALUES(2751,584,'5.0','09/01/2004','11/01/2009'); +INSERT INTO entity_versions VALUES(2752,584,'6','12/01/2006','04/01/2013'); +INSERT INTO entity_versions VALUES(2753,584,'7','07/01/2011','04/01/2015'); +INSERT INTO entity_versions VALUES(2754,584,'8','03/01/2014','12/01/1930'); +INSERT INTO entity_versions VALUES(2755,584,'9','09/01/2017','03/01/2018'); +INSERT INTO entity_versions VALUES(2756,584,'10','03/01/2018','09/01/2026'); +INSERT INTO entity_versions VALUES(2757,584,'11','09/01/2018','10/01/2024'); +INSERT INTO entity_versions VALUES(2758,584,'12','03/01/2019','09/01/2019'); +INSERT INTO entity_versions VALUES(2759,584,'13','09/01/2019','03/01/2020'); +INSERT INTO entity_versions VALUES(2760,584,'14','03/01/2020','09/01/2020'); +INSERT INTO entity_versions VALUES(2761,584,'15','09/01/2020','03/01/2021'); +INSERT INTO entity_versions VALUES(2762,584,'16','03/01/2021','09/01/2021'); +INSERT INTO entity_versions VALUES(2763,584,'17','09/01/2021','09/01/2029'); +INSERT INTO entity_versions VALUES(2764,584,'18','03/01/2022','09/01/2022'); +INSERT INTO entity_versions VALUES(2765,584,'19','09/01/2022','03/01/2023'); +INSERT INTO entity_versions VALUES(2766,584,'20','03/01/2023','01/09/2023'); +INSERT INTO entity_versions VALUES(2767,584,'21','09/01/2023',' '); +INSERT INTO entity_versions VALUES(2768,585,'1','12/18/1987',' '); +INSERT INTO entity_versions VALUES(2769,585,'4','12/31/1993',' '); +INSERT INTO entity_versions VALUES(2770,585,'5','10/17/1994',' '); +INSERT INTO entity_versions VALUES(2771,585,'5.001','03/13/1995',' '); +INSERT INTO entity_versions VALUES(2772,585,'5.002','02/29/1996',' '); +INSERT INTO entity_versions VALUES(2773,585,'5.003','06/25/1996',' '); +INSERT INTO entity_versions VALUES(2774,585,'5.004','05/15/1997',' '); +INSERT INTO entity_versions VALUES(2775,585,'5.005','07/22/1998',' '); +INSERT INTO entity_versions VALUES(2776,585,'5.6','03/22/2020',' '); +INSERT INTO entity_versions VALUES(2777,585,'5.8','07/18/2002',' '); +INSERT INTO entity_versions VALUES(2778,585,'5.10.0','12/18/2007',' '); +INSERT INTO entity_versions VALUES(2779,585,'5.11',' ',' '); +INSERT INTO entity_versions VALUES(2780,585,'5.12','04/12/2010',' '); +INSERT INTO entity_versions VALUES(2781,585,'5.12.3','01/21/2011',' '); +INSERT INTO entity_versions VALUES(2782,585,'5.12.4','06/20/2011',' '); +INSERT INTO entity_versions VALUES(2783,585,'5.12.5','11/10/2012',' '); +INSERT INTO entity_versions VALUES(2784,585,'5.14','05/14/2011',' '); +INSERT INTO entity_versions VALUES(2785,585,'5.16','05/20/2012',' '); +INSERT INTO entity_versions VALUES(2786,585,'5.18','05/18/2013',' '); +INSERT INTO entity_versions VALUES(2787,585,'5.20.0','05/27/2014',' '); +INSERT INTO entity_versions VALUES(2788,368,'7.0','12/31/2002',' '); +INSERT INTO entity_versions VALUES(2789,368,'7.1','12/31/2003',' '); +INSERT INTO entity_versions VALUES(2790,368,'8.0','12/31/2005',' '); +INSERT INTO entity_versions VALUES(2791,368,'9.0','11/19/2007',' '); +INSERT INTO entity_versions VALUES(2792,368,'10.0','04/01/2010',' '); +INSERT INTO entity_versions VALUES(2793,368,'11.0','12/31/2012',' '); +INSERT INTO entity_versions VALUES(2794,368,'12.0','12/31/2013',' '); +INSERT INTO entity_versions VALUES(2795,368,'14.0','12/31/2015',' '); +INSERT INTO entity_versions VALUES(2796,368,'15.0','12/31/2017',' '); +INSERT INTO entity_versions VALUES(2797,368,'16.0','12/31/2019',' '); +INSERT INTO entity_versions VALUES(2798,315,'1','09/01/1987',' '); +INSERT INTO entity_versions VALUES(2799,315,'2','04/01/1990',' '); +INSERT INTO entity_versions VALUES(2800,315,'3','10/01/1991',' '); +INSERT INTO entity_versions VALUES(2801,315,'4','01/01/1993',' '); +INSERT INTO entity_versions VALUES(2802,315,'5','03/01/1994',' '); +INSERT INTO entity_versions VALUES(2803,315,'5.45.5','02/04/2018',' '); +INSERT INTO entity_versions VALUES(2804,364,'1.0','09/09/2014',' '); +INSERT INTO entity_versions VALUES(2805,364,'1.1','10/22/2014',' '); +INSERT INTO entity_versions VALUES(2806,364,'1.2','04/08/2015',' '); +INSERT INTO entity_versions VALUES(2807,364,'2.0','09/21/2015',' '); +INSERT INTO entity_versions VALUES(2808,364,'2.1','10/20/2015',' '); +INSERT INTO entity_versions VALUES(2809,364,'2.2','03/21/2016',' '); +INSERT INTO entity_versions VALUES(2810,364,'2.2.1','05/03/2016',' '); +INSERT INTO entity_versions VALUES(2811,364,'3.0','09/13/2016',' '); +INSERT INTO entity_versions VALUES(2812,364,'3.0.1','10/28/2016',' '); +INSERT INTO entity_versions VALUES(2813,364,'3.0.2','12/13/2016',' '); +INSERT INTO entity_versions VALUES(2814,364,'3.1','03/27/2017',' '); +INSERT INTO entity_versions VALUES(2815,364,'3.1.1','04/21/2017',' '); +INSERT INTO entity_versions VALUES(2816,364,'4.0','09/19/2017',' '); +INSERT INTO entity_versions VALUES(2817,364,'4.0.2','11/01/2017',' '); +INSERT INTO entity_versions VALUES(2818,364,'4.0.3','12/05/2017',' '); +INSERT INTO entity_versions VALUES(2819,364,'4.1','03/29/2018',' '); +INSERT INTO entity_versions VALUES(2820,364,'4.1.1','05/04/2018',' '); +INSERT INTO entity_versions VALUES(2821,364,'4.1.2','05/31/2018',' '); +INSERT INTO entity_versions VALUES(2822,364,'4.1.3','07/27/2018',' '); +INSERT INTO entity_versions VALUES(2823,364,'4.2','09/17/2018',' '); +INSERT INTO entity_versions VALUES(2824,364,'4.2.1','10/30/2018',' '); +INSERT INTO entity_versions VALUES(2825,364,'4.2.2','02/04/2019',' '); +INSERT INTO entity_versions VALUES(2826,364,'4.2.3','02/28/2019',' '); +INSERT INTO entity_versions VALUES(2827,364,'4.2.4','03/29/2019',' '); +INSERT INTO entity_versions VALUES(2828,364,'5.0','03/25/2019',' '); +INSERT INTO entity_versions VALUES(2829,364,'5.0.1','04/18/2019',' '); +INSERT INTO entity_versions VALUES(2830,364,'5.0.2','07/15/2019',' '); +INSERT INTO entity_versions VALUES(2831,364,'5.0.3','08/30/2019',' '); +INSERT INTO entity_versions VALUES(2832,364,'5.1','09/10/2019',' '); +INSERT INTO entity_versions VALUES(2833,364,'5.1.1','10/11/2019',' '); +INSERT INTO entity_versions VALUES(2834,364,'5.1.2','11/07/2019',' '); +INSERT INTO entity_versions VALUES(2835,364,'5.1.3','12/13/2019',' '); +INSERT INTO entity_versions VALUES(2836,364,'5.1.4','01/31/2020',' '); +INSERT INTO entity_versions VALUES(2837,364,'5.1.5','03/09/2020',' '); +INSERT INTO entity_versions VALUES(2838,364,'5.2','03/24/2020',' '); +INSERT INTO entity_versions VALUES(2839,364,'5.2.1','03/30/2020',' '); +INSERT INTO entity_versions VALUES(2840,364,'5.2.2','04/15/2020',' '); +INSERT INTO entity_versions VALUES(2841,364,'5.2.3','04/29/2020',' '); +INSERT INTO entity_versions VALUES(2842,364,'5.2.4','05/20/2020',' '); +INSERT INTO entity_versions VALUES(2843,364,'5.2.5','08/05/2020',' '); +INSERT INTO entity_versions VALUES(2844,364,'5.3','09/16/2020',' '); +INSERT INTO entity_versions VALUES(2845,364,'5.3.1','11/13/2020',' '); +INSERT INTO entity_versions VALUES(2846,364,'5.3.2','12/15/2020',' '); +INSERT INTO entity_versions VALUES(2847,364,'5.3.3','01/25/2021',' '); +INSERT INTO entity_versions VALUES(2848,364,'5.4','04/26/2021',' '); +INSERT INTO entity_versions VALUES(2849,364,'5.4.1','05/25/2021',' '); +INSERT INTO entity_versions VALUES(2850,364,'5.4.2','06/28/2021',' '); +INSERT INTO entity_versions VALUES(2851,364,'5.4.3','09/09/2021',' '); +INSERT INTO entity_versions VALUES(2852,364,'5.5','09/20/2021',' '); +INSERT INTO entity_versions VALUES(2853,341,'ACL2','12/31/1990',' '); +INSERT INTO entity_versions VALUES(2854,341,'Arc','12/31/2008',' '); +INSERT INTO entity_versions VALUES(2855,341,'AutoLISP','12/31/1986',' '); +INSERT INTO entity_versions VALUES(2856,341,'BBN LISP','12/31/2066',' '); +INSERT INTO entity_versions VALUES(2857,341,'Chez Scheme','12/31/1985',' '); +INSERT INTO entity_versions VALUES(2858,341,'Chicken','12/31/2000',' '); +INSERT INTO entity_versions VALUES(2859,341,'Clojure','12/31/2007',' '); +INSERT INTO entity_versions VALUES(2860,341,'ANSI Common Lisp','12/31/1994',' '); +INSERT INTO entity_versions VALUES(2861,341,'Common Lisp','12/31/1984',' '); +INSERT INTO entity_versions VALUES(2862,341,'Dylan','12/31/1992',' '); +INSERT INTO entity_versions VALUES(2863,341,'Emacs Lisp','12/31/1976',' '); +INSERT INTO entity_versions VALUES(2864,341,'EuLisp','12/31/1990',' '); +INSERT INTO entity_versions VALUES(2865,341,'Franz Lisp','12/31/1980',' '); +INSERT INTO entity_versions VALUES(2866,341,'Game Oriented Assembly Lisp (GOAL)','12/31/2000',' '); +INSERT INTO entity_versions VALUES(2867,341,'Hy','12/31/2013',' '); +INSERT INTO entity_versions VALUES(2868,341,'Ikarus','12/31/2007',' '); +INSERT INTO entity_versions VALUES(2869,341,'Interlisp','12/31/2067',' '); +INSERT INTO entity_versions VALUES(2870,341,'ISLISP','12/31/1997',' '); +INSERT INTO entity_versions VALUES(2871,341,'Le Lisp','12/31/1981',' '); +INSERT INTO entity_versions VALUES(2872,341,'Lisp Flavored Erlang (LFE)','12/31/2008',' '); +INSERT INTO entity_versions VALUES(2873,341,'Lisp Machine Lisp','12/31/1984',' '); +INSERT INTO entity_versions VALUES(2874,341,'Maclisp','12/31/2066',' '); +INSERT INTO entity_versions VALUES(2875,341,'MultiLisp','12/31/1980',' '); +INSERT INTO entity_versions VALUES(2876,341,'NIL','12/31/2070',' '); +INSERT INTO entity_versions VALUES(2877,341,'OpenLisp','12/31/1988',' '); +INSERT INTO entity_versions VALUES(2878,341,'Owl Lisp','12/31/2012',' '); +INSERT INTO entity_versions VALUES(2879,341,'PicoLisp','12/31/1988',' '); +INSERT INTO entity_versions VALUES(2880,341,'Portable Standard Lisp','12/31/1980',' '); +INSERT INTO entity_versions VALUES(2881,341,'Racket','12/31/1994',' '); +INSERT INTO entity_versions VALUES(2882,341,'Scheme','12/31/2070',' '); +INSERT INTO entity_versions VALUES(2883,341,'Scheme In One Defun (SIOD)','12/31/1988',' '); +INSERT INTO entity_versions VALUES(2884,341,'SKILL','12/31/1990',' '); +INSERT INTO entity_versions VALUES(2885,341,'TXR Lisp','12/31/2009',' '); +INSERT INTO entity_versions VALUES(2886,587,'3.10.0','10/04/2021',' '); +INSERT INTO entity_versions VALUES(2887,587,'3.9.7','08/30/2021',' '); +INSERT INTO entity_versions VALUES(2888,587,'3.9.6','06/28/2021',' '); +INSERT INTO entity_versions VALUES(2889,587,'3.9.5','05/03/2021',' '); +INSERT INTO entity_versions VALUES(2890,587,'3.9.4','04/04/2021',' '); +INSERT INTO entity_versions VALUES(2891,587,'3.9.3','04/02/2021',' '); +INSERT INTO entity_versions VALUES(2892,587,'3.9.2','02/19/2021',' '); +INSERT INTO entity_versions VALUES(2893,587,'3.9.1','12/08/2020',' '); +INSERT INTO entity_versions VALUES(2894,587,'3.9.0','10/05/2020',' '); +INSERT INTO entity_versions VALUES(2895,587,'3.8.12','08/30/2021',' '); +INSERT INTO entity_versions VALUES(2896,587,'3.8.11','06/28/2021',' '); +INSERT INTO entity_versions VALUES(2897,587,'3.8.10','05/03/2021',' '); +INSERT INTO entity_versions VALUES(2898,587,'3.8.9','04/02/2021',' '); +INSERT INTO entity_versions VALUES(2899,587,'3.8.8','02/19/2021',' '); +INSERT INTO entity_versions VALUES(2900,587,'3.8.7','12/21/2020',' '); +INSERT INTO entity_versions VALUES(2901,587,'3.8.6','09/23/2020',' '); +INSERT INTO entity_versions VALUES(2902,587,'3.8.5','07/20/2020',' '); +INSERT INTO entity_versions VALUES(2903,587,'3.8.4','07/13/2020',' '); +INSERT INTO entity_versions VALUES(2904,587,'3.8.3','05/13/2020',' '); +INSERT INTO entity_versions VALUES(2905,587,'3.8.2','02/24/2020',' '); +INSERT INTO entity_versions VALUES(2906,587,'3.8.1','12/18/2019',' '); +INSERT INTO entity_versions VALUES(2907,587,'3.8.0','10/14/2019',' '); +INSERT INTO entity_versions VALUES(2908,587,'3.7.12','09/04/2021',' '); +INSERT INTO entity_versions VALUES(2909,587,'3.7.11','06/28/2021',' '); +INSERT INTO entity_versions VALUES(2910,587,'3.7.10','02/15/2021',' '); +INSERT INTO entity_versions VALUES(2911,587,'3.7.9','08/17/2020',' '); +INSERT INTO entity_versions VALUES(2912,587,'3.7.8','06/27/2020',' '); +INSERT INTO entity_versions VALUES(2913,587,'3.7.7','03/10/2020',' '); +INSERT INTO entity_versions VALUES(2914,587,'3.7.6','12/18/2019',' '); +INSERT INTO entity_versions VALUES(2915,587,'3.7.5','10/15/2019',' '); +INSERT INTO entity_versions VALUES(2916,587,'3.7.4','07/08/2019',' '); +INSERT INTO entity_versions VALUES(2917,587,'3.7.3','03/25/2019',' '); +INSERT INTO entity_versions VALUES(2918,587,'3.7.2','12/24/2018',' '); +INSERT INTO entity_versions VALUES(2919,587,'3.7.1','10/20/2018',' '); +INSERT INTO entity_versions VALUES(2920,587,'3.7.0','06/27/2018',' '); +INSERT INTO entity_versions VALUES(2921,587,'3.6.15','09/04/2021',' '); +INSERT INTO entity_versions VALUES(2922,587,'3.6.14','06/28/2021',' '); +INSERT INTO entity_versions VALUES(2923,587,'3.6.13','02/15/2021',' '); +INSERT INTO entity_versions VALUES(2924,587,'3.6.12','08/17/2020',' '); +INSERT INTO entity_versions VALUES(2925,587,'3.6.11','06/27/2020',' '); +INSERT INTO entity_versions VALUES(2926,587,'3.6.10','12/18/2019',' '); +INSERT INTO entity_versions VALUES(2927,587,'3.6.9','07/02/2019',' '); +INSERT INTO entity_versions VALUES(2928,587,'3.6.8','12/24/2018',' '); +INSERT INTO entity_versions VALUES(2929,587,'3.6.7','10/20/2018',' '); +INSERT INTO entity_versions VALUES(2930,587,'3.6.6','06/27/2018',' '); +INSERT INTO entity_versions VALUES(2931,587,'3.6.5','03/28/2018',' '); +INSERT INTO entity_versions VALUES(2932,587,'3.6.4','12/19/2017',' '); +INSERT INTO entity_versions VALUES(2933,587,'3.6.3','10/03/2017',' '); +INSERT INTO entity_versions VALUES(2934,587,'3.6.2','07/17/2017',' '); +INSERT INTO entity_versions VALUES(2935,587,'3.6.1','03/21/2017',' '); +INSERT INTO entity_versions VALUES(2936,587,'3.6.0','12/23/2016',' '); +INSERT INTO entity_versions VALUES(2937,587,'3.5.10','09/05/2020',' '); +INSERT INTO entity_versions VALUES(2938,587,'3.5.8','11/01/2019',' '); +INSERT INTO entity_versions VALUES(2939,587,'3.5.7','03/18/2019',' '); +INSERT INTO entity_versions VALUES(2940,587,'3.5.6','08/08/2018',' '); +INSERT INTO entity_versions VALUES(2941,587,'3.5.5','02/04/2018',' '); +INSERT INTO entity_versions VALUES(2942,587,'3.5.4','07/25/2017',' '); +INSERT INTO entity_versions VALUES(2943,587,'3.5.3','01/17/2017',' '); +INSERT INTO entity_versions VALUES(2944,587,'3.5.2','06/27/2016',' '); +INSERT INTO entity_versions VALUES(2945,587,'3.5.1','12/07/2015',' '); +INSERT INTO entity_versions VALUES(2946,587,'3.5.0','09/13/2015',' '); +INSERT INTO entity_versions VALUES(2947,587,'3.4.10','03/18/2019',' '); +INSERT INTO entity_versions VALUES(2948,587,'3.4.9','08/08/2018',' '); +INSERT INTO entity_versions VALUES(2949,587,'3.4.8','02/04/2018',' '); +INSERT INTO entity_versions VALUES(2950,587,'3.4.7','07/25/2017',' '); +INSERT INTO entity_versions VALUES(2951,587,'3.4.6','01/17/2017',' '); +INSERT INTO entity_versions VALUES(2952,587,'3.4.5','06/26/2016',' '); +INSERT INTO entity_versions VALUES(2953,587,'3.4.4','12/06/2015',' '); +INSERT INTO entity_versions VALUES(2954,587,'3.4.3','02/25/2015',' '); +INSERT INTO entity_versions VALUES(2955,587,'3.4.2','10/04/2014',' '); +INSERT INTO entity_versions VALUES(2956,587,'3.4.1','05/18/2014',' '); +INSERT INTO entity_versions VALUES(2957,587,'3.4.0','03/16/2014',' '); +INSERT INTO entity_versions VALUES(2958,587,'3.3.7','09/19/2017',' '); +INSERT INTO entity_versions VALUES(2959,587,'3.3.6','10/12/2014',' '); +INSERT INTO entity_versions VALUES(2960,587,'3.3.5','03/09/2014',' '); +INSERT INTO entity_versions VALUES(2961,587,'3.3.4','02/09/2014',' '); +INSERT INTO entity_versions VALUES(2962,587,'3.3.3','11/17/2013',' '); +INSERT INTO entity_versions VALUES(2963,587,'3.3.2','05/15/2013',' '); +INSERT INTO entity_versions VALUES(2964,587,'3.3.1','04/07/2013',' '); +INSERT INTO entity_versions VALUES(2965,587,'3.3.0','09/29/2012',' '); +INSERT INTO entity_versions VALUES(2966,587,'3.2.6','10/11/2014',' '); +INSERT INTO entity_versions VALUES(2967,587,'3.2.5','05/15/2013',' '); +INSERT INTO entity_versions VALUES(2968,587,'3.2.4','04/07/2013',' '); +INSERT INTO entity_versions VALUES(2969,587,'3.2.3','04/10/2012',' '); +INSERT INTO entity_versions VALUES(2970,587,'3.2.2','09/04/2011',' '); +INSERT INTO entity_versions VALUES(2971,587,'3.2.1','07/10/2011',' '); +INSERT INTO entity_versions VALUES(2972,587,'3.2','02/20/2011',' '); +INSERT INTO entity_versions VALUES(2973,587,'3.1.5','04/09/2012',' '); +INSERT INTO entity_versions VALUES(2974,587,'3.1.4','06/11/2011',' '); +INSERT INTO entity_versions VALUES(2975,587,'3.1.3','11/27/2010',' '); +INSERT INTO entity_versions VALUES(2976,587,'3.1.2','03/21/2010',' '); +INSERT INTO entity_versions VALUES(2977,587,'3.1.1','08/17/2009',' '); +INSERT INTO entity_versions VALUES(2978,587,'3.1','06/27/2009',' '); +INSERT INTO entity_versions VALUES(2979,587,'3.0.1','02/13/2009',' '); +INSERT INTO entity_versions VALUES(2980,587,'3','12/03/2008',' '); +INSERT INTO entity_versions VALUES(2981,587,'2.7.18','04/20/2020',' '); +INSERT INTO entity_versions VALUES(2982,587,'2.7.17','10/19/2019',' '); +INSERT INTO entity_versions VALUES(2983,587,'2.7.16','03/02/2019',' '); +INSERT INTO entity_versions VALUES(2984,587,'2.7.15','04/30/2018',' '); +INSERT INTO entity_versions VALUES(2985,587,'2.7.14','09/16/2017',' '); +INSERT INTO entity_versions VALUES(2986,587,'2.7.13','12/17/2016',' '); +INSERT INTO entity_versions VALUES(2987,587,'2.7.12','06/26/2016',' '); +INSERT INTO entity_versions VALUES(2988,587,'2.7.11','12/05/2015',' '); +INSERT INTO entity_versions VALUES(2989,587,'2.7.10','05/23/2015',' '); +INSERT INTO entity_versions VALUES(2990,587,'2.7.9','12/10/2014',' '); +INSERT INTO entity_versions VALUES(2991,587,'2.7.8','07/01/2014',' '); +INSERT INTO entity_versions VALUES(2992,587,'2.7.7','05/31/2014',' '); +INSERT INTO entity_versions VALUES(2993,587,'2.7.6','11/10/2013',' '); +INSERT INTO entity_versions VALUES(2994,587,'2.7.5','05/15/2013',' '); +INSERT INTO entity_versions VALUES(2995,587,'2.7.4','04/06/2013',' '); +INSERT INTO entity_versions VALUES(2996,587,'2.7.3','04/09/2012',' '); +INSERT INTO entity_versions VALUES(2997,587,'2.7.2','06/11/2011',' '); +INSERT INTO entity_versions VALUES(2998,587,'2.7.1','11/27/2010',' '); +INSERT INTO entity_versions VALUES(2999,587,'2.7','07/04/2010',' '); +INSERT INTO entity_versions VALUES(3000,587,'2.6.9','10/29/2013',' '); +INSERT INTO entity_versions VALUES(3001,587,'2.6.8','04/10/2012',' '); +INSERT INTO entity_versions VALUES(3002,587,'2.6.7','06/03/2011',' '); +INSERT INTO entity_versions VALUES(3003,587,'2.6.6','08/24/2010',' '); +INSERT INTO entity_versions VALUES(3004,587,'2.6.5','03/19/2010',' '); +INSERT INTO entity_versions VALUES(3005,587,'2.6.4','10/25/2009',' '); +INSERT INTO entity_versions VALUES(3006,587,'2.6.3','10/02/2009',' '); +INSERT INTO entity_versions VALUES(3007,587,'2.6.2','04/14/2009',' '); +INSERT INTO entity_versions VALUES(3008,587,'2.6.1','12/04/2008',' '); +INSERT INTO entity_versions VALUES(3009,587,'2.6','10/01/2008',' '); +INSERT INTO entity_versions VALUES(3010,587,'2.5.4','12/23/2008',' '); +INSERT INTO entity_versions VALUES(3011,587,'2.5.3','12/19/2008',' '); +INSERT INTO entity_versions VALUES(3012,587,'2.5.2','02/21/2008',' '); +INSERT INTO entity_versions VALUES(3013,587,'2.5.1','04/18/2007',' '); +INSERT INTO entity_versions VALUES(3014,587,'2.5','09/19/2006',' '); +INSERT INTO entity_versions VALUES(3015,587,'2.4.4','10/18/2006',' '); +INSERT INTO entity_versions VALUES(3016,587,'2.4.3','03/29/2006',' '); +INSERT INTO entity_versions VALUES(3017,587,'2.4.2','09/28/2005',' '); +INSERT INTO entity_versions VALUES(3018,587,'2.4.1','03/30/2005',' '); +INSERT INTO entity_versions VALUES(3019,587,'2.4','11/30/2004',' '); +INSERT INTO entity_versions VALUES(3020,587,'2.3.5','02/08/2005',' '); +INSERT INTO entity_versions VALUES(3021,587,'2.3.4','05/27/2004',' '); +INSERT INTO entity_versions VALUES(3022,587,'2.3.3','12/19/2003',' '); +INSERT INTO entity_versions VALUES(3023,587,'2.3.2','10/03/2003',' '); +INSERT INTO entity_versions VALUES(3024,587,'2.3.1','09/23/2003',' '); +INSERT INTO entity_versions VALUES(3025,587,'2.3','07/29/2003',' '); +INSERT INTO entity_versions VALUES(3026,587,'2.2.3','05/30/2003',' '); +INSERT INTO entity_versions VALUES(3027,587,'2.2.2','10/14/2002',' '); +INSERT INTO entity_versions VALUES(3028,587,'2.2.1','04/10/2002',' '); +INSERT INTO entity_versions VALUES(3029,587,'2.2.0','03/29/2002',' '); +INSERT INTO entity_versions VALUES(3030,587,'2.2','12/21/2001',' '); +INSERT INTO entity_versions VALUES(3031,587,'2.1.3','04/08/2002',' '); +INSERT INTO entity_versions VALUES(3032,587,'2.1.2','01/16/2002',' '); +INSERT INTO entity_versions VALUES(3033,587,'2.1.1','07/20/2001',' '); +INSERT INTO entity_versions VALUES(3034,587,'2.1','04/15/2001',' '); +INSERT INTO entity_versions VALUES(3035,587,'2.0.1','06/22/2001',' '); +INSERT INTO entity_versions VALUES(3036,587,'2','10/16/2000',' '); +INSERT INTO entity_versions VALUES(3037,587,'1.6','09/05/2000',' '); +INSERT INTO entity_versions VALUES(3038,587,'1.5.2p2','03/22/2000',' '); +INSERT INTO entity_versions VALUES(3039,587,'1.5.2p1','07/06/1999',' '); +INSERT INTO entity_versions VALUES(3040,587,'1.5.2','04/30/1999',' '); +INSERT INTO entity_versions VALUES(3041,587,'1.5.1p1','08/06/1998',' '); +INSERT INTO entity_versions VALUES(3042,587,'1.5.1','04/14/1998',' '); +INSERT INTO entity_versions VALUES(3043,587,'1.5','02/17/1998',' '); +INSERT INTO entity_versions VALUES(3044,587,'1.4','10/25/1996',' '); +INSERT INTO entity_versions VALUES(3045,587,'1','01/01/1994',' '); +INSERT INTO entity_versions VALUES(3046,355,'4.1.1','08/30/2021',' '); +INSERT INTO entity_versions VALUES(3047,355,'4.1.0','05/30/2021',' '); +INSERT INTO entity_versions VALUES(3048,355,'4.0.5','03/30/2021',' '); +INSERT INTO entity_versions VALUES(3049,355,'4.0.4','02/28/2020',' '); +INSERT INTO entity_versions VALUES(3050,355,'4.0.3','10/30/2020',' '); +INSERT INTO entity_versions VALUES(3051,355,'4.0.2','06/30/2020',' '); +INSERT INTO entity_versions VALUES(3052,355,'4.0.1','06/30/2020',' '); +INSERT INTO entity_versions VALUES(3053,355,'4.0.0','04/30/2020',' '); +INSERT INTO entity_versions VALUES(3054,355,'3.6.3','02/28/2019',' '); +INSERT INTO entity_versions VALUES(3055,355,'3.6.2','12/30/2019',' '); +INSERT INTO entity_versions VALUES(3056,355,'3.6.1','07/30/2019',' '); +INSERT INTO entity_versions VALUES(3057,355,'3.6.0','04/30/2019',' '); +INSERT INTO entity_versions VALUES(3058,355,'3.5.3','03/30/2018',' '); +INSERT INTO entity_versions VALUES(3059,355,'3.5.2','12/30/2018',' '); +INSERT INTO entity_versions VALUES(3060,355,'3.5.1','07/30/2018',' '); +INSERT INTO entity_versions VALUES(3061,355,'3.5.0','04/30/2018',' '); +INSERT INTO entity_versions VALUES(3062,355,'3.4.4','03/30/2017',' '); +INSERT INTO entity_versions VALUES(3063,355,'3.4.3','11/30/2017',' '); +INSERT INTO entity_versions VALUES(3064,355,'3.4.2','09/30/2017',' '); +INSERT INTO entity_versions VALUES(3065,355,'3.4.1','06/30/2017',' '); +INSERT INTO entity_versions VALUES(3066,355,'3.4.0','04/30/2017',' '); +INSERT INTO entity_versions VALUES(3067,355,'3.3.3','03/30/2016',' '); +INSERT INTO entity_versions VALUES(3068,355,'3.3.2','10/30/2016',' '); +INSERT INTO entity_versions VALUES(3069,355,'3.3.1','06/30/2016',' '); +INSERT INTO entity_versions VALUES(3070,355,'3.3.0','04/30/2016',' '); +INSERT INTO entity_versions VALUES(3071,355,'3.2.5','04/30/2016',' '); +INSERT INTO entity_versions VALUES(3072,355,'3.2.4','03/30/2015',' '); +INSERT INTO entity_versions VALUES(3073,355,'3.2.3','12/30/2015',' '); +INSERT INTO entity_versions VALUES(3074,355,'3.2.2','08/30/2015',' '); +INSERT INTO entity_versions VALUES(3075,355,'3.2.1','06/30/2015',' '); +INSERT INTO entity_versions VALUES(3076,355,'3.2.0','04/30/2015',' '); +INSERT INTO entity_versions VALUES(3077,355,'3.1.3','03/30/2014',' '); +INSERT INTO entity_versions VALUES(3078,355,'3.1.2','10/30/2014',' '); +INSERT INTO entity_versions VALUES(3079,355,'3.1.1','07/30/2014',' '); +INSERT INTO entity_versions VALUES(3080,355,'3.1.0','04/30/2014',' '); +INSERT INTO entity_versions VALUES(3081,355,'3.0.3','03/30/2014',' '); +INSERT INTO entity_versions VALUES(3082,355,'3.0.2','09/30/2013',' '); +INSERT INTO entity_versions VALUES(3083,355,'3.0.1','05/30/2013',' '); +INSERT INTO entity_versions VALUES(3084,355,'3.0.0','04/30/2013',' '); +INSERT INTO entity_versions VALUES(3085,355,'2.15.3','03/30/2013',' '); +INSERT INTO entity_versions VALUES(3086,355,'2.15.2','10/30/2012',' '); +INSERT INTO entity_versions VALUES(3087,355,'2.15.1','06/30/2012',' '); +INSERT INTO entity_versions VALUES(3088,355,'2.15.0','03/30/2012',' '); +INSERT INTO entity_versions VALUES(3089,355,'2.14.2','02/28/2012',' '); +INSERT INTO entity_versions VALUES(3090,355,'2.14.1','12/30/2011',' '); +INSERT INTO entity_versions VALUES(3091,355,'2.14.0','11/30/2011',' '); +INSERT INTO entity_versions VALUES(3092,355,'2.13.2','09/30/2011',' '); +INSERT INTO entity_versions VALUES(3093,355,'2.13.1','07/30/2011',' '); +INSERT INTO entity_versions VALUES(3094,355,'2.13.0','04/30/2011',' '); +INSERT INTO entity_versions VALUES(3095,355,'2.12.2','02/28/2011',' '); +INSERT INTO entity_versions VALUES(3096,355,'2.12.1','12/30/2010',' '); +INSERT INTO entity_versions VALUES(3097,355,'2.12.0','10/30/2010',' '); +INSERT INTO entity_versions VALUES(3098,355,'2.11.1','05/30/2010',' '); +INSERT INTO entity_versions VALUES(3099,355,'2.11.0','04/30/2010',' '); +INSERT INTO entity_versions VALUES(3100,355,'2.10.1','12/30/2009',' '); +INSERT INTO entity_versions VALUES(3101,355,'2.10.0','10/30/2009',' '); +INSERT INTO entity_versions VALUES(3102,355,'2.9.2','08/30/2009',' '); +INSERT INTO entity_versions VALUES(3103,355,'2.9.1','06/30/2009',' '); +INSERT INTO entity_versions VALUES(3104,355,'2.9.0','04/30/2009',' '); +INSERT INTO entity_versions VALUES(3105,355,'2.8.1','12/30/2008',' '); +INSERT INTO entity_versions VALUES(3106,355,'2.8.0','10/30/2008',' '); +INSERT INTO entity_versions VALUES(3107,355,'2.7.2','08/30/2008',' '); +INSERT INTO entity_versions VALUES(3108,355,'2.7.1','06/30/2008',' '); +INSERT INTO entity_versions VALUES(3109,355,'2.7.0','04/30/2008',' '); +INSERT INTO entity_versions VALUES(3110,355,'2.6.2','02/28/2008',' '); +INSERT INTO entity_versions VALUES(3111,355,'2.6.1','11/30/2007',' '); +INSERT INTO entity_versions VALUES(3112,355,'2.6.0','10/30/2007',' '); +INSERT INTO entity_versions VALUES(3113,355,'2.5.1','07/30/2007',' '); +INSERT INTO entity_versions VALUES(3114,355,'2.5.0','04/30/2007',' '); +INSERT INTO entity_versions VALUES(3115,355,'2.4.1','12/30/2006',' '); +INSERT INTO entity_versions VALUES(3116,355,'2.4.0','10/30/2006',' '); +INSERT INTO entity_versions VALUES(3117,355,'2.3.1','06/30/2006',' '); +INSERT INTO entity_versions VALUES(3118,355,'2.3.0','04/30/2006',' '); +INSERT INTO entity_versions VALUES(3119,355,'2.2.1','12/30/2005',' '); +INSERT INTO entity_versions VALUES(3120,355,'2.2.0','10/30/2005',' '); +INSERT INTO entity_versions VALUES(3121,355,'2.1.1','06/30/2005',' '); +INSERT INTO entity_versions VALUES(3122,355,'2.1.0','04/30/2005',' '); +INSERT INTO entity_versions VALUES(3123,355,'2.0.1','11/30/2004',' '); +INSERT INTO entity_versions VALUES(3124,355,'2.0.0','10/30/2004',' '); +INSERT INTO entity_versions VALUES(3125,355,'1.9.1','06/30/2004',' '); +INSERT INTO entity_versions VALUES(3126,355,'1.8.1','11/30/2003',' '); +INSERT INTO entity_versions VALUES(3127,355,'1.7.1','06/30/2003',' '); +INSERT INTO entity_versions VALUES(3128,355,'1.6.2','01/30/2003',' '); +INSERT INTO entity_versions VALUES(3129,355,'1.5.1','06/30/2002',' '); +INSERT INTO entity_versions VALUES(3130,355,'1.4.1','01/30/2002',' '); +INSERT INTO entity_versions VALUES(3131,355,'1.3.1','09/30/2001',' '); +INSERT INTO entity_versions VALUES(3132,355,'1.2.2','03/30/2001',' '); +INSERT INTO entity_versions VALUES(3133,355,'1.0.0','02/28/2000',' '); +INSERT INTO entity_versions VALUES(3134,588,'3.0.2','07/07/2021',' '); +INSERT INTO entity_versions VALUES(3135,588,'2.7.4','07/07/2021',' '); +INSERT INTO entity_versions VALUES(3136,588,'2.6.8','07/07/2021',' '); +INSERT INTO entity_versions VALUES(3137,588,'3.0.1','04/05/2021',' '); +INSERT INTO entity_versions VALUES(3138,588,'2.7.3','04/05/2021',' '); +INSERT INTO entity_versions VALUES(3139,588,'2.6.7','04/05/2021',' '); +INSERT INTO entity_versions VALUES(3140,588,'2.5.9','04/05/2021',' '); +INSERT INTO entity_versions VALUES(3141,588,'3.0.0','12/25/2020',' '); +INSERT INTO entity_versions VALUES(3142,588,'3.0.0src1','12/20/2020',' '); +INSERT INTO entity_versions VALUES(3143,588,'3.0.0spreview2','12/08/2020',' '); +INSERT INTO entity_versions VALUES(3144,588,'2.7.2','10/02/2020',' '); +INSERT INTO entity_versions VALUES(3145,588,'3.0.0spreview1','09/25/2020',' '); +INSERT INTO entity_versions VALUES(3146,588,'2.7.1','03/31/2020',' '); +INSERT INTO entity_versions VALUES(3147,588,'2.6.6','03/31/2020',' '); +INSERT INTO entity_versions VALUES(3148,588,'2.5.8','03/31/2020',' '); +INSERT INTO entity_versions VALUES(3149,588,'2.4.10','03/31/2020',' '); +INSERT INTO entity_versions VALUES(3150,588,'2.7.0','12/25/2019',' '); +INSERT INTO entity_versions VALUES(3151,588,'2.7.0src2','12/21/2019',' '); +INSERT INTO entity_versions VALUES(3152,588,'2.7.0src1','12/17/2019',' '); +INSERT INTO entity_versions VALUES(3153,588,'2.7.0spreview3','11/23/2019',' '); +INSERT INTO entity_versions VALUES(3154,588,'2.7.0spreview2','10/22/2019',' '); +INSERT INTO entity_versions VALUES(3155,588,'2.4.9','10/02/2019',' '); +INSERT INTO entity_versions VALUES(3156,588,'2.6.5','10/01/2019',' '); +INSERT INTO entity_versions VALUES(3157,588,'2.5.7','10/01/2019',' '); +INSERT INTO entity_versions VALUES(3158,588,'2.4.8','10/01/2019',' '); +INSERT INTO entity_versions VALUES(3159,588,'2.6.4','08/28/2019',' '); +INSERT INTO entity_versions VALUES(3160,588,'2.5.6','08/28/2019',' '); +INSERT INTO entity_versions VALUES(3161,588,'2.4.7','08/28/2019',' '); +INSERT INTO entity_versions VALUES(3162,588,'2.7.0spreview1','05/30/2019',' '); +INSERT INTO entity_versions VALUES(3163,588,'2.6.3','04/17/2019',' '); +INSERT INTO entity_versions VALUES(3164,588,'2.4.6','04/01/2019',' '); +INSERT INTO entity_versions VALUES(3165,588,'2.5.5','03/15/2019',' '); +INSERT INTO entity_versions VALUES(3166,588,'2.6.2','03/13/2019',' '); +INSERT INTO entity_versions VALUES(3167,588,'2.5.4','03/13/2019',' '); +INSERT INTO entity_versions VALUES(3168,588,'2.6.1','01/30/2019',' '); +INSERT INTO entity_versions VALUES(3169,588,'2.6.0','12/25/2018',' '); +INSERT INTO entity_versions VALUES(3170,588,'2.6.0src2','12/15/2018',' '); +INSERT INTO entity_versions VALUES(3171,588,'2.6.0src1','12/06/2018',' '); +INSERT INTO entity_versions VALUES(3172,588,'2.6.0spreview3','11/06/2018',' '); +INSERT INTO entity_versions VALUES(3173,588,'2.5.3','10/18/2018',' '); +INSERT INTO entity_versions VALUES(3174,588,'2.5.2','10/17/2018',' '); +INSERT INTO entity_versions VALUES(3175,588,'2.4.5','10/17/2018',' '); +INSERT INTO entity_versions VALUES(3176,588,'2.3.8','10/17/2018',' '); +INSERT INTO entity_versions VALUES(3177,588,'2.6.0spreview2','05/31/2018',' '); +INSERT INTO entity_versions VALUES(3178,588,'2.5.1','03/28/2018',' '); +INSERT INTO entity_versions VALUES(3179,588,'2.4.4','03/28/2018',' '); +INSERT INTO entity_versions VALUES(3180,588,'2.3.7','03/28/2018',' '); +INSERT INTO entity_versions VALUES(3181,588,'2.2.10','03/28/2018',' '); +INSERT INTO entity_versions VALUES(3182,588,'2.6.0spreview1','02/24/2018',' '); +INSERT INTO entity_versions VALUES(3183,588,'2.5.0','12/25/2017',' '); +INSERT INTO entity_versions VALUES(3184,588,'2.5.0src1','12/14/2017',' '); +INSERT INTO entity_versions VALUES(3185,588,'2.4.3','12/14/2017',' '); +INSERT INTO entity_versions VALUES(3186,588,'2.3.6','12/14/2017',' '); +INSERT INTO entity_versions VALUES(3187,588,'2.2.9','12/14/2017',' '); +INSERT INTO entity_versions VALUES(3188,588,'2.5.0spreview1','10/10/2017',' '); +INSERT INTO entity_versions VALUES(3189,588,'2.4.2','09/14/2017',' '); +INSERT INTO entity_versions VALUES(3190,588,'2.3.5','09/14/2017',' '); +INSERT INTO entity_versions VALUES(3191,588,'2.2.8','09/14/2017',' '); +INSERT INTO entity_versions VALUES(3192,588,'2.3.4','03/30/2017',' '); +INSERT INTO entity_versions VALUES(3193,588,'2.2.7','03/28/2017',' '); +INSERT INTO entity_versions VALUES(3194,588,'2.4.1','03/22/2017',' '); +INSERT INTO entity_versions VALUES(3195,588,'2.4.0','12/25/2016',' '); +INSERT INTO entity_versions VALUES(3196,588,'2.4.0src1','12/12/2016',' '); +INSERT INTO entity_versions VALUES(3197,588,'2.3.3','11/21/2016',' '); +INSERT INTO entity_versions VALUES(3198,588,'2.3.2','11/15/2016',' '); +INSERT INTO entity_versions VALUES(3199,588,'2.2.6','11/15/2016',' '); +INSERT INTO entity_versions VALUES(3200,588,'2.4.0spreview3','11/09/2016',' '); +INSERT INTO entity_versions VALUES(3201,588,'2.4.0spreview2','09/08/2016',' '); +INSERT INTO entity_versions VALUES(3202,588,'2.4.0spreview1','06/20/2016',' '); +INSERT INTO entity_versions VALUES(3203,588,'2.3.1','04/26/2016',' '); +INSERT INTO entity_versions VALUES(3204,588,'2.2.5','04/26/2016',' '); +INSERT INTO entity_versions VALUES(3205,588,'2.1.10','04/01/2016',' '); +INSERT INTO entity_versions VALUES(3206,588,'2.1.9','03/30/2016',' '); +INSERT INTO entity_versions VALUES(3207,588,'2.3.0','12/25/2015',' '); +INSERT INTO entity_versions VALUES(3208,588,'2.2.4','12/16/2015',' '); +INSERT INTO entity_versions VALUES(3209,588,'2.1.8','12/16/2015',' '); +INSERT INTO entity_versions VALUES(3210,588,'2.0.0sp648','12/16/2015',' '); +INSERT INTO entity_versions VALUES(3211,588,'2.3.0spreview2','12/11/2015',' '); +INSERT INTO entity_versions VALUES(3212,588,'2.3.0spreview1','11/11/2015',' '); +INSERT INTO entity_versions VALUES(3213,588,'2.2.3','08/18/2015',' '); +INSERT INTO entity_versions VALUES(3214,588,'2.1.7','08/18/2015',' '); +INSERT INTO entity_versions VALUES(3215,588,'2.0.0sp647','08/18/2015',' '); +INSERT INTO entity_versions VALUES(3216,588,'2.2.2','04/13/2015',' '); +INSERT INTO entity_versions VALUES(3217,588,'2.1.6','04/13/2015',' '); +INSERT INTO entity_versions VALUES(3218,588,'2.0.0sp645','04/13/2015',' '); +INSERT INTO entity_versions VALUES(3219,588,'2.2.1','03/03/2015',' '); +INSERT INTO entity_versions VALUES(3220,588,'2.0.0sp643','02/25/2015',' '); +INSERT INTO entity_versions VALUES(3221,588,'2.2.0','12/25/2014',' '); +INSERT INTO entity_versions VALUES(3222,588,'2.2.0src1','12/18/2014',' '); +INSERT INTO entity_versions VALUES(3223,588,'2.2.0spreview2','11/28/2014',' '); +INSERT INTO entity_versions VALUES(3224,588,'2.1.5','11/13/2014',' '); +INSERT INTO entity_versions VALUES(3225,588,'2.0.0sp598','11/13/2014',' '); +INSERT INTO entity_versions VALUES(3226,588,'1.9.3sp551','11/13/2014',' '); +INSERT INTO entity_versions VALUES(3227,588,'2.1.4','10/27/2014',' '); +INSERT INTO entity_versions VALUES(3228,588,'2.0.0sp594','10/27/2014',' '); +INSERT INTO entity_versions VALUES(3229,588,'1.9.3sp550','10/27/2014',' '); +INSERT INTO entity_versions VALUES(3230,588,'2.1.3','09/19/2014',' '); +INSERT INTO entity_versions VALUES(3231,588,'2.0.0sp576','09/19/2014',' '); +INSERT INTO entity_versions VALUES(3232,588,'2.2.0spreview1','09/18/2014',' '); +INSERT INTO entity_versions VALUES(3233,588,'1.9.2sp330','08/19/2014',' '); +INSERT INTO entity_versions VALUES(3234,588,'1.9.3sp547','05/16/2014',' '); +INSERT INTO entity_versions VALUES(3235,588,'2.1.2','05/09/2014',' '); +INSERT INTO entity_versions VALUES(3236,588,'2.0.0sp481','05/09/2014',' '); +INSERT INTO entity_versions VALUES(3237,588,'2.1.1','02/24/2014',' '); +INSERT INTO entity_versions VALUES(3238,588,'2.0.0sp451','02/24/2014',' '); +INSERT INTO entity_versions VALUES(3239,588,'1.9.3sp545','02/24/2014',' '); +INSERT INTO entity_versions VALUES(3240,588,'2.1.0','12/25/2013',' '); +INSERT INTO entity_versions VALUES(3241,588,'2.1.0src1','12/20/2013',' '); +INSERT INTO entity_versions VALUES(3242,588,'2.1.0spreview2','11/22/2013',' '); +INSERT INTO entity_versions VALUES(3243,588,'2.0.0sp353','11/22/2013',' '); +INSERT INTO entity_versions VALUES(3244,588,'1.9.3sp484','11/22/2013',' '); +INSERT INTO entity_versions VALUES(3245,588,'2.1.0spreview1','09/23/2013',' '); +INSERT INTO entity_versions VALUES(3246,588,'2.0.0sp247','06/27/2013',' '); +INSERT INTO entity_versions VALUES(3247,588,'1.9.3sp448','06/27/2013',' '); +INSERT INTO entity_versions VALUES(3248,588,'1.8.7sp374','06/27/2013',' '); +INSERT INTO entity_versions VALUES(3249,588,'2.0.0sp195','05/14/2013',' '); +INSERT INTO entity_versions VALUES(3250,588,'1.9.3sp429','05/14/2013',' '); +INSERT INTO entity_versions VALUES(3251,588,'2.0.0','02/24/2013',' '); +INSERT INTO entity_versions VALUES(3252,588,'1.9.3sp392','02/22/2013',' '); +INSERT INTO entity_versions VALUES(3253,588,'2.0.0src2','02/08/2013',' '); +INSERT INTO entity_versions VALUES(3254,588,'1.9.3sp385','02/06/2013',' '); +INSERT INTO entity_versions VALUES(3255,588,'1.9.3sp374','01/17/2013',' '); +INSERT INTO entity_versions VALUES(3256,588,'1.9.3sp362','12/25/2012',' '); +INSERT INTO entity_versions VALUES(3257,588,'1.9.3sp327','11/09/2012',' '); +INSERT INTO entity_versions VALUES(3258,588,'1.9.3sp286','10/12/2012',' '); +INSERT INTO entity_versions VALUES(3259,588,'1.8.7sp370','06/29/2012',' '); +INSERT INTO entity_versions VALUES(3260,588,'1.9.2sp320','04/21/2012',' '); +INSERT INTO entity_versions VALUES(3261,588,'1.9.3sp194','04/20/2012',' '); +INSERT INTO entity_versions VALUES(3262,588,'1.9.3sp125','02/16/2012',' '); +INSERT INTO entity_versions VALUES(3263,588,'1.9.3','10/31/2011',' '); +INSERT INTO entity_versions VALUES(3264,588,'1.9.3src1','09/24/2011',' '); +INSERT INTO entity_versions VALUES(3265,588,'1.9.3spreview1','08/01/2011',' '); +INSERT INTO entity_versions VALUES(3266,588,'1.9.2sp290','07/15/2011',' '); +INSERT INTO entity_versions VALUES(3267,588,'1.8.7sp352','07/02/2011',' '); +INSERT INTO entity_versions VALUES(3268,588,'1.9.2sp136','12/25/2010',' '); +INSERT INTO entity_versions VALUES(3269,588,'1.8.7sp330','12/25/2010',' '); +INSERT INTO entity_versions VALUES(3270,588,'1.9.2','08/18/2010',' '); +INSERT INTO entity_versions VALUES(3271,588,'1.9.1sp430','08/16/2010',' '); +INSERT INTO entity_versions VALUES(3272,588,'1.8.7sp302','08/16/2010',' '); +INSERT INTO entity_versions VALUES(3273,588,'1.9.2src2','07/11/2010',' '); +INSERT INTO entity_versions VALUES(3274,588,'1.9.2src1','07/02/2010',' '); +INSERT INTO entity_versions VALUES(3275,588,'1.9.1sp429','07/02/2010',' '); +INSERT INTO entity_versions VALUES(3276,588,'1.8.7sp299','06/23/2010',' '); +INSERT INTO entity_versions VALUES(3277,588,'1.8.7sp248','12/25/2009',' '); +INSERT INTO entity_versions VALUES(3278,588,'1.9.1sp376','12/07/2009',' '); +INSERT INTO entity_versions VALUES(3279,588,'1.9.2spreview1','07/20/2009',' '); +INSERT INTO entity_versions VALUES(3280,588,'1.9.1sp243','07/20/2009',' '); +INSERT INTO entity_versions VALUES(3281,588,'1.9.1sp129','05/12/2009',' '); +INSERT INTO entity_versions VALUES(3282,588,'1.8.7sp160','04/18/2009',' '); +INSERT INTO entity_versions VALUES(3283,588,'1.8.6sp368','04/18/2009',' '); +INSERT INTO entity_versions VALUES(3284,588,'1.9.1','01/30/2009',' '); +INSERT INTO entity_versions VALUES(3285,588,'1.9.1spreview1','10/28/2008',' '); +INSERT INTO entity_versions VALUES(3286,588,'1.8.7sp72','08/11/2008',' '); +INSERT INTO entity_versions VALUES(3287,588,'1.8.6sp287','08/11/2008',' '); +INSERT INTO entity_versions VALUES(3288,588,'1.8.7','05/31/2008',' '); +INSERT INTO entity_versions VALUES(3289,588,'1.9.0','12/25/2007',' '); +INSERT INTO entity_versions VALUES(3290,588,'1.8.6','03/12/2007',' '); +INSERT INTO entity_versions VALUES(3291,588,'1.8.5','08/29/2006',' '); +INSERT INTO entity_versions VALUES(3292,588,'1.8.4','12/24/2005',' '); +INSERT INTO entity_versions VALUES(3293,588,'1.8.4spreview2','12/14/2005',' '); +INSERT INTO entity_versions VALUES(3294,588,'1.8.3','09/21/2005',' '); +INSERT INTO entity_versions VALUES(3295,588,'1.8.2','12/26/2004',' '); +INSERT INTO entity_versions VALUES(3296,588,'1.8.2spreview4','12/22/2004',' '); +INSERT INTO entity_versions VALUES(3297,588,'1.8.2spreview3','11/08/2004',' '); +INSERT INTO entity_versions VALUES(3298,588,'1.8.2spreview2','07/30/2004',' '); +INSERT INTO entity_versions VALUES(3299,588,'1.8.2spreview1','07/21/2004',' '); +INSERT INTO entity_versions VALUES(3300,588,'1.8.0','08/04/2003',' '); +INSERT INTO entity_versions VALUES(3301,588,'1.6.7','03/01/2002',' '); +INSERT INTO entity_versions VALUES(3302,323,'1','03/28/2012',' '); +INSERT INTO entity_versions VALUES(3303,323,'1.1','05/13/2013',' '); +INSERT INTO entity_versions VALUES(3304,323,'1.2','12/01/2013',' '); +INSERT INTO entity_versions VALUES(3305,323,'1.3','06/18/2014',' '); +INSERT INTO entity_versions VALUES(3306,323,'1.4','12/10/2014',' '); +INSERT INTO entity_versions VALUES(3307,323,'1.5','08/19/2015',' '); +INSERT INTO entity_versions VALUES(3308,323,'1.6','02/17/2016',' '); +INSERT INTO entity_versions VALUES(3309,323,'1.7','08/15/2016',' '); +INSERT INTO entity_versions VALUES(3310,323,'1.8','02/16/2017',' '); +INSERT INTO entity_versions VALUES(3311,323,'1.9','08/24/2017',' '); +INSERT INTO entity_versions VALUES(3312,323,'1.10','02/16/2018',' '); +INSERT INTO entity_versions VALUES(3313,323,'1.11','08/24/2018',' '); +INSERT INTO entity_versions VALUES(3314,323,'1.12.1','02/25/2019',' '); +INSERT INTO entity_versions VALUES(3315,323,'1.13.1','09/03/2019',' '); +INSERT INTO entity_versions VALUES(3316,323,'1.14','02/25/2020',' '); +INSERT INTO entity_versions VALUES(3317,323,'1.15','08/11/2020',' '); +INSERT INTO entity_versions VALUES(3318,323,'1.16','02/16/2021',' '); +INSERT INTO entity_versions VALUES(3319,323,'1.17','08/16/2021',' '); +INSERT INTO entity_versions VALUES(3320,325,'1','01/02/2007',' '); +INSERT INTO entity_versions VALUES(3321,325,'1.2','12/07/2007',' '); +INSERT INTO entity_versions VALUES(3322,325,'1.5',' ',' '); +INSERT INTO entity_versions VALUES(3323,325,'2','07/02/2012',' '); +INSERT INTO entity_versions VALUES(3324,325,'3','02/07/2020',' '); +INSERT INTO entity_versions VALUES(3325,325,'4.0','09/01/2021',' '); +INSERT INTO entity_versions VALUES(3326,333,'1.2','12/12/1999','05/22/2020'); +INSERT INTO entity_versions VALUES(3327,333,'1.3','09/24/2001','06/28/2020'); +INSERT INTO entity_versions VALUES(3328,333,'1.4','11/11/2003','08/29/2020'); +INSERT INTO entity_versions VALUES(3329,333,'5','05/11/2006','08/11/2020'); +INSERT INTO entity_versions VALUES(3330,333,'6','12/10/2009','12/19/2020'); +INSERT INTO entity_versions VALUES(3331,333,'7','05/28/2013','04/30/2001'); +INSERT INTO entity_versions VALUES(3332,333,'8','08/31/2017','06/23/2001'); +INSERT INTO entity_versions VALUES(3333,333,'9','11/22/2020','12/10/2001'); +INSERT INTO entity_versions VALUES(3334,333,'9.1','05/25/2021',' '); +INSERT INTO entity_versions VALUES(3335,583,'98','12/31/1998',' '); +INSERT INTO entity_versions VALUES(3336,583,'03','12/31/2003',' '); +INSERT INTO entity_versions VALUES(3337,583,'11','12/31/2011',' '); +INSERT INTO entity_versions VALUES(3338,583,'14','12/31/2014',' '); +INSERT INTO entity_versions VALUES(3339,583,'17','12/31/2017',' '); +INSERT INTO entity_versions VALUES(3340,583,'20','12/31/2020',' '); +INSERT INTO entity_versions VALUES(3341,344,'progress 4gl','12/31/1981',' '); +INSERT INTO entity_versions VALUES(3342,344,'10.1','12/31/2006',' '); +INSERT INTO entity_versions VALUES(3343,586,'3.0.0','08/20/2020','08/20/2020'); +INSERT INTO entity_versions VALUES(3344,586,'4','05/22/2020',' '); +INSERT INTO entity_versions VALUES(3345,586,'4.1','12/10/2001',' '); +INSERT INTO entity_versions VALUES(3346,586,'4.2','04/22/2002',' '); +INSERT INTO entity_versions VALUES(3347,586,'4.3','12/27/2002',' '); +INSERT INTO entity_versions VALUES(3348,586,'4.4','07/11/2005',' '); +INSERT INTO entity_versions VALUES(3349,586,'5','07/13/2004',' '); +INSERT INTO entity_versions VALUES(3350,586,'5.1','11/24/2005',' '); +INSERT INTO entity_versions VALUES(3351,586,'5.2','11/02/2006',' '); +INSERT INTO entity_versions VALUES(3352,586,'5.3','06/30/2009',' '); +INSERT INTO entity_versions VALUES(3353,586,'5.4','03/01/2012',' '); +INSERT INTO entity_versions VALUES(3354,586,'5.5','06/20/2013',' '); +INSERT INTO entity_versions VALUES(3355,586,'5.6','08/28/2014',' '); +INSERT INTO entity_versions VALUES(3356,586,'7','12/03/2015',' '); +INSERT INTO entity_versions VALUES(3357,586,'7.1','12/01/2016',' '); +INSERT INTO entity_versions VALUES(3358,586,'7.2','11/30/2017',' '); +INSERT INTO entity_versions VALUES(3359,586,'7.3','12/06/2018',' '); +INSERT INTO entity_versions VALUES(3360,586,'7.4','11/28/2019',' '); +INSERT INTO entity_versions VALUES(3361,586,'8','11/26/2020',' '); +INSERT INTO entity_versions VALUES(3362,311,'3','06/30/1997',' '); +INSERT INTO entity_versions VALUES(3363,311,'4','11/30/1998',' '); +INSERT INTO entity_versions VALUES(3364,311,'4.5','11/30/1999',' '); +INSERT INTO entity_versions VALUES(3365,311,'5','06/30/2001',' '); +INSERT INTO entity_versions VALUES(3366,311,'6','06/30/2002',' '); +INSERT INTO entity_versions VALUES(3367,311,'7','02/07/2005',' '); +INSERT INTO entity_versions VALUES(3368,311,'8','06/30/2007',' '); +INSERT INTO entity_versions VALUES(3369,311,'9','10/05/2009',' '); +INSERT INTO entity_versions VALUES(3370,311,'10',' ',' '); +INSERT INTO entity_versions VALUES(3371,311,'11','04/29/2014',' '); +INSERT INTO entity_versions VALUES(3372,311,'2016','02/16/2016',' '); +INSERT INTO entity_versions VALUES(3373,311,'2018','07/12/2018',' '); +INSERT INTO entity_versions VALUES(3374,311,'2021','11/11/2020',' '); +INSERT INTO entity_versions VALUES(3375,362,'1.0.0','12/08/2003',' '); +INSERT INTO entity_versions VALUES(3376,362,'1.1.0','02/19/2004',' '); +INSERT INTO entity_versions VALUES(3377,362,'1.1.1','03/23/2004',' '); +INSERT INTO entity_versions VALUES(3378,362,'1.2.0','06/09/2004',' '); +INSERT INTO entity_versions VALUES(3379,362,'1.3.0','09/16/2004',' '); +INSERT INTO entity_versions VALUES(3380,362,'1.4.0','06/20/2005',' '); +INSERT INTO entity_versions VALUES(3381,362,'2','03/12/2006',' '); +INSERT INTO entity_versions VALUES(3382,362,'2.1.0','03/17/2006',' '); +INSERT INTO entity_versions VALUES(3383,362,'2.1.8','08/23/2006',' '); +INSERT INTO entity_versions VALUES(3384,362,'2.3.0','11/23/2006',' '); +INSERT INTO entity_versions VALUES(3385,362,'2.4.0','03/09/2007',' '); +INSERT INTO entity_versions VALUES(3386,362,'2.5.0','05/02/2007',' '); +INSERT INTO entity_versions VALUES(3387,362,'2.6.0','07/27/2007',' '); +INSERT INTO entity_versions VALUES(3388,362,'2.7.0','02/07/2008',' '); +INSERT INTO entity_versions VALUES(3389,362,'2.8.0','07/14/2010',' '); +INSERT INTO entity_versions VALUES(3390,362,'2.9.0','05/12/2011',' '); +INSERT INTO entity_versions VALUES(3391,362,'2.1','01/04/2013',' '); +INSERT INTO entity_versions VALUES(3392,313,'1','12/31/1995',' '); +INSERT INTO entity_versions VALUES(3393,313,'2','12/31/1996',' '); +INSERT INTO entity_versions VALUES(3394,313,'3','12/31/1997',' '); +INSERT INTO entity_versions VALUES(3395,313,'4','12/31/1998',' '); +INSERT INTO entity_versions VALUES(3396,313,'5','12/31/1999',' '); +INSERT INTO entity_versions VALUES(3397,313,'6','12/31/2001',' '); +INSERT INTO entity_versions VALUES(3398,313,'7','08/31/2002',' '); +INSERT INTO entity_versions VALUES(3399,313,'8','12/31/2003',' '); +INSERT INTO entity_versions VALUES(3400,313,'2005','12/31/2005',' '); +INSERT INTO entity_versions VALUES(3401,313,'2006','12/31/2005',' '); +INSERT INTO entity_versions VALUES(3402,313,'Turbo','09/06/2006',' '); +INSERT INTO entity_versions VALUES(3403,313,'Transfer','02/08/2006',' '); +INSERT INTO entity_versions VALUES(3404,313,'2007','03/16/2007',' '); +INSERT INTO entity_versions VALUES(3405,313,'2009',' ',' '); +INSERT INTO entity_versions VALUES(3406,313,'2010','08/25/2009',' '); +INSERT INTO entity_versions VALUES(3407,313,'XE','08/30/2010',' '); +INSERT INTO entity_versions VALUES(3408,313,'XE1','01/27/2011',' '); +INSERT INTO entity_versions VALUES(3409,313,'XE2','09/01/2011',' '); +INSERT INTO entity_versions VALUES(3410,313,'XE3','09/01/2012',' '); +INSERT INTO entity_versions VALUES(3411,313,'XE4','04/22/2013',' '); +INSERT INTO entity_versions VALUES(3412,313,'XE5','09/12/2013',' '); +INSERT INTO entity_versions VALUES(3413,313,'XE6','04/15/2014',' '); +INSERT INTO entity_versions VALUES(3414,313,'XE7','09/02/2014',' '); +INSERT INTO entity_versions VALUES(3415,313,'XE8','04/07/2015',' '); +INSERT INTO entity_versions VALUES(3416,313,'10','08/31/2015',' '); +INSERT INTO entity_versions VALUES(3417,313,'10.1','04/20/2016',' '); +INSERT INTO entity_versions VALUES(3418,313,'10.1.1','09/30/2016',' '); +INSERT INTO entity_versions VALUES(3419,313,'10.1.2','12/31/2016',' '); +INSERT INTO entity_versions VALUES(3420,313,'10.2','03/22/2017',' '); +INSERT INTO entity_versions VALUES(3421,313,'10.2.1','08/30/2017',' '); +INSERT INTO entity_versions VALUES(3422,313,'10.2.2','12/31/2017',' '); +INSERT INTO entity_versions VALUES(3423,313,'10.2.3','03/31/2018',' '); +INSERT INTO entity_versions VALUES(3424,313,'10.3','11/21/2018',' '); +INSERT INTO entity_versions VALUES(3425,313,'10.3.1','02/28/2019',' '); +INSERT INTO entity_versions VALUES(3426,313,'10.3.2','07/31/2019',' '); +INSERT INTO entity_versions VALUES(3427,313,'10.3.3','11/30/2019',' '); +INSERT INTO entity_versions VALUES(3428,313,'10.4','05/26/2020',' '); +INSERT INTO entity_versions VALUES(3429,313,'10.4.1','09/30/2020',' '); +INSERT INTO entity_versions VALUES(3430,313,'10.4.2','02/24/2021',' '); +INSERT INTO entity_versions VALUES(3431,313,'11','09/09/2021',' '); +INSERT INTO entity_versions VALUES(3432,594,'60','05/29/1959',' '); +INSERT INTO entity_versions VALUES(3433,594,'65','12/31/1965',' '); +INSERT INTO entity_versions VALUES(3434,594,'74','12/31/1974',' '); +INSERT INTO entity_versions VALUES(3435,594,'85','12/31/1985',' '); +INSERT INTO entity_versions VALUES(3436,594,'2002',' ',' '); +INSERT INTO entity_versions VALUES(3437,594,'2014',' ',' '); +INSERT INTO entity_versions VALUES(3438,580,'1.01','11/20/1985','12/31/2001'); +INSERT INTO entity_versions VALUES(3439,580,'1.02','05/14/1986','12/31/2001'); +INSERT INTO entity_versions VALUES(3440,580,'1.03','08/21/1986','12/31/2001'); +INSERT INTO entity_versions VALUES(3441,580,'1.04','04/10/1987','12/31/2001'); +INSERT INTO entity_versions VALUES(3442,580,'2.01','12/09/1987','12/31/2001'); +INSERT INTO entity_versions VALUES(3443,580,'2.03','12/09/1987','12/31/2001'); +INSERT INTO entity_versions VALUES(3444,580,'2.1','05/27/1988','12/31/2001'); +INSERT INTO entity_versions VALUES(3445,580,'2.11','03/13/1989','12/31/2001'); +INSERT INTO entity_versions VALUES(3446,580,'3','05/22/1990','12/31/2001'); +INSERT INTO entity_versions VALUES(3447,580,'3.1','04/06/1992','12/31/2001'); +INSERT INTO entity_versions VALUES(3448,580,' NT 3.1','07/27/1993','12/31/2001'); +INSERT INTO entity_versions VALUES(3449,580,'3.11','11/08/1993','12/31/2001'); +INSERT INTO entity_versions VALUES(3450,580,'3.2','11/22/1993','12/31/2001'); +INSERT INTO entity_versions VALUES(3451,580,'NT 3.5','09/21/1994','12/31/2001'); +INSERT INTO entity_versions VALUES(3452,580,'NT 3.51','08/24/1995','12/31/2001'); +INSERT INTO entity_versions VALUES(3453,580,'95','08/24/1996','12/31/2001'); +INSERT INTO entity_versions VALUES(3454,580,'NT 4.0','06/25/1998','06/30/2004'); +INSERT INTO entity_versions VALUES(3455,580,'98','05/05/1999','07/11/2006'); +INSERT INTO entity_versions VALUES(3456,580,'2000','02/17/2000','07/13/2010'); +INSERT INTO entity_versions VALUES(3457,580,'Me','09/14/2000','07/11/2006'); +INSERT INTO entity_versions VALUES(3458,580,'XP','10/25/2001','04/08/2014'); +INSERT INTO entity_versions VALUES(3459,580,'Vista','01/30/2007','04/11/2017'); +INSERT INTO entity_versions VALUES(3460,580,'7','10/22/2009','01/14/2020'); +INSERT INTO entity_versions VALUES(3461,580,'8','10/26/2012','01/12/2016'); +INSERT INTO entity_versions VALUES(3462,580,'8.1','10/17/2013','01/10/2023'); +INSERT INTO entity_versions VALUES(3463,580,'10','07/29/2015','10/14/2025'); +INSERT INTO entity_versions VALUES(3464,580,'11','10/05/2021','10/10/2023'); +INSERT INTO entity_versions VALUES(3465,697,'3.8.5','03/05/2022',''); +INSERT INTO entity_versions VALUES(3466,697,'3.8.4','11/12/2021','03/05/2022'); +INSERT INTO entity_versions VALUES(3467,697,'3.8.3','09/27/2021','11/12/2021'); +INSERT INTO entity_versions VALUES(3468,697,'3.8.1','04/04/2021','09/27/2021'); +DELETE FROM sqlite_sequence; +INSERT INTO sqlite_sequence VALUES('docker_baseos_images',13); +INSERT INTO sqlite_sequence VALUES('docker_images',171); +INSERT INTO sqlite_sequence VALUES('entities',698); +INSERT INTO sqlite_sequence VALUES('entity_mentions',7721); +INSERT INTO sqlite_sequence VALUES('entity_relations',1378); +INSERT INTO sqlite_sequence VALUES('entity_types',12); +INSERT INTO sqlite_sequence VALUES('openshift_baseos_images',1); +INSERT INTO sqlite_sequence VALUES('openshift_images',53); +INSERT INTO sqlite_sequence VALUES('operator_images',63); +INSERT INTO sqlite_sequence VALUES('docker_environment_variables',28); +INSERT INTO sqlite_sequence VALUES('entity_versions',3468); +COMMIT; diff --git a/kg_utils/image_search_kg/docker_images.csv b/kg_utils/image_search_kg/docker_images.csv index b5208d2..eb5d3a0 100644 --- a/kg_utils/image_search_kg/docker_images.csv +++ b/kg_utils/image_search_kg/docker_images.csv @@ -1,32 +1,27 @@ docker_images,container_name,OS,lang,lib,app,app_server,plugin,runlib,runtime,Docker_Url,Notes,CertOfImageAndPublisher -docker_images,adobecoldfusion/coldfusion,426,,,37,,,,,https://hub.docker.com/r/adobecoldfusion/coldfusion,,Verified Publisher -docker_images,ibmcom/db2,426,,,43,,,,,https://hub.docker.com/r/ibmcom/db2,,Verified Publisher -docker_images,drupal,426,,,45,,,,,https://hub.docker.com/_/drupal,,Official Image -docker_images,jenkins,426,,,90,,,,,https://hub.docker.com/_/jenkins,,Official Image -docker_images,memcached,426,,,98,,,,,https://hub.docker.com/_/memcached,,Official Image -docker_images,bitnami/mongodb,426,,,116,,,,,https://hub.docker.com/r/bitnami/mongodb,,Verified Publisher -docker_images,mysql,426,,,122,,,,,https://hub.docker.com/_/mysql,,Official Image -docker_images,neo4j,426,,,123,,,,,https://hub.docker.com/_/neo4j,,Official Image -docker_images,bitnami/openldap,426,,,126,,,,,https://hub.docker.com/r/bitnami/openldap,,Verified Publisher -docker_images,bitnami/postgresql,426,,,157,,,,,https://hub.docker.com/r/bitnami/postgresql,,Verified Publisher -docker_images,rabbitmq,426,,,165,,,,,https://hub.docker.com/_/rabbitmq,,Official Image -docker_images,redis,426,,,168,,,,,https://hub.docker.com/_/redis,,Official Image -docker_images,sentry,426,,,180,,,,,https://hub.docker.com/_/sentry,,Official Image -docker_images,sonarqube,426,,,186,,,,,https://hub.docker.com/_/sonarqube,,Official Image -docker_images,wordpress,426,,,245,,,,,https://hub.docker.com/_/wordpress,,Official Image -docker_images,ibmcom/zeromq,426,,,248,,,,,https://hub.docker.com/r/ibmcom/zeromq,,Verified Publisher -docker_images,glassfish,426,,,,263,,,,https://hub.docker.com/_/glassfish,,Official Image -docker_images,haproxy,426,,,,264,,,,https://hub.docker.com/_/haproxy,,Official Image -docker_images,nginx,426,,,,274,,,,https://hub.docker.com/_/nginx,,Official Image -docker_images,bitnami/spark,426,,,,280,,,,https://hub.docker.com/r/bitnami/spark,,Verified Publisher -docker_images,groovy,426,325,,,,,,,https://hub.docker.com/_/groovy,,Official Image -docker_images,java,426,331,,,,,,,https://hub.docker.com/_/java,,Official Image -docker_images,perl,426,347,,,,,,,https://hub.docker.com/_/perl,,Official Image -docker_images,php,426,350,,,,,,,https://hub.docker.com/_/php,,Official Image -docker_images,python,426,354,,,,,,,https://hub.docker.com/_/python,,Official Image -docker_images,ruby,426,358,,,,,,,https://hub.docker.com/_/ruby,,Official Image -docker_images,swift,426,364,,,,,,,https://hub.docker.com/_/swift,,Official Image -docker_images,ibmcom/react,426,,413,,,,,,https://hub.docker.com/r/ibmcom/react,,Verified Publisher +docker_images,adobecoldfusion/coldfusion,576,,,37,,,,,https://hub.docker.com/r/adobecoldfusion/coldfusion,,Verified Publisher +docker_images,ibmcom/db2,576,,,43,,,,,https://hub.docker.com/r/ibmcom/db2,,Verified Publisher +docker_images,drupal,576,,,45,,,,,https://hub.docker.com/_/drupal,,Official Image +docker_images,jenkins,576,,,90,,,,,https://hub.docker.com/_/jenkins,,Official Image +docker_images,memcached,576,,,98,,,,,https://hub.docker.com/_/memcached,,Official Image +docker_images,bitnami/mongodb,576,,,116,,,,,https://hub.docker.com/r/bitnami/mongodb,,Verified Publisher +docker_images,mysql,576,,,122,,,,,https://hub.docker.com/_/mysql,,Official Image +docker_images,neo4j,576,,,123,,,,,https://hub.docker.com/_/neo4j,,Official Image +docker_images,bitnami/openldap,576,,,126,,,,,https://hub.docker.com/r/bitnami/openldap,,Verified Publisher +docker_images,bitnami/postgresql,576,,,157,,,,,https://hub.docker.com/r/bitnami/postgresql,,Verified Publisher +docker_images,rabbitmq,576,,,165,,,,,https://hub.docker.com/_/rabbitmq,,Official Image +docker_images,redis,576,,,168,,,,,https://hub.docker.com/_/redis,,Official Image +docker_images,sentry,576,,,180,,,,,https://hub.docker.com/_/sentry,,Official Image +docker_images,sonarqube,576,,,186,,,,,https://hub.docker.com/_/sonarqube,,Official Image +docker_images,wordpress,576,,,245,,,,,https://hub.docker.com/_/wordpress,,Official Image +docker_images,ibmcom/zeromq,576,,,248,,,,,https://hub.docker.com/r/ibmcom/zeromq,,Verified Publisher +docker_images,glassfish,576,,,,263,,,,https://hub.docker.com/_/glassfish,,Official Image +docker_images,haproxy,576,,,,264,,,,https://hub.docker.com/_/haproxy,,Official Image +docker_images,nginx,576,,,,274,,,,https://hub.docker.com/_/nginx,,Official Image +docker_images,bitnami/spark,576,,,,280,,,,https://hub.docker.com/r/bitnami/spark,,Verified Publisher +docker_images,groovy,576,325,,,,,,,https://hub.docker.com/_/groovy,,Official Image +docker_images,swift,576,364,,,,,,,https://hub.docker.com/_/swift,,Official Image +docker_images,ibmcom/react,576,,413,,,,,,https://hub.docker.com/r/ibmcom/react,,Verified Publisher docker_images,circleci/android,418,,,,,,,,https://hub.docker.com/r/circleci/android,,Verified Publisher docker_images,dart,421,,,,,,,,https://hub.docker.com/_/dart,,Official Image docker_images,centos,427,,,,,,,,https://hub.docker.com/_/centos,,Official Image @@ -34,28 +29,28 @@ docker_images,debian,429,,,,,,,,https://hub.docker.com/_/debian,,Official Image docker_images,opensuse,431,,,,,,,,https://hub.docker.com/_/opensuse,,Official Image docker_images,ubuntu,436,,,,,,,,https://hub.docker.com/_/ubuntu,,Official Image docker_images,fedora,453,,,,,,,,https://hub.docker.com/_/fedora,,Official Image -docker_images,bitnami/wildfly,426,,,,,,493,,https://hub.docker.com/r/bitnami/wildfly,,Verified Publisher -docker_images,docker,426,,,,,,,503,https://hub.docker.com/_/docker,,Official Image -docker_images,ibmcom/json,426,,,,,,,,https://hub.docker.com/r/ibmcom/json,,Verified Publisher -docker_images,java,426,584,,,,,,,https://hub.docker.com/_/java,,Official Image -docker_images,perl,426,585,,,,,,,https://hub.docker.com/_/perl,,Official Image -docker_images,php,426,586,,,,,,,https://hub.docker.com/_/php,,Official Image -docker_images,python,426,587,,,,,,,https://hub.docker.com/_/python,,Official Image -docker_images,ruby,426,588,,,,,,,https://hub.docker.com/_/ruby,,Official Image -docker_images,snyk/snyk,426,,,613,,,,,https://hub.docker.com/r/snyk/snyk,,Verified Publisher -docker_images,varnish,426,,,,615,,,,https://hub.docker.com/_/varnish,,Official Image -docker_images,kasmweb/api,426,,,,,,,,https://hub.docker.com/r/kasmweb/api,,Verified Publisher -docker_images,nuxeo,426,,,,,,,620,https://hub.docker.com/_/nuxeo,,Official Image -docker_images,arangodb,426,,,621,,,,,https://hub.docker.com/_/arangodb,,Official Image -docker_images,bitnami/minio,426,,,625,,,,,https://hub.docker.com/r/bitnami/minio,,Verified Publisher -docker_images,elasticsearch,426,,,626,,,,,https://hub.docker.com/_/elasticsearch,,Official Image -docker_images,bitnami/keycloak,426,,,628,,,,,https://hub.docker.com/r/bitnami/keycloak,,Verified Publisher -docker_images,grafana/grafana,426,,,629,,,,,https://hub.docker.com/r/grafana/grafana,,Verified Publisher -docker_images,mariadb,426,,,642,,,,,https://hub.docker.com/_/mariadb,,Official Image -docker_images,vault,426,,,645,,,,,https://hub.docker.com/_/vault,,Official Image -docker_images,bitnami/etcd,426,,,647,,,,,https://hub.docker.com/r/bitnami/etcd,,Verified Publisher -docker_images,traefik,426,,,,648,,,,https://hub.docker.com/_/traefik,,Official Image -docker_images,bitnami/git,426,,,677,,,,,https://hub.docker.com/r/bitnami/git,,Verified Publisher -docker_images,mysql,426,,,684,,,,,https://hub.docker.com/_/mysql,,Official Image -docker_images,bitnami/postgresql,426,,,686,,,,,https://hub.docker.com/r/bitnami/postgresql,,Verified Publisher -docker_images,ibmcom/isam,426,,,693,,,,,https://hub.docker.com/r/ibmcom/isam,,Verified Publisher +docker_images,bitnami/wildfly,576,,,,,,493,,https://hub.docker.com/r/bitnami/wildfly,,Verified Publisher +docker_images,docker,576,,,,,,,503,https://hub.docker.com/_/docker,,Official Image +docker_images,ibmcom/json,576,,,,,,,,https://hub.docker.com/r/ibmcom/json,,Verified Publisher +docker_images,java,576,584,,,,,,,https://hub.docker.com/_/java,,Official Image +docker_images,perl,576,585,,,,,,,https://hub.docker.com/_/perl,,Official Image +docker_images,php,576,586,,,,,,,https://hub.docker.com/_/php,,Official Image +docker_images,python,576,587,,,,,,,https://hub.docker.com/_/python,,Official Image +docker_images,ruby,576,588,,,,,,,https://hub.docker.com/_/ruby,,Official Image +docker_images,snyk/snyk,576,,,613,,,,,https://hub.docker.com/r/snyk/snyk,,Verified Publisher +docker_images,varnish,576,,,,615,,,,https://hub.docker.com/_/varnish,,Official Image +docker_images,kasmweb/api,576,,,,,,,,https://hub.docker.com/r/kasmweb/api,,Verified Publisher +docker_images,nuxeo,576,,,,,,,620,https://hub.docker.com/_/nuxeo,,Official Image +docker_images,arangodb,576,,,621,,,,,https://hub.docker.com/_/arangodb,,Official Image +docker_images,bitnami/minio,576,,,625,,,,,https://hub.docker.com/r/bitnami/minio,,Verified Publisher +docker_images,elasticsearch,576,,,626,,,,,https://hub.docker.com/_/elasticsearch,,Official Image +docker_images,bitnami/keycloak,576,,,628,,,,,https://hub.docker.com/r/bitnami/keycloak,,Verified Publisher +docker_images,grafana/grafana,576,,,629,,,,,https://hub.docker.com/r/grafana/grafana,,Verified Publisher +docker_images,mariadb,576,,,642,,,,,https://hub.docker.com/_/mariadb,,Official Image +docker_images,vault,576,,,645,,,,,https://hub.docker.com/_/vault,,Official Image +docker_images,bitnami/etcd,576,,,647,,,,,https://hub.docker.com/r/bitnami/etcd,,Verified Publisher +docker_images,traefik,576,,,,648,,,,https://hub.docker.com/_/traefik,,Official Image +docker_images,bitnami/git,576,,,677,,,,,https://hub.docker.com/r/bitnami/git,,Verified Publisher +docker_images,mysql,576,,,684,,,,,https://hub.docker.com/_/mysql,,Official Image +docker_images,bitnami/postgresql,576,,,686,,,,,https://hub.docker.com/r/bitnami/postgresql,,Verified Publisher +docker_images,ibmcom/isam,576,,,693,,,,,https://hub.docker.com/r/ibmcom/isam,,Verified Publisher diff --git a/kg_utils/image_search_kg/images.json b/kg_utils/image_search_kg/images.json index f9b014a..4841db1 100644 --- a/kg_utils/image_search_kg/images.json +++ b/kg_utils/image_search_kg/images.json @@ -65,27 +65,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-management-ingress-operator", "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 156321.0 + "popularity": 157394.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 163268.0 + "popularity": 165365.0 } ] }, @@ -125,12 +125,12 @@ { "name": "giant-chatops-slack-reader", "url": "https://quay.io/repository/giantswarm/giant-chatops-slack-reader", - "popularity": 20.0 + "popularity": 15.0 }, { "name": "mig-log-reader", "url": "https://quay.io/repository/konveyor/mig-log-reader", - "popularity": 99.0 + "popularity": 120.0 }, { "name": "perl-fastx-reader", @@ -143,9 +143,9 @@ "popularity": 0.0 }, { - "name": "event-reader", - "url": "https://quay.io/repository/instrumentation/event-reader", - "popularity": 0.0 + "name": "dsmr-reader", + "url": "https://quay.io/repository/truecharts/dsmr-reader", + "popularity": 31.0 } ] }, @@ -240,34 +240,29 @@ { "name": "ansible", "url": "https://quay.io/repository/cloudctl/ansible", - "popularity": 968.0 + "popularity": 1109.0 }, { "name": "ansible", "url": "https://quay.io/repository/containercraft/ansible", "popularity": 0.0 - }, - { - "name": "ansible", - "url": "https://quay.io/repository/osbuild/ansible", - "popularity": 723.0 } ], "quay_top_images": [ { "name": "ansible-operator", "url": "https://quay.io/repository/operator-framework/ansible-operator", - "popularity": 20208.0 + "popularity": 21277.0 }, { "name": "ansible-runner", "url": "https://quay.io/repository/ansible/ansible-runner", - "popularity": 19109.0 + "popularity": 42473.0 }, { "name": "origin-ansible", "url": "https://quay.io/repository/openshift/origin-ansible", - "popularity": 12114.0 + "popularity": 12100.0 }, { "name": "gitlab-ansible-runner", @@ -277,7 +272,7 @@ { "name": "runner-ansible", "url": "https://quay.io/repository/startx/runner-ansible", - "popularity": 8187.0 + "popularity": 8119.0 } ] }, @@ -399,27 +394,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 883725.0 + "popularity": 897952.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 403203.0 + "popularity": 412719.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 + "popularity": 265927.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 } ] }, @@ -505,27 +500,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 883725.0 + "popularity": 897952.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 403203.0 + "popularity": 412719.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 + "popularity": 265927.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 } ] }, @@ -611,27 +606,27 @@ { "name": "hive", "url": "https://quay.io/repository/openshift-hive/hive", - "popularity": 112933.0 + "popularity": 103190.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "hive", "url": "https://quay.io/repository/app-sre/hive", - "popularity": 51401.0 + "popularity": 52608.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 883725.0 + "popularity": 897952.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 403203.0 + "popularity": 412719.0 } ] }, @@ -769,27 +764,27 @@ { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 883725.0 + "popularity": 897952.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 403203.0 + "popularity": 412719.0 } ] }, @@ -803,19 +798,19 @@ "stars": 18, "display_name": "Strimzi", "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", - "version": "0.29.0", + "version": "0.30.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 412, - "high": 38, - "medium": 473, - "unknown": 7, - "critical": 6 + "low": 277, + "high": 13, + "medium": 348, + "unknown": 5, + "critical": 4 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1652572867, + "ts": 1657929610, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -834,8 +829,6 @@ "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka", "quay.io/strimzi/kafka-bridge", "quay.io/strimzi/jmxtrans", "quay.io/strimzi/kaniko-executor", @@ -923,27 +916,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 883725.0 + "popularity": 897952.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 403203.0 + "popularity": 412719.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 + "popularity": 265927.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 } ] }, @@ -959,30 +952,12 @@ { "dockerhub_exact_images": [], "dockerhub_top_images": [ - { - "name": "bitnami/solr", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 12, - "Docker_Url": "https://hub.docker.com/r/bitnami/solr", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, { "name": "solr", "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 916, + "star_count": 917, "Docker_Url": "https://hub.docker.com/_/solr", "OS": [ { @@ -1027,6 +1002,24 @@ } ] }, + { + "name": "bitnami/solr", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 12, + "Docker_Url": "https://hub.docker.com/r/bitnami/solr", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, { "name": "bitnami/apache", "Official image": false, @@ -1097,27 +1090,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 883725.0 + "popularity": 897952.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 403203.0 + "popularity": 412719.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 + "popularity": 265927.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 } ] }, @@ -1203,27 +1196,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 883725.0 + "popularity": 897952.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 403203.0 + "popularity": 412719.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 + "popularity": 265927.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 } ] }, @@ -1243,30 +1236,30 @@ { "quay_exact_images": [], "quay_top_images": [ + { + "name": "application-service", + "url": "https://quay.io/repository/redhat-appstudio/application-service", + "popularity": 133096.0 + }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 163268.0 + "popularity": 165365.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183645.0 - }, - { - "name": "hubble-relay", - "url": "https://quay.io/repository/cilium/hubble-relay", - "popularity": 118685.0 + "popularity": 183319.0 } ] }, @@ -1408,27 +1401,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "k8s-job-cleaner", "url": "https://quay.io/repository/dtan4/k8s-job-cleaner", - "popularity": 83785.0 + "popularity": 83773.0 }, { "name": "event-scheduler", "url": "https://quay.io/repository/grworth_analytics/event-scheduler", - "popularity": 10344.0 + "popularity": 10379.0 }, { "name": "origin-cluster-kube-scheduler-operator", "url": "https://quay.io/repository/openshift/origin-cluster-kube-scheduler-operator", - "popularity": 3696.0 + "popularity": 3674.0 }, { "name": "multicluster-scheduler-scheduler", "url": "https://quay.io/repository/admiralty/multicluster-scheduler-scheduler", - "popularity": 4900.0 + "popularity": 4930.0 } ] }, @@ -1457,7 +1450,7 @@ "entity_id": 16 }, { - "Bluebeam Q": [ + "Bluebeam": [ { "dockerhub_exact_images": [], "dockerhub_top_images": [] @@ -1490,22 +1483,22 @@ { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 380580.0 + "popularity": 370506.0 }, { "name": "origin-control-plane", "url": "https://quay.io/repository/openshift/origin-control-plane", - "popularity": 2300.0 + "popularity": 2176.0 }, { - "name": "druid-exporter", - "url": "https://quay.io/repository/opstree/druid-exporter", - "popularity": 562.0 + "name": "bmc-reverse-proxy", + "url": "https://quay.io/repository/cybozu/bmc-reverse-proxy", + "popularity": 699.0 }, { "name": "fastqc", "url": "https://quay.io/repository/biocontainers/fastqc", - "popularity": 24023.0 + "popularity": 29219.0 } ] }, @@ -1615,27 +1608,27 @@ { "name": "icp-identity-manager", "url": "https://quay.io/repository/opencloudio/icp-identity-manager", - "popularity": 229899.0 + "popularity": 215445.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 254930.0 + "popularity": 258719.0 }, { "name": "node-disk-manager-amd64", "url": "https://quay.io/repository/openebs/node-disk-manager-amd64", - "popularity": 171233.0 + "popularity": 171910.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 193426.0 + "popularity": 198257.0 } ] }, @@ -1695,27 +1688,27 @@ { "name": "mongodb-enterprise-database", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", - "popularity": 101454.0 + "popularity": 99140.0 }, { "name": "engine", "url": "https://quay.io/repository/codefresh/engine", - "popularity": 67070.0 + "popularity": 47231.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 254930.0 + "popularity": 258719.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 245318.0 + "popularity": 250172.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 193426.0 + "popularity": 198257.0 } ] }, @@ -1738,27 +1731,27 @@ { "name": "ocp-release", "url": "https://quay.io/repository/openshift-release-dev/ocp-release", - "popularity": 41511623.0 + "popularity": 43570374.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "thanos", "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2526636.0 + "popularity": 2497215.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -1781,27 +1774,27 @@ { "name": "vault-next-gen", "url": "https://quay.io/repository/codefreshplugins/vault-next-gen", - "popularity": 28859.0 + "popularity": 28748.0 }, { "name": "doc-gen-container", "url": "https://quay.io/repository/spearow/doc-gen-container", - "popularity": 10692.0 + "popularity": 10859.0 }, { "name": "origin-crd-schema-gen", "url": "https://quay.io/repository/openshift/origin-crd-schema-gen", - "popularity": 2856.0 + "popularity": 2839.0 }, { "name": "thrift-gen", "url": "https://quay.io/repository/m3db/thrift-gen", - "popularity": 772.0 + "popularity": 878.0 }, { "name": "drone-gen-tags", "url": "https://quay.io/repository/natlibfi/drone-gen-tags", - "popularity": 132.0 + "popularity": 126.0 } ] }, @@ -1911,27 +1904,27 @@ { "name": "fmeserver-engine", "url": "https://quay.io/repository/safesoftware/fmeserver-engine", - "popularity": 129.0 + "popularity": 112.0 }, { "name": "fmeserver-core", "url": "https://quay.io/repository/safesoftware/fmeserver-core", - "popularity": 65.0 + "popularity": 52.0 }, { "name": "fmeserver-queue", "url": "https://quay.io/repository/safesoftware/fmeserver-queue", - "popularity": 54.0 + "popularity": 46.0 }, { "name": "fmeserver-web", "url": "https://quay.io/repository/safesoftware/fmeserver-web", - "popularity": 58.0 + "popularity": 48.0 }, { "name": "git-batch", "url": "https://quay.io/repository/thegeeklab/git-batch", - "popularity": 27.0 + "popularity": 34.0 } ] }, @@ -1954,27 +1947,27 @@ { "name": "machines-endpoints", "url": "https://quay.io/repository/cybozu/machines-endpoints", - "popularity": 1520.0 + "popularity": 1919.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 + "popularity": 90209.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8041.0 + "popularity": 8741.0 }, { "name": "gluster-recycler", "url": "https://quay.io/repository/appuio/gluster-recycler", - "popularity": 1799.0 + "popularity": 1479.0 }, { "name": "books", "url": "https://quay.io/repository/redhattraining/books", - "popularity": 696.0 + "popularity": 711.0 } ] }, @@ -1997,27 +1990,27 @@ { "name": "ibm-management-ingress-operator", "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 156321.0 + "popularity": 157394.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 254930.0 + "popularity": 258719.0 }, { "name": "node-disk-manager-amd64", "url": "https://quay.io/repository/openebs/node-disk-manager-amd64", - "popularity": 171233.0 + "popularity": 171910.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 193426.0 + "popularity": 198257.0 } ] }, @@ -2040,27 +2033,27 @@ { "name": "ocp-release", "url": "https://quay.io/repository/openshift-release-dev/ocp-release", - "popularity": 41511623.0 + "popularity": 43570374.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "thanos", "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2526636.0 + "popularity": 2497215.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -2102,27 +2095,27 @@ { "name": "citrix-k8s-ingress-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", - "popularity": 138781.0 + "popularity": 139218.0 }, { "name": "citrix-k8s-node-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", - "popularity": 39371.0 + "popularity": 39408.0 }, { "name": "citrix-adc-metrics-exporter", "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", - "popularity": 39329.0 + "popularity": 39170.0 }, { "name": "citrix-observability-exporter", "url": "https://quay.io/repository/citrix/citrix-observability-exporter", - "popularity": 2000.0 + "popularity": 1982.0 }, { - "name": "citrix-k8s-cpx-ingress", - "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", - "popularity": 391.0 + "name": "citrix-ipam-controller", + "url": "https://quay.io/repository/citrix/citrix-ipam-controller", + "popularity": 393.0 } ] }, @@ -2164,27 +2157,27 @@ { "name": "citrix-k8s-ingress-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", - "popularity": 138781.0 + "popularity": 139218.0 }, { "name": "citrix-k8s-node-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", - "popularity": 39371.0 + "popularity": 39408.0 }, { "name": "citrix-adc-metrics-exporter", "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", - "popularity": 39329.0 + "popularity": 39170.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 148414.0 + "popularity": 104567.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 102256.0 + "popularity": 102060.0 } ] }, @@ -2235,7 +2228,7 @@ { "name": "baobab-lims", "url": "https://quay.io/repository/baobab-lims/baobab-lims", - "popularity": 29.0 + "popularity": 38.0 }, { "name": "lims-backend", @@ -2278,7 +2271,7 @@ { "name": "baobab-lims", "url": "https://quay.io/repository/baobab-lims/baobab-lims", - "popularity": 29.0 + "popularity": 38.0 }, { "name": "lims-backend", @@ -2442,27 +2435,27 @@ { "name": "direct-csi", "url": "https://quay.io/repository/minio/direct-csi", - "popularity": 22477.0 + "popularity": 27695.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 + "popularity": 90209.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183645.0 + "popularity": 183319.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52832.0 + "popularity": 52822.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 + "popularity": 30527.0 } ] }, @@ -2504,27 +2497,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-management-ingress-operator", "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 156321.0 + "popularity": 157394.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 163268.0 + "popularity": 165365.0 } ] }, @@ -2547,27 +2540,27 @@ { "name": "teleport", "url": "https://quay.io/repository/gravitational/teleport", - "popularity": 145184.0 + "popularity": 137803.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 36573.0 + "popularity": 30531.0 }, { "name": "teleport-ent", "url": "https://quay.io/repository/gravitational/teleport-ent", - "popularity": 25900.0 + "popularity": 27180.0 }, { "name": "multiqc", "url": "https://quay.io/repository/biocontainers/multiqc", - "popularity": 30213.0 + "popularity": 43577.0 }, { "name": "dep-scan", "url": "https://quay.io/repository/appthreat/dep-scan", - "popularity": 368.0 + "popularity": 452.0 } ] }, @@ -2728,7 +2721,7 @@ { "name": "db2", "url": "https://quay.io/repository/rhoar_qe/db2", - "popularity": 3.0 + "popularity": 2.0 }, { "name": "db2", @@ -2750,17 +2743,17 @@ { "name": "ibm-db2-sfg", "url": "https://quay.io/repository/hollisc/ibm-db2-sfg", - "popularity": 9.0 + "popularity": 2.0 }, { "name": "elm-db2", "url": "https://quay.io/repository/dominik_jergus/elm-db2", - "popularity": 6.0 + "popularity": 7.0 }, { "name": "db2", "url": "https://quay.io/repository/rhoar_qe/db2", - "popularity": 3.0 + "popularity": 2.0 } ] }, @@ -2820,27 +2813,27 @@ { "name": "okd-content", "url": "https://quay.io/repository/openshift/okd-content", - "popularity": 9313637.0 + "popularity": 9323844.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -2865,39 +2858,39 @@ "OS": [ { "Class": "OS", - "Architecture": "amd64", - "Variants": null, + "Architecture": "arm64", + "Variants": "v8", "Versions": null, "Type": "linux", "Subtype": "" }, { "Class": "OS", - "Architecture": "arm", - "Variants": "v6", + "Architecture": "386", + "Variants": null, "Versions": null, "Type": "linux", "Subtype": "" }, { "Class": "OS", - "Architecture": "arm", - "Variants": "v7", + "Architecture": "mips64le", + "Variants": null, "Versions": null, "Type": "linux", "Subtype": "" }, { "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", + "Architecture": "ppc64le", + "Variants": null, "Versions": null, "Type": "linux", "Subtype": "" }, { "Class": "OS", - "Architecture": "386", + "Architecture": "s390x", "Variants": null, "Versions": null, "Type": "linux", @@ -2905,7 +2898,7 @@ }, { "Class": "OS", - "Architecture": "ppc64le", + "Architecture": "amd64", "Variants": null, "Versions": null, "Type": "linux", @@ -2913,8 +2906,16 @@ }, { "Class": "OS", - "Architecture": "s390x", - "Variants": null, + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", "Versions": null, "Type": "linux", "Subtype": "" @@ -2969,39 +2970,39 @@ "OS": [ { "Class": "OS", - "Architecture": "amd64", - "Variants": null, + "Architecture": "arm64", + "Variants": "v8", "Versions": null, "Type": "linux", "Subtype": "" }, { "Class": "OS", - "Architecture": "arm", - "Variants": "v6", + "Architecture": "386", + "Variants": null, "Versions": null, "Type": "linux", "Subtype": "" }, { "Class": "OS", - "Architecture": "arm", - "Variants": "v7", + "Architecture": "mips64le", + "Variants": null, "Versions": null, "Type": "linux", "Subtype": "" }, { "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", + "Architecture": "ppc64le", + "Variants": null, "Versions": null, "Type": "linux", "Subtype": "" }, { "Class": "OS", - "Architecture": "386", + "Architecture": "s390x", "Variants": null, "Versions": null, "Type": "linux", @@ -3009,7 +3010,7 @@ }, { "Class": "OS", - "Architecture": "ppc64le", + "Architecture": "amd64", "Variants": null, "Versions": null, "Type": "linux", @@ -3017,8 +3018,16 @@ }, { "Class": "OS", - "Architecture": "s390x", - "Variants": null, + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", "Versions": null, "Type": "linux", "Subtype": "" @@ -3125,27 +3134,27 @@ { "name": "che-plugin-artifacts-broker", "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", - "popularity": 19550.0 + "popularity": 19392.0 }, { "name": "che-operator", "url": "https://quay.io/repository/eclipse/che-operator", - "popularity": 34982.0 + "popularity": 37958.0 }, { "name": "che-plugin-sidecar", "url": "https://quay.io/repository/eclipse/che-plugin-sidecar", - "popularity": 21159.0 + "popularity": 21047.0 }, { "name": "che-java11-maven", "url": "https://quay.io/repository/eclipse/che-java11-maven", - "popularity": 25543.0 + "popularity": 26579.0 }, { "name": "che-plugin-registry", "url": "https://quay.io/repository/eclipse/che-plugin-registry", - "popularity": 14280.0 + "popularity": 14198.0 } ] }, @@ -3288,7 +3297,7 @@ { "name": "elastic-cloud-eck", "url": "https://quay.io/repository/operatorhubio/elastic-cloud-eck", - "popularity": 1036.0 + "popularity": 986.0 }, { "name": "elastic-curator", @@ -3298,17 +3307,17 @@ { "name": "ibm-elastic-stack-operator", "url": "https://quay.io/repository/opencloudio/ibm-elastic-stack-operator", - "popularity": 40.0 + "popularity": 38.0 }, { "name": "elastic-phenix-operator", "url": "https://quay.io/repository/operatorhubio/elastic-phenix-operator", - "popularity": 36.0 + "popularity": 32.0 }, { "name": "assisted-events-scrape", "url": "https://quay.io/repository/app-sre/assisted-events-scrape", - "popularity": 2622.0 + "popularity": 2626.0 } ] }, @@ -3685,27 +3694,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96679165.0 + "popularity": 96986027.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 92762600.0 + "popularity": 93058787.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 92854581.0 + "popularity": 93141016.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1343874.0 + "popularity": 1359497.0 } ] }, @@ -3806,27 +3815,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "haproxy-ingress", "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", - "popularity": 909887.0 + "popularity": 857217.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 421059.0 + "popularity": 430335.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 } ] }, @@ -3846,30 +3855,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "deployhub-pro", - "url": "https://quay.io/repository/deployhub/deployhub-pro", - "popularity": 2.0 - }, { "name": "msisensor-pro", "url": "https://quay.io/repository/biocontainers/msisensor-pro", - "popularity": 439.0 + "popularity": 674.0 }, { "name": "artifactory-pro", "url": "https://quay.io/repository/jfrog/artifactory-pro", - "popularity": 98.0 + "popularity": 110.0 }, { "name": "rust", "url": "https://quay.io/repository/instrumentisto/rust", - "popularity": 2318.0 + "popularity": 2351.0 }, { "name": "ambassador_pro", "url": "https://quay.io/repository/datawire/ambassador_pro", - "popularity": 115.0 + "popularity": 133.0 + }, + { + "name": "aria2-pro", + "url": "https://quay.io/repository/truecharts/aria2-pro", + "popularity": 32.0 } ] }, @@ -3987,27 +3996,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96679165.0 + "popularity": 96986027.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 92762600.0 + "popularity": 93058787.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 92854581.0 + "popularity": 93141016.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 920253.0 + "popularity": 939648.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1343874.0 + "popularity": 1359497.0 } ] }, @@ -4030,27 +4039,27 @@ { "name": "exonerate", "url": "https://quay.io/repository/biocontainers/exonerate", - "popularity": 3234.0 + "popularity": 4274.0 }, { "name": "apache-ftp", "url": "https://quay.io/repository/fuse_qe/apache-ftp", - "popularity": 93.0 + "popularity": 100.0 + }, + { + "name": "alpine-ftp-server-tls", + "url": "https://quay.io/repository/aminvakil/alpine-ftp-server-tls", + "popularity": 71.0 }, { "name": "blast", "url": "https://quay.io/repository/biocontainers/blast", - "popularity": 1674.0 + "popularity": 2282.0 }, { "name": "hisat2", "url": "https://quay.io/repository/biocontainers/hisat2", - "popularity": 116.0 - }, - { - "name": "gromacs", - "url": "https://quay.io/repository/biocontainers/gromacs", - "popularity": 82.0 + "popularity": 123.0 } ] }, @@ -4139,27 +4148,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "chrome", "url": "https://quay.io/repository/browsers/chrome", - "popularity": 53303.0 + "popularity": 49486.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 + "popularity": 90209.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 36573.0 + "popularity": 30531.0 } ] }, @@ -4298,7 +4307,7 @@ { "name": "hadoop", "url": "https://quay.io/repository/lalyos/hadoop", - "popularity": 0.0 + "popularity": 2.0 }, { "name": "hadoop", @@ -4312,12 +4321,12 @@ }, { "name": "hadoop", - "url": "https://quay.io/repository/flysangel/hadoop", + "url": "https://quay.io/repository/mcapitanio/hadoop", "popularity": 0.0 }, { "name": "hadoop", - "url": "https://quay.io/repository/mcapitanio/hadoop", + "url": "https://quay.io/repository/flysangel/hadoop", "popularity": 0.0 }, { @@ -4340,7 +4349,7 @@ { "name": "origin-metering-hadoop", "url": "https://quay.io/repository/openshift/origin-metering-hadoop", - "popularity": 3696.0 + "popularity": 3674.0 }, { "name": "metering-hadoop", @@ -4350,17 +4359,17 @@ { "name": "hadoop-test", "url": "https://quay.io/repository/signalfx/hadoop-test", - "popularity": 302.0 + "popularity": 460.0 }, { "name": "hadoop-namenode", "url": "https://quay.io/repository/falkonry/hadoop-namenode", - "popularity": 216.0 + "popularity": 148.0 }, { "name": "hadoop-datanode", "url": "https://quay.io/repository/falkonry/hadoop-datanode", - "popularity": 101.0 + "popularity": 69.0 } ] }, @@ -4390,16 +4399,16 @@ "url": "https://quay.io/repository/draft/tensorflow-cross-compiler", "popularity": 0.0 }, + { + "name": "compiler", + "url": "https://quay.io/repository/serulian/compiler", + "popularity": 0.0 + }, { "name": "rust-esp", "url": "https://quay.io/repository/ctron/rust-esp", "popularity": 3.0 }, - { - "name": "ohpc-gnu9", - "url": "https://quay.io/repository/ohpc/ohpc-gnu9", - "popularity": 5.0 - }, { "name": "pdftk", "url": "https://quay.io/repository/pdftk/pdftk", @@ -4424,29 +4433,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "checkpoints-compiler", - "url": "https://quay.io/repository/sharkofmirkwood/checkpoints-compiler", + "name": "ansi-sdk", + "url": "https://quay.io/repository/theloeki/ansi-sdk", "popularity": 0.0 }, { - "name": "ansi-sdk", - "url": "https://quay.io/repository/theloeki/ansi-sdk", - "popularity": 2.0 + "name": "checkpoints-compiler", + "url": "https://quay.io/repository/sharkofmirkwood/checkpoints-compiler", + "popularity": 0.0 }, { "name": "ansi-builder", "url": "https://quay.io/repository/exd_infra_plts_cip/ansi-builder", "popularity": 2.0 }, + { + "name": "tensorflow-cross-compiler", + "url": "https://quay.io/repository/draft/tensorflow-cross-compiler", + "popularity": 0.0 + }, { "name": "rust-esp", "url": "https://quay.io/repository/ctron/rust-esp", "popularity": 3.0 - }, - { - "name": "ohpc-gnu9", - "url": "https://quay.io/repository/ohpc/ohpc-gnu9", - "popularity": 5.0 } ] }, @@ -4506,27 +4515,27 @@ { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 163268.0 + "popularity": 165365.0 }, { "name": "hubble-relay", "url": "https://quay.io/repository/cilium/hubble-relay", - "popularity": 118685.0 + "popularity": 117328.0 }, { "name": "operator", "url": "https://quay.io/repository/cilium/operator", - "popularity": 93329.0 + "popularity": 95250.0 }, { "name": "admission-server", "url": "https://quay.io/repository/openebs/admission-server", - "popularity": 24346.0 + "popularity": 24714.0 } ] }, @@ -4622,27 +4631,27 @@ { "name": "ocp-release", "url": "https://quay.io/repository/openshift-release-dev/ocp-release", - "popularity": 41511623.0 + "popularity": 43570374.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -4752,27 +4761,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 } ] }, @@ -4882,27 +4891,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 } ] }, @@ -4952,27 +4961,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96679165.0 + "popularity": 96986027.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 92762600.0 + "popularity": 93058787.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 92854581.0 + "popularity": 93141016.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 920253.0 + "popularity": 939648.0 }, { "name": "cert-manager-ctl", "url": "https://quay.io/repository/jetstack/cert-manager-ctl", - "popularity": 652852.0 + "popularity": 645293.0 } ] }, @@ -5022,27 +5031,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96679165.0 + "popularity": 96986027.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 92762600.0 + "popularity": 93058787.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 92854581.0 + "popularity": 93141016.0 }, { "name": "okd-content", "url": "https://quay.io/repository/openshift/okd-content", - "popularity": 9313637.0 + "popularity": 9323844.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 920253.0 + "popularity": 939648.0 } ] }, @@ -5152,27 +5161,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 } ] }, @@ -5282,27 +5291,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 } ] }, @@ -5412,27 +5421,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 } ] }, @@ -5542,27 +5551,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 } ] }, @@ -5672,27 +5681,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 } ] }, @@ -5802,27 +5811,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "utility", "url": "https://quay.io/repository/theiagen/utility", - "popularity": 233739.0 + "popularity": 230211.0 } ] }, @@ -5932,27 +5941,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 } ] }, @@ -6020,27 +6029,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96679165.0 + "popularity": 96986027.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 92762600.0 + "popularity": 93058787.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 92854581.0 + "popularity": 93141016.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 920253.0 + "popularity": 939648.0 }, { "name": "cert-manager-ctl", "url": "https://quay.io/repository/jetstack/cert-manager-ctl", - "popularity": 652852.0 + "popularity": 645293.0 } ] }, @@ -6052,89 +6061,77 @@ "entity_id": 73 }, { - "IBM Spectrum Scale": [ + "IBM Tivoli Composite Application Manager": [ { "dockerhub_exact_images": [], - "dockerhub_top_images": [] + "dockerhub_top_images": [ + { + "name": "kasmweb/manager", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", + "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] }, { "quay_exact_images": [], "quay_top_images": [ { - "name": "ibm-crossplane-bedrock-shim-config", - "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "name": "cert-manager-controller", + "url": "https://quay.io/repository/jetstack/cert-manager-controller", + "popularity": 96986027.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "name": "cert-manager-webhook", + "url": "https://quay.io/repository/jetstack/cert-manager-webhook", + "popularity": 93058787.0 }, { - "name": "ibm-events-operator", - "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "name": "cert-manager-cainjector", + "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", + "popularity": 93141016.0 }, { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "name": "cert-manager-acmesolver", + "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", + "popularity": 939648.0 }, { - "name": "ibm-common-service-catalog", - "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "name": "cert-manager-ctl", + "url": "https://quay.io/repository/jetstack/cert-manager-ctl", + "popularity": 645293.0 } ] }, { - "operators": [ - { - "package_id": "25527a7e-74b4-4129-975d-8b1e42e44327", - "name": "ibm-spectrum-scale-csi-operator", - "normalized_name": "ibm-spectrum-scale-csi-operator", - "logo_image_id": "a4a6430a-5c0a-47da-9333-b88782d59d39", - "stars": 0, - "display_name": "IBM Spectrum Scale CSI Plugin Operator", - "description": "An operator for deploying and managing the IBM Spectrum Scale CSI Driver.", - "version": "2.6.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1656309636, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/IBM/ibm-spectrum-scale-csi/", - "container_images": [ - "quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator" - ] - } - ] + "operators": [] } ], "entity_type": 2, - "entity_id": 74 + "entity_id": 76 }, { - "IBM Tivoli Asset Management": [ + "IBM Tivoli Monitoring": [ { "dockerhub_exact_images": [], "dockerhub_top_images": [ @@ -6232,227 +6229,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 - }, - { - "name": "ibm-common-service-catalog", - "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 2, - "entity_id": 75 - }, - { - "IBM Tivoli Composite Application Manager": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "kasmweb/manager", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", - "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "cert-manager-controller", - "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96679165.0 - }, - { - "name": "cert-manager-webhook", - "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 92762600.0 - }, - { - "name": "cert-manager-cainjector", - "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 92854581.0 - }, - { - "name": "cert-manager-acmesolver", - "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 920253.0 - }, - { - "name": "cert-manager-ctl", - "url": "https://quay.io/repository/jetstack/cert-manager-ctl", - "popularity": 652852.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 2, - "entity_id": 76 - }, - { - "IBM Tivoli Monitoring": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "ibmcom/ibm-operator-catalog", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 5, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/ibm-mq-operator", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/ibm-apiconnect-operator", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "ibm-crossplane-bedrock-shim-config", - "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 - }, - { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 - }, - { - "name": "ibm-events-operator", - "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 } ] }, @@ -6463,76 +6260,6 @@ "entity_type": 2, "entity_id": 77 }, - { - "IBM Tivoli Storage Manager": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "kasmweb/manager", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/kasmweb/manager", - "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "cert-manager-controller", - "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96679165.0 - }, - { - "name": "cert-manager-webhook", - "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 92762600.0 - }, - { - "name": "cert-manager-cainjector", - "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 92854581.0 - }, - { - "name": "cert-manager-acmesolver", - "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 920253.0 - }, - { - "name": "cert-manager-ctl", - "url": "https://quay.io/repository/jetstack/cert-manager-ctl", - "popularity": 652852.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 2, - "entity_id": 78 - }, { "IBM Tivoli Workload Scheduler": [ { @@ -6564,27 +6291,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "workload-agent", "url": "https://quay.io/repository/sysdig/workload-agent", - "popularity": 260677.0 + "popularity": 247186.0 } ] }, @@ -6601,12 +6328,12 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "websphere-liberty", - "Official image": true, - "Verified Publisher": false, + "name": "ibmcom/websphere-liberty", + "Official image": false, + "Verified Publisher": true, "Description": "", - "star_count": 286, - "Docker_Url": "https://hub.docker.com/_/websphere-liberty", + "star_count": 22, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", "OS": [ { "Class": "OS", @@ -6618,7 +6345,7 @@ }, { "Class": "OS", - "Architecture": "ppc64le", + "Architecture": "s390x", "Variants": null, "Versions": null, "Type": "linux", @@ -6626,7 +6353,7 @@ }, { "Class": "OS", - "Architecture": "s390x", + "Architecture": "ppc64le", "Variants": null, "Versions": null, "Type": "linux", @@ -6635,12 +6362,12 @@ ] }, { - "name": "ibmcom/websphere-liberty", - "Official image": false, - "Verified Publisher": true, + "name": "websphere-liberty", + "Official image": true, + "Verified Publisher": false, "Description": "", - "star_count": 22, - "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", + "star_count": 286, + "Docker_Url": "https://hub.docker.com/_/websphere-liberty", "OS": [ { "Class": "OS", @@ -6652,7 +6379,7 @@ }, { "Class": "OS", - "Architecture": "s390x", + "Architecture": "ppc64le", "Variants": null, "Versions": null, "Type": "linux", @@ -6660,7 +6387,7 @@ }, { "Class": "OS", - "Architecture": "ppc64le", + "Architecture": "s390x", "Variants": null, "Versions": null, "Type": "linux", @@ -6728,27 +6455,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 } ] }, @@ -6842,27 +6569,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 } ] }, @@ -6956,27 +6683,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 } ] }, @@ -6993,12 +6720,12 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "websphere-liberty", - "Official image": true, - "Verified Publisher": false, + "name": "ibmcom/websphere-liberty", + "Official image": false, + "Verified Publisher": true, "Description": "", - "star_count": 286, - "Docker_Url": "https://hub.docker.com/_/websphere-liberty", + "star_count": 22, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", "OS": [ { "Class": "OS", @@ -7010,7 +6737,7 @@ }, { "Class": "OS", - "Architecture": "ppc64le", + "Architecture": "s390x", "Variants": null, "Versions": null, "Type": "linux", @@ -7018,7 +6745,7 @@ }, { "Class": "OS", - "Architecture": "s390x", + "Architecture": "ppc64le", "Variants": null, "Versions": null, "Type": "linux", @@ -7027,12 +6754,12 @@ ] }, { - "name": "ibmcom/websphere-liberty", - "Official image": false, - "Verified Publisher": true, + "name": "websphere-liberty", + "Official image": true, + "Verified Publisher": false, "Description": "", - "star_count": 22, - "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", + "star_count": 286, + "Docker_Url": "https://hub.docker.com/_/websphere-liberty", "OS": [ { "Class": "OS", @@ -7044,7 +6771,7 @@ }, { "Class": "OS", - "Architecture": "s390x", + "Architecture": "ppc64le", "Variants": null, "Versions": null, "Type": "linux", @@ -7052,7 +6779,7 @@ }, { "Class": "OS", - "Architecture": "ppc64le", + "Architecture": "s390x", "Variants": null, "Versions": null, "Type": "linux", @@ -7068,27 +6795,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 } ] }, @@ -7130,7 +6857,7 @@ { "name": "ims-ee", "url": "https://quay.io/repository/adn1107/ims-ee", - "popularity": 0.0 + "popularity": 2.0 }, { "name": "ims-kaas", @@ -7163,27 +6890,27 @@ { "name": "argo-hub-workflows-codefresh-csdp-versions-0.0.6-images-image-enricher-git-info", "url": "https://quay.io/repository/codefreshplugins/argo-hub-workflows-codefresh-csdp-versions-0.0.6-images-image-enricher-git-info", - "popularity": 92681.0 + "popularity": 92589.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 163268.0 + "popularity": 165365.0 }, { "name": "hubble-relay", "url": "https://quay.io/repository/cilium/hubble-relay", - "popularity": 118685.0 + "popularity": 117328.0 }, { "name": "operator", "url": "https://quay.io/repository/cilium/operator", - "popularity": 93329.0 + "popularity": 95250.0 } ] }, @@ -7206,27 +6933,27 @@ { "name": "community-e2e-images", "url": "https://quay.io/repository/openshift/community-e2e-images", - "popularity": 4455599.0 + "popularity": 5148256.0 }, { "name": "community-e2e-images", "url": "https://quay.io/repository/multi-arch/community-e2e-images", - "popularity": 207273.0 + "popularity": 187349.0 }, { "name": "community-operator-index", "url": "https://quay.io/repository/olmqe/community-operator-index", - "popularity": 24124.0 + "popularity": 24119.0 }, { "name": "teleport", "url": "https://quay.io/repository/gravitational/teleport", - "popularity": 145184.0 + "popularity": 137803.0 }, { "name": "hedgedoc", "url": "https://quay.io/repository/hedgedoc/hedgedoc", - "popularity": 97325.0 + "popularity": 97293.0 } ] }, @@ -7404,27 +7131,27 @@ { "name": "common-service-operator", "url": "https://quay.io/repository/opencloudio/common-service-operator", - "popularity": 284079.0 + "popularity": 300956.0 }, { "name": "service-catalog", "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", - "popularity": 330422.0 + "popularity": 329446.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -7444,7 +7171,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 5512, + "star_count": 5514, "Docker_Url": "https://hub.docker.com/_/jenkins", "OS": [ { @@ -7518,7 +7245,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 5512, + "star_count": 5514, "Docker_Url": "https://hub.docker.com/_/jenkins", "OS": [ { @@ -7574,49 +7301,49 @@ { "name": "jenkins", "url": "https://quay.io/repository/cdis/jenkins", - "popularity": 12007.0 + "popularity": 6049.0 }, { "name": "jenkins", "url": "https://quay.io/repository/h3nrique/jenkins", - "popularity": 10068.0 + "popularity": 10071.0 }, { "name": "jenkins", "url": "https://quay.io/repository/hany_mostafa/jenkins", - "popularity": 3880.0 + "popularity": 3878.0 }, { "name": "jenkins", "url": "https://quay.io/repository/cloudifire/jenkins", - "popularity": 8.0 + "popularity": 9.0 } ], "quay_top_images": [ { "name": "origin-jenkins", "url": "https://quay.io/repository/openshift/origin-jenkins", - "popularity": 60337.0 + "popularity": 64145.0 }, { "name": "origin-jenkins-agent-base", "url": "https://quay.io/repository/openshift/origin-jenkins-agent-base", - "popularity": 22979.0 + "popularity": 23109.0 }, { - "name": "jenkins", - "url": "https://quay.io/repository/cdis/jenkins", - "popularity": 12007.0 + "name": "ops-jenkins-worker", + "url": "https://quay.io/repository/sisense/ops-jenkins-worker", + "popularity": 10535.0 }, { "name": "jenkins", "url": "https://quay.io/repository/h3nrique/jenkins", - "popularity": 10068.0 + "popularity": 10071.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183645.0 + "popularity": 183319.0 } ] }, @@ -7710,27 +7437,27 @@ { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52832.0 + "popularity": 52822.0 }, { "name": "netbox", "url": "https://quay.io/repository/netboxcommunity/netbox", - "popularity": 11302.0 + "popularity": 10714.0 }, { "name": "signalilo", "url": "https://quay.io/repository/vshn/signalilo", - "popularity": 1448.0 + "popularity": 1485.0 }, { "name": "business-central-workbench-showcase", "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", - "popularity": 637.0 + "popularity": 657.0 }, { "name": "kie-server-showcase", "url": "https://quay.io/repository/kiegroup/kie-server-showcase", - "popularity": 704.0 + "popularity": 728.0 } ] }, @@ -7770,27 +7497,27 @@ { "name": "cluster-image-scanner-scan-malware", "url": "https://quay.io/repository/sdase/cluster-image-scanner-scan-malware", - "popularity": 1916.0 + "popularity": 1963.0 }, { "name": "sandfly-rabbit", "url": "https://quay.io/repository/sandfly/sandfly-rabbit", - "popularity": 14.0 + "popularity": 12.0 }, { "name": "sandfly-server-mgmt", "url": "https://quay.io/repository/sandfly/sandfly-server-mgmt", - "popularity": 16.0 + "popularity": 12.0 }, { "name": "sandfly-server", "url": "https://quay.io/repository/sandfly/sandfly-server", - "popularity": 14.0 + "popularity": 12.0 }, { "name": "sandfly-node", "url": "https://quay.io/repository/sandfly/sandfly-node", - "popularity": 12.0 + "popularity": 10.0 } ] }, @@ -7813,27 +7540,27 @@ { "name": "contour-plus", "url": "https://quay.io/repository/cybozu/contour-plus", - "popularity": 1593.0 + "popularity": 2034.0 }, { "name": "prinseq-plus-plus", "url": "https://quay.io/repository/biocontainers/prinseq-plus-plus", - "popularity": 18.0 + "popularity": 34.0 }, { "name": "signalilo", "url": "https://quay.io/repository/vshn/signalilo", - "popularity": 1448.0 + "popularity": 1485.0 }, { "name": "dep-scan", "url": "https://quay.io/repository/appthreat/dep-scan", - "popularity": 368.0 + "popularity": 452.0 }, { "name": "circleci-helm", "url": "https://quay.io/repository/cmproductions/circleci-helm", - "popularity": 24.0 + "popularity": 26.0 } ] }, @@ -8197,12 +7924,12 @@ { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52832.0 + "popularity": 52822.0 }, { "name": "memcached", "url": "https://quay.io/repository/factory2/memcached", - "popularity": 10279.0 + "popularity": 10434.0 }, { "name": "memcached", @@ -8212,34 +7939,34 @@ { "name": "memcached", "url": "https://quay.io/repository/cybozu/memcached", - "popularity": 1557.0 + "popularity": 1957.0 }, { "name": "memcached", "url": "https://quay.io/repository/openstack.kolla/memcached", - "popularity": 1906.0 + "popularity": 1094.0 }, { "name": "memcached", "url": "https://quay.io/repository/redhat-aqe/memcached", - "popularity": 677.0 + "popularity": 676.0 } ], "quay_top_images": [ { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 82319.0 + "popularity": 79779.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52832.0 + "popularity": 52822.0 }, { "name": "memcached", "url": "https://quay.io/repository/factory2/memcached", - "popularity": 10279.0 + "popularity": 10434.0 }, { "name": "memcached", @@ -8247,9 +7974,9 @@ "popularity": 4198.0 }, { - "name": "memcached-operator", - "url": "https://quay.io/repository/schamol/memcached-operator", - "popularity": 1969.0 + "name": "memcached-exporter", + "url": "https://quay.io/repository/cybozu/memcached-exporter", + "popularity": 2048.0 } ] }, @@ -8359,12 +8086,12 @@ ] }, { - "name": "ibmcom/verify-access-wrp", + "name": "ibmcom/verify-access-dsc", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-wrp", + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-dsc", "OS": [ { "Class": "OS", @@ -8377,12 +8104,12 @@ ] }, { - "name": "ibmcom/verify-access-dsc", + "name": "ibmcom/verify-access-wrp", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-dsc", + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-wrp", "OS": [ { "Class": "OS", @@ -8402,27 +8129,27 @@ { "name": "access-logger", "url": "https://quay.io/repository/solo-io/access-logger", - "popularity": 43378.0 + "popularity": 43574.0 }, { "name": "ibm-commonui-operator", "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", - "popularity": 113315.0 + "popularity": 112605.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 + "popularity": 90209.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 82319.0 + "popularity": 79779.0 }, { "name": "prometheus-nginxlog-exporter", "url": "https://quay.io/repository/martinhelmich/prometheus-nginxlog-exporter", - "popularity": 48389.0 + "popularity": 44086.0 } ] }, @@ -8445,27 +8172,27 @@ { "name": "rapid-response-host-component", "url": "https://quay.io/repository/sysdig/rapid-response-host-component", - "popularity": 609628.0 + "popularity": 608505.0 }, { "name": "host-analyzer", "url": "https://quay.io/repository/sysdig/host-analyzer", - "popularity": 244492.0 + "popularity": 249552.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 380580.0 + "popularity": 370506.0 } ] }, @@ -8488,27 +8215,27 @@ { "name": "velero-plugin-for-microsoft-azure", "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", - "popularity": 3363.0 + "popularity": 3907.0 }, { "name": "microsoft-edge-stable", "url": "https://quay.io/repository/browser/microsoft-edge-stable", - "popularity": 830.0 + "popularity": 910.0 }, { "name": "che-dotnet-2.2", "url": "https://quay.io/repository/eclipse/che-dotnet-2.2", - "popularity": 550.0 + "popularity": 584.0 }, { "name": "che-dotnet-3.1", "url": "https://quay.io/repository/eclipse/che-dotnet-3.1", - "popularity": 548.0 + "popularity": 578.0 }, { "name": "gromacs", "url": "https://quay.io/repository/biocontainers/gromacs", - "popularity": 82.0 + "popularity": 42.0 } ] }, @@ -8558,27 +8285,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96679165.0 + "popularity": 96986027.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 92762600.0 + "popularity": 93058787.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 92854581.0 + "popularity": 93141016.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 920253.0 + "popularity": 939648.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 } ] }, @@ -8601,27 +8328,27 @@ { "name": "velero-plugin-for-microsoft-azure", "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", - "popularity": 3363.0 + "popularity": 3907.0 }, { "name": "microsoft-edge-stable", "url": "https://quay.io/repository/browser/microsoft-edge-stable", - "popularity": 830.0 + "popularity": 910.0 }, { "name": "che-dotnet-2.2", "url": "https://quay.io/repository/eclipse/che-dotnet-2.2", - "popularity": 550.0 + "popularity": 584.0 }, { "name": "che-dotnet-3.1", "url": "https://quay.io/repository/eclipse/che-dotnet-3.1", - "popularity": 548.0 + "popularity": 578.0 }, { "name": "dotnet-sonar", "url": "https://quay.io/repository/rockcentral/dotnet-sonar", - "popularity": 27.0 + "popularity": 9.0 } ] }, @@ -8699,27 +8426,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 + }, + { + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -8839,27 +8566,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96679165.0 + "popularity": 96986027.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 92762600.0 + "popularity": 93058787.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 92854581.0 + "popularity": 93141016.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 920253.0 + "popularity": 939648.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1343874.0 + "popularity": 1359497.0 } ] }, @@ -8882,27 +8609,27 @@ { "name": "velero-plugin-for-microsoft-azure", "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", - "popularity": 3363.0 + "popularity": 3907.0 }, { "name": "microsoft-edge-stable", "url": "https://quay.io/repository/browser/microsoft-edge-stable", - "popularity": 830.0 + "popularity": 910.0 }, { "name": "che-dotnet-2.2", "url": "https://quay.io/repository/eclipse/che-dotnet-2.2", - "popularity": 550.0 + "popularity": 584.0 }, { "name": "che-dotnet-3.1", "url": "https://quay.io/repository/eclipse/che-dotnet-3.1", - "popularity": 548.0 + "popularity": 578.0 }, { "name": "dotnet-sonar", "url": "https://quay.io/repository/rockcentral/dotnet-sonar", - "popularity": 27.0 + "popularity": 9.0 } ] }, @@ -8925,27 +8652,27 @@ { "name": "explorer-bff", "url": "https://quay.io/repository/decentraland/explorer-bff", - "popularity": 251.0 + "popularity": 232.0 }, { "name": "velero-plugin-for-microsoft-azure", "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", - "popularity": 3363.0 + "popularity": 3907.0 }, { "name": "microsoft-edge-stable", "url": "https://quay.io/repository/browser/microsoft-edge-stable", - "popularity": 830.0 + "popularity": 910.0 }, { "name": "pso-explorer", "url": "https://quay.io/repository/purestorage/pso-explorer", - "popularity": 477.0 + "popularity": 480.0 }, { "name": "explorer", "url": "https://quay.io/repository/jkunstle/explorer", - "popularity": 857.0 + "popularity": 878.0 } ] }, @@ -9005,27 +8732,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 + }, + { + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -9119,27 +8846,27 @@ { "name": "velero-plugin-for-microsoft-azure", "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", - "popularity": 3363.0 + "popularity": 3907.0 }, { "name": "microsoft-edge-stable", "url": "https://quay.io/repository/browser/microsoft-edge-stable", - "popularity": 830.0 + "popularity": 910.0 }, { "name": "che-dotnet-2.2", "url": "https://quay.io/repository/eclipse/che-dotnet-2.2", - "popularity": 550.0 + "popularity": 584.0 }, { "name": "che-dotnet-3.1", "url": "https://quay.io/repository/eclipse/che-dotnet-3.1", - "popularity": 548.0 + "popularity": 578.0 }, { "name": "dotnet-sonar", "url": "https://quay.io/repository/rockcentral/dotnet-sonar", - "popularity": 27.0 + "popularity": 9.0 } ] }, @@ -9291,27 +9018,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 380580.0 + "popularity": 370506.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 254930.0 + "popularity": 258719.0 } ] }, @@ -9334,27 +9061,27 @@ { "name": "apicurio-studio-api", "url": "https://quay.io/repository/apicurio/apicurio-studio-api", - "popularity": 13688.0 + "popularity": 13652.0 }, { "name": "apicurio-studio-ui", "url": "https://quay.io/repository/apicurio/apicurio-studio-ui", - "popularity": 9386.0 + "popularity": 9474.0 }, { "name": "apicurio-studio-ws", "url": "https://quay.io/repository/apicurio/apicurio-studio-ws", - "popularity": 6633.0 + "popularity": 6630.0 }, { "name": "visual-qontract", "url": "https://quay.io/repository/app-sre/visual-qontract", - "popularity": 4089.0 + "popularity": 4063.0 }, { "name": "velero-plugin-for-microsoft-azure", "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", - "popularity": 3363.0 + "popularity": 3907.0 } ] }, @@ -9396,27 +9123,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 378922.0 + "popularity": 395380.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "windup-web-openshift", "url": "https://quay.io/repository/windupeng/windup-web-openshift", - "popularity": 47186.0 + "popularity": 47530.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 + "popularity": 265927.0 }, { "name": "logio", "url": "https://quay.io/repository/blacklabelops/logio", - "popularity": 221724.0 + "popularity": 221690.0 } ] }, @@ -9439,27 +9166,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 378922.0 + "popularity": 395380.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1343874.0 + "popularity": 1359497.0 }, { "name": "windup-web-openshift", "url": "https://quay.io/repository/windupeng/windup-web-openshift", - "popularity": 47186.0 + "popularity": 47530.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 + "popularity": 265927.0 }, { "name": "nginx-116-centos7", "url": "https://quay.io/repository/centos7/nginx-116-centos7", - "popularity": 158256.0 + "popularity": 159422.0 } ] }, @@ -9482,27 +9209,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 378922.0 + "popularity": 395380.0 }, { "name": "icp-platform-auth", "url": "https://quay.io/repository/opencloudio/icp-platform-auth", - "popularity": 60267.0 + "popularity": 62806.0 }, { "name": "cni-installer", "url": "https://quay.io/repository/polargeospatialcenter/cni-installer", - "popularity": 149775.0 + "popularity": 149460.0 }, { "name": "windup-web-openshift", "url": "https://quay.io/repository/windupeng/windup-web-openshift", - "popularity": 47186.0 + "popularity": 47530.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 } ] }, @@ -9525,27 +9252,27 @@ { "name": "workflow-controller", "url": "https://quay.io/repository/argoproj/workflow-controller", - "popularity": 1182422.0 + "popularity": 1172724.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "kubecost-cost-model", "url": "https://quay.io/repository/kubecost1/kubecost-cost-model", - "popularity": 18244.0 + "popularity": 15061.0 }, { "name": "model-api-nginx", "url": "https://quay.io/repository/domino/model-api-nginx", - "popularity": 3160.0 + "popularity": 2900.0 }, { - "name": "model-server", - "url": "https://quay.io/repository/octoml/model-server", - "popularity": 3497.0 + "name": "workflow-helpers", + "url": "https://quay.io/repository/thoth-station/workflow-helpers", + "popularity": 2533.0 } ] }, @@ -9710,27 +9437,27 @@ { "name": "mongodb-agent", "url": "https://quay.io/repository/mongodb/mongodb-agent", - "popularity": 270773.0 + "popularity": 260822.0 }, { "name": "mongodb-enterprise-database", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", - "popularity": 101454.0 + "popularity": 99140.0 }, { "name": "mongodb-36-centos7", "url": "https://quay.io/repository/centos7/mongodb-36-centos7", - "popularity": 99438.0 + "popularity": 99737.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 148414.0 + "popularity": 104567.0 }, { "name": "mongodb-kubernetes-operator-version-upgrade-post-start-hook", "url": "https://quay.io/repository/mongodb/mongodb-kubernetes-operator-version-upgrade-post-start-hook", - "popularity": 88895.0 + "popularity": 86954.0 } ] }, @@ -10005,27 +9732,27 @@ { "name": "firefox", "url": "https://quay.io/repository/browsers/firefox", - "popularity": 17507.0 + "popularity": 17742.0 }, { "name": "selenium-standalone-firefox-debug", "url": "https://quay.io/repository/app-sre/selenium-standalone-firefox-debug", - "popularity": 4364.0 + "popularity": 4363.0 }, { "name": "firefox", "url": "https://quay.io/repository/startx/firefox", - "popularity": 9060.0 + "popularity": 8902.0 }, { "name": "selenium-standalone", "url": "https://quay.io/repository/redhatqe/selenium-standalone", - "popularity": 1756.0 + "popularity": 1825.0 }, { "name": "rust", "url": "https://quay.io/repository/instrumentisto/rust", - "popularity": 2318.0 + "popularity": 2351.0 } ] }, @@ -10129,27 +9856,27 @@ { "name": "nfs-client-provisioner", "url": "https://quay.io/repository/external_storage/nfs-client-provisioner", - "popularity": 709351.0 + "popularity": 708674.0 }, { "name": "nfs-client-provisioner-arm", "url": "https://quay.io/repository/external_storage/nfs-client-provisioner-arm", - "popularity": 87885.0 - }, - { - "name": "oc-client-test", - "url": "https://quay.io/repository/vishwanath_puranik/oc-client-test", - "popularity": 9309.0 + "popularity": 89108.0 }, { "name": "defectdojo-client", "url": "https://quay.io/repository/sdase/defectdojo-client", - "popularity": 5823.0 + "popularity": 5941.0 }, { "name": "kubernetes-vault-client", "url": "https://quay.io/repository/travelaudience/kubernetes-vault-client", - "popularity": 8807.0 + "popularity": 8244.0 + }, + { + "name": "nfs-client-provisioner", + "url": "https://quay.io/repository/vbouchaud/nfs-client-provisioner", + "popularity": 10282.0 } ] }, @@ -10172,7 +9899,7 @@ { "name": "docker-atlassian-jira-service-desk", "url": "https://quay.io/repository/ukhomeofficedigital/docker-atlassian-jira-service-desk", - "popularity": 34.0 + "popularity": 40.0 }, { "name": "ckan", @@ -10187,7 +9914,7 @@ { "name": "mbop", "url": "https://quay.io/repository/cloudservices/mbop", - "popularity": 26.0 + "popularity": 30.0 }, { "name": "peframe", @@ -10204,7 +9931,7 @@ "entity_id": 119 }, { - "MS SQL Server": [ + "MS SQL Server Compact": [ { "dockerhub_exact_images": [], "dockerhub_top_images": [ @@ -10252,107 +9979,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 2, - "entity_id": 120 - }, - { - "MS SQL Server Compact": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "rancher/server", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "gooddata/sql-executor", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "node-exporter", - "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 2536622.0 }, { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 - }, - { - "name": "shadowbox", - "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 - }, - { - "name": "wildfly-runtime-centos7", - "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -10372,7 +10019,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 12890, + "star_count": 12900, "Docker_Url": "https://hub.docker.com/_/mysql", "OS": [ { @@ -10429,24 +10076,6 @@ } ] }, - { - "name": "cimg/mysql", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/cimg/mysql", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, { "name": "ubuntu/mysql", "Official image": false, @@ -10489,6 +10118,24 @@ } ] }, + { + "name": "cimg/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/cimg/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, { "name": "google/mysql", "Official image": false, @@ -10563,24 +10210,6 @@ } ] }, - { - "name": "cimg/mysql", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/cimg/mysql", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, { "name": "ubuntu/mysql", "Official image": false, @@ -10623,6 +10252,24 @@ } ] }, + { + "name": "cimg/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/cimg/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, { "name": "bitnami/mysql", "Official image": false, @@ -10648,64 +10295,64 @@ { "name": "mysql", "url": "https://quay.io/repository/openshifttest/mysql", - "popularity": 18388.0 + "popularity": 18627.0 }, { "name": "mysql", "url": "https://quay.io/repository/gauravkumar9130/mysql", - "popularity": 26256.0 + "popularity": 26252.0 }, { "name": "mysql", "url": "https://quay.io/repository/prsurve/mysql", - "popularity": 62698.0 + "popularity": 62635.0 }, { "name": "mysql", "url": "https://quay.io/repository/cybozu/mysql", - "popularity": 5399.0 + "popularity": 4930.0 }, { "name": "mysql", "url": "https://quay.io/repository/hazelcast_cloud/mysql", - "popularity": 2206.0 + "popularity": 2156.0 }, { "name": "mysql", "url": "https://quay.io/repository/operations/mysql", - "popularity": 1219.0 + "popularity": 1427.0 }, { "name": "mysql", "url": "https://quay.io/repository/bridgez/mysql", - "popularity": 3.0 + "popularity": 4.0 } ], "quay_top_images": [ { "name": "mysql-80-centos7", "url": "https://quay.io/repository/centos7/mysql-80-centos7", - "popularity": 260685.0 + "popularity": 268428.0 }, { "name": "mysql", "url": "https://quay.io/repository/gauravkumar9130/mysql", - "popularity": 26256.0 + "popularity": 26252.0 }, { "name": "mysql", "url": "https://quay.io/repository/prsurve/mysql", - "popularity": 62698.0 + "popularity": 62635.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 245318.0 + "popularity": 250172.0 }, { "name": "mariadb-105-centos7", "url": "https://quay.io/repository/centos7/mariadb-105-centos7", - "popularity": 142292.0 + "popularity": 146865.0 } ] }, @@ -11148,27 +10795,27 @@ { "name": "ocp-release", "url": "https://quay.io/repository/openshift-release-dev/ocp-release", - "popularity": 41511623.0 + "popularity": 43570374.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "thanos", "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2526636.0 + "popularity": 2497215.0 }, { "name": "nginx-ingress-controller", "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1214037.0 + "popularity": 1244426.0 } ] }, @@ -11218,27 +10865,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96679165.0 + "popularity": 96986027.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 92762600.0 + "popularity": 93058787.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 92854581.0 + "popularity": 93141016.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 920253.0 + "popularity": 939648.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1343874.0 + "popularity": 1359497.0 } ] }, @@ -11258,7 +10905,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 52, + "star_count": 53, "Docker_Url": "https://hub.docker.com/r/bitnami/openldap", "OS": [ { @@ -11278,7 +10925,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 52, + "star_count": 53, "Docker_Url": "https://hub.docker.com/r/bitnami/openldap", "OS": [ { @@ -11326,7 +10973,7 @@ { "name": "openldap", "url": "https://quay.io/repository/minio/openldap", - "popularity": 816.0 + "popularity": 712.0 }, { "name": "openldap", @@ -11336,26 +10983,21 @@ { "name": "openldap", "url": "https://quay.io/repository/cs-sert/openldap", - "popularity": 78.0 + "popularity": 66.0 }, { "name": "openldap", "url": "https://quay.io/repository/llasmith/openldap", "popularity": 42.0 }, - { - "name": "openldap", - "url": "https://quay.io/repository/leena_ibm/openldap", - "popularity": 0.0 - }, { "name": "openldap", "url": "https://quay.io/repository/rosalindfranklininstitute/openldap", - "popularity": 35.0 + "popularity": 73.0 }, { "name": "openldap", - "url": "https://quay.io/repository/feven/openldap", + "url": "https://quay.io/repository/leena_ibm/openldap", "popularity": 0.0 }, { @@ -11377,13 +11019,18 @@ "name": "openldap", "url": "https://quay.io/repository/tmm/openldap", "popularity": 0.0 + }, + { + "name": "openldap", + "url": "https://quay.io/repository/elidirhealth/openldap", + "popularity": 0.0 } ], "quay_top_images": [ { "name": "openldap", "url": "https://quay.io/repository/minio/openldap", - "popularity": 816.0 + "popularity": 712.0 }, { "name": "openldap", @@ -11393,7 +11040,7 @@ { "name": "openldap", "url": "https://quay.io/repository/cs-sert/openldap", - "popularity": 78.0 + "popularity": 66.0 }, { "name": "openldap", @@ -11403,7 +11050,7 @@ { "name": "openldap", "url": "https://quay.io/repository/rosalindfranklininstitute/openldap", - "popularity": 35.0 + "popularity": 73.0 } ] }, @@ -11472,17 +11119,17 @@ { "name": "openvpn", "url": "https://quay.io/repository/kubermatic/openvpn", - "popularity": 14548.0 + "popularity": 18304.0 }, { "name": "openvpn", "url": "https://quay.io/repository/plange/openvpn", - "popularity": 131.0 + "popularity": 133.0 }, { "name": "openvpn", "url": "https://quay.io/repository/ukhomeofficedigital/openvpn", - "popularity": 2.0 + "popularity": 10.0 }, { "name": "openvpn", @@ -11492,7 +11139,7 @@ { "name": "openvpn", "url": "https://quay.io/repository/hypershift/openvpn", - "popularity": 87.0 + "popularity": 81.0 }, { "name": "openvpn", @@ -11504,27 +11151,27 @@ { "name": "openvpn", "url": "https://quay.io/repository/kubermatic/openvpn", - "popularity": 14548.0 + "popularity": 18304.0 + }, + { + "name": "openvpn-authd", + "url": "https://quay.io/repository/ukhomeofficedigital/openvpn-authd", + "popularity": 393.0 }, { "name": "openvpn", "url": "https://quay.io/repository/plange/openvpn", - "popularity": 131.0 + "popularity": 133.0 }, { "name": "openvpn-sessions", "url": "https://quay.io/repository/ukhomeofficedigital/openvpn-sessions", - "popularity": 268.0 + "popularity": 254.0 }, { "name": "openvpn-client-container", "url": "https://quay.io/repository/tkaefer/openvpn-client-container", "popularity": 160.0 - }, - { - "name": "openvpn", - "url": "https://quay.io/repository/hypershift/openvpn", - "popularity": 87.0 } ] }, @@ -11610,27 +11257,27 @@ { "name": "ibm-management-ingress-operator", "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 156321.0 + "popularity": 157394.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 254930.0 + "popularity": 258719.0 }, { "name": "node-disk-manager-amd64", "url": "https://quay.io/repository/openebs/node-disk-manager-amd64", - "popularity": 171233.0 + "popularity": 171910.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 193426.0 + "popularity": 198257.0 } ] }, @@ -11742,27 +11389,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15042.0 + "popularity": 14960.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 3550.0 + "popularity": 3111.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20354.0 + "popularity": 20583.0 }, { "name": "edb-postgres-advanced", "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 13582.0 + "popularity": 12879.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17355.0 + "popularity": 17958.0 } ] }, @@ -11874,27 +11521,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15042.0 + "popularity": 14960.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 3550.0 + "popularity": 3111.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20354.0 + "popularity": 20583.0 }, { "name": "edb-postgres-advanced", "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 13582.0 + "popularity": 12879.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17355.0 + "popularity": 17958.0 } ] }, @@ -11917,27 +11564,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15042.0 + "popularity": 14960.0 }, { "name": "origin-mdns-publisher", "url": "https://quay.io/repository/openshift/origin-mdns-publisher", - "popularity": 3696.0 + "popularity": 3674.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20354.0 + "popularity": 20583.0 }, { "name": "edb-postgres-advanced", "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 13582.0 + "popularity": 12879.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17355.0 + "popularity": 17958.0 } ] }, @@ -12049,27 +11696,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15042.0 + "popularity": 14960.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52832.0 + "popularity": 52822.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20354.0 + "popularity": 20583.0 }, { "name": "edb-postgres-advanced", "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 13582.0 + "popularity": 12879.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17355.0 + "popularity": 17958.0 } ] }, @@ -12137,27 +11784,27 @@ { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 254930.0 + "popularity": 258719.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 245318.0 + "popularity": 250172.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 193426.0 + "popularity": 198257.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183645.0 + "popularity": 183319.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 146710.0 + "popularity": 151149.0 } ] }, @@ -12199,27 +11846,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15042.0 + "popularity": 14960.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 3550.0 + "popularity": 3111.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20354.0 + "popularity": 20583.0 }, { "name": "edb-postgres-advanced", "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 13582.0 + "popularity": 12879.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17355.0 + "popularity": 17958.0 } ] }, @@ -12331,27 +11978,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96679165.0 + "popularity": 96986027.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 92762600.0 + "popularity": 93058787.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 92854581.0 + "popularity": 93141016.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 920253.0 + "popularity": 939648.0 }, { "name": "cert-manager-ctl", "url": "https://quay.io/repository/jetstack/cert-manager-ctl", - "popularity": 652852.0 + "popularity": 645293.0 } ] }, @@ -12463,27 +12110,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15042.0 + "popularity": 14960.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52832.0 + "popularity": 52822.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20354.0 + "popularity": 20583.0 }, { "name": "edb-postgres-advanced", "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 13582.0 + "popularity": 12879.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17355.0 + "popularity": 17958.0 } ] }, @@ -12511,22 +12158,22 @@ { "name": "reporting", "url": "https://quay.io/repository/sisense/reporting", - "popularity": 2466.0 + "popularity": 2821.0 }, { "name": "origin-metering-reporting-operator", "url": "https://quay.io/repository/openshift/origin-metering-reporting-operator", - "popularity": 3696.0 + "popularity": 3674.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52832.0 + "popularity": 52822.0 }, { "name": "rust", "url": "https://quay.io/repository/instrumentisto/rust", - "popularity": 2318.0 + "popularity": 2351.0 } ] }, @@ -12549,12 +12196,12 @@ { "name": "hyperion", "url": "https://quay.io/repository/devtron/hyperion", - "popularity": 348.0 + "popularity": 358.0 }, { "name": "federatorai-operator-ubi", "url": "https://quay.io/repository/prophetstor/federatorai-operator-ubi", - "popularity": 466.0 + "popularity": 492.0 }, { "name": "sentence-planning", @@ -12564,12 +12211,12 @@ { "name": "hyperion.ng", "url": "https://quay.io/repository/truecharts/hyperion.ng", - "popularity": 0.0 + "popularity": 12.0 }, { - "name": "we-nspyr", - "url": "https://quay.io/repository/wenspyr/we-nspyr", - "popularity": 1.0 + "name": "ibm-spectrum-scale-csi-driver", + "url": "https://quay.io/repository/mew2057/ibm-spectrum-scale-csi-driver", + "popularity": 0.0 } ] }, @@ -12655,27 +12302,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "haproxy-ingress", "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", - "popularity": 909887.0 + "popularity": 857217.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 421059.0 + "popularity": 430335.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 } ] }, @@ -12743,27 +12390,27 @@ { "name": "application-service", "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 116853.0 + "popularity": 133096.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 163268.0 + "popularity": 165365.0 }, { "name": "hubble-relay", "url": "https://quay.io/repository/cilium/hubble-relay", - "popularity": 118685.0 + "popularity": 117328.0 } ] }, @@ -12805,27 +12452,27 @@ { "name": "common-service-operator", "url": "https://quay.io/repository/opencloudio/common-service-operator", - "popularity": 284079.0 + "popularity": 300956.0 }, { "name": "service-catalog", "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", - "popularity": 330422.0 + "popularity": 329446.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 } ] }, @@ -12893,27 +12540,27 @@ { "name": "common-service-operator", "url": "https://quay.io/repository/opencloudio/common-service-operator", - "popularity": 284079.0 + "popularity": 300956.0 }, { "name": "service-catalog", "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", - "popularity": 330422.0 + "popularity": 329446.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 } ] }, @@ -12973,27 +12620,27 @@ { "name": "signalfx-agent", "url": "https://quay.io/repository/signalfx/signalfx-agent", - "popularity": 3304404.0 + "popularity": 4302999.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 163268.0 + "popularity": 165365.0 }, { "name": "audit-syslog-service", "url": "https://quay.io/repository/opencloudio/audit-syslog-service", - "popularity": 130197.0 + "popularity": 126512.0 }, { "name": "hubble-relay", "url": "https://quay.io/repository/cilium/hubble-relay", - "popularity": 118685.0 + "popularity": 117328.0 } ] }, @@ -13105,27 +12752,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15042.0 + "popularity": 14960.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 3550.0 + "popularity": 3111.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20354.0 + "popularity": 20583.0 }, { "name": "edb-postgres-advanced", "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 13582.0 + "popularity": 12879.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17355.0 + "popularity": 17958.0 } ] }, @@ -13167,27 +12814,27 @@ { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 245318.0 + "popularity": 250172.0 }, { "name": "mariadb-105-centos7", "url": "https://quay.io/repository/centos7/mariadb-105-centos7", - "popularity": 142292.0 + "popularity": 146865.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 36573.0 + "popularity": 30531.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20354.0 + "popularity": 20583.0 }, { "name": "soketi", "url": "https://quay.io/repository/soketi/soketi", - "popularity": 31737.0 + "popularity": 37098.0 } ] }, @@ -13255,27 +12902,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 254930.0 + "popularity": 258719.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 245318.0 + "popularity": 250172.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 193426.0 + "popularity": 198257.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183645.0 + "popularity": 183319.0 } ] }, @@ -13379,27 +13026,27 @@ { "name": "upstream-opm-builder", "url": "https://quay.io/repository/operator-framework/upstream-opm-builder", - "popularity": 59515.0 + "popularity": 59906.0 }, { "name": "cf-docker-builder", "url": "https://quay.io/repository/codefresh/cf-docker-builder", - "popularity": 80159.0 + "popularity": 84473.0 }, { "name": "ubuntu20-builder", "url": "https://quay.io/repository/wire/ubuntu20-builder", - "popularity": 25592.0 + "popularity": 25569.0 }, { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15042.0 + "popularity": 14960.0 }, { "name": "alpine-builder", "url": "https://quay.io/repository/wire/alpine-builder", - "popularity": 17065.0 + "popularity": 17081.0 } ] }, @@ -13500,7 +13147,7 @@ { "name": "bioconductor-elmer", "url": "https://quay.io/repository/biocontainers/bioconductor-elmer", - "popularity": 123.0 + "popularity": 87.0 }, { "name": "bioconductor-elmer.data", @@ -13548,7 +13195,7 @@ { "name": "psql", "url": "https://quay.io/repository/manywho/psql", - "popularity": 174.0 + "popularity": 173.0 }, { "name": "sso74-psql-openshift-rhel8", @@ -13563,7 +13210,7 @@ { "name": "server", "url": "https://quay.io/repository/codimd/server", - "popularity": 2416.0 + "popularity": 2358.0 } ] }, @@ -13586,7 +13233,7 @@ { "name": "get-pipe", "url": "https://quay.io/repository/igtdp/get-pipe", - "popularity": 173.0 + "popularity": 193.0 }, { "name": "worker-pipe", @@ -13596,17 +13243,17 @@ { "name": "bcftools", "url": "https://quay.io/repository/biocontainers/bcftools", - "popularity": 15877.0 + "popularity": 17292.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8041.0 + "popularity": 8741.0 }, { "name": "udplog-d", "url": "https://quay.io/repository/jcmoraisjr/udplog-d", - "popularity": 15.0 + "popularity": 8.0 } ] }, @@ -13845,44 +13492,44 @@ { "name": "postgresql", "url": "https://quay.io/repository/enterprisedb/postgresql", - "popularity": 19585.0 + "popularity": 19350.0 }, { "name": "postgresql", "url": "https://quay.io/repository/aptible/postgresql", - "popularity": 1582.0 + "popularity": 1718.0 }, { "name": "postgresql", "url": "https://quay.io/repository/operatorhubio/postgresql", - "popularity": 1494.0 + "popularity": 1434.0 } ], "quay_top_images": [ { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 254930.0 + "popularity": 258719.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 193426.0 + "popularity": 198257.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 146710.0 + "popularity": 151149.0 }, { - "name": "postgresql", - "url": "https://quay.io/repository/enterprisedb/postgresql", - "popularity": 19585.0 + "name": "postgresql-operator", + "url": "https://quay.io/repository/dev4devs-com/postgresql-operator", + "popularity": 21696.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20354.0 + "popularity": 20583.0 } ] }, @@ -14372,27 +14019,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 378922.0 + "popularity": 395380.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -14510,27 +14157,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96679165.0 + "popularity": 96986027.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 92762600.0 + "popularity": 93058787.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 92854581.0 + "popularity": 93141016.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 } ] }, @@ -14573,7 +14220,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 4381, + "star_count": 4383, "Docker_Url": "https://hub.docker.com/_/rabbitmq", "OS": [ { @@ -14639,7 +14286,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 87, + "star_count": 88, "Docker_Url": "https://hub.docker.com/r/bitnami/rabbitmq", "OS": [ { @@ -14695,7 +14342,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 87, + "star_count": 88, "Docker_Url": "https://hub.docker.com/r/bitnami/rabbitmq", "OS": [ { @@ -14713,7 +14360,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 4381, + "star_count": 4383, "Docker_Url": "https://hub.docker.com/_/rabbitmq", "OS": [ { @@ -14786,32 +14433,32 @@ { "name": "rabbitmq", "url": "https://quay.io/repository/domino/rabbitmq", - "popularity": 2461.0 + "popularity": 2345.0 }, { "name": "rabbitmq", "url": "https://quay.io/repository/sisense/rabbitmq", - "popularity": 2073.0 + "popularity": 2228.0 }, { "name": "rabbitmq", "url": "https://quay.io/repository/scentbird/rabbitmq", - "popularity": 2241.0 + "popularity": 1855.0 }, { "name": "rabbitmq", "url": "https://quay.io/repository/aptible/rabbitmq", - "popularity": 1570.0 + "popularity": 1697.0 }, { "name": "rabbitmq", "url": "https://quay.io/repository/trackmaven/rabbitmq", - "popularity": 1888.0 + "popularity": 1907.0 }, { "name": "rabbitmq", "url": "https://quay.io/repository/openstack.kolla/rabbitmq", - "popularity": 1898.0 + "popularity": 1096.0 }, { "name": "rabbitmq", @@ -14823,27 +14470,27 @@ { "name": "rabbitmq", "url": "https://quay.io/repository/domino/rabbitmq", - "popularity": 2461.0 + "popularity": 2345.0 }, { "name": "rabbitmq", "url": "https://quay.io/repository/sisense/rabbitmq", - "popularity": 2073.0 + "popularity": 2228.0 }, { "name": "rabbitmq", "url": "https://quay.io/repository/scentbird/rabbitmq", - "popularity": 2241.0 + "popularity": 1855.0 }, { "name": "rabbitmq", - "url": "https://quay.io/repository/trackmaven/rabbitmq", - "popularity": 1888.0 + "url": "https://quay.io/repository/aptible/rabbitmq", + "popularity": 1697.0 }, { "name": "rabbitmq", - "url": "https://quay.io/repository/openstack.kolla/rabbitmq", - "popularity": 1898.0 + "url": "https://quay.io/repository/trackmaven/rabbitmq", + "popularity": 1907.0 } ] }, @@ -14897,7 +14544,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 11148, + "star_count": 11152, "Docker_Url": "https://hub.docker.com/_/redis", "OS": [ { @@ -15065,12 +14712,12 @@ ], "dockerhub_top_images": [ { - "name": "cimg/redis", - "Official image": false, - "Verified Publisher": true, + "name": "redis", + "Official image": true, + "Verified Publisher": false, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/cimg/redis", + "star_count": 11152, + "Docker_Url": "https://hub.docker.com/_/redis", "OS": [ { "Class": "OS", @@ -15079,20 +14726,34 @@ "Versions": null, "Type": "linux", "Subtype": "" - } - ] - }, - { - "name": "ubuntu/redis", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 10, - "Docker_Url": "https://hub.docker.com/r/ubuntu/redis", - "OS": [ + }, { "Class": "OS", - "Architecture": "s390x", + "Architecture": "arm", + "Variants": "v5", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v7", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "386", "Variants": null, "Versions": null, "Type": "linux", @@ -15100,7 +14761,7 @@ }, { "Class": "OS", - "Architecture": "ppc64le", + "Architecture": "mips64le", "Variants": null, "Versions": null, "Type": "linux", @@ -15108,7 +14769,7 @@ }, { "Class": "OS", - "Architecture": "amd64", + "Architecture": "ppc64le", "Variants": null, "Versions": null, "Type": "linux", @@ -15116,8 +14777,8 @@ }, { "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", + "Architecture": "s390x", + "Variants": null, "Versions": null, "Type": "linux", "Subtype": "" @@ -15125,12 +14786,12 @@ ] }, { - "name": "circleci/redis", + "name": "cimg/redis", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 14, - "Docker_Url": "https://hub.docker.com/r/circleci/redis", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/cimg/redis", "OS": [ { "Class": "OS", @@ -15161,12 +14822,12 @@ ] }, { - "name": "redis", - "Official image": true, - "Verified Publisher": false, + "name": "circleci/redis", + "Official image": false, + "Verified Publisher": true, "Description": "", - "star_count": 11148, - "Docker_Url": "https://hub.docker.com/_/redis", + "star_count": 14, + "Docker_Url": "https://hub.docker.com/r/circleci/redis", "OS": [ { "Class": "OS", @@ -15175,34 +14836,20 @@ "Versions": null, "Type": "linux", "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v5", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, + } + ] + }, + { + "name": "ubuntu/redis", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/ubuntu/redis", + "OS": [ { "Class": "OS", - "Architecture": "386", + "Architecture": "s390x", "Variants": null, "Versions": null, "Type": "linux", @@ -15210,7 +14857,7 @@ }, { "Class": "OS", - "Architecture": "mips64le", + "Architecture": "ppc64le", "Variants": null, "Versions": null, "Type": "linux", @@ -15218,7 +14865,7 @@ }, { "Class": "OS", - "Architecture": "ppc64le", + "Architecture": "amd64", "Variants": null, "Versions": null, "Type": "linux", @@ -15226,8 +14873,8 @@ }, { "Class": "OS", - "Architecture": "s390x", - "Variants": null, + "Architecture": "arm64", + "Variants": "v8", "Versions": null, "Type": "linux", "Subtype": "" @@ -15241,7 +14888,7 @@ { "name": "redis", "url": "https://quay.io/repository/sameersbn/redis", - "popularity": 178658.0 + "popularity": 178652.0 }, { "name": "redis", @@ -15251,32 +14898,32 @@ { "name": "redis", "url": "https://quay.io/repository/domino/redis", - "popularity": 3213.0 + "popularity": 2993.0 }, { "name": "redis", "url": "https://quay.io/repository/opstree/redis", - "popularity": 9444.0 + "popularity": 10538.0 }, { "name": "redis", "url": "https://quay.io/repository/quay/redis", - "popularity": 1329.0 + "popularity": 1229.0 }, { "name": "redis", "url": "https://quay.io/repository/scentbird/redis", - "popularity": 2233.0 + "popularity": 1849.0 }, { "name": "redis", "url": "https://quay.io/repository/crio/redis", - "popularity": 5418.0 + "popularity": 5448.0 }, { "name": "redis", "url": "https://quay.io/repository/aptible/redis", - "popularity": 1616.0 + "popularity": 1813.0 }, { "name": "redis", @@ -15286,34 +14933,34 @@ { "name": "redis", "url": "https://quay.io/repository/cloud-bulldozer/redis", - "popularity": 2570.0 + "popularity": 2599.0 } ], "quay_top_images": [ { "name": "redis-5-centos7", "url": "https://quay.io/repository/centos7/redis-5-centos7", - "popularity": 249711.0 + "popularity": 254603.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/spotahome/redis-operator", - "popularity": 145581.0 + "popularity": 139843.0 }, { "name": "redis", "url": "https://quay.io/repository/sameersbn/redis", - "popularity": 178658.0 + "popularity": 178652.0 }, { "name": "redis-exporter", "url": "https://quay.io/repository/opstree/redis-exporter", - "popularity": 55701.0 + "popularity": 56949.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 102256.0 + "popularity": 102060.0 } ] }, @@ -15542,13 +15189,13 @@ "popularity": 0.0 }, { - "name": "riak", - "url": "https://quay.io/repository/joukou/riak", + "name": "riak-stanchion", + "url": "https://quay.io/repository/arschles/riak-stanchion", "popularity": 0.0 }, { "name": "riak", - "url": "https://quay.io/repository/deis/riak", + "url": "https://quay.io/repository/joukou/riak", "popularity": 0.0 } ] @@ -15643,27 +15290,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 + }, + { + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -15686,27 +15333,27 @@ { "name": "sap-side-by-side-be", "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", - "popularity": 3641.0 + "popularity": 3639.0 }, { "name": "sap-btp-operator", "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", - "popularity": 108.0 + "popularity": 102.0 }, { "name": "container-image-registry", "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7568.0 + "popularity": 7567.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", - "popularity": 6663.0 + "popularity": 6669.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/miminar/sdi-observer", - "popularity": 169.0 + "popularity": 170.0 } ] }, @@ -15748,27 +15395,27 @@ { "name": "sap-side-by-side-be", "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", - "popularity": 3641.0 + "popularity": 3639.0 }, { "name": "sap-btp-operator", "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", - "popularity": 108.0 + "popularity": 102.0 }, { "name": "container-image-registry", "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7568.0 + "popularity": 7567.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", - "popularity": 6663.0 + "popularity": 6669.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/miminar/sdi-observer", - "popularity": 169.0 + "popularity": 170.0 } ] }, @@ -15791,27 +15438,27 @@ { "name": "sap-side-by-side-be", "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", - "popularity": 3641.0 + "popularity": 3639.0 }, { "name": "sap-btp-operator", "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", - "popularity": 108.0 + "popularity": 102.0 }, { "name": "container-image-registry", "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7568.0 + "popularity": 7567.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", - "popularity": 6663.0 + "popularity": 6669.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/miminar/sdi-observer", - "popularity": 169.0 + "popularity": 170.0 } ] }, @@ -15832,29 +15479,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "warehouse", - "url": "https://quay.io/repository/sisense/warehouse", - "popularity": 723.0 + "name": "business-central-workbench-showcase", + "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", + "popularity": 657.0 }, { "name": "sap-side-by-side-be", "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", - "popularity": 3641.0 + "popularity": 3639.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52832.0 + "popularity": 52822.0 }, { "name": "container-image-registry", "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7568.0 + "popularity": 7567.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", - "popularity": 6663.0 + "popularity": 6669.0 } ] }, @@ -15896,27 +15543,27 @@ { "name": "apicurio-registry-sql", "url": "https://quay.io/repository/apicurio/apicurio-registry-sql", - "popularity": 14608.0 + "popularity": 15182.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 245318.0 + "popularity": 250172.0 }, { "name": "mariadb-105-centos7", "url": "https://quay.io/repository/centos7/mariadb-105-centos7", - "popularity": 142292.0 + "popularity": 146865.0 }, { "name": "soketi", "url": "https://quay.io/repository/soketi/soketi", - "popularity": 31737.0 + "popularity": 37098.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17355.0 + "popularity": 17958.0 } ] }, @@ -15939,27 +15586,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 378922.0 + "popularity": 395380.0 }, { "name": "windup-web-openshift", "url": "https://quay.io/repository/windupeng/windup-web-openshift", - "popularity": 47186.0 + "popularity": 47530.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 + "popularity": 265927.0 }, { "name": "nginx-116-centos7", "url": "https://quay.io/repository/centos7/nginx-116-centos7", - "popularity": 158256.0 + "popularity": 159422.0 }, { "name": "ibm-commonui-operator", "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", - "popularity": 113315.0 + "popularity": 112605.0 } ] }, @@ -16019,7 +15666,7 @@ { "name": "sentry", "url": "https://quay.io/repository/app-sre/sentry", - "popularity": 926.0 + "popularity": 923.0 }, { "name": "sentry", @@ -16043,22 +15690,22 @@ }, { "name": "sentry", - "url": "https://quay.io/repository/beatport/sentry", + "url": "https://quay.io/repository/3ofcoins/sentry", "popularity": 0.0 }, { "name": "sentry", - "url": "https://quay.io/repository/playlab/sentry", - "popularity": 0.0 + "url": "https://quay.io/repository/beatport/sentry", + "popularity": 2.0 }, { "name": "sentry", - "url": "https://quay.io/repository/arastu/sentry", + "url": "https://quay.io/repository/playlab/sentry", "popularity": 0.0 }, { "name": "sentry", - "url": "https://quay.io/repository/3ofcoins/sentry", + "url": "https://quay.io/repository/arastu/sentry", "popularity": 0.0 }, { @@ -16081,65 +15728,27 @@ { "name": "sentry", "url": "https://quay.io/repository/app-sre/sentry", - "popularity": 926.0 + "popularity": 923.0 }, { "name": "sentry", "url": "https://quay.io/repository/swsmirror/sentry", "popularity": 0.0 }, - { - "name": "sentry-operator", - "url": "https://quay.io/repository/thekad/sentry-operator", - "popularity": 0.0 - }, { "name": "publish-sentry-release", "url": "https://quay.io/repository/indent/publish-sentry-release", - "popularity": 18.0 + "popularity": 32.0 }, { "name": "sentry-gateway", "url": "https://quay.io/repository/pingthingsio/sentry-gateway", - "popularity": 44.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 2, - "entity_id": 180 - }, - { - "SharePoint": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "service-sharepoint", - "url": "https://quay.io/repository/manywho/service-sharepoint", - "popularity": 0.0 + "popularity": 48.0 }, { - "name": "service-sharepoint-addin", - "url": "https://quay.io/repository/manywho/service-sharepoint-addin", - "popularity": 0.0 - }, - { - "name": "sentieon", - "url": "https://quay.io/repository/biocontainers/sentieon", - "popularity": 0.0 - }, - { - "name": "sharepointconsulting", - "url": "https://quay.io/repository/sharepointconsulting/sharepointconsulting", - "popularity": 0.0 + "name": "sentry", + "url": "https://quay.io/repository/beatport/sentry", + "popularity": 2.0 } ] }, @@ -16148,7 +15757,7 @@ } ], "entity_type": 2, - "entity_id": 181 + "entity_id": 180 }, { "Siebel": [ @@ -16206,27 +15815,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96679165.0 + "popularity": 96986027.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 92762600.0 + "popularity": 93058787.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 92854581.0 + "popularity": 93141016.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 920253.0 + "popularity": 939648.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1343874.0 + "popularity": 1359497.0 } ] }, @@ -16280,7 +15889,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 2072, + "star_count": 2074, "Docker_Url": "https://hub.docker.com/_/sonarqube", "OS": [ { @@ -16336,7 +15945,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 2072, + "star_count": 2074, "Docker_Url": "https://hub.docker.com/_/sonarqube", "OS": [ { @@ -16374,7 +15983,7 @@ { "name": "sonarqube", "url": "https://quay.io/repository/gpte-devops-automation/sonarqube", - "popularity": 4528.0 + "popularity": 4581.0 }, { "name": "sonarqube", @@ -16389,37 +15998,37 @@ { "name": "sonarqube", "url": "https://quay.io/repository/ukhomeofficedigital/sonarqube", - "popularity": 1974.0 + "popularity": 1977.0 }, { "name": "sonarqube", "url": "https://quay.io/repository/siamaksade/sonarqube", - "popularity": 197.0 + "popularity": 217.0 }, { "name": "sonarqube", "url": "https://quay.io/repository/ecerquei/sonarqube", - "popularity": 1643.0 + "popularity": 1641.0 }, { "name": "sonarqube", "url": "https://quay.io/repository/an6eel/sonarqube", - "popularity": 773.0 + "popularity": 771.0 }, { "name": "sonarqube", - "url": "https://quay.io/repository/evandenbeld/sonarqube", - "popularity": 0.0 + "url": "https://quay.io/repository/rcarrata/sonarqube", + "popularity": 1045.0 }, { "name": "sonarqube", - "url": "https://quay.io/repository/rcarrata/sonarqube", - "popularity": 971.0 + "url": "https://quay.io/repository/evandenbeld/sonarqube", + "popularity": 0.0 }, { "name": "sonarqube", "url": "https://quay.io/repository/ccee/sonarqube", - "popularity": 338.0 + "popularity": 340.0 }, { "name": "sonarqube", @@ -16429,24 +16038,24 @@ { "name": "sonarqube", "url": "https://quay.io/repository/rocep/sonarqube", - "popularity": 168.0 + "popularity": 169.0 }, { "name": "sonarqube", "url": "https://quay.io/repository/bcgov/sonarqube", - "popularity": 96.0 + "popularity": 93.0 }, { "name": "sonarqube", "url": "https://quay.io/repository/redhatgov/sonarqube", - "popularity": 58.0 + "popularity": 72.0 } ], "quay_top_images": [ { "name": "sonarqube", "url": "https://quay.io/repository/gpte-devops-automation/sonarqube", - "popularity": 4528.0 + "popularity": 4581.0 }, { "name": "sonarqube", @@ -16456,17 +16065,17 @@ { "name": "sonarqube", "url": "https://quay.io/repository/ukhomeofficedigital/sonarqube", - "popularity": 1974.0 + "popularity": 1977.0 }, { "name": "sonarqube-operator", "url": "https://quay.io/repository/redhatgov/sonarqube-operator", - "popularity": 1578.0 + "popularity": 1686.0 }, { "name": "sonarqube", "url": "https://quay.io/repository/ecerquei/sonarqube", - "popularity": 1643.0 + "popularity": 1641.0 } ] }, @@ -16529,34 +16138,34 @@ { "name": "splunk", "url": "https://quay.io/repository/operatorhubio/splunk", - "popularity": 37.0 + "popularity": 31.0 } ], "quay_top_images": [ { "name": "splunk-otel-collector", "url": "https://quay.io/repository/signalfx/splunk-otel-collector", - "popularity": 806913.0 + "popularity": 733959.0 }, { "name": "splunk-forwarder", "url": "https://quay.io/repository/app-sre/splunk-forwarder", - "popularity": 82862.0 + "popularity": 84427.0 }, { "name": "splunk-audit-exporter", "url": "https://quay.io/repository/app-sre/splunk-audit-exporter", - "popularity": 30897.0 + "popularity": 32475.0 }, { "name": "splunk-forwarder-operator-registry", "url": "https://quay.io/repository/app-sre/splunk-forwarder-operator-registry", - "popularity": 18874.0 + "popularity": 20057.0 }, { "name": "splunk-forwarder", "url": "https://quay.io/repository/jburrell/splunk-forwarder", - "popularity": 19708.0 + "popularity": 20224.0 } ] }, @@ -16661,27 +16270,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 + }, + { + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -16784,133 +16393,27 @@ { "name": "build-tools-ci", "url": "https://quay.io/repository/pantheon-public/build-tools-ci", - "popularity": 51837.0 - }, - { - "name": "light-k8s-deploy-tools", - "url": "https://quay.io/repository/presslabs/light-k8s-deploy-tools", - "popularity": 32369.0 - }, - { - "name": "strimzi-tools", - "url": "https://quay.io/repository/rh_integration/strimzi-tools", - "popularity": 8643.0 - }, - { - "name": "cloud-tools", - "url": "https://quay.io/repository/osbuild/cloud-tools", - "popularity": 6650.0 - }, - { - "name": "ibm-platform-api-operator", - "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", - "popularity": 36619.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 2, - "entity_id": 192 - }, - { - "Sysinternal Tools": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "gooddata/tools", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/gooddata/tools", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "pingidentity/ldap-sdk-tools", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 5, - "Docker_Url": "https://hub.docker.com/r/pingidentity/ldap-sdk-tools", - "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "puppet/puppet-dev-tools", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 8, - "Docker_Url": "https://hub.docker.com/r/puppet/puppet-dev-tools", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "build-tools-ci", - "url": "https://quay.io/repository/pantheon-public/build-tools-ci", - "popularity": 51837.0 + "popularity": 51401.0 }, { "name": "light-k8s-deploy-tools", "url": "https://quay.io/repository/presslabs/light-k8s-deploy-tools", - "popularity": 32369.0 + "popularity": 32412.0 }, { "name": "strimzi-tools", "url": "https://quay.io/repository/rh_integration/strimzi-tools", - "popularity": 8643.0 + "popularity": 8578.0 }, { "name": "cloud-tools", "url": "https://quay.io/repository/osbuild/cloud-tools", - "popularity": 6650.0 + "popularity": 6369.0 }, { - "name": "ibm-platform-api-operator", - "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", - "popularity": 36619.0 + "name": "tools", + "url": "https://quay.io/repository/andov_go/tools", + "popularity": 4988.0 } ] }, @@ -17148,27 +16651,27 @@ { "name": "thanos", "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2526636.0 + "popularity": 2497215.0 }, { "name": "process-quarkus-example", "url": "https://quay.io/repository/kiegroup/process-quarkus-example", - "popularity": 1796.0 + "popularity": 840.0 }, { - "name": "examples-process-quarkus-example-persistence-nightly", - "url": "https://quay.io/repository/kiegroup/examples-process-quarkus-example-persistence-nightly", - "popularity": 288.0 + "name": "examples-process-springboot-example-nightly", + "url": "https://quay.io/repository/kiegroup/examples-process-springboot-example-nightly", + "popularity": 286.0 }, { "name": "examples-process-quarkus-example-events-persistence-nightly", "url": "https://quay.io/repository/kiegroup/examples-process-quarkus-example-events-persistence-nightly", - "popularity": 296.0 + "popularity": 295.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 82319.0 + "popularity": 79779.0 } ] }, @@ -17278,27 +16781,27 @@ { "name": "adguardhome-sync", "url": "https://quay.io/repository/bakito/adguardhome-sync", - "popularity": 45641.0 + "popularity": 44863.0 }, { "name": "export-sync-timescaledb", "url": "https://quay.io/repository/igtdp/export-sync-timescaledb", - "popularity": 21675.0 + "popularity": 21768.0 }, { "name": "normalize-sync", "url": "https://quay.io/repository/igtdp/normalize-sync", - "popularity": 21645.0 + "popularity": 21745.0 }, { "name": "concourse-s3-sync", "url": "https://quay.io/repository/hellofresh/concourse-s3-sync", - "popularity": 13428.0 + "popularity": 13454.0 }, { "name": "group-sync-operator", "url": "https://quay.io/repository/redhat-cop/group-sync-operator", - "popularity": 12593.0 + "popularity": 13137.0 } ] }, @@ -17400,7 +16903,7 @@ { "name": "chlaus", "url": "https://quay.io/repository/appuio/chlaus", - "popularity": 1797.0 + "popularity": 1475.0 }, { "name": "whois-devsensation-es", @@ -17420,7 +16923,7 @@ { "name": "mkpasswd", "url": "https://quay.io/repository/coreos/mkpasswd", - "popularity": 79.0 + "popularity": 118.0 } ] }, @@ -17449,7 +16952,7 @@ { "name": "tableau-server-writer", "url": "https://quay.io/repository/keboola/tableau-server-writer", - "popularity": 954.0 + "popularity": 970.0 }, { "name": "tableau", @@ -17532,27 +17035,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 148414.0 + "popularity": 104567.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -17683,27 +17186,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 + }, + { + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -17715,7 +17218,7 @@ "entity_id": 216 }, { - "TIBCO Business Works": [ + "TIBCO Business Works (BW)": [ { "dockerhub_exact_images": [], "dockerhub_top_images": [] @@ -17726,27 +17229,27 @@ { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52832.0 + "popularity": 52822.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 + "popularity": 30527.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20354.0 + "popularity": 20583.0 }, { "name": "daemon", "url": "https://quay.io/repository/ceph/daemon", - "popularity": 9604.0 + "popularity": 9586.0 }, { "name": "freeipa-server", "url": "https://quay.io/repository/freeipa/freeipa-server", - "popularity": 1243.0 + "popularity": 911.0 } ] }, @@ -17789,16 +17292,16 @@ { "quay_exact_images": [], "quay_top_images": [ + { + "name": "rendezvous-server", + "url": "https://quay.io/repository/fido-fdo/rendezvous-server", + "popularity": 40.0 + }, { "name": "rendezvous", "url": "https://quay.io/repository/langdev/rendezvous", "popularity": 0.0 }, - { - "name": "rendezvous-server", - "url": "https://quay.io/repository/fido-fdo/rendezvous-server", - "popularity": 28.0 - }, { "name": "tibco-bwce-base", "url": "https://quay.io/repository/roccqqck/tibco-bwce-base", @@ -17871,24 +17374,6 @@ "Subtype": "" } ] - }, - { - "name": "ibmcom/verify-access-snapshotmgr", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-snapshotmgr", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] } ] }, @@ -17898,27 +17383,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96679165.0 + "popularity": 96986027.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 92762600.0 + "popularity": 93058787.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 92854581.0 + "popularity": 93141016.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 920253.0 + "popularity": 939648.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1343874.0 + "popularity": 1359497.0 } ] }, @@ -18123,27 +17608,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 + }, + { + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -18239,27 +17724,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 + }, + { + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -18299,27 +17784,27 @@ { "name": "redhat-marketplace-reporter", "url": "https://quay.io/repository/rh-marketplace/redhat-marketplace-reporter", - "popularity": 30011.0 + "popularity": 30263.0 }, { "name": "origin-operator-marketplace", "url": "https://quay.io/repository/openshift/origin-operator-marketplace", - "popularity": 9460.0 + "popularity": 9639.0 }, { "name": "redhat-marketplace-operator", "url": "https://quay.io/repository/rh-marketplace/redhat-marketplace-operator", - "popularity": 7890.0 + "popularity": 7877.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "redhat-marketplace-operator", "url": "https://quay.io/repository/operator-pipeline-prod/redhat-marketplace-operator", - "popularity": 1392.0 + "popularity": 1344.0 } ] }, @@ -18342,27 +17827,27 @@ { "name": "build-tools-ci", "url": "https://quay.io/repository/pantheon-public/build-tools-ci", - "popularity": 51837.0 + "popularity": 51401.0 }, { "name": "light-k8s-deploy-tools", "url": "https://quay.io/repository/presslabs/light-k8s-deploy-tools", - "popularity": 32369.0 + "popularity": 32412.0 }, { "name": "strimzi-tools", "url": "https://quay.io/repository/rh_integration/strimzi-tools", - "popularity": 8643.0 + "popularity": 8578.0 }, { "name": "cloud-tools", "url": "https://quay.io/repository/osbuild/cloud-tools", - "popularity": 6650.0 + "popularity": 6369.0 }, { - "name": "ibm-platform-api-operator", - "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", - "popularity": 36619.0 + "name": "tools", + "url": "https://quay.io/repository/andov_go/tools", + "popularity": 4988.0 } ] }, @@ -18385,17 +17870,17 @@ { "name": "vcenter-test-container", "url": "https://quay.io/repository/ansible/vcenter-test-container", - "popularity": 540.0 + "popularity": 604.0 }, { "name": "vcenter-simulator", "url": "https://quay.io/repository/kubevirt/vcenter-simulator", - "popularity": 43.0 + "popularity": 42.0 }, { "name": "vmware-gateway", "url": "https://quay.io/repository/amastbau/vmware-gateway", - "popularity": 684.0 + "popularity": 130.0 }, { "name": "kubevirt-vmware", @@ -18482,27 +17967,27 @@ { "name": "ai-integration", "url": "https://quay.io/repository/sisense/ai-integration", - "popularity": 1722.0 + "popularity": 1956.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 421059.0 - }, - { - "name": "falcon-integration-gateway", - "url": "https://quay.io/repository/crowdstrike/falcon-integration-gateway", - "popularity": 5986.0 + "popularity": 430335.0 }, { "name": "websocket-integration", "url": "https://quay.io/repository/vollerchris/websocket-integration", - "popularity": 41775.0 + "popularity": 41800.0 + }, + { + "name": "falcon-integration-gateway", + "url": "https://quay.io/repository/crowdstrike/falcon-integration-gateway", + "popularity": 6038.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183645.0 + "popularity": 183319.0 } ] }, @@ -18646,27 +18131,27 @@ { "name": "app-build-suite", "url": "https://quay.io/repository/giantswarm/app-build-suite", - "popularity": 1234.0 - }, - { - "name": "app-test-suite", - "url": "https://quay.io/repository/giantswarm/app-test-suite", - "popularity": 118.0 + "popularity": 1013.0 }, { "name": "rust", "url": "https://quay.io/repository/instrumentisto/rust", - "popularity": 2318.0 + "popularity": 2351.0 + }, + { + "name": "sap-commerce-operator", + "url": "https://quay.io/repository/openshift-community-operators/sap-commerce-operator", + "popularity": 85.0 }, { "name": "egeria", "url": "https://quay.io/repository/odpi/egeria", - "popularity": 443.0 + "popularity": 453.0 }, { "name": "blast", "url": "https://quay.io/repository/biocontainers/blast", - "popularity": 1674.0 + "popularity": 2282.0 } ] }, @@ -18708,27 +18193,27 @@ { "name": "che-plugin-artifacts-broker", "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", - "popularity": 19550.0 + "popularity": 19392.0 }, { "name": "message-tagging-service", "url": "https://quay.io/repository/factory2/message-tagging-service", - "popularity": 11577.0 + "popularity": 11616.0 }, { "name": "activemq-artemis-broker", "url": "https://quay.io/repository/artemiscloud/activemq-artemis-broker", - "popularity": 3886.0 + "popularity": 4026.0 }, { "name": "activemq-artemis-broker-kubernetes", "url": "https://quay.io/repository/artemiscloud/activemq-artemis-broker-kubernetes", - "popularity": 6759.0 + "popularity": 6886.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183645.0 + "popularity": 183319.0 } ] }, @@ -18751,27 +18236,27 @@ { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-management-ingress-operator", "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 156321.0 + "popularity": 157394.0 }, { "name": "ibm-commonui-operator", "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", - "popularity": 113315.0 + "popularity": 112605.0 }, { - "name": "ibm-platform-api-operator", - "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", - "popularity": 36619.0 + "name": "ibm-cert-manager-operator", + "url": "https://quay.io/repository/opencloudio/ibm-cert-manager-operator", + "popularity": 35255.0 }, { "name": "ubi-quarkus-native-binary-s2i", "url": "https://quay.io/repository/quarkus/ubi-quarkus-native-binary-s2i", - "popularity": 60214.0 + "popularity": 54421.0 } ] }, @@ -18836,27 +18321,27 @@ { "name": "common-service-operator", "url": "https://quay.io/repository/opencloudio/common-service-operator", - "popularity": 284079.0 + "popularity": 300956.0 }, { "name": "service-catalog", "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", - "popularity": 330422.0 + "popularity": 329446.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 } ] }, @@ -18924,27 +18409,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 + }, + { + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -19035,27 +18520,27 @@ { "name": "apicurio-studio-api", "url": "https://quay.io/repository/apicurio/apicurio-studio-api", - "popularity": 13688.0 + "popularity": 13652.0 }, { "name": "dev-platform-package", "url": "https://quay.io/repository/failk8s/dev-platform-package", - "popularity": 8739.0 + "popularity": 7043.0 }, { "name": "contour-package", "url": "https://quay.io/repository/failk8s/contour-package", - "popularity": 8741.0 + "popularity": 7043.0 }, { "name": "apicurio-studio-ui", "url": "https://quay.io/repository/apicurio/apicurio-studio-ui", - "popularity": 9386.0 + "popularity": 9474.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 380580.0 + "popularity": 370506.0 } ] }, @@ -19283,7 +18768,7 @@ { "name": "wordpress", "url": "https://quay.io/repository/redhattraining/wordpress", - "popularity": 7185.0 + "popularity": 6745.0 }, { "name": "wordpress", @@ -19298,7 +18783,7 @@ { "name": "wordpress", "url": "https://quay.io/repository/ashish11_ibm/wordpress", - "popularity": 765.0 + "popularity": 707.0 }, { "name": "wordpress", @@ -19330,17 +18815,17 @@ { "name": "wordpress", "url": "https://quay.io/repository/redhattraining/wordpress", - "popularity": 7185.0 + "popularity": 6745.0 }, { "name": "wordpress-runtime", "url": "https://quay.io/repository/presslabs/wordpress-runtime", - "popularity": 148.0 + "popularity": 180.0 }, { "name": "wordpress", "url": "https://quay.io/repository/ashish11_ibm/wordpress", - "popularity": 765.0 + "popularity": 707.0 }, { "name": "fbg-wordpress", @@ -19395,7 +18880,7 @@ { "name": "daemon", "url": "https://quay.io/repository/ceph/daemon", - "popularity": 9604.0 + "popularity": 9586.0 }, { "name": "enablement-zap", @@ -19403,9 +18888,9 @@ "popularity": 0.0 }, { - "name": "owasp-zap", - "url": "https://quay.io/repository/geodannl/owasp-zap", - "popularity": 0.0 + "name": "zap-full-scan", + "url": "https://quay.io/repository/trickest/zap-full-scan", + "popularity": 2.0 }, { "name": "ark-server", @@ -19499,27 +18984,27 @@ { "name": "virtual-environments", "url": "https://quay.io/repository/catthehacker/virtual-environments", - "popularity": 52890.0 + "popularity": 62128.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183645.0 + "popularity": 183319.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 82319.0 + "popularity": 79779.0 }, { "name": "kata-deploy", "url": "https://quay.io/repository/kata-containers/kata-deploy", - "popularity": 15324.0 + "popularity": 21496.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17355.0 + "popularity": 17958.0 } ] }, @@ -19629,27 +19114,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 } ] }, @@ -19677,7 +19162,7 @@ { "name": "docker-chef-omnibus", "url": "https://quay.io/repository/darron/docker-chef-omnibus", - "popularity": 0.0 + "popularity": 2.0 }, { "name": "omnibus-centos", @@ -19802,27 +19287,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 } ] }, @@ -19932,27 +19417,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 } ] }, @@ -20062,27 +19547,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 } ] }, @@ -20184,27 +19669,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 } ] }, @@ -20314,27 +19799,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 } ] }, @@ -20357,27 +19842,27 @@ { "name": "solver-rhel-8-py36", "url": "https://quay.io/repository/thoth-station/solver-rhel-8-py36", - "popularity": 2102.0 + "popularity": 2023.0 }, { "name": "solver-rhel-8-py38", "url": "https://quay.io/repository/thoth-station/solver-rhel-8-py38", - "popularity": 2104.0 + "popularity": 2027.0 }, { "name": "solver-fedora-34-py39", "url": "https://quay.io/repository/thoth-station/solver-fedora-34-py39", - "popularity": 2104.0 + "popularity": 2027.0 }, { "name": "solver-fedora-35-py310", "url": "https://quay.io/repository/thoth-station/solver-fedora-35-py310", - "popularity": 1186.0 + "popularity": 1181.0 }, { "name": "solver-project-url-job", "url": "https://quay.io/repository/thoth-station/solver-project-url-job", - "popularity": 6.0 + "popularity": 8.0 } ] }, @@ -20411,27 +19896,27 @@ { "name": "ara-api", "url": "https://quay.io/repository/recordsansible/ara-api", - "popularity": 1211.0 + "popularity": 1217.0 }, { "name": "mailman-web", "url": "https://quay.io/repository/maxking/mailman-web", - "popularity": 1.0 - }, - { - "name": "mailman-core", - "url": "https://quay.io/repository/maxking/mailman-core", - "popularity": 1.0 + "popularity": 3.0 }, { "name": "bioconductor-annotationdbi", "url": "https://quay.io/repository/biocontainers/bioconductor-annotationdbi", - "popularity": 738.0 + "popularity": 522.0 }, { - "name": "freshrss", - "url": "https://quay.io/repository/thegeeklab/freshrss", - "popularity": 3.0 + "name": "roundcube", + "url": "https://quay.io/repository/instrumentisto/roundcube", + "popularity": 31.0 + }, + { + "name": "sqlite-web", + "url": "https://quay.io/repository/truecharts/sqlite-web", + "popularity": 8.0 } ] }, @@ -20454,27 +19939,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 }, { "name": "nginx-ingress-controller", "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1214037.0 + "popularity": 1244426.0 } ] }, @@ -20513,7 +19998,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 3361, + "star_count": 3363, "Docker_Url": "https://hub.docker.com/_/tomcat", "OS": [ { @@ -20604,27 +20089,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 883725.0 + "popularity": 897952.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 403203.0 + "popularity": 412719.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 + "popularity": 265927.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 } ] }, @@ -20775,125 +20260,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 8, - "entity_id": 261 - }, - { - "Oracle WebLogic Server": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "rancher/server", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "circleci/server-nomad", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] + "popularity": 2536622.0 }, { - "name": "atlassian/server-client-plugins", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "node-exporter", - "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 - }, - { - "name": "shadowbox", - "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 - }, - { - "name": "wildfly-runtime-centos7", - "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -20902,7 +20289,7 @@ } ], "entity_type": 8, - "entity_id": 262 + "entity_id": 261 }, { "GlassFish": [ @@ -20988,7 +20375,7 @@ { "name": "server", "url": "https://quay.io/repository/glassfish/server", - "popularity": 29.0 + "popularity": 14.0 } ] }, @@ -21232,49 +20619,49 @@ { "name": "haproxy", "url": "https://quay.io/repository/jduimovich0/haproxy", - "popularity": 45440.0 + "popularity": 45441.0 }, { "name": "haproxy", "url": "https://quay.io/repository/openstack.kolla/haproxy", - "popularity": 2490.0 + "popularity": 1424.0 }, { "name": "haproxy", "url": "https://quay.io/repository/official-images/haproxy", - "popularity": 4.0 + "popularity": 10.0 }, { "name": "haproxy", "url": "https://quay.io/repository/karmab/haproxy", - "popularity": 739.0 + "popularity": 773.0 } ], "quay_top_images": [ { "name": "haproxy-ingress", "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", - "popularity": 909887.0 + "popularity": 857217.0 }, { "name": "haproxy", "url": "https://quay.io/repository/jduimovich0/haproxy", - "popularity": 45440.0 + "popularity": 45441.0 }, { "name": "haproxy-exporter", "url": "https://quay.io/repository/prometheus/haproxy-exporter", - "popularity": 13460.0 + "popularity": 13670.0 }, { "name": "origin-haproxy-router", "url": "https://quay.io/repository/openshift/origin-haproxy-router", - "popularity": 6245.0 + "popularity": 6141.0 }, { "name": "haproxy", "url": "https://quay.io/repository/openstack.kolla/haproxy", - "popularity": 2490.0 + "popularity": 1424.0 } ] }, @@ -21355,7 +20742,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 18, + "star_count": 19, "Docker_Url": "https://hub.docker.com/_/ibm-semeru-runtimes", "OS": [ { @@ -21400,27 +20787,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 } ] }, @@ -21431,72 +20818,6 @@ "entity_type": 8, "entity_id": 265 }, - { - "IIS": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "iis-chess", - "url": "https://quay.io/repository/gmarkley_vi/iis-chess", - "popularity": 0.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 8, - "entity_id": 266 - }, - { - "JBoss": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "wildfly-runtime-centos7", - "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 - }, - { - "name": "jboss-eap-6.4-switchyard", - "url": "https://quay.io/repository/ubpo/jboss-eap-6.4-switchyard", - "popularity": 3350.0 - }, - { - "name": "jboss-kie-mysql-extension-openshift-image", - "url": "https://quay.io/repository/kiegroup/jboss-kie-mysql-extension-openshift-image", - "popularity": 2608.0 - }, - { - "name": "wildfly", - "url": "https://quay.io/repository/wildfly/wildfly", - "popularity": 7410.0 - }, - { - "name": "business-central-workbench-showcase", - "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", - "popularity": 637.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 8, - "entity_id": 267 - }, { "JBoss": [ { @@ -21509,27 +20830,27 @@ { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 }, { "name": "jboss-eap-6.4-switchyard", "url": "https://quay.io/repository/ubpo/jboss-eap-6.4-switchyard", - "popularity": 3350.0 + "popularity": 3349.0 }, { "name": "jboss-kie-mysql-extension-openshift-image", "url": "https://quay.io/repository/kiegroup/jboss-kie-mysql-extension-openshift-image", - "popularity": 2608.0 + "popularity": 2662.0 }, { "name": "wildfly", "url": "https://quay.io/repository/wildfly/wildfly", - "popularity": 7410.0 + "popularity": 7782.0 }, { "name": "business-central-workbench-showcase", "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", - "popularity": 637.0 + "popularity": 657.0 } ] }, @@ -21605,13 +20926,13 @@ "quay_top_images": [ { "name": "domino", - "url": "https://quay.io/repository/biocontainers/domino", - "popularity": 0.0 + "url": "https://quay.io/repository/ryan_fuller/domino", + "popularity": 4.0 }, { "name": "domino", - "url": "https://quay.io/repository/ryan_fuller/domino", - "popularity": 154.0 + "url": "https://quay.io/repository/biocontainers/domino", + "popularity": 0.0 }, { "name": "domino-nab", @@ -21648,19 +20969,19 @@ { "name": "lucee", "url": "https://quay.io/repository/daemonite/lucee", - "popularity": 6.0 + "popularity": 7.0 } ], "quay_top_images": [ { "name": "lucee-shibboleth", "url": "https://quay.io/repository/daemonite/lucee-shibboleth", - "popularity": 111.0 + "popularity": 130.0 }, { "name": "lucee", "url": "https://quay.io/repository/daemonite/lucee", - "popularity": 6.0 + "popularity": 7.0 }, { "name": "alpine-lucee", @@ -21735,27 +21056,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "application-service", "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 116853.0 + "popularity": 133096.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -21833,27 +21154,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 148414.0 + "popularity": 104567.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -21873,7 +21194,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 17123, + "star_count": 17129, "Docker_Url": "https://hub.docker.com/_/nginx", "OS": [ { @@ -22053,6 +21374,24 @@ "Subtype": "" } ] + }, + { + "name": "circleci/nginx", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/circleci/nginx", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "", + "Subtype": "" + } + ] } ], "dockerhub_top_images": [ @@ -22173,7 +21512,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 17123, + "star_count": 17129, "Docker_Url": "https://hub.docker.com/_/nginx", "OS": [ { @@ -22249,12 +21588,12 @@ { "name": "nginx", "url": "https://quay.io/repository/openshift-scale/nginx", - "popularity": 91926.0 + "popularity": 95567.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 79034.0 + "popularity": 78097.0 }, { "name": "nginx", @@ -22264,54 +21603,54 @@ { "name": "nginx", "url": "https://quay.io/repository/cloud-bulldozer/nginx", - "popularity": 88855.0 + "popularity": 67276.0 }, { "name": "nginx", "url": "https://quay.io/repository/ocsci/nginx", - "popularity": 16125.0 + "popularity": 14259.0 }, { "name": "nginx", "url": "https://quay.io/repository/bedrock/nginx", - "popularity": 30560.0 + "popularity": 30515.0 }, { "name": "nginx", "url": "https://quay.io/repository/aptible/nginx", - "popularity": 25109.0 + "popularity": 27561.0 }, { "name": "nginx", "url": "https://quay.io/repository/testing-farm/nginx", - "popularity": 7887.0 + "popularity": 7938.0 } ], "quay_top_images": [ { "name": "nginx-ingress-controller", "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1214037.0 + "popularity": 1244426.0 }, { "name": "nginx-116-centos7", "url": "https://quay.io/repository/centos7/nginx-116-centos7", - "popularity": 158256.0 + "popularity": 159422.0 }, { "name": "nginx-proxy", "url": "https://quay.io/repository/ukhomeofficedigital/nginx-proxy", - "popularity": 89079.0 + "popularity": 89461.0 }, { "name": "nginx", "url": "https://quay.io/repository/openshift-scale/nginx", - "popularity": 91926.0 + "popularity": 95567.0 }, { "name": "nginx", - "url": "https://quay.io/repository/cloud-bulldozer/nginx", - "popularity": 88855.0 + "url": "https://quay.io/repository/jitesoft/nginx", + "popularity": 78097.0 } ] }, @@ -22361,68 +21700,6 @@ "entity_type": 8, "entity_id": 274 }, - { - "Oracle Application Server": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "rancher/server", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "node-exporter", - "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 - }, - { - "name": "shadowbox", - "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "application-service", - "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 116853.0 - }, - { - "name": "wildfly-runtime-centos7", - "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 8, - "entity_id": 275 - }, { "Oracle WebCenter Content Server": [ { @@ -22472,27 +21749,27 @@ { "name": "okd-content", "url": "https://quay.io/repository/openshift/okd-content", - "popularity": 9313637.0 + "popularity": 9323844.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -22588,27 +21865,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 + }, + { + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -22668,27 +21945,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 378922.0 + "popularity": 395380.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -22730,27 +22007,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "cap-app-proxy", "url": "https://quay.io/repository/codefresh/cap-app-proxy", - "popularity": 76322.0 + "popularity": 76639.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -22869,44 +22146,44 @@ { "name": "spark", "url": "https://quay.io/repository/diem/spark", - "popularity": 2025.0 + "popularity": 2206.0 }, { "name": "spark", "url": "https://quay.io/repository/domino/spark", - "popularity": 242.0 + "popularity": 241.0 }, { "name": "spark", "url": "https://quay.io/repository/iguazio/spark", - "popularity": 33.0 + "popularity": 30.0 } ], "quay_top_images": [ { "name": "spark-operator", "url": "https://quay.io/repository/radanalyticsio/spark-operator", - "popularity": 25565.0 + "popularity": 25375.0 }, { "name": "s2i-spark-minimal-notebook", "url": "https://quay.io/repository/odh-jupyterhub/s2i-spark-minimal-notebook", - "popularity": 25471.0 + "popularity": 25965.0 }, { "name": "s2i-spark-scipy-notebook", "url": "https://quay.io/repository/odh-jupyterhub/s2i-spark-scipy-notebook", - "popularity": 24988.0 + "popularity": 25113.0 }, { "name": "apache.spark", "url": "https://quay.io/repository/klovercloud/apache.spark", - "popularity": 18195.0 + "popularity": 20156.0 }, { "name": "spark-dependencies", "url": "https://quay.io/repository/jaegertracing/spark-dependencies", - "popularity": 2441.0 + "popularity": 2444.0 } ] }, @@ -23052,27 +22329,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 378922.0 + "popularity": 395380.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -23095,27 +22372,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 378922.0 + "popularity": 395380.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -23175,27 +22452,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 42554.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -23305,27 +22582,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "application-service", "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 116853.0 + "popularity": 133096.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -23432,30 +22709,30 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "open-liberty", - "url": "https://quay.io/repository/shipwright-samples/open-liberty", - "popularity": 21.0 - }, { "name": "open-liberty-certified", "url": "https://quay.io/repository/operator-pipeline-prod/open-liberty-certified", - "popularity": 348.0 + "popularity": 336.0 }, { "name": "open-liberty", "url": "https://quay.io/repository/operatorhubio/open-liberty", - "popularity": 252.0 + "popularity": 224.0 }, { "name": "open-liberty", "url": "https://quay.io/repository/mmondics/open-liberty", - "popularity": 109.0 + "popularity": 157.0 }, { "name": "liberty-rest", "url": "https://quay.io/repository/marrober/liberty-rest", "popularity": 116.0 + }, + { + "name": "liberty-appimage", + "url": "https://quay.io/repository/kennedn/liberty-appimage", + "popularity": 25.0 } ] }, @@ -23497,27 +22774,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 + }, + { + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -23550,58 +22827,82 @@ "Subtype": "" } ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "node-exporter", - "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 }, { - "name": "shadowbox", - "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "name": "websphere-liberty", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 286, + "Docker_Url": "https://hub.docker.com/_/websphere-liberty", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] }, { - "name": "thanos", - "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2526636.0 + "name": "ibmcom/websphere-liberty", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 22, + "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] }, { - "name": "wildfly-runtime-centos7", - "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 8, - "entity_id": 287 - }, - { - "WebSphere Process Server": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "rancher/server", + "name": "atlassian/server-client-plugins", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", "OS": [ { "Class": "OS", @@ -23621,27 +22922,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "thanos", "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2526636.0 + "popularity": 2497215.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -23650,7 +22951,7 @@ } ], "entity_type": 8, - "entity_id": 288 + "entity_id": 287 }, { "Oracle Real-Time Decisions": [ @@ -23753,27 +23054,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 82319.0 + "popularity": 79779.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 + "popularity": 30527.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20354.0 + "popularity": 20583.0 }, { "name": "soketi", "url": "https://quay.io/repository/soketi/soketi", - "popularity": 31737.0 + "popularity": 37098.0 } ] }, @@ -23975,27 +23276,27 @@ { "name": "gateway", "url": "https://quay.io/repository/solo-io/gateway", - "popularity": 345983.0 - }, - { - "name": "ibm-platform-api-operator", - "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", - "popularity": 36619.0 + "popularity": 300044.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 + }, + { + "name": "insights-api", + "url": "https://quay.io/repository/fairwinds/insights-api", + "popularity": 39135.0 }, { "name": "k8s-sidecar", "url": "https://quay.io/repository/kiwigrid/k8s-sidecar", - "popularity": 1297028.0 + "popularity": 1288147.0 }, { "name": "third-party-api-resolver-server", "url": "https://quay.io/repository/decentraland/third-party-api-resolver-server", - "popularity": 52834.0 + "popularity": 52906.0 } ] }, @@ -24037,27 +23338,27 @@ { "name": "citrix-k8s-ingress-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", - "popularity": 138781.0 + "popularity": 139218.0 }, { "name": "citrix-k8s-node-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", - "popularity": 39371.0 + "popularity": 39408.0 }, { "name": "citrix-adc-metrics-exporter", "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", - "popularity": 39329.0 + "popularity": 39170.0 }, { "name": "citrix-observability-exporter", "url": "https://quay.io/repository/citrix/citrix-observability-exporter", - "popularity": 2000.0 + "popularity": 1982.0 }, { - "name": "citrix-k8s-cpx-ingress", - "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", - "popularity": 391.0 + "name": "citrix-ipam-controller", + "url": "https://quay.io/repository/citrix/citrix-ipam-controller", + "popularity": 393.0 } ] }, @@ -24099,27 +23400,27 @@ { "name": "citrix-k8s-ingress-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", - "popularity": 138781.0 + "popularity": 139218.0 }, { "name": "citrix-k8s-node-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", - "popularity": 39371.0 + "popularity": 39408.0 }, { "name": "citrix-adc-metrics-exporter", "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", - "popularity": 39329.0 + "popularity": 39170.0 }, { "name": "citrix-observability-exporter", "url": "https://quay.io/repository/citrix/citrix-observability-exporter", - "popularity": 2000.0 + "popularity": 1982.0 }, { - "name": "citrix-k8s-cpx-ingress", - "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", - "popularity": 391.0 + "name": "citrix-ipam-controller", + "url": "https://quay.io/repository/citrix/citrix-ipam-controller", + "popularity": 393.0 } ] }, @@ -24155,13 +23456,13 @@ "popularity": 0.0 }, { - "name": "viva99char", - "url": "https://quay.io/repository/viva99char/viva99char", + "name": "agen", + "url": "https://quay.io/repository/agen8et/agen", "popularity": 0.0 }, { - "name": "agen", - "url": "https://quay.io/repository/agen8et/agen", + "name": "viva99char", + "url": "https://quay.io/repository/viva99char/viva99char", "popularity": 0.0 } ] @@ -24183,7 +23484,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 106, + "star_count": 107, "Docker_Url": "https://hub.docker.com/r/ibmcom/datapower", "OS": [ { @@ -24195,6 +23496,24 @@ "Subtype": "" } ] + }, + { + "name": "ibmcom/datapower-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/ibmcom/datapower-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] } ] }, @@ -24204,27 +23523,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 } ] }, @@ -24247,27 +23566,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 } ] }, @@ -24290,27 +23609,27 @@ { "name": "hacbs-jvm-build-request-processor", "url": "https://quay.io/repository/redhat-appstudio/hacbs-jvm-build-request-processor", - "popularity": 5685.0 + "popularity": 7924.0 }, { "name": "hacbs-jvm-build-request-processor", "url": "https://quay.io/repository/sdouglas/hacbs-jvm-build-request-processor", - "popularity": 767.0 + "popularity": 778.0 }, { "name": "visa-processor", "url": "https://quay.io/repository/rhacs-demo/visa-processor", - "popularity": 1607.0 + "popularity": 1653.0 }, { "name": "mastercard-processor", "url": "https://quay.io/repository/rhacs-demo/mastercard-processor", - "popularity": 875.0 + "popularity": 887.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8041.0 + "popularity": 8741.0 } ] }, @@ -24352,27 +23671,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 }, { "name": "samtools", "url": "https://quay.io/repository/biocontainers/samtools", - "popularity": 109822.0 + "popularity": 120126.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 + "popularity": 30527.0 } ] }, @@ -24484,27 +23803,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15042.0 + "popularity": 14960.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 3550.0 + "popularity": 3111.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20354.0 + "popularity": 20583.0 }, { "name": "edb-postgres-advanced", "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 13582.0 + "popularity": 12879.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17355.0 + "popularity": 17958.0 } ] }, @@ -24550,27 +23869,27 @@ { "name": "gawk", "url": "https://quay.io/repository/biocontainers/gawk", - "popularity": 12927.0 + "popularity": 20761.0 }, { "name": "nfs-client-provisioner", "url": "https://quay.io/repository/vbouchaud/nfs-client-provisioner", - "popularity": 4650.0 + "popularity": 10282.0 }, { "name": "kie-server-showcase", "url": "https://quay.io/repository/kiegroup/kie-server-showcase", - "popularity": 704.0 + "popularity": 728.0 }, { "name": "bioawk", "url": "https://quay.io/repository/biocontainers/bioawk", - "popularity": 280.0 + "popularity": 206.0 }, { "name": "php", "url": "https://quay.io/repository/islamic-network/php", - "popularity": 30.0 + "popularity": 39.0 } ] }, @@ -24592,34 +23911,34 @@ { "name": "basic", "url": "https://quay.io/repository/biocontainers/basic", - "popularity": 410.0 + "popularity": 290.0 } ], "quay_top_images": [ { "name": "nginx-basic-auth-proxy", "url": "https://quay.io/repository/dtan4/nginx-basic-auth-proxy", - "popularity": 6316.0 + "popularity": 6483.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 79034.0 + "popularity": 78097.0 }, { "name": "basic-ocp-demo", "url": "https://quay.io/repository/freedomben/basic-ocp-demo", - "popularity": 1694.0 + "popularity": 1740.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 + "popularity": 30527.0 }, { "name": "haproxy-exporter", "url": "https://quay.io/repository/prometheus/haproxy-exporter", - "popularity": 13460.0 + "popularity": 13670.0 } ] }, @@ -24814,19 +24133,19 @@ "stars": 18, "display_name": "Strimzi", "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", - "version": "0.29.0", + "version": "0.30.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 412, - "high": 38, - "medium": 473, - "unknown": 7, - "critical": 6 + "low": 277, + "high": 13, + "medium": 348, + "unknown": 5, + "critical": 4 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1652572867, + "ts": 1657929610, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -24845,8 +24164,6 @@ "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka", "quay.io/strimzi/kafka-bridge", "quay.io/strimzi/jmxtrans", "quay.io/strimzi/kaniko-executor", @@ -25434,38 +24751,64 @@ "entity_id": 303 }, { - "C#": [ + "Visual C++": [ { "dockerhub_exact_images": [], "dockerhub_top_images": [] }, { "quay_exact_images": [], - "quay_top_images": [] + "quay_top_images": [ + { + "name": "visual-qontract", + "url": "https://quay.io/repository/app-sre/visual-qontract", + "popularity": 4063.0 + }, + { + "name": "visual-regression", + "url": "https://quay.io/repository/babylonhealth/visual-regression", + "popularity": 116.0 + }, + { + "name": "ccc", + "url": "https://quay.io/repository/jlospinoso/ccc", + "popularity": 0.0 + }, + { + "name": "sqlitebrowser", + "url": "https://quay.io/repository/biocontainers/sqlitebrowser", + "popularity": 0.0 + }, + { + "name": "dpp", + "url": "https://quay.io/repository/brainboxdotcc/dpp", + "popularity": 0.0 + } + ] }, { "operators": [ { - "package_id": "f4411bd7-db63-4d12-9c59-9267599fdf4f", - "name": "alvearie-imaging-ingestion", - "normalized_name": "alvearie-imaging-ingestion", - "logo_image_id": "4c92b67d-e6a6-413f-9ec5-ec98c74415e2", + "package_id": "81f02c13-a52e-4191-bb38-bb905eb3cf26", + "name": "joget-tomcat-operator", + "normalized_name": "joget-tomcat-operator", + "logo_image_id": "6a68aa12-8ee8-412b-8292-8a28b50c9f06", "stars": 0, - "display_name": "Alvearie Imaging Ingestion Operator", - "description": "The Alvearie Imaging Ingestion provides a collection of components for extending enterprise medical imaging informatics systems to Kubernetes.", - "version": "0.0.3", + "display_name": "Joget DX on Apache Tomcat", + "description": "No-code/low-code platform to visually build and run apps", + "version": "0.0.1", "deprecated": false, "signed": false, "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, + "low": 88, + "high": 14, + "medium": 275, "unknown": 1, - "critical": 0 + "critical": 6 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1617895795, + "ts": 1605185999, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -25478,30 +24821,23 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/Alvearie/imaging-ingestion", + "git_repos": "https://github.com/jogetworkflow/", "container_images": [] }, { - "package_id": "280420eb-a3b0-46fa-bef3-4300e85a7ad1", - "name": "cass-operator-community", - "normalized_name": "cass-operator-community", - "logo_image_id": "ac0cc465-c42f-43d9-a288-ec178d9f3ef9", + "package_id": "9a3a17ec-190f-4a44-b389-c049e0d5345e", + "name": "lightbend-console-operator", + "normalized_name": "lightbend-console-operator", + "logo_image_id": "809339cf-e417-4da3-9d6f-00d185ee802f", "stars": 0, - "display_name": "DataStax Kubernetes Operator for Apache Cassandra", - "description": "Simple provisioning, turn-key operations, and automated remediation of Apache Cassandra clusters\n", - "version": "1.10.4", + "display_name": "Lightbend Console Operator", + "description": "Lightbend Console provides visualizations for Akka, Play, and Lagom applications. See https://developer.lightbend.com/docs/console/current/ for details.", + "version": "0.0.1", "deprecated": false, "signed": false, - "security_report_summary": { - "low": 7, - "high": 0, - "medium": 7, - "unknown": 1, - "critical": 0 - }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1652441433, + "ts": 1568764800, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -25514,2387 +24850,186 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/k8ssandra/cass-operator", + "git_repos": "https://github.com/lightbend/console-charts/tree/master/operator", "container_images": [] + } + ] + } + ], + "entity_type": 9, + "entity_id": 306 + }, + { + "Cascading Style Sheets (CSS)": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 29176747.0 }, { - "package_id": "d4e5a79a-1ff7-426a-8fbc-59a103b14b41", - "name": "qserv-operator", - "normalized_name": "qserv-operator", - "logo_image_id": "2684e3e7-54a4-4b02-a3f9-b55336a5d3cf", - "stars": 0, - "display_name": "Qserv operator", - "description": "Create and maintain highly-available Qserv clusters on Kubernetes", - "version": "2022.1.1-rc1", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1643383828, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/lsst/qserv-operator", - "container_images": [] + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5878721.0 }, { - "package_id": "614a5896-0b60-4e2b-a5b7-3b694658ab2a", - "name": "strimzi-kafka-operator", - "normalized_name": "strimzi-kafka-operator", - "logo_image_id": "83c34ef5-d2f7-4282-94ab-468dea859677", - "stars": 18, - "display_name": "Strimzi", - "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", - "version": "0.29.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 412, - "high": 38, - "medium": 473, - "unknown": 7, - "critical": 6 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1652572867, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/strimzi/strimzi-kafka-operator", - "container_images": [ - "quay.io/strimzi/operator", - "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka-bridge", - "quay.io/strimzi/jmxtrans", - "quay.io/strimzi/kaniko-executor", - "quay.io/strimzi/maven-builder" - ] + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 90209.0 }, { - "package_id": "cd93e666-2b6d-419e-879d-3890b5f7c200", - "name": "keycloak-operator", - "normalized_name": "keycloak-operator", - "logo_image_id": "fd90a09f-d3e5-45bf-8c8f-589634592369", - "stars": 14, - "display_name": "Keycloak Operator", - "description": "An Operator for installing and managing Keycloak", - "version": "20.0.0-alpha.3", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 38, - "high": 0, - "medium": 47, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1656518437, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/keycloak/keycloak", - "container_images": [ - "quay.io/keycloak/keycloak-operator:18.0.2" + "name": "memcached-exporter", + "url": "https://quay.io/repository/prometheus/memcached-exporter", + "popularity": 79779.0 + }, + { + "name": "redis-operator", + "url": "https://quay.io/repository/opstree/redis-operator", + "popularity": 102060.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 307 + }, + { + "Clipper": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "bioconductor-clipper", + "url": "https://quay.io/repository/biocontainers/bioconductor-clipper", + "popularity": 261.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 308 + }, + { + "CLIST": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 309 + }, + { + "ColdFusion Markup Language": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "adobecoldfusion/coldfusion", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/adobecoldfusion/coldfusion", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } ] }, { - "package_id": "2d28ca38-12b7-469f-b82e-f00edde51d19", - "name": "prometheus", - "normalized_name": "prometheus", - "logo_image_id": "150dd205-ff78-4478-824c-ffb2a140edcf", - "stars": 14, - "display_name": "Prometheus Operator", - "description": "Manage the full lifecycle of configuring and managing Prometheus and Alertmanager servers.", - "version": "0.47.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 2, - "unknown": 2, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1618530180, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/prometheus-operator/prometheus-operator", - "container_images": [ - "quay.io/prometheus-operator/prometheus-operator:v0.47.0" + "name": "intel/language-translation", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-translation", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } ] }, { - "package_id": "b1aa6353-146c-477c-943e-5a5558b65dc3", - "name": "elastic-cloud-eck", - "normalized_name": "elastic-cloud-eck", - "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", - "stars": 13, - "display_name": "Elasticsearch (ECK) Operator", - "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", - "version": "2.3.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1657006653, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/elastic/cloud-on-k8s", - "container_images": [] + "name": "intel/language-modeling", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5878721.0 }, { - "package_id": "62d3a0f9-3d23-48f0-9bee-9b4f2060c6df", - "name": "postgresql", - "normalized_name": "postgresql", - "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", - "stars": 13, - "display_name": "Crunchy Postgres for Kubernetes", - "description": "Production Postgres Made Easy", - "version": "5.1.2", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 23, - "high": 0, - "medium": 32, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1657571435, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/CrunchyData/postgres-operator", - "container_images": [] + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 90209.0 }, { - "package_id": "0c44b6e2-521b-4485-9d14-fd8f01ea6a4d", - "name": "knative-operator", - "normalized_name": "knative-operator", - "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", - "stars": 12, - "display_name": "Knative Operator", - "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", - "version": "1.6.0", - "deprecated": false, - "signed": false, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1626134400, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/knative/operator", - "container_images": [] + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 30527.0 }, { - "package_id": "bb525733-deee-4431-9b51-4897c8d6d21b", - "name": "redis-operator", - "normalized_name": "redis-operator", - "logo_image_id": "60503f77-253d-4491-adff-e6e55c547ef7", - "stars": 9, - "display_name": "Redis Operator", - "description": "A Golang based redis operator that will make/oversee Redis standalone/cluster mode setup on top of the Kubernetes.", - "version": "0.11.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1657396835, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/ot-container-kit/redis-operator", - "container_images": [ - "quay.io/opstree/redis-operator:v0.11.0" - ] + "name": "spicedb", + "url": "https://quay.io/repository/authzed/spicedb", + "popularity": 14285.0 }, { - "package_id": "6d932520-44ce-4954-a8ea-f687ad8cf170", - "name": "rook-ceph", - "normalized_name": "rook-ceph", - "logo_image_id": "9234e87f-8c06-4e85-ad9c-3b4f0b95fbd6", - "stars": 8, - "display_name": "Rook-Ceph", - "description": "Install and maintain Ceph Storage cluster", - "version": "1.1.1", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 509, - "high": 33, - "medium": 719, - "unknown": 0, - "critical": 7 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1621525859, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/rook/rook", - "container_images": [] - }, - { - "package_id": "fa7ed65b-05ef-428d-952c-05f929661806", - "name": "argocd-operator", - "normalized_name": "argocd-operator", - "logo_image_id": "b26087ab-be34-4750-abab-955e472c3887", - "stars": 7, - "display_name": "Argo CD", - "description": "Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.", - "version": "0.3.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1650443438, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/argoproj-labs/argocd-operator", - "container_images": [ - "quay.io/argoprojlabs/argocd-operator" - ] - }, - { - "package_id": "5667c55e-0a99-4011-9ab6-7bc3487f43a7", - "name": "grafana-operator", - "normalized_name": "grafana-operator", - "logo_image_id": "27dba515-e77b-4e81-b7ac-484df9e02086", - "stars": 7, - "display_name": "Grafana Operator", - "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", - "version": "4.5.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 4, - "high": 0, - "medium": 3, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1657706412, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/grafana-operator/grafana-operator", - "container_images": [ - "quay.io/grafana-operator/grafana-operator:v4.5.0" - ] - }, - { - "package_id": "ac42caed-76b2-42c8-bf98-533fd044eca6", - "name": "starboard-operator", - "normalized_name": "starboard-operator", - "logo_image_id": "7750edcf-42ac-436d-920a-341ef3f473e8", - "stars": 7, - "display_name": "Starboard Operator", - "description": "Keeps security report resources updated", - "version": "0.15.6", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1654107072, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/aquasecurity/starboard", - "container_images": [ - "docker.io/aquasec/starboard-operator:0.15.6" - ] - }, - { - "package_id": "66a8d8ef-e05d-44be-b704-474e144b8b9b", - "name": "tidb-operator", - "normalized_name": "tidb-operator", - "logo_image_id": "b328c448-efbb-4aab-a463-8437ab8898bb", - "stars": 7, - "display_name": "TiDB Operator", - "description": "TiDB Operator manages TiDB clusters on Kubernetes and automates tasks related to operating a TiDB cluster. It makes TiDB a truly cloud-native database.", - "version": "1.3.1", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 4, - "high": 8, - "medium": 31, - "unknown": 8, - "critical": 2 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1645693233, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/pingcap/tidb-operator", - "container_images": [] - }, - { - "package_id": "95833125-3a5b-4da5-a985-21f172238a61", - "name": "clickhouse", - "normalized_name": "clickhouse", - "logo_image_id": "f00ce069-4086-4f36-bb6e-bb805373bfa7", - "stars": 5, - "display_name": "Altinity Operator for ClickHouse", - "description": "ClickHouse Operator manages full lifecycle of ClickHouse clusters.", - "version": "0.18.3", - "deprecated": false, - "signed": false, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1573466400, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/altinity/clickhouse-operator", - "container_images": [] - }, - { - "package_id": "0e2ae061-9331-4d12-b4a6-eec1def5eaea", - "name": "flux", - "normalized_name": "flux", - "logo_image_id": "59b3d9ab-5b8b-45bc-935f-cf711c5fece0", - "stars": 5, - "display_name": "Flux", - "description": "Flux is a Continuous Delivery solution for Kubernetes.", - "version": "0.31.3", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1656606635, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://fluxcd.io/docs/", - "container_images": [] - }, - { - "package_id": "e3f8d531-6ea5-48ce-ac99-505c79414881", - "name": "percona-xtradb-cluster-operator", - "normalized_name": "percona-xtradb-cluster-operator", - "logo_image_id": "0b8875cd-6661-4269-9cf6-0fd92d59017b", - "stars": 5, - "display_name": "Percona Distribution for MySQL Operator", - "description": "Percona Distribution for MySQL Operator manages the lifecycle of Percona XtraDB cluster instances.", - "version": "1.10.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 25, - "high": 5, - "medium": 48, - "unknown": 1, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1640178704, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/percona/percona-xtradb-cluster-operator", - "container_images": [] - }, - { - "package_id": "f5c53828-c741-4ea7-97b6-89071b3c0b7e", - "name": "rocketmq-operator", - "normalized_name": "rocketmq-operator", - "logo_image_id": "350d3cf0-d7e6-4500-871c-733f06713494", - "stars": 5, - "display_name": "RocketMQ Operator", - "description": "The RocketMQ Operator manages the Apache RocketMQ service instances deployed on the Kubernetes cluster.", - "version": "0.2.1", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 142, - "high": 39, - "medium": 107, - "unknown": 3, - "critical": 6 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1621525858, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/apache/rocketmq-operator", - "container_images": [] - }, - { - "package_id": "2ffd7a04-d749-4bcf-b682-a2483c3dd4fe", - "name": "storageos", - "normalized_name": "storageos", - "logo_image_id": "ce032151-64d8-4b3b-b172-016dac88d973", - "stars": 5, - "display_name": "StorageOS", - "description": "Cloud-native, persistent storage for containers.", - "version": "2.6.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 25, - "high": 5, - "medium": 44, - "unknown": 1, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1647018033, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/storageos/operator", - "container_images": [] - } - ] - } - ], - "entity_type": 9, - "entity_id": 304 - }, - { - "C++": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [] - }, - { - "operators": [ - { - "package_id": "f4411bd7-db63-4d12-9c59-9267599fdf4f", - "name": "alvearie-imaging-ingestion", - "normalized_name": "alvearie-imaging-ingestion", - "logo_image_id": "4c92b67d-e6a6-413f-9ec5-ec98c74415e2", - "stars": 0, - "display_name": "Alvearie Imaging Ingestion Operator", - "description": "The Alvearie Imaging Ingestion provides a collection of components for extending enterprise medical imaging informatics systems to Kubernetes.", - "version": "0.0.3", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 1, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1617895795, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/Alvearie/imaging-ingestion", - "container_images": [] - }, - { - "package_id": "280420eb-a3b0-46fa-bef3-4300e85a7ad1", - "name": "cass-operator-community", - "normalized_name": "cass-operator-community", - "logo_image_id": "ac0cc465-c42f-43d9-a288-ec178d9f3ef9", - "stars": 0, - "display_name": "DataStax Kubernetes Operator for Apache Cassandra", - "description": "Simple provisioning, turn-key operations, and automated remediation of Apache Cassandra clusters\n", - "version": "1.10.4", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 7, - "high": 0, - "medium": 7, - "unknown": 1, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1652441433, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/k8ssandra/cass-operator", - "container_images": [] - }, - { - "package_id": "d4e5a79a-1ff7-426a-8fbc-59a103b14b41", - "name": "qserv-operator", - "normalized_name": "qserv-operator", - "logo_image_id": "2684e3e7-54a4-4b02-a3f9-b55336a5d3cf", - "stars": 0, - "display_name": "Qserv operator", - "description": "Create and maintain highly-available Qserv clusters on Kubernetes", - "version": "2022.1.1-rc1", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1643383828, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/lsst/qserv-operator", - "container_images": [] - }, - { - "package_id": "614a5896-0b60-4e2b-a5b7-3b694658ab2a", - "name": "strimzi-kafka-operator", - "normalized_name": "strimzi-kafka-operator", - "logo_image_id": "83c34ef5-d2f7-4282-94ab-468dea859677", - "stars": 18, - "display_name": "Strimzi", - "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", - "version": "0.29.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 412, - "high": 38, - "medium": 473, - "unknown": 7, - "critical": 6 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1652572867, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/strimzi/strimzi-kafka-operator", - "container_images": [ - "quay.io/strimzi/operator", - "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka-bridge", - "quay.io/strimzi/jmxtrans", - "quay.io/strimzi/kaniko-executor", - "quay.io/strimzi/maven-builder" - ] - }, - { - "package_id": "cd93e666-2b6d-419e-879d-3890b5f7c200", - "name": "keycloak-operator", - "normalized_name": "keycloak-operator", - "logo_image_id": "fd90a09f-d3e5-45bf-8c8f-589634592369", - "stars": 14, - "display_name": "Keycloak Operator", - "description": "An Operator for installing and managing Keycloak", - "version": "20.0.0-alpha.3", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 38, - "high": 0, - "medium": 47, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1656518437, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/keycloak/keycloak", - "container_images": [ - "quay.io/keycloak/keycloak-operator:18.0.2" - ] - }, - { - "package_id": "2d28ca38-12b7-469f-b82e-f00edde51d19", - "name": "prometheus", - "normalized_name": "prometheus", - "logo_image_id": "150dd205-ff78-4478-824c-ffb2a140edcf", - "stars": 14, - "display_name": "Prometheus Operator", - "description": "Manage the full lifecycle of configuring and managing Prometheus and Alertmanager servers.", - "version": "0.47.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 2, - "unknown": 2, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1618530180, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/prometheus-operator/prometheus-operator", - "container_images": [ - "quay.io/prometheus-operator/prometheus-operator:v0.47.0" - ] - }, - { - "package_id": "b1aa6353-146c-477c-943e-5a5558b65dc3", - "name": "elastic-cloud-eck", - "normalized_name": "elastic-cloud-eck", - "logo_image_id": "5b158352-afad-4493-86f6-ef225658c812", - "stars": 13, - "display_name": "Elasticsearch (ECK) Operator", - "description": "Run Elasticsearch, Kibana, APM Server, Beats, Enterprise Search, Elastic Agent and Elastic Maps Server on Kubernetes and OpenShift", - "version": "2.3.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1657006653, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/elastic/cloud-on-k8s", - "container_images": [] - }, - { - "package_id": "62d3a0f9-3d23-48f0-9bee-9b4f2060c6df", - "name": "postgresql", - "normalized_name": "postgresql", - "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", - "stars": 13, - "display_name": "Crunchy Postgres for Kubernetes", - "description": "Production Postgres Made Easy", - "version": "5.1.2", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 23, - "high": 0, - "medium": 32, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1657571435, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/CrunchyData/postgres-operator", - "container_images": [] - }, - { - "package_id": "0c44b6e2-521b-4485-9d14-fd8f01ea6a4d", - "name": "knative-operator", - "normalized_name": "knative-operator", - "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", - "stars": 12, - "display_name": "Knative Operator", - "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", - "version": "1.6.0", - "deprecated": false, - "signed": false, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1626134400, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/knative/operator", - "container_images": [] - }, - { - "package_id": "bb525733-deee-4431-9b51-4897c8d6d21b", - "name": "redis-operator", - "normalized_name": "redis-operator", - "logo_image_id": "60503f77-253d-4491-adff-e6e55c547ef7", - "stars": 9, - "display_name": "Redis Operator", - "description": "A Golang based redis operator that will make/oversee Redis standalone/cluster mode setup on top of the Kubernetes.", - "version": "0.11.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1657396835, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/ot-container-kit/redis-operator", - "container_images": [ - "quay.io/opstree/redis-operator:v0.11.0" - ] - }, - { - "package_id": "6d932520-44ce-4954-a8ea-f687ad8cf170", - "name": "rook-ceph", - "normalized_name": "rook-ceph", - "logo_image_id": "9234e87f-8c06-4e85-ad9c-3b4f0b95fbd6", - "stars": 8, - "display_name": "Rook-Ceph", - "description": "Install and maintain Ceph Storage cluster", - "version": "1.1.1", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 509, - "high": 33, - "medium": 719, - "unknown": 0, - "critical": 7 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1621525859, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/rook/rook", - "container_images": [] - }, - { - "package_id": "fa7ed65b-05ef-428d-952c-05f929661806", - "name": "argocd-operator", - "normalized_name": "argocd-operator", - "logo_image_id": "b26087ab-be34-4750-abab-955e472c3887", - "stars": 7, - "display_name": "Argo CD", - "description": "Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.", - "version": "0.3.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1650443438, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/argoproj-labs/argocd-operator", - "container_images": [ - "quay.io/argoprojlabs/argocd-operator" - ] - }, - { - "package_id": "5667c55e-0a99-4011-9ab6-7bc3487f43a7", - "name": "grafana-operator", - "normalized_name": "grafana-operator", - "logo_image_id": "27dba515-e77b-4e81-b7ac-484df9e02086", - "stars": 7, - "display_name": "Grafana Operator", - "description": "A Kubernetes Operator based on the Operator SDK for creating and managing Grafana instances", - "version": "4.5.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 4, - "high": 0, - "medium": 3, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1657706412, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/grafana-operator/grafana-operator", - "container_images": [ - "quay.io/grafana-operator/grafana-operator:v4.5.0" - ] - }, - { - "package_id": "ac42caed-76b2-42c8-bf98-533fd044eca6", - "name": "starboard-operator", - "normalized_name": "starboard-operator", - "logo_image_id": "7750edcf-42ac-436d-920a-341ef3f473e8", - "stars": 7, - "display_name": "Starboard Operator", - "description": "Keeps security report resources updated", - "version": "0.15.6", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1654107072, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/aquasecurity/starboard", - "container_images": [ - "docker.io/aquasec/starboard-operator:0.15.6" - ] - }, - { - "package_id": "66a8d8ef-e05d-44be-b704-474e144b8b9b", - "name": "tidb-operator", - "normalized_name": "tidb-operator", - "logo_image_id": "b328c448-efbb-4aab-a463-8437ab8898bb", - "stars": 7, - "display_name": "TiDB Operator", - "description": "TiDB Operator manages TiDB clusters on Kubernetes and automates tasks related to operating a TiDB cluster. It makes TiDB a truly cloud-native database.", - "version": "1.3.1", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 4, - "high": 8, - "medium": 31, - "unknown": 8, - "critical": 2 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1645693233, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/pingcap/tidb-operator", - "container_images": [] - }, - { - "package_id": "95833125-3a5b-4da5-a985-21f172238a61", - "name": "clickhouse", - "normalized_name": "clickhouse", - "logo_image_id": "f00ce069-4086-4f36-bb6e-bb805373bfa7", - "stars": 5, - "display_name": "Altinity Operator for ClickHouse", - "description": "ClickHouse Operator manages full lifecycle of ClickHouse clusters.", - "version": "0.18.3", - "deprecated": false, - "signed": false, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1573466400, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/altinity/clickhouse-operator", - "container_images": [] - }, - { - "package_id": "0e2ae061-9331-4d12-b4a6-eec1def5eaea", - "name": "flux", - "normalized_name": "flux", - "logo_image_id": "59b3d9ab-5b8b-45bc-935f-cf711c5fece0", - "stars": 5, - "display_name": "Flux", - "description": "Flux is a Continuous Delivery solution for Kubernetes.", - "version": "0.31.3", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1656606635, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://fluxcd.io/docs/", - "container_images": [] - }, - { - "package_id": "e3f8d531-6ea5-48ce-ac99-505c79414881", - "name": "percona-xtradb-cluster-operator", - "normalized_name": "percona-xtradb-cluster-operator", - "logo_image_id": "0b8875cd-6661-4269-9cf6-0fd92d59017b", - "stars": 5, - "display_name": "Percona Distribution for MySQL Operator", - "description": "Percona Distribution for MySQL Operator manages the lifecycle of Percona XtraDB cluster instances.", - "version": "1.10.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 25, - "high": 5, - "medium": 48, - "unknown": 1, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1640178704, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/percona/percona-xtradb-cluster-operator", - "container_images": [] - }, - { - "package_id": "f5c53828-c741-4ea7-97b6-89071b3c0b7e", - "name": "rocketmq-operator", - "normalized_name": "rocketmq-operator", - "logo_image_id": "350d3cf0-d7e6-4500-871c-733f06713494", - "stars": 5, - "display_name": "RocketMQ Operator", - "description": "The RocketMQ Operator manages the Apache RocketMQ service instances deployed on the Kubernetes cluster.", - "version": "0.2.1", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 142, - "high": 39, - "medium": 107, - "unknown": 3, - "critical": 6 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1621525858, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/apache/rocketmq-operator", - "container_images": [] - }, - { - "package_id": "2ffd7a04-d749-4bcf-b682-a2483c3dd4fe", - "name": "storageos", - "normalized_name": "storageos", - "logo_image_id": "ce032151-64d8-4b3b-b172-016dac88d973", - "stars": 5, - "display_name": "StorageOS", - "description": "Cloud-native, persistent storage for containers.", - "version": "2.6.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 25, - "high": 5, - "medium": 44, - "unknown": 1, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1647018033, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/storageos/operator", - "container_images": [] - } - ] - } - ], - "entity_type": 9, - "entity_id": 305 - }, - { - "Visual C++": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "visual-qontract", - "url": "https://quay.io/repository/app-sre/visual-qontract", - "popularity": 4089.0 - }, - { - "name": "visual-regression", - "url": "https://quay.io/repository/babylonhealth/visual-regression", - "popularity": 138.0 - }, - { - "name": "ccc", - "url": "https://quay.io/repository/jlospinoso/ccc", - "popularity": 0.0 - }, - { - "name": "sqlitebrowser", - "url": "https://quay.io/repository/biocontainers/sqlitebrowser", - "popularity": 0.0 - }, - { - "name": "dpp", - "url": "https://quay.io/repository/brainboxdotcc/dpp", - "popularity": 0.0 - } - ] - }, - { - "operators": [ - { - "package_id": "81f02c13-a52e-4191-bb38-bb905eb3cf26", - "name": "joget-tomcat-operator", - "normalized_name": "joget-tomcat-operator", - "logo_image_id": "6a68aa12-8ee8-412b-8292-8a28b50c9f06", - "stars": 0, - "display_name": "Joget DX on Apache Tomcat", - "description": "No-code/low-code platform to visually build and run apps", - "version": "0.0.1", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 88, - "high": 14, - "medium": 275, - "unknown": 1, - "critical": 6 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1605185999, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/jogetworkflow/", - "container_images": [] - }, - { - "package_id": "9a3a17ec-190f-4a44-b389-c049e0d5345e", - "name": "lightbend-console-operator", - "normalized_name": "lightbend-console-operator", - "logo_image_id": "809339cf-e417-4da3-9d6f-00d185ee802f", - "stars": 0, - "display_name": "Lightbend Console Operator", - "description": "Lightbend Console provides visualizations for Akka, Play, and Lagom applications. See https://developer.lightbend.com/docs/console/current/ for details.", - "version": "0.0.1", - "deprecated": false, - "signed": false, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1568764800, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/lightbend/console-charts/tree/master/operator", - "container_images": [] - } - ] - } - ], - "entity_type": 9, - "entity_id": 306 - }, - { - "Cascading Style Sheets": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "node-exporter", - "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 - }, - { - "name": "blackbox-exporter", - "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 - }, - { - "name": "memcached-exporter", - "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 82319.0 - }, - { - "name": "redis-operator", - "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 102256.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 307 - }, - { - "Clipper": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "bioconductor-clipper", - "url": "https://quay.io/repository/biocontainers/bioconductor-clipper", - "popularity": 369.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 308 - }, - { - "CLIST": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 309 - }, - { - "COBOL": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "cobol-on-wheelchair", - "url": "https://quay.io/repository/shelman/cobol-on-wheelchair", - "popularity": 0.0 - }, - { - "name": "docker-ibmcloud-grant-cluster", - "url": "https://quay.io/repository/ibm-avocados/docker-ibmcloud-grant-cluster", - "popularity": 0.0 - }, - { - "name": "docker-kubectl", - "url": "https://quay.io/repository/awesome/docker-kubectl", - "popularity": 0.0 - }, - { - "name": "docker-kubectl", - "url": "https://quay.io/repository/ibm-avocados/docker-kubectl", - "popularity": 0.0 - }, - { - "name": "docker-ibmcloud-addon-istio", - "url": "https://quay.io/repository/ibm-avocados/docker-ibmcloud-addon-istio", - "popularity": 0.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 310 - }, - { - "ColdFusion Markup Language": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "adobecoldfusion/coldfusion", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 3, - "Docker_Url": "https://hub.docker.com/r/adobecoldfusion/coldfusion", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "intel/language-translation", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/intel/language-translation", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "intel/language-modeling", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 - }, - { - "name": "blackbox-exporter", - "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 - }, - { - "name": "pushgateway", - "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 - }, - { - "name": "spicedb", - "url": "https://quay.io/repository/authzed/spicedb", - "popularity": 13555.0 - }, - { - "name": "statsd-exporter", - "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8041.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 311 - }, - { - "Data Language Interface": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "zen-data-sorcerer", - "url": "https://quay.io/repository/opencloudio/zen-data-sorcerer", - "popularity": 225384.0 - }, - { - "name": "metering-data-manager", - "url": "https://quay.io/repository/opencloudio/metering-data-manager", - "popularity": 212073.0 - }, - { - "name": "node-exporter", - "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 312 - }, - { - "Delphi": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "delphi-council-is", - "url": "https://quay.io/repository/klenkes74/delphi-council-is", - "popularity": 1882.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 313 - }, - { - "Easytrieve": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 314 - }, - { - "Expect": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [ - { - "name": "expect", - "url": "https://quay.io/repository/baseimage/expect", - "popularity": 0.0 - } - ], - "quay_top_images": [ - { - "name": "blackbox-exporter", - "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 - }, - { - "name": "roundcube", - "url": "https://quay.io/repository/instrumentisto/roundcube", - "popularity": 1.0 - }, - { - "name": "php", - "url": "https://quay.io/repository/islamic-network/php", - "popularity": 30.0 - }, - { - "name": "fastq-screen", - "url": "https://quay.io/repository/biocontainers/fastq-screen", - "popularity": 13.0 - }, - { - "name": "exporter-merger", - "url": "https://quay.io/repository/jkreileder/exporter-merger", - "popularity": 3.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 315 - }, - { - "eXtensible HyperText Markup Language": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "intel/language-translation", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/intel/language-translation", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "intel/language-modeling", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 - }, - { - "name": "httpd-24-centos7", - "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 - }, - { - "name": "blackbox-exporter", - "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 - }, - { - "name": "pushgateway", - "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 - }, - { - "name": "gateway", - "url": "https://quay.io/repository/bluecat/gateway", - "popularity": 20583.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 316 - }, - { - "Extensible Markup Language": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "intel/language-translation", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/intel/language-translation", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "intel/language-modeling", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 - }, - { - "name": "httpd-24-centos7", - "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 - }, - { - "name": "blackbox-exporter", - "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 - }, - { - "name": "pushgateway", - "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 - }, - { - "name": "gateway", - "url": "https://quay.io/repository/bluecat/gateway", - "popularity": 20583.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 317 - }, - { - "Extensible Markup Language": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "intel/language-translation", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/intel/language-translation", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "intel/language-modeling", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 - }, - { - "name": "httpd-24-centos7", - "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 - }, - { - "name": "blackbox-exporter", - "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 - }, - { - "name": "pushgateway", - "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 - }, - { - "name": "gateway", - "url": "https://quay.io/repository/bluecat/gateway", - "popularity": 20583.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 318 - }, - { - "Extensible Stylesheet Language": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "intel/language-translation", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/intel/language-translation", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "intel/language-modeling", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 - }, - { - "name": "httpd-24-centos7", - "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 - }, - { - "name": "blackbox-exporter", - "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 - }, - { - "name": "pushgateway", - "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 - }, - { - "name": "gateway", - "url": "https://quay.io/repository/bluecat/gateway", - "popularity": 20583.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 319 - }, - { - "Extensible Stylesheet Language Transformations": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "intel/language-translation", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/intel/language-translation", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "intel/language-modeling", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 - }, - { - "name": "httpd-24-centos7", - "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 - }, - { - "name": "blackbox-exporter", - "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 - }, - { - "name": "pushgateway", - "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 - }, - { - "name": "gateway", - "url": "https://quay.io/repository/bluecat/gateway", - "popularity": 20583.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 320 - }, - { - "FOCUS": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [ - { - "name": "focus", - "url": "https://quay.io/repository/biocontainers/focus", - "popularity": 0.0 - } - ], - "quay_top_images": [ - { - "name": "bioconductor-affyio", - "url": "https://quay.io/repository/biocontainers/bioconductor-affyio", - "popularity": 720.0 - }, - { - "name": "sogo", - "url": "https://quay.io/repository/sheogorath/sogo", - "popularity": 4.0 - }, - { - "name": "uptime-kuma", - "url": "https://quay.io/repository/k3rnel-pan1c/uptime-kuma", - "popularity": 160.0 - }, - { - "name": "web-archives", - "url": "https://quay.io/repository/glamworkbench/web-archives", - "popularity": 4.0 - }, - { - "name": "anu-archives", - "url": "https://quay.io/repository/glamworkbench/anu-archives", - "popularity": 2.0 - } - ] - }, - { - "operators": [ - { - "package_id": "0c44b6e2-521b-4485-9d14-fd8f01ea6a4d", - "name": "knative-operator", - "normalized_name": "knative-operator", - "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", - "stars": 12, - "display_name": "Knative Operator", - "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", - "version": "1.6.0", - "deprecated": false, - "signed": false, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1626134400, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/knative/operator", - "container_images": [] - } - ] - } - ], - "entity_type": 9, - "entity_id": 321 - }, - { - "Fortran": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [ - { - "name": "fortran", - "url": "https://quay.io/repository/eriktrent/fortran", - "popularity": 0.0 - } - ], - "quay_top_images": [ - { - "name": "fortran", - "url": "https://quay.io/repository/eriktrent/fortran", - "popularity": 0.0 - }, - { - "name": "centos7-gcc", - "url": "https://quay.io/repository/horvathd/centos7-gcc", - "popularity": 0.0 + "name": "gawk", + "url": "https://quay.io/repository/biocontainers/gawk", + "popularity": 20761.0 } ] }, @@ -27903,349 +25038,41 @@ } ], "entity_type": 9, - "entity_id": 322 + "entity_id": 311 }, { - "Go": [ + "Data Language Interface": [ { "dockerhub_exact_images": [], "dockerhub_top_images": [] }, { "quay_exact_images": [], - "quay_top_images": [] - }, - { - "operators": [ - { - "package_id": "b134bee3-539b-4fe6-bc24-4aa7e3e1f11c", - "name": "postgresql-operator-dev4devs-com", - "normalized_name": "postgresql-operator-dev4devs-com", - "logo_image_id": "2a4da4ce-b519-46af-bb1c-d845e5d9a772", - "stars": 0, - "display_name": "PostgreSQL Operator by Dev4Ddevs.com", - "description": "Operator in Go developed using the Operator Framework to package, install, configure and manage a PostgreSQL database. This project includes backup feature.", - "version": "0.1.1", - "deprecated": false, - "signed": false, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1567929600, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/dev4devs-com/postgresql-operator", - "container_images": [ - "quay.io/dev4devs-com/postgresql-operator:0.1.1" - ] - }, - { - "package_id": "bb525733-deee-4431-9b51-4897c8d6d21b", - "name": "redis-operator", - "normalized_name": "redis-operator", - "logo_image_id": "60503f77-253d-4491-adff-e6e55c547ef7", - "stars": 9, - "display_name": "Redis Operator", - "description": "A Golang based redis operator that will make/oversee Redis standalone/cluster mode setup on top of the Kubernetes.", - "version": "0.11.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1657396835, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/ot-container-kit/redis-operator", - "container_images": [ - "quay.io/opstree/redis-operator:v0.11.0" - ] - }, - { - "package_id": "146e5627-361e-4c23-97d5-9cbe4febba81", - "name": "logging-operator", - "normalized_name": "logging-operator", - "logo_image_id": "0fb27181-3404-4379-a8fc-7ebdbf801340", - "stars": 3, - "display_name": "Logging Operator", - "description": "A golang-based operator to create and manage EFK (Elasticsearch, Fluentd, and Kibana) stack on Kubernetes.", - "version": "0.3.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1657182636, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/ot-container-kit/logging-operator", - "container_images": [ - "quay.io/opstree/logging-operator:v0.3.0" - ] - }, - { - "package_id": "44ad7306-e2e9-46ad-ba77-75d9d394fa3d", - "name": "external-secrets-operator", - "normalized_name": "external-secrets-operator", - "logo_image_id": "3e9f62d2-6760-4599-a686-026510e964cf", - "stars": 0, - "display_name": "External Secrets Operator", - "description": "Operator to configure external-secrets helm-chart based operator", - "version": "0.5.8", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 25, - "high": 11, - "medium": 52, - "unknown": 5, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1637539200, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/external-secrets/external-secrets-helm-operator", - "container_images": [] - }, - { - "package_id": "3fc60ded-1f08-4f56-940c-cedac69b6d75", - "name": "intel-device-plugins-operator", - "normalized_name": "intel-device-plugins-operator", - "logo_image_id": "ba8bd566-6f5c-44b0-bf23-a6d7f5f5605b", - "stars": 0, - "display_name": "Intel Device Plugins Operator", - "description": "This operator is a Kubernetes custom controller whose goal is to serve the installation and lifecycle management of Intel device plugins for Kubernetes.", - "version": "0.24.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1653550238, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/intel/intel-device-plugins-for-kubernetes", - "container_images": [] - }, - { - "package_id": "4ee2dcf6-71a1-483e-92da-9a73558e5a59", - "name": "mongodb-operator", - "normalized_name": "mongodb-operator", - "logo_image_id": "6caecf02-bf01-4f32-bcb5-c585ea2fdd80", - "stars": 0, - "display_name": "MongoDB Operator", - "description": "A golang based operator to create and manage MongoDB standalone setup and cluster setup", - "version": "0.3.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 0, - "high": 0, - "medium": 0, - "unknown": 1, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1649241035, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/ot-container-kit/mongodb-operator", - "container_images": [ - "quay.io/opstree/mongodb-operator:v0.3.0" - ] - }, - { - "package_id": "ef099afc-17ab-47a3-b7d3-1e2eed1700ed", - "name": "silicom-sts-operator", - "normalized_name": "silicom-sts-operator", - "logo_image_id": "74b45744-5c17-4159-9133-76a8ac399659", - "stars": 0, - "display_name": "silicom-sts-operator", - "description": "This Operator is a Kubernetes custom controller whose goal is to serve the installation and lifecycle management of Silicom STS device plugins for Kubernetes.", - "version": "0.0.1", - "deprecated": false, - "signed": false, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1637609425, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "github.com/silicomdk/sts-operator", - "container_images": [ - "quay.io/silicom/sts-operator:v0.0.1" - ] - }, - { - "package_id": "9773a9a8-7d03-4e60-b59e-2f2e8d24b71b", - "name": "spark-gcp", - "normalized_name": "spark-gcp", - "logo_image_id": "4d0de698-1fa5-44a3-80dd-a9e46ce21749", - "stars": 0, - "display_name": "Spark Operator", - "description": "Apache Spark is a unified analytics engine for large-scale data processing.", - "version": "2.4.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 159, - "high": 94, - "medium": 144, - "unknown": 3, - "critical": 50 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1621525859, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/GoogleCloudPlatform/spark-on-k8s-operator", - "container_images": [] - } - ] - } - ], - "entity_type": 9, - "entity_id": 323 - }, - { - "GraphQL": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [ - { - "name": "graphql", - "url": "https://quay.io/repository/wasmoffload/graphql", - "popularity": 0.0 - } - ], "quay_top_images": [ { - "name": "model-graphql", - "url": "https://quay.io/repository/sisense/model-graphql", - "popularity": 1731.0 + "name": "zen-data-sorcerer", + "url": "https://quay.io/repository/opencloudio/zen-data-sorcerer", + "popularity": 225217.0 }, { - "name": "graphql-api", - "url": "https://quay.io/repository/stoplight/graphql-api", - "popularity": 3150.0 + "name": "metering-data-manager", + "url": "https://quay.io/repository/opencloudio/metering-data-manager", + "popularity": 212512.0 }, { - "name": "concourse-resource-github-list-repos", - "url": "https://quay.io/repository/coralogix/concourse-resource-github-list-repos", - "popularity": 55307.0 + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 29176747.0 }, { - "name": "hasura-graphql-engine", - "url": "https://quay.io/repository/ivanch77/hasura-graphql-engine", - "popularity": 338.0 + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5878721.0 }, { - "name": "hasura-graphql-engine", - "url": "https://quay.io/repository/eskorn/hasura-graphql-engine", - "popularity": 338.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 411336.0 } ] }, @@ -28254,95 +25081,21 @@ } ], "entity_type": 9, - "entity_id": 324 + "entity_id": 312 }, { - "Groovy": [ + "Delphi": [ { - "dockerhub_exact_images": [ - { - "name": "groovy", - "Official image": true, - "Verified Publisher": false, - "Description": "", - "star_count": 130, - "Docker_Url": "https://hub.docker.com/_/groovy", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ], - "dockerhub_top_images": [ - { - "name": "groovy", - "Official image": true, - "Verified Publisher": false, - "Description": "", - "star_count": 130, - "Docker_Url": "https://hub.docker.com/_/groovy", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] + "dockerhub_exact_images": [], + "dockerhub_top_images": [] }, { - "quay_exact_images": [ - { - "name": "groovy", - "url": "https://quay.io/repository/official-images/groovy", - "popularity": 0.0 - }, - { - "name": "groovy", - "url": "https://quay.io/repository/swsmirror/groovy", - "popularity": 0.0 - }, - { - "name": "groovy", - "url": "https://quay.io/repository/dockerlibrary/groovy", - "popularity": 0.0 - } - ], + "quay_exact_images": [], "quay_top_images": [ { - "name": "groovy", - "url": "https://quay.io/repository/official-images/groovy", - "popularity": 0.0 - }, - { - "name": "groovy", - "url": "https://quay.io/repository/swsmirror/groovy", - "popularity": 0.0 - }, - { - "name": "defectdojo-client", - "url": "https://quay.io/repository/sdase/defectdojo-client", - "popularity": 5823.0 - }, - { - "name": "groovy", - "url": "https://quay.io/repository/dockerlibrary/groovy", - "popularity": 0.0 - }, - { - "name": "ansible-groovy", - "url": "https://quay.io/repository/andrewrothstein/ansible-groovy", - "popularity": 0.0 + "name": "delphi-council-is", + "url": "https://quay.io/repository/klenkes74/delphi-council-is", + "popularity": 1881.0 } ] }, @@ -28351,10 +25104,10 @@ } ], "entity_type": 9, - "entity_id": 325 + "entity_id": 313 }, { - "HiveQL": [ + "Easytrieve": [ { "dockerhub_exact_images": [], "dockerhub_top_images": [] @@ -28368,78 +25121,47 @@ } ], "entity_type": 9, - "entity_id": 326 + "entity_id": 314 }, { - "Hypertext Markup Language": [ + "Expect": [ { "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "intel/language-translation", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/intel/language-translation", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "intel/language-modeling", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] + "dockerhub_top_images": [] }, { - "quay_exact_images": [], - "quay_top_images": [ + "quay_exact_images": [ { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 - }, + "name": "expect", + "url": "https://quay.io/repository/baseimage/expect", + "popularity": 0.0 + } + ], + "quay_top_images": [ { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 + "popularity": 90209.0 }, { - "name": "pushgateway", - "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 + "name": "expect", + "url": "https://quay.io/repository/baseimage/expect", + "popularity": 0.0 }, { - "name": "kafka-bridge", - "url": "https://quay.io/repository/strimzi/kafka-bridge", - "popularity": 14244.0 + "name": "roundcube", + "url": "https://quay.io/repository/instrumentisto/roundcube", + "popularity": 31.0 }, { - "name": "spicedb", - "url": "https://quay.io/repository/authzed/spicedb", - "popularity": 13555.0 + "name": "php", + "url": "https://quay.io/repository/islamic-network/php", + "popularity": 39.0 + }, + { + "name": "fastq-screen", + "url": "https://quay.io/repository/biocontainers/fastq-screen", + "popularity": 8.0 } ] }, @@ -28448,46 +25170,20 @@ } ], "entity_type": 9, - "entity_id": 327 + "entity_id": 315 }, { - "IBM High Level Assembler": [ + "eXtensible HyperText Markup Language": [ { "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "ibmcom/ibm-mq-operator", + "name": "intel/language-translation", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/ibm-apiconnect-operator", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "Docker_Url": "https://hub.docker.com/r/intel/language-translation", "OS": [ { "Class": "OS", @@ -28496,58 +25192,16 @@ "Versions": null, "Type": "linux", "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" } ] }, { - "name": "ibmcom/ibm-operator-catalog", + "name": "intel/language-modeling", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibm-semeru-runtimes", - "Official image": true, - "Verified Publisher": false, - "Description": "", - "star_count": 18, - "Docker_Url": "https://hub.docker.com/_/ibm-semeru-runtimes", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", "OS": [ { "Class": "OS", @@ -28556,30 +25210,6 @@ "Versions": null, "Type": "linux", "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" } ] } @@ -28589,29 +25219,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "ibm-crossplane-bedrock-shim-config", - "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5878721.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 265927.0 }, { - "name": "ibm-events-operator", - "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 90209.0 }, { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 30527.0 }, { - "name": "node-exporter", - "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "name": "gateway", + "url": "https://quay.io/repository/bluecat/gateway", + "popularity": 20568.0 } ] }, @@ -28620,20 +25250,20 @@ } ], "entity_type": 9, - "entity_id": 328 + "entity_id": 316 }, { - "IBM i Control Language": [ + "Extensible Markup Language": [ { "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "ibmcom/ibm-mq-operator", + "name": "intel/language-translation", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "Docker_Url": "https://hub.docker.com/r/intel/language-translation", "OS": [ { "Class": "OS", @@ -28642,58 +25272,16 @@ "Versions": null, "Type": "linux", "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" } ] }, { - "name": "ibmcom/ibm-operator-catalog", + "name": "intel/language-modeling", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibm-semeru-runtimes", - "Official image": true, - "Verified Publisher": false, - "Description": "", - "star_count": 18, - "Docker_Url": "https://hub.docker.com/_/ibm-semeru-runtimes", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", "OS": [ { "Class": "OS", @@ -28702,30 +25290,6 @@ "Versions": null, "Type": "linux", "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" } ] } @@ -28735,29 +25299,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "ibm-crossplane-bedrock-shim-config", - "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5878721.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 265927.0 }, { - "name": "ibm-events-operator", - "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 90209.0 }, { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 30527.0 }, { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "name": "gateway", + "url": "https://quay.io/repository/bluecat/gateway", + "popularity": 20568.0 } ] }, @@ -28766,54 +25330,20 @@ } ], "entity_type": 9, - "entity_id": 329 + "entity_id": 318 }, { - "IBM Informix-4GL": [ + "Extensible Stylesheet Language": [ { "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "ibmcom/ibm-operator-catalog", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 5, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/ibm-mq-operator", + "name": "intel/language-translation", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "Docker_Url": "https://hub.docker.com/r/intel/language-translation", "OS": [ { "Class": "OS", @@ -28822,24 +25352,16 @@ "Versions": null, "Type": "linux", "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" } ] }, { - "name": "ibmcom/ibm-apiconnect-operator", + "name": "intel/language-modeling", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", "OS": [ { "Class": "OS", @@ -28848,14 +25370,6 @@ "Versions": null, "Type": "linux", "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" } ] } @@ -28865,29 +25379,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "ibm-crossplane-bedrock-shim-config", - "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5878721.0 }, { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 265927.0 }, { - "name": "ibm-events-operator", - "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 90209.0 }, { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 30527.0 }, { - "name": "ibm-common-service-catalog", - "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "name": "gateway", + "url": "https://quay.io/repository/bluecat/gateway", + "popularity": 20568.0 } ] }, @@ -28896,141 +25410,24 @@ } ], "entity_type": 9, - "entity_id": 330 + "entity_id": 319 }, { - "Java": [ + "Extensible Stylesheet Language Transformations": [ { - "dockerhub_exact_images": [ - { - "name": "java", - "Official image": true, - "Verified Publisher": false, - "Description": "", - "star_count": 1976, - "Docker_Url": "https://hub.docker.com/_/java", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "bitnami/java", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 10, - "Docker_Url": "https://hub.docker.com/r/bitnami/java", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "circleci/java", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/circleci/java", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ], + "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "java", - "Official image": true, - "Verified Publisher": false, - "Description": "", - "star_count": 1976, - "Docker_Url": "https://hub.docker.com/_/java", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "bitnami/java", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 10, - "Docker_Url": "https://hub.docker.com/r/bitnami/java", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "circleci/java", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/circleci/java", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "kasmweb/java-dev", + "name": "intel/language-translation", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/kasmweb/java-dev", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, + "Docker_Url": "https://hub.docker.com/r/intel/language-translation", + "OS": [ { "Class": "OS", - "Architecture": "arm64", + "Architecture": "amd64", "Variants": null, "Versions": null, "Type": "linux", @@ -29039,12 +25436,12 @@ ] }, { - "name": "appdynamics/java-agent", + "name": "intel/language-modeling", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 6, - "Docker_Url": "https://hub.docker.com/r/appdynamics/java-agent", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", "OS": [ { "Class": "OS", @@ -29059,74 +25456,219 @@ ] }, { - "quay_exact_images": [ + "quay_exact_images": [], + "quay_top_images": [ { - "name": "java", - "url": "https://quay.io/repository/tamr/java", - "popularity": 480.0 + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5878721.0 }, { - "name": "java", - "url": "https://quay.io/repository/enxadahost/java", - "popularity": 21708.0 + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 265927.0 }, { - "name": "java", - "url": "https://quay.io/repository/reishost/java", - "popularity": 4728.0 + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 90209.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 30527.0 + }, + { + "name": "gateway", + "url": "https://quay.io/repository/bluecat/gateway", + "popularity": 20568.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 320 + }, + { + "FOCUS": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "focus", + "url": "https://quay.io/repository/biocontainers/focus", + "popularity": 0.0 } ], "quay_top_images": [ { - "name": "java", - "url": "https://quay.io/repository/enxadahost/java", - "popularity": 21708.0 + "name": "bioconductor-affyio", + "url": "https://quay.io/repository/biocontainers/bioconductor-affyio", + "popularity": 504.0 }, { - "name": "docker-java-swiss-knife", - "url": "https://quay.io/repository/scentbird/docker-java-swiss-knife", - "popularity": 7657.0 + "name": "sogo", + "url": "https://quay.io/repository/sheogorath/sogo", + "popularity": 4.0 }, { - "name": "jkube-java", - "url": "https://quay.io/repository/jkube/jkube-java", - "popularity": 4537.0 + "name": "uptime-kuma", + "url": "https://quay.io/repository/k3rnel-pan1c/uptime-kuma", + "popularity": 333.0 }, { - "name": "java", - "url": "https://quay.io/repository/reishost/java", - "popularity": 4728.0 + "name": "web-archives", + "url": "https://quay.io/repository/glamworkbench/web-archives", + "popularity": 2.0 }, { - "name": "ubi-quarkus-native-s2i", - "url": "https://quay.io/repository/quarkus/ubi-quarkus-native-s2i", - "popularity": 35973.0 + "name": "anu-archives", + "url": "https://quay.io/repository/glamworkbench/anu-archives", + "popularity": 2.0 } ] }, { "operators": [ { - "package_id": "92b17f5c-3196-41bc-bdeb-291700c2c8c1", - "name": "wildfly", - "normalized_name": "wildfly", - "logo_image_id": "8188073c-d86d-460a-9662-3bfa7e3d313f", - "stars": 1, - "display_name": "WildFly", - "description": "Operator that deploys and manages Java applications running on WildFly.", - "version": "0.5.3", + "package_id": "0c44b6e2-521b-4485-9d14-fd8f01ea6a4d", + "name": "knative-operator", + "normalized_name": "knative-operator", + "logo_image_id": "cc6f5efb-0ead-4689-b96a-49d5d1b7f2f6", + "stars": 12, + "display_name": "Knative Operator", + "description": "Knative components build on top of Kubernetes, abstracting away the complex details and\nenabling developers to focus on what matters. Built by codifying the best practices\nshared by successful real-world implementations, Knative solves the \"boring but difficult\"\nparts of deploying and managing cloud native services so you don't have to.", + "version": "1.6.0", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1626134400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/knative/operator", + "container_images": [] + } + ] + } + ], + "entity_type": 9, + "entity_id": 321 + }, + { + "Fortran": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "fortran", + "url": "https://quay.io/repository/eriktrent/fortran", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "fortran", + "url": "https://quay.io/repository/eriktrent/fortran", + "popularity": 0.0 + }, + { + "name": "centos7-gcc", + "url": "https://quay.io/repository/horvathd/centos7-gcc", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 322 + }, + { + "Go": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [ + { + "package_id": "b134bee3-539b-4fe6-bc24-4aa7e3e1f11c", + "name": "postgresql-operator-dev4devs-com", + "normalized_name": "postgresql-operator-dev4devs-com", + "logo_image_id": "2a4da4ce-b519-46af-bb1c-d845e5d9a772", + "stars": 0, + "display_name": "PostgreSQL Operator by Dev4Ddevs.com", + "description": "Operator in Go developed using the Operator Framework to package, install, configure and manage a PostgreSQL database. This project includes backup feature.", + "version": "0.1.1", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1567929600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/dev4devs-com/postgresql-operator", + "container_images": [ + "quay.io/dev4devs-com/postgresql-operator:0.1.1" + ] + }, + { + "package_id": "bb525733-deee-4431-9b51-4897c8d6d21b", + "name": "redis-operator", + "normalized_name": "redis-operator", + "logo_image_id": "60503f77-253d-4491-adff-e6e55c547ef7", + "stars": 9, + "display_name": "Redis Operator", + "description": "A Golang based redis operator that will make/oversee Redis standalone/cluster mode setup on top of the Kubernetes.", + "version": "0.11.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 25, - "high": 4, - "medium": 45, - "unknown": 1, + "low": 0, + "high": 0, + "medium": 0, + "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1646726400, + "ts": 1657396835, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -29139,32 +25681,32 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/wildfly/wildfly-operator", + "git_repos": "https://github.com/ot-container-kit/redis-operator", "container_images": [ - "quay.io/wildfly/wildfly-operator:0.5.3" + "quay.io/opstree/redis-operator:v0.11.0" ] }, { - "package_id": "e1d953c6-0d94-4f74-b053-dfc343b8f64b", - "name": "atlasmap-operator", - "normalized_name": "atlasmap-operator", - "logo_image_id": "146447f0-73b1-425d-957c-52033e4ba4a9", - "stars": 1, - "display_name": "AtlasMap Operator", - "description": "AtlasMap is a data mapping solution with an interactive web based user interface, that simplifies configuring integrations between Java, XML, and JSON data sources", - "version": "0.4.1", + "package_id": "146e5627-361e-4c23-97d5-9cbe4febba81", + "name": "logging-operator", + "normalized_name": "logging-operator", + "logo_image_id": "0fb27181-3404-4379-a8fc-7ebdbf801340", + "stars": 3, + "display_name": "Logging Operator", + "description": "A golang-based operator to create and manage EFK (Elasticsearch, Fluentd, and Kibana) stack on Kubernetes.", + "version": "0.3.0", "deprecated": false, "signed": false, "security_report_summary": { "low": 0, "high": 0, "medium": 0, - "unknown": 1, + "unknown": 0, "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1631338230, + "ts": 1657182636, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -29177,32 +25719,68 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/atlasmap/atlasmap-operator", + "git_repos": "https://github.com/ot-container-kit/logging-operator", "container_images": [ - "quay.io/atlasmap/atlasmap-operator:0.4.1" + "quay.io/opstree/logging-operator:v0.3.0" ] }, { - "package_id": "44e1ad69-0eea-4bcb-b796-2216452f99c7", - "name": "appsody-operator", - "normalized_name": "appsody-operator", - "logo_image_id": "a71aac4a-90dc-41fb-8899-af9c772c7261", + "package_id": "44ad7306-e2e9-46ad-ba77-75d9d394fa3d", + "name": "external-secrets-operator", + "normalized_name": "external-secrets-operator", + "logo_image_id": "3e9f62d2-6760-4599-a686-026510e964cf", "stars": 0, - "display_name": "Appsody Operator", - "description": "Deploys Appsody based applications", - "version": "0.6.0", + "display_name": "External Secrets Operator", + "description": "Operator to configure external-secrets helm-chart based operator", + "version": "0.5.8", "deprecated": false, "signed": false, "security_report_summary": { - "low": 64, - "high": 14, - "medium": 165, + "low": 25, + "high": 11, + "medium": 52, + "unknown": 5, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1637539200, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/external-secrets/external-secrets-helm-operator", + "container_images": [] + }, + { + "package_id": "3fc60ded-1f08-4f56-940c-cedac69b6d75", + "name": "intel-device-plugins-operator", + "normalized_name": "intel-device-plugins-operator", + "logo_image_id": "ba8bd566-6f5c-44b0-bf23-a6d7f5f5605b", + "stars": 0, + "display_name": "Intel Device Plugins Operator", + "description": "This operator is a Kubernetes custom controller whose goal is to serve the installation and lifecycle management of Intel device plugins for Kubernetes.", + "version": "0.24.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, "unknown": 0, - "critical": 3 + "critical": 0 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1590051600, + "ts": 1653550238, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -29215,127 +25793,285 @@ "verified_publisher": false, "organization_display_name": "Operator Framework" }, - "git_repos": "https://github.com/appsody/appsody-operator", + "git_repos": "https://github.com/intel/intel-device-plugins-for-kubernetes", + "container_images": [] + }, + { + "package_id": "4ee2dcf6-71a1-483e-92da-9a73558e5a59", + "name": "mongodb-operator", + "normalized_name": "mongodb-operator", + "logo_image_id": "6caecf02-bf01-4f32-bcb5-c585ea2fdd80", + "stars": 0, + "display_name": "MongoDB Operator", + "description": "A golang based operator to create and manage MongoDB standalone setup and cluster setup", + "version": "0.3.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 0, + "high": 0, + "medium": 0, + "unknown": 1, + "critical": 0 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1649241035, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/ot-container-kit/mongodb-operator", + "container_images": [ + "quay.io/opstree/mongodb-operator:v0.3.0" + ] + }, + { + "package_id": "ef099afc-17ab-47a3-b7d3-1e2eed1700ed", + "name": "silicom-sts-operator", + "normalized_name": "silicom-sts-operator", + "logo_image_id": "74b45744-5c17-4159-9133-76a8ac399659", + "stars": 0, + "display_name": "silicom-sts-operator", + "description": "This Operator is a Kubernetes custom controller whose goal is to serve the installation and lifecycle management of Silicom STS device plugins for Kubernetes.", + "version": "0.0.1", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1637609425, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "github.com/silicomdk/sts-operator", + "container_images": [ + "quay.io/silicom/sts-operator:v0.0.1" + ] + }, + { + "package_id": "9773a9a8-7d03-4e60-b59e-2f2e8d24b71b", + "name": "spark-gcp", + "normalized_name": "spark-gcp", + "logo_image_id": "4d0de698-1fa5-44a3-80dd-a9e46ce21749", + "stars": 0, + "display_name": "Spark Operator", + "description": "Apache Spark is a unified analytics engine for large-scale data processing.", + "version": "2.4.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 159, + "high": 94, + "medium": 144, + "unknown": 3, + "critical": 50 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1621525859, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/GoogleCloudPlatform/spark-on-k8s-operator", "container_images": [] + } + ] + } + ], + "entity_type": 9, + "entity_id": 323 + }, + { + "GraphQL": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [ + { + "name": "graphql", + "url": "https://quay.io/repository/wasmoffload/graphql", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "model-graphql", + "url": "https://quay.io/repository/sisense/model-graphql", + "popularity": 1927.0 + }, + { + "name": "graphql-api", + "url": "https://quay.io/repository/stoplight/graphql-api", + "popularity": 2874.0 + }, + { + "name": "concourse-resource-github-list-repos", + "url": "https://quay.io/repository/coralogix/concourse-resource-github-list-repos", + "popularity": 55297.0 + }, + { + "name": "hasura-graphql-engine", + "url": "https://quay.io/repository/ivanch77/hasura-graphql-engine", + "popularity": 338.0 + }, + { + "name": "hasura-graphql-engine", + "url": "https://quay.io/repository/eskorn/hasura-graphql-engine", + "popularity": 338.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 324 + }, + { + "Groovy": [ + { + "dockerhub_exact_images": [ + { + "name": "groovy", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 130, + "Docker_Url": "https://hub.docker.com/_/groovy", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ], + "dockerhub_top_images": [ + { + "name": "groovy", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 130, + "Docker_Url": "https://hub.docker.com/_/groovy", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [ + { + "name": "groovy", + "url": "https://quay.io/repository/official-images/groovy", + "popularity": 0.0 }, { - "package_id": "da81317c-3db6-42a6-9a03-817906a6e4a4", - "name": "cryostat-operator", - "normalized_name": "cryostat-operator", - "logo_image_id": "72db0559-b276-4638-b265-05c51cbaebea", - "stars": 0, - "display_name": "Cryostat Operator", - "description": "JVM monitoring and profiling tool", - "version": "2.1.1", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 23, - "high": 0, - "medium": 33, - "unknown": 1, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1655164800, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "github.com/cryostatio/cryostat-operator", - "container_images": [ - "quay.io/cryostat/cryostat-operator:2.1.1" - ] + "name": "groovy", + "url": "https://quay.io/repository/swsmirror/groovy", + "popularity": 0.0 }, { - "package_id": "977ddfd9-16a0-42c2-8f76-024c1cf6ade5", - "name": "open-liberty", - "normalized_name": "open-liberty", - "logo_image_id": "207d05c6-2e47-411a-bf11-cc5f919a596b", - "stars": 0, - "display_name": "Open Liberty Operator", - "description": "Deploy and manage applications running on Open Liberty", - "version": "0.7.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 43, - "high": 5, - "medium": 62, - "unknown": 0, - "critical": 3 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1595408400, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/OpenLiberty/open-liberty-operator", - "container_images": [] + "name": "groovy", + "url": "https://quay.io/repository/dockerlibrary/groovy", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "groovy", + "url": "https://quay.io/repository/official-images/groovy", + "popularity": 0.0 }, { - "package_id": "a1169957-48ac-4713-9c80-f6f50e53cfd8", - "name": "runtime-component-operator", - "normalized_name": "runtime-component-operator", - "logo_image_id": "dcafd1cd-0f24-4c2b-8ff1-79e65bcd8070", - "stars": 0, - "display_name": "Runtime Component Operator", - "description": "Deploys any runtime component with dynamic and auto-tuning configuration", - "version": "0.7.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 43, - "high": 5, - "medium": 62, - "unknown": 0, - "critical": 3 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1594890000, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/application-stacks/runtime-component-operator", - "container_images": [] + "name": "groovy", + "url": "https://quay.io/repository/swsmirror/groovy", + "popularity": 0.0 + }, + { + "name": "defectdojo-client", + "url": "https://quay.io/repository/sdase/defectdojo-client", + "popularity": 5941.0 + }, + { + "name": "groovy", + "url": "https://quay.io/repository/dockerlibrary/groovy", + "popularity": 0.0 + }, + { + "name": "ansible-groovy", + "url": "https://quay.io/repository/andrewrothstein/ansible-groovy", + "popularity": 0.0 } ] + }, + { + "operators": [] } ], "entity_type": 9, - "entity_id": 331 + "entity_id": 325 }, { - "Extensible Stylesheet Language": [ + "HiveQL": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 326 + }, + { + "Hypertext Markup Language": [ { "dockerhub_exact_images": [], "dockerhub_top_images": [ @@ -29383,27 +26119,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 - }, - { - "name": "httpd-24-centos7", - "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 + "popularity": 5878721.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 + "popularity": 90209.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 + "popularity": 30527.0 }, { - "name": "gateway", - "url": "https://quay.io/repository/bluecat/gateway", - "popularity": 20583.0 + "name": "kafka-bridge", + "url": "https://quay.io/repository/strimzi/kafka-bridge", + "popularity": 14164.0 + }, + { + "name": "spicedb", + "url": "https://quay.io/repository/authzed/spicedb", + "popularity": 14285.0 } ] }, @@ -29412,20 +26148,20 @@ } ], "entity_type": 9, - "entity_id": 332 + "entity_id": 327 }, { - "Java Enterprise Edition": [ + "IBM High Level Assembler": [ { "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "rancher/enterprise", + "name": "ibmcom/ibm-mq-operator", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 3, - "Docker_Url": "https://hub.docker.com/r/rancher/enterprise", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ { "Class": "OS", @@ -29434,20 +26170,10 @@ "Versions": null, "Type": "linux", "Subtype": "" - } - ] - }, - { - "name": "circleci/java", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/circleci/java", - "OS": [ + }, { "Class": "OS", - "Architecture": "amd64", + "Architecture": "s390x", "Variants": null, "Versions": null, "Type": "linux", @@ -29456,12 +26182,12 @@ ] }, { - "name": "bitnami/java", + "name": "ibmcom/ibm-operator-catalog", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 10, - "Docker_Url": "https://hub.docker.com/r/bitnami/java", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ { "Class": "OS", @@ -29470,16 +26196,32 @@ "Versions": null, "Type": "linux", "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" } ] }, { - "name": "java", + "name": "ibm-semeru-runtimes", "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 1976, - "Docker_Url": "https://hub.docker.com/_/java", + "star_count": 19, + "Docker_Url": "https://hub.docker.com/_/ibm-semeru-runtimes", "OS": [ { "Class": "OS", @@ -29488,20 +26230,26 @@ "Versions": null, "Type": "linux", "Subtype": "" - } - ] - }, - { - "name": "grafana/enterprise-metrics", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-metrics", - "OS": [ + }, { "Class": "OS", - "Architecture": "amd64", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", "Variants": null, "Versions": null, "Type": "linux", @@ -29515,29 +26263,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "mongodb-enterprise-database", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", - "popularity": 101454.0 + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 468518.0 }, { - "name": "mongodb-enterprise-ops-manager", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", - "popularity": 86254.0 + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 526926.0 }, { - "name": "mongodb-enterprise-operator", - "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 148414.0 + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 368277.0 }, { - "name": "java", - "url": "https://quay.io/repository/enxadahost/java", - "popularity": 21708.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 411336.0 }, { - "name": "fujitsu-enterprise-postgres-14-server", - "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 29981.0 + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 29176747.0 } ] }, @@ -29546,20 +26294,20 @@ } ], "entity_type": 9, - "entity_id": 333 + "entity_id": 328 }, { - "Java Standard Edition": [ + "IBM i Control Language": [ { "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "java", - "Official image": true, - "Verified Publisher": false, + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, "Description": "", - "star_count": 1976, - "Docker_Url": "https://hub.docker.com/_/java", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", "OS": [ { "Class": "OS", @@ -29568,20 +26316,10 @@ "Versions": null, "Type": "linux", "Subtype": "" - } - ] - }, - { - "name": "circleci/java", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/circleci/java", - "OS": [ + }, { "Class": "OS", - "Architecture": "amd64", + "Architecture": "s390x", "Variants": null, "Versions": null, "Type": "linux", @@ -29590,12 +26328,12 @@ ] }, { - "name": "bitnami/java", + "name": "ibmcom/ibm-operator-catalog", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 10, - "Docker_Url": "https://hub.docker.com/r/bitnami/java", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", "OS": [ { "Class": "OS", @@ -29604,20 +26342,18 @@ "Versions": null, "Type": "linux", "Subtype": "" - } - ] - }, - { - "name": "appdynamics/java-agent", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 6, - "Docker_Url": "https://hub.docker.com/r/appdynamics/java-agent", - "OS": [ + }, { "Class": "OS", - "Architecture": "amd64", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", "Variants": null, "Versions": null, "Type": "linux", @@ -29626,12 +26362,12 @@ ] }, { - "name": "kasmweb/java-dev", - "Official image": false, - "Verified Publisher": true, + "name": "ibm-semeru-runtimes", + "Official image": true, + "Verified Publisher": false, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/kasmweb/java-dev", + "star_count": 19, + "Docker_Url": "https://hub.docker.com/_/ibm-semeru-runtimes", "OS": [ { "Class": "OS", @@ -29644,6 +26380,22 @@ { "Class": "OS", "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", "Variants": null, "Versions": null, "Type": "linux", @@ -29657,72 +26409,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "standard-environment", - "url": "https://quay.io/repository/domino/standard-environment", - "popularity": 53544.0 - }, - { - "name": "java", - "url": "https://quay.io/repository/enxadahost/java", - "popularity": 21708.0 - }, - { - "name": "teleport", - "url": "https://quay.io/repository/gravitational/teleport", - "popularity": 145184.0 - }, - { - "name": "audit-syslog-service", - "url": "https://quay.io/repository/opencloudio/audit-syslog-service", - "popularity": 130197.0 - }, - { - "name": "ubi-quarkus-native-s2i", - "url": "https://quay.io/repository/quarkus/ubi-quarkus-native-s2i", - "popularity": 35973.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 334 - }, - { - "JavaServer Pages": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "custom-error-pages-amd64", - "url": "https://quay.io/repository/kubernetes-ingress-controller/custom-error-pages-amd64", - "popularity": 1846.0 + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 468518.0 }, { - "name": "memcached-exporter", - "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 82319.0 + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 526926.0 }, { - "name": "error-pages", - "url": "https://quay.io/repository/fivium/error-pages", - "popularity": 252.0 + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 368277.0 }, { - "name": "gitlab-pages", - "url": "https://quay.io/repository/gnome_infrastructure/gitlab-pages", - "popularity": 842.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 411336.0 }, { - "name": "javaserver", - "url": "https://quay.io/repository/ctrack/javaserver", - "popularity": 45.0 + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5878721.0 } ] }, @@ -29731,63 +26440,80 @@ } ], "entity_type": 9, - "entity_id": 335 + "entity_id": 329 }, { - "JavaServer Pages": [ + "IBM Informix-4GL": [ { "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "custom-error-pages-amd64", - "url": "https://quay.io/repository/kubernetes-ingress-controller/custom-error-pages-amd64", - "popularity": 1846.0 - }, - { - "name": "memcached-exporter", - "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 82319.0 - }, - { - "name": "error-pages", - "url": "https://quay.io/repository/fivium/error-pages", - "popularity": 252.0 - }, + "dockerhub_top_images": [ { - "name": "gitlab-pages", - "url": "https://quay.io/repository/gnome_infrastructure/gitlab-pages", - "popularity": 842.0 + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] }, { - "name": "javaserver", - "url": "https://quay.io/repository/ctrack/javaserver", - "popularity": 45.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 336 - }, - { - "JavaScript": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, { - "name": "docker/dev-environments-javascript", + "name": "ibmcom/ibm-apiconnect-operator", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 4, - "Docker_Url": "https://hub.docker.com/r/docker/dev-environments-javascript", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", "OS": [ { "Class": "OS", @@ -29799,7 +26525,7 @@ }, { "Class": "OS", - "Architecture": "arm64", + "Architecture": "s390x", "Variants": null, "Versions": null, "Type": "linux", @@ -29813,58 +26539,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "sandbox-javascript", - "url": "https://quay.io/repository/redsift/sandbox-javascript", - "popularity": 115728.0 + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 468518.0 }, { - "name": "invidious", - "url": "https://quay.io/repository/invidious/invidious", - "popularity": 36573.0 + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 526926.0 }, { - "name": "node", - "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/node", - "popularity": 0.0 + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 368277.0 }, { - "name": "ploigos-tool-javascript", - "url": "https://quay.io/repository/ploigos/ploigos-tool-javascript", - "popularity": 56.0 + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 411336.0 }, { - "name": "loftsh-javascript-flyway", - "url": "https://quay.io/repository/buildo/loftsh-javascript-flyway", - "popularity": 12.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 337 - }, - { - "JCL": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [ - { - "name": "jcl", - "url": "https://quay.io/repository/jclaret/jcl", - "popularity": 0.0 - } - ], - "quay_top_images": [ - { - "name": "jcl", - "url": "https://quay.io/repository/jclaret/jcl", - "popularity": 0.0 + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 204630.0 } ] }, @@ -29873,20 +26570,20 @@ } ], "entity_type": 9, - "entity_id": 338 + "entity_id": 330 }, { - "Job Information Language": [ + "Java Enterprise Edition": [ { "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "pachyderm/job-shim", + "name": "rancher/enterprise", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 3, - "Docker_Url": "https://hub.docker.com/r/pachyderm/job-shim", + "Docker_Url": "https://hub.docker.com/r/rancher/enterprise", "OS": [ { "Class": "OS", @@ -29899,12 +26596,12 @@ ] }, { - "name": "intel/language-modeling", + "name": "circleci/java", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/circleci/java", "OS": [ { "Class": "OS", @@ -29917,12 +26614,12 @@ ] }, { - "name": "intel/language-translation", + "name": "bitnami/java", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/intel/language-translation", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/bitnami/java", "OS": [ { "Class": "OS", @@ -29933,108 +26630,14 @@ "Subtype": "" } ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "node-exporter", - "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 - }, - { - "name": "cilium", - "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 - }, - { - "name": "kafka", - "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 883725.0 - }, - { - "name": "operator", - "url": "https://quay.io/repository/strimzi/operator", - "popularity": 403203.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 339 - }, - { - "JScript": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 340 - }, - { - "Lisp": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "lisp-10-ubi8", - "url": "https://quay.io/repository/containerlisp/lisp-10-ubi8", - "popularity": 337.0 - }, - { - "name": "ruby", - "url": "https://quay.io/repository/ibmz/ruby", - "popularity": 0.0 }, { - "name": "ruby", - "url": "https://quay.io/repository/ibm/ruby", - "popularity": 0.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 341 - }, - { - "Niakwa Programming Language": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "intel/language-translation", - "Official image": false, - "Verified Publisher": true, + "name": "java", + "Official image": true, + "Verified Publisher": false, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/intel/language-translation", + "star_count": 1976, + "Docker_Url": "https://hub.docker.com/_/java", "OS": [ { "Class": "OS", @@ -30047,12 +26650,12 @@ ] }, { - "name": "intel/language-modeling", + "name": "grafana/enterprise-metrics", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", + "Docker_Url": "https://hub.docker.com/r/grafana/enterprise-metrics", "OS": [ { "Class": "OS", @@ -30070,123 +26673,29 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 - }, - { - "name": "blackbox-exporter", - "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 - }, - { - "name": "pushgateway", - "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 - }, - { - "name": "spicedb", - "url": "https://quay.io/repository/authzed/spicedb", - "popularity": 13555.0 - }, - { - "name": "statsd-exporter", - "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8041.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 342 - }, - { - "Objective C": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "sogo", - "url": "https://quay.io/repository/sheogorath/sogo", - "popularity": 4.0 - }, - { - "name": "sonar-scanner-cli", - "url": "https://quay.io/repository/ibmz/sonar-scanner-cli", - "popularity": 0.0 + "name": "mongodb-enterprise-database", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", + "popularity": 99140.0 }, { - "name": "sonar-scanner-cli", - "url": "https://quay.io/repository/ibm/sonar-scanner-cli", - "popularity": 0.0 + "name": "mongodb-enterprise-ops-manager", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", + "popularity": 80188.0 }, { - "name": "contentwriter", - "url": "https://quay.io/repository/mackheath/contentwriter", - "popularity": 0.0 + "name": "mongodb-enterprise-operator", + "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", + "popularity": 104567.0 }, { - "name": "mumbaiescorts", - "url": "https://quay.io/repository/ankita44/mumbaiescorts", - "popularity": 0.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 343 - }, - { - "OpenEdge ABL": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "openedge", - "url": "https://quay.io/repository/g_querret/openedge", - "popularity": 0.0 + "name": "java", + "url": "https://quay.io/repository/enxadahost/java", + "popularity": 21441.0 }, { - "name": "openedge-appserver", - "url": "https://quay.io/repository/g_querret/openedge-appserver", - "popularity": 0.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 344 - }, - { - "Pascal": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "smeeclient", - "url": "https://quay.io/repository/schabrolles/smeeclient", - "popularity": 1278.0 + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -30195,62 +26704,20 @@ } ], "entity_type": 9, - "entity_id": 345 + "entity_id": 333 }, { - "Object Pascal": [ + "Java Standard Edition": [ { "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "minio", - "url": "https://quay.io/repository/minio/minio", - "popularity": 382812.0 - }, - { - "name": "postgresql-12-centos7", - "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 254930.0 - }, - { - "name": "postgresql-10-centos7", - "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 193426.0 - }, - { - "name": "postgresql-13-centos7", - "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 146710.0 - }, - { - "name": "cloud-native-postgresql", - "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20354.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 346 - }, - { - "Perl": [ - { - "dockerhub_exact_images": [ + "dockerhub_top_images": [ { - "name": "perl", + "name": "java", "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 424, - "Docker_Url": "https://hub.docker.com/_/perl", + "star_count": 1976, + "Docker_Url": "https://hub.docker.com/_/java", "OS": [ { "Class": "OS", @@ -30259,74 +26726,70 @@ "Versions": null, "Type": "linux", "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v5", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, + } + ] + }, + { + "name": "circleci/java", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/circleci/java", + "OS": [ { "Class": "OS", - "Architecture": "mips64le", + "Architecture": "amd64", "Variants": null, "Versions": null, "Type": "linux", "Subtype": "" - }, + } + ] + }, + { + "name": "bitnami/java", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/bitnami/java", + "OS": [ { "Class": "OS", - "Architecture": "ppc64le", + "Architecture": "amd64", "Variants": null, "Versions": null, "Type": "linux", "Subtype": "" - }, + } + ] + }, + { + "name": "appdynamics/java-agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/appdynamics/java-agent", + "OS": [ { "Class": "OS", - "Architecture": "s390x", + "Architecture": "amd64", "Variants": null, "Versions": null, "Type": "linux", "Subtype": "" } ] - } - ], - "dockerhub_top_images": [ + }, { - "name": "perl", - "Official image": true, - "Verified Publisher": false, + "name": "kasmweb/java-dev", + "Official image": false, + "Verified Publisher": true, "Description": "", - "star_count": 424, - "Docker_Url": "https://hub.docker.com/_/perl", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/java-dev", "OS": [ { "Class": "OS", @@ -30336,57 +26799,9 @@ "Type": "linux", "Subtype": "" }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v5", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, { "Class": "OS", "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "mips64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", "Variants": null, "Versions": null, "Type": "linux", @@ -30397,43 +26812,75 @@ ] }, { - "quay_exact_images": [ + "quay_exact_images": [], + "quay_top_images": [ { - "name": "perl", - "url": "https://quay.io/repository/biocontainers/perl", - "popularity": 448.0 + "name": "standard-environment", + "url": "https://quay.io/repository/domino/standard-environment", + "popularity": 52054.0 }, { - "name": "perl", - "url": "https://quay.io/repository/swsmirror/perl", - "popularity": 0.0 + "name": "java", + "url": "https://quay.io/repository/enxadahost/java", + "popularity": 21441.0 + }, + { + "name": "teleport", + "url": "https://quay.io/repository/gravitational/teleport", + "popularity": 137803.0 + }, + { + "name": "audit-syslog-service", + "url": "https://quay.io/repository/opencloudio/audit-syslog-service", + "popularity": 126512.0 + }, + { + "name": "ubi-quarkus-native-s2i", + "url": "https://quay.io/repository/quarkus/ubi-quarkus-native-s2i", + "popularity": 36193.0 } - ], + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 334 + }, + { + "JavaServer Pages": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], "quay_top_images": [ { - "name": "perl-530-centos7", - "url": "https://quay.io/repository/centos7/perl-530-centos7", - "popularity": 225577.0 + "name": "custom-error-pages-amd64", + "url": "https://quay.io/repository/kubernetes-ingress-controller/custom-error-pages-amd64", + "popularity": 2180.0 }, { - "name": "docker-perl-app-base", - "url": "https://quay.io/repository/wakaba/docker-perl-app-base", - "popularity": 345.0 + "name": "memcached-exporter", + "url": "https://quay.io/repository/prometheus/memcached-exporter", + "popularity": 79779.0 }, { - "name": "ci-perl", - "url": "https://quay.io/repository/travisci/ci-perl", - "popularity": 0.0 + "name": "error-pages", + "url": "https://quay.io/repository/fivium/error-pages", + "popularity": 286.0 }, { - "name": "perl", - "url": "https://quay.io/repository/biocontainers/perl", - "popularity": 448.0 + "name": "gitlab-pages", + "url": "https://quay.io/repository/gnome_infrastructure/gitlab-pages", + "popularity": 842.0 }, { - "name": "perl-test", - "url": "https://quay.io/repository/modellaachen/perl-test", - "popularity": 0.0 + "name": "javaserver", + "url": "https://quay.io/repository/ctrack/javaserver", + "popularity": 29.0 } ] }, @@ -30442,53 +26889,92 @@ } ], "entity_type": 9, - "entity_id": 347 + "entity_id": 335 }, { - "ActivePerl": [ + "JavaServer Pages": [ { "dockerhub_exact_images": [], "dockerhub_top_images": [] }, { "quay_exact_images": [], - "quay_top_images": [] + "quay_top_images": [ + { + "name": "custom-error-pages-amd64", + "url": "https://quay.io/repository/kubernetes-ingress-controller/custom-error-pages-amd64", + "popularity": 2180.0 + }, + { + "name": "memcached-exporter", + "url": "https://quay.io/repository/prometheus/memcached-exporter", + "popularity": 79779.0 + }, + { + "name": "error-pages", + "url": "https://quay.io/repository/fivium/error-pages", + "popularity": 286.0 + }, + { + "name": "gitlab-pages", + "url": "https://quay.io/repository/gnome_infrastructure/gitlab-pages", + "popularity": 842.0 + }, + { + "name": "javaserver", + "url": "https://quay.io/repository/ctrack/javaserver", + "popularity": 29.0 + } + ] }, { "operators": [] } ], "entity_type": 9, - "entity_id": 348 + "entity_id": 336 }, { - "Rex": [ + "JCL": [ { "dockerhub_exact_images": [], "dockerhub_top_images": [] }, { - "quay_exact_images": [], - "quay_top_images": [] + "quay_exact_images": [ + { + "name": "jcl", + "url": "https://quay.io/repository/jclaret/jcl", + "popularity": 0.0 + } + ], + "quay_top_images": [ + { + "name": "jcl", + "url": "https://quay.io/repository/jclaret/jcl", + "popularity": 0.0 + } + ] }, { "operators": [] } ], "entity_type": 9, - "entity_id": 349 + "entity_id": 338 }, { - "PHP": [ + "Job Information Language": [ { - "dockerhub_exact_images": [ + "dockerhub_exact_images": [], + "dockerhub_top_images": [ { - "name": "php", - "Official image": true, - "Verified Publisher": false, + "name": "pachyderm/job-shim", + "Official image": false, + "Verified Publisher": true, "Description": "", - "star_count": 6668, - "Docker_Url": "https://hub.docker.com/_/php", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/pachyderm/job-shim", "OS": [ { "Class": "OS", @@ -30497,64 +26983,16 @@ "Versions": null, "Type": "linux", "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" } ] }, { - "name": "circleci/php", + "name": "intel/language-modeling", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 35, - "Docker_Url": "https://hub.docker.com/r/circleci/php", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", "OS": [ { "Class": "OS", @@ -30567,12 +27005,12 @@ ] }, { - "name": "cimg/php", + "name": "intel/language-translation", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/cimg/php", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-translation", "OS": [ { "Class": "OS", @@ -30584,15 +27022,107 @@ } ] } - ], + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 29176747.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5878721.0 + }, + { + "name": "cilium", + "url": "https://quay.io/repository/cilium/cilium", + "popularity": 833568.0 + }, + { + "name": "kafka", + "url": "https://quay.io/repository/strimzi/kafka", + "popularity": 897952.0 + }, + { + "name": "operator", + "url": "https://quay.io/repository/strimzi/operator", + "popularity": 412719.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 339 + }, + { + "JScript": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 340 + }, + { + "Lisp": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "lisp-10-ubi8", + "url": "https://quay.io/repository/containerlisp/lisp-10-ubi8", + "popularity": 382.0 + }, + { + "name": "ruby", + "url": "https://quay.io/repository/ibmz/ruby", + "popularity": 0.0 + }, + { + "name": "ruby", + "url": "https://quay.io/repository/ibm/ruby", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 341 + }, + { + "Niakwa Programming Language": [ + { + "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "cimg/php", + "name": "intel/language-translation", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/cimg/php", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-translation", "OS": [ { "Class": "OS", @@ -30605,12 +27135,12 @@ ] }, { - "name": "circleci/php", + "name": "intel/language-modeling", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 35, - "Docker_Url": "https://hub.docker.com/r/circleci/php", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/intel/language-modeling", "OS": [ { "Class": "OS", @@ -30621,164 +27151,150 @@ "Subtype": "" } ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5878721.0 }, { - "name": "php", - "Official image": true, - "Verified Publisher": false, - "Description": "", - "star_count": 6668, - "Docker_Url": "https://hub.docker.com/_/php", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] + "name": "blackbox-exporter", + "url": "https://quay.io/repository/prometheus/blackbox-exporter", + "popularity": 90209.0 }, { - "name": "bitnami/php-fpm", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 150, - "Docker_Url": "https://hub.docker.com/r/bitnami/php-fpm", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 30527.0 }, { - "name": "php-zendserver", - "Official image": true, - "Verified Publisher": false, - "Description": "", - "star_count": 201, - "Docker_Url": "https://hub.docker.com/_/php-zendserver", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] + "name": "spicedb", + "url": "https://quay.io/repository/authzed/spicedb", + "popularity": 14285.0 + }, + { + "name": "gawk", + "url": "https://quay.io/repository/biocontainers/gawk", + "popularity": 20761.0 } ] }, { - "quay_exact_images": [ + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 342 + }, + { + "Objective C": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ { - "name": "php", - "url": "https://quay.io/repository/kissj/php", - "popularity": 8614.0 + "name": "sogo", + "url": "https://quay.io/repository/sheogorath/sogo", + "popularity": 4.0 }, { - "name": "php", - "url": "https://quay.io/repository/startx/php", - "popularity": 16380.0 + "name": "sonar-scanner-cli", + "url": "https://quay.io/repository/ibmz/sonar-scanner-cli", + "popularity": 0.0 }, { - "name": "php", - "url": "https://quay.io/repository/api-platform/php", - "popularity": 454.0 + "name": "sonar-scanner-cli", + "url": "https://quay.io/repository/ibm/sonar-scanner-cli", + "popularity": 0.0 }, { - "name": "php", - "url": "https://quay.io/repository/swsmirror/php", - "popularity": 339.0 + "name": "contentwriter", + "url": "https://quay.io/repository/mackheath/contentwriter", + "popularity": 0.0 }, { - "name": "php", - "url": "https://quay.io/repository/official-images/php", - "popularity": 101.0 + "name": "mumbaiescorts", + "url": "https://quay.io/repository/ankita44/mumbaiescorts", + "popularity": 0.0 } - ], + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 343 + }, + { + "OpenEdge ABL": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], "quay_top_images": [ { - "name": "php-73-centos7", - "url": "https://quay.io/repository/centos7/php-73-centos7", - "popularity": 215385.0 + "name": "openedge", + "url": "https://quay.io/repository/g_querret/openedge", + "popularity": 0.0 }, { - "name": "php", - "url": "https://quay.io/repository/kissj/php", - "popularity": 8614.0 + "name": "openedge-appserver", + "url": "https://quay.io/repository/g_querret/openedge-appserver", + "popularity": 0.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 344 + }, + { + "Object Pascal": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "minio", + "url": "https://quay.io/repository/minio/minio", + "popularity": 369342.0 }, { - "name": "php", - "url": "https://quay.io/repository/startx/php", - "popularity": 16380.0 + "name": "postgresql-12-centos7", + "url": "https://quay.io/repository/centos7/postgresql-12-centos7", + "popularity": 258719.0 }, { - "name": "php-fpm_exporter", - "url": "https://quay.io/repository/cuppett/php-fpm_exporter", - "popularity": 41803.0 + "name": "postgresql-10-centos7", + "url": "https://quay.io/repository/centos7/postgresql-10-centos7", + "popularity": 198257.0 }, { - "name": "runner-php", - "url": "https://quay.io/repository/startx/runner-php", - "popularity": 8113.0 + "name": "postgresql-13-centos7", + "url": "https://quay.io/repository/centos7/postgresql-13-centos7", + "popularity": 151149.0 + }, + { + "name": "kata-deploy", + "url": "https://quay.io/repository/kata-containers/kata-deploy", + "popularity": 21496.0 } ] }, @@ -30787,7 +27303,41 @@ } ], "entity_type": 9, - "entity_id": 350 + "entity_id": 346 + }, + { + "ActivePerl": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 348 + }, + { + "Rex": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 349 }, { "PL/I": [ @@ -30818,27 +27368,27 @@ { "name": "apicurio-registry-sql", "url": "https://quay.io/repository/apicurio/apicurio-registry-sql", - "popularity": 14608.0 + "popularity": 15182.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 245318.0 + "popularity": 250172.0 }, { "name": "mariadb-105-centos7", "url": "https://quay.io/repository/centos7/mariadb-105-centos7", - "popularity": 142292.0 + "popularity": 146865.0 }, { "name": "soketi", "url": "https://quay.io/repository/soketi/soketi", - "popularity": 31737.0 + "popularity": 37098.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17355.0 + "popularity": 17958.0 } ] }, @@ -30861,12 +27411,12 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 82319.0 + "popularity": 79779.0 }, { "name": "perl-proc-fork", @@ -31612,322 +28162,6 @@ "entity_type": 9, "entity_id": 353 }, - { - "Python": [ - { - "dockerhub_exact_images": [ - { - "name": "python", - "Official image": true, - "Verified Publisher": false, - "Description": "", - "star_count": 7699, - "Docker_Url": "https://hub.docker.com/_/python", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "circleci/python", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 51, - "Docker_Url": "https://hub.docker.com/r/circleci/python", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "bitnami/python", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 22, - "Docker_Url": "https://hub.docker.com/r/bitnami/python", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "cimg/python", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 5, - "Docker_Url": "https://hub.docker.com/r/cimg/python", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ], - "dockerhub_top_images": [ - { - "name": "python", - "Official image": true, - "Verified Publisher": false, - "Description": "", - "star_count": 7699, - "Docker_Url": "https://hub.docker.com/_/python", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "circleci/python", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 51, - "Docker_Url": "https://hub.docker.com/r/circleci/python", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "cimg/python", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 5, - "Docker_Url": "https://hub.docker.com/r/cimg/python", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "bitnami/python", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 22, - "Docker_Url": "https://hub.docker.com/r/bitnami/python", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [ - { - "name": "python", - "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/python", - "popularity": 0.0 - }, - { - "name": "python", - "url": "https://quay.io/repository/biocontainers/python", - "popularity": 4090.0 - }, - { - "name": "python", - "url": "https://quay.io/repository/cdis/python", - "popularity": 5246.0 - }, - { - "name": "python", - "url": "https://quay.io/repository/agari/python", - "popularity": 1939.0 - }, - { - "name": "python", - "url": "https://quay.io/repository/sctregistry/python", - "popularity": 1465.0 - }, - { - "name": "python", - "url": "https://quay.io/repository/mlrun/python", - "popularity": 1214.0 - } - ], - "quay_top_images": [ - { - "name": "python-27-centos7", - "url": "https://quay.io/repository/centos7/python-27-centos7", - "popularity": 202676.0 - }, - { - "name": "python-predictor-cpu", - "url": "https://quay.io/repository/cortexlabs/python-predictor-cpu", - "popularity": 4979.0 - }, - { - "name": "python-nginx", - "url": "https://quay.io/repository/cdis/python-nginx", - "popularity": 10155.0 - }, - { - "name": "python-predictor-gpu", - "url": "https://quay.io/repository/cortexlabs/python-predictor-gpu", - "popularity": 5165.0 - }, - { - "name": "python", - "url": "https://quay.io/repository/cdis/python", - "popularity": 5246.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 354 - }, { "R": [ { @@ -31948,19 +28182,19 @@ "stars": 18, "display_name": "Strimzi", "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", - "version": "0.29.0", + "version": "0.30.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 412, - "high": 38, - "medium": 473, - "unknown": 7, - "critical": 6 + "low": 277, + "high": 13, + "medium": 348, + "unknown": 5, + "critical": 4 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1652572867, + "ts": 1657929610, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -31979,8 +28213,6 @@ "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka", "quay.io/strimzi/kafka-bridge", "quay.io/strimzi/jmxtrans", "quay.io/strimzi/kaniko-executor", @@ -32702,7 +28934,7 @@ { "name": "kp-rpg-discord-bot", "url": "https://quay.io/repository/klenkes74/kp-rpg-discord-bot", - "popularity": 1706.0 + "popularity": 1711.0 } ] }, @@ -32713,368 +28945,6 @@ "entity_type": 9, "entity_id": 357 }, - { - "Ruby": [ - { - "dockerhub_exact_images": [ - { - "name": "ruby", - "Official image": true, - "Verified Publisher": false, - "Description": "", - "star_count": 2150, - "Docker_Url": "https://hub.docker.com/_/ruby", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "circleci/ruby", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 78, - "Docker_Url": "https://hub.docker.com/r/circleci/ruby", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "bitnami/ruby", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 21, - "Docker_Url": "https://hub.docker.com/r/bitnami/ruby", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "cimg/ruby", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 5, - "Docker_Url": "https://hub.docker.com/r/cimg/ruby", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "datadog/ruby", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/datadog/ruby", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } - ] - } - ], - "dockerhub_top_images": [ - { - "name": "datadog/ruby", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/datadog/ruby", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "", - "Subtype": "" - } - ] - }, - { - "name": "cimg/ruby", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 5, - "Docker_Url": "https://hub.docker.com/r/cimg/ruby", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "bitnami/ruby", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 21, - "Docker_Url": "https://hub.docker.com/r/bitnami/ruby", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "circleci/ruby", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 78, - "Docker_Url": "https://hub.docker.com/r/circleci/ruby", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ruby", - "Official image": true, - "Verified Publisher": false, - "Description": "", - "star_count": 2150, - "Docker_Url": "https://hub.docker.com/_/ruby", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v6", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "386", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [ - { - "name": "ruby", - "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/ruby", - "popularity": 0.0 - }, - { - "name": "ruby", - "url": "https://quay.io/repository/aptible/ruby", - "popularity": 147.0 - }, - { - "name": "ruby", - "url": "https://quay.io/repository/swsmirror/ruby", - "popularity": 0.0 - }, - { - "name": "ruby", - "url": "https://quay.io/repository/goodguide/ruby", - "popularity": 0.0 - }, - { - "name": "ruby", - "url": "https://quay.io/repository/shakr/ruby", - "popularity": 0.0 - }, - { - "name": "ruby", - "url": "https://quay.io/repository/springest/ruby", - "popularity": 30.0 - }, - { - "name": "ruby", - "url": "https://quay.io/repository/forem/ruby", - "popularity": 100.0 - }, - { - "name": "ruby", - "url": "https://quay.io/repository/openshifttest/ruby", - "popularity": 0.0 - } - ], - "quay_top_images": [ - { - "name": "ruby-27-centos7", - "url": "https://quay.io/repository/centos7/ruby-27-centos7", - "popularity": 254382.0 - }, - { - "name": "ruby-26-centos7", - "url": "https://quay.io/repository/centos7/ruby-26-centos7", - "popularity": 170674.0 - }, - { - "name": "ruby-25-centos7", - "url": "https://quay.io/repository/centos7/ruby-25-centos7", - "popularity": 73389.0 - }, - { - "name": "ruby-27", - "url": "https://quay.io/repository/openshifttest/ruby-27", - "popularity": 16742.0 - }, - { - "name": "ruby-cron", - "url": "https://quay.io/repository/palettecloud/ruby-cron", - "popularity": 10816.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 358 - }, { "Salesforce Object Query Language": [ { @@ -33087,27 +28957,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 382812.0 + "popularity": 369342.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 254930.0 + "popularity": 258719.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 193426.0 + "popularity": 198257.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 146710.0 + "popularity": 151149.0 } ] }, @@ -33148,7 +29018,7 @@ { "name": "sas", "url": "https://quay.io/repository/domino/sas", - "popularity": 276.0 + "popularity": 406.0 }, { "name": "sas", @@ -33170,7 +29040,7 @@ { "name": "sas", "url": "https://quay.io/repository/domino/sas", - "popularity": 276.0 + "popularity": 406.0 }, { "name": "egeria-connector-sas-viya", @@ -33264,13 +29134,13 @@ "quay_exact_images": [], "quay_top_images": [ { - "name": "python-npm-sass", - "url": "https://quay.io/repository/linkleonard/python-npm-sass", + "name": "clojure-sass", + "url": "https://quay.io/repository/stuarth/clojure-sass", "popularity": 0.0 }, { - "name": "clojure-sass", - "url": "https://quay.io/repository/stuarth/clojure-sass", + "name": "python-npm-sass", + "url": "https://quay.io/repository/linkleonard/python-npm-sass", "popularity": 0.0 }, { @@ -33321,12 +29191,12 @@ ] }, { - "name": "ibmcom/scala-logging", + "name": "ibmcom/scala-guice", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/scala-logging", + "Docker_Url": "https://hub.docker.com/r/ibmcom/scala-guice", "OS": [ { "Class": "null", @@ -33355,7 +29225,7 @@ { "name": "scala", "url": "https://quay.io/repository/opaqnetworks/scala", - "popularity": 4.0 + "popularity": 3.0 } ], "quay_top_images": [ @@ -33372,17 +29242,17 @@ { "name": "cimg-scala-builder", "url": "https://quay.io/repository/whisk/cimg-scala-builder", - "popularity": 21.0 + "popularity": 27.0 }, { "name": "scala", "url": "https://quay.io/repository/opaqnetworks/scala", - "popularity": 4.0 + "popularity": 3.0 }, { "name": "scala-sbt-nodejs", "url": "https://quay.io/repository/ukhomeofficedigital/scala-sbt-nodejs", - "popularity": 4.0 + "popularity": 6.0 } ] }, @@ -33568,27 +29438,27 @@ { "name": "swift-pipeline", "url": "https://quay.io/repository/greninger-lab/swift-pipeline", - "popularity": 5680.0 + "popularity": 5368.0 }, { "name": "centos-binary-swift-account", "url": "https://quay.io/repository/tripleotraincentos8/centos-binary-swift-account", - "popularity": 409.0 + "popularity": 403.0 }, { "name": "centos-binary-swift-object", "url": "https://quay.io/repository/tripleotraincentos8/centos-binary-swift-object", - "popularity": 409.0 + "popularity": 403.0 }, { "name": "centos-binary-swift-container", "url": "https://quay.io/repository/tripleotraincentos8/centos-binary-swift-container", - "popularity": 409.0 + "popularity": 403.0 }, { "name": "centos-binary-swift-proxy-server", "url": "https://quay.io/repository/tripleotraincentos8/centos-binary-swift-proxy-server", - "popularity": 408.0 + "popularity": 402.0 } ] }, @@ -33701,27 +29571,27 @@ { "name": "apicurio-registry-sql", "url": "https://quay.io/repository/apicurio/apicurio-registry-sql", - "popularity": 14608.0 + "popularity": 15182.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 245318.0 + "popularity": 250172.0 }, { "name": "mariadb-105-centos7", "url": "https://quay.io/repository/centos7/mariadb-105-centos7", - "popularity": 142292.0 + "popularity": 146865.0 }, { "name": "soketi", "url": "https://quay.io/repository/soketi/soketi", - "popularity": 31737.0 + "popularity": 37098.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17355.0 + "popularity": 17958.0 } ] }, @@ -33755,7 +29625,7 @@ { "name": "hmpps-template-typescript", "url": "https://quay.io/repository/hmpps/hmpps-template-typescript", - "popularity": 29.0 + "popularity": 18.0 }, { "name": "typescript-docker", @@ -33775,7 +29645,7 @@ { "name": "che-e2e", "url": "https://quay.io/repository/eclipse/che-e2e", - "popularity": 14.0 + "popularity": 13.0 } ] }, @@ -33798,27 +29668,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 }, { "name": "samtools", "url": "https://quay.io/repository/biocontainers/samtools", - "popularity": 109822.0 + "popularity": 120126.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 + "popularity": 30527.0 } ] }, @@ -33858,27 +29728,27 @@ { "name": "nginx-basic-auth-proxy", "url": "https://quay.io/repository/dtan4/nginx-basic-auth-proxy", - "popularity": 6316.0 + "popularity": 6483.0 }, { "name": "visual-qontract", "url": "https://quay.io/repository/app-sre/visual-qontract", - "popularity": 4089.0 + "popularity": 4063.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 79034.0 + "popularity": 78097.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 + "popularity": 30527.0 }, { "name": "haproxy-exporter", "url": "https://quay.io/repository/prometheus/haproxy-exporter", - "popularity": 13460.0 + "popularity": 13670.0 } ] }, @@ -33901,27 +29771,27 @@ { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1343874.0 + "popularity": 1359497.0 }, { "name": "audit-syslog-service", "url": "https://quay.io/repository/opencloudio/audit-syslog-service", - "popularity": 130197.0 + "popularity": 126512.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 148414.0 + "popularity": 104567.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 79034.0 + "popularity": 78097.0 }, { - "name": "ubi-quarkus-native-s2i", - "url": "https://quay.io/repository/quarkus/ubi-quarkus-native-s2i", - "popularity": 35973.0 + "name": "soketi", + "url": "https://quay.io/repository/soketi/soketi", + "popularity": 37098.0 } ] }, @@ -33944,12 +29814,12 @@ { "name": "visual-qontract", "url": "https://quay.io/repository/app-sre/visual-qontract", - "popularity": 4089.0 + "popularity": 4063.0 }, { "name": "visual-regression", "url": "https://quay.io/repository/babylonhealth/visual-regression", - "popularity": 138.0 + "popularity": 116.0 }, { "name": "ccc", @@ -34084,27 +29954,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 883725.0 + "popularity": 897952.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 403203.0 + "popularity": 412719.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 + "popularity": 265927.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 } ] }, @@ -34175,21 +30045,13 @@ ] }, { - "name": "pingidentity/apache-jmeter", + "name": "bitnami/apache-exporter", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 6, - "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", "OS": [ - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, { "Class": "OS", "Architecture": "amd64", @@ -34201,13 +30063,21 @@ ] }, { - "name": "bitnami/apache-exporter", + "name": "pingidentity/apache-jmeter", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/bitnami/apache-exporter", + "star_count": 6, + "Docker_Url": "https://hub.docker.com/r/pingidentity/apache-jmeter", "OS": [ + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, { "Class": "OS", "Architecture": "amd64", @@ -34226,27 +30096,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 883725.0 + "popularity": 897952.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 403203.0 + "popularity": 412719.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 + "popularity": 265927.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 } ] }, @@ -34269,27 +30139,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 + "popularity": 90209.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 82319.0 + "popularity": 79779.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 102256.0 + "popularity": 102060.0 } ] }, @@ -34375,27 +30245,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 883725.0 + "popularity": 897952.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 403203.0 + "popularity": 412719.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 + "popularity": 265927.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 } ] }, @@ -34520,27 +30390,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 883725.0 + "popularity": 897952.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 403203.0 + "popularity": 412719.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 + "popularity": 265927.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 } ] }, @@ -34626,27 +30496,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 883725.0 + "popularity": 897952.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 403203.0 + "popularity": 412719.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 + "popularity": 265927.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 } ] }, @@ -34706,27 +30576,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 883725.0 + "popularity": 897952.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 403203.0 + "popularity": 412719.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 + "popularity": 265927.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 } ] }, @@ -34873,27 +30743,27 @@ { "name": "mongodb-enterprise-database", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", - "popularity": 101454.0 + "popularity": 99140.0 }, { "name": "mongodb-enterprise-ops-manager", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", - "popularity": 86254.0 + "popularity": 80188.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 148414.0 + "popularity": 104567.0 }, { "name": "fujitsu-enterprise-postgres-14-server", "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 29981.0 + "popularity": 43890.0 }, { "name": "mongodb-enterprise-init-database", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-init-database", - "popularity": 16271.0 + "popularity": 19861.0 } ] }, @@ -34933,27 +30803,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 378922.0 + "popularity": 395380.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1343874.0 + "popularity": 1359497.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 + "popularity": 265927.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 } ] }, @@ -34995,7 +30865,7 @@ { "name": "hibernate-github-bot", "url": "https://quay.io/repository/hibernate/hibernate-github-bot", - "popularity": 3.0 + "popularity": 0.0 }, { "name": "hibernate-orm-panache-quickstart", @@ -35015,7 +30885,7 @@ { "name": "awestruct-build-env", "url": "https://quay.io/repository/hibernate/awestruct-build-env", - "popularity": 34.0 + "popularity": 12.0 } ] }, @@ -35125,27 +30995,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 } ] }, @@ -35162,12 +31032,12 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "bitnami/java", - "Official image": false, - "Verified Publisher": true, + "name": "java", + "Official image": true, + "Verified Publisher": false, "Description": "", - "star_count": 10, - "Docker_Url": "https://hub.docker.com/r/bitnami/java", + "star_count": 1976, + "Docker_Url": "https://hub.docker.com/_/java", "OS": [ { "Class": "OS", @@ -35180,12 +31050,12 @@ ] }, { - "name": "java", - "Official image": true, - "Verified Publisher": false, + "name": "bitnami/java", + "Official image": false, + "Verified Publisher": true, "Description": "", - "star_count": 1976, - "Docker_Url": "https://hub.docker.com/_/java", + "star_count": 10, + "Docker_Url": "https://hub.docker.com/r/bitnami/java", "OS": [ { "Class": "OS", @@ -35223,27 +31093,27 @@ { "name": "java", "url": "https://quay.io/repository/enxadahost/java", - "popularity": 21708.0 + "popularity": 21441.0 }, { "name": "docker-java-swiss-knife", "url": "https://quay.io/repository/scentbird/docker-java-swiss-knife", - "popularity": 7657.0 + "popularity": 5522.0 }, { "name": "java", "url": "https://quay.io/repository/reishost/java", - "popularity": 4728.0 + "popularity": 4864.0 }, { "name": "bench-army-knife", "url": "https://quay.io/repository/rkrawitz/bench-army-knife", - "popularity": 826651.0 + "popularity": 793587.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183645.0 + "popularity": 183319.0 } ] }, @@ -35373,27 +31243,27 @@ { "name": "common-service-operator", "url": "https://quay.io/repository/opencloudio/common-service-operator", - "popularity": 284079.0 + "popularity": 300956.0 }, { "name": "service-catalog", "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", - "popularity": 330422.0 + "popularity": 329446.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 } ] }, @@ -35471,27 +31341,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 378922.0 + "popularity": 395380.0 }, { "name": "mongodb-kubernetes-operator-version-upgrade-post-start-hook", "url": "https://quay.io/repository/mongodb/mongodb-kubernetes-operator-version-upgrade-post-start-hook", - "popularity": 88895.0 + "popularity": 86954.0 }, { "name": "java", "url": "https://quay.io/repository/enxadahost/java", - "popularity": 21708.0 - }, - { - "name": "windup-web-openshift-messaging-executor", - "url": "https://quay.io/repository/windupeng/windup-web-openshift-messaging-executor", - "popularity": 12140.0 + "popularity": 21441.0 }, { "name": "windup-web-openshift", "url": "https://quay.io/repository/windupeng/windup-web-openshift", - "popularity": 47186.0 + "popularity": 47530.0 + }, + { + "name": "httpd-24-centos7", + "url": "https://quay.io/repository/centos7/httpd-24-centos7", + "popularity": 265927.0 } ] }, @@ -35519,7 +31389,7 @@ { "name": "javaserver", "url": "https://quay.io/repository/ctrack/javaserver", - "popularity": 45.0 + "popularity": 29.0 }, { "name": "antennae", @@ -35699,27 +31569,27 @@ { "name": "core", "url": "https://quay.io/repository/pterodactyl/core", - "popularity": 108260.0 + "popularity": 98353.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "viral-core", "url": "https://quay.io/repository/broadinstitute/viral-core", - "popularity": 13905.0 + "popularity": 6281.0 }, { "name": "ansible-core-test-container", "url": "https://quay.io/repository/ansible/ansible-core-test-container", - "popularity": 6954.0 + "popularity": 7711.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 } ] }, @@ -35767,7 +31637,7 @@ { "name": "log4j-vul-image", "url": "https://quay.io/repository/nvsecurity/log4j-vul-image", - "popularity": 168.0 + "popularity": 127.0 }, { "name": "kubernetes-log4j-cve-2021-44228-node-agent", @@ -35852,27 +31722,27 @@ { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 + "popularity": 90209.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183645.0 + "popularity": 183319.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 148414.0 + "popularity": 104567.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 + "popularity": 30527.0 }, { "name": "ubuntu", "url": "https://quay.io/repository/baselibrary/ubuntu", - "popularity": 79437.0 + "popularity": 79482.0 } ] }, @@ -35975,352 +31845,352 @@ { "name": "spring-petclinic", "url": "https://quay.io/repository/service-binding/spring-petclinic", - "popularity": 16335.0 - }, - { - "name": "spring-petclinic", - "url": "https://quay.io/repository/siamaksade/spring-petclinic", - "popularity": 5824.0 - }, - { - "name": "spring-sample", - "url": "https://quay.io/repository/enesk/spring-sample", - "popularity": 2938.0 - }, - { - "name": "spring-boot-sample", - "url": "https://quay.io/repository/efeluzy/spring-boot-sample", - "popularity": 356.0 - }, - { - "name": "spring-boot-admin", - "url": "https://quay.io/repository/evryfs/spring-boot-admin", - "popularity": 937.0 - } - ] - }, - { - "operators": [ - { - "package_id": "44e1ad69-0eea-4bcb-b796-2216452f99c7", - "name": "appsody-operator", - "normalized_name": "appsody-operator", - "logo_image_id": "a71aac4a-90dc-41fb-8899-af9c772c7261", - "stars": 0, - "display_name": "Appsody Operator", - "description": "Deploys Appsody based applications", - "version": "0.6.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 64, - "high": 14, - "medium": 165, - "unknown": 0, - "critical": 3 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1590051600, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/appsody/appsody-operator", - "container_images": [] - }, - { - "package_id": "977ddfd9-16a0-42c2-8f76-024c1cf6ade5", - "name": "open-liberty", - "normalized_name": "open-liberty", - "logo_image_id": "207d05c6-2e47-411a-bf11-cc5f919a596b", - "stars": 0, - "display_name": "Open Liberty Operator", - "description": "Deploy and manage applications running on Open Liberty", - "version": "0.7.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 43, - "high": 5, - "medium": 62, - "unknown": 0, - "critical": 3 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1595408400, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/OpenLiberty/open-liberty-operator", - "container_images": [] - }, - { - "package_id": "a1169957-48ac-4713-9c80-f6f50e53cfd8", - "name": "runtime-component-operator", - "normalized_name": "runtime-component-operator", - "logo_image_id": "dcafd1cd-0f24-4c2b-8ff1-79e65bcd8070", - "stars": 0, - "display_name": "Runtime Component Operator", - "description": "Deploys any runtime component with dynamic and auto-tuning configuration", - "version": "0.7.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 43, - "high": 5, - "medium": 62, - "unknown": 0, - "critical": 3 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1594890000, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/application-stacks/runtime-component-operator", - "container_images": [] - }, - { - "package_id": "f9cd6b79-6a14-4e63-b39c-73a257a7a0e4", - "name": "kogito-operator", - "normalized_name": "kogito-operator", - "logo_image_id": "ad53dec8-1e52-4de2-b995-067a63ad9083", - "stars": 0, - "display_name": "Kogito", - "description": "Kogito Operator for deployment and management of Kogito services.", - "version": "1.24.0", - "deprecated": false, - "signed": false, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1566479542, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/kiegroup/kogito-operator", - "container_images": [ - "quay.io/kiegroup/kogito-operator:1.24.0" - ] - } - ] - } - ], - "entity_type": 12, - "entity_id": 398 - }, - { - "Spring Boot": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "ibmcom/boot", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/boot", - "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "node-exporter", - "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 - }, - { - "name": "spring-petclinic", - "url": "https://quay.io/repository/service-binding/spring-petclinic", - "popularity": 16335.0 - }, - { - "name": "alpine-ext-kernel-boot-demo", - "url": "https://quay.io/repository/kubevirt/alpine-ext-kernel-boot-demo", - "popularity": 7437.0 - }, - { - "name": "spring-petclinic", - "url": "https://quay.io/repository/siamaksade/spring-petclinic", - "popularity": 5824.0 - }, - { - "name": "spring-sample", - "url": "https://quay.io/repository/enesk/spring-sample", - "popularity": 2938.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 12, - "entity_id": 399 - }, - { - "Spring Cloud Data Flow": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "cloud-connector", - "url": "https://quay.io/repository/sysdig/cloud-connector", - "popularity": 1192367.0 - }, - { - "name": "cloud-connector-s3-bucket-config", - "url": "https://quay.io/repository/sysdig/cloud-connector-s3-bucket-config", - "popularity": 629482.0 - }, - { - "name": "zen-data-sorcerer", - "url": "https://quay.io/repository/opencloudio/zen-data-sorcerer", - "popularity": 225384.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 - }, - { - "name": "minio", - "url": "https://quay.io/repository/minio/minio", - "popularity": 382812.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 12, - "entity_id": 400 - }, - { - "Spring MVC": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "bitnami/spring-cloud-dataflow", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/bitnami/spring-cloud-dataflow", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "bitnami/spring-cloud-skipper", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/bitnami/spring-cloud-skipper", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "spring-petclinic", - "url": "https://quay.io/repository/service-binding/spring-petclinic", - "popularity": 16335.0 + "popularity": 17361.0 }, { "name": "spring-petclinic", "url": "https://quay.io/repository/siamaksade/spring-petclinic", - "popularity": 5824.0 + "popularity": 6009.0 }, { "name": "spring-sample", "url": "https://quay.io/repository/enesk/spring-sample", - "popularity": 2938.0 + "popularity": 2760.0 + }, + { + "name": "spring-boot-admin", + "url": "https://quay.io/repository/evryfs/spring-boot-admin", + "popularity": 1120.0 }, { "name": "spring-boot-sample", "url": "https://quay.io/repository/efeluzy/spring-boot-sample", - "popularity": 356.0 + "popularity": 347.0 + } + ] + }, + { + "operators": [ + { + "package_id": "44e1ad69-0eea-4bcb-b796-2216452f99c7", + "name": "appsody-operator", + "normalized_name": "appsody-operator", + "logo_image_id": "a71aac4a-90dc-41fb-8899-af9c772c7261", + "stars": 0, + "display_name": "Appsody Operator", + "description": "Deploys Appsody based applications", + "version": "0.6.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 64, + "high": 14, + "medium": 165, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1590051600, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/appsody/appsody-operator", + "container_images": [] + }, + { + "package_id": "977ddfd9-16a0-42c2-8f76-024c1cf6ade5", + "name": "open-liberty", + "normalized_name": "open-liberty", + "logo_image_id": "207d05c6-2e47-411a-bf11-cc5f919a596b", + "stars": 0, + "display_name": "Open Liberty Operator", + "description": "Deploy and manage applications running on Open Liberty", + "version": "0.7.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 43, + "high": 5, + "medium": 62, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1595408400, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/OpenLiberty/open-liberty-operator", + "container_images": [] + }, + { + "package_id": "a1169957-48ac-4713-9c80-f6f50e53cfd8", + "name": "runtime-component-operator", + "normalized_name": "runtime-component-operator", + "logo_image_id": "dcafd1cd-0f24-4c2b-8ff1-79e65bcd8070", + "stars": 0, + "display_name": "Runtime Component Operator", + "description": "Deploys any runtime component with dynamic and auto-tuning configuration", + "version": "0.7.0", + "deprecated": false, + "signed": false, + "security_report_summary": { + "low": 43, + "high": 5, + "medium": 62, + "unknown": 0, + "critical": 3 + }, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1594890000, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/application-stacks/runtime-component-operator", + "container_images": [] + }, + { + "package_id": "f9cd6b79-6a14-4e63-b39c-73a257a7a0e4", + "name": "kogito-operator", + "normalized_name": "kogito-operator", + "logo_image_id": "ad53dec8-1e52-4de2-b995-067a63ad9083", + "stars": 0, + "display_name": "Kogito", + "description": "Kogito Operator for deployment and management of Kogito services.", + "version": "1.24.0", + "deprecated": false, + "signed": false, + "all_containers_images_whitelisted": false, + "production_organizations_count": 0, + "ts": 1566479542, + "repository": { + "url": "https://github.com/k8s-operatorhub/community-operators/operators", + "kind": 3, + "name": "community-operators", + "official": false, + "display_name": "Community Operators", + "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", + "scanner_disabled": false, + "organization_name": "operator-framework", + "verified_publisher": false, + "organization_display_name": "Operator Framework" + }, + "git_repos": "https://github.com/kiegroup/kogito-operator", + "container_images": [ + "quay.io/kiegroup/kogito-operator:1.24.0" + ] + } + ] + } + ], + "entity_type": 12, + "entity_id": 398 + }, + { + "Spring Boot": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/boot", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/boot", + "OS": [ + { + "Class": "null", + "Architecture": "null", + "Variants": "null", + "Versions": "null", + "Type": "null", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "node-exporter", + "url": "https://quay.io/repository/prometheus/node-exporter", + "popularity": 29176747.0 + }, + { + "name": "spring-petclinic", + "url": "https://quay.io/repository/service-binding/spring-petclinic", + "popularity": 17361.0 + }, + { + "name": "alpine-ext-kernel-boot-demo", + "url": "https://quay.io/repository/kubevirt/alpine-ext-kernel-boot-demo", + "popularity": 7326.0 + }, + { + "name": "spring-petclinic", + "url": "https://quay.io/repository/siamaksade/spring-petclinic", + "popularity": 6009.0 + }, + { + "name": "spring-sample", + "url": "https://quay.io/repository/enesk/spring-sample", + "popularity": 2760.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 399 + }, + { + "Spring Cloud Data Flow": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "cloud-connector", + "url": "https://quay.io/repository/sysdig/cloud-connector", + "popularity": 1158880.0 + }, + { + "name": "cloud-connector-s3-bucket-config", + "url": "https://quay.io/repository/sysdig/cloud-connector-s3-bucket-config", + "popularity": 619283.0 + }, + { + "name": "zen-data-sorcerer", + "url": "https://quay.io/repository/opencloudio/zen-data-sorcerer", + "popularity": 225217.0 + }, + { + "name": "prometheus", + "url": "https://quay.io/repository/prometheus/prometheus", + "popularity": 5878721.0 + }, + { + "name": "minio", + "url": "https://quay.io/repository/minio/minio", + "popularity": 369342.0 + } + ] + }, + { + "operators": [] + } + ], + "entity_type": 12, + "entity_id": 400 + }, + { + "Spring MVC": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "bitnami/spring-cloud-dataflow", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/bitnami/spring-cloud-dataflow", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "bitnami/spring-cloud-skipper", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/bitnami/spring-cloud-skipper", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [ + { + "name": "spring-petclinic", + "url": "https://quay.io/repository/service-binding/spring-petclinic", + "popularity": 17361.0 + }, + { + "name": "spring-petclinic", + "url": "https://quay.io/repository/siamaksade/spring-petclinic", + "popularity": 6009.0 + }, + { + "name": "spring-sample", + "url": "https://quay.io/repository/enesk/spring-sample", + "popularity": 2760.0 }, { "name": "spring-boot-admin", "url": "https://quay.io/repository/evryfs/spring-boot-admin", - "popularity": 937.0 + "popularity": 1120.0 + }, + { + "name": "spring-boot-sample", + "url": "https://quay.io/repository/efeluzy/spring-boot-sample", + "popularity": 347.0 } ] }, @@ -36520,17 +32390,17 @@ { "name": "express-microservice", "url": "https://quay.io/repository/codefresh_sa/express-microservice", - "popularity": 1076.0 + "popularity": 1074.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52832.0 + "popularity": 52822.0 }, { "name": "express-microservice-cache", "url": "https://quay.io/repository/codefresh_sa/express-microservice-cache", - "popularity": 348.0 + "popularity": 354.0 }, { "name": "rabbitmq", @@ -36540,7 +32410,7 @@ { "name": "express-sample-app", "url": "https://quay.io/repository/waynecabanto/express-sample-app", - "popularity": 175.0 + "popularity": 172.0 } ] }, @@ -36563,27 +32433,27 @@ { "name": "alpine-ext-kernel-boot-demo", "url": "https://quay.io/repository/kubevirt/alpine-ext-kernel-boot-demo", - "popularity": 7437.0 + "popularity": 7326.0 }, { "name": "ibm-monitoring-prometheus-operator-ext-bundle", "url": "https://quay.io/repository/opencloudio/ibm-monitoring-prometheus-operator-ext-bundle", - "popularity": 326.0 + "popularity": 343.0 }, { "name": "ext-auth-service", "url": "https://quay.io/repository/solo-io/ext-auth-service", - "popularity": 110.0 + "popularity": 145.0 }, { "name": "pam-oracledb-ext-img", "url": "https://quay.io/repository/mmaset/pam-oracledb-ext-img", - "popularity": 337.0 + "popularity": 369.0 }, { "name": "egeria", "url": "https://quay.io/repository/odpi/egeria", - "popularity": 443.0 + "popularity": 453.0 } ] }, @@ -36838,7 +32708,7 @@ { "name": "react", "url": "https://quay.io/repository/profects/react", - "popularity": 15.0 + "popularity": 13.0 }, { "name": "react", @@ -36860,22 +32730,22 @@ { "name": "egeria-react-ui", "url": "https://quay.io/repository/odpi/egeria-react-ui", - "popularity": 211.0 - }, - { - "name": "react-app", - "url": "https://quay.io/repository/rtaneja/react-app", - "popularity": 0.0 + "popularity": 217.0 }, { "name": "react", "url": "https://quay.io/repository/profects/react", - "popularity": 15.0 + "popularity": 13.0 }, { - "name": "docker-react", - "url": "https://quay.io/repository/girol/docker-react", + "name": "react-app", + "url": "https://quay.io/repository/rtaneja/react-app", "popularity": 0.0 + }, + { + "name": "dashboard-app-react", + "url": "https://quay.io/repository/telescope/dashboard-app-react", + "popularity": 30.0 } ] }, @@ -36898,27 +32768,27 @@ { "name": "startup-script", "url": "https://quay.io/repository/cilium/startup-script", - "popularity": 257361.0 + "popularity": 272890.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 79034.0 + "popularity": 78097.0 }, { "name": "podman", "url": "https://quay.io/repository/containers/podman", - "popularity": 20563.0 - }, - { - "name": "netbox", - "url": "https://quay.io/repository/netboxcommunity/netbox", - "popularity": 11302.0 + "popularity": 21358.0 }, { "name": "ubuntu", "url": "https://quay.io/repository/baselibrary/ubuntu", - "popularity": 79437.0 + "popularity": 79482.0 + }, + { + "name": "netbox", + "url": "https://quay.io/repository/netboxcommunity/netbox", + "popularity": 10714.0 } ] }, @@ -36941,27 +32811,27 @@ { "name": "concourse-file-resource", "url": "https://quay.io/repository/henry40408/concourse-file-resource", - "popularity": 662170.0 + "popularity": 662317.0 }, { "name": "insights-uploader", "url": "https://quay.io/repository/fairwinds/insights-uploader", - "popularity": 781550.0 + "popularity": 787790.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 } ] }, @@ -37055,27 +32925,27 @@ { "name": "mongodb-enterprise-database", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", - "popularity": 101454.0 - }, - { - "name": "ibm-platform-api-operator", - "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", - "popularity": 36619.0 + "popularity": 99140.0 }, { "name": "mongodb-enterprise-ops-manager", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", - "popularity": 86254.0 + "popularity": 80188.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 148414.0 + "popularity": 104567.0 + }, + { + "name": "insights-api", + "url": "https://quay.io/repository/fairwinds/insights-api", + "popularity": 39135.0 }, { "name": "k8s-sidecar", "url": "https://quay.io/repository/kiwigrid/k8s-sidecar", - "popularity": 1297028.0 + "popularity": 1288147.0 } ] }, @@ -37188,7 +33058,7 @@ { "name": "android", "url": "https://quay.io/repository/bitriseio/android", - "popularity": 91.0 + "popularity": 127.0 }, { "name": "android", @@ -37198,7 +33068,7 @@ { "name": "android", "url": "https://quay.io/repository/amal5alshaikh/android", - "popularity": 12.0 + "popularity": 26.0 }, { "name": "android", @@ -37210,27 +33080,27 @@ { "name": "android", "url": "https://quay.io/repository/bitriseio/android", - "popularity": 91.0 + "popularity": 127.0 }, { "name": "android-ndk", "url": "https://quay.io/repository/bitriseio/android-ndk", - "popularity": 24.0 - }, - { - "name": "alpine-android", - "url": "https://quay.io/repository/alvr/alpine-android", - "popularity": 16.0 + "popularity": 52.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 36573.0 + "popularity": 30531.0 }, { "name": "build-environment-android", "url": "https://quay.io/repository/callsign/build-environment-android", - "popularity": 300.0 + "popularity": 353.0 + }, + { + "name": "android", + "url": "https://quay.io/repository/amal5alshaikh/android", + "popularity": 26.0 } ] }, @@ -37270,7 +33140,7 @@ { "name": "cisco-hxcsi-operator", "url": "https://quay.io/repository/operator-pipeline-prod/cisco-hxcsi-operator", - "popularity": 189.0 + "popularity": 183.0 }, { "name": "cisco-hxcsi-operator-index", @@ -37481,22 +33351,22 @@ { "name": "dart-caps-listen", "url": "https://quay.io/repository/geonet/dart-caps-listen", - "popularity": 1017.0 + "popularity": 1021.0 }, { "name": "dart-tilde-listen", "url": "https://quay.io/repository/geonet/dart-tilde-listen", - "popularity": 679.0 + "popularity": 681.0 }, { "name": "dart-rapid", "url": "https://quay.io/repository/geonet/dart-rapid", - "popularity": 679.0 + "popularity": 681.0 }, { "name": "bioconductor-dart", "url": "https://quay.io/repository/biocontainers/bioconductor-dart", - "popularity": 369.0 + "popularity": 261.0 }, { "name": "dart", @@ -37543,17 +33413,17 @@ { "name": "flannel", "url": "https://quay.io/repository/coreos/flannel", - "popularity": 1674754.0 + "popularity": 1741937.0 }, { "name": "fabric-peer", "url": "https://quay.io/repository/kfsoftware/fabric-peer", - "popularity": 134.0 + "popularity": 124.0 }, { "name": "netop-fabric-manager", "url": "https://quay.io/repository/noirolabs/netop-fabric-manager", - "popularity": 6.0 + "popularity": 8.0 }, { "name": "cortex-fabric-operator-image", @@ -37563,7 +33433,7 @@ { "name": "flannel", "url": "https://quay.io/repository/microshift/flannel", - "popularity": 58.0 + "popularity": 42.0 } ] }, @@ -37586,27 +33456,27 @@ { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 36573.0 + "popularity": 30531.0 }, { "name": "postgresql", "url": "https://quay.io/repository/enterprisedb/postgresql", - "popularity": 19585.0 + "popularity": 19350.0 }, { "name": "multiqc", "url": "https://quay.io/repository/biocontainers/multiqc", - "popularity": 30213.0 + "popularity": 43577.0 }, { "name": "gawk", "url": "https://quay.io/repository/biocontainers/gawk", - "popularity": 12927.0 + "popularity": 20761.0 } ] }, @@ -37716,27 +33586,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 } ] }, @@ -38429,8 +34299,8 @@ "popularity": 0.0 }, { - "name": "scholastic-blog", - "url": "https://quay.io/repository/andygray123/scholastic-blog", + "name": "iphoneapplication", + "url": "https://quay.io/repository/samarthkhurana068/iphoneapplication", "popularity": 0.0 } ] @@ -38442,49 +34312,6 @@ "entity_type": 6, "entity_id": 425 }, - { - "Linux": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "node-exporter", - "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 - }, - { - "name": "busybox", - "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 - }, - { - "name": "ibm-management-ingress-operator", - "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 156321.0 - }, - { - "name": "audit-syslog-service", - "url": "https://quay.io/repository/opencloudio/audit-syslog-service", - "popularity": 130197.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 6, - "entity_id": 426 - }, { "CentOS": [ { @@ -38494,7 +34321,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 7249, + "star_count": 7248, "Docker_Url": "https://hub.docker.com/_/centos", "OS": [ { @@ -38530,7 +34357,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 7249, + "star_count": 7248, "Docker_Url": "https://hub.docker.com/_/centos", "OS": [ { @@ -38602,49 +34429,49 @@ { "name": "centos", "url": "https://quay.io/repository/centos/centos", - "popularity": 401763.0 + "popularity": 414990.0 }, { "name": "centos", "url": "https://quay.io/repository/containerdisks/centos", - "popularity": 10089.0 + "popularity": 11125.0 }, { "name": "centos", "url": "https://quay.io/repository/openshifttest/centos", - "popularity": 1168.0 + "popularity": 1289.0 }, { "name": "centos", "url": "https://quay.io/repository/libpod/centos", - "popularity": 2086.0 + "popularity": 2030.0 } ], "quay_top_images": [ { "name": "centos", "url": "https://quay.io/repository/centos/centos", - "popularity": 401763.0 + "popularity": 414990.0 }, { "name": "centos-base", "url": "https://quay.io/repository/ukhomeofficedigital/centos-base", - "popularity": 43122.0 + "popularity": 43160.0 }, { "name": "centos-stream", "url": "https://quay.io/repository/containerdisks/centos-stream", - "popularity": 13723.0 + "popularity": 14141.0 }, { "name": "centos", "url": "https://quay.io/repository/containerdisks/centos", - "popularity": 10089.0 + "popularity": 11125.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 380580.0 + "popularity": 370506.0 } ] }, @@ -38686,27 +34513,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "check-aws-tags", "url": "https://quay.io/repository/sergioballesteros/check-aws-tags", - "popularity": 32462.0 + "popularity": 30674.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 36573.0 + "popularity": 30531.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52832.0 + "popularity": 52822.0 }, { - "name": "cloud-native-postgresql", - "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20354.0 + "name": "kata-deploy", + "url": "https://quay.io/repository/kata-containers/kata-deploy", + "popularity": 21496.0 } ] }, @@ -38726,7 +34553,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 4382, + "star_count": 4384, "Docker_Url": "https://hub.docker.com/_/debian", "OS": [ { @@ -38810,7 +34637,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 4382, + "star_count": 4384, "Docker_Url": "https://hub.docker.com/_/debian", "OS": [ { @@ -38912,44 +34739,44 @@ { "name": "debian", "url": "https://quay.io/repository/official-images/debian", - "popularity": 70.0 + "popularity": 82.0 }, { "name": "debian", "url": "https://quay.io/repository/libpod/debian", - "popularity": 1178.0 + "popularity": 1168.0 }, { "name": "debian", "url": "https://quay.io/repository/broadstripes/debian", - "popularity": 39.0 + "popularity": 33.0 } ], "quay_top_images": [ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 }, { "name": "debian", "url": "https://quay.io/repository/libpod/debian", - "popularity": 1178.0 + "popularity": 1168.0 }, { "name": "debian-source-haproxy", "url": "https://quay.io/repository/openstack.kolla/debian-source-haproxy", - "popularity": 384.0 + "popularity": 255.0 }, { "name": "debian-tall", "url": "https://quay.io/repository/gravitational/debian-tall", - "popularity": 431.0 + "popularity": 503.0 } ] }, @@ -39055,14 +34882,14 @@ { "name": "opensuse", "url": "https://quay.io/repository/quay-qetest/opensuse", - "popularity": 3.0 + "popularity": 2.0 } ], "quay_top_images": [ { "name": "opensuse-systemd", "url": "https://quay.io/repository/gotmax23/opensuse-systemd", - "popularity": 34.0 + "popularity": 30.0 }, { "name": "vm-opensuse-leap-15", @@ -39082,7 +34909,7 @@ { "name": "opensuse-15-container-disk", "url": "https://quay.io/repository/edgestack/opensuse-15-container-disk", - "popularity": 4.0 + "popularity": 5.0 } ] }, @@ -39105,27 +34932,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 }, { "name": "ibm-management-ingress-operator", "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 156321.0 + "popularity": 157394.0 }, { "name": "audit-syslog-service", "url": "https://quay.io/repository/opencloudio/audit-syslog-service", - "popularity": 130197.0 + "popularity": 126512.0 } ] }, @@ -39167,7 +34994,7 @@ { "name": "goharbor-clair-photon", "url": "https://quay.io/repository/klovercloud/goharbor-clair-photon", - "popularity": 1006.0 + "popularity": 1005.0 }, { "name": "nginx-photon", @@ -39247,27 +35074,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "mongodb-enterprise-database", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", - "popularity": 101454.0 + "popularity": 99140.0 }, { "name": "mongodb-enterprise-ops-manager", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-ops-manager", - "popularity": 86254.0 + "popularity": 80188.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 148414.0 + "popularity": 104567.0 }, { "name": "fujitsu-enterprise-postgres-14-server", "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", - "popularity": 29981.0 + "popularity": 43890.0 } ] }, @@ -39290,27 +35117,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 148414.0 + "popularity": 104567.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -39330,7 +35157,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 14618, + "star_count": 14629, "Docker_Url": "https://hub.docker.com/_/ubuntu", "OS": [ { @@ -39390,7 +35217,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 14618, + "star_count": 14629, "Docker_Url": "https://hub.docker.com/_/ubuntu", "OS": [ { @@ -39530,59 +35357,59 @@ { "name": "ubuntu", "url": "https://quay.io/repository/libpod/ubuntu", - "popularity": 29997.0 + "popularity": 29019.0 }, { "name": "ubuntu", "url": "https://quay.io/repository/tamr/ubuntu", - "popularity": 504.0 + "popularity": 495.0 }, { "name": "ubuntu", "url": "https://quay.io/repository/bedrock/ubuntu", - "popularity": 28372.0 + "popularity": 28403.0 }, { "name": "ubuntu", "url": "https://quay.io/repository/baselibrary/ubuntu", - "popularity": 79437.0 + "popularity": 79482.0 }, { "name": "ubuntu", "url": "https://quay.io/repository/cybozu/ubuntu", - "popularity": 3730.0 + "popularity": 5114.0 }, { "name": "ubuntu", "url": "https://quay.io/repository/widen/ubuntu", - "popularity": 6.0 + "popularity": 0.0 } ], "quay_top_images": [ { "name": "ubuntu", "url": "https://quay.io/repository/libpod/ubuntu", - "popularity": 29997.0 + "popularity": 29019.0 }, { "name": "ubuntu", "url": "https://quay.io/repository/bedrock/ubuntu", - "popularity": 28372.0 + "popularity": 28403.0 }, { "name": "ubuntu", "url": "https://quay.io/repository/baselibrary/ubuntu", - "popularity": 79437.0 + "popularity": 79482.0 }, { "name": "ubuntu", "url": "https://quay.io/repository/cybozu/ubuntu", - "popularity": 3730.0 + "popularity": 5114.0 }, { "name": "ubuntu-debug", "url": "https://quay.io/repository/cybozu/ubuntu-debug", - "popularity": 1950.0 + "popularity": 2626.0 } ] }, @@ -39622,12 +35449,12 @@ { "name": "bowtie2", "url": "https://quay.io/repository/biocontainers/bowtie2", - "popularity": 689.0 + "popularity": 2502.0 }, { "name": "rhel8_runtime", "url": "https://quay.io/repository/openvino/rhel8_runtime", - "popularity": 45.0 + "popularity": 0.0 }, { "name": "rust", @@ -39653,23 +35480,6 @@ "entity_type": 6, "entity_id": 438 }, - { - "MVS": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [] - }, - { - "operators": [] - } - ], - "entity_type": 6, - "entity_id": 439 - }, { "OS/390": [ { @@ -39738,49 +35548,6 @@ "entity_type": 6, "entity_id": 443 }, - { - "Unix": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "memcached-exporter", - "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 82319.0 - }, - { - "name": "statsd-exporter", - "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8041.0 - }, - { - "name": "entrez-direct", - "url": "https://quay.io/repository/biocontainers/entrez-direct", - "popularity": 216.0 - }, - { - "name": "rsync-ssh", - "url": "https://quay.io/repository/instrumentisto/rsync-ssh", - "popularity": 46.0 - }, - { - "name": "watchtower", - "url": "https://quay.io/repository/webhippie/watchtower", - "popularity": 21.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 6, - "entity_id": 444 - }, { "AIX": [ { @@ -39819,49 +35586,6 @@ "entity_type": 6, "entity_id": 445 }, - { - "BSD": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "nginx", - "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 79034.0 - }, - { - "name": "mafft", - "url": "https://quay.io/repository/biocontainers/mafft", - "popularity": 5335.0 - }, - { - "name": "diamond", - "url": "https://quay.io/repository/biocontainers/diamond", - "popularity": 1022.0 - }, - { - "name": "krona", - "url": "https://quay.io/repository/biocontainers/krona", - "popularity": 803.0 - }, - { - "name": "alignlib-lite", - "url": "https://quay.io/repository/biocontainers/alignlib-lite", - "popularity": 615.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 6, - "entity_id": 446 - }, { "FreeBSD": [ { @@ -39880,12 +35604,12 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "golang-builder", "url": "https://quay.io/repository/prometheus/golang-builder", - "popularity": 2871.0 + "popularity": 3159.0 }, { "name": "freebsd", @@ -39898,9 +35622,9 @@ "popularity": 0.0 }, { - "name": "freebsd-minimal", - "url": "https://quay.io/repository/dougrabson/freebsd-minimal", - "popularity": 0.0 + "name": "fpm", + "url": "https://quay.io/repository/tenzerdk/fpm", + "popularity": 4.0 } ] }, @@ -39945,97 +35669,6 @@ "entity_type": 6, "entity_id": 449 }, - { - "Windows": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "rancher/windows-scheduler", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/rancher/windows-scheduler", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "rancher/windows-runtime-base", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/rancher/windows-runtime-base", - "OS": [ - { - "Class": "null", - "Architecture": "null", - "Variants": "null", - "Versions": "null", - "Type": "null", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [ - { - "name": "windows", - "url": "https://quay.io/repository/mhallin/windows", - "popularity": 23.0 - }, - { - "name": "windows", - "url": "https://quay.io/repository/mgba/windows", - "popularity": 0.0 - } - ], - "quay_top_images": [ - { - "name": "windows-upgrade", - "url": "https://quay.io/repository/calico/windows-upgrade", - "popularity": 7607.0 - }, - { - "name": "community-windows-machine-config-operator", - "url": "https://quay.io/repository/openshift-windows/community-windows-machine-config-operator", - "popularity": 181.0 - }, - { - "name": "community-windows-machine-config-operator", - "url": "https://quay.io/repository/openshift-community-operators/community-windows-machine-config-operator", - "popularity": 398.0 - }, - { - "name": "golang-builder", - "url": "https://quay.io/repository/prometheus/golang-builder", - "popularity": 2871.0 - }, - { - "name": "server", - "url": "https://quay.io/repository/codimd/server", - "popularity": 2416.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 6, - "entity_id": 450 - }, { "Windows Desktop": [ { @@ -40067,27 +35700,27 @@ { "name": "desktop", "url": "https://quay.io/repository/capesos/desktop", - "popularity": 897351.0 + "popularity": 901357.0 }, { "name": "desktop", "url": "https://quay.io/repository/mocaccino/desktop", - "popularity": 144644.0 + "popularity": 224100.0 }, { "name": "windows-upgrade", "url": "https://quay.io/repository/calico/windows-upgrade", - "popularity": 7607.0 + "popularity": 7652.0 }, { "name": "golang-builder", "url": "https://quay.io/repository/prometheus/golang-builder", - "popularity": 2871.0 + "popularity": 3159.0 }, { "name": "server", "url": "https://quay.io/repository/codimd/server", - "popularity": 2416.0 + "popularity": 2358.0 } ] }, @@ -40147,27 +35780,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 + }, + { + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -40317,54 +35950,54 @@ { "name": "fedora", "url": "https://quay.io/repository/fedora/fedora", - "popularity": 26452.0 + "popularity": 26834.0 }, { "name": "fedora", "url": "https://quay.io/repository/containerdisks/fedora", - "popularity": 6861.0 + "popularity": 6866.0 }, { "name": "fedora", "url": "https://quay.io/repository/kubevirtci/fedora", - "popularity": 8127.0 + "popularity": 8025.0 }, { "name": "fedora", "url": "https://quay.io/repository/libpod/fedora", - "popularity": 5462.0 + "popularity": 5118.0 }, { "name": "fedora", "url": "https://quay.io/repository/startx/fedora", - "popularity": 8731.0 + "popularity": 8496.0 } ], "quay_top_images": [ { "name": "fedora", "url": "https://quay.io/repository/fedora/fedora", - "popularity": 26452.0 + "popularity": 26834.0 }, { "name": "fedora-for-psi-ocp-monitoring", "url": "https://quay.io/repository/psi-ocp/fedora-for-psi-ocp-monitoring", - "popularity": 16759.0 + "popularity": 17069.0 }, { "name": "fedora", "url": "https://quay.io/repository/kubevirtci/fedora", - "popularity": 8127.0 + "popularity": 8025.0 }, { "name": "fedora", "url": "https://quay.io/repository/startx/fedora", - "popularity": 8731.0 + "popularity": 8496.0 }, { "name": "stable", "url": "https://quay.io/repository/buildah/stable", - "popularity": 56394.0 + "popularity": 55856.0 } ] }, @@ -40432,27 +36065,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 }, { "name": "ibm-management-ingress-operator", "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 156321.0 + "popularity": 157394.0 }, { "name": "audit-syslog-service", "url": "https://quay.io/repository/opencloudio/audit-syslog-service", - "popularity": 130197.0 + "popularity": 126512.0 } ] }, @@ -40475,27 +36108,27 @@ { "name": "nginx-basic-auth-proxy", "url": "https://quay.io/repository/dtan4/nginx-basic-auth-proxy", - "popularity": 6316.0 + "popularity": 6483.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 79034.0 + "popularity": 78097.0 }, { "name": "basic-ocp-demo", "url": "https://quay.io/repository/freedomben/basic-ocp-demo", - "popularity": 1694.0 + "popularity": 1740.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 + "popularity": 30527.0 }, { "name": "haproxy-exporter", "url": "https://quay.io/repository/prometheus/haproxy-exporter", - "popularity": 13460.0 + "popularity": 13670.0 } ] }, @@ -40621,27 +36254,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "backend-atlas", "url": "https://quay.io/repository/rhacs-demo/backend-atlas", - "popularity": 2244.0 + "popularity": 1518.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 - }, - { - "name": "pushgateway", - "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 + "popularity": 90209.0 }, { "name": "mongodb-atlas-kubernetes-operator-catalog", "url": "https://quay.io/repository/igorkarpukhin/mongodb-atlas-kubernetes-operator-catalog", - "popularity": 1845.0 + "popularity": 1850.0 + }, + { + "name": "pushgateway", + "url": "https://quay.io/repository/prometheus/pushgateway", + "popularity": 30527.0 } ] }, @@ -40701,27 +36334,27 @@ { "name": "nfs-client-provisioner", "url": "https://quay.io/repository/external_storage/nfs-client-provisioner", - "popularity": 709351.0 + "popularity": 708674.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "nfs-client-provisioner-arm", "url": "https://quay.io/repository/external_storage/nfs-client-provisioner-arm", - "popularity": 87885.0 + "popularity": 89108.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "gitlab-runner-docker-cleanup", "url": "https://quay.io/repository/gitlab/gitlab-runner-docker-cleanup", - "popularity": 796772.0 + "popularity": 783797.0 } ] }, @@ -40744,12 +36377,12 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "jaeger-query", "url": "https://quay.io/repository/jaegertracing/jaeger-query", - "popularity": 9786.0 + "popularity": 9826.0 }, { "name": "k8s-config-connector-extended", @@ -40759,12 +36392,12 @@ { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 + "popularity": 90209.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 102256.0 + "popularity": 102060.0 } ] }, @@ -40787,27 +36420,27 @@ { "name": "discovery", "url": "https://quay.io/repository/solo-io/discovery", - "popularity": 285808.0 + "popularity": 239563.0 }, { "name": "node-feature-discovery", "url": "https://quay.io/repository/kubernetes_incubator/node-feature-discovery", - "popularity": 53647.0 + "popularity": 50581.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "origin-node-feature-discovery", "url": "https://quay.io/repository/openshift/origin-node-feature-discovery", - "popularity": 69615.0 + "popularity": 69847.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 102256.0 + "popularity": 102060.0 } ] }, @@ -40941,27 +36574,27 @@ { "name": "ibm-platform-api-operator", "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", - "popularity": 36619.0 + "popularity": 35108.0 }, { - "name": "virt-api", - "url": "https://quay.io/repository/kubevirt/virt-api", - "popularity": 33904.0 + "name": "insights-api", + "url": "https://quay.io/repository/fairwinds/insights-api", + "popularity": 39135.0 }, { "name": "k8s-sidecar", "url": "https://quay.io/repository/kiwigrid/k8s-sidecar", - "popularity": 1297028.0 + "popularity": 1288147.0 }, { "name": "third-party-api-resolver-server", "url": "https://quay.io/repository/decentraland/third-party-api-resolver-server", - "popularity": 52834.0 + "popularity": 52906.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 421059.0 + "popularity": 430335.0 } ] }, @@ -41075,27 +36708,27 @@ { "name": "nfs-client-provisioner", "url": "https://quay.io/repository/external_storage/nfs-client-provisioner", - "popularity": 709351.0 + "popularity": 708674.0 }, { "name": "nfs-client-provisioner-arm", "url": "https://quay.io/repository/external_storage/nfs-client-provisioner-arm", - "popularity": 87885.0 - }, - { - "name": "oc-client-test", - "url": "https://quay.io/repository/vishwanath_puranik/oc-client-test", - "popularity": 9309.0 + "popularity": 89108.0 }, { "name": "defectdojo-client", "url": "https://quay.io/repository/sdase/defectdojo-client", - "popularity": 5823.0 + "popularity": 5941.0 }, { "name": "kubernetes-vault-client", "url": "https://quay.io/repository/travelaudience/kubernetes-vault-client", - "popularity": 8807.0 + "popularity": 8244.0 + }, + { + "name": "nfs-client-provisioner", + "url": "https://quay.io/repository/vbouchaud/nfs-client-provisioner", + "popularity": 10282.0 } ] }, @@ -41139,7 +36772,7 @@ "Class": "OS", "Architecture": "amd64", "Variants": null, - "Versions": "10.0.17763.3046", + "Versions": "10.0.17763.3165", "Type": "windows", "Subtype": "" }, @@ -41171,7 +36804,7 @@ "Class": "OS", "Architecture": "amd64", "Variants": null, - "Versions": "10.0.20348.768", + "Versions": "10.0.20348.825", "Type": "windows", "Subtype": "" } @@ -41297,7 +36930,7 @@ "OS": [ { "Class": "OS", - "Architecture": "amd64", + "Architecture": "arm64", "Variants": null, "Versions": null, "Type": "linux", @@ -41305,7 +36938,7 @@ }, { "Class": "OS", - "Architecture": "arm64", + "Architecture": "amd64", "Variants": null, "Versions": null, "Type": "linux", @@ -41345,27 +36978,27 @@ { "name": "signalfx-agent", "url": "https://quay.io/repository/signalfx/signalfx-agent", - "popularity": 3304404.0 + "popularity": 4302999.0 }, { "name": "agent", "url": "https://quay.io/repository/sysdig/agent", - "popularity": 259479.0 + "popularity": 256894.0 }, { "name": "mongodb-agent", "url": "https://quay.io/repository/mongodb/mongodb-agent", - "popularity": 270773.0 + "popularity": 260822.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "workload-agent", "url": "https://quay.io/repository/sysdig/workload-agent", - "popularity": 260677.0 + "popularity": 247186.0 } ] }, @@ -41388,7 +37021,7 @@ { "name": "requestor", "url": "https://quay.io/repository/cdis/requestor", - "popularity": 3148.0 + "popularity": 2703.0 }, { "name": "qpid-requestor", @@ -41421,27 +37054,27 @@ { "name": "explorer-bff", "url": "https://quay.io/repository/decentraland/explorer-bff", - "popularity": 251.0 + "popularity": 232.0 }, { "name": "pso-explorer", "url": "https://quay.io/repository/purestorage/pso-explorer", - "popularity": 477.0 + "popularity": 480.0 }, { "name": "explorer", "url": "https://quay.io/repository/jkunstle/explorer", - "popularity": 857.0 + "popularity": 878.0 }, { "name": "bitcoin-explorer", "url": "https://quay.io/repository/hirosystems/bitcoin-explorer", - "popularity": 123.0 + "popularity": 129.0 }, { - "name": "explorer-metrics", - "url": "https://quay.io/repository/decentraland/explorer-metrics", - "popularity": 2.0 + "name": "cnv-version-explorer", + "url": "https://quay.io/repository/orenc/cnv-version-explorer", + "popularity": 7.0 } ] }, @@ -41501,27 +37134,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 + }, + { + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -41647,27 +37280,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "haproxy-ingress", "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", - "popularity": 909887.0 + "popularity": 857217.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 421059.0 + "popularity": 430335.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 } ] }, @@ -41709,27 +37342,27 @@ { "name": "signalfx-agent", "url": "https://quay.io/repository/signalfx/signalfx-agent", - "popularity": 3304404.0 + "popularity": 4302999.0 }, { "name": "bored-agent", "url": "https://quay.io/repository/k8slens/bored-agent", - "popularity": 174771.0 + "popularity": 168372.0 }, { "name": "agent", "url": "https://quay.io/repository/sysdig/agent", - "popularity": 259479.0 + "popularity": 256894.0 }, { "name": "mongodb-agent", "url": "https://quay.io/repository/mongodb/mongodb-agent", - "popularity": 270773.0 + "popularity": 260822.0 }, { "name": "workload-agent", "url": "https://quay.io/repository/sysdig/workload-agent", - "popularity": 260677.0 + "popularity": 247186.0 } ] }, @@ -41789,27 +37422,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 + }, + { + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -41832,27 +37465,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "mongodb-enterprise-database", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", - "popularity": 101454.0 + "popularity": 99140.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -41912,27 +37545,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wire-server-cache", "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 42554.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -41974,27 +37607,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "ibm-management-ingress-operator", "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 156321.0 + "popularity": 157394.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -42072,27 +37705,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "cf-docker-builder", "url": "https://quay.io/repository/codefresh/cf-docker-builder", - "popularity": 80159.0 + "popularity": 84473.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -42152,27 +37785,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 + }, + { + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -42212,27 +37845,27 @@ { "name": "ocp-release", "url": "https://quay.io/repository/openshift-release-dev/ocp-release", - "popularity": 41511623.0 + "popularity": 43570374.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "thanos", "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2526636.0 + "popularity": 2497215.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -42255,27 +37888,27 @@ { "name": "sap-side-by-side-be", "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", - "popularity": 3641.0 + "popularity": 3639.0 }, { "name": "sap-btp-operator", "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", - "popularity": 108.0 + "popularity": 102.0 }, { "name": "container-image-registry", "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7568.0 + "popularity": 7567.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", - "popularity": 6663.0 + "popularity": 6669.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/miminar/sdi-observer", - "popularity": 169.0 + "popularity": 170.0 } ] }, @@ -42351,27 +37984,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "alpine-ext-kernel-boot-demo", "url": "https://quay.io/repository/kubevirt/alpine-ext-kernel-boot-demo", - "popularity": 7437.0 + "popularity": 7326.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 102256.0 + "popularity": 102060.0 }, { "name": "container-image-registry", "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7568.0 + "popularity": 7567.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8041.0 + "popularity": 8741.0 } ] }, @@ -42422,27 +38055,27 @@ { "name": "central-db", "url": "https://quay.io/repository/stackrox-io/central-db", - "popularity": 884.0 + "popularity": 569.0 }, { "name": "centos-binary-ceilometer-central", "url": "https://quay.io/repository/tripleotraincentos8/centos-binary-ceilometer-central", - "popularity": 414.0 + "popularity": 404.0 }, { "name": "business-central-workbench-showcase", "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", - "popularity": 637.0 + "popularity": 657.0 }, { "name": "openstack-ceilometer-central", - "url": "https://quay.io/repository/tripleowallaby/openstack-ceilometer-central", - "popularity": 384.0 + "url": "https://quay.io/repository/tripleomastercentos9/openstack-ceilometer-central", + "popularity": 395.0 }, { "name": "business-central-workbench", "url": "https://quay.io/repository/kiegroup/business-central-workbench", - "popularity": 600.0 + "popularity": 646.0 } ] }, @@ -42482,27 +38115,27 @@ { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52832.0 + "popularity": 52822.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 + "popularity": 30527.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20354.0 + "popularity": 20583.0 }, { "name": "daemon", "url": "https://quay.io/repository/ceph/daemon", - "popularity": 9604.0 + "popularity": 9586.0 }, { "name": "freeipa-server", "url": "https://quay.io/repository/freeipa/freeipa-server", - "popularity": 1243.0 + "popularity": 911.0 } ] }, @@ -42555,12 +38188,12 @@ ] }, { - "name": "rancher/library-busybox", + "name": "rancher/library-traefik", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/rancher/library-busybox", + "star_count": 3, + "Docker_Url": "https://hub.docker.com/r/rancher/library-traefik", "OS": [ { "Class": "OS", @@ -42585,10 +38218,20 @@ "Versions": null, "Type": "linux", "Subtype": "" - }, + } + ] + }, + { + "name": "rancher/library-busybox", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/rancher/library-busybox", + "OS": [ { "Class": "OS", - "Architecture": "arm", + "Architecture": "amd64", "Variants": null, "Versions": null, "Type": "linux", @@ -42596,7 +38239,7 @@ }, { "Class": "OS", - "Architecture": "arm", + "Architecture": "arm64", "Variants": null, "Versions": null, "Type": "linux", @@ -42604,25 +38247,15 @@ }, { "Class": "OS", - "Architecture": "s390x", + "Architecture": "arm", "Variants": null, "Versions": null, "Type": "linux", "Subtype": "" - } - ] - }, - { - "name": "rancher/library-traefik", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 3, - "Docker_Url": "https://hub.docker.com/r/rancher/library-traefik", - "OS": [ + }, { "Class": "OS", - "Architecture": "amd64", + "Architecture": "arm", "Variants": null, "Versions": null, "Type": "linux", @@ -42630,7 +38263,7 @@ }, { "Class": "OS", - "Architecture": "arm64", + "Architecture": "arm", "Variants": null, "Versions": null, "Type": "linux", @@ -42638,7 +38271,7 @@ }, { "Class": "OS", - "Architecture": "arm", + "Architecture": "s390x", "Variants": null, "Versions": null, "Type": "linux", @@ -42704,27 +38337,27 @@ { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 }, { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 378922.0 + "popularity": 395380.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 } ] }, @@ -42764,27 +38397,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 }, { "name": "samtools", "url": "https://quay.io/repository/biocontainers/samtools", - "popularity": 109822.0 + "popularity": 120126.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 + "popularity": 30527.0 } ] }, @@ -42844,27 +38477,27 @@ { "name": "windows-upgrade", "url": "https://quay.io/repository/calico/windows-upgrade", - "popularity": 7607.0 + "popularity": 7652.0 }, { "name": "community-windows-machine-config-operator", "url": "https://quay.io/repository/openshift-windows/community-windows-machine-config-operator", - "popularity": 181.0 + "popularity": 180.0 }, { "name": "community-windows-machine-config-operator", "url": "https://quay.io/repository/openshift-community-operators/community-windows-machine-config-operator", - "popularity": 398.0 + "popularity": 253.0 }, { "name": "che-machine-exec", "url": "https://quay.io/repository/eclipse/che-machine-exec", - "popularity": 7797.0 + "popularity": 7943.0 }, { "name": "golang-builder", "url": "https://quay.io/repository/prometheus/golang-builder", - "popularity": 2871.0 + "popularity": 3159.0 } ] }, @@ -42924,27 +38557,27 @@ { "name": "workflow-controller", "url": "https://quay.io/repository/argoproj/workflow-controller", - "popularity": 1182422.0 + "popularity": 1172724.0 }, { "name": "workflow-service", "url": "https://quay.io/repository/ukhomeofficedigital/workflow-service", - "popularity": 211.0 + "popularity": 246.0 }, { "name": "windows-upgrade", "url": "https://quay.io/repository/calico/windows-upgrade", - "popularity": 7607.0 + "popularity": 7652.0 }, { "name": "workflow-helpers", "url": "https://quay.io/repository/thoth-station/workflow-helpers", - "popularity": 2545.0 + "popularity": 2533.0 }, { "name": "workflow-controller", "url": "https://quay.io/repository/codefresh/workflow-controller", - "popularity": 2429.0 + "popularity": 2381.0 } ] }, @@ -43076,27 +38709,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "insights-db-migration", "url": "https://quay.io/repository/fairwinds/insights-db-migration", - "popularity": 65723.0 + "popularity": 58201.0 }, { "name": "gitlab-runner-docker-cleanup", "url": "https://quay.io/repository/gitlab/gitlab-runner-docker-cleanup", - "popularity": 796772.0 + "popularity": 783797.0 }, { - "name": "tool-box", - "url": "https://quay.io/repository/redhat-cop/tool-box", - "popularity": 3871.0 + "name": "knative-serving-storage-version-migration", + "url": "https://quay.io/repository/openshift-knative/knative-serving-storage-version-migration", + "popularity": 3011.0 }, { "name": "audit-syslog-service", "url": "https://quay.io/repository/opencloudio/audit-syslog-service", - "popularity": 130197.0 + "popularity": 126512.0 } ] }, @@ -43138,27 +38771,27 @@ { "name": "application-service", "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 116853.0 + "popularity": 133096.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 163268.0 + "popularity": 165365.0 }, { "name": "hubble-relay", "url": "https://quay.io/repository/cilium/hubble-relay", - "popularity": 118685.0 + "popularity": 117328.0 } ] }, @@ -43276,27 +38909,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96679165.0 + "popularity": 96986027.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 92762600.0 + "popularity": 93058787.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 92854581.0 + "popularity": 93141016.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 920253.0 + "popularity": 939648.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1343874.0 + "popularity": 1359497.0 } ] }, @@ -43319,27 +38952,27 @@ { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 }, { "name": "jboss-eap-6.4-switchyard", "url": "https://quay.io/repository/ubpo/jboss-eap-6.4-switchyard", - "popularity": 3350.0 + "popularity": 3349.0 }, { "name": "jboss-kie-mysql-extension-openshift-image", "url": "https://quay.io/repository/kiegroup/jboss-kie-mysql-extension-openshift-image", - "popularity": 2608.0 + "popularity": 2662.0 }, { "name": "wildfly", "url": "https://quay.io/repository/wildfly/wildfly", - "popularity": 7410.0 + "popularity": 7782.0 }, { "name": "business-central-workbench-showcase", "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", - "popularity": 637.0 + "popularity": 657.0 } ] }, @@ -43417,7 +39050,7 @@ { "name": "wildfly", "url": "https://quay.io/repository/wildfly/wildfly", - "popularity": 7410.0 + "popularity": 7782.0 }, { "name": "wildfly", @@ -43427,44 +39060,44 @@ { "name": "wildfly", "url": "https://quay.io/repository/operatorhubio/wildfly", - "popularity": 288.0 + "popularity": 256.0 }, { "name": "wildfly", "url": "https://quay.io/repository/halconsole/wildfly", - "popularity": 520.0 + "popularity": 519.0 }, { "name": "wildfly", "url": "https://quay.io/repository/alousta_us/wildfly", - "popularity": 172.0 + "popularity": 173.0 } ], "quay_top_images": [ { "name": "wildfly-centos7", "url": "https://quay.io/repository/wildfly/wildfly-centos7", - "popularity": 2789449.0 + "popularity": 2841120.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 }, { "name": "wildfly", "url": "https://quay.io/repository/wildfly/wildfly", - "popularity": 7410.0 + "popularity": 7782.0 }, { "name": "wildfly-s2i-jdk11", "url": "https://quay.io/repository/wildfly/wildfly-s2i-jdk11", - "popularity": 740.0 + "popularity": 704.0 }, { "name": "wildfly", "url": "https://quay.io/repository/halconsole/wildfly", - "popularity": 520.0 + "popularity": 519.0 } ] }, @@ -43520,12 +39153,12 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "kasmweb/oracle-8-desktop", + "name": "kasmweb/oracle-7-desktop", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", "OS": [ { "Class": "OS", @@ -43534,24 +39167,16 @@ "Versions": null, "Type": "linux", "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" } ] }, { - "name": "kasmweb/oracle-7-desktop", + "name": "kasmweb/oracle-8-desktop", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-7-desktop", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/kasmweb/oracle-8-desktop", "OS": [ { "Class": "OS", @@ -43560,6 +39185,14 @@ "Versions": null, "Type": "linux", "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" } ] } @@ -43571,27 +39204,27 @@ { "name": "gateway", "url": "https://quay.io/repository/solo-io/gateway", - "popularity": 345983.0 + "popularity": 300044.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15042.0 + "popularity": 14960.0 }, { "name": "gateway", "url": "https://quay.io/repository/bluecat/gateway", - "popularity": 20583.0 + "popularity": 20568.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 421059.0 + "popularity": 430335.0 } ] }, @@ -43633,27 +39266,27 @@ { "name": "startup-script", "url": "https://quay.io/repository/cilium/startup-script", - "popularity": 257361.0 + "popularity": 272890.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 79034.0 + "popularity": 78097.0 }, { "name": "podman", "url": "https://quay.io/repository/containers/podman", - "popularity": 20563.0 - }, - { - "name": "netbox", - "url": "https://quay.io/repository/netboxcommunity/netbox", - "popularity": 11302.0 + "popularity": 21358.0 }, { "name": "ubuntu", "url": "https://quay.io/repository/baselibrary/ubuntu", - "popularity": 79437.0 + "popularity": 79482.0 + }, + { + "name": "netbox", + "url": "https://quay.io/repository/netboxcommunity/netbox", + "popularity": 10714.0 } ] }, @@ -43693,27 +39326,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1343874.0 + "popularity": 1359497.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 }, { "name": "samtools", "url": "https://quay.io/repository/biocontainers/samtools", - "popularity": 109822.0 + "popularity": 120126.0 } ] }, @@ -44434,27 +40067,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 82319.0 + "popularity": 79779.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 79034.0 + "popularity": 78097.0 }, { "name": "chart-testing", "url": "https://quay.io/repository/helmpack/chart-testing", - "popularity": 36767.0 + "popularity": 38259.0 }, { "name": "soketi", "url": "https://quay.io/repository/soketi/soketi", - "popularity": 31737.0 + "popularity": 37098.0 } ] }, @@ -44465,68 +40098,6 @@ "entity_type": 10, "entity_id": 498 }, - { - "Active Server Pages": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "rancher/server", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "node-exporter", - "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 - }, - { - "name": "shadowbox", - "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 - }, - { - "name": "wildfly-runtime-centos7", - "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 10, - "entity_id": 499 - }, { "ActiveX": [ { @@ -44619,27 +40190,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 883725.0 + "popularity": 897952.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 403203.0 + "popularity": 412719.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 + "popularity": 265927.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 } ] }, @@ -44702,7 +40273,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 1989, + "star_count": 1990, "Docker_Url": "https://hub.docker.com/_/docker", "OS": [ { @@ -44724,7 +40295,34 @@ ] } ], - "dockerhub_top_images": [] + "dockerhub_top_images": [ + { + "name": "docker", + "Official image": true, + "Verified Publisher": false, + "Description": "", + "star_count": 1990, + "Docker_Url": "https://hub.docker.com/_/docker", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] }, { "quay_exact_images": [], @@ -44732,27 +40330,27 @@ { "name": "gitlab-runner-docker-cleanup", "url": "https://quay.io/repository/gitlab/gitlab-runner-docker-cleanup", - "popularity": 796772.0 + "popularity": 783797.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "thanos", "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2526636.0 + "popularity": 2497215.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -44957,7 +40555,7 @@ { "name": "flash", "url": "https://quay.io/repository/biocontainers/flash", - "popularity": 26.0 + "popularity": 14.0 }, { "name": "flash", @@ -44984,7 +40582,7 @@ { "name": "flash", "url": "https://quay.io/repository/biocontainers/flash", - "popularity": 26.0 + "popularity": 14.0 }, { "name": "flash", @@ -45046,27 +40644,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 }, { "name": "nginx-ingress-controller", "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1214037.0 + "popularity": 1244426.0 } ] }, @@ -45162,27 +40760,27 @@ { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "standard-environment", "url": "https://quay.io/repository/domino/standard-environment", - "popularity": 53544.0 + "popularity": 52054.0 }, { "name": "astro-runtime", "url": "https://quay.io/repository/astronomer/astro-runtime", - "popularity": 40355.0 + "popularity": 33764.0 }, { "name": "vuln-runtime-scanner", "url": "https://quay.io/repository/sysdig/vuln-runtime-scanner", - "popularity": 28715.0 + "popularity": 32686.0 } ] }, @@ -45199,12 +40797,12 @@ "dockerhub_exact_images": [], "dockerhub_top_images": [ { - "name": "cimg/node", + "name": "bitnami/node", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 13, - "Docker_Url": "https://hub.docker.com/r/cimg/node", + "star_count": 64, + "Docker_Url": "https://hub.docker.com/r/bitnami/node", "OS": [ { "Class": "OS", @@ -45217,12 +40815,12 @@ ] }, { - "name": "bitnami/node", + "name": "cimg/node", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 64, - "Docker_Url": "https://hub.docker.com/r/bitnami/node", + "star_count": 13, + "Docker_Url": "https://hub.docker.com/r/cimg/node", "OS": [ { "Class": "OS", @@ -45257,7 +40855,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 11711, + "star_count": 11713, "Docker_Url": "https://hub.docker.com/_/node", "OS": [ { @@ -45318,27 +40916,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "node", "url": "https://quay.io/repository/calico/node", - "popularity": 15166971.0 + "popularity": 15180319.0 }, { "name": "csi-node-driver-registrar", "url": "https://quay.io/repository/k8scsi/csi-node-driver-registrar", - "popularity": 1095732.0 + "popularity": 1098883.0 }, { "name": "node-image-analyzer", "url": "https://quay.io/repository/sysdig/node-image-analyzer", - "popularity": 326015.0 + "popularity": 332278.0 }, { "name": "node-disk-manager-amd64", "url": "https://quay.io/repository/openebs/node-disk-manager-amd64", - "popularity": 171233.0 + "popularity": 171910.0 } ] }, @@ -45457,12 +41055,12 @@ ] }, { - "name": "cimg/ruby", + "name": "bitnami/ruby", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, - "Docker_Url": "https://hub.docker.com/r/cimg/ruby", + "star_count": 21, + "Docker_Url": "https://hub.docker.com/r/bitnami/ruby", "OS": [ { "Class": "OS", @@ -45475,12 +41073,12 @@ ] }, { - "name": "bitnami/ruby", + "name": "cimg/ruby", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 21, - "Docker_Url": "https://hub.docker.com/r/bitnami/ruby", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/cimg/ruby", "OS": [ { "Class": "OS", @@ -45500,27 +41098,27 @@ { "name": "ruby-27-centos7", "url": "https://quay.io/repository/centos7/ruby-27-centos7", - "popularity": 254382.0 + "popularity": 259203.0 }, { "name": "ruby-26-centos7", "url": "https://quay.io/repository/centos7/ruby-26-centos7", - "popularity": 170674.0 + "popularity": 172628.0 }, { "name": "ruby-25-centos7", "url": "https://quay.io/repository/centos7/ruby-25-centos7", - "popularity": 73389.0 + "popularity": 73632.0 }, { "name": "ruby-27", "url": "https://quay.io/repository/openshifttest/ruby-27", - "popularity": 16742.0 + "popularity": 17897.0 }, { "name": "ruby-cron", "url": "https://quay.io/repository/palettecloud/ruby-cron", - "popularity": 10816.0 + "popularity": 9561.0 } ] }, @@ -45560,7 +41158,7 @@ { "name": "powerstore_exporter", "url": "https://quay.io/repository/kckecheng/powerstore_exporter", - "popularity": 1.0 + "popularity": 11.0 }, { "name": "emc-neo-antigen", @@ -45593,27 +41191,27 @@ { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 }, { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1343874.0 + "popularity": 1359497.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 254930.0 + "popularity": 258719.0 } ] }, @@ -45702,27 +41300,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "coreos-assembler", "url": "https://quay.io/repository/coreos-assembler/coreos-assembler", - "popularity": 25078.0 + "popularity": 25254.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 + "popularity": 90209.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 + "popularity": 30527.0 }, { "name": "rust", "url": "https://quay.io/repository/instrumentisto/rust", - "popularity": 2318.0 + "popularity": 2351.0 } ] }, @@ -45764,27 +41362,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 254930.0 + "popularity": 258719.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 193426.0 + "popularity": 198257.0 } ] }, @@ -45807,27 +41405,27 @@ { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 382812.0 + "popularity": 369342.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 254930.0 + "popularity": 258719.0 }, { "name": "teleport", "url": "https://quay.io/repository/gravitational/teleport", - "popularity": 145184.0 + "popularity": 137803.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 193426.0 + "popularity": 198257.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 146710.0 + "popularity": 151149.0 } ] }, @@ -45973,27 +41571,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 421059.0 + "popularity": 430335.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 } ] }, @@ -46035,27 +41633,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 382812.0 + "popularity": 369342.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 254930.0 + "popularity": 258719.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 193426.0 + "popularity": 198257.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 146710.0 + "popularity": 151149.0 } ] }, @@ -46112,30 +41710,30 @@ { "quay_exact_images": [], "quay_top_images": [ + { + "name": "common-web-ui", + "url": "https://quay.io/repository/opencloudio/common-web-ui", + "popularity": 395380.0 + }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 }, { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 382812.0 + "popularity": 369342.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 - }, - { - "name": "ceph", - "url": "https://quay.io/repository/ceph/ceph", - "popularity": 380580.0 + "popularity": 411336.0 } ] }, @@ -46195,26 +41793,26 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 + "popularity": 90209.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 + "popularity": 30527.0 }, { - "name": "gateway", - "url": "https://quay.io/repository/bluecat/gateway", + "name": "cloud-native-postgresql", + "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", "popularity": 20583.0 } ] @@ -46238,27 +41836,27 @@ { "name": "zen-data-sorcerer", "url": "https://quay.io/repository/opencloudio/zen-data-sorcerer", - "popularity": 225384.0 + "popularity": 225217.0 }, { "name": "metering-data-manager", "url": "https://quay.io/repository/opencloudio/metering-data-manager", - "popularity": 212073.0 + "popularity": 212512.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 380580.0 + "popularity": 370506.0 } ] }, @@ -46306,27 +41904,27 @@ { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 254930.0 + "popularity": 258719.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 245318.0 + "popularity": 250172.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 193426.0 + "popularity": 198257.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183645.0 + "popularity": 183319.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 146710.0 + "popularity": 151149.0 } ] }, @@ -47054,27 +42652,27 @@ { "name": "zen-data-sorcerer", "url": "https://quay.io/repository/opencloudio/zen-data-sorcerer", - "popularity": 225384.0 + "popularity": 225217.0 }, { "name": "metering-data-manager", "url": "https://quay.io/repository/opencloudio/metering-data-manager", - "popularity": 212073.0 + "popularity": 212512.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "s2i-generic-data-science-notebook", "url": "https://quay.io/repository/thoth-station/s2i-generic-data-science-notebook", - "popularity": 21846.0 + "popularity": 22218.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 } ] }, @@ -47097,27 +42695,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 378922.0 + "popularity": 395380.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -47140,27 +42738,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "java", "url": "https://quay.io/repository/enxadahost/java", - "popularity": 21708.0 + "popularity": 21441.0 }, { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 382812.0 + "popularity": 369342.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 380580.0 + "popularity": 370506.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 254930.0 + "popularity": 258719.0 } ] }, @@ -47249,12 +42847,12 @@ ] }, { - "name": "ibmcom/verify-access-dsc", + "name": "ibmcom/verify-access-wrp", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-dsc", + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-wrp", "OS": [ { "Class": "OS", @@ -47274,27 +42872,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 421059.0 + "popularity": 430335.0 }, { "name": "concourse-ssh-resource", "url": "https://quay.io/repository/henry40408/concourse-ssh-resource", - "popularity": 149507.0 + "popularity": 160391.0 }, { "name": "ibm-commonui-operator", "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", - "popularity": 113315.0 + "popularity": 112605.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 + "popularity": 90209.0 } ] }, @@ -47317,27 +42915,27 @@ { "name": "olm", "url": "https://quay.io/repository/operator-framework/olm", - "popularity": 1343874.0 + "popularity": 1359497.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 421059.0 + "popularity": 430335.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 254930.0 + "popularity": 258719.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 245318.0 + "popularity": 250172.0 } ] }, @@ -47429,27 +43027,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 380580.0 + "popularity": 370506.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 254930.0 + "popularity": 258719.0 } ] }, @@ -47517,27 +43115,27 @@ { "name": "common-web-ui", "url": "https://quay.io/repository/opencloudio/common-web-ui", - "popularity": 378922.0 + "popularity": 395380.0 }, { "name": "haproxy-ingress", "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", - "popularity": 909887.0 + "popularity": 857217.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 421059.0 + "popularity": 430335.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 } ] }, @@ -47548,49 +43146,6 @@ "entity_type": 1, "entity_id": 527 }, - { - "Reporting Services": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "haproxy-ingress", - "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", - "popularity": 909887.0 - }, - { - "name": "ambassador", - "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 421059.0 - }, - { - "name": "cilium", - "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 - }, - { - "name": "operator-generic", - "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 163268.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 1, - "entity_id": 528 - }, { "Representational State Transfer": [ { @@ -47622,27 +43177,27 @@ { "name": "kube-state-metrics", "url": "https://quay.io/repository/coreos/kube-state-metrics", - "popularity": 1016002.0 + "popularity": 958588.0 }, { "name": "origin-openshift-state-metrics", "url": "https://quay.io/repository/openshift/origin-openshift-state-metrics", - "popularity": 5812.0 + "popularity": 5975.0 }, { "name": "origin-kube-state-metrics", "url": "https://quay.io/repository/openshift/origin-kube-state-metrics", - "popularity": 3528.0 + "popularity": 3507.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 + "popularity": 30527.0 }, { "name": "kafka-bridge", "url": "https://quay.io/repository/strimzi/kafka-bridge", - "popularity": 14244.0 + "popularity": 14164.0 } ] }, @@ -47665,27 +43220,27 @@ { "name": "common-service-operator", "url": "https://quay.io/repository/opencloudio/common-service-operator", - "popularity": 284079.0 + "popularity": 300956.0 }, { "name": "service-catalog", "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", - "popularity": 330422.0 + "popularity": 329446.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 } ] }, @@ -47708,27 +43263,27 @@ { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 421059.0 + "popularity": 430335.0 }, { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 382812.0 + "popularity": 369342.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 254930.0 + "popularity": 258719.0 }, { "name": "concourse-ssh-resource", "url": "https://quay.io/repository/henry40408/concourse-ssh-resource", - "popularity": 149507.0 + "popularity": 160391.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 193426.0 + "popularity": 198257.0 } ] }, @@ -47739,244 +43294,6 @@ "entity_type": 1, "entity_id": 531 }, - { - "SQL": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "gooddata/sql-executor", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/gooddata/sql-executor", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "apicurio-registry-sql", - "url": "https://quay.io/repository/apicurio/apicurio-registry-sql", - "popularity": 14608.0 - }, - { - "name": "mariadb-103-centos7", - "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 245318.0 - }, - { - "name": "mariadb-105-centos7", - "url": "https://quay.io/repository/centos7/mariadb-105-centos7", - "popularity": 142292.0 - }, - { - "name": "soketi", - "url": "https://quay.io/repository/soketi/soketi", - "popularity": 31737.0 - }, - { - "name": "mysqld-exporter", - "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17355.0 - } - ] - }, - { - "operators": [ - { - "package_id": "62d3a0f9-3d23-48f0-9bee-9b4f2060c6df", - "name": "postgresql", - "normalized_name": "postgresql", - "logo_image_id": "4f3014a1-5169-4769-9c52-661637b1fdb4", - "stars": 13, - "display_name": "Crunchy Postgres for Kubernetes", - "description": "Production Postgres Made Easy", - "version": "5.1.2", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 23, - "high": 0, - "medium": 32, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1657571435, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/CrunchyData/postgres-operator", - "container_images": [] - }, - { - "package_id": "66a8d8ef-e05d-44be-b704-474e144b8b9b", - "name": "tidb-operator", - "normalized_name": "tidb-operator", - "logo_image_id": "b328c448-efbb-4aab-a463-8437ab8898bb", - "stars": 7, - "display_name": "TiDB Operator", - "description": "TiDB Operator manages TiDB clusters on Kubernetes and automates tasks related to operating a TiDB cluster. It makes TiDB a truly cloud-native database.", - "version": "1.3.1", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 4, - "high": 8, - "medium": 31, - "unknown": 8, - "critical": 2 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 1, - "ts": 1645693233, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/pingcap/tidb-operator", - "container_images": [] - }, - { - "package_id": "0246f8b7-d8d5-4880-a099-1e1e84cc127f", - "name": "cloud-native-postgresql", - "normalized_name": "cloud-native-postgresql", - "logo_image_id": "33922b5a-7a59-46b9-baba-8bc9e74c3457", - "stars": 1, - "display_name": "EDB Postgres for Kubernetes", - "description": "Operator to manage Postgres high availability clusters with a primary/standby architecture.", - "version": "1.15.1", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 23, - "high": 1, - "medium": 32, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1654016342, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://www.enterprisedb.com/docs/postgres_for_kubernetes/latest/", - "container_images": [ - "quay.io/enterprisedb/cloud-native-postgresql" - ] - }, - { - "package_id": "f8501214-7170-40b0-8449-d3c8e4f63505", - "name": "mysql", - "normalized_name": "mysql", - "logo_image_id": "751286dc-9e5c-4218-b8bf-98b2b0052231", - "stars": 0, - "display_name": "GrdsCloud MySQL for Kubernetes", - "description": "Enterprise open source MySQL-as-a-Service", - "version": "1.0.0", - "deprecated": false, - "signed": false, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1621525858, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/GrdsCloud", - "container_images": [] - }, - { - "package_id": "d4082ba3-8c37-4dae-8771-6b11dc7c0f33", - "name": "percona-postgresql-operator", - "normalized_name": "percona-postgresql-operator", - "logo_image_id": "0b8875cd-6661-4269-9cf6-0fd92d59017b", - "stars": 0, - "display_name": "Percona Operator for PostgreSQL", - "description": "Percona Operator for PostgreSQL manages the lifecycle of Percona PostgreSQL cluster instances.", - "version": "1.2.0", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 25, - "high": 2, - "medium": 32, - "unknown": 0, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1649682704, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/percona/percona-postgresql-operator", - "container_images": [] - } - ] - } - ], - "entity_type": 9, - "entity_id": 532 - }, { "YAML": [ { @@ -47989,27 +43306,27 @@ { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183645.0 + "popularity": 183319.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 102256.0 + "popularity": 102060.0 }, { "name": "che-plugin-artifacts-broker", "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", - "popularity": 19550.0 + "popularity": 19392.0 }, { "name": "spark-operator", "url": "https://quay.io/repository/radanalyticsio/spark-operator", - "popularity": 25565.0 + "popularity": 25375.0 }, { "name": "kata-deploy", "url": "https://quay.io/repository/kata-containers/kata-deploy", - "popularity": 15324.0 + "popularity": 21496.0 } ] }, @@ -48020,49 +43337,6 @@ "entity_type": 1, "entity_id": 533 }, - { - "Model-view-controller": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "cert-manager-controller", - "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96679165.0 - }, - { - "name": "nginx-ingress-controller", - "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1214037.0 - }, - { - "name": "workflow-controller", - "url": "https://quay.io/repository/argoproj/workflow-controller", - "popularity": 1182422.0 - }, - { - "name": "controller", - "url": "https://quay.io/repository/metallb/controller", - "popularity": 241290.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 1, - "entity_id": 534 - }, { "Application Server": [ { @@ -48112,27 +43386,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "application-service", "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 116853.0 + "popularity": 133096.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -48202,6 +43476,24 @@ "Subtype": "" } ] + }, + { + "name": "ibmcom/cloud-builders-gcs-fetcher-ppc64le", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/cloud-builders-gcs-fetcher-ppc64le", + "OS": [ + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] } ] }, @@ -48211,27 +43503,27 @@ { "name": "cloud-connector", "url": "https://quay.io/repository/sysdig/cloud-connector", - "popularity": 1192367.0 + "popularity": 1158880.0 }, { "name": "cloud-connector-s3-bucket-config", "url": "https://quay.io/repository/sysdig/cloud-connector-s3-bucket-config", - "popularity": 629482.0 + "popularity": 619283.0 }, { "name": "cloud-scanning", "url": "https://quay.io/repository/sysdig/cloud-scanning", - "popularity": 167476.0 + "popularity": 167557.0 }, { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 382812.0 + "popularity": 369342.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 } ] }, @@ -48988,27 +44280,27 @@ { "name": "ocp-release", "url": "https://quay.io/repository/openshift-release-dev/ocp-release", - "popularity": 41511623.0 + "popularity": 43570374.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { - "name": "thanos", - "url": "https://quay.io/repository/thanos/thanos", - "popularity": 2526636.0 + "name": "wildfly-runtime-centos7", + "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", + "popularity": 2536622.0 } ] }, @@ -49031,27 +44323,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "device-plugin-network-bridge", "url": "https://quay.io/repository/kubevirt/device-plugin-network-bridge", - "popularity": 170849.0 + "popularity": 170756.0 }, { "name": "node-disk-manager-amd64", "url": "https://quay.io/repository/openebs/node-disk-manager-amd64", - "popularity": 171233.0 + "popularity": 171910.0 }, { "name": "mongodb-enterprise-operator", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-operator", - "popularity": 148414.0 + "popularity": 104567.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 102256.0 + "popularity": 102060.0 } ] }, @@ -49074,27 +44366,27 @@ { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "business-central-workbench-showcase", "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", - "popularity": 637.0 + "popularity": 657.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52832.0 + "popularity": 52822.0 }, { "name": "vouch-proxy", "url": "https://quay.io/repository/vouch/vouch-proxy", - "popularity": 23665.0 + "popularity": 24227.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8041.0 + "popularity": 8741.0 } ] }, @@ -49208,27 +44500,27 @@ { "name": "common-service-operator", "url": "https://quay.io/repository/opencloudio/common-service-operator", - "popularity": 284079.0 + "popularity": 300956.0 }, { "name": "service-catalog", "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", - "popularity": 330422.0 + "popularity": 329446.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 } ] }, @@ -49306,27 +44598,27 @@ { "name": "concourse-file-resource", "url": "https://quay.io/repository/henry40408/concourse-file-resource", - "popularity": 662170.0 + "popularity": 662317.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -49349,27 +44641,27 @@ { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 36573.0 + "popularity": 30531.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17355.0 + "popularity": 17958.0 }, { "name": "multiqc", "url": "https://quay.io/repository/biocontainers/multiqc", - "popularity": 30213.0 + "popularity": 43577.0 }, { "name": "rseqc", "url": "https://quay.io/repository/biocontainers/rseqc", - "popularity": 5788.0 + "popularity": 8903.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8041.0 + "popularity": 8741.0 } ] }, @@ -49411,27 +44703,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "nginx-ingress-controller", "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1214037.0 + "popularity": 1244426.0 }, { "name": "haproxy-ingress", "url": "https://quay.io/repository/jcmoraisjr/haproxy-ingress", - "popularity": 909887.0 + "popularity": 857217.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 883725.0 + "popularity": 897952.0 } ] }, @@ -49442,86 +44734,6 @@ "entity_type": 1, "entity_id": 543 }, - { - "HTTP Server": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "rancher/server", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 602, - "Docker_Url": "https://hub.docker.com/r/rancher/server", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "atlassian/server-client-plugins", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "node-exporter", - "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 - }, - { - "name": "shadowbox", - "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wildfly-runtime-centos7", - "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 - }, - { - "name": "nginx-ingress-controller", - "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1214037.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 1, - "entity_id": 544 - }, { "Integrated Safe System of Work": [ { @@ -49534,27 +44746,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 421059.0 + "popularity": 430335.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 380580.0 + "popularity": 370506.0 } ] }, @@ -49577,27 +44789,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "monitoring-stack-operator-catalog", "url": "https://quay.io/repository/tsisodia10/monitoring-stack-operator-catalog", - "popularity": 19229.0 + "popularity": 19064.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 380580.0 + "popularity": 370506.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183645.0 + "popularity": 183319.0 }, { - "name": "ibm-monitoring-grafana-operator", - "url": "https://quay.io/repository/opencloudio/ibm-monitoring-grafana-operator", - "popularity": 19136.0 + "name": "invidious", + "url": "https://quay.io/repository/invidious/invidious", + "popularity": 30531.0 } ] }, @@ -49668,12 +44880,12 @@ ] }, { - "name": "ibmcom/verify-access-dsc", + "name": "ibmcom/verify-access-wrp", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-dsc", + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-wrp", "OS": [ { "Class": "OS", @@ -49686,12 +44898,12 @@ ] }, { - "name": "ibmcom/verify-access-wrp", + "name": "ibmcom/verify-access-dsc", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-wrp", + "Docker_Url": "https://hub.docker.com/r/ibmcom/verify-access-dsc", "OS": [ { "Class": "OS", @@ -49711,27 +44923,27 @@ { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 421059.0 + "popularity": 430335.0 }, { "name": "concourse-ssh-resource", "url": "https://quay.io/repository/henry40408/concourse-ssh-resource", - "popularity": 149507.0 + "popularity": 160391.0 }, { "name": "ibm-commonui-operator", "url": "https://quay.io/repository/opencloudio/ibm-commonui-operator", - "popularity": 113315.0 + "popularity": 112605.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 + "popularity": 90209.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183645.0 + "popularity": 183319.0 } ] }, @@ -49792,27 +45004,27 @@ { "name": "json-mock", "url": "https://quay.io/repository/cilium/json-mock", - "popularity": 17844.0 + "popularity": 16628.0 }, { "name": "json-exporter", "url": "https://quay.io/repository/prometheuscommunity/json-exporter", - "popularity": 22627.0 + "popularity": 21442.0 }, { "name": "audit-syslog-service", "url": "https://quay.io/repository/opencloudio/audit-syslog-service", - "popularity": 130197.0 + "popularity": 126512.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20354.0 + "popularity": 20583.0 }, { "name": "haproxy-exporter", "url": "https://quay.io/repository/prometheus/haproxy-exporter", - "popularity": 13460.0 + "popularity": 13670.0 } ] }, @@ -49911,27 +45123,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "application-service", "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 116853.0 + "popularity": 133096.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -50009,27 +45221,27 @@ { "name": "concourse-file-resource", "url": "https://quay.io/repository/henry40408/concourse-file-resource", - "popularity": 662170.0 + "popularity": 662317.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -50107,27 +45319,27 @@ { "name": "oauth2-proxy", "url": "https://quay.io/repository/oauth2-proxy/oauth2-proxy", - "popularity": 3324058.0 + "popularity": 3254647.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -50249,22 +45461,6 @@ "Versions": null, "Type": "linux", "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" } ] }, @@ -50344,27 +45540,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 380580.0 + "popularity": 370506.0 }, { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 254930.0 + "popularity": 258719.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 193426.0 + "popularity": 198257.0 } ] }, @@ -50384,11 +45580,6 @@ { "quay_exact_images": [], "quay_top_images": [ - { - "name": "mobile-simulator", - "url": "https://quay.io/repository/wdovey/mobile-simulator", - "popularity": 0.0 - }, { "name": "mobile-developer-console-operator", "url": "https://quay.io/repository/aerogear/mobile-developer-console-operator", @@ -50397,12 +45588,17 @@ { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 36573.0 + "popularity": 30531.0 }, { "name": "mobile-security-framework-mobsf", "url": "https://quay.io/repository/amal5alshaikh/mobile-security-framework-mobsf", - "popularity": 1940.0 + "popularity": 1947.0 + }, + { + "name": "mobile-simulator", + "url": "https://quay.io/repository/wdovey/mobile-simulator", + "popularity": 0.0 }, { "name": "mobile-developer-console", @@ -50447,7 +45643,7 @@ { "name": "saas-operator-catalog", "url": "https://quay.io/repository/3scale/saas-operator-catalog", - "popularity": 1013.0 + "popularity": 1010.0 }, { "name": "push-saas-metrics", @@ -50457,7 +45653,7 @@ { "name": "trial-saas", "url": "https://quay.io/repository/opsmxpublic/trial-saas", - "popularity": 6.0 + "popularity": 36.0 }, { "name": "kiwi", @@ -50467,7 +45663,7 @@ { "name": "testssl", "url": "https://quay.io/repository/jumanjiman/testssl", - "popularity": 4.0 + "popularity": 8.0 } ] }, @@ -50527,27 +45723,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "flannel", "url": "https://quay.io/repository/coreos/flannel", - "popularity": 1674754.0 + "popularity": 1741937.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 }, { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 382812.0 + "popularity": 369342.0 } ] }, @@ -50570,27 +45766,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "application-service", "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 116853.0 + "popularity": 133096.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -50613,27 +45809,27 @@ { "name": "virtual-environments", "url": "https://quay.io/repository/catthehacker/virtual-environments", - "popularity": 52890.0 + "popularity": 62128.0 }, { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 82319.0 - }, - { - "name": "rabbitmq", - "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/rabbitmq", - "popularity": 2.0 + "popularity": 79779.0 }, { "name": "kata-deploy", "url": "https://quay.io/repository/kata-containers/kata-deploy", - "popularity": 15324.0 + "popularity": 21496.0 + }, + { + "name": "appliance", + "url": "https://quay.io/repository/ubersmith/appliance", + "popularity": 5.0 }, { "name": "chlaus", "url": "https://quay.io/repository/appuio/chlaus", - "popularity": 1797.0 + "popularity": 1475.0 } ] }, @@ -50655,14 +45851,19 @@ { "name": "webtop", "url": "https://quay.io/repository/linuxserver.io/webtop", - "popularity": 511.0 + "popularity": 539.0 + }, + { + "name": "webtop", + "url": "https://quay.io/repository/truecharts/webtop", + "popularity": 6.0 } ], "quay_top_images": [ { "name": "webtop", "url": "https://quay.io/repository/linuxserver.io/webtop", - "popularity": 511.0 + "popularity": 539.0 }, { "name": "lspipepr-webtop", @@ -50680,9 +45881,9 @@ "popularity": 0.0 }, { - "name": "webtop-ubuntu-kde-desktop", - "url": "https://quay.io/repository/ajhalili2006/webtop-ubuntu-kde-desktop", - "popularity": 0.0 + "name": "webtop", + "url": "https://quay.io/repository/truecharts/webtop", + "popularity": 6.0 } ] }, @@ -50760,27 +45961,27 @@ { "name": "oauth2-proxy", "url": "https://quay.io/repository/oauth2-proxy/oauth2-proxy", - "popularity": 3324058.0 + "popularity": 3254647.0 }, { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -50821,44 +46022,44 @@ { "name": "utility", "url": "https://quay.io/repository/theiagen/utility", - "popularity": 233739.0 + "popularity": 230211.0 }, { "name": "utility", "url": "https://quay.io/repository/rbean/utility", - "popularity": 70.0 + "popularity": 71.0 }, { "name": "utility", "url": "https://quay.io/repository/dyleck/utility", - "popularity": 16.0 + "popularity": 2.0 } ], "quay_top_images": [ { "name": "utility", "url": "https://quay.io/repository/theiagen/utility", - "popularity": 233739.0 + "popularity": 230211.0 }, { "name": "terraform-docs", "url": "https://quay.io/repository/terraform-docs/terraform-docs", - "popularity": 7213.0 + "popularity": 7824.0 }, { "name": "image-exporter", "url": "https://quay.io/repository/plotly/image-exporter", - "popularity": 1667.0 + "popularity": 2116.0 }, { "name": "gawk", "url": "https://quay.io/repository/biocontainers/gawk", - "popularity": 12927.0 + "popularity": 20761.0 }, { "name": "drain-cleaner", "url": "https://quay.io/repository/strimzi/drain-cleaner", - "popularity": 2727.0 + "popularity": 2883.0 } ] }, @@ -50900,27 +46101,27 @@ { "name": "citrix-k8s-ingress-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", - "popularity": 138781.0 + "popularity": 139218.0 }, { "name": "citrix-k8s-node-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", - "popularity": 39371.0 + "popularity": 39408.0 }, { "name": "citrix-adc-metrics-exporter", "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", - "popularity": 39329.0 + "popularity": 39170.0 }, { "name": "citrix-observability-exporter", "url": "https://quay.io/repository/citrix/citrix-observability-exporter", - "popularity": 2000.0 + "popularity": 1982.0 }, { - "name": "citrix-k8s-cpx-ingress", - "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", - "popularity": 391.0 + "name": "citrix-ipam-controller", + "url": "https://quay.io/repository/citrix/citrix-ipam-controller", + "popularity": 393.0 } ] }, @@ -50962,27 +46163,27 @@ { "name": "citrix-k8s-ingress-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", - "popularity": 138781.0 + "popularity": 139218.0 }, { "name": "citrix-k8s-node-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", - "popularity": 39371.0 + "popularity": 39408.0 }, { "name": "citrix-adc-metrics-exporter", "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", - "popularity": 39329.0 + "popularity": 39170.0 }, { "name": "citrix-observability-exporter", "url": "https://quay.io/repository/citrix/citrix-observability-exporter", - "popularity": 2000.0 + "popularity": 1982.0 }, { - "name": "citrix-k8s-cpx-ingress", - "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", - "popularity": 391.0 + "name": "citrix-ipam-controller", + "url": "https://quay.io/repository/citrix/citrix-ipam-controller", + "popularity": 393.0 } ] }, @@ -51024,27 +46225,27 @@ { "name": "citrix-k8s-ingress-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-ingress-controller", - "popularity": 138781.0 + "popularity": 139218.0 }, { "name": "citrix-k8s-node-controller", "url": "https://quay.io/repository/citrix/citrix-k8s-node-controller", - "popularity": 39371.0 + "popularity": 39408.0 }, { "name": "citrix-adc-metrics-exporter", "url": "https://quay.io/repository/citrix/citrix-adc-metrics-exporter", - "popularity": 39329.0 + "popularity": 39170.0 }, { "name": "citrix-observability-exporter", "url": "https://quay.io/repository/citrix/citrix-observability-exporter", - "popularity": 2000.0 + "popularity": 1982.0 }, { - "name": "citrix-k8s-cpx-ingress", - "url": "https://quay.io/repository/citrix/citrix-k8s-cpx-ingress", - "popularity": 391.0 + "name": "citrix-ipam-controller", + "url": "https://quay.io/repository/citrix/citrix-ipam-controller", + "popularity": 393.0 } ] }, @@ -51146,27 +46347,27 @@ { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ceph", "url": "https://quay.io/repository/ceph/ceph", - "popularity": 380580.0 + "popularity": 370506.0 }, { "name": "operator-generic", "url": "https://quay.io/repository/cilium/operator-generic", - "popularity": 163268.0 + "popularity": 165365.0 }, { "name": "hubble-relay", "url": "https://quay.io/repository/cilium/hubble-relay", - "popularity": 118685.0 + "popularity": 117328.0 } ] }, @@ -51224,27 +46425,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15042.0 + "popularity": 14960.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 3550.0 + "popularity": 3111.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20354.0 + "popularity": 20583.0 }, { "name": "edb-postgres-advanced", "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 13582.0 + "popularity": 12879.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17355.0 + "popularity": 17958.0 } ] }, @@ -51277,7 +46478,7 @@ { "name": "vmware-gateway", "url": "https://quay.io/repository/amastbau/vmware-gateway", - "popularity": 684.0 + "popularity": 130.0 }, { "name": "kubevirt-vmware", @@ -51329,201 +46530,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 3, - "entity_id": 569 - }, - { - "IBM WebSphere Transformation Extender": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "websphere-liberty", - "Official image": true, - "Verified Publisher": false, - "Description": "", - "star_count": 286, - "Docker_Url": "https://hub.docker.com/_/websphere-liberty", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/websphere-liberty", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 22, - "Docker_Url": "https://hub.docker.com/r/ibmcom/websphere-liberty", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "ibm-crossplane-bedrock-shim-config", - "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 - }, - { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 - }, - { - "name": "ibm-events-operator", - "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 2536622.0 }, { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 - }, - { - "name": "ibm-common-service-catalog", - "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 2, - "entity_id": 570 - }, - { - "Oracle Retail Point-of-Service": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "pachyderm/retail-allocation", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/pachyderm/retail-allocation", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "common-service-operator", - "url": "https://quay.io/repository/opencloudio/common-service-operator", - "popularity": 284079.0 - }, - { - "name": "service-catalog", - "url": "https://quay.io/repository/kubernetes-service-catalog/service-catalog", - "popularity": 330422.0 - }, - { - "name": "ibm-common-service-catalog", - "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 - }, - { - "name": "node-exporter", - "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 - }, - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -51531,8 +46558,8 @@ "operators": [] } ], - "entity_type": 2, - "entity_id": 571 + "entity_type": 3, + "entity_id": 569 }, { "Structured Query Language": [ @@ -51627,27 +46654,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "query", "url": "https://quay.io/repository/sisense/query", - "popularity": 2191.0 + "popularity": 2406.0 }, { "name": "jaeger-query", "url": "https://quay.io/repository/jaegertracing/jaeger-query", - "popularity": 9786.0 + "popularity": 9826.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 + "popularity": 90209.0 }, { "name": "redis-operator", "url": "https://quay.io/repository/opstree/redis-operator", - "popularity": 102256.0 + "popularity": 102060.0 } ] }, @@ -51658,29 +46685,6 @@ "entity_type": 1, "entity_id": 572 }, - { - "TSO/ISPF": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "tso-dependencies", - "url": "https://quay.io/repository/tsone/tso-dependencies", - "popularity": 0.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 2, - "entity_id": 573 - }, { "Model view controller": [ { @@ -51693,27 +46697,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96679165.0 + "popularity": 96986027.0 }, { "name": "nginx-ingress-controller", "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1214037.0 + "popularity": 1244426.0 }, { "name": "workflow-controller", "url": "https://quay.io/repository/argoproj/workflow-controller", - "popularity": 1182422.0 + "popularity": 1172724.0 }, { "name": "controller", "url": "https://quay.io/repository/metallb/controller", - "popularity": 241290.0 + "popularity": 256061.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 } ] }, @@ -51736,27 +46740,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 }, { "name": "ibm-management-ingress-operator", "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 156321.0 + "popularity": 157394.0 }, { "name": "audit-syslog-service", "url": "https://quay.io/repository/opencloudio/audit-syslog-service", - "popularity": 130197.0 + "popularity": 126512.0 } ] }, @@ -51796,22 +46800,22 @@ { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 82319.0 + "popularity": 79779.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8041.0 + "popularity": 8741.0 }, { "name": "entrez-direct", "url": "https://quay.io/repository/biocontainers/entrez-direct", - "popularity": 216.0 + "popularity": 116.0 }, { "name": "rsync-ssh", "url": "https://quay.io/repository/instrumentisto/rsync-ssh", - "popularity": 46.0 + "popularity": 54.0 }, { "name": "watchtower", @@ -51839,27 +46843,27 @@ { "name": "memcached-exporter", "url": "https://quay.io/repository/prometheus/memcached-exporter", - "popularity": 82319.0 + "popularity": 79779.0 }, { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 79034.0 + "popularity": 78097.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8041.0 + "popularity": 8741.0 }, { "name": "mafft", "url": "https://quay.io/repository/biocontainers/mafft", - "popularity": 5335.0 + "popularity": 5964.0 }, { "name": "diamond", "url": "https://quay.io/repository/biocontainers/diamond", - "popularity": 1022.0 + "popularity": 1430.0 } ] }, @@ -51918,7 +46922,7 @@ { "name": "windows", "url": "https://quay.io/repository/mhallin/windows", - "popularity": 23.0 + "popularity": 114.0 }, { "name": "windows", @@ -51930,27 +46934,27 @@ { "name": "windows-upgrade", "url": "https://quay.io/repository/calico/windows-upgrade", - "popularity": 7607.0 + "popularity": 7652.0 }, { "name": "community-windows-machine-config-operator", "url": "https://quay.io/repository/openshift-windows/community-windows-machine-config-operator", - "popularity": 181.0 + "popularity": 180.0 }, { "name": "community-windows-machine-config-operator", "url": "https://quay.io/repository/openshift-community-operators/community-windows-machine-config-operator", - "popularity": 398.0 + "popularity": 253.0 }, { "name": "golang-builder", "url": "https://quay.io/repository/prometheus/golang-builder", - "popularity": 2871.0 + "popularity": 3159.0 }, { "name": "server", "url": "https://quay.io/repository/codimd/server", - "popularity": 2416.0 + "popularity": 2358.0 } ] }, @@ -52010,27 +47014,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 + }, + { + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -52169,19 +47173,19 @@ "stars": 18, "display_name": "Strimzi", "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", - "version": "0.29.0", + "version": "0.30.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 412, - "high": 38, - "medium": 473, - "unknown": 7, - "critical": 6 + "low": 277, + "high": 13, + "medium": 348, + "unknown": 5, + "critical": 4 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1652572867, + "ts": 1657929610, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -52200,8 +47204,6 @@ "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka", "quay.io/strimzi/kafka-bridge", "quay.io/strimzi/jmxtrans", "quay.io/strimzi/kaniko-executor", @@ -52916,19 +47918,19 @@ "stars": 18, "display_name": "Strimzi", "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", - "version": "0.29.0", + "version": "0.30.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 412, - "high": 38, - "medium": 473, - "unknown": 7, - "critical": 6 + "low": 277, + "high": 13, + "medium": 348, + "unknown": 5, + "critical": 4 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1652572867, + "ts": 1657929610, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -52947,8 +47949,6 @@ "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka", "quay.io/strimzi/kafka-bridge", "quay.io/strimzi/jmxtrans", "quay.io/strimzi/kaniko-executor", @@ -53596,12 +48596,12 @@ ], "dockerhub_top_images": [ { - "name": "java", - "Official image": true, - "Verified Publisher": false, + "name": "circleci/java", + "Official image": false, + "Verified Publisher": true, "Description": "", - "star_count": 1976, - "Docker_Url": "https://hub.docker.com/_/java", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/circleci/java", "OS": [ { "Class": "OS", @@ -53632,12 +48632,12 @@ ] }, { - "name": "circleci/java", - "Official image": false, - "Verified Publisher": true, + "name": "java", + "Official image": true, + "Verified Publisher": false, "Description": "", - "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/circleci/java", + "star_count": 1976, + "Docker_Url": "https://hub.docker.com/_/java", "OS": [ { "Class": "OS", @@ -53676,12 +48676,12 @@ ] }, { - "name": "appdynamics/java-agent", + "name": "circleci/java-nginx", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 6, - "Docker_Url": "https://hub.docker.com/r/appdynamics/java-agent", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/circleci/java-nginx", "OS": [ { "Class": "OS", @@ -53700,44 +48700,44 @@ { "name": "java", "url": "https://quay.io/repository/tamr/java", - "popularity": 480.0 + "popularity": 472.0 }, { "name": "java", "url": "https://quay.io/repository/enxadahost/java", - "popularity": 21708.0 + "popularity": 21441.0 }, { "name": "java", "url": "https://quay.io/repository/reishost/java", - "popularity": 4728.0 + "popularity": 4864.0 } ], "quay_top_images": [ { "name": "java", "url": "https://quay.io/repository/enxadahost/java", - "popularity": 21708.0 + "popularity": 21441.0 }, { "name": "docker-java-swiss-knife", "url": "https://quay.io/repository/scentbird/docker-java-swiss-knife", - "popularity": 7657.0 + "popularity": 5522.0 }, { "name": "jkube-java", "url": "https://quay.io/repository/jkube/jkube-java", - "popularity": 4537.0 + "popularity": 4329.0 }, { "name": "java", "url": "https://quay.io/repository/reishost/java", - "popularity": 4728.0 + "popularity": 4864.0 }, { "name": "ubi-quarkus-native-s2i", "url": "https://quay.io/repository/quarkus/ubi-quarkus-native-s2i", - "popularity": 35973.0 + "popularity": 36193.0 } ] }, @@ -54132,7 +49132,7 @@ { "name": "perl", "url": "https://quay.io/repository/biocontainers/perl", - "popularity": 448.0 + "popularity": 488.0 }, { "name": "perl", @@ -54144,23 +49144,23 @@ { "name": "perl-530-centos7", "url": "https://quay.io/repository/centos7/perl-530-centos7", - "popularity": 225577.0 + "popularity": 231228.0 }, { "name": "docker-perl-app-base", "url": "https://quay.io/repository/wakaba/docker-perl-app-base", - "popularity": 345.0 + "popularity": 357.0 + }, + { + "name": "perl", + "url": "https://quay.io/repository/biocontainers/perl", + "popularity": 488.0 }, { "name": "ci-perl", "url": "https://quay.io/repository/travisci/ci-perl", "popularity": 0.0 }, - { - "name": "perl", - "url": "https://quay.io/repository/biocontainers/perl", - "popularity": 448.0 - }, { "name": "perl-test", "url": "https://quay.io/repository/modellaachen/perl-test", @@ -54184,7 +49184,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 6668, + "star_count": 6670, "Docker_Url": "https://hub.docker.com/_/php", "OS": [ { @@ -54324,7 +49324,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 6668, + "star_count": 6670, "Docker_Url": "https://hub.docker.com/_/php", "OS": [ { @@ -54428,54 +49428,54 @@ { "name": "php", "url": "https://quay.io/repository/kissj/php", - "popularity": 8614.0 + "popularity": 8613.0 }, { "name": "php", "url": "https://quay.io/repository/startx/php", - "popularity": 16380.0 + "popularity": 15706.0 }, { "name": "php", "url": "https://quay.io/repository/api-platform/php", - "popularity": 454.0 + "popularity": 2133.0 }, { "name": "php", "url": "https://quay.io/repository/swsmirror/php", - "popularity": 339.0 + "popularity": 338.0 }, { "name": "php", "url": "https://quay.io/repository/official-images/php", - "popularity": 101.0 + "popularity": 53.0 } ], "quay_top_images": [ { "name": "php-73-centos7", "url": "https://quay.io/repository/centos7/php-73-centos7", - "popularity": 215385.0 + "popularity": 219503.0 }, { "name": "php", "url": "https://quay.io/repository/kissj/php", - "popularity": 8614.0 + "popularity": 8613.0 }, { "name": "php", "url": "https://quay.io/repository/startx/php", - "popularity": 16380.0 + "popularity": 15706.0 }, { "name": "php-fpm_exporter", "url": "https://quay.io/repository/cuppett/php-fpm_exporter", - "popularity": 41803.0 + "popularity": 41780.0 }, { "name": "runner-php", "url": "https://quay.io/repository/startx/runner-php", - "popularity": 8113.0 + "popularity": 8119.0 } ] }, @@ -54495,7 +49495,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 7699, + "star_count": 7706, "Docker_Url": "https://hub.docker.com/_/python", "OS": [ { @@ -54575,12 +49575,12 @@ ] }, { - "name": "bitnami/python", + "name": "cimg/python", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 22, - "Docker_Url": "https://hub.docker.com/r/bitnami/python", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/cimg/python", "OS": [ { "Class": "OS", @@ -54593,12 +49593,12 @@ ] }, { - "name": "cimg/python", + "name": "bitnami/python", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, - "Docker_Url": "https://hub.docker.com/r/cimg/python", + "star_count": 22, + "Docker_Url": "https://hub.docker.com/r/bitnami/python", "OS": [ { "Class": "OS", @@ -54617,7 +49617,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 7699, + "star_count": 7706, "Docker_Url": "https://hub.docker.com/_/python", "OS": [ { @@ -54744,54 +49744,54 @@ { "name": "python", "url": "https://quay.io/repository/biocontainers/python", - "popularity": 4090.0 + "popularity": 7322.0 }, { "name": "python", "url": "https://quay.io/repository/cdis/python", - "popularity": 5246.0 + "popularity": 2978.0 }, { "name": "python", "url": "https://quay.io/repository/agari/python", - "popularity": 1939.0 + "popularity": 2171.0 }, { "name": "python", "url": "https://quay.io/repository/sctregistry/python", - "popularity": 1465.0 + "popularity": 1468.0 }, { "name": "python", "url": "https://quay.io/repository/mlrun/python", - "popularity": 1214.0 + "popularity": 1296.0 } ], "quay_top_images": [ { "name": "python-27-centos7", "url": "https://quay.io/repository/centos7/python-27-centos7", - "popularity": 202676.0 + "popularity": 204983.0 }, { "name": "python-predictor-cpu", "url": "https://quay.io/repository/cortexlabs/python-predictor-cpu", - "popularity": 4979.0 + "popularity": 5277.0 + }, + { + "name": "python", + "url": "https://quay.io/repository/biocontainers/python", + "popularity": 7322.0 }, { "name": "python-nginx", "url": "https://quay.io/repository/cdis/python-nginx", - "popularity": 10155.0 + "popularity": 5122.0 }, { "name": "python-predictor-gpu", "url": "https://quay.io/repository/cortexlabs/python-predictor-gpu", - "popularity": 5165.0 - }, - { - "name": "python", - "url": "https://quay.io/repository/cdis/python", - "popularity": 5246.0 + "popularity": 5172.0 } ] }, @@ -54965,12 +49965,12 @@ ] }, { - "name": "cimg/ruby", + "name": "bitnami/ruby", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 5, - "Docker_Url": "https://hub.docker.com/r/cimg/ruby", + "star_count": 21, + "Docker_Url": "https://hub.docker.com/r/bitnami/ruby", "OS": [ { "Class": "OS", @@ -54983,12 +49983,12 @@ ] }, { - "name": "bitnami/ruby", + "name": "cimg/ruby", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 21, - "Docker_Url": "https://hub.docker.com/r/bitnami/ruby", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/cimg/ruby", "OS": [ { "Class": "OS", @@ -55096,7 +50096,7 @@ { "name": "ruby", "url": "https://quay.io/repository/aptible/ruby", - "popularity": 147.0 + "popularity": 73.0 }, { "name": "ruby", @@ -55116,12 +50116,12 @@ { "name": "ruby", "url": "https://quay.io/repository/springest/ruby", - "popularity": 30.0 + "popularity": 20.0 }, { "name": "ruby", "url": "https://quay.io/repository/forem/ruby", - "popularity": 100.0 + "popularity": 62.0 }, { "name": "ruby", @@ -55133,27 +50133,27 @@ { "name": "ruby-27-centos7", "url": "https://quay.io/repository/centos7/ruby-27-centos7", - "popularity": 254382.0 + "popularity": 259203.0 }, { "name": "ruby-26-centos7", "url": "https://quay.io/repository/centos7/ruby-26-centos7", - "popularity": 170674.0 + "popularity": 172628.0 }, { "name": "ruby-25-centos7", "url": "https://quay.io/repository/centos7/ruby-25-centos7", - "popularity": 73389.0 + "popularity": 73632.0 }, { "name": "ruby-27", "url": "https://quay.io/repository/openshifttest/ruby-27", - "popularity": 16742.0 + "popularity": 17897.0 }, { "name": "ruby-cron", "url": "https://quay.io/repository/palettecloud/ruby-cron", - "popularity": 10816.0 + "popularity": 9561.0 } ] }, @@ -55203,17 +50203,12 @@ { "name": "sandbox-javascript", "url": "https://quay.io/repository/redsift/sandbox-javascript", - "popularity": 115728.0 + "popularity": 115871.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 36573.0 - }, - { - "name": "node", - "url": "https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/node", - "popularity": 0.0 + "popularity": 30531.0 }, { "name": "ploigos-tool-javascript", @@ -55221,9 +50216,14 @@ "popularity": 56.0 }, { - "name": "loftsh-javascript-flyway", - "url": "https://quay.io/repository/buildo/loftsh-javascript-flyway", - "popularity": 12.0 + "name": "node-ci", + "url": "https://quay.io/repository/krestomatio/node-ci", + "popularity": 75.0 + }, + { + "name": "node", + "url": "https://quay.io/repository/krestomatio/node", + "popularity": 92.0 } ] }, @@ -55246,12 +50246,12 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "golang-builder", "url": "https://quay.io/repository/prometheus/golang-builder", - "popularity": 2871.0 + "popularity": 3159.0 }, { "name": "rpki-client", @@ -55266,7 +50266,7 @@ { "name": "openbgpd", "url": "https://quay.io/repository/openbgpd/openbgpd", - "popularity": 14.0 + "popularity": 16.0 } ] }, @@ -55295,7 +50295,7 @@ "entity_id": 591 }, { - "Active Server Pages (ASP)": [ + "Active Server Pages": [ { "dockerhub_exact_images": [], "dockerhub_top_images": [ @@ -55325,27 +50325,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 + }, + { + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -55419,18 +50419,18 @@ "popularity": 0.0 }, { - "name": "docker-kubectl", - "url": "https://quay.io/repository/awesome/docker-kubectl", + "name": "docker-istio", + "url": "https://quay.io/repository/awesome/docker-istio", "popularity": 0.0 }, { "name": "docker-kubectl", - "url": "https://quay.io/repository/ibm-avocados/docker-kubectl", + "url": "https://quay.io/repository/awesome/docker-kubectl", "popularity": 0.0 }, { - "name": "docker-ibmcloud-addon-istio", - "url": "https://quay.io/repository/ibm-avocados/docker-ibmcloud-addon-istio", + "name": "docker-kubectl", + "url": "https://quay.io/repository/ibm-avocados/docker-kubectl", "popularity": 0.0 } ] @@ -55508,27 +50508,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 + "popularity": 265927.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 + "popularity": 90209.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 + "popularity": 30527.0 }, { "name": "gateway", "url": "https://quay.io/repository/bluecat/gateway", - "popularity": 20583.0 + "popularity": 20568.0 } ] }, @@ -55611,7 +50611,7 @@ { "name": "smeeclient", "url": "https://quay.io/repository/schabrolles/smeeclient", - "popularity": 1278.0 + "popularity": 1330.0 } ] }, @@ -55671,27 +50671,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 + }, + { + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -55801,7 +50801,7 @@ { "name": "websphere-liberty", "url": "https://quay.io/repository/swsmirror/websphere-liberty", - "popularity": 4.0 + "popularity": 2.0 }, { "name": "websphere-ordermgmt", @@ -55844,12 +50844,12 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "golang-builder", "url": "https://quay.io/repository/prometheus/golang-builder", - "popularity": 2871.0 + "popularity": 3159.0 } ] }, @@ -55937,27 +50937,27 @@ { "name": "cert-manager-controller", "url": "https://quay.io/repository/jetstack/cert-manager-controller", - "popularity": 96679165.0 + "popularity": 96986027.0 }, { "name": "cert-manager-webhook", "url": "https://quay.io/repository/jetstack/cert-manager-webhook", - "popularity": 92762600.0 + "popularity": 93058787.0 }, { "name": "cert-manager-cainjector", "url": "https://quay.io/repository/jetstack/cert-manager-cainjector", - "popularity": 92854581.0 + "popularity": 93141016.0 }, { "name": "cert-manager-acmesolver", "url": "https://quay.io/repository/jetstack/cert-manager-acmesolver", - "popularity": 920253.0 + "popularity": 939648.0 }, { "name": "cert-manager-ctl", "url": "https://quay.io/repository/jetstack/cert-manager-ctl", - "popularity": 652852.0 + "popularity": 645293.0 } ] }, @@ -55980,27 +50980,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 } ] }, @@ -56149,27 +51149,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 } ] }, @@ -56281,27 +51281,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15042.0 + "popularity": 14960.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 3550.0 + "popularity": 3111.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20354.0 + "popularity": 20583.0 }, { "name": "edb-postgres-advanced", "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 13582.0 + "popularity": 12879.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17355.0 + "popularity": 17958.0 } ] }, @@ -56383,27 +51383,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "application-service", "url": "https://quay.io/repository/redhat-appstudio/application-service", - "popularity": 116853.0 + "popularity": 133096.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -56432,27 +51432,27 @@ { "name": "instana-agent-operator", "url": "https://quay.io/repository/operator-pipeline-prod/instana-agent-operator", - "popularity": 1044.0 + "popularity": 1008.0 }, { "name": "instana-agent-operator-rhmp", "url": "https://quay.io/repository/operator-pipeline-prod/instana-agent-operator-rhmp", - "popularity": 870.0 + "popularity": 840.0 }, { "name": "z-instana", "url": "https://quay.io/repository/trumanbrown/z-instana", - "popularity": 1693.0 + "popularity": 1698.0 }, { "name": "instana-agent-operator", "url": "https://quay.io/repository/operatorhubio/instana-agent-operator", - "popularity": 504.0 + "popularity": 476.0 }, { "name": "z-instana-leader-elector", "url": "https://quay.io/repository/trumanbrown/z-instana-leader-elector", - "popularity": 23.0 + "popularity": 19.0 } ] }, @@ -56518,12 +51518,12 @@ { "name": "credstash-operator", "url": "https://quay.io/repository/ouzi/credstash-operator", - "popularity": 104.0 + "popularity": 135.0 }, { "name": "credstash-operator", "url": "https://quay.io/repository/operatorhubio/credstash-operator", - "popularity": 36.0 + "popularity": 32.0 }, { "name": "credstash", @@ -56704,34 +51704,34 @@ { "name": "snyk", "url": "https://quay.io/repository/exd_infra_plts_cip/snyk", - "popularity": 33.0 + "popularity": 38.0 } ], "quay_top_images": [ { "name": "snyk-cli", "url": "https://quay.io/repository/codefresh/snyk-cli", - "popularity": 336.0 + "popularity": 285.0 }, { "name": "snyk-operator", "url": "https://quay.io/repository/operatorhubio/snyk-operator", - "popularity": 972.0 + "popularity": 856.0 }, { "name": "snyk-operator", "url": "https://quay.io/repository/openshift-community-operators/snyk-operator", - "popularity": 653.0 + "popularity": 638.0 }, { "name": "snyk", "url": "https://quay.io/repository/exd_infra_plts_cip/snyk", - "popularity": 33.0 + "popularity": 38.0 }, { "name": "snyk_exporter", "url": "https://quay.io/repository/lunarway/snyk_exporter", - "popularity": 2016.0 + "popularity": 2010.0 } ] }, @@ -56804,17 +51804,17 @@ { "name": "akka-cluster-operator", "url": "https://quay.io/repository/operatorhubio/akka-cluster-operator", - "popularity": 146.0 + "popularity": 131.0 }, { "name": "akka-cluster-operator", "url": "https://quay.io/repository/openshift-community-operators/akka-cluster-operator", - "popularity": 79.0 + "popularity": 77.0 }, { "name": "akka-operator", "url": "https://quay.io/repository/openshifttest/akka-operator", - "popularity": 40.0 + "popularity": 52.0 }, { "name": "akka-simple-cluster-k8s", @@ -57077,7 +52077,7 @@ { "name": "varnish", "url": "https://quay.io/repository/api-platform/varnish", - "popularity": 223.0 + "popularity": 1147.0 }, { "name": "varnish", @@ -57087,16 +52087,16 @@ { "name": "varnish", "url": "https://quay.io/repository/akretion/varnish", - "popularity": 0.0 + "popularity": 16.0 }, { "name": "varnish", - "url": "https://quay.io/repository/vektorcloud/varnish", + "url": "https://quay.io/repository/psav/varnish", "popularity": 0.0 }, { "name": "varnish", - "url": "https://quay.io/repository/psav/varnish", + "url": "https://quay.io/repository/vektorcloud/varnish", "popularity": 0.0 }, { @@ -57106,7 +52106,7 @@ }, { "name": "varnish", - "url": "https://quay.io/repository/strathberry/varnish", + "url": "https://quay.io/repository/imasen/varnish", "popularity": 0.0 } ], @@ -57114,27 +52114,27 @@ { "name": "varnish", "url": "https://quay.io/repository/api-platform/varnish", - "popularity": 223.0 + "popularity": 1147.0 }, { "name": "kube-httpcache", "url": "https://quay.io/repository/mittwald/kube-httpcache", - "popularity": 5758.0 - }, - { - "name": "prometheus-varnish-exporter", - "url": "https://quay.io/repository/vshn/prometheus-varnish-exporter", - "popularity": 28.0 + "popularity": 6136.0 }, { "name": "varnish-operator", "url": "https://quay.io/repository/operatorhubio/varnish-operator", - "popularity": 36.0 + "popularity": 32.0 }, { "name": "varnish-operator", "url": "https://quay.io/repository/openshift-community-operators/varnish-operator", - "popularity": 32.0 + "popularity": 29.0 + }, + { + "name": "varnish", + "url": "https://quay.io/repository/akretion/varnish", + "popularity": 16.0 } ] }, @@ -57219,27 +52219,27 @@ { "name": "logstash-datadog", "url": "https://quay.io/repository/yugabyte/logstash-datadog", - "popularity": 556.0 + "popularity": 599.0 }, { "name": "datadog-operator", "url": "https://quay.io/repository/operatorhubio/datadog-operator", - "popularity": 648.0 + "popularity": 602.0 }, { "name": "datadog-operator", "url": "https://quay.io/repository/openshift-community-operators/datadog-operator", - "popularity": 1335.0 + "popularity": 1341.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8041.0 + "popularity": 8741.0 }, { "name": "datalink-datadogd", "url": "https://quay.io/repository/geonet/datalink-datadogd", - "popularity": 3043.0 + "popularity": 3055.0 } ] }, @@ -57436,34 +52436,34 @@ { "name": "api", "url": "https://quay.io/repository/infrabox/api", - "popularity": 42.0 + "popularity": 34.0 } ], "quay_top_images": [ { "name": "ibm-platform-api-operator", "url": "https://quay.io/repository/opencloudio/ibm-platform-api-operator", - "popularity": 36619.0 + "popularity": 35108.0 }, { - "name": "virt-api", - "url": "https://quay.io/repository/kubevirt/virt-api", - "popularity": 33904.0 + "name": "insights-api", + "url": "https://quay.io/repository/fairwinds/insights-api", + "popularity": 39135.0 }, { "name": "k8s-sidecar", "url": "https://quay.io/repository/kiwigrid/k8s-sidecar", - "popularity": 1297028.0 + "popularity": 1288147.0 }, { "name": "third-party-api-resolver-server", "url": "https://quay.io/repository/decentraland/third-party-api-resolver-server", - "popularity": 52834.0 + "popularity": 52906.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 421059.0 + "popularity": 430335.0 } ] }, @@ -58066,7 +53066,7 @@ { "name": "hazelcast", "url": "https://quay.io/repository/hazelcast_cloud/hazelcast", - "popularity": 864.0 + "popularity": 838.0 }, { "name": "hazelcast", @@ -58083,27 +53083,27 @@ { "name": "hazelcast-platform-operator", "url": "https://quay.io/repository/operator-pipeline-prod/hazelcast-platform-operator", - "popularity": 696.0 + "popularity": 672.0 }, { "name": "hazelcast", "url": "https://quay.io/repository/hazelcast_cloud/hazelcast", - "popularity": 864.0 + "popularity": 838.0 }, { "name": "ipm-hazelcast", "url": "https://quay.io/repository/mitaei/ipm-hazelcast", - "popularity": 389.0 + "popularity": 377.0 }, { "name": "public.hazelcast.hazelcast", "url": "https://quay.io/repository/siav/public.hazelcast.hazelcast", - "popularity": 711.0 + "popularity": 534.0 }, { "name": "hazelcast-platform-operator", "url": "https://quay.io/repository/operatorhubio/hazelcast-platform-operator", - "popularity": 144.0 + "popularity": 126.0 } ] }, @@ -58164,12 +53164,12 @@ { "name": "infinispan", "url": "https://quay.io/repository/operatorhubio/infinispan", - "popularity": 1688.0 + "popularity": 1349.0 }, { "name": "infinispan", "url": "https://quay.io/repository/openshift-community-operators/infinispan", - "popularity": 650.0 + "popularity": 631.0 }, { "name": "infinispan", @@ -58191,27 +53191,27 @@ { "name": "kogito-data-index-infinispan", "url": "https://quay.io/repository/kiegroup/kogito-data-index-infinispan", - "popularity": 2143.0 + "popularity": 2201.0 }, { "name": "infinispan", "url": "https://quay.io/repository/operatorhubio/infinispan", - "popularity": 1688.0 + "popularity": 1349.0 }, { "name": "infinispan", "url": "https://quay.io/repository/openshift-community-operators/infinispan", - "popularity": 650.0 + "popularity": 631.0 }, { "name": "server", "url": "https://quay.io/repository/infinispan/server", - "popularity": 12283.0 + "popularity": 13789.0 }, { "name": "operator", "url": "https://quay.io/repository/infinispan/operator", - "popularity": 3309.0 + "popularity": 4802.0 } ] }, @@ -58320,14 +53320,14 @@ { "name": "nuxeo", "url": "https://quay.io/repository/borja/nuxeo", - "popularity": 0.0 + "popularity": 2.0 } ], "quay_top_images": [ { "name": "nuxeo-operator", "url": "https://quay.io/repository/operatorhubio/nuxeo-operator", - "popularity": 36.0 + "popularity": 34.0 }, { "name": "nuxeo", @@ -58345,9 +53345,9 @@ "popularity": 0.0 }, { - "name": "nuxeo-che", - "url": "https://quay.io/repository/akervern/nuxeo-che", - "popularity": 0.0 + "name": "nuxeo", + "url": "https://quay.io/repository/borja/nuxeo", + "popularity": 2.0 } ] }, @@ -58493,7 +53493,7 @@ { "name": "kube-arangodb", "url": "https://quay.io/repository/operatorhubio/kube-arangodb", - "popularity": 38.0 + "popularity": 34.0 }, { "name": "ansible-arangodb", @@ -58647,27 +53647,27 @@ { "name": "che-operator", "url": "https://quay.io/repository/eclipse/che-operator", - "popularity": 34982.0 + "popularity": 37958.0 }, { "name": "che-server", "url": "https://quay.io/repository/eclipse/che-server", - "popularity": 23998.0 + "popularity": 22882.0 }, { "name": "che-plugin-sidecar", "url": "https://quay.io/repository/eclipse/che-plugin-sidecar", - "popularity": 21159.0 - }, - { - "name": "che-theia", - "url": "https://quay.io/repository/eclipse/che-theia", - "popularity": 19734.0 + "popularity": 21047.0 }, { "name": "che-java11-maven", "url": "https://quay.io/repository/eclipse/che-java11-maven", - "popularity": 25543.0 + "popularity": 26579.0 + }, + { + "name": "che-theia", + "url": "https://quay.io/repository/eclipse/che-theia", + "popularity": 20012.0 } ] }, @@ -58735,12 +53735,12 @@ { "name": "amazon-eks-pod-identity-webhook", "url": "https://quay.io/repository/giantswarm/amazon-eks-pod-identity-webhook", - "popularity": 357.0 + "popularity": 298.0 }, { "name": "amazon-aws-cli", "url": "https://quay.io/repository/100x/amazon-aws-cli", - "popularity": 913.0 + "popularity": 1384.0 }, { "name": "sensu-go-tests-amazon", @@ -58750,12 +53750,12 @@ { "name": "business-central-workbench-showcase", "url": "https://quay.io/repository/kiegroup/business-central-workbench-showcase", - "popularity": 637.0 + "popularity": 657.0 }, { "name": "jbpm-server-full", "url": "https://quay.io/repository/kiegroup/jbpm-server-full", - "popularity": 236.0 + "popularity": 238.0 } ] }, @@ -58814,7 +53814,7 @@ { "name": "clickhouse", "url": "https://quay.io/repository/operatorhubio/clickhouse", - "popularity": 936.0 + "popularity": 832.0 }, { "name": "clickhouse", @@ -58826,6 +53826,11 @@ "url": "https://quay.io/repository/excoin/clickhouse", "popularity": 0.0 }, + { + "name": "clickhouse", + "url": "https://quay.io/repository/truecharts/clickhouse", + "popularity": 10.0 + }, { "name": "clickhouse", "url": "https://quay.io/repository/iyuroch/clickhouse", @@ -58841,7 +53846,7 @@ { "name": "clickhouse", "url": "https://quay.io/repository/operatorhubio/clickhouse", - "popularity": 936.0 + "popularity": 832.0 }, { "name": "clickhouse", @@ -58854,14 +53859,14 @@ "popularity": 7.0 }, { - "name": "clickhouse-docker-rootless", - "url": "https://quay.io/repository/kryptonite/clickhouse-docker-rootless", - "popularity": 3.0 + "name": "clickhouse", + "url": "https://quay.io/repository/truecharts/clickhouse", + "popularity": 10.0 }, { "name": "ckman", "url": "https://quay.io/repository/housepower/ckman", - "popularity": 10.0 + "popularity": 29.0 } ] }, @@ -59071,22 +54076,22 @@ { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 382812.0 + "popularity": 369342.0 }, { "name": "minio", "url": "https://quay.io/repository/cloudservices/minio", - "popularity": 2834.0 + "popularity": 2836.0 }, { "name": "minio", - "url": "https://quay.io/repository/uninett/minio", - "popularity": 29.0 + "url": "https://quay.io/repository/devtron/minio", + "popularity": 3763.0 }, { "name": "minio", - "url": "https://quay.io/repository/devtron/minio", - "popularity": 3957.0 + "url": "https://quay.io/repository/uninett/minio", + "popularity": 29.0 }, { "name": "minio", @@ -59096,7 +54101,7 @@ { "name": "minio", "url": "https://quay.io/repository/ricardbejarano/minio", - "popularity": 11.0 + "popularity": 13.0 }, { "name": "minio", @@ -59111,49 +54116,49 @@ { "name": "minio", "url": "https://quay.io/repository/kubevirt/minio", - "popularity": 254.0 + "popularity": 316.0 }, { "name": "minio", "url": "https://quay.io/repository/stackstate/minio", - "popularity": 356.0 + "popularity": 358.0 }, { "name": "minio", "url": "https://quay.io/repository/wakaba/minio", - "popularity": 205.0 + "popularity": 215.0 }, { "name": "minio", "url": "https://quay.io/repository/anuta/minio", - "popularity": 268.0 + "popularity": 275.0 } ], "quay_top_images": [ { "name": "minio", "url": "https://quay.io/repository/minio/minio", - "popularity": 382812.0 + "popularity": 369342.0 }, { "name": "minio", "url": "https://quay.io/repository/cloudservices/minio", - "popularity": 2834.0 + "popularity": 2836.0 }, { "name": "minio-s3-test-harness", "url": "https://quay.io/repository/fossa/minio-s3-test-harness", - "popularity": 5176.0 + "popularity": 5144.0 }, { "name": "minio", "url": "https://quay.io/repository/devtron/minio", - "popularity": 3957.0 + "popularity": 3763.0 }, { "name": "minio-operator-rhmp", "url": "https://quay.io/repository/operator-pipeline-prod/minio-operator-rhmp", - "popularity": 1740.0 + "popularity": 1680.0 } ] }, @@ -59212,7 +54217,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 5706, + "star_count": 5707, "Docker_Url": "https://hub.docker.com/_/elasticsearch", "OS": [ { @@ -59302,7 +54307,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 5706, + "star_count": 5707, "Docker_Url": "https://hub.docker.com/_/elasticsearch", "OS": [ { @@ -59410,69 +54415,69 @@ { "name": "elasticsearch", "url": "https://quay.io/repository/fluentd_elasticsearch/elasticsearch", - "popularity": 66427.0 + "popularity": 66322.0 }, { "name": "elasticsearch", "url": "https://quay.io/repository/crowdworks/elasticsearch", - "popularity": 38990.0 + "popularity": 41474.0 }, { "name": "elasticsearch", "url": "https://quay.io/repository/trackmaven/elasticsearch", - "popularity": 18211.0 + "popularity": 13456.0 }, { "name": "elasticsearch", "url": "https://quay.io/repository/centerforopenscience/elasticsearch", - "popularity": 7648.0 + "popularity": 8360.0 }, { "name": "elasticsearch", "url": "https://quay.io/repository/agari/elasticsearch", - "popularity": 1361.0 + "popularity": 1476.0 }, { "name": "elasticsearch", "url": "https://quay.io/repository/openshifttest/elasticsearch", - "popularity": 377.0 + "popularity": 487.0 }, { "name": "elasticsearch", "url": "https://quay.io/repository/karbon/elasticsearch", - "popularity": 1231.0 + "popularity": 1206.0 }, { "name": "elasticsearch", "url": "https://quay.io/repository/stackstate/elasticsearch", - "popularity": 946.0 + "popularity": 909.0 } ], "quay_top_images": [ { "name": "elasticsearch-exporter", "url": "https://quay.io/repository/prometheuscommunity/elasticsearch-exporter", - "popularity": 368361.0 + "popularity": 352426.0 }, { "name": "elasticsearch", "url": "https://quay.io/repository/fluentd_elasticsearch/elasticsearch", - "popularity": 66427.0 + "popularity": 66322.0 }, { "name": "elasticsearch", "url": "https://quay.io/repository/crowdworks/elasticsearch", - "popularity": 38990.0 + "popularity": 41474.0 }, { "name": "docker-elasticsearch-kubernetes", "url": "https://quay.io/repository/pires/docker-elasticsearch-kubernetes", - "popularity": 40657.0 + "popularity": 40898.0 }, { "name": "elasticsearch-curator", "url": "https://quay.io/repository/widen/elasticsearch-curator", - "popularity": 26344.0 + "popularity": 26340.0 } ] }, @@ -59755,27 +54760,27 @@ { "name": "percona-xtradb-cluster-operator", "url": "https://quay.io/repository/operatorhubio/percona-xtradb-cluster-operator", - "popularity": 312.0 + "popularity": 298.0 }, { "name": "percona-xtradb-cluster-operator", "url": "https://quay.io/repository/openshift-community-operators/percona-xtradb-cluster-operator", - "popularity": 722.0 + "popularity": 593.0 }, { "name": "percona-xtradb-cluster-operator-certified", "url": "https://quay.io/repository/operator-pipeline-prod/percona-xtradb-cluster-operator-certified", - "popularity": 294.0 + "popularity": 336.0 }, { "name": "percona-xtradb-cluster-operator-certified-rhmp", "url": "https://quay.io/repository/operator-pipeline-prod/percona-xtradb-cluster-operator-certified-rhmp", - "popularity": 293.0 + "popularity": 335.0 }, { "name": "percona-xtradb-cluster-operator", "url": "https://quay.io/repository/operator_testing/percona-xtradb-cluster-operator", - "popularity": 198.0 + "popularity": 40.0 } ] }, @@ -59890,7 +54895,7 @@ { "name": "keycloak", "url": "https://quay.io/repository/keycloak/keycloak", - "popularity": 1942852.0 + "popularity": 1971447.0 }, { "name": "keycloak", @@ -59900,34 +54905,34 @@ { "name": "keycloak", "url": "https://quay.io/repository/ukhomeofficedigital/keycloak", - "popularity": 31.0 + "popularity": 42.0 } ], "quay_top_images": [ { "name": "keycloak", "url": "https://quay.io/repository/keycloak/keycloak", - "popularity": 1942852.0 + "popularity": 1971447.0 }, { "name": "keycloak-operator", "url": "https://quay.io/repository/keycloak/keycloak-operator", - "popularity": 52527.0 + "popularity": 53364.0 }, { "name": "keycloak-init-container", "url": "https://quay.io/repository/keycloak/keycloak-init-container", - "popularity": 48312.0 + "popularity": 50501.0 }, { "name": "keycloak-gatekeeper", "url": "https://quay.io/repository/keycloak/keycloak-gatekeeper", - "popularity": 12400.0 + "popularity": 12348.0 }, { "name": "keycloak-proxy", "url": "https://quay.io/repository/gambol99/keycloak-proxy", - "popularity": 5837.0 + "popularity": 5942.0 } ] }, @@ -60165,7 +55170,7 @@ { "name": "grafana", "url": "https://quay.io/repository/opencloudio/grafana", - "popularity": 1812.0 + "popularity": 1638.0 }, { "name": "grafana", @@ -60175,12 +55180,12 @@ { "name": "grafana", "url": "https://quay.io/repository/cybozu/grafana", - "popularity": 682.0 + "popularity": 971.0 }, { "name": "grafana", "url": "https://quay.io/repository/sisense/grafana", - "popularity": 857.0 + "popularity": 883.0 }, { "name": "grafana", @@ -60192,27 +55197,27 @@ { "name": "grafana-operator", "url": "https://quay.io/repository/grafana-operator/grafana-operator", - "popularity": 208648.0 + "popularity": 198763.0 }, { "name": "grafana-operator", "url": "https://quay.io/repository/integreatly/grafana-operator", - "popularity": 55467.0 + "popularity": 57306.0 }, { "name": "ibm-monitoring-grafana-operator", "url": "https://quay.io/repository/opencloudio/ibm-monitoring-grafana-operator", - "popularity": 19136.0 + "popularity": 18976.0 }, { "name": "ceph-grafana", "url": "https://quay.io/repository/ceph/ceph-grafana", - "popularity": 10807.0 + "popularity": 10710.0 }, { - "name": "grafana-operator", - "url": "https://quay.io/repository/openshift-community-operators/grafana-operator", - "popularity": 4768.0 + "name": "origin-grafana", + "url": "https://quay.io/repository/openshift/origin-grafana", + "popularity": 3932.0 } ] }, @@ -60321,7 +55326,7 @@ { "name": "mattermost", "url": "https://quay.io/repository/fodoj/mattermost", - "popularity": 16.0 + "popularity": 44.0 }, { "name": "mattermost", @@ -60348,17 +55353,17 @@ { "name": "mattermost-operator", "url": "https://quay.io/repository/operatorhubio/mattermost-operator", - "popularity": 36.0 + "popularity": 32.0 }, { "name": "mattermost", "url": "https://quay.io/repository/fodoj/mattermost", - "popularity": 16.0 + "popularity": 44.0 }, { "name": "mattermost-operator", "url": "https://quay.io/repository/openshift-community-operators/mattermost-operator", - "popularity": 16.0 + "popularity": 15.0 } ] }, @@ -60424,7 +55429,7 @@ { "name": "synapse", "url": "https://quay.io/repository/jostone/synapse", - "popularity": 171.0 + "popularity": 170.0 }, { "name": "synapse", @@ -60443,10 +55448,15 @@ } ], "quay_top_images": [ + { + "name": "synapse", + "url": "https://quay.io/repository/dockernohub/synapse", + "popularity": 0.0 + }, { "name": "synapse", "url": "https://quay.io/repository/jostone/synapse", - "popularity": 171.0 + "popularity": 170.0 }, { "name": "matrix-synapse", @@ -60456,17 +55466,12 @@ { "name": "synapse-helm", "url": "https://quay.io/repository/operatorhubio/synapse-helm", - "popularity": 36.0 + "popularity": 32.0 }, { "name": "synapse-helm", "url": "https://quay.io/repository/mgoerens/synapse-helm", - "popularity": 15.0 - }, - { - "name": "fedora-synapse", - "url": "https://quay.io/repository/mugful/fedora-synapse", - "popularity": 10.0 + "popularity": 23.0 } ] }, @@ -60546,27 +55551,27 @@ { "name": "cloud-connector", "url": "https://quay.io/repository/sysdig/cloud-connector", - "popularity": 1192367.0 + "popularity": 1158880.0 }, { "name": "cloud-connector-s3-bucket-config", "url": "https://quay.io/repository/sysdig/cloud-connector-s3-bucket-config", - "popularity": 629482.0 + "popularity": 619283.0 }, { "name": "icp-iam-onboarding", "url": "https://quay.io/repository/opencloudio/icp-iam-onboarding", - "popularity": 542731.0 + "popularity": 543699.0 }, { "name": "iam-policy-decision", "url": "https://quay.io/repository/opencloudio/iam-policy-decision", - "popularity": 383695.0 + "popularity": 391057.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 } ] }, @@ -60662,27 +55667,27 @@ { "name": "knative-serving-package", "url": "https://quay.io/repository/failk8s/knative-serving-package", - "popularity": 6793.0 + "popularity": 5475.0 }, { "name": "knative-eventing-sources-heartbeats", "url": "https://quay.io/repository/openshift-knative/knative-eventing-sources-heartbeats", - "popularity": 10998.0 + "popularity": 10591.0 }, { "name": "knative-operator", "url": "https://quay.io/repository/vollerchris/knative-operator", - "popularity": 41791.0 + "popularity": 41776.0 }, { - "name": "knative-serving-storage-version-migration", - "url": "https://quay.io/repository/openshift-knative/knative-serving-storage-version-migration", - "popularity": 2994.0 + "name": "knative-eventing-sources-event-display", + "url": "https://quay.io/repository/openshift-knative/knative-eventing-sources-event-display", + "popularity": 3558.0 }, { - "name": "knative-eventing-storage-version-migration", - "url": "https://quay.io/repository/openshift-knative/knative-eventing-storage-version-migration", - "popularity": 2836.0 + "name": "knative-serving-storage-version-migration", + "url": "https://quay.io/repository/openshift-knative/knative-serving-storage-version-migration", + "popularity": 3011.0 } ] }, @@ -60948,27 +55953,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 883725.0 + "popularity": 897952.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 403203.0 + "popularity": 412719.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 + "popularity": 265927.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 } ] }, @@ -61046,7 +56051,7 @@ { "name": "kubeflow", "url": "https://quay.io/repository/operatorhubio/kubeflow", - "popularity": 849.0 + "popularity": 581.0 }, { "name": "kubeflow", @@ -61058,27 +56063,27 @@ { "name": "kubeflow-notebook-controller-ppc64le", "url": "https://quay.io/repository/ibm/kubeflow-notebook-controller-ppc64le", - "popularity": 14.0 + "popularity": 17.0 }, { "name": "kubeflow", "url": "https://quay.io/repository/operatorhubio/kubeflow", - "popularity": 849.0 + "popularity": 581.0 }, { "name": "kubeflow-notebook-controller", "url": "https://quay.io/repository/opendatahub/kubeflow-notebook-controller", - "popularity": 162.0 + "popularity": 124.0 }, { "name": "kubeflow-viewer-crd-controller-ppc64le", "url": "https://quay.io/repository/ibm/kubeflow-viewer-crd-controller-ppc64le", - "popularity": 17.0 + "popularity": 20.0 }, { "name": "kubeflow-notebook-image-ppc64le", "url": "https://quay.io/repository/ibm/kubeflow-notebook-image-ppc64le", - "popularity": 55.0 + "popularity": 26.0 } ] }, @@ -61138,22 +56143,22 @@ { "name": "openshift-qiskit-operator", "url": "https://quay.io/repository/operatorhubio/openshift-qiskit-operator", - "popularity": 108.0 + "popularity": 102.0 }, { "name": "openshift-qiskit-operator", "url": "https://quay.io/repository/openshift-community-operators/openshift-qiskit-operator", - "popularity": 96.0 + "popularity": 87.0 }, { "name": "qiskit-op", "url": "https://quay.io/repository/husky_parul/qiskit-op", - "popularity": 34.0 + "popularity": 38.0 }, { "name": "centos-qiskit-jupyter", "url": "https://quay.io/repository/husky_parul/centos-qiskit-jupyter", - "popularity": 6.0 + "popularity": 10.0 }, { "name": "qiskit-playground", @@ -61270,27 +56275,27 @@ { "name": "azure-pipelines-test-container", "url": "https://quay.io/repository/ansible/azure-pipelines-test-container", - "popularity": 39219.0 + "popularity": 39786.0 }, { "name": "origin-azure-machine-controllers", "url": "https://quay.io/repository/openshift/origin-azure-machine-controllers", - "popularity": 3696.0 - }, - { - "name": "origin-azure-disk-csi-driver", - "url": "https://quay.io/repository/openshift/origin-azure-disk-csi-driver", - "popularity": 2688.0 + "popularity": 3674.0 }, { "name": "velero-plugin-for-microsoft-azure", "url": "https://quay.io/repository/konveyor/velero-plugin-for-microsoft-azure", - "popularity": 3363.0 + "popularity": 3907.0 + }, + { + "name": "origin-azure-disk-csi-driver", + "url": "https://quay.io/repository/openshift/origin-azure-disk-csi-driver", + "popularity": 2672.0 }, { "name": "operator-azure-ci", "url": "https://quay.io/repository/cilium/operator-azure-ci", - "popularity": 5825.0 + "popularity": 5788.0 } ] }, @@ -61349,27 +56354,27 @@ { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 883725.0 + "popularity": 897952.0 }, { "name": "topic-strimzi-operator", "url": "https://quay.io/repository/vollerchris/topic-strimzi-operator", - "popularity": 41798.0 + "popularity": 41770.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 403203.0 + "popularity": 412719.0 }, { "name": "jmxtrans", "url": "https://quay.io/repository/strimzi/jmxtrans", - "popularity": 22891.0 + "popularity": 23366.0 }, { "name": "kafka-bridge", "url": "https://quay.io/repository/strimzi/kafka-bridge", - "popularity": 14244.0 + "popularity": 14164.0 } ] }, @@ -61383,19 +56388,19 @@ "stars": 18, "display_name": "Strimzi", "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", - "version": "0.29.0", + "version": "0.30.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 412, - "high": 38, - "medium": 473, - "unknown": 7, - "critical": 6 + "low": 277, + "high": 13, + "medium": 348, + "unknown": 5, + "critical": 4 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1652572867, + "ts": 1657929610, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -61414,8 +56419,6 @@ "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka", "quay.io/strimzi/kafka-bridge", "quay.io/strimzi/jmxtrans", "quay.io/strimzi/kaniko-executor", @@ -61439,7 +56442,7 @@ { "name": "sematext", "url": "https://quay.io/repository/operatorhubio/sematext", - "popularity": 151.0 + "popularity": 91.0 }, { "name": "sematext", @@ -61456,7 +56459,7 @@ { "name": "sematext", "url": "https://quay.io/repository/operatorhubio/sematext", - "popularity": 151.0 + "popularity": 91.0 }, { "name": "sematext", @@ -61521,27 +56524,27 @@ { "name": "che-plugin-artifacts-broker", "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", - "popularity": 19550.0 + "popularity": 19392.0 }, { "name": "che-operator", "url": "https://quay.io/repository/eclipse/che-operator", - "popularity": 34982.0 + "popularity": 37958.0 }, { "name": "che-plugin-sidecar", "url": "https://quay.io/repository/eclipse/che-plugin-sidecar", - "popularity": 21159.0 + "popularity": 21047.0 }, { "name": "che-java11-maven", "url": "https://quay.io/repository/eclipse/che-java11-maven", - "popularity": 25543.0 + "popularity": 26579.0 }, { "name": "che-plugin-registry", "url": "https://quay.io/repository/eclipse/che-plugin-registry", - "popularity": 14280.0 + "popularity": 14198.0 } ] }, @@ -61601,27 +56604,27 @@ { "name": "che-plugin-artifacts-broker", "url": "https://quay.io/repository/eclipse/che-plugin-artifacts-broker", - "popularity": 19550.0 + "popularity": 19392.0 }, { "name": "che-operator", "url": "https://quay.io/repository/eclipse/che-operator", - "popularity": 34982.0 + "popularity": 37958.0 }, { "name": "che-plugin-sidecar", "url": "https://quay.io/repository/eclipse/che-plugin-sidecar", - "popularity": 21159.0 + "popularity": 21047.0 }, { "name": "che-java11-maven", "url": "https://quay.io/repository/eclipse/che-java11-maven", - "popularity": 25543.0 + "popularity": 26579.0 }, { "name": "che-plugin-registry", "url": "https://quay.io/repository/eclipse/che-plugin-registry", - "popularity": 14280.0 + "popularity": 14198.0 } ] }, @@ -61678,7 +56681,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 4943, + "star_count": 4945, "Docker_Url": "https://hub.docker.com/_/mariadb", "OS": [ { @@ -61720,7 +56723,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 163, + "star_count": 164, "Docker_Url": "https://hub.docker.com/r/bitnami/mariadb", "OS": [ { @@ -61848,7 +56851,7 @@ "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 163, + "star_count": 164, "Docker_Url": "https://hub.docker.com/r/bitnami/mariadb", "OS": [ { @@ -61866,7 +56869,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 4943, + "star_count": 4945, "Docker_Url": "https://hub.docker.com/_/mariadb", "OS": [ { @@ -61910,12 +56913,12 @@ { "name": "mariadb", "url": "https://quay.io/repository/startx/mariadb", - "popularity": 15691.0 + "popularity": 15330.0 }, { "name": "mariadb", "url": "https://quay.io/repository/metal3-io/mariadb", - "popularity": 1976.0 + "popularity": 1568.0 }, { "name": "mariadb", @@ -61927,27 +56930,27 @@ { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 245318.0 + "popularity": 250172.0 }, { "name": "mariadb-105-centos7", "url": "https://quay.io/repository/centos7/mariadb-105-centos7", - "popularity": 142292.0 + "popularity": 146865.0 }, { "name": "mariadb", "url": "https://quay.io/repository/startx/mariadb", - "popularity": 15691.0 - }, - { - "name": "mariadb-server", - "url": "https://quay.io/repository/openstack.kolla/mariadb-server", - "popularity": 2041.0 + "popularity": 15330.0 }, { "name": "mariadb", "url": "https://quay.io/repository/metal3-io/mariadb", - "popularity": 1976.0 + "popularity": 1568.0 + }, + { + "name": "todolist-mariadb-go", + "url": "https://quay.io/repository/mferrato/todolist-mariadb-go", + "popularity": 1412.0 } ] }, @@ -62069,27 +57072,27 @@ { "name": "istio-workspace", "url": "https://quay.io/repository/maistra/istio-workspace", - "popularity": 41484.0 + "popularity": 40139.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 421059.0 + "popularity": 430335.0 }, { "name": "am-istio", "url": "https://quay.io/repository/aspenmesh/am-istio", - "popularity": 7879.0 + "popularity": 8011.0 }, { "name": "istio-ubi8-operator", "url": "https://quay.io/repository/maistra/istio-ubi8-operator", - "popularity": 2078.0 + "popularity": 2019.0 }, { "name": "cert-manager-istio-csr", "url": "https://quay.io/repository/jetstack/cert-manager-istio-csr", - "popularity": 2621.0 + "popularity": 2467.0 } ] }, @@ -62304,39 +57307,39 @@ { "name": "vault", "url": "https://quay.io/repository/cybozu/vault", - "popularity": 1054.0 + "popularity": 1302.0 }, { "name": "vault", "url": "https://quay.io/repository/giantswarm/vault", - "popularity": 345.0 + "popularity": 511.0 } ], "quay_top_images": [ { "name": "file-vault", "url": "https://quay.io/repository/ukhomeofficedigital/file-vault", - "popularity": 42988.0 + "popularity": 42928.0 }, { "name": "vault-next-gen", "url": "https://quay.io/repository/codefreshplugins/vault-next-gen", - "popularity": 28859.0 + "popularity": 28748.0 }, { "name": "vault-sidekick", "url": "https://quay.io/repository/ukhomeofficedigital/vault-sidekick", - "popularity": 7265.0 + "popularity": 7040.0 }, { "name": "kubernetes-vault-client", "url": "https://quay.io/repository/travelaudience/kubernetes-vault-client", - "popularity": 8807.0 + "popularity": 8244.0 }, { "name": "ibm-cert-manager-operator", "url": "https://quay.io/repository/opencloudio/ibm-cert-manager-operator", - "popularity": 35871.0 + "popularity": 35255.0 } ] }, @@ -62533,27 +57536,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 883725.0 + "popularity": 897952.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 403203.0 + "popularity": 412719.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 + "popularity": 265927.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 } ] }, @@ -62785,54 +57788,54 @@ { "name": "etcd", "url": "https://quay.io/repository/coreos/etcd", - "popularity": 5144331.0 + "popularity": 5194433.0 }, { "name": "etcd", "url": "https://quay.io/repository/openshift-community-operators/etcd", - "popularity": 3705.0 + "popularity": 4374.0 }, { "name": "etcd", "url": "https://quay.io/repository/cybozu/etcd", - "popularity": 1623.0 + "popularity": 2002.0 }, { "name": "etcd", "url": "https://quay.io/repository/olmqe/etcd", - "popularity": 3064.0 + "popularity": 3732.0 }, { "name": "etcd", "url": "https://quay.io/repository/karbon/etcd", - "popularity": 1912.0 + "popularity": 1980.0 } ], "quay_top_images": [ { "name": "etcd", "url": "https://quay.io/repository/coreos/etcd", - "popularity": 5144331.0 + "popularity": 5194433.0 }, { "name": "etcd-operator", "url": "https://quay.io/repository/coreos/etcd-operator", - "popularity": 66783.0 + "popularity": 69367.0 }, { "name": "flannel", "url": "https://quay.io/repository/coreos/flannel", - "popularity": 1674754.0 + "popularity": 1741937.0 }, { "name": "etcd-bundle", "url": "https://quay.io/repository/olmqe/etcd-bundle", - "popularity": 14562.0 + "popularity": 14532.0 }, { "name": "etcd-index", "url": "https://quay.io/repository/olmqe/etcd-index", - "popularity": 14290.0 + "popularity": 14298.0 } ] }, @@ -62884,15 +57887,39 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 2578, + "star_count": 2581, "Docker_Url": "https://hub.docker.com/_/traefik", "OS": [ { "Class": "OS", "Architecture": "amd64", "Variants": null, - "Versions": "10.0.17763.3165", - "Type": "windows", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v6", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", "Subtype": "" } ] @@ -62904,15 +57931,39 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 2578, + "star_count": 2581, "Docker_Url": "https://hub.docker.com/_/traefik", "OS": [ { "Class": "OS", "Architecture": "amd64", "Variants": null, - "Versions": "10.0.17763.3165", - "Type": "windows", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm", + "Variants": "v6", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "arm64", + "Variants": "v8", + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", "Subtype": "" } ] @@ -62924,12 +57975,12 @@ { "name": "traefik", "url": "https://quay.io/repository/widen/traefik", - "popularity": 1127.0 + "popularity": 1155.0 }, { "name": "traefik", "url": "https://quay.io/repository/internaldatahub/traefik", - "popularity": 949.0 + "popularity": 934.0 }, { "name": "traefik", @@ -62939,7 +57990,7 @@ { "name": "traefik", "url": "https://quay.io/repository/fivium/traefik", - "popularity": 226.0 + "popularity": 262.0 }, { "name": "traefik", @@ -62953,13 +58004,13 @@ }, { "name": "traefik", - "url": "https://quay.io/repository/rizoa/traefik", - "popularity": 3.0 + "url": "https://quay.io/repository/procentive/traefik", + "popularity": 103.0 }, { "name": "traefik", - "url": "https://quay.io/repository/procentive/traefik", - "popularity": 93.0 + "url": "https://quay.io/repository/rizoa/traefik", + "popularity": 1.0 }, { "name": "traefik", @@ -62969,7 +58020,7 @@ { "name": "traefik", "url": "https://quay.io/repository/kube-ops/traefik", - "popularity": 26.0 + "popularity": 24.0 }, { "name": "traefik", @@ -62986,27 +58037,27 @@ { "name": "che--traefik", "url": "https://quay.io/repository/eclipse/che--traefik", - "popularity": 1164.0 + "popularity": 1218.0 }, { "name": "traefik", "url": "https://quay.io/repository/widen/traefik", - "popularity": 1127.0 + "popularity": 1155.0 }, { "name": "traefik", "url": "https://quay.io/repository/internaldatahub/traefik", - "popularity": 949.0 + "popularity": 934.0 }, { "name": "odh-traefik-container", "url": "https://quay.io/repository/modh/odh-traefik-container", - "popularity": 1155.0 + "popularity": 1434.0 }, { "name": "traefik-rhel8", "url": "https://quay.io/repository/devspaces/traefik-rhel8", - "popularity": 298.0 + "popularity": 414.0 } ] }, @@ -63103,27 +58154,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "cloud-connector", "url": "https://quay.io/repository/sysdig/cloud-connector", - "popularity": 1192367.0 + "popularity": 1158880.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "cloud-connector-s3-bucket-config", "url": "https://quay.io/repository/sysdig/cloud-connector-s3-bucket-config", - "popularity": 629482.0 + "popularity": 619283.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 } ] }, @@ -63410,7 +58461,7 @@ { "name": "yugabytedb-operator", "url": "https://quay.io/repository/yugabyte/yugabytedb-operator", - "popularity": 4074.0 + "popularity": 4073.0 }, { "name": "yugabytedb", @@ -63420,7 +58471,7 @@ { "name": "debezium-connector", "url": "https://quay.io/repository/yugabyte/debezium-connector", - "popularity": 15.0 + "popularity": 38.0 }, { "name": "yugabytedb", @@ -63428,9 +58479,9 @@ "popularity": 0.0 }, { - "name": "cdcsdk-server", - "url": "https://quay.io/repository/yugabyte/cdcsdk-server", - "popularity": 0.0 + "name": "connect-base-yb", + "url": "https://quay.io/repository/yugabyte/connect-base-yb", + "popularity": 4.0 } ] }, @@ -63491,49 +58542,49 @@ { "name": "cockroachdb", "url": "https://quay.io/repository/helmoperators/cockroachdb", - "popularity": 2815.0 + "popularity": 3271.0 }, { "name": "cockroachdb", "url": "https://quay.io/repository/operatorhubio/cockroachdb", - "popularity": 218.0 + "popularity": 204.0 }, { "name": "cockroachdb", - "url": "https://quay.io/repository/community-operators-pipeline/cockroachdb", - "popularity": 0.0 + "url": "https://quay.io/repository/openshift-community-operators/cockroachdb", + "popularity": 120.0 }, { "name": "cockroachdb", - "url": "https://quay.io/repository/openshift-community-operators/cockroachdb", - "popularity": 131.0 + "url": "https://quay.io/repository/community-operators-pipeline/cockroachdb", + "popularity": 0.0 } ], "quay_top_images": [ { "name": "cockroachdb-index", "url": "https://quay.io/repository/olmqe/cockroachdb-index", - "popularity": 6902.0 + "popularity": 6521.0 }, { "name": "cockroachdb-operator", "url": "https://quay.io/repository/olmqe/cockroachdb-operator", - "popularity": 5413.0 + "popularity": 5482.0 }, { "name": "cockroachdb", "url": "https://quay.io/repository/helmoperators/cockroachdb", - "popularity": 2815.0 + "popularity": 3271.0 }, { "name": "cockroachdb-operator", "url": "https://quay.io/repository/kuiwang/cockroachdb-operator", - "popularity": 1428.0 + "popularity": 1689.0 }, { "name": "spicedb", "url": "https://quay.io/repository/authzed/spicedb", - "popularity": 13555.0 + "popularity": 14285.0 } ] }, @@ -63594,39 +58645,39 @@ { "name": "jaeger", "url": "https://quay.io/repository/operatorhubio/jaeger", - "popularity": 1333.0 + "popularity": 1105.0 }, { "name": "jaeger", "url": "https://quay.io/repository/openshift-community-operators/jaeger", - "popularity": 642.0 + "popularity": 1166.0 } ], "quay_top_images": [ { "name": "jaeger-operator", "url": "https://quay.io/repository/jaegertracing/jaeger-operator", - "popularity": 54266.0 + "popularity": 54640.0 }, { "name": "jaeger-agent", "url": "https://quay.io/repository/jaegertracing/jaeger-agent", - "popularity": 20565.0 + "popularity": 19805.0 }, { "name": "jaeger-query", "url": "https://quay.io/repository/jaegertracing/jaeger-query", - "popularity": 9786.0 + "popularity": 9826.0 }, { "name": "jaeger-collector", "url": "https://quay.io/repository/jaegertracing/jaeger-collector", - "popularity": 45020.0 + "popularity": 45182.0 }, { "name": "jaeger", - "url": "https://quay.io/repository/operatorhubio/jaeger", - "popularity": 1333.0 + "url": "https://quay.io/repository/openshift-community-operators/jaeger", + "popularity": 1166.0 } ] }, @@ -63640,7 +58691,7 @@ "stars": 4, "display_name": "Community Jaeger Operator", "description": "Provides tracing, monitoring and troubleshooting for microservices-based distributed systems", - "version": "1.35.0", + "version": "1.36.0", "deprecated": false, "signed": false, "all_containers_images_whitelisted": false, @@ -63660,7 +58711,7 @@ }, "git_repos": "https://github.com/jaegertracing/jaeger-operator", "container_images": [ - "quay.io/jaegertracing/jaeger-operator:1.35.0" + "quay.io/jaegertracing/jaeger-operator:1.36.0" ] } ] @@ -63718,27 +58769,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "blackbox-exporter", "url": "https://quay.io/repository/prometheus/blackbox-exporter", - "popularity": 90723.0 + "popularity": 90209.0 }, { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 + "popularity": 30527.0 }, { "name": "spicedb", "url": "https://quay.io/repository/authzed/spicedb", - "popularity": 13555.0 + "popularity": 14285.0 }, { - "name": "statsd-exporter", - "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8041.0 + "name": "gawk", + "url": "https://quay.io/repository/biocontainers/gawk", + "popularity": 20761.0 } ] }, @@ -63786,18 +58837,18 @@ "popularity": 0.0 }, { - "name": "138-slot-gacor-maxwin-anti-rungkat", - "url": "https://quay.io/repository/138slot/138-slot-gacor-maxwin-anti-rungkat", - "popularity": 3.0 + "name": "ruby", + "url": "https://quay.io/repository/ibmz/ruby", + "popularity": 0.0 }, { - "name": "coloktotofyp", - "url": "https://quay.io/repository/coloktotofyp/coloktotofyp", + "name": "laetoto", + "url": "https://quay.io/repository/togelonlinelae/laetoto", "popularity": 1.0 }, { - "name": "laetoto", - "url": "https://quay.io/repository/togelonlinelae/laetoto", + "name": "coloktotofyp", + "url": "https://quay.io/repository/coloktotofyp/coloktotofyp", "popularity": 1.0 } ] @@ -63843,138 +58894,6 @@ "entity_type": 9, "entity_id": 657 }, - { - "Ansible": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "ibmcom/ansible-ppc64le", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ansible-ppc64le", - "OS": [ - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "rancher/ansible-runner", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 6, - "Docker_Url": "https://hub.docker.com/r/rancher/ansible-runner", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/ibp-ansible", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ibp-ansible", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/ansible-s390x", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ansible-s390x", - "OS": [ - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [ - { - "name": "ansible", - "url": "https://quay.io/repository/cloudctl/ansible", - "popularity": 968.0 - }, - { - "name": "ansible", - "url": "https://quay.io/repository/containercraft/ansible", - "popularity": 0.0 - }, - { - "name": "ansible", - "url": "https://quay.io/repository/osbuild/ansible", - "popularity": 723.0 - } - ], - "quay_top_images": [ - { - "name": "ansible-operator", - "url": "https://quay.io/repository/operator-framework/ansible-operator", - "popularity": 20208.0 - }, - { - "name": "ansible-runner", - "url": "https://quay.io/repository/ansible/ansible-runner", - "popularity": 19109.0 - }, - { - "name": "origin-ansible", - "url": "https://quay.io/repository/openshift/origin-ansible", - "popularity": 12114.0 - }, - { - "name": "gitlab-ansible-runner", - "url": "https://quay.io/repository/sheogorath/gitlab-ansible-runner", - "popularity": 20164.0 - }, - { - "name": "runner-ansible", - "url": "https://quay.io/repository/startx/runner-ansible", - "popularity": 8187.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 2, - "entity_id": 658 - }, { "Batch": [ { @@ -63987,7 +58906,7 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "cloud-batch", @@ -63997,12 +58916,12 @@ { "name": "pushgateway", "url": "https://quay.io/repository/prometheus/pushgateway", - "popularity": 30456.0 + "popularity": 30527.0 }, { "name": "batch-export", "url": "https://quay.io/repository/cdis/batch-export", - "popularity": 418.0 + "popularity": 250.0 }, { "name": "batch-export-service", @@ -64143,19 +59062,19 @@ "stars": 18, "display_name": "Strimzi", "description": "Strimzi provides a way to run an Apache Kafka cluster on Kubernetes or OpenShift in various deployment configurations.", - "version": "0.29.0", + "version": "0.30.0", "deprecated": false, "signed": false, "security_report_summary": { - "low": 412, - "high": 38, - "medium": 473, - "unknown": 7, - "critical": 6 + "low": 277, + "high": 13, + "medium": 348, + "unknown": 5, + "critical": 4 }, "all_containers_images_whitelisted": false, "production_organizations_count": 0, - "ts": 1652572867, + "ts": 1657929610, "repository": { "url": "https://github.com/k8s-operatorhub/community-operators/operators", "kind": 3, @@ -64174,8 +59093,6 @@ "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka", - "quay.io/strimzi/kafka", "quay.io/strimzi/kafka-bridge", "quay.io/strimzi/jmxtrans", "quay.io/strimzi/kaniko-executor", @@ -64802,7 +59719,7 @@ "stars": 4, "display_name": "Community Jaeger Operator", "description": "Provides tracing, monitoring and troubleshooting for microservices-based distributed systems", - "version": "1.35.0", + "version": "1.36.0", "deprecated": false, "signed": false, "all_containers_images_whitelisted": false, @@ -64822,7 +59739,7 @@ }, "git_repos": "https://github.com/jaegertracing/jaeger-operator", "container_images": [ - "quay.io/jaegertracing/jaeger-operator:1.35.0" + "quay.io/jaegertracing/jaeger-operator:1.36.0" ] } ] @@ -64976,477 +59893,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 - }, - { - "name": "ibm-events-kafka-2.7.0", - "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 - }, - { - "name": "ibm-events-operator", - "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 - }, - { - "name": "ibm-auditlogging-operator", - "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 - }, - { - "name": "ibm-common-service-catalog", - "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 2, - "entity_id": 666 - }, - { - "IDMS DB": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "appdynamics/db-agent", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/appdynamics/db-agent", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [] - }, - { - "operators": [] - } - ], - "entity_type": 2, - "entity_id": 667 - }, - { - "IDMS DML": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "dml", - "url": "https://quay.io/repository/digitalmarketinglucknow/dml", - "popularity": 0.0 - } - ] - }, - { - "operators": [] - } - ], - "entity_type": 9, - "entity_id": 668 - }, - { - "Jaguar": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [] - }, - { - "operators": [] - } - ], - "entity_type": 8, - "entity_id": 669 - }, - { - "EAServer": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [] - }, - { - "quay_exact_images": [], - "quay_top_images": [] - }, - { - "operators": [] - } - ], - "entity_type": 8, - "entity_id": 670 - }, - { - "Apache Cassandra": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "bitnami/apache", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 82, - "Docker_Url": "https://hub.docker.com/r/bitnami/apache", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ubuntu/cassandra", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 2, - "Docker_Url": "https://hub.docker.com/r/ubuntu/cassandra", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "circleci/cassandra", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/circleci/cassandra", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "bitnami/cassandra", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 44, - "Docker_Url": "https://hub.docker.com/r/bitnami/cassandra", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "cassandra", - "Official image": true, - "Verified Publisher": false, - "Description": "", - "star_count": 1390, - "Docker_Url": "https://hub.docker.com/_/cassandra", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm", - "Variants": "v7", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "arm64", - "Variants": "v8", - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "prometheus", - "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 - }, - { - "name": "kafka", - "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 883725.0 - }, - { - "name": "operator", - "url": "https://quay.io/repository/strimzi/operator", - "popularity": 403203.0 - }, - { - "name": "httpd-24-centos7", - "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 - }, - { - "name": "busybox", - "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 - } - ] - }, - { - "operators": [ - { - "package_id": "280420eb-a3b0-46fa-bef3-4300e85a7ad1", - "name": "cass-operator-community", - "normalized_name": "cass-operator-community", - "logo_image_id": "ac0cc465-c42f-43d9-a288-ec178d9f3ef9", - "stars": 0, - "display_name": "DataStax Kubernetes Operator for Apache Cassandra", - "description": "Simple provisioning, turn-key operations, and automated remediation of Apache Cassandra clusters\n", - "version": "1.10.4", - "deprecated": false, - "signed": false, - "security_report_summary": { - "low": 7, - "high": 0, - "medium": 7, - "unknown": 1, - "critical": 0 - }, - "all_containers_images_whitelisted": false, - "production_organizations_count": 0, - "ts": 1652441433, - "repository": { - "url": "https://github.com/k8s-operatorhub/community-operators/operators", - "kind": 3, - "name": "community-operators", - "official": false, - "display_name": "Community Operators", - "repository_id": "0f467c6e-3eb4-4b6c-8140-410c084de5b8", - "scanner_disabled": false, - "organization_name": "operator-framework", - "verified_publisher": false, - "organization_display_name": "Operator Framework" - }, - "git_repos": "https://github.com/k8ssandra/cass-operator", - "container_images": [] - } - ] - } - ], - "entity_type": 2, - "entity_id": 671 - }, - { - "IBM Netezza": [ - { - "dockerhub_exact_images": [], - "dockerhub_top_images": [ - { - "name": "ibmcom/ibm-operator-catalog", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 5, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "ppc64le", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/ibm-mq-operator", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "ibmcom/ibm-apiconnect-operator", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 1, - "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - }, - { - "Class": "OS", - "Architecture": "s390x", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - } - ] - }, - { - "quay_exact_images": [], - "quay_top_images": [ - { - "name": "ibm-crossplane-bedrock-shim-config", - "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "ibm-common-service-catalog", "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", - "popularity": 203269.0 + "popularity": 204630.0 } ] }, @@ -65454,33 +59921,222 @@ "operators": [] } ], - "entity_type": 4, - "entity_id": 672 + "entity_type": 2, + "entity_id": 666 + }, + { + "IDMS DB": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "appdynamics/db-agent", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 2, + "Docker_Url": "https://hub.docker.com/r/appdynamics/db-agent", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 2, + "entity_id": 667 }, { - "OpenEdge": [ + "IDMS DML": [ { "dockerhub_exact_images": [], "dockerhub_top_images": [] }, { - "quay_exact_images": [ + "quay_exact_images": [], + "quay_top_images": [ { - "name": "openedge", - "url": "https://quay.io/repository/g_querret/openedge", + "name": "dml", + "url": "https://quay.io/repository/digitalmarketinglucknow/dml", "popularity": 0.0 } - ], + ] + }, + { + "operators": [] + } + ], + "entity_type": 9, + "entity_id": 668 + }, + { + "Jaguar": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 669 + }, + { + "EAServer": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [] + }, + { + "quay_exact_images": [], + "quay_top_images": [] + }, + { + "operators": [] + } + ], + "entity_type": 8, + "entity_id": 670 + }, + { + "IBM Netezza": [ + { + "dockerhub_exact_images": [], + "dockerhub_top_images": [ + { + "name": "ibmcom/ibm-operator-catalog", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 5, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-operator-catalog", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "ppc64le", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-mq-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-mq-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + } + ] + }, + { + "quay_exact_images": [], "quay_top_images": [ { - "name": "openedge", - "url": "https://quay.io/repository/g_querret/openedge", - "popularity": 0.0 + "name": "ibm-crossplane-bedrock-shim-config", + "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", + "popularity": 468518.0 }, { - "name": "openedge-appserver", - "url": "https://quay.io/repository/g_querret/openedge-appserver", - "popularity": 0.0 + "name": "ibm-events-kafka-2.7.0", + "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", + "popularity": 526926.0 + }, + { + "name": "ibm-events-operator", + "url": "https://quay.io/repository/opencloudio/ibm-events-operator", + "popularity": 368277.0 + }, + { + "name": "ibm-auditlogging-operator", + "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", + "popularity": 411336.0 + }, + { + "name": "ibm-common-service-catalog", + "url": "https://quay.io/repository/opencloudio/ibm-common-service-catalog", + "popularity": 204630.0 } ] }, @@ -65488,8 +60144,8 @@ "operators": [] } ], - "entity_type": 9, - "entity_id": 673 + "entity_type": 4, + "entity_id": 672 }, { "OpenROAD": [ @@ -65609,27 +60265,27 @@ { "name": "teleport", "url": "https://quay.io/repository/gravitational/teleport", - "popularity": 145184.0 + "popularity": 137803.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 36573.0 + "popularity": 30531.0 }, { "name": "teleport-ent", "url": "https://quay.io/repository/gravitational/teleport-ent", - "popularity": 25900.0 + "popularity": 27180.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20354.0 + "popularity": 20583.0 }, { "name": "multiqc", "url": "https://quay.io/repository/biocontainers/multiqc", - "popularity": 30213.0 + "popularity": 43577.0 } ] }, @@ -65725,27 +60381,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 + }, + { + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -65817,12 +60473,12 @@ ] }, { - "name": "rancher/git-logrotate", + "name": "rancher/git-analyze", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/rancher/git-logrotate", + "Docker_Url": "https://hub.docker.com/r/rancher/git-analyze", "OS": [ { "Class": "OS", @@ -65835,12 +60491,12 @@ ] }, { - "name": "rancher/git-mirror", + "name": "rancher/git-serve", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/rancher/git-mirror", + "Docker_Url": "https://hub.docker.com/r/rancher/git-serve", "OS": [ { "Class": "OS", @@ -65853,12 +60509,12 @@ ] }, { - "name": "rancher/git-serve", + "name": "rancher/git-logrotate", "Official image": false, "Verified Publisher": true, "Description": "", "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/rancher/git-serve", + "Docker_Url": "https://hub.docker.com/r/rancher/git-logrotate", "OS": [ { "Class": "OS", @@ -65877,34 +60533,34 @@ { "name": "git", "url": "https://quay.io/repository/sisense/git", - "popularity": 1236.0 + "popularity": 1605.0 } ], "quay_top_images": [ { "name": "cf-git-cloner", "url": "https://quay.io/repository/codefresh/cf-git-cloner", - "popularity": 158921.0 + "popularity": 161998.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "argo-hub-workflows-codefresh-csdp-versions-0.0.6-images-image-enricher-git-info", "url": "https://quay.io/repository/codefreshplugins/argo-hub-workflows-codefresh-csdp-versions-0.0.6-images-image-enricher-git-info", - "popularity": 92681.0 + "popularity": 92589.0 }, { "name": "git-chglog", "url": "https://quay.io/repository/git-chglog/git-chglog", - "popularity": 9762.0 + "popularity": 9805.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 } ] }, @@ -66279,14 +60935,14 @@ { "name": "gitlab", "url": "https://quay.io/repository/sameersbn/gitlab", - "popularity": 618.0 + "popularity": 615.0 } ], "quay_top_images": [ { "name": "gitlab-runner-docker-cleanup", "url": "https://quay.io/repository/gitlab/gitlab-runner-docker-cleanup", - "popularity": 796772.0 + "popularity": 783797.0 }, { "name": "gitlab-ansible-runner", @@ -66296,17 +60952,17 @@ { "name": "nginx", "url": "https://quay.io/repository/jitesoft/nginx", - "popularity": 79034.0 + "popularity": 78097.0 }, { "name": "invidious", "url": "https://quay.io/repository/invidious/invidious", - "popularity": 36573.0 + "popularity": 30531.0 }, { "name": "memcached", "url": "https://quay.io/repository/jitesoft/memcached", - "popularity": 52832.0 + "popularity": 52822.0 } ] }, @@ -66440,27 +61096,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 }, { "name": "nginx-ingress-controller", "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1214037.0 + "popularity": 1244426.0 } ] }, @@ -66495,48 +61151,12 @@ ] }, { - "name": "rancher/server-base", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/rancher/server-base", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "circleci/server-nomad", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/circleci/server-nomad", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, - { - "name": "atlassian/server-client-plugins", + "name": "rancher/windows-scheduler", "Official image": false, "Verified Publisher": true, "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/atlassian/server-client-plugins", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/rancher/windows-scheduler", "OS": [ { "Class": "OS", @@ -66556,27 +61176,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 + }, + { + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -66636,27 +61256,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 - }, - { - "name": "wire-server-cache", - "url": "https://quay.io/repository/wire/wire-server-cache", - "popularity": 42557.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 + }, + { + "name": "fujitsu-enterprise-postgres-14-server", + "url": "https://quay.io/repository/fujitsu/fujitsu-enterprise-postgres-14-server", + "popularity": 43890.0 } ] }, @@ -66679,27 +61299,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "mongodb-enterprise-database", "url": "https://quay.io/repository/mongodb/mongodb-enterprise-database", - "popularity": 101454.0 + "popularity": 99140.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "shadowbox", "url": "https://quay.io/repository/outline/shadowbox", - "popularity": 6926549.0 + "popularity": 6920133.0 }, { "name": "wildfly-runtime-centos7", "url": "https://quay.io/repository/wildfly/wildfly-runtime-centos7", - "popularity": 2524052.0 + "popularity": 2536622.0 } ] }, @@ -66719,7 +61339,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 12890, + "star_count": 12900, "Docker_Url": "https://hub.docker.com/_/mysql", "OS": [ { @@ -66776,6 +61396,24 @@ } ] }, + { + "name": "cimg/mysql", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 0, + "Docker_Url": "https://hub.docker.com/r/cimg/mysql", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, { "name": "ubuntu/mysql", "Official image": false, @@ -66818,24 +61456,6 @@ } ] }, - { - "name": "cimg/mysql", - "Official image": false, - "Verified Publisher": true, - "Description": "", - "star_count": 0, - "Docker_Url": "https://hub.docker.com/r/cimg/mysql", - "OS": [ - { - "Class": "OS", - "Architecture": "amd64", - "Variants": null, - "Versions": null, - "Type": "linux", - "Subtype": "" - } - ] - }, { "name": "google/mysql", "Official image": false, @@ -66995,64 +61615,64 @@ { "name": "mysql", "url": "https://quay.io/repository/openshifttest/mysql", - "popularity": 18388.0 + "popularity": 18627.0 }, { "name": "mysql", "url": "https://quay.io/repository/gauravkumar9130/mysql", - "popularity": 26256.0 + "popularity": 26252.0 }, { "name": "mysql", "url": "https://quay.io/repository/prsurve/mysql", - "popularity": 62698.0 + "popularity": 62635.0 }, { "name": "mysql", "url": "https://quay.io/repository/cybozu/mysql", - "popularity": 5399.0 + "popularity": 4930.0 }, { "name": "mysql", "url": "https://quay.io/repository/hazelcast_cloud/mysql", - "popularity": 2206.0 + "popularity": 2156.0 }, { "name": "mysql", "url": "https://quay.io/repository/operations/mysql", - "popularity": 1219.0 + "popularity": 1427.0 }, { "name": "mysql", "url": "https://quay.io/repository/bridgez/mysql", - "popularity": 3.0 + "popularity": 4.0 } ], "quay_top_images": [ { "name": "mysql-80-centos7", "url": "https://quay.io/repository/centos7/mysql-80-centos7", - "popularity": 260685.0 + "popularity": 268428.0 }, { "name": "mysql", "url": "https://quay.io/repository/gauravkumar9130/mysql", - "popularity": 26256.0 + "popularity": 26252.0 }, { "name": "mysql", "url": "https://quay.io/repository/prsurve/mysql", - "popularity": 62698.0 + "popularity": 62635.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 245318.0 + "popularity": 250172.0 }, { "name": "mariadb-105-centos7", "url": "https://quay.io/repository/centos7/mariadb-105-centos7", - "popularity": 142292.0 + "popularity": 146865.0 } ] }, @@ -67252,27 +61872,27 @@ { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 254930.0 + "popularity": 258719.0 }, { "name": "mariadb-103-centos7", "url": "https://quay.io/repository/centos7/mariadb-103-centos7", - "popularity": 245318.0 + "popularity": 250172.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 193426.0 + "popularity": 198257.0 }, { "name": "billing-sidecar", "url": "https://quay.io/repository/sdase/billing-sidecar", - "popularity": 183645.0 + "popularity": 183319.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 146710.0 + "popularity": 151149.0 } ] }, @@ -67477,44 +62097,44 @@ { "name": "postgresql", "url": "https://quay.io/repository/enterprisedb/postgresql", - "popularity": 19585.0 + "popularity": 19350.0 }, { "name": "postgresql", "url": "https://quay.io/repository/aptible/postgresql", - "popularity": 1582.0 + "popularity": 1718.0 }, { "name": "postgresql", "url": "https://quay.io/repository/operatorhubio/postgresql", - "popularity": 1494.0 + "popularity": 1434.0 } ], "quay_top_images": [ { "name": "postgresql-12-centos7", "url": "https://quay.io/repository/centos7/postgresql-12-centos7", - "popularity": 254930.0 + "popularity": 258719.0 }, { "name": "postgresql-10-centos7", "url": "https://quay.io/repository/centos7/postgresql-10-centos7", - "popularity": 193426.0 + "popularity": 198257.0 }, { "name": "postgresql-13-centos7", "url": "https://quay.io/repository/centos7/postgresql-13-centos7", - "popularity": 146710.0 + "popularity": 151149.0 }, { - "name": "postgresql", - "url": "https://quay.io/repository/enterprisedb/postgresql", - "popularity": 19585.0 + "name": "postgresql-operator", + "url": "https://quay.io/repository/dev4devs-com/postgresql-operator", + "popularity": 21696.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20354.0 + "popularity": 20583.0 } ] }, @@ -67899,27 +62519,27 @@ { "name": "check-aws-tags", "url": "https://quay.io/repository/sergioballesteros/check-aws-tags", - "popularity": 32462.0 + "popularity": 30674.0 }, { "name": "aws-account-operator-registry", "url": "https://quay.io/repository/app-sre/aws-account-operator-registry", - "popularity": 27747.0 + "popularity": 27786.0 }, { "name": "aws-nuke", "url": "https://quay.io/repository/rebuy/aws-nuke", - "popularity": 34602.0 + "popularity": 35027.0 }, { "name": "aws-fsx-csi-driver", "url": "https://quay.io/repository/sisense/aws-fsx-csi-driver", - "popularity": 20812.0 + "popularity": 22966.0 }, { "name": "aws-vpce-operator", "url": "https://quay.io/repository/app-sre/aws-vpce-operator", - "popularity": 41520.0 + "popularity": 30221.0 } ] }, @@ -68034,27 +62654,27 @@ { "name": "sap-side-by-side-be", "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", - "popularity": 3641.0 + "popularity": 3639.0 }, { "name": "sap-btp-operator", "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", - "popularity": 108.0 + "popularity": 102.0 }, { "name": "container-image-registry", "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7568.0 + "popularity": 7567.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", - "popularity": 6663.0 + "popularity": 6669.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/miminar/sdi-observer", - "popularity": 169.0 + "popularity": 170.0 } ] }, @@ -68096,27 +62716,27 @@ { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 421059.0 + "popularity": 430335.0 }, { "name": "etl-map-omop-vocabulary", "url": "https://quay.io/repository/lifebitai/etl-map-omop-vocabulary", - "popularity": 98.0 + "popularity": 70.0 }, { "name": "spark-operator", "url": "https://quay.io/repository/radanalyticsio/spark-operator", - "popularity": 25565.0 + "popularity": 25375.0 }, { "name": "statsd-exporter", "url": "https://quay.io/repository/prometheus/statsd-exporter", - "popularity": 8041.0 + "popularity": 8741.0 }, { "name": "daemon", "url": "https://quay.io/repository/ceph/daemon", - "popularity": 9604.0 + "popularity": 9586.0 } ] }, @@ -68199,27 +62819,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "nginx-ingress-controller", "url": "https://quay.io/repository/kubernetes-ingress-controller/nginx-ingress-controller", - "popularity": 1214037.0 + "popularity": 1244426.0 }, { "name": "k8s-sidecar", "url": "https://quay.io/repository/kiwigrid/k8s-sidecar", - "popularity": 1297028.0 + "popularity": 1288147.0 }, { "name": "ambassador", "url": "https://quay.io/repository/datawire/ambassador", - "popularity": 421059.0 + "popularity": 430335.0 }, { "name": "cilium", "url": "https://quay.io/repository/cilium/cilium", - "popularity": 809370.0 + "popularity": 833568.0 } ] }, @@ -68358,27 +62978,27 @@ { "name": "oracle-12c", "url": "https://quay.io/repository/maksymbilenko/oracle-12c", - "popularity": 15042.0 + "popularity": 14960.0 }, { "name": "debezium-container-for-oracle", "url": "https://quay.io/repository/rhn_support_omelo/debezium-container-for-oracle", - "popularity": 3550.0 + "popularity": 3111.0 }, { "name": "cloud-native-postgresql", "url": "https://quay.io/repository/enterprisedb/cloud-native-postgresql", - "popularity": 20354.0 + "popularity": 20583.0 }, { "name": "edb-postgres-advanced", "url": "https://quay.io/repository/enterprisedb/edb-postgres-advanced", - "popularity": 13582.0 + "popularity": 12879.0 }, { "name": "mysqld-exporter", "url": "https://quay.io/repository/prometheus/mysqld-exporter", - "popularity": 17355.0 + "popularity": 17958.0 } ] }, @@ -68401,27 +63021,27 @@ { "name": "sap-side-by-side-be", "url": "https://quay.io/repository/redhat-sap-cop/sap-side-by-side-be", - "popularity": 3641.0 + "popularity": 3639.0 }, { "name": "sap-btp-operator", "url": "https://quay.io/repository/operatorhubio/sap-btp-operator", - "popularity": 108.0 + "popularity": 102.0 }, { "name": "container-image-registry", "url": "https://quay.io/repository/redhat-sap-cop/container-image-registry", - "popularity": 7568.0 + "popularity": 7567.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/redhat-sap-cop/sdi-observer", - "popularity": 6663.0 + "popularity": 6669.0 }, { "name": "sdi-observer", "url": "https://quay.io/repository/miminar/sdi-observer", - "popularity": 169.0 + "popularity": 170.0 } ] }, @@ -68444,27 +63064,27 @@ { "name": "node-exporter", "url": "https://quay.io/repository/prometheus/node-exporter", - "popularity": 28649423.0 + "popularity": 29176747.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 }, { "name": "ibm-management-ingress-operator", "url": "https://quay.io/repository/opencloudio/ibm-management-ingress-operator", - "popularity": 156321.0 + "popularity": 157394.0 }, { "name": "audit-syslog-service", "url": "https://quay.io/repository/opencloudio/audit-syslog-service", - "popularity": 130197.0 + "popularity": 126512.0 } ] }, @@ -68586,27 +63206,27 @@ { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 }, { "name": "kafka", "url": "https://quay.io/repository/strimzi/kafka", - "popularity": 883725.0 + "popularity": 897952.0 }, { "name": "operator", "url": "https://quay.io/repository/strimzi/operator", - "popularity": 403203.0 + "popularity": 412719.0 }, { "name": "httpd-24-centos7", "url": "https://quay.io/repository/centos7/httpd-24-centos7", - "popularity": 261758.0 + "popularity": 265927.0 }, { "name": "busybox", "url": "https://quay.io/repository/prometheus/busybox", - "popularity": 216402.0 + "popularity": 213163.0 } ] }, @@ -68648,6 +63268,32 @@ } ] }, + { + "name": "ibmcom/ibm-apiconnect-operator", + "Official image": false, + "Verified Publisher": true, + "Description": "", + "star_count": 1, + "Docker_Url": "https://hub.docker.com/r/ibmcom/ibm-apiconnect-operator", + "OS": [ + { + "Class": "OS", + "Architecture": "amd64", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + }, + { + "Class": "OS", + "Architecture": "s390x", + "Variants": null, + "Versions": null, + "Type": "linux", + "Subtype": "" + } + ] + }, { "name": "ibmcom/ibm-operator-catalog", "Official image": false, @@ -68687,7 +63333,7 @@ "Official image": true, "Verified Publisher": false, "Description": "", - "star_count": 18, + "star_count": 19, "Docker_Url": "https://hub.docker.com/_/ibm-semeru-runtimes", "OS": [ { @@ -68732,27 +63378,27 @@ { "name": "ibm-crossplane-bedrock-shim-config", "url": "https://quay.io/repository/opencloudio/ibm-crossplane-bedrock-shim-config", - "popularity": 486693.0 + "popularity": 468518.0 }, { "name": "ibm-events-kafka-2.7.0", "url": "https://quay.io/repository/opencloudio/ibm-events-kafka-2.7.0", - "popularity": 523368.0 + "popularity": 526926.0 }, { "name": "ibm-events-operator", "url": "https://quay.io/repository/opencloudio/ibm-events-operator", - "popularity": 372869.0 + "popularity": 368277.0 }, { "name": "ibm-auditlogging-operator", "url": "https://quay.io/repository/opencloudio/ibm-auditlogging-operator", - "popularity": 403014.0 + "popularity": 411336.0 }, { "name": "prometheus", "url": "https://quay.io/repository/prometheus/prometheus", - "popularity": 5908670.0 + "popularity": 5878721.0 } ] }, diff --git a/kg_utils/image_search_kg/openshift_images.csv b/kg_utils/image_search_kg/openshift_images.csv index 1752119..492dd17 100644 --- a/kg_utils/image_search_kg/openshift_images.csv +++ b/kg_utils/image_search_kg/openshift_images.csv @@ -1,55 +1,50 @@ openshift_images,container_name,OS,lang,lib,app,app_server,plugin,runlib,runtime,Openshift_Correspondent_Image_Url,DockerImageType -openshift_images,ansible,426,,,5,,,,,https://quay.io/repository/cloudctl/ansible,App -openshift_images,asterisk,426,,,14,,,,,https://quay.io/repository/citybaseinc/asterisk,App -openshift_images,db2,426,,,43,,,,,https://quay.io/repository/quarkusqeteam/db2,App -openshift_images,drupal,426,,,45,,,,,https://quay.io/repository/official-images/drupal,App -openshift_images,elastic,426,,,47,,,,,https://quay.io/repository/kmamgain/elastic,App -openshift_images,genymotion,426,,,54,,,,,https://quay.io/repository/alaska/genymotion,App -openshift_images,hadoop,426,,,57,,,,,https://quay.io/repository/iguazio/hadoop,App -openshift_images,jenkins,426,,,90,,,,,https://quay.io/repository/cdis/jenkins,App -openshift_images,memcached,426,,,98,,,,,https://quay.io/repository/jitesoft/memcached,App -openshift_images,mysql,426,,,122,,,,,https://quay.io/repository/openshifttest/mysql,App -openshift_images,neo4j,426,,,123,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/neo4j,App -openshift_images,openldap,426,,,126,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/openldap,App -openshift_images,openvpn,426,,,128,,,,,https://quay.io/repository/kubermatic/openvpn,App -openshift_images,pentaho,426,,,150,,,,,https://quay.io/repository/hasni/pentaho,App -openshift_images,postgresql,426,,,157,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/postgresql,App -openshift_images,rabbitmq,426,,,165,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/rabbitmq,App -openshift_images,redis,426,,,168,,,,,https://quay.io/repository/sameersbn/redis,App -openshift_images,remedy,426,,,169,,,,,https://quay.io/repository/amosnl/remedy,App -openshift_images,riak,426,,,170,,,,,https://quay.io/repository/dotabuff/riak,App -openshift_images,sentry,426,,,180,,,,,https://quay.io/repository/app-sre/sentry,App -openshift_images,sonarqube,426,,,186,,,,,https://quay.io/repository/gpte-devops-automation/sonarqube,App -openshift_images,splunk,426,,,188,,,,,https://quay.io/repository/mariaelisacf/splunk,App -openshift_images,whois,426,,,212,,,,,https://quay.io/repository/westonsteimel/whois,App -openshift_images,tableau,426,,,213,,,,,https://quay.io/repository/growthstack/tableau,App -openshift_images,wordpress,426,,,245,,,,,https://quay.io/repository/redhattraining/wordpress,App -openshift_images,sqlite,426,,,258,,,,,https://quay.io/repository/fale/sqlite,App -openshift_images,glassfish,426,,,,263,,,,https://quay.io/repository/mohamedf0/glassfish,App_Server -openshift_images,haproxy,426,,,,264,,,,https://quay.io/repository/jduimovich0/haproxy,App_Server -openshift_images,lucee,426,,,,271,,,,https://quay.io/repository/daemonite/lucee,App_Server -openshift_images,nginx,426,,,,274,,,,https://quay.io/repository/openshift-scale/nginx,App_Server -openshift_images,spark,426,,,,280,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/spark,App_Server -openshift_images,awk,426,300,,,,,,,https://quay.io/repository/shenglai/awk,Lang -openshift_images,basic,426,301,,,,,,,https://quay.io/repository/biocontainers/basic,Lang -openshift_images,expect,426,315,,,,,,,https://quay.io/repository/baseimage/expect,Lang -openshift_images,focus,426,321,,,,,,,https://quay.io/repository/biocontainers/focus,Lang -openshift_images,fortran,426,322,,,,,,,https://quay.io/repository/eriktrent/fortran,Lang -openshift_images,graphql,426,324,,,,,,,https://quay.io/repository/wasmoffload/graphql,Lang -openshift_images,groovy,426,325,,,,,,,https://quay.io/repository/official-images/groovy,Lang -openshift_images,java,426,331,,,,,,,https://quay.io/repository/tamr/java,Lang -openshift_images,jcl,426,338,,,,,,,https://quay.io/repository/jclaret/jcl,Lang -openshift_images,perl,426,347,,,,,,,https://quay.io/repository/biocontainers/perl,Lang -openshift_images,php,426,350,,,,,,,https://quay.io/repository/kissj/php,Lang -openshift_images,python,426,354,,,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/python,Lang -openshift_images,ruby,426,358,,,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/ruby,Lang -openshift_images,sas,426,360,,,,,,,https://quay.io/repository/domino/sas,Lang -openshift_images,scala,426,362,,,,,,,https://quay.io/repository/azavea/scala,Lang -openshift_images,typescript,426,367,,,,,,,https://quay.io/repository/ellerbrock/typescript,Lang -openshift_images,log4j,426,,394,,,,,,https://quay.io/repository/crozzy/log4j,Lib -openshift_images,struts,426,,402,,,,,,https://quay.io/repository/arifulhuq/struts,Lib -openshift_images,angularjs,426,,406,,,,,,https://quay.io/repository/amaljose/angularjs,Lib -openshift_images,react,426,,413,,,,,,https://quay.io/repository/profects/react,Lib +openshift_images,ansible,576,,,5,,,,,https://quay.io/repository/cloudctl/ansible,App +openshift_images,asterisk,576,,,14,,,,,https://quay.io/repository/citybaseinc/asterisk,App +openshift_images,db2,576,,,43,,,,,https://quay.io/repository/quarkusqeteam/db2,App +openshift_images,drupal,576,,,45,,,,,https://quay.io/repository/official-images/drupal,App +openshift_images,elastic,576,,,47,,,,,https://quay.io/repository/kmamgain/elastic,App +openshift_images,genymotion,576,,,54,,,,,https://quay.io/repository/alaska/genymotion,App +openshift_images,hadoop,576,,,57,,,,,https://quay.io/repository/iguazio/hadoop,App +openshift_images,jenkins,576,,,90,,,,,https://quay.io/repository/cdis/jenkins,App +openshift_images,memcached,576,,,98,,,,,https://quay.io/repository/jitesoft/memcached,App +openshift_images,mysql,576,,,122,,,,,https://quay.io/repository/openshifttest/mysql,App +openshift_images,neo4j,576,,,123,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/neo4j,App +openshift_images,openldap,576,,,126,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/openldap,App +openshift_images,openvpn,576,,,128,,,,,https://quay.io/repository/kubermatic/openvpn,App +openshift_images,pentaho,576,,,150,,,,,https://quay.io/repository/hasni/pentaho,App +openshift_images,postgresql,576,,,157,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/postgresql,App +openshift_images,rabbitmq,576,,,165,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/rabbitmq,App +openshift_images,redis,576,,,168,,,,,https://quay.io/repository/sameersbn/redis,App +openshift_images,remedy,576,,,169,,,,,https://quay.io/repository/amosnl/remedy,App +openshift_images,riak,576,,,170,,,,,https://quay.io/repository/dotabuff/riak,App +openshift_images,sentry,576,,,180,,,,,https://quay.io/repository/app-sre/sentry,App +openshift_images,sonarqube,576,,,186,,,,,https://quay.io/repository/gpte-devops-automation/sonarqube,App +openshift_images,splunk,576,,,188,,,,,https://quay.io/repository/mariaelisacf/splunk,App +openshift_images,whois,576,,,212,,,,,https://quay.io/repository/westonsteimel/whois,App +openshift_images,tableau,576,,,213,,,,,https://quay.io/repository/growthstack/tableau,App +openshift_images,wordpress,576,,,245,,,,,https://quay.io/repository/redhattraining/wordpress,App +openshift_images,sqlite,576,,,258,,,,,https://quay.io/repository/fale/sqlite,App +openshift_images,glassfish,576,,,,263,,,,https://quay.io/repository/mohamedf0/glassfish,App_Server +openshift_images,haproxy,576,,,,264,,,,https://quay.io/repository/jduimovich0/haproxy,App_Server +openshift_images,lucee,576,,,,271,,,,https://quay.io/repository/daemonite/lucee,App_Server +openshift_images,nginx,576,,,,274,,,,https://quay.io/repository/openshift-scale/nginx,App_Server +openshift_images,spark,576,,,,280,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/spark,App_Server +openshift_images,awk,576,300,,,,,,,https://quay.io/repository/shenglai/awk,Lang +openshift_images,basic,576,301,,,,,,,https://quay.io/repository/biocontainers/basic,Lang +openshift_images,expect,576,315,,,,,,,https://quay.io/repository/baseimage/expect,Lang +openshift_images,focus,576,321,,,,,,,https://quay.io/repository/biocontainers/focus,Lang +openshift_images,fortran,576,322,,,,,,,https://quay.io/repository/eriktrent/fortran,Lang +openshift_images,graphql,576,324,,,,,,,https://quay.io/repository/wasmoffload/graphql,Lang +openshift_images,groovy,576,325,,,,,,,https://quay.io/repository/official-images/groovy,Lang +openshift_images,jcl,576,338,,,,,,,https://quay.io/repository/jclaret/jcl,Lang +openshift_images,sas,576,360,,,,,,,https://quay.io/repository/domino/sas,Lang +openshift_images,scala,576,362,,,,,,,https://quay.io/repository/azavea/scala,Lang +openshift_images,typescript,576,367,,,,,,,https://quay.io/repository/ellerbrock/typescript,Lang +openshift_images,log4j,576,,394,,,,,,https://quay.io/repository/crozzy/log4j,Lib +openshift_images,struts,576,,402,,,,,,https://quay.io/repository/arifulhuq/struts,Lib +openshift_images,angularjs,576,,406,,,,,,https://quay.io/repository/amaljose/angularjs,Lib +openshift_images,react,576,,413,,,,,,https://quay.io/repository/profects/react,Lib openshift_images,android,418,,,,,,,,https://quay.io/repository/bitriseio/android,OS openshift_images,dart,421,,,,,,,,https://quay.io/repository/biocontainers/dart,OS openshift_images,centos,427,,,,,,,,https://quay.io/repository/centos/centos,OS @@ -57,49 +52,46 @@ openshift_images,debian,429,,,,,,,,https://quay.io/repository/official-images/de openshift_images,opensuse,431,,,,,,,,https://quay.io/repository/wstein/opensuse,OS openshift_images,ubuntu,436,,,,,,,,https://quay.io/repository/libpod/ubuntu,OS openshift_images,freebsd,447,,,,,,,,https://quay.io/repository/uchida/freebsd,OS -openshift_images,windows,450,,,,,,,,https://quay.io/repository/mhallin/windows,OS openshift_images,fedora,453,,,,,,,,https://quay.io/repository/fedora/fedora,OS -openshift_images,ado,426,,,,,,488,,https://quay.io/repository/scottlezberg/ado,Runlib -openshift_images,wildfly,426,,,,,,493,,https://quay.io/repository/wildfly/wildfly,Runlib -openshift_images,flash,426,,,,,,,504,https://quay.io/repository/biocontainers/flash,Runtime +openshift_images,ado,576,,,,,,488,,https://quay.io/repository/scottlezberg/ado,Runlib +openshift_images,wildfly,576,,,,,,493,,https://quay.io/repository/wildfly/wildfly,Runlib +openshift_images,flash,576,,,,,,,504,https://quay.io/repository/biocontainers/flash,Runtime openshift_images,windows,580,,,,,,,,https://quay.io/repository/mhallin/windows,OS -openshift_images,java,426,584,,,,,,,https://quay.io/repository/tamr/java,Lang -openshift_images,perl,426,585,,,,,,,https://quay.io/repository/biocontainers/perl,Lang -openshift_images,php,426,586,,,,,,,https://quay.io/repository/kissj/php,Lang -openshift_images,python,426,587,,,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/python,Lang -openshift_images,ruby,426,588,,,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/ruby,Lang -openshift_images,instana,426,,,,,,,611,https://quay.io/repository/yaoyao/instana,Runtime -openshift_images,credstash,426,,,612,,,,,https://quay.io/repository/safesoftware/credstash,App -openshift_images,snyk,426,,,613,,,,,https://quay.io/repository/exd_infra_plts_cip/snyk,App -openshift_images,akka,426,,,614,,,,,https://quay.io/repository/j0zi/akka,App -openshift_images,varnish,426,,,,615,,,,https://quay.io/repository/api-platform/varnish,App_Server -openshift_images,datadog,426,,,,,,,616,https://quay.io/repository/blondie/datadog,Runtime -openshift_images,hazelcast,426,,,,,,,618,https://quay.io/repository/hazelcast_cloud/hazelcast,Runtime -openshift_images,infinispan,426,,,619,,,,,https://quay.io/repository/operatorhubio/infinispan,App -openshift_images,nuxeo,426,,,,,,,620,https://quay.io/repository/swsmirror/nuxeo,Runtime -openshift_images,arangodb,426,,,621,,,,,https://quay.io/repository/swsmirror/arangodb,App -openshift_images,clickhouse,426,,,624,,,,,https://quay.io/repository/operatorhubio/clickhouse,App -openshift_images,minio,426,,,625,,,,,https://quay.io/repository/minio/minio,App -openshift_images,elasticsearch,426,,,626,,,,,https://quay.io/repository/fluentd_elasticsearch/elasticsearch,App -openshift_images,keycloak,426,,,628,,,,,https://quay.io/repository/keycloak/keycloak,App -openshift_images,grafana,426,,,629,,,,,https://quay.io/repository/tamr/grafana,App -openshift_images,mattermost,426,,,,,,,630,https://quay.io/repository/jostone/mattermost,Runtime -openshift_images,synapse,426,,,631,,,,,https://quay.io/repository/dockernohub/synapse,App -openshift_images,kubeflow,426,,,,,,,635,https://quay.io/repository/operatorhubio/kubeflow,Runtime -openshift_images,sematext,426,,,,,,,639,https://quay.io/repository/operatorhubio/sematext,Runtime -openshift_images,mariadb,426,,,642,,,,,https://quay.io/repository/startx/mariadb,App -openshift_images,istio,426,,,644,,,,,https://quay.io/repository/aspenmesh/istio,App -openshift_images,vault,426,,,645,,,,,https://quay.io/repository/cybozu/vault,App -openshift_images,etcd,426,,,647,,,,,https://quay.io/repository/coreos/etcd,App -openshift_images,traefik,426,,,,648,,,,https://quay.io/repository/widen/traefik,App_Server -openshift_images,yugabytedb,426,,,650,,,,,https://quay.io/repository/marco_antonioni/yugabytedb,App -openshift_images,cockroachdb,426,,,651,,,,,https://quay.io/repository/helmoperators/cockroachdb,App -openshift_images,jaeger,426,,,,,,,652,https://quay.io/repository/operatorhubio/jaeger,Runtime -openshift_images,ansible,426,,,658,,,,,https://quay.io/repository/cloudctl/ansible,App -openshift_images,powershell,426,660,,,,,,,https://quay.io/repository/powerdock/powershell,Lang -openshift_images,dds,426,663,,,,,,,https://quay.io/repository/havoc/dds,Lang -openshift_images,openedge,426,673,,,,,,,https://quay.io/repository/g_querret/openedge,Lang -openshift_images,git,426,,,677,,,,,https://quay.io/repository/sisense/git,App -openshift_images,gitlab,426,,,678,,,,,https://quay.io/repository/sameersbn/gitlab,App -openshift_images,mysql,426,,,684,,,,,https://quay.io/repository/openshifttest/mysql,App -openshift_images,postgresql,426,,,686,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/postgresql,App +openshift_images,java,576,584,,,,,,,https://quay.io/repository/tamr/java,Lang +openshift_images,perl,576,585,,,,,,,https://quay.io/repository/biocontainers/perl,Lang +openshift_images,php,576,586,,,,,,,https://quay.io/repository/kissj/php,Lang +openshift_images,python,576,587,,,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/python,Lang +openshift_images,ruby,576,588,,,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/ruby,Lang +openshift_images,instana,576,,,,,,,611,https://quay.io/repository/yaoyao/instana,Runtime +openshift_images,credstash,576,,,612,,,,,https://quay.io/repository/safesoftware/credstash,App +openshift_images,snyk,576,,,613,,,,,https://quay.io/repository/exd_infra_plts_cip/snyk,App +openshift_images,akka,576,,,614,,,,,https://quay.io/repository/j0zi/akka,App +openshift_images,varnish,576,,,,615,,,,https://quay.io/repository/api-platform/varnish,App_Server +openshift_images,datadog,576,,,,,,,616,https://quay.io/repository/blondie/datadog,Runtime +openshift_images,hazelcast,576,,,,,,,618,https://quay.io/repository/hazelcast_cloud/hazelcast,Runtime +openshift_images,infinispan,576,,,619,,,,,https://quay.io/repository/operatorhubio/infinispan,App +openshift_images,nuxeo,576,,,,,,,620,https://quay.io/repository/swsmirror/nuxeo,Runtime +openshift_images,arangodb,576,,,621,,,,,https://quay.io/repository/swsmirror/arangodb,App +openshift_images,clickhouse,576,,,624,,,,,https://quay.io/repository/operatorhubio/clickhouse,App +openshift_images,minio,576,,,625,,,,,https://quay.io/repository/minio/minio,App +openshift_images,elasticsearch,576,,,626,,,,,https://quay.io/repository/fluentd_elasticsearch/elasticsearch,App +openshift_images,keycloak,576,,,628,,,,,https://quay.io/repository/keycloak/keycloak,App +openshift_images,grafana,576,,,629,,,,,https://quay.io/repository/tamr/grafana,App +openshift_images,mattermost,576,,,,,,,630,https://quay.io/repository/jostone/mattermost,Runtime +openshift_images,synapse,576,,,631,,,,,https://quay.io/repository/dockernohub/synapse,App +openshift_images,kubeflow,576,,,,,,,635,https://quay.io/repository/operatorhubio/kubeflow,Runtime +openshift_images,sematext,576,,,,,,,639,https://quay.io/repository/operatorhubio/sematext,Runtime +openshift_images,mariadb,576,,,642,,,,,https://quay.io/repository/startx/mariadb,App +openshift_images,istio,576,,,644,,,,,https://quay.io/repository/aspenmesh/istio,App +openshift_images,vault,576,,,645,,,,,https://quay.io/repository/cybozu/vault,App +openshift_images,etcd,576,,,647,,,,,https://quay.io/repository/coreos/etcd,App +openshift_images,traefik,576,,,,648,,,,https://quay.io/repository/widen/traefik,App_Server +openshift_images,yugabytedb,576,,,650,,,,,https://quay.io/repository/marco_antonioni/yugabytedb,App +openshift_images,cockroachdb,576,,,651,,,,,https://quay.io/repository/helmoperators/cockroachdb,App +openshift_images,jaeger,576,,,,,,,652,https://quay.io/repository/operatorhubio/jaeger,Runtime +openshift_images,powershell,576,660,,,,,,,https://quay.io/repository/powerdock/powershell,Lang +openshift_images,dds,576,663,,,,,,,https://quay.io/repository/havoc/dds,Lang +openshift_images,git,576,,,677,,,,,https://quay.io/repository/sisense/git,App +openshift_images,gitlab,576,,,678,,,,,https://quay.io/repository/sameersbn/gitlab,App +openshift_images,mysql,576,,,684,,,,,https://quay.io/repository/openshifttest/mysql,App +openshift_images,postgresql,576,,,686,,,,,https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/postgresql,App diff --git a/kg_utils/image_search_kg/operator_images.csv b/kg_utils/image_search_kg/operator_images.csv index b30565d..426c5a9 100644 --- a/kg_utils/image_search_kg/operator_images.csv +++ b/kg_utils/image_search_kg/operator_images.csv @@ -1,176 +1,129 @@ operator_images,container_name,OS,lang,lib,app,app_server,plugin,runlib,runtime,Operator_Correspondent_Image_Url,Operator_Repository -operator_images,Strimzi,426,,,9,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator -operator_images,Eclipse Ditto,426,,,46,,,,,,https://github.com/ctron/ditto-operator -operator_images,Eclipse Hawkbit,426,,,46,,,,,,https://github.com/ctron/hawkbit-operator -operator_images,IoT simulator,426,,,46,,,,,,https://github.com/ctron/iot-simulator-operator -operator_images,Elasticsearch (ECK) Operator,426,,,47,,,,,,https://github.com/elastic/cloud-on-k8s -operator_images,Elasticsearch Phenix Operator,426,,,47,,,,,,https://github.com/Carrefour-Group/elastic-phenix-operator -operator_images,Nuxeo Operator,426,,,47,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator -operator_images,Logging Operator,426,,,47,,,,,"[""''quay.io/opstree/logging-operator:v0.3.0''""]",https://github.com/ot-container-kit/logging-operator -operator_images,AWS Controllers for Kubernetes - Amazon ElastiCache,426,,,47,,,,,,https://github.com/aws-controllers-k8s -operator_images,Elasticsearch Index Operator,426,,,47,,,,,,https://github.com/IBM/esindex-operator -operator_images,Prometheus Exporter Operator,426,,,47,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator -operator_images,IBM Spectrum Scale CSI Plugin Operator,426,,,74,,,,,"[""''quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator''""]",https://github.com/IBM/ibm-spectrum-scale-csi/ -operator_images,Kong Operator,426,,,88,,,,,,https://github.com/kong/kong-operator -operator_images,Jenkins Operator,426,,,90,,,,,,https://github.com/jenkinsci/kubernetes-operator -operator_images,Prometheus Exporter Operator,426,,,98,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator -operator_images,MongoDB Enterprise Operator,426,,,116,,,,,"[""''quay.io/mongodb/mongodb-enterprise-operator-ubi:1.16.3''""]",https://github.com/mongodb/mongodb-enterprise-kubernetes -operator_images,MongoDB Operator,426,,,116,,,,,"[""''quay.io/opstree/mongodb-operator:v0.3.0''""]",https://github.com/ot-container-kit/mongodb-operator -operator_images,MongoDB Atlas Operator,426,,,116,,,,,"[""''quay.io/mongodb/mongodb-atlas-kubernetes-operator:1.1.0''""]", -operator_images,Percona Distribution for MongoDB Operator,426,,,116,,,,,,https://github.com/percona/percona-server-mongodb-operator -operator_images,Nuxeo Operator,426,,,116,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator -operator_images,GrdsCloud MySQL for Kubernetes,426,,,122,,,,,,https://github.com/GrdsCloud -operator_images,Percona Distribution for MySQL Operator,426,,,122,,,,,,https://github.com/percona/percona-xtradb-cluster-operator -operator_images,PlanetScale Operator for Vitess,426,,,122,,,,,, -operator_images,Prometheus Exporter Operator,426,,,122,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator -operator_images,Postgresql Operator,426,,,157,,,,,"[""''quay.io/deekshah86/postgresql-operator''""]",https://github.com/janepelladinesh/postgresql-operator -operator_images,Percona Operator for PostgreSQL,426,,,157,,,,,,https://github.com/percona/percona-postgresql-operator -operator_images,PostgreSQL Operator by Dev4Ddevs.com,426,,,157,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator -operator_images,Crunchy Postgres for Kubernetes,426,,,157,,,,,,https://github.com/CrunchyData/postgres-operator -operator_images,EDB Postgres for Kubernetes,426,,,157,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]",https://www.enterprisedb.com/docs/postgres_for_kubernetes/latest/ -operator_images,Postgres-Operator,426,,,157,,,,,,https://github.com/zalando/postgres-operator -operator_images,Ext Postgres Operator,426,,,157,,,,,,https://github.com/movetokube/postgres-operator -operator_images,Nuxeo Operator,426,,,157,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator -operator_images,Prometheus Exporter Operator,426,,,157,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator -operator_images,Robin Cloud Native Storage,426,,,157,,,,,, -operator_images,Redis Operator,426,,,168,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator -operator_images,Redis Enterprise,426,,,168,,,,,,https://github.com/RedisLabs/redis-enterprise-k8s-docs -operator_images,Prometheus Exporter Operator,426,,,168,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator -operator_images,Splunk Operator,426,,,188,,,,,, -operator_images,Encrypted Images Key Syncer Helm Operator,426,,,209,,,,,"[""''docker.io/lumjjb/enc-key-sync-operator:v0.0.1''""]",https://github.com/IBM/k8s-enc-image-operator -operator_images,Joget DX on Apache Tomcat,426,,,,260,,,,,https://github.com/jogetworkflow/ -operator_images,APIcast,426,,,,274,,,,"[""''quay.io/3scale/apicast-operator:v0.4.0''""]",https://github.com/3scale/apicast-operator -operator_images,Spark Operator,426,,,,280,,,,,https://github.com/GoogleCloudPlatform/spark-on-k8s-operator -operator_images,Apache Spark Operator,426,,,,280,,,,"[""''quay.io/radanalyticsio/spark-operator:1.0.2''""]",https://github.com/radanalyticsio/spark-operator -operator_images,Kubestone,426,,,,280,,,,,https://github.com/xridge/kubestone -operator_images,Flink Kubernetes Operator,426,301,,,,,,,"[""''docker.io/apache/flink-kubernetes-operator:1.0.1''""]",https://github.com/apache/flink-kubernetes-operator.git -operator_images,Alvearie Imaging Ingestion Operator,426,303,,,,,,,,https://github.com/Alvearie/imaging-ingestion -operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,303,,,,,,,,https://github.com/k8ssandra/cass-operator -operator_images,Qserv operator,426,303,,,,,,,,https://github.com/lsst/qserv-operator -operator_images,Strimzi,426,303,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator -operator_images,Keycloak Operator,426,303,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak -operator_images,Prometheus Operator,426,303,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator -operator_images,Elasticsearch (ECK) Operator,426,303,,,,,,,,https://github.com/elastic/cloud-on-k8s -operator_images,Crunchy Postgres for Kubernetes,426,303,,,,,,,,https://github.com/CrunchyData/postgres-operator -operator_images,Knative Operator,426,303,,,,,,,,https://github.com/knative/operator -operator_images,Redis Operator,426,303,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator -operator_images,Rook-Ceph,426,303,,,,,,,,https://github.com/rook/rook -operator_images,Argo CD,426,303,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator -operator_images,Grafana Operator,426,303,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator -operator_images,Starboard Operator,426,303,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard -operator_images,TiDB Operator,426,303,,,,,,,,https://github.com/pingcap/tidb-operator -operator_images,Altinity Operator for ClickHouse,426,303,,,,,,,,https://github.com/altinity/clickhouse-operator -operator_images,Flux,426,303,,,,,,,,https://fluxcd.io/docs/ -operator_images,Percona Distribution for MySQL Operator,426,303,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator -operator_images,RocketMQ Operator,426,303,,,,,,,,https://github.com/apache/rocketmq-operator -operator_images,StorageOS,426,303,,,,,,,,https://github.com/storageos/operator -operator_images,Alvearie Imaging Ingestion Operator,426,304,,,,,,,,https://github.com/Alvearie/imaging-ingestion -operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,304,,,,,,,,https://github.com/k8ssandra/cass-operator -operator_images,Qserv operator,426,304,,,,,,,,https://github.com/lsst/qserv-operator -operator_images,Strimzi,426,304,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator -operator_images,Keycloak Operator,426,304,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak -operator_images,Prometheus Operator,426,304,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator -operator_images,Elasticsearch (ECK) Operator,426,304,,,,,,,,https://github.com/elastic/cloud-on-k8s -operator_images,Crunchy Postgres for Kubernetes,426,304,,,,,,,,https://github.com/CrunchyData/postgres-operator -operator_images,Knative Operator,426,304,,,,,,,,https://github.com/knative/operator -operator_images,Redis Operator,426,304,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator -operator_images,Rook-Ceph,426,304,,,,,,,,https://github.com/rook/rook -operator_images,Argo CD,426,304,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator -operator_images,Grafana Operator,426,304,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator -operator_images,Starboard Operator,426,304,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard -operator_images,TiDB Operator,426,304,,,,,,,,https://github.com/pingcap/tidb-operator -operator_images,Altinity Operator for ClickHouse,426,304,,,,,,,,https://github.com/altinity/clickhouse-operator -operator_images,Flux,426,304,,,,,,,,https://fluxcd.io/docs/ -operator_images,Percona Distribution for MySQL Operator,426,304,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator -operator_images,RocketMQ Operator,426,304,,,,,,,,https://github.com/apache/rocketmq-operator -operator_images,StorageOS,426,304,,,,,,,,https://github.com/storageos/operator -operator_images,Alvearie Imaging Ingestion Operator,426,305,,,,,,,,https://github.com/Alvearie/imaging-ingestion -operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,305,,,,,,,,https://github.com/k8ssandra/cass-operator -operator_images,Qserv operator,426,305,,,,,,,,https://github.com/lsst/qserv-operator -operator_images,Strimzi,426,305,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator -operator_images,Keycloak Operator,426,305,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak -operator_images,Prometheus Operator,426,305,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator -operator_images,Elasticsearch (ECK) Operator,426,305,,,,,,,,https://github.com/elastic/cloud-on-k8s -operator_images,Crunchy Postgres for Kubernetes,426,305,,,,,,,,https://github.com/CrunchyData/postgres-operator -operator_images,Knative Operator,426,305,,,,,,,,https://github.com/knative/operator -operator_images,Redis Operator,426,305,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator -operator_images,Rook-Ceph,426,305,,,,,,,,https://github.com/rook/rook -operator_images,Argo CD,426,305,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator -operator_images,Grafana Operator,426,305,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator -operator_images,Starboard Operator,426,305,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard -operator_images,TiDB Operator,426,305,,,,,,,,https://github.com/pingcap/tidb-operator -operator_images,Altinity Operator for ClickHouse,426,305,,,,,,,,https://github.com/altinity/clickhouse-operator -operator_images,Flux,426,305,,,,,,,,https://fluxcd.io/docs/ -operator_images,Percona Distribution for MySQL Operator,426,305,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator -operator_images,RocketMQ Operator,426,305,,,,,,,,https://github.com/apache/rocketmq-operator -operator_images,StorageOS,426,305,,,,,,,,https://github.com/storageos/operator -operator_images,Joget DX on Apache Tomcat,426,306,,,,,,,,https://github.com/jogetworkflow/ -operator_images,Lightbend Console Operator,426,306,,,,,,,,https://github.com/lightbend/console-charts/tree/master/operator -operator_images,Knative Operator,426,321,,,,,,,,https://github.com/knative/operator -operator_images,PostgreSQL Operator by Dev4Ddevs.com,426,323,,,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator -operator_images,Redis Operator,426,323,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator -operator_images,Logging Operator,426,323,,,,,,,"[""''quay.io/opstree/logging-operator:v0.3.0''""]",https://github.com/ot-container-kit/logging-operator -operator_images,External Secrets Operator,426,323,,,,,,,,https://github.com/external-secrets/external-secrets-helm-operator -operator_images,Intel Device Plugins Operator,426,323,,,,,,,,https://github.com/intel/intel-device-plugins-for-kubernetes -operator_images,MongoDB Operator,426,323,,,,,,,"[""''quay.io/opstree/mongodb-operator:v0.3.0''""]",https://github.com/ot-container-kit/mongodb-operator -operator_images,silicom-sts-operator,426,323,,,,,,,"[""''quay.io/silicom/sts-operator:v0.0.1''""]",github.com/silicomdk/sts-operator -operator_images,Spark Operator,426,323,,,,,,,,https://github.com/GoogleCloudPlatform/spark-on-k8s-operator -operator_images,WildFly,426,331,,,,,,,"[""''quay.io/wildfly/wildfly-operator:0.5.3''""]",https://github.com/wildfly/wildfly-operator -operator_images,AtlasMap Operator,426,331,,,,,,,"[""''quay.io/atlasmap/atlasmap-operator:0.4.1''""]",https://github.com/atlasmap/atlasmap-operator -operator_images,Appsody Operator,426,331,,,,,,,,https://github.com/appsody/appsody-operator -operator_images,Cryostat Operator,426,331,,,,,,,"[""''quay.io/cryostat/cryostat-operator:2.1.1''""]",github.com/cryostatio/cryostat-operator -operator_images,Open Liberty Operator,426,331,,,,,,,,https://github.com/OpenLiberty/open-liberty-operator -operator_images,Runtime Component Operator,426,331,,,,,,,,https://github.com/application-stacks/runtime-component-operator -operator_images,Azure Service Operator,426,353,,,,,,,,https://github.com/Azure/azure-service-operator -operator_images,API Operator for Kubernetes,426,353,,,,,,,,https://github.com/wso2/k8s-api-operator -operator_images,KEDA,426,353,,,,,,,,https://github.com/kedacore/keda-olm-operator -operator_images,WSO2 API Manager Operator for Kubernetes,426,353,,,,,,,,https://github.com/wso2/k8s-wso2am-operator -operator_images,AWS Controllers for Kubernetes - Amazon API Gateway v2,426,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon Application Auto Scaling,426,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon DynamoDB,426,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon EC2,426,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon ECR,426,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon EKS,426,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon ElastiCache,426,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon EMR on EKS,426,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon IAM,426,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon KMS,426,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon Lambda,426,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon MQ,426,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon OpenSearch Service,426,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon RDS,426,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon S3,426,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,AWS Controllers for Kubernetes - Amazon SageMaker,426,353,,,,,,,,https://github.com/aws-controllers-k8s -operator_images,Strimzi,426,355,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator -operator_images,Keycloak Operator,426,355,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak -operator_images,Prometheus Operator,426,355,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator -operator_images,Elasticsearch (ECK) Operator,426,355,,,,,,,,https://github.com/elastic/cloud-on-k8s -operator_images,Knative Operator,426,355,,,,,,,,https://github.com/knative/operator -operator_images,Redis Operator,426,355,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator -operator_images,Rook-Ceph,426,355,,,,,,,,https://github.com/rook/rook -operator_images,Grafana Operator,426,355,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator -operator_images,Starboard Operator,426,355,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard -operator_images,TiDB Operator,426,355,,,,,,,,https://github.com/pingcap/tidb-operator -operator_images,RocketMQ Operator,426,355,,,,,,,,https://github.com/apache/rocketmq-operator -operator_images,Falco Operator,426,355,,,,,,,"[""''docker.io/falcosecurity/falco-operator-helm:0.7.6''""]",https://github.com/falcosecurity/falco-operator/tree/helm-based-operator -operator_images,Kubemq Enterprise Operator,426,355,,,,,,,"[""''docker.io/kubemq/kubemq-operator:latest''""]",https://github.com/kubemq-io/kubemq-operator -operator_images,Postgres-Operator,426,355,,,,,,,,https://github.com/zalando/postgres-operator -operator_images,AWS S3 Operator,426,355,,,,,,,"[""''quay.io/screeley44/aws-s3-provisioner:v1.0.0''""]",https://github.com/yard-turkey/aws-s3-provisioner -operator_images,Azure Service Operator,426,355,,,,,,,,https://github.com/Azure/azure-service-operator -operator_images,ArangoDB,426,355,,,,,,,,https://github.com/arangodb/kube-arangodb -operator_images,Redis Enterprise,426,355,,,,,,,,https://github.com/RedisLabs/redis-enterprise-k8s-docs -operator_images,Apicurio Registry Operator,426,355,,,,,,,"[""''quay.io/apicurio/apicurio-registry-operator:1.0.0''""]",https://github.com/Apicurio/apicurio-registry-operator -operator_images,API Operator for Kubernetes,426,355,,,,,,,,https://github.com/wso2/k8s-api-operator -operator_images,GitLab,426,360,,,,,,,,https://gitlab.com/gitlab-org/cloud-native/gitlab-operator -operator_images,GitLab Runner,426,360,,,,,,,,https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator -operator_images,nfd-operator,426,362,,,,,,,,https://github.com/kubernetes-sigs/node-feature-discovery-operator -operator_images,Appsody Operator,426,364,,,,,,,,https://github.com/appsody/appsody-operator -operator_images,Runtime Component Operator,426,364,,,,,,,,https://github.com/application-stacks/runtime-component-operator -operator_images,Camel K Operator,426,,378,,,,,,"[""''docker.io/apache/camel-k:1.9.2''""]",https://github.com/apache/camel-k -operator_images,Appsody Operator,426,,398,,,,,,,https://github.com/appsody/appsody-operator -operator_images,Open Liberty Operator,426,,398,,,,,,,https://github.com/OpenLiberty/open-liberty-operator -operator_images,Runtime Component Operator,426,,398,,,,,,,https://github.com/application-stacks/runtime-component-operator -operator_images,Kogito,426,,398,,,,,,"[""''quay.io/kiegroup/kogito-operator:1.24.0''""]",https://github.com/kiegroup/kogito-operator +operator_images,Strimzi,576,,,9,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator +operator_images,Eclipse Ditto,576,,,46,,,,,,https://github.com/ctron/ditto-operator +operator_images,Eclipse Hawkbit,576,,,46,,,,,,https://github.com/ctron/hawkbit-operator +operator_images,IoT simulator,576,,,46,,,,,,https://github.com/ctron/iot-simulator-operator +operator_images,Elasticsearch (ECK) Operator,576,,,47,,,,,,https://github.com/elastic/cloud-on-k8s +operator_images,Elasticsearch Phenix Operator,576,,,47,,,,,,https://github.com/Carrefour-Group/elastic-phenix-operator +operator_images,Nuxeo Operator,576,,,47,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator +operator_images,Logging Operator,576,,,47,,,,,"[""''quay.io/opstree/logging-operator:v0.3.0''""]",https://github.com/ot-container-kit/logging-operator +operator_images,AWS Controllers for Kubernetes - Amazon ElastiCache,576,,,47,,,,,,https://github.com/aws-controllers-k8s +operator_images,Elasticsearch Index Operator,576,,,47,,,,,,https://github.com/IBM/esindex-operator +operator_images,Prometheus Exporter Operator,576,,,47,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator +operator_images,Kong Operator,576,,,88,,,,,,https://github.com/kong/kong-operator +operator_images,Jenkins Operator,576,,,90,,,,,,https://github.com/jenkinsci/kubernetes-operator +operator_images,Prometheus Exporter Operator,576,,,98,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator +operator_images,MongoDB Enterprise Operator,576,,,116,,,,,"[""''quay.io/mongodb/mongodb-enterprise-operator-ubi:1.16.3''""]",https://github.com/mongodb/mongodb-enterprise-kubernetes +operator_images,MongoDB Operator,576,,,116,,,,,"[""''quay.io/opstree/mongodb-operator:v0.3.0''""]",https://github.com/ot-container-kit/mongodb-operator +operator_images,MongoDB Atlas Operator,576,,,116,,,,,"[""''quay.io/mongodb/mongodb-atlas-kubernetes-operator:1.1.0''""]", +operator_images,Percona Distribution for MongoDB Operator,576,,,116,,,,,,https://github.com/percona/percona-server-mongodb-operator +operator_images,Nuxeo Operator,576,,,116,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator +operator_images,GrdsCloud MySQL for Kubernetes,576,,,122,,,,,,https://github.com/GrdsCloud +operator_images,Percona Distribution for MySQL Operator,576,,,122,,,,,,https://github.com/percona/percona-xtradb-cluster-operator +operator_images,PlanetScale Operator for Vitess,576,,,122,,,,,, +operator_images,Prometheus Exporter Operator,576,,,122,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator +operator_images,Postgresql Operator,576,,,157,,,,,"[""''quay.io/deekshah86/postgresql-operator''""]",https://github.com/janepelladinesh/postgresql-operator +operator_images,Percona Operator for PostgreSQL,576,,,157,,,,,,https://github.com/percona/percona-postgresql-operator +operator_images,PostgreSQL Operator by Dev4Ddevs.com,576,,,157,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator +operator_images,Crunchy Postgres for Kubernetes,576,,,157,,,,,,https://github.com/CrunchyData/postgres-operator +operator_images,EDB Postgres for Kubernetes,576,,,157,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]",https://www.enterprisedb.com/docs/postgres_for_kubernetes/latest/ +operator_images,Postgres-Operator,576,,,157,,,,,,https://github.com/zalando/postgres-operator +operator_images,Ext Postgres Operator,576,,,157,,,,,,https://github.com/movetokube/postgres-operator +operator_images,Nuxeo Operator,576,,,157,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator +operator_images,Prometheus Exporter Operator,576,,,157,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator +operator_images,Robin Cloud Native Storage,576,,,157,,,,,, +operator_images,Redis Operator,576,,,168,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator +operator_images,Redis Enterprise,576,,,168,,,,,,https://github.com/RedisLabs/redis-enterprise-k8s-docs +operator_images,Prometheus Exporter Operator,576,,,168,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator +operator_images,Splunk Operator,576,,,188,,,,,, +operator_images,Encrypted Images Key Syncer Helm Operator,576,,,209,,,,,"[""''docker.io/lumjjb/enc-key-sync-operator:v0.0.1''""]",https://github.com/IBM/k8s-enc-image-operator +operator_images,Joget DX on Apache Tomcat,576,,,,260,,,,,https://github.com/jogetworkflow/ +operator_images,APIcast,576,,,,274,,,,"[""''quay.io/3scale/apicast-operator:v0.4.0''""]",https://github.com/3scale/apicast-operator +operator_images,Spark Operator,576,,,,280,,,,,https://github.com/GoogleCloudPlatform/spark-on-k8s-operator +operator_images,Apache Spark Operator,576,,,,280,,,,"[""''quay.io/radanalyticsio/spark-operator:1.0.2''""]",https://github.com/radanalyticsio/spark-operator +operator_images,Kubestone,576,,,,280,,,,,https://github.com/xridge/kubestone +operator_images,Flink Kubernetes Operator,576,301,,,,,,,"[""''docker.io/apache/flink-kubernetes-operator:1.0.1''""]",https://github.com/apache/flink-kubernetes-operator.git +operator_images,Alvearie Imaging Ingestion Operator,576,303,,,,,,,,https://github.com/Alvearie/imaging-ingestion +operator_images,DataStax Kubernetes Operator for Apache Cassandra,576,303,,,,,,,,https://github.com/k8ssandra/cass-operator +operator_images,Qserv operator,576,303,,,,,,,,https://github.com/lsst/qserv-operator +operator_images,Strimzi,576,303,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator +operator_images,Keycloak Operator,576,303,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak +operator_images,Prometheus Operator,576,303,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator +operator_images,Elasticsearch (ECK) Operator,576,303,,,,,,,,https://github.com/elastic/cloud-on-k8s +operator_images,Crunchy Postgres for Kubernetes,576,303,,,,,,,,https://github.com/CrunchyData/postgres-operator +operator_images,Knative Operator,576,303,,,,,,,,https://github.com/knative/operator +operator_images,Redis Operator,576,303,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator +operator_images,Rook-Ceph,576,303,,,,,,,,https://github.com/rook/rook +operator_images,Argo CD,576,303,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator +operator_images,Grafana Operator,576,303,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator +operator_images,Starboard Operator,576,303,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard +operator_images,TiDB Operator,576,303,,,,,,,,https://github.com/pingcap/tidb-operator +operator_images,Altinity Operator for ClickHouse,576,303,,,,,,,,https://github.com/altinity/clickhouse-operator +operator_images,Flux,576,303,,,,,,,,https://fluxcd.io/docs/ +operator_images,Percona Distribution for MySQL Operator,576,303,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator +operator_images,RocketMQ Operator,576,303,,,,,,,,https://github.com/apache/rocketmq-operator +operator_images,StorageOS,576,303,,,,,,,,https://github.com/storageos/operator +operator_images,Joget DX on Apache Tomcat,576,306,,,,,,,,https://github.com/jogetworkflow/ +operator_images,Lightbend Console Operator,576,306,,,,,,,,https://github.com/lightbend/console-charts/tree/master/operator +operator_images,Knative Operator,576,321,,,,,,,,https://github.com/knative/operator +operator_images,PostgreSQL Operator by Dev4Ddevs.com,576,323,,,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator +operator_images,Redis Operator,576,323,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator +operator_images,Logging Operator,576,323,,,,,,,"[""''quay.io/opstree/logging-operator:v0.3.0''""]",https://github.com/ot-container-kit/logging-operator +operator_images,External Secrets Operator,576,323,,,,,,,,https://github.com/external-secrets/external-secrets-helm-operator +operator_images,Intel Device Plugins Operator,576,323,,,,,,,,https://github.com/intel/intel-device-plugins-for-kubernetes +operator_images,MongoDB Operator,576,323,,,,,,,"[""''quay.io/opstree/mongodb-operator:v0.3.0''""]",https://github.com/ot-container-kit/mongodb-operator +operator_images,silicom-sts-operator,576,323,,,,,,,"[""''quay.io/silicom/sts-operator:v0.0.1''""]",github.com/silicomdk/sts-operator +operator_images,Spark Operator,576,323,,,,,,,,https://github.com/GoogleCloudPlatform/spark-on-k8s-operator +operator_images,Azure Service Operator,576,353,,,,,,,,https://github.com/Azure/azure-service-operator +operator_images,API Operator for Kubernetes,576,353,,,,,,,,https://github.com/wso2/k8s-api-operator +operator_images,KEDA,576,353,,,,,,,,https://github.com/kedacore/keda-olm-operator +operator_images,WSO2 API Manager Operator for Kubernetes,576,353,,,,,,,,https://github.com/wso2/k8s-wso2am-operator +operator_images,AWS Controllers for Kubernetes - Amazon API Gateway v2,576,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon Application Auto Scaling,576,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon DynamoDB,576,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon EC2,576,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon ECR,576,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon EKS,576,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon ElastiCache,576,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon EMR on EKS,576,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon IAM,576,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon KMS,576,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon Lambda,576,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon MQ,576,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon OpenSearch Service,576,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon RDS,576,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon S3,576,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,AWS Controllers for Kubernetes - Amazon SageMaker,576,353,,,,,,,,https://github.com/aws-controllers-k8s +operator_images,Strimzi,576,355,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator +operator_images,Keycloak Operator,576,355,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak +operator_images,Prometheus Operator,576,355,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator +operator_images,Elasticsearch (ECK) Operator,576,355,,,,,,,,https://github.com/elastic/cloud-on-k8s +operator_images,Knative Operator,576,355,,,,,,,,https://github.com/knative/operator +operator_images,Redis Operator,576,355,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator +operator_images,Rook-Ceph,576,355,,,,,,,,https://github.com/rook/rook +operator_images,Grafana Operator,576,355,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator +operator_images,Starboard Operator,576,355,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard +operator_images,TiDB Operator,576,355,,,,,,,,https://github.com/pingcap/tidb-operator +operator_images,RocketMQ Operator,576,355,,,,,,,,https://github.com/apache/rocketmq-operator +operator_images,Falco Operator,576,355,,,,,,,"[""''docker.io/falcosecurity/falco-operator-helm:0.7.6''""]",https://github.com/falcosecurity/falco-operator/tree/helm-based-operator +operator_images,Kubemq Enterprise Operator,576,355,,,,,,,"[""''docker.io/kubemq/kubemq-operator:latest''""]",https://github.com/kubemq-io/kubemq-operator +operator_images,Postgres-Operator,576,355,,,,,,,,https://github.com/zalando/postgres-operator +operator_images,AWS S3 Operator,576,355,,,,,,,"[""''quay.io/screeley44/aws-s3-provisioner:v1.0.0''""]",https://github.com/yard-turkey/aws-s3-provisioner +operator_images,Azure Service Operator,576,355,,,,,,,,https://github.com/Azure/azure-service-operator +operator_images,ArangoDB,576,355,,,,,,,,https://github.com/arangodb/kube-arangodb +operator_images,Redis Enterprise,576,355,,,,,,,,https://github.com/RedisLabs/redis-enterprise-k8s-docs +operator_images,Apicurio Registry Operator,576,355,,,,,,,"[""''quay.io/apicurio/apicurio-registry-operator:1.0.0''""]",https://github.com/Apicurio/apicurio-registry-operator +operator_images,API Operator for Kubernetes,576,355,,,,,,,,https://github.com/wso2/k8s-api-operator +operator_images,GitLab,576,360,,,,,,,,https://gitlab.com/gitlab-org/cloud-native/gitlab-operator +operator_images,GitLab Runner,576,360,,,,,,,,https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator +operator_images,nfd-operator,576,362,,,,,,,,https://github.com/kubernetes-sigs/node-feature-discovery-operator +operator_images,Appsody Operator,576,364,,,,,,,,https://github.com/appsody/appsody-operator +operator_images,Runtime Component Operator,576,364,,,,,,,,https://github.com/application-stacks/runtime-component-operator +operator_images,Camel K Operator,576,,378,,,,,,"[""''docker.io/apache/camel-k:1.9.2''""]",https://github.com/apache/camel-k +operator_images,Appsody Operator,576,,398,,,,,,,https://github.com/appsody/appsody-operator +operator_images,Open Liberty Operator,576,,398,,,,,,,https://github.com/OpenLiberty/open-liberty-operator +operator_images,Runtime Component Operator,576,,398,,,,,,,https://github.com/application-stacks/runtime-component-operator +operator_images,Kogito,576,,398,,,,,,"[""''quay.io/kiegroup/kogito-operator:1.24.0''""]",https://github.com/kiegroup/kogito-operator operator_images,Kubeflow,424,,,,,,,,,https://github.com/kubeflow/kfctl operator_images,Varnish Operator,424,,,,,,,,,https://github.com/IBM/varnish-operator operator_images,Composable,424,,,,,,,,,https://github.com/IBM/composable @@ -189,190 +142,184 @@ operator_images,IBM Security Verify Access Operator,424,,,,,,,,,https://github.c operator_images,IBM Spectrum Scale CSI Plugin Operator,424,,,,,,,,"[""''quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator''""]",https://github.com/IBM/ibm-spectrum-scale-csi/ operator_images,Open Liberty Operator,424,,,,,,,,,https://github.com/OpenLiberty/open-liberty-operator operator_images,QiskitPlayground,424,,,,,,,,"[""''docker.io/qiskit/operator:0.1''""]",https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/kubernetes-qiskit-operator -operator_images,WildFly,426,,,,,,493,,"[""''quay.io/wildfly/wildfly-operator:0.5.3''""]",https://github.com/wildfly/wildfly-operator -operator_images,Knative Operator,426,,,,,,,497,,https://github.com/knative/operator -operator_images,Submariner,426,,,,,,,497,"[""''quay.io/submariner/submariner-operator:0.11.0''""]",https://github.com/submariner-io/submariner-operator -operator_images,Kong Operator,426,,,,,,,497,,https://github.com/kong/kong-operator -operator_images,Traefikee Operator,426,,,,,,,497,,https://docs.containo.us -operator_images,Upbound Universal Crossplane (UXP),426,,,,,,,497,,https://github.com/upbound/universal-crossplane -operator_images,Varnish Operator,426,,,,,,,497,,https://github.com/IBM/varnish-operator -operator_images,BeeGFS CSI Driver,426,,,,,,,497,,https://github.com/netapp/beegfs-csi-driver -operator_images,cluster-impairment-operator,426,,,,,,,497,"[""''quay.io/redhat-performance/cluster-impairment-operator:1.0.4''""]",https://github.com/redhat-performance/cluster-impairment-operator -operator_images,Kogito Knative Eventing Source,426,,,,,,,497,,https://github.com/knative-sandbox/eventing-kogito -operator_images,k8gb,426,,,,,,,497,,https://github.com/k8gb-io/k8gb -operator_images,Kubernetes NMState Operator,426,,,,,,,497,"[""''quay.io/nmstate/kubernetes-nmstate-operator:v0.47.0''""]",https://github.com/nmstate/kubernetes-nmstate -operator_images,MARIN3R,426,,,,,,,497,"[""''quay.io/3scale/marin3r''""]",https://github.com/3scale-ops/marin3r -operator_images,MetalLB Operator,426,,,,,,,497,"[""''quay.io/metallb/metallb-operator''""]",https://github.com/metallb/metallb-operator -operator_images,NetObserv Operator,426,,,,,,,497,"[""''quay.io/netobserv/network-observability-operator:0.1.3''""]",https://github.com/netobserv/network-observability-operator -operator_images,NeuVector Operator,426,,,,,,,497,,https://github.com/neuvector/neuvector-operator -operator_images,Network Service Mesh Operator,426,,,,,,,497,"[""''quay.io/acmenezes/nsm-operator:v0.0.1''""]",https://github.com/acmenezes/nsm-operator -operator_images,Prisma Cloud Compute Operator,426,,,,,,,497,"[""''quay.io/prismacloud/pcc-operator''""]",https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator -operator_images,Routernetes,426,,,,,,,497,"[""''quay.io/routernetes/routernetes-operator:0.0.5''""]",https://github.com/routernetes/routernetes-operator -operator_images,skydive-operator,426,,,,,,,497,"[""''docker.io/skydive/skydive-operator:0.0.50''""]",https://github.com/skydive-project/skydive-golang-operator -operator_images,Tf Operator,426,,,,,,,497,"[""''docker.io/tungstenfabric/tf-operator:latest''""]",https://github.com/tungstenfabric/tf-operator -operator_images,Nexus Operator,426,,,,,,,503,"[""''quay.io/m88i/nexus-operator:0.6.0''""]",https://github.com/m88i/nexus-operator -operator_images,Anchore Engine Operator,426,,,,,,,503,"[""''docker.io/anchore/engine-operator:v0.1.3''""]",https://github.com/anchore/engine-operator -operator_images,Carbonetes Operator,426,,,,,,,503,"[""''docker.io/carbonetes/operator:1.0.4''""]",https://github.com/carbonetes/carbonetes-analyzer -operator_images,Prisma Cloud Compute Operator,426,,,,,,,503,"[""''quay.io/prismacloud/pcc-operator''""]",https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator -operator_images,Crunchy Postgres for Kubernetes,426,532,,,,,,,,https://github.com/CrunchyData/postgres-operator -operator_images,TiDB Operator,426,532,,,,,,,,https://github.com/pingcap/tidb-operator -operator_images,EDB Postgres for Kubernetes,426,532,,,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]",https://www.enterprisedb.com/docs/postgres_for_kubernetes/latest/ -operator_images,GrdsCloud MySQL for Kubernetes,426,532,,,,,,,,https://github.com/GrdsCloud -operator_images,Percona Operator for PostgreSQL,426,532,,,,,,,,https://github.com/percona/percona-postgresql-operator -operator_images,Alvearie Imaging Ingestion Operator,426,582,,,,,,,,https://github.com/Alvearie/imaging-ingestion -operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,582,,,,,,,,https://github.com/k8ssandra/cass-operator -operator_images,Qserv operator,426,582,,,,,,,,https://github.com/lsst/qserv-operator -operator_images,Strimzi,426,582,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator -operator_images,Keycloak Operator,426,582,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak -operator_images,Prometheus Operator,426,582,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator -operator_images,Elasticsearch (ECK) Operator,426,582,,,,,,,,https://github.com/elastic/cloud-on-k8s -operator_images,Crunchy Postgres for Kubernetes,426,582,,,,,,,,https://github.com/CrunchyData/postgres-operator -operator_images,Knative Operator,426,582,,,,,,,,https://github.com/knative/operator -operator_images,Redis Operator,426,582,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator -operator_images,Rook-Ceph,426,582,,,,,,,,https://github.com/rook/rook -operator_images,Argo CD,426,582,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator -operator_images,Grafana Operator,426,582,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator -operator_images,Starboard Operator,426,582,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard -operator_images,TiDB Operator,426,582,,,,,,,,https://github.com/pingcap/tidb-operator -operator_images,Altinity Operator for ClickHouse,426,582,,,,,,,,https://github.com/altinity/clickhouse-operator -operator_images,Flux,426,582,,,,,,,,https://fluxcd.io/docs/ -operator_images,Percona Distribution for MySQL Operator,426,582,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator -operator_images,RocketMQ Operator,426,582,,,,,,,,https://github.com/apache/rocketmq-operator -operator_images,StorageOS,426,582,,,,,,,,https://github.com/storageos/operator -operator_images,Alvearie Imaging Ingestion Operator,426,583,,,,,,,,https://github.com/Alvearie/imaging-ingestion -operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,583,,,,,,,,https://github.com/k8ssandra/cass-operator -operator_images,Qserv operator,426,583,,,,,,,,https://github.com/lsst/qserv-operator -operator_images,Strimzi,426,583,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator -operator_images,Keycloak Operator,426,583,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak -operator_images,Prometheus Operator,426,583,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator -operator_images,Elasticsearch (ECK) Operator,426,583,,,,,,,,https://github.com/elastic/cloud-on-k8s -operator_images,Crunchy Postgres for Kubernetes,426,583,,,,,,,,https://github.com/CrunchyData/postgres-operator -operator_images,Knative Operator,426,583,,,,,,,,https://github.com/knative/operator -operator_images,Redis Operator,426,583,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator -operator_images,Rook-Ceph,426,583,,,,,,,,https://github.com/rook/rook -operator_images,Argo CD,426,583,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator -operator_images,Grafana Operator,426,583,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator -operator_images,Starboard Operator,426,583,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard -operator_images,TiDB Operator,426,583,,,,,,,,https://github.com/pingcap/tidb-operator -operator_images,Altinity Operator for ClickHouse,426,583,,,,,,,,https://github.com/altinity/clickhouse-operator -operator_images,Flux,426,583,,,,,,,,https://fluxcd.io/docs/ -operator_images,Percona Distribution for MySQL Operator,426,583,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator -operator_images,RocketMQ Operator,426,583,,,,,,,,https://github.com/apache/rocketmq-operator -operator_images,StorageOS,426,583,,,,,,,,https://github.com/storageos/operator -operator_images,WildFly,426,584,,,,,,,"[""''quay.io/wildfly/wildfly-operator:0.5.3''""]",https://github.com/wildfly/wildfly-operator -operator_images,AtlasMap Operator,426,584,,,,,,,"[""''quay.io/atlasmap/atlasmap-operator:0.4.1''""]",https://github.com/atlasmap/atlasmap-operator -operator_images,Appsody Operator,426,584,,,,,,,,https://github.com/appsody/appsody-operator -operator_images,Cryostat Operator,426,584,,,,,,,"[""''quay.io/cryostat/cryostat-operator:2.1.1''""]",github.com/cryostatio/cryostat-operator -operator_images,Open Liberty Operator,426,584,,,,,,,,https://github.com/OpenLiberty/open-liberty-operator -operator_images,Runtime Component Operator,426,584,,,,,,,,https://github.com/application-stacks/runtime-component-operator -operator_images,IBM Spectrum Scale CSI Plugin Operator,426,,,605,,,,,"[""''quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator''""]",https://github.com/IBM/ibm-spectrum-scale-csi/ -operator_images,Instana Agent Operator,426,,,,,,,611,,https://github.com/instana/instana-agent-operator -operator_images,credstash-operator,426,,,612,,,,,"[""''quay.io/ouzi/credstash-operator:v1.13.0''""]",https://github.com/ouzi-dev/credstash-operator -operator_images,Snyk Operator,426,,,613,,,,,"[""''docker.io/snyk/kubernetes-operator:1.92.0''""]",https://github.com/snyk/kubernetes-monitor -operator_images,Akka Cluster Operator,426,,,614,,,,,,https://github.com/lightbend/akka-cluster-operator -operator_images,Lightbend Console Operator,426,,,614,,,,,,https://github.com/lightbend/console-charts/tree/master/operator -operator_images,Varnish Operator,426,,,,615,,,,,https://github.com/IBM/varnish-operator -operator_images,Datadog Operator,426,,,,,,,616,,https://github.com/DataDog/datadog-operator -operator_images,Hazelcast Platform Operator,426,,,,,,,618,"[""''docker.io/hazelcast/hazelcast-platform-operator:5.3''""]",https://docs.hazelcast.com/operator/latest/ -operator_images,Infinispan Operator,426,,,619,,,,,"[""''quay.io/infinispan/operator:2.2.4.Final''""]",https://github.com/infinispan/infinispan-operator -operator_images,Nuxeo Operator,426,,,,,,,620,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator -operator_images,ArangoDB,426,,,621,,,,,,https://github.com/arangodb/kube-arangodb -operator_images,AWS Controllers for Kubernetes - Amazon S3,426,,,623,,,,,,https://github.com/aws-controllers-k8s -operator_images,Altinity Operator for ClickHouse,426,,,624,,,,,,https://github.com/altinity/clickhouse-operator -operator_images,Minio Operator,426,,,625,,,,,"[""''quay.io/minio/operator''""]",https://github.com/minio/operator -operator_images,Elasticsearch Index Operator,426,,,626,,,,,,https://github.com/IBM/esindex-operator -operator_images,Elasticsearch (ECK) Operator,426,,,626,,,,,,https://github.com/elastic/cloud-on-k8s -operator_images,Elasticsearch Phenix Operator,426,,,626,,,,,,https://github.com/Carrefour-Group/elastic-phenix-operator -operator_images,Logging Operator,426,,,626,,,,,"[""''quay.io/opstree/logging-operator:v0.3.0''""]",https://github.com/ot-container-kit/logging-operator -operator_images,Nuxeo Operator,426,,,626,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator -operator_images,Prometheus Exporter Operator,426,,,626,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator -operator_images,Percona Distribution for MySQL Operator,426,,,627,,,,,,https://github.com/percona/percona-xtradb-cluster-operator -operator_images,Keycloak Operator,426,,,628,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak -operator_images,Grafana Operator,426,,,629,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator -operator_images,Prometheus Exporter Operator,426,,,629,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator -operator_images,Mattermost Operator,426,,,,,,,630,"[""''docker.io/mattermost/mattermost-operator:v0.5.0''""]",https://github.com/mattermost/mattermost-operator -operator_images,synapse-helm,426,,,631,,,,,"[""''quay.io/mgoerens/synapse-helm:v0.0.11''""]",https://github.com/opdev/synapse-helm -operator_images,IBM Cloud IAM Operator,426,,,632,,,,,,https://github.com/IBM/ibmcloud-iam-operator -operator_images,AWS Controllers for Kubernetes - Amazon IAM,426,,,632,,,,,,https://github.com/aws-controllers-k8s -operator_images,Knative Operator,426,,,,,,,633,,https://github.com/knative/operator -operator_images,Kogito Knative Eventing Source,426,,,,,,,633,,https://github.com/knative-sandbox/eventing-kogito -operator_images,YAKS Operator,426,,,,,,,633,"[""''docker.io/citrusframework/yaks:0.10.0''""]",https://github.com/citrusframework/yaks -operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,,,634,,,,,,https://github.com/k8ssandra/cass-operator -operator_images,Kubeflow,426,,,,,,,635,,https://github.com/kubeflow/kfctl -operator_images,QiskitPlayground,426,,,636,,,,,"[""''docker.io/qiskit/operator:0.1''""]",https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/kubernetes-qiskit-operator -operator_images,Ibm Quantum Operator,426,,,636,,,,,"[""''quay.io/application/husky_parul/ibm-quantum-operator''""]",https://github.com/redhat-et/ibm-quantum-operator -operator_images,Azure Service Operator,426,,,637,,,,,,https://github.com/Azure/azure-service-operator -operator_images,Strimzi,426,,,,,,,638,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator -operator_images,Sematext Operator,426,,,,,,,639,"[""''docker.io/sematext/sematext-operator:1.0.46''""]",https://github.com/sematext/sematext-operator -operator_images,Eclipse Hawkbit,426,,,640,,,,,,https://github.com/ctron/hawkbit-operator -operator_images,Eclipse Ditto,426,,,641,,,,,,https://github.com/ctron/ditto-operator -operator_images,Mariadb Operator,426,,,642,,,,,"[""''quay.io/manojdhanorkar/mariadb-operator:v0.0.4''""]",https://github.com/abalki001/mariadb-operator -operator_images,Zadara Operator,426,,,643,,,,,,https://github.com/zadarastorage/zadara-operator -operator_images,Istio,426,,,644,,,,,,https://github.com/banzaicloud/istio-operator/tree/release-1.1 -operator_images,Istio Workspace,426,,,644,,,,,"[""''quay.io/maistra/istio-workspace:v0.5.1''""]",https://github.com/maistra/istio-workspace -operator_images,Kiali Operator,426,,,644,,,,,"[""''quay.io/kiali/kiali-operator:v1.53.0''""]",https://github.com/kiali/kiali -operator_images,Vault Operator,426,,,645,,,,,,https://github.com/banzaicloud/bank-vaults/tree/master/operator -operator_images,Vault Helm,426,,,645,,,,,"[""''quay.io/brejohns/vault-helm:0.0.2''""]",https://github.com/SDBrett/vault-helm -operator_images,External Secrets Operator,426,,,645,,,,,,https://github.com/external-secrets/external-secrets-helm-operator -operator_images,druid-operator,426,,,646,,,,,"[""''docker.io/druidio/druid-operator:0.0.9''""]",https://github.com/druid-io/druid-operator -operator_images,etcd,426,,,647,,,,,"[""''quay.io/coreos/etcd-operator''""]",https://github.com/coreos/etcd-operator -operator_images,Traefikee Operator,426,,,,648,,,,,https://docs.containo.us -operator_images,IBM Cloud Operator,426,,,649,,,,,,https://github.com/IBM/cloud-operators -operator_images,IBM Cloud IAM Operator,426,,,649,,,,,,https://github.com/IBM/ibmcloud-iam-operator -operator_images,Event Streams Topic,426,,,649,,,,,,https://github.com/IBM/event-streams-topic -operator_images,IBM COS Bucket Operator,426,,,649,,,,,,https://github.com/IBM/cos-bucket-operator -operator_images,Composable,426,,,649,,,,,,https://github.com/IBM/composable -operator_images,Elasticsearch Index Operator,426,,,649,,,,,,https://github.com/IBM/esindex-operator -operator_images,IBM block storage CSI driver operator,426,,,649,,,,,,https://github.com/IBM/ibm-block-csi-operator -operator_images,Yugabyte Operator,426,,,650,,,,,"[""''quay.io/yugabyte/yugabytedb-operator''""]",https://github.com/yugabyte/yugabyte-operator -operator_images,CockroachDB,426,,,651,,,,,"[""''quay.io/helmoperators/cockroachdb:v5.0.4''""]",https://github.com/dmesser/cockroachdb-operator -operator_images,Community Jaeger Operator,426,,,,,,,652,"[""''quay.io/jaegertracing/jaeger-operator:1.35.0''""]",https://github.com/jaegertracing/jaeger-operator -operator_images,PostgreSQL Operator by Dev4Ddevs.com,426,,,,,,,661,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator -operator_images,Strimzi,426,,,,,,,661,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator -operator_images,Keycloak Operator,426,,,,,,,661,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak -operator_images,Prometheus Operator,426,,,,,,,661,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator -operator_images,Elasticsearch (ECK) Operator,426,,,,,,,661,,https://github.com/elastic/cloud-on-k8s -operator_images,Crunchy Postgres for Kubernetes,426,,,,,,,661,,https://github.com/CrunchyData/postgres-operator -operator_images,Knative Operator,426,,,,,,,661,,https://github.com/knative/operator -operator_images,Redis Operator,426,,,,,,,661,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator -operator_images,Rook-Ceph,426,,,,,,,661,,https://github.com/rook/rook -operator_images,Argo CD,426,,,,,,,661,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator -operator_images,Grafana Operator,426,,,,,,,661,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator -operator_images,Starboard Operator,426,,,,,,,661,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard -operator_images,TiDB Operator,426,,,,,,,661,,https://github.com/pingcap/tidb-operator -operator_images,Altinity Operator for ClickHouse,426,,,,,,,661,,https://github.com/altinity/clickhouse-operator -operator_images,Flux,426,,,,,,,661,,https://fluxcd.io/docs/ -operator_images,Percona Distribution for MySQL Operator,426,,,,,,,661,,https://github.com/percona/percona-xtradb-cluster-operator -operator_images,RocketMQ Operator,426,,,,,,,661,,https://github.com/apache/rocketmq-operator -operator_images,StorageOS,426,,,,,,,661,,https://github.com/storageos/operator -operator_images,Falco Operator,426,,,,,,,661,"[""''docker.io/falcosecurity/falco-operator-helm:0.7.6''""]",https://github.com/falcosecurity/falco-operator/tree/helm-based-operator -operator_images,Community Jaeger Operator,426,,,,,,,661,"[""''quay.io/jaegertracing/jaeger-operator:1.35.0''""]",https://github.com/jaegertracing/jaeger-operator -operator_images,DataStax Kubernetes Operator for Apache Cassandra,426,,,671,,,,,,https://github.com/k8ssandra/cass-operator -operator_images,ks-releaser,426,,,677,,,,,,https://github.com/kubesphere-sigs/ks-releaser-operator -operator_images,Argo CD,426,,,677,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator -operator_images,Flux,426,,,677,,,,,,https://fluxcd.io/docs/ -operator_images,Argo CD Operator (Helm),426,,,677,,,,,"[""''quay.io/disposab1e/argocd-operator-helm''""]",https://github.com/disposab1e/argocd-operator-helm.git -operator_images,External Secrets Operator,426,,,677,,,,,,https://github.com/external-secrets/external-secrets-helm-operator -operator_images,GitLab,426,,,677,,,,,,https://gitlab.com/gitlab-org/cloud-native/gitlab-operator -operator_images,GitLab Runner,426,,,677,,,,,,https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator -operator_images,Multicluster Subscription Operator,426,,,677,,,,,"[""''quay.io/open-cluster-management/multicluster-operators-subscription:2.3.0''""]",https://github.com/open-cluster-management/multicloud-operators-subscription -operator_images,Weave GitOps Terraform Controller,426,,,677,,,,,,https://weaveworks.github.io/tf-controller/ -operator_images,GitLab,426,,,678,,,,,,https://gitlab.com/gitlab-org/cloud-native/gitlab-operator -operator_images,GitLab Runner,426,,,678,,,,,,https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator -operator_images,External Secrets Operator,426,,,678,,,,,,https://github.com/external-secrets/external-secrets-helm-operator -operator_images,GrdsCloud MySQL for Kubernetes,426,,,684,,,,,,https://github.com/GrdsCloud -operator_images,Percona Distribution for MySQL Operator,426,,,684,,,,,,https://github.com/percona/percona-xtradb-cluster-operator -operator_images,PlanetScale Operator for Vitess,426,,,684,,,,,, -operator_images,Prometheus Exporter Operator,426,,,684,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator -operator_images,Postgresql Operator,426,,,686,,,,,"[""''quay.io/deekshah86/postgresql-operator''""]",https://github.com/janepelladinesh/postgresql-operator -operator_images,Percona Operator for PostgreSQL,426,,,686,,,,,,https://github.com/percona/percona-postgresql-operator -operator_images,PostgreSQL Operator by Dev4Ddevs.com,426,,,686,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator -operator_images,Crunchy Postgres for Kubernetes,426,,,686,,,,,,https://github.com/CrunchyData/postgres-operator -operator_images,EDB Postgres for Kubernetes,426,,,686,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]",https://www.enterprisedb.com/docs/postgres_for_kubernetes/latest/ -operator_images,Postgres-Operator,426,,,686,,,,,,https://github.com/zalando/postgres-operator -operator_images,Ext Postgres Operator,426,,,686,,,,,,https://github.com/movetokube/postgres-operator -operator_images,Nuxeo Operator,426,,,686,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator -operator_images,Prometheus Exporter Operator,426,,,686,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator -operator_images,Robin Cloud Native Storage,426,,,686,,,,,, -operator_images,AWS Controllers for Kubernetes - Amazon RDS,426,,,687,,,,,,https://github.com/aws-controllers-k8s -operator_images,Upbound Universal Crossplane (UXP),426,,,687,,,,,,https://github.com/upbound/universal-crossplane +operator_images,WildFly,576,,,,,,493,,"[""''quay.io/wildfly/wildfly-operator:0.5.3''""]",https://github.com/wildfly/wildfly-operator +operator_images,Knative Operator,576,,,,,,,497,,https://github.com/knative/operator +operator_images,Submariner,576,,,,,,,497,"[""''quay.io/submariner/submariner-operator:0.11.0''""]",https://github.com/submariner-io/submariner-operator +operator_images,Kong Operator,576,,,,,,,497,,https://github.com/kong/kong-operator +operator_images,Traefikee Operator,576,,,,,,,497,,https://docs.containo.us +operator_images,Upbound Universal Crossplane (UXP),576,,,,,,,497,,https://github.com/upbound/universal-crossplane +operator_images,Varnish Operator,576,,,,,,,497,,https://github.com/IBM/varnish-operator +operator_images,BeeGFS CSI Driver,576,,,,,,,497,,https://github.com/netapp/beegfs-csi-driver +operator_images,cluster-impairment-operator,576,,,,,,,497,"[""''quay.io/redhat-performance/cluster-impairment-operator:1.0.4''""]",https://github.com/redhat-performance/cluster-impairment-operator +operator_images,Kogito Knative Eventing Source,576,,,,,,,497,,https://github.com/knative-sandbox/eventing-kogito +operator_images,k8gb,576,,,,,,,497,,https://github.com/k8gb-io/k8gb +operator_images,Kubernetes NMState Operator,576,,,,,,,497,"[""''quay.io/nmstate/kubernetes-nmstate-operator:v0.47.0''""]",https://github.com/nmstate/kubernetes-nmstate +operator_images,MARIN3R,576,,,,,,,497,"[""''quay.io/3scale/marin3r''""]",https://github.com/3scale-ops/marin3r +operator_images,MetalLB Operator,576,,,,,,,497,"[""''quay.io/metallb/metallb-operator''""]",https://github.com/metallb/metallb-operator +operator_images,NetObserv Operator,576,,,,,,,497,"[""''quay.io/netobserv/network-observability-operator:0.1.3''""]",https://github.com/netobserv/network-observability-operator +operator_images,NeuVector Operator,576,,,,,,,497,,https://github.com/neuvector/neuvector-operator +operator_images,Network Service Mesh Operator,576,,,,,,,497,"[""''quay.io/acmenezes/nsm-operator:v0.0.1''""]",https://github.com/acmenezes/nsm-operator +operator_images,Prisma Cloud Compute Operator,576,,,,,,,497,"[""''quay.io/prismacloud/pcc-operator''""]",https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator +operator_images,Routernetes,576,,,,,,,497,"[""''quay.io/routernetes/routernetes-operator:0.0.5''""]",https://github.com/routernetes/routernetes-operator +operator_images,skydive-operator,576,,,,,,,497,"[""''docker.io/skydive/skydive-operator:0.0.50''""]",https://github.com/skydive-project/skydive-golang-operator +operator_images,Tf Operator,576,,,,,,,497,"[""''docker.io/tungstenfabric/tf-operator:latest''""]",https://github.com/tungstenfabric/tf-operator +operator_images,Nexus Operator,576,,,,,,,503,"[""''quay.io/m88i/nexus-operator:0.6.0''""]",https://github.com/m88i/nexus-operator +operator_images,Anchore Engine Operator,576,,,,,,,503,"[""''docker.io/anchore/engine-operator:v0.1.3''""]",https://github.com/anchore/engine-operator +operator_images,Carbonetes Operator,576,,,,,,,503,"[""''docker.io/carbonetes/operator:1.0.4''""]",https://github.com/carbonetes/carbonetes-analyzer +operator_images,Prisma Cloud Compute Operator,576,,,,,,,503,"[""''quay.io/prismacloud/pcc-operator''""]",https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator +operator_images,Alvearie Imaging Ingestion Operator,576,582,,,,,,,,https://github.com/Alvearie/imaging-ingestion +operator_images,DataStax Kubernetes Operator for Apache Cassandra,576,582,,,,,,,,https://github.com/k8ssandra/cass-operator +operator_images,Qserv operator,576,582,,,,,,,,https://github.com/lsst/qserv-operator +operator_images,Strimzi,576,582,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator +operator_images,Keycloak Operator,576,582,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak +operator_images,Prometheus Operator,576,582,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator +operator_images,Elasticsearch (ECK) Operator,576,582,,,,,,,,https://github.com/elastic/cloud-on-k8s +operator_images,Crunchy Postgres for Kubernetes,576,582,,,,,,,,https://github.com/CrunchyData/postgres-operator +operator_images,Knative Operator,576,582,,,,,,,,https://github.com/knative/operator +operator_images,Redis Operator,576,582,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator +operator_images,Rook-Ceph,576,582,,,,,,,,https://github.com/rook/rook +operator_images,Argo CD,576,582,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator +operator_images,Grafana Operator,576,582,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator +operator_images,Starboard Operator,576,582,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard +operator_images,TiDB Operator,576,582,,,,,,,,https://github.com/pingcap/tidb-operator +operator_images,Altinity Operator for ClickHouse,576,582,,,,,,,,https://github.com/altinity/clickhouse-operator +operator_images,Flux,576,582,,,,,,,,https://fluxcd.io/docs/ +operator_images,Percona Distribution for MySQL Operator,576,582,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator +operator_images,RocketMQ Operator,576,582,,,,,,,,https://github.com/apache/rocketmq-operator +operator_images,StorageOS,576,582,,,,,,,,https://github.com/storageos/operator +operator_images,Alvearie Imaging Ingestion Operator,576,583,,,,,,,,https://github.com/Alvearie/imaging-ingestion +operator_images,DataStax Kubernetes Operator for Apache Cassandra,576,583,,,,,,,,https://github.com/k8ssandra/cass-operator +operator_images,Qserv operator,576,583,,,,,,,,https://github.com/lsst/qserv-operator +operator_images,Strimzi,576,583,,,,,,,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator +operator_images,Keycloak Operator,576,583,,,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak +operator_images,Prometheus Operator,576,583,,,,,,,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator +operator_images,Elasticsearch (ECK) Operator,576,583,,,,,,,,https://github.com/elastic/cloud-on-k8s +operator_images,Crunchy Postgres for Kubernetes,576,583,,,,,,,,https://github.com/CrunchyData/postgres-operator +operator_images,Knative Operator,576,583,,,,,,,,https://github.com/knative/operator +operator_images,Redis Operator,576,583,,,,,,,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator +operator_images,Rook-Ceph,576,583,,,,,,,,https://github.com/rook/rook +operator_images,Argo CD,576,583,,,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator +operator_images,Grafana Operator,576,583,,,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator +operator_images,Starboard Operator,576,583,,,,,,,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard +operator_images,TiDB Operator,576,583,,,,,,,,https://github.com/pingcap/tidb-operator +operator_images,Altinity Operator for ClickHouse,576,583,,,,,,,,https://github.com/altinity/clickhouse-operator +operator_images,Flux,576,583,,,,,,,,https://fluxcd.io/docs/ +operator_images,Percona Distribution for MySQL Operator,576,583,,,,,,,,https://github.com/percona/percona-xtradb-cluster-operator +operator_images,RocketMQ Operator,576,583,,,,,,,,https://github.com/apache/rocketmq-operator +operator_images,StorageOS,576,583,,,,,,,,https://github.com/storageos/operator +operator_images,WildFly,576,584,,,,,,,"[""''quay.io/wildfly/wildfly-operator:0.5.3''""]",https://github.com/wildfly/wildfly-operator +operator_images,AtlasMap Operator,576,584,,,,,,,"[""''quay.io/atlasmap/atlasmap-operator:0.4.1''""]",https://github.com/atlasmap/atlasmap-operator +operator_images,Appsody Operator,576,584,,,,,,,,https://github.com/appsody/appsody-operator +operator_images,Cryostat Operator,576,584,,,,,,,"[""''quay.io/cryostat/cryostat-operator:2.1.1''""]",github.com/cryostatio/cryostat-operator +operator_images,Open Liberty Operator,576,584,,,,,,,,https://github.com/OpenLiberty/open-liberty-operator +operator_images,Runtime Component Operator,576,584,,,,,,,,https://github.com/application-stacks/runtime-component-operator +operator_images,IBM Spectrum Scale CSI Plugin Operator,576,,,605,,,,,"[""''quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator''""]",https://github.com/IBM/ibm-spectrum-scale-csi/ +operator_images,Instana Agent Operator,576,,,,,,,611,,https://github.com/instana/instana-agent-operator +operator_images,credstash-operator,576,,,612,,,,,"[""''quay.io/ouzi/credstash-operator:v1.13.0''""]",https://github.com/ouzi-dev/credstash-operator +operator_images,Snyk Operator,576,,,613,,,,,"[""''docker.io/snyk/kubernetes-operator:1.92.0''""]",https://github.com/snyk/kubernetes-monitor +operator_images,Akka Cluster Operator,576,,,614,,,,,,https://github.com/lightbend/akka-cluster-operator +operator_images,Lightbend Console Operator,576,,,614,,,,,,https://github.com/lightbend/console-charts/tree/master/operator +operator_images,Varnish Operator,576,,,,615,,,,,https://github.com/IBM/varnish-operator +operator_images,Datadog Operator,576,,,,,,,616,,https://github.com/DataDog/datadog-operator +operator_images,Hazelcast Platform Operator,576,,,,,,,618,"[""''docker.io/hazelcast/hazelcast-platform-operator:5.3''""]",https://docs.hazelcast.com/operator/latest/ +operator_images,Infinispan Operator,576,,,619,,,,,"[""''quay.io/infinispan/operator:2.2.4.Final''""]",https://github.com/infinispan/infinispan-operator +operator_images,Nuxeo Operator,576,,,,,,,620,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator +operator_images,ArangoDB,576,,,621,,,,,,https://github.com/arangodb/kube-arangodb +operator_images,AWS Controllers for Kubernetes - Amazon S3,576,,,623,,,,,,https://github.com/aws-controllers-k8s +operator_images,Altinity Operator for ClickHouse,576,,,624,,,,,,https://github.com/altinity/clickhouse-operator +operator_images,Minio Operator,576,,,625,,,,,"[""''quay.io/minio/operator''""]",https://github.com/minio/operator +operator_images,Elasticsearch Index Operator,576,,,626,,,,,,https://github.com/IBM/esindex-operator +operator_images,Elasticsearch (ECK) Operator,576,,,626,,,,,,https://github.com/elastic/cloud-on-k8s +operator_images,Elasticsearch Phenix Operator,576,,,626,,,,,,https://github.com/Carrefour-Group/elastic-phenix-operator +operator_images,Logging Operator,576,,,626,,,,,"[""''quay.io/opstree/logging-operator:v0.3.0''""]",https://github.com/ot-container-kit/logging-operator +operator_images,Nuxeo Operator,576,,,626,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator +operator_images,Prometheus Exporter Operator,576,,,626,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator +operator_images,Percona Distribution for MySQL Operator,576,,,627,,,,,,https://github.com/percona/percona-xtradb-cluster-operator +operator_images,Keycloak Operator,576,,,628,,,,,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak +operator_images,Grafana Operator,576,,,629,,,,,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator +operator_images,Prometheus Exporter Operator,576,,,629,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator +operator_images,Mattermost Operator,576,,,,,,,630,"[""''docker.io/mattermost/mattermost-operator:v0.5.0''""]",https://github.com/mattermost/mattermost-operator +operator_images,synapse-helm,576,,,631,,,,,"[""''quay.io/mgoerens/synapse-helm:v0.0.11''""]",https://github.com/opdev/synapse-helm +operator_images,IBM Cloud IAM Operator,576,,,632,,,,,,https://github.com/IBM/ibmcloud-iam-operator +operator_images,AWS Controllers for Kubernetes - Amazon IAM,576,,,632,,,,,,https://github.com/aws-controllers-k8s +operator_images,Knative Operator,576,,,,,,,633,,https://github.com/knative/operator +operator_images,Kogito Knative Eventing Source,576,,,,,,,633,,https://github.com/knative-sandbox/eventing-kogito +operator_images,YAKS Operator,576,,,,,,,633,"[""''docker.io/citrusframework/yaks:0.10.0''""]",https://github.com/citrusframework/yaks +operator_images,DataStax Kubernetes Operator for Apache Cassandra,576,,,634,,,,,,https://github.com/k8ssandra/cass-operator +operator_images,Kubeflow,576,,,,,,,635,,https://github.com/kubeflow/kfctl +operator_images,QiskitPlayground,576,,,636,,,,,"[""''docker.io/qiskit/operator:0.1''""]",https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/kubernetes-qiskit-operator +operator_images,Ibm Quantum Operator,576,,,636,,,,,"[""''quay.io/application/husky_parul/ibm-quantum-operator''""]",https://github.com/redhat-et/ibm-quantum-operator +operator_images,Azure Service Operator,576,,,637,,,,,,https://github.com/Azure/azure-service-operator +operator_images,Strimzi,576,,,,,,,638,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator +operator_images,Sematext Operator,576,,,,,,,639,"[""''docker.io/sematext/sematext-operator:1.0.46''""]",https://github.com/sematext/sematext-operator +operator_images,Eclipse Hawkbit,576,,,640,,,,,,https://github.com/ctron/hawkbit-operator +operator_images,Eclipse Ditto,576,,,641,,,,,,https://github.com/ctron/ditto-operator +operator_images,Mariadb Operator,576,,,642,,,,,"[""''quay.io/manojdhanorkar/mariadb-operator:v0.0.4''""]",https://github.com/abalki001/mariadb-operator +operator_images,Zadara Operator,576,,,643,,,,,,https://github.com/zadarastorage/zadara-operator +operator_images,Istio,576,,,644,,,,,,https://github.com/banzaicloud/istio-operator/tree/release-1.1 +operator_images,Istio Workspace,576,,,644,,,,,"[""''quay.io/maistra/istio-workspace:v0.5.1''""]",https://github.com/maistra/istio-workspace +operator_images,Kiali Operator,576,,,644,,,,,"[""''quay.io/kiali/kiali-operator:v1.53.0''""]",https://github.com/kiali/kiali +operator_images,Vault Operator,576,,,645,,,,,,https://github.com/banzaicloud/bank-vaults/tree/master/operator +operator_images,Vault Helm,576,,,645,,,,,"[""''quay.io/brejohns/vault-helm:0.0.2''""]",https://github.com/SDBrett/vault-helm +operator_images,External Secrets Operator,576,,,645,,,,,,https://github.com/external-secrets/external-secrets-helm-operator +operator_images,druid-operator,576,,,646,,,,,"[""''docker.io/druidio/druid-operator:0.0.9''""]",https://github.com/druid-io/druid-operator +operator_images,etcd,576,,,647,,,,,"[""''quay.io/coreos/etcd-operator''""]",https://github.com/coreos/etcd-operator +operator_images,Traefikee Operator,576,,,,648,,,,,https://docs.containo.us +operator_images,IBM Cloud Operator,576,,,649,,,,,,https://github.com/IBM/cloud-operators +operator_images,IBM Cloud IAM Operator,576,,,649,,,,,,https://github.com/IBM/ibmcloud-iam-operator +operator_images,Event Streams Topic,576,,,649,,,,,,https://github.com/IBM/event-streams-topic +operator_images,IBM COS Bucket Operator,576,,,649,,,,,,https://github.com/IBM/cos-bucket-operator +operator_images,Composable,576,,,649,,,,,,https://github.com/IBM/composable +operator_images,Elasticsearch Index Operator,576,,,649,,,,,,https://github.com/IBM/esindex-operator +operator_images,IBM block storage CSI driver operator,576,,,649,,,,,,https://github.com/IBM/ibm-block-csi-operator +operator_images,Yugabyte Operator,576,,,650,,,,,"[""''quay.io/yugabyte/yugabytedb-operator''""]",https://github.com/yugabyte/yugabyte-operator +operator_images,CockroachDB,576,,,651,,,,,"[""''quay.io/helmoperators/cockroachdb:v5.0.4''""]",https://github.com/dmesser/cockroachdb-operator +operator_images,Community Jaeger Operator,576,,,,,,,652,"[""''quay.io/jaegertracing/jaeger-operator:1.36.0''""]",https://github.com/jaegertracing/jaeger-operator +operator_images,PostgreSQL Operator by Dev4Ddevs.com,576,,,,,,,661,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator +operator_images,Strimzi,576,,,,,,,661,"[""''quay.io/strimzi/operator''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka''"", ""''quay.io/strimzi/kafka-bridge''"", ""''quay.io/strimzi/jmxtrans''"", ""''quay.io/strimzi/kaniko-executor''"", ""''quay.io/strimzi/maven-builder''""]",https://github.com/strimzi/strimzi-kafka-operator +operator_images,Keycloak Operator,576,,,,,,,661,"[""''quay.io/keycloak/keycloak-operator:18.0.2''""]",https://github.com/keycloak/keycloak +operator_images,Prometheus Operator,576,,,,,,,661,"[""''quay.io/prometheus-operator/prometheus-operator:v0.47.0''""]",https://github.com/prometheus-operator/prometheus-operator +operator_images,Elasticsearch (ECK) Operator,576,,,,,,,661,,https://github.com/elastic/cloud-on-k8s +operator_images,Crunchy Postgres for Kubernetes,576,,,,,,,661,,https://github.com/CrunchyData/postgres-operator +operator_images,Knative Operator,576,,,,,,,661,,https://github.com/knative/operator +operator_images,Redis Operator,576,,,,,,,661,"[""''quay.io/opstree/redis-operator:v0.11.0''""]",https://github.com/ot-container-kit/redis-operator +operator_images,Rook-Ceph,576,,,,,,,661,,https://github.com/rook/rook +operator_images,Argo CD,576,,,,,,,661,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator +operator_images,Grafana Operator,576,,,,,,,661,"[""''quay.io/grafana-operator/grafana-operator:v4.5.0''""]",https://github.com/grafana-operator/grafana-operator +operator_images,Starboard Operator,576,,,,,,,661,"[""''docker.io/aquasec/starboard-operator:0.15.6''""]",https://github.com/aquasecurity/starboard +operator_images,TiDB Operator,576,,,,,,,661,,https://github.com/pingcap/tidb-operator +operator_images,Altinity Operator for ClickHouse,576,,,,,,,661,,https://github.com/altinity/clickhouse-operator +operator_images,Flux,576,,,,,,,661,,https://fluxcd.io/docs/ +operator_images,Percona Distribution for MySQL Operator,576,,,,,,,661,,https://github.com/percona/percona-xtradb-cluster-operator +operator_images,RocketMQ Operator,576,,,,,,,661,,https://github.com/apache/rocketmq-operator +operator_images,StorageOS,576,,,,,,,661,,https://github.com/storageos/operator +operator_images,Falco Operator,576,,,,,,,661,"[""''docker.io/falcosecurity/falco-operator-helm:0.7.6''""]",https://github.com/falcosecurity/falco-operator/tree/helm-based-operator +operator_images,Community Jaeger Operator,576,,,,,,,661,"[""''quay.io/jaegertracing/jaeger-operator:1.36.0''""]",https://github.com/jaegertracing/jaeger-operator +operator_images,ks-releaser,576,,,677,,,,,,https://github.com/kubesphere-sigs/ks-releaser-operator +operator_images,Argo CD,576,,,677,,,,,"[""''quay.io/argoprojlabs/argocd-operator''""]",https://github.com/argoproj-labs/argocd-operator +operator_images,Flux,576,,,677,,,,,,https://fluxcd.io/docs/ +operator_images,Argo CD Operator (Helm),576,,,677,,,,,"[""''quay.io/disposab1e/argocd-operator-helm''""]",https://github.com/disposab1e/argocd-operator-helm.git +operator_images,External Secrets Operator,576,,,677,,,,,,https://github.com/external-secrets/external-secrets-helm-operator +operator_images,GitLab,576,,,677,,,,,,https://gitlab.com/gitlab-org/cloud-native/gitlab-operator +operator_images,GitLab Runner,576,,,677,,,,,,https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator +operator_images,Multicluster Subscription Operator,576,,,677,,,,,"[""''quay.io/open-cluster-management/multicluster-operators-subscription:2.3.0''""]",https://github.com/open-cluster-management/multicloud-operators-subscription +operator_images,Weave GitOps Terraform Controller,576,,,677,,,,,,https://weaveworks.github.io/tf-controller/ +operator_images,GitLab,576,,,678,,,,,,https://gitlab.com/gitlab-org/cloud-native/gitlab-operator +operator_images,GitLab Runner,576,,,678,,,,,,https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator +operator_images,External Secrets Operator,576,,,678,,,,,,https://github.com/external-secrets/external-secrets-helm-operator +operator_images,GrdsCloud MySQL for Kubernetes,576,,,684,,,,,,https://github.com/GrdsCloud +operator_images,Percona Distribution for MySQL Operator,576,,,684,,,,,,https://github.com/percona/percona-xtradb-cluster-operator +operator_images,PlanetScale Operator for Vitess,576,,,684,,,,,, +operator_images,Prometheus Exporter Operator,576,,,684,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator +operator_images,Postgresql Operator,576,,,686,,,,,"[""''quay.io/deekshah86/postgresql-operator''""]",https://github.com/janepelladinesh/postgresql-operator +operator_images,Percona Operator for PostgreSQL,576,,,686,,,,,,https://github.com/percona/percona-postgresql-operator +operator_images,PostgreSQL Operator by Dev4Ddevs.com,576,,,686,,,,,"[""''quay.io/dev4devs-com/postgresql-operator:0.1.1''""]",https://github.com/dev4devs-com/postgresql-operator +operator_images,Crunchy Postgres for Kubernetes,576,,,686,,,,,,https://github.com/CrunchyData/postgres-operator +operator_images,EDB Postgres for Kubernetes,576,,,686,,,,,"[""''quay.io/enterprisedb/cloud-native-postgresql''""]",https://www.enterprisedb.com/docs/postgres_for_kubernetes/latest/ +operator_images,Postgres-Operator,576,,,686,,,,,,https://github.com/zalando/postgres-operator +operator_images,Ext Postgres Operator,576,,,686,,,,,,https://github.com/movetokube/postgres-operator +operator_images,Nuxeo Operator,576,,,686,,,,,"[""''docker.io/appzygy/nuxeo-operator:0.7.1''""]",https://github.com/aceeric/nuxeo-operator +operator_images,Prometheus Exporter Operator,576,,,686,,,,,"[""''quay.io/3scale/prometheus-exporter-operator:v0.2.4''""]",https://github.com/3scale/prometheus-exporter-operator +operator_images,Robin Cloud Native Storage,576,,,686,,,,,, +operator_images,AWS Controllers for Kubernetes - Amazon RDS,576,,,687,,,,,,https://github.com/aws-controllers-k8s +operator_images,Upbound Universal Crossplane (UXP),576,,,687,,,,,,https://github.com/upbound/universal-crossplane diff --git a/kg_utils/input.csv b/kg_utils/input.csv index 214fcbd..8593e33 100644 --- a/kg_utils/input.csv +++ b/kg_utils/input.csv @@ -1,7 +1,2 @@ -entities, comtran11, 9,{''qid'': ''Q5013384'',''url'': ''https://www.wikidata.org/wiki/Q5013384''}, N, Y, Y, N -entities, AppleScript11, 9, {''qid'': ''Q129137'',''url'': ''https://www.wikidata.org/wiki/Q129137''}, N, Y, N, N -entity_types, test123 -entity_mentions, test12,6, 169, others -entity_versions, 497, 20.1,NULL,NULL -entity_relations,6,581,10,501 operator_images,YAKS1 Operator,426,0,0,0,0,0,0,0,https://github.com/k8s-operatorhub/community-operators/operators,,https://github.com/k8s-operatorhub/community-operators/operators +operator_images,Elasticsearch Index Operator,426,,,47,,,,,,, \ No newline at end of file diff --git a/kg_utils/kg_aug.py b/kg_utils/kg_aug.py index 2be8e16..77cb5e9 100644 --- a/kg_utils/kg_aug.py +++ b/kg_utils/kg_aug.py @@ -273,6 +273,7 @@ def insert_into_table(table_name, userColVals, cur): sqlquery += "," count += 1 sqlquery += ")" + print(sqlquery) cur.execute(sqlquery) diff --git a/kg_utils/kg_utils.py b/kg_utils/kg_utils.py index 7a83bf8..5415dad 100644 --- a/kg_utils/kg_utils.py +++ b/kg_utils/kg_utils.py @@ -93,6 +93,7 @@ def load_docker_openshift_urls(connect): def type_mapper(db_connection): + """Maps each entity to the corresponding type :param conn: A connection to mysql @@ -110,6 +111,7 @@ def type_mapper(db_connection): for type_tuple in type_cursor.fetchall(): type_id, tech_type = type_tuple + type_map[str(type_id)] = tech_type return type_map @@ -132,6 +134,7 @@ def entity_mapper(db_connection): parent_cursor.execute("SELECT * FROM entities") for entity_row in parent_cursor.fetchall(): + class_id, entity = entity_row[0], entity_row[1] parent_class[str(class_id)] = entity return parent_class @@ -203,12 +206,14 @@ def create_inverted_compatibility_kg(db_connection): entity_ids = entity_mapper(db_connection) type_ids = type_mapper(db_connection) + + inverted_compatibilty_kg["KG Version"] = config["general"]["version"] for inverted_ids in inverted_cursor.fetchall(): inverted_lst = [] parent_type_id, parent_id, child_type_id, child_id = inverted_ids[1:5] - + inverted_lst.append({"Parent Type": type_ids[str(parent_type_id)], "Parent Class": entity_ids[str(parent_id)], "Child Type": type_ids[str(child_type_id)]}) diff --git a/kg_utils/search_utils/load_entities.py b/kg_utils/search_utils/load_entities.py index 0204881..b37f17d 100644 --- a/kg_utils/search_utils/load_entities.py +++ b/kg_utils/search_utils/load_entities.py @@ -33,6 +33,7 @@ config.read([config_data]) + def create_db_connection(database_path): """ Create connection to database @@ -74,23 +75,23 @@ def filter_entity(entity:str)-> str: match_pipe_only = re.findall(r'\|', entity) if match_pipe_star : - return entity.split('|*')[0] + return entity.split('|*')[0].strip() elif match_less_greater_sign: if "|" in entity.split("<>")[1]: - return entity.split("<>")[1].split("|")[-1] - return(entity.split("<>")[1]) + return entity.split("<>")[1].split("|")[-1].strip() + return(entity.split("<>")[1].strip()) elif match_abbreviation: if entity.startswith("("): - return entity + return entity.strip() elif ('|') in entity.split("(")[0]: n_ent = entity.split("(")[0].split('|')[-1] - return n_ent + return n_ent.strip() else: - return entity.split("(")[0] + return entity.split("(")[0].strip() elif match_pipe_only and '|*' not in entity: num = entity.count("|") @@ -99,9 +100,9 @@ def filter_entity(entity:str)-> str: ent = entity.split("|")[-1] else: ent = entity.split('|')[1] - return ent + return ent.strip() else: - return entity + return entity.strip() def from_database( entity_names = None, table_name="entities"): @@ -118,15 +119,16 @@ def from_database( entity_names = None, table_name="entities"): db_path = config["database"]["database_path"] connection = create_db_connection(db_path) + print("Connection", connection) entities = [] suggest_entities = [] cursor = connection.cursor() - + cursor.execute("SELECT * FROM {} ".format(table_name)) for entity in cursor.fetchall(): - + print(entity) if entity_names == "all": entity_name = filter_entity(entity[1]) entities.append( (entity_name.strip(),entity[2] , entity[0]) ) @@ -138,6 +140,7 @@ def from_database( entity_names = None, table_name="entities"): if entity[1].lower() == name.lower(): entity_name = filter_entity(entity[1]) + entities.append( (entity_name.strip(),entity[2] , entity[0]) ) elif name.lower() in entity[1].lower(): diff --git a/requirements.txt b/requirements.txt index 9811854..33c6647 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,11 +4,16 @@ Flask==1.1.1 Flask-API==1.1 flask-restplus==0.13.0 Werkzeug==0.16.1 +<<<<<<< Updated upstream:requirements.txt scikit-learn==1.1.1 #1.0.2 joblib>= 1.0.0 #0.15.1 +======= +scikit-learn==1.1.1 +joblib>= 1.0.0 +>>>>>>> Stashed changes:service/requirements.txt scipy==1.8.0 scikit-multilearn==0.2.0 -requests==2.28.1 #2.27.1 +requests==2.28.1 packaging==21.0 Jinja2==2.11.3 MarkupSafe==2.0.1 diff --git a/setup.sh b/setup.sh index 730ec25..5dc7c23 100644 --- a/setup.sh +++ b/setup.sh @@ -24,10 +24,10 @@ then exit 1 fi -# Check to make sure python is installed -if ! command -v python &> /dev/null +# Check to make sure python3.9 is installed +if ! command -v python3.9 &> /dev/null then - echo "**** ERROR: python command could not be found. Cannot continue." + echo "**** ERROR: python3.9 command could not be found. Cannot continue." exit 1 else $python -m pip install --upgrade pip wheel build setuptools diff --git a/test/unit/test_search_image.py b/test/unit/test_search_image.py index d66b673..4d49f5e 100644 --- a/test/unit/test_search_image.py +++ b/test/unit/test_search_image.py @@ -50,8 +50,15 @@ def test_csv_columns(self): def test_filter_entity(self): - entity = "Linux(ABC)" - expected = "Linux" + #"TIBCO Business Works (BW)|*" , Cascading Style Sheets (CSS)|*,ColdFusion Markup Language (CFML) ,Data Language Interface (DL/I) + #Extensible Stylesheet Language (XSL) , Java|Java Enterprise Edition (Java EE) , Java|Java Standard Edition (Java SE) , Java|JavaServer Pages (JSP) + #Java|JavaServer Pages (JSP)|Scriptlets, Java|Java Message Service (JMS) + + #Java|Spring|Spring Cloud Data Flow , MS SQL Server|SQL Server Analysis Services (SSAS) + + entity = "MS SQL Server|SQL Server Analysis Services (SSAS)" + expected = "SQL Server Analysis Services" + fil_entity = filter_entity(entity) self.assertEqual(fil_entity , expected) From 7da7c91f275a413c163e59456828078d0c097c72 Mon Sep 17 00:00:00 2001 From: lamwassi Date: Thu, 21 Jul 2022 18:17:59 -0400 Subject: [PATCH 27/30] Removed comments --- test/unit/test_search_image.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/test/unit/test_search_image.py b/test/unit/test_search_image.py index 4d49f5e..13d04bd 100644 --- a/test/unit/test_search_image.py +++ b/test/unit/test_search_image.py @@ -43,18 +43,13 @@ def test_csv_columns(self): cols = csv_columns(table_name) - expected = {'operator_images': '', 'container_name': '', 'OS': 426, 'lang': None, 'lib': None, 'app': None, 'app_server': None, 'plugin': None, 'runlib': None, 'runtime': None, 'Operator_Correspondent_Image_Url': [], 'Operator_Repository': ''} + expected = {'operator_images': '', 'container_name': '', 'OS': 576, 'lang': None, 'lib': None, 'app': None, 'app_server': None, 'plugin': None, 'runlib': None, 'runtime': None, 'Operator_Correspondent_Image_Url': [], 'Operator_Repository': ''} self.assertEqual(cols , expected) def test_filter_entity(self): - #"TIBCO Business Works (BW)|*" , Cascading Style Sheets (CSS)|*,ColdFusion Markup Language (CFML) ,Data Language Interface (DL/I) - #Extensible Stylesheet Language (XSL) , Java|Java Enterprise Edition (Java EE) , Java|Java Standard Edition (Java SE) , Java|JavaServer Pages (JSP) - #Java|JavaServer Pages (JSP)|Scriptlets, Java|Java Message Service (JMS) - - #Java|Spring|Spring Cloud Data Flow , MS SQL Server|SQL Server Analysis Services (SSAS) entity = "MS SQL Server|SQL Server Analysis Services (SSAS)" expected = "SQL Server Analysis Services" From 6dcd18bab9f3e7b8a53d9276f0a3fe12d4bbb747 Mon Sep 17 00:00:00 2001 From: divsan93 Date: Thu, 21 Jul 2022 18:18:11 -0400 Subject: [PATCH 28/30] Updated Readme --- README.md | 16 +- db/1.0.4.sql | 25594 ++++++++++++++++++++++--------------------- db/README.md | 18 +- kg_utils/input.csv | 7 +- kg_utils/kg_aug.py | 1 - requirements.txt | 7 +- setup.sh | 6 +- 7 files changed, 12944 insertions(+), 12705 deletions(-) diff --git a/README.md b/README.md index 95cc50b..0b084e3 100644 --- a/README.md +++ b/README.md @@ -37,13 +37,13 @@ The pipeline ingests raw inputs from clients data and standardizes the data to g ## Setting up your environment -Requires Python >= 3.6 environment. You cannot run this code without having a proper -Python environment first. We recommend that you follow the instructions +Requires Python >= 3.6 environment. You cannot run this code without having a proper +Python environment first. We recommend that you follow the instructions in the [Developer's Guide](docs/development.md) before proceeding further. ## Running TCA as a service -There are 4 options for deploying TCA as a service. +There are 4 options for deploying TCA as a service. 1. Install the service requirements and start the service from command line. @@ -52,12 +52,12 @@ Requires *gunicorn* standalone installation on your system. bash setup.sh gunicorn --workers=2 --threads=500 --timeout 300 service:app OR -waitress-serve --listen=*:8000 service:app +waitress-serve --listen=*:8000 service:app ``` -2. Running the service as a container. +2. Running the service as a container. -Using a bash script. +Using a bash script. ``` bash run.sh ``` @@ -82,7 +82,7 @@ bash deploy.sh ## Run a performance test for TCA service A performance test measures the response time of TCA service under -various load conditions. Before running +various load conditions. Before running performance test, update *config/test.ini* with the hostname and port where TCA service has been deployed @@ -101,7 +101,7 @@ Please perform the following steps. version = 3. Modify the *setup.sh* and *clean.sh* scripts to reflect the version accordingly. - + version= 4. Re-run *setup.sh* and then deploy the service. diff --git a/db/1.0.4.sql b/db/1.0.4.sql index 1b33b3c..d8e759f 100644 --- a/db/1.0.4.sql +++ b/db/1.0.4.sql @@ -1,5 +1,7 @@ -PRAGMA foreign_keys=OFF; +PRAGMA foreign_keys = off; BEGIN TRANSACTION; + +-- Table: docker_baseos_images CREATE TABLE docker_baseos_images ( id integer PRIMARY KEY AUTOINCREMENT, container_name text NOT NULL, @@ -14,19 +16,59 @@ CREATE TABLE docker_baseos_images ( OpenShiftStatus text, FOREIGN KEY (OS) REFERENCES entity_types (id) ); -INSERT INTO docker_baseos_images VALUES(1,'Windows Server Core',452,'https://hub.docker.com/_/microsoft-windows-servercore','Base Images','not_certified','Verified Publisher','no','Yes (Microsoft)','',''); -INSERT INTO docker_baseos_images VALUES(2,'Red Hat Enterprise Linux',434,'https://hub.docker.com/r/roboxes/rhel7','','certified','','NotApplicable','NotApplicable','https://catalog.redhat.com/software/containers/rhel7/57ea8cee9c624c035f96f3af',''); -INSERT INTO docker_baseos_images VALUES(3,'Ubuntu',436,'https://hub.docker.com/_/ubuntu','Base Images','not_certified','Official Image','yes','Yes (Docker)','',''); -INSERT INTO docker_baseos_images VALUES(4,'Debian',429,'https://hub.docker.com/_/debian','Base Images','not_certified','Official Image','yes','Yes (Docker)','',''); -INSERT INTO docker_baseos_images VALUES(5,'CentOS',427,'https://hub.docker.com/_/centos','','not_certified','Official Image','yes','Yes (Docker)','',''); -INSERT INTO docker_baseos_images VALUES(6,'Fedora',453,'https://hub.docker.com/_/fedora','','not_certified','Official Image','yes','Yes (Docker)','',''); -INSERT INTO docker_baseos_images VALUES(7,'Oracle Linux',432,'https://hub.docker.com/_/oraclelinux','','not_certified','Official Image','yes','Yes (Docker)','',''); -INSERT INTO docker_baseos_images VALUES(8,'Amazon Linux',454,'https://hub.docker.com/_/amazonlinux','','not_certified','Official Image','yes','Yes (Docker)','',''); -INSERT INTO docker_baseos_images VALUES(9,'openSUSE',431,'https://hub.docker.com/r/opensuse/leap','','not_certified','','no','NotApplicable','',''); -INSERT INTO docker_baseos_images VALUES(10,'SUSE Linux Enterprise Server',435,'https://www.suse.com/c/first-sles-container/','https://github.com/SUSE/sle2docker','unknown','','NotApplicable','NotApplicable','',''); -INSERT INTO docker_baseos_images VALUES(11,'Junos OS',430,'https://www.juniper.net/us/en/products-services/nos/junos/','','unknown','','NotApplicable','NotApplicable','',''); -INSERT INTO docker_baseos_images VALUES(12,'Photon OS',433,'https://hub.docker.com/_/photon','','not_certified','','NotApplicable','NotApplicable','',''); -INSERT INTO docker_baseos_images VALUES(13,'Windows',580,'https://hub.docker.com/_/microsoft-windows','Base Images','not_certified','Verified Publisher','no','Yes (Microsoft)','',''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (1, 'Windows Server Core', 452, 'https://hub.docker.com/_/microsoft-windows-servercore', 'Base Images', 'not_certified', 'Verified Publisher', 'no', 'Yes (Microsoft)', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (2, 'Red Hat Enterprise Linux', 434, 'https://hub.docker.com/r/roboxes/rhel7', '', 'certified', '', 'NotApplicable', 'NotApplicable', 'https://catalog.redhat.com/software/containers/rhel7/57ea8cee9c624c035f96f3af', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (3, 'Ubuntu', 436, 'https://hub.docker.com/_/ubuntu', 'Base Images', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (4, 'Debian', 429, 'https://hub.docker.com/_/debian', 'Base Images', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (5, 'CentOS', 427, 'https://hub.docker.com/_/centos', '', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (6, 'Fedora', 453, 'https://hub.docker.com/_/fedora', '', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (7, 'Oracle Linux', 432, 'https://hub.docker.com/_/oraclelinux', '', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (8, 'Amazon Linux', 454, 'https://hub.docker.com/_/amazonlinux', '', 'not_certified', 'Official Image', 'yes', 'Yes (Docker)', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (9, 'openSUSE', 431, 'https://hub.docker.com/r/opensuse/leap', '', 'not_certified', '', 'no', 'NotApplicable', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (10, 'SUSE Linux Enterprise Server', 435, 'https://www.suse.com/c/first-sles-container/', 'https://github.com/SUSE/sle2docker', 'unknown', '', 'NotApplicable', 'NotApplicable', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (11, 'Junos OS', 430, 'https://www.juniper.net/us/en/products-services/nos/junos/', '', 'unknown', '', 'NotApplicable', 'NotApplicable', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (12, 'Photon OS', 433, 'https://hub.docker.com/_/photon', '', 'not_certified', '', 'NotApplicable', 'NotApplicable', '', ''); +INSERT INTO docker_baseos_images (id, container_name, OS, Docker_URL, Notes, CertOfImageAndPublisher, Certification_Status, OfficialImage, VerifiedPublisher, OpenShift_Correspondent_Image_URL, OpenShiftStatus) VALUES (13, 'Windows', 580, 'https://hub.docker.com/_/microsoft-windows', 'Base Images', 'not_certified', 'Verified Publisher', 'no', 'Yes (Microsoft)', '', ''); + +-- Table: docker_environment_variables +CREATE TABLE docker_environment_variables( + id integer NOT NULL PRIMARY KEY AUTOINCREMENT, + Environment_Variables text, + Container_Name text, + Required text, + Default_Values text, + FOREIGN KEY (Container_Name) REFERENCES docker_images (id) + ); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (1, 'DB2INSTANCE', 'db2', 'Y', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (2, 'DB2INST1_PASSWORD', 'db2', 'Y', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (3, 'DBNAME', 'db2', 'Y', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (4, 'BLU', 'db2', 'N', 'True'); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (5, 'ENABLE_ORACLE_COMPATIBILITY', 'db2', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (6, 'SAMPLEDB', 'db2', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (7, 'PERSISTENT_HOME', 'db2', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (8, 'HADR_ENABLED', 'db2', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (9, 'ETCD_ENDPOINT', 'db2', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (10, 'ETCD_USERNAME', 'db2', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (11, 'ETCD_PASSWORD', 'db2', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (12, 'TEXT_SEARCH', 'db2', 'N', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (13, 'ARCHIVE_LOGS', 'db2', 'N', 'True'); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (14, 'AUTOCONFIG', 'db2', 'N', 'True'); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (15, 'MYSQL_HOST', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (16, 'MYSQL_ROOT_PASSWORD', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (17, 'MYSQL_DATABASE', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (18, 'MYSQL_USER', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (19, 'MYSQL_PASSWORD', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (20, 'MYSQL_ALLOW_EMPTY_PASSWORD', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (21, 'MYSQL_RANDOM_ROOT_PASSWORD', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (22, 'MYSQL_ONETIME_PASSWORD', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (23, 'MYSQL_INITDB_SKIP_TZINFO', 'mysql', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (24, 'CATALINA_BASE', 'tomcat', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (25, 'CATALINA_HOME', 'tomcat', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (26, 'CATALINA_TMPDIR', 'tomcat', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (27, 'JRE_HOME', 'tomcat', '', ''); +INSERT INTO docker_environment_variables (id, Environment_Variables, Container_Name, Required, Default_Values) VALUES (28, 'CLASSPATH', 'tomcat', '', ''); + +-- Table: docker_images CREATE TABLE docker_images ( id integer PRIMARY KEY AUTOINCREMENT, container_name text NOT NULL, @@ -50,177 +92,216 @@ CREATE TABLE docker_images ( FOREIGN KEY (runlib) REFERENCES entity_types (id), FOREIGN KEY (runtime) REFERENCES entity_types (id) ); -INSERT INTO docker_images VALUES(1,'Oracle Middleware (including Oracle Forms & Reports and Oracle Traffic Director)',576,NULL,NULL,137,NULL,NULL,NULL,NULL,'https://github.com/DirkNachbar/Docker','',''); -INSERT INTO docker_images VALUES(2,'eclipse',436,NULL,NULL,46,NULL,NULL,NULL,NULL,'https://github.com/fgrehm/docker-eclipse','',''); -INSERT INTO docker_images VALUES(3,'SAP MaxDB',436,NULL,NULL,176,NULL,NULL,NULL,NULL,'https://github.com/kr428/maxdb-docker','',''); -INSERT INTO docker_images VALUES(4,'IBM Maximo Asset Management',436,NULL,NULL,70,NULL,NULL,NULL,NULL,'https://github.com/nishi2go/maximo-docker','',''); -INSERT INTO docker_images VALUES(5,'Oracle Designer',576,NULL,NULL,135,NULL,NULL,NULL,NULL,'https://github.com/oracle/docker-images','',''); -INSERT INTO docker_images VALUES(6,'Oracle Real Application Clusters (RAC) Database',432,NULL,NULL,141,NULL,NULL,NULL,NULL,'https://github.com/oracle/docker-images/blob/master/OracleDatabase/RAC/OracleRealApplicationClusters/README.md','',''); -INSERT INTO docker_images VALUES(7,'Oracle Database Windows',580,NULL,NULL,134,NULL,NULL,NULL,NULL,'https://github.com/oracle/docker-images/issues/1054','',''); -INSERT INTO docker_images VALUES(8,'Oracle Siebel',432,NULL,NULL,182,NULL,NULL,NULL,NULL,'https://github.com/OracleSiebel/ConfiguringSiebel/tree/master/Containerization/Docker','',''); -INSERT INTO docker_images VALUES(9,'OpenLDAP',576,NULL,NULL,126,NULL,NULL,NULL,NULL,'https://github.com/osixia/docker-openldap','',''); -INSERT INTO docker_images VALUES(10,'Tivoli Monitoring Server (HUB TEMS)',576,NULL,NULL,77,NULL,NULL,NULL,NULL,'https://github.com/sambr7/itm6hub','',''); -INSERT INTO docker_images VALUES(11,'CA Wily Introscope',576,NULL,NULL,23,NULL,NULL,NULL,NULL,'https://github.com/stefansiegl/docker-introscope','',''); -INSERT INTO docker_images VALUES(12,'drupal',576,NULL,NULL,45,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/drupal/','Application Frameworks','Official Image'); -INSERT INTO docker_images VALUES(13,'gcc',576,583,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/gcc','DevOps Tools|Application Frameworks','Official Image'); -INSERT INTO docker_images VALUES(14,'glassfish',576,333,NULL,NULL,263,NULL,NULL,NULL,'https://hub.docker.com/_/glassfish','','Official Image'); -INSERT INTO docker_images VALUES(15,'golang_Windows',580,323,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/golang','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(16,'golang_Linux',576,323,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/golang','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(17,'groovy',576,325,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/groovy/','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(18,'haproxy',576,NULL,NULL,NULL,264,NULL,NULL,NULL,'https://hub.docker.com/_/haproxy','Application Infrastructure','Official Image'); -INSERT INTO docker_images VALUES(19,'httpd',576,NULL,NULL,NULL,259,NULL,NULL,NULL,'https://hub.docker.com/_/httpd','Application Infrastructure','Official Image'); -INSERT INTO docker_images VALUES(20,'IBM Security Access Manager',576,NULL,NULL,220,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/isam','Security|Application Infrastructure',''); -INSERT INTO docker_images VALUES(21,'jenkins',576,NULL,NULL,90,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/jenkins/','DevOps Tools','Official Image'); -INSERT INTO docker_images VALUES(22,'MarkLogic',576,NULL,NULL,97,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/marklogic','Analytics|Databases|Application Infrastructure','Verified Publisher'); -INSERT INTO docker_images VALUES(23,'memcached',576,NULL,NULL,98,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/memcached','Storage','Official Image'); -INSERT INTO docker_images VALUES(24,'.NET Framework',580,NULL,NULL,NULL,NULL,NULL,NULL,497,'https://hub.docker.com/_/microsoft-dotnet-framework','Base Images ::: runtime library : uClibc, musl','Verified Publisher, Docker Certified'); -INSERT INTO docker_images VALUES(25,'ASP.NET',580,NULL,NULL,NULL,NULL,NULL,NULL,592,'https://hub.docker.com/_/microsoft-dotnet-framework-aspnet','','Verified Publisher, Docker Certified'); -INSERT INTO docker_images VALUES(26,'Java SE JRE_Windows',580,NULL,NULL,NULL,NULL,NULL,NULL,506,'https://hub.docker.com/_/microsoft-java-jre','Base Images','Verified Publisher, Docker Certified'); -INSERT INTO docker_images VALUES(27,'Java SE JRE_Linux',576,NULL,NULL,NULL,NULL,NULL,NULL,506,'https://hub.docker.com/_/microsoft-java-jre','Base Images ::: splitted from original Row #35: "Java SE JRE"','Verified Publisher, Docker Certified'); -INSERT INTO docker_images VALUES(28,'Microsoft SQL Server',576,NULL,NULL,581,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-mssql-server','Base Images','Verified Publisher'); -INSERT INTO docker_images VALUES(29,'Windows IIS',580,NULL,NULL,NULL,609,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-windows-servercore-iis','Base Images','Verified Publisher'); -INSERT INTO docker_images VALUES(30,'Mongo_Windows',452,NULL,NULL,116,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/mongo','Databases','Official Image'); -INSERT INTO docker_images VALUES(31,'Mongo_Linux',576,NULL,NULL,116,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/mongo','Databases','Official Image'); -INSERT INTO docker_images VALUES(32,'mysql',576,NULL,NULL,122,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/mysql','Databases','Official Image'); -INSERT INTO docker_images VALUES(33,'neo4j',576,NULL,NULL,123,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/neo4j','Databases','Official Image'); -INSERT INTO docker_images VALUES(34,'nginx',576,NULL,NULL,NULL,274,NULL,NULL,NULL,'https://hub.docker.com/_/nginx','Application Infrastructure','Official Image'); -INSERT INTO docker_images VALUES(35,'node',576,NULL,NULL,NULL,NULL,NULL,NULL,507,'https://hub.docker.com/_/node/','Application Infrastructure','Official Image'); -INSERT INTO docker_images VALUES(36,'Oracle Database Enterprise Edition',576,NULL,NULL,134,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/oracle-database-enterprise-edition','Databases','Verified Publisher, Docker Certified'); -INSERT INTO docker_images VALUES(37,'Oracle WebLogic Server',576,333,NULL,NULL,600,NULL,NULL,NULL,'https://hub.docker.com/_/oracle-weblogic-server-12c','Application Frameworks|Application Infrastructure','Verified Publisher, Docker Certified'); -INSERT INTO docker_images VALUES(38,'Progress Application Server (PAS) for OpenEdge',576,344,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/pasoe','Application Infrastructure|Base Images','Verified Publisher, Docker Certified'); -INSERT INTO docker_images VALUES(39,'php',576,586,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/php','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(40,'Python_Windows',580,587,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/python','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(41,'Python_Linux',576,587,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/python','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(42,'r-base',576,355,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/r-base','Application Services','Official Image'); -INSERT INTO docker_images VALUES(43,'rabbitmq',576,NULL,NULL,165,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/rabbitmq','Messaging Services','Official Image'); -INSERT INTO docker_images VALUES(44,'rails',576,588,NULL,NULL,NULL,NULL,NULL,508,'https://hub.docker.com/_/rails/','','Official Image'); -INSERT INTO docker_images VALUES(45,'redis_Windows',580,NULL,NULL,168,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/redis/','Databases','Official Image'); -INSERT INTO docker_images VALUES(46,'redis_Linux',576,NULL,NULL,168,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/redis/','Databases','Official Image'); -INSERT INTO docker_images VALUES(47,'ruby',576,588,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/ruby','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(48,'SAP HANA, express edition (database and application services)',576,NULL,NULL,175,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/sap-hana-express-edition-incl-application-services','Analytics|Application Infrastructure|Databases','Verified Publisher'); -INSERT INTO docker_images VALUES(49,'Sentry',576,NULL,NULL,180,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/sentry/','Application Infrastructure|DevOps Tools|Monitoring','Verified Publisher'); -INSERT INTO docker_images VALUES(50,'sonarqube',576,584,NULL,186,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/sonarqube/','DevOps Tools','Official Image'); -INSERT INTO docker_images VALUES(51,'swift',576,364,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/swift','Base Images|Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(52,'tomcat',576,584,NULL,NULL,260,NULL,NULL,NULL,'https://hub.docker.com/_/tomcat','Application Infrastructure','Official Image'); -INSERT INTO docker_images VALUES(53,'websphere-liberty',576,584,NULL,NULL,285,NULL,NULL,NULL,'https://hub.docker.com/_/websphere-liberty','','Official Image'); -INSERT INTO docker_images VALUES(54,'wordpress',576,586,NULL,245,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/wordpress/','Application Services','Official Image'); -INSERT INTO docker_images VALUES(55,'xml-to-bootstrap',576,NULL,NULL,596,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/acch/xml-to-bootstrap/','',''); -INSERT INTO docker_images VALUES(56,'asterisk',429,NULL,NULL,14,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/andrius/asterisk','',''); -INSERT INTO docker_images VALUES(57,'ansible',436,NULL,NULL,5,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ansible/ansible','',''); -INSERT INTO docker_images VALUES(58,'ahfcmd',576,NULL,NULL,319,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/antennahouse/ahfcmd','',''); -INSERT INTO docker_images VALUES(59,'oracle-apex-ords',436,NULL,NULL,131,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/araczkowski/oracle-apex-ords/','',''); -INSERT INTO docker_images VALUES(60,'siebelapp',434,NULL,NULL,182,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/azeemdin/siebelapp/','',''); -INSERT INTO docker_images VALUES(61,'bmc',436,NULL,NULL,19,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/baremetalcontainer/bmc','',''); -INSERT INTO docker_images VALUES(62,'riak-kv_Ubuntu',436,584,NULL,170,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/basho/riak-kv/','',''); -INSERT INTO docker_images VALUES(63,'riak-kv_CentOS',427,584,NULL,170,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/basho/riak-kv/','',''); -INSERT INTO docker_images VALUES(64,'hive',576,NULL,NULL,8,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/bde2020/hive','',''); -INSERT INTO docker_images VALUES(65,'cordova',576,NULL,NULL,NULL,NULL,NULL,NULL,501,'https://hub.docker.com/r/beevelop/cordova','',''); -INSERT INTO docker_images VALUES(66,'kafka',429,NULL,NULL,9,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/kafka/','',''); -INSERT INTO docker_images VALUES(67,'postgresql',429,NULL,NULL,157,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/postgresql/','',''); -INSERT INTO docker_images VALUES(68,'reportserver',429,NULL,NULL,21,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/reportserver/','',''); -INSERT INTO docker_images VALUES(69,'spark',429,NULL,NULL,NULL,280,NULL,NULL,NULL,'https://hub.docker.com/r/bitnami/spark/','',''); -INSERT INTO docker_images VALUES(70,'chrome',576,NULL,NULL,55,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/browserless/chrome/','',''); -INSERT INTO docker_images VALUES(71,'docker-pentaho',576,NULL,NULL,150,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ca0abinary/docker-pentaho/','',''); -INSERT INTO docker_images VALUES(72,'chef',436,NULL,NULL,27,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/chef/chef/','',''); -INSERT INTO docker_images VALUES(73,'zerto-exporter',576,NULL,NULL,249,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/claranet/zerto-exporter/','',''); -INSERT INTO docker_images VALUES(74,'management_frontend',576,NULL,NULL,308,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/clipper/management_frontend/','',''); -INSERT INTO docker_images VALUES(75,'vmware-tools',436,NULL,NULL,230,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/corfr/vmware-tools/','',''); -INSERT INTO docker_images VALUES(76,'xampp',436,NULL,NULL,246,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/cswl/xampp','',''); -INSERT INTO docker_images VALUES(77,'activiti',576,NULL,NULL,3,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/cwoodcock/activiti/','',''); -INSERT INTO docker_images VALUES(78,'sqlanywhere',436,NULL,NULL,178,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/danpmelo/sqlanywhere/','',''); -INSERT INTO docker_images VALUES(79,'lisp',429,341,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/dexec/lisp','',''); -INSERT INTO docker_images VALUES(80,'webfocus',576,NULL,NULL,232,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/dimitrislp/webfocus','',''); -INSERT INTO docker_images VALUES(81,'apache-servicemix',427,NULL,NULL,10,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/dskow/apache-servicemix/','',''); -INSERT INTO docker_images VALUES(82,'tcl',436,NULL,NULL,365,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/efrecon/tcl/','',''); -INSERT INTO docker_images VALUES(83,'alpine-sass',576,NULL,NULL,361,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ellerbrock/alpine-sass','',''); -INSERT INTO docker_images VALUES(84,'oracle-soa-suite-12c',576,NULL,NULL,145,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/enomoto/oracle-soa-suite-12c/','',''); -INSERT INTO docker_images VALUES(85,'resin',427,NULL,NULL,NULL,278,NULL,NULL,NULL,'https://hub.docker.com/r/expertsystems/resin/','',''); -INSERT INTO docker_images VALUES(86,'docker-cobol',576,594,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/gregcoleman/docker-cobol/','',''); -INSERT INTO docker_images VALUES(87,'svn-apache',576,NULL,NULL,12,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/h0h4/svn-apache/','',''); -INSERT INTO docker_images VALUES(88,'static-file-server',576,NULL,NULL,NULL,NULL,NULL,NULL,505,'https://hub.docker.com/r/halverneus/static-file-server/','',''); -INSERT INTO docker_images VALUES(89,'hbase',576,NULL,NULL,7,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/harisekhon/hbase/','',''); -INSERT INTO docker_images VALUES(90,'ooce',580,NULL,NULL,60,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/hpoo/ooce','',''); -INSERT INTO docker_images VALUES(91,'scala-sbt',576,362,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/hseeberger/scala-sbt/','',''); -INSERT INTO docker_images VALUES(92,'delphi-prod',429,313,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/hunsche/delphi-prod','',''); -INSERT INTO docker_images VALUES(93,'fabric-ca',576,NULL,NULL,422,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/hyperledger/fabric-ca','',''); -INSERT INTO docker_images VALUES(94,'db2',576,NULL,NULL,43,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/db2','',''); -INSERT INTO docker_images VALUES(95,'ibm-http-server',576,NULL,NULL,NULL,265,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/ibm-http-server/','',''); -INSERT INTO docker_images VALUES(96,'iib',576,NULL,NULL,68,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/iib/','',''); -INSERT INTO docker_images VALUES(97,'informix-developer-database',576,NULL,NULL,330,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/informix-developer-database/','',''); -INSERT INTO docker_images VALUES(98,'kitura-ubuntu',436,NULL,NULL,NULL,269,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/kitura-ubuntu/','',''); -INSERT INTO docker_images VALUES(99,'mq',576,NULL,NULL,81,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/mq/','IBM MQ Advanced for Developers',''); -INSERT INTO docker_images VALUES(100,'websphere-portal',576,584,NULL,NULL,286,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/websphere-portal/','',''); -INSERT INTO docker_images VALUES(101,'websphere-traditional',576,584,NULL,NULL,284,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/websphere-traditional/','',''); -INSERT INTO docker_images VALUES(102,'opentext',576,NULL,NULL,127,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ikelso/opentext','',''); -INSERT INTO docker_images VALUES(103,'cognos',576,NULL,NULL,36,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ingvarch/cognos/','',''); -INSERT INTO docker_images VALUES(104,'base',576,NULL,NULL,NULL,268,NULL,NULL,NULL,'https://hub.docker.com/r/jboss/base/','',''); -INSERT INTO docker_images VALUES(105,'wildfly',576,NULL,NULL,NULL,493,NULL,NULL,NULL,'https://hub.docker.com/r/jboss/wildfly/','',''); -INSERT INTO docker_images VALUES(106,'docker-teradata-client',576,NULL,NULL,215,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/jeremymarshall/docker-teradata-client','',''); -INSERT INTO docker_images VALUES(107,'firefox',576,NULL,NULL,117,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/jlesage/firefox','',''); -INSERT INTO docker_images VALUES(108,'nginx-proxy',576,NULL,NULL,NULL,274,NULL,NULL,NULL,'https://hub.docker.com/r/jwilder/nginx-proxy/','',''); -INSERT INTO docker_images VALUES(109,'remedy-admin',576,NULL,NULL,169,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/kliremedy/remedy-admin/','',''); -INSERT INTO docker_images VALUES(110,'uniface',576,NULL,NULL,225,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/lammersma/uniface','',''); -INSERT INTO docker_images VALUES(111,'rv-tibco',576,NULL,NULL,219,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/lingya/rv-tibco','',''); -INSERT INTO docker_images VALUES(112,'openvpn-as',576,NULL,NULL,128,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/linuxserver/openvpn-as/','',''); -INSERT INTO docker_images VALUES(113,'lucee52',576,NULL,NULL,NULL,271,NULL,NULL,NULL,'https://hub.docker.com/r/lucee/lucee52','',''); -INSERT INTO docker_images VALUES(114,'sqldeveloper',576,NULL,NULL,146,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/marcelhuberfoo/sqldeveloper/','',''); -INSERT INTO docker_images VALUES(115,'term_ssh_wine_winmerge',576,NULL,NULL,241,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/marchandd/term_ssh_wine_winmerge/','',''); -INSERT INTO docker_images VALUES(116,'openbd',576,311,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/marcusf/openbd/','',''); -INSERT INTO docker_images VALUES(117,'mdw',576,NULL,NULL,115,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/mdwcore/mdw','',''); -INSERT INTO docker_images VALUES(118,'infobright',576,NULL,NULL,86,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/meatcar/infobright/','',''); -INSERT INTO docker_images VALUES(119,'alpine-expect',576,315,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/mesosphere/alpine-expect/','',''); -INSERT INTO docker_images VALUES(120,'acroread',576,NULL,NULL,4,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/mgor/acroread/','',''); -INSERT INTO docker_images VALUES(121,'dynamics-nav',580,NULL,NULL,101,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/microsoft/dynamics-nav','',''); -INSERT INTO docker_images VALUES(122,'fortran-gfortran',576,322,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nacyot/fortran-gfortran/','',''); -INSERT INTO docker_images VALUES(123,'javascript-node.js',576,589,NULL,NULL,NULL,NULL,NULL,507,'https://hub.docker.com/r/nacyot/javascript-node.js/','',''); -INSERT INTO docker_images VALUES(124,'objectivec-gcc',576,343,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nacyot/objectivec-gcc/','',''); -INSERT INTO docker_images VALUES(125,'pascal-fp_compiler',576,599,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nacyot/pascal-fp_compiler/','',''); -INSERT INTO docker_images VALUES(126,'smalltalk-gnu',576,363,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nacyot/smalltalk-gnu/','',''); -INSERT INTO docker_images VALUES(127,'asp-docker',580,NULL,NULL,NULL,NULL,NULL,NULL,592,'https://hub.docker.com/r/nagaozen/asp-docker','',''); -INSERT INTO docker_images VALUES(128,'nginx-ingress',576,NULL,NULL,88,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nginx/nginx-ingress/','',''); -INSERT INTO docker_images VALUES(129,'nix',576,NULL,NULL,125,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nixos/nix/','',''); -INSERT INTO docker_images VALUES(130,'node-red-docker',576,NULL,NULL,236,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nodered/node-red-docker/','',''); -INSERT INTO docker_images VALUES(131,'graphql-demo',576,324,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/npalm/graphql-demo','',''); -INSERT INTO docker_images VALUES(132,'sas',576,360,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/paulohms/sas/','',''); -INSERT INTO docker_images VALUES(133,'flash',576,NULL,NULL,NULL,NULL,NULL,NULL,504,'https://hub.docker.com/r/pegi3s/flash/','',''); -INSERT INTO docker_images VALUES(134,'vcenter',576,NULL,NULL,231,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/peterneln/vcenter','',''); -INSERT INTO docker_images VALUES(135,'gpdb-devel',576,NULL,NULL,56,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/pivotaldata/gpdb-devel/','',''); -INSERT INTO docker_images VALUES(136,'pivotal-tc-server',576,NULL,NULL,NULL,277,NULL,NULL,NULL,'https://hub.docker.com/r/rbosse/pivotal-tc-server/','',''); -INSERT INTO docker_images VALUES(137,'activemq',576,NULL,NULL,6,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/rmohr/activemq/','',''); -INSERT INTO docker_images VALUES(138,'svf',576,NULL,NULL,240,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/rockysui/svf','',''); -INSERT INTO docker_images VALUES(139,'typescript',576,367,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/sandrokeil/typescript/','',''); -INSERT INTO docker_images VALUES(140,'hadoop-docker',576,NULL,NULL,57,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/sequenceiq/hadoop-docker/','',''); -INSERT INTO docker_images VALUES(141,'nexus3',576,NULL,NULL,124,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/sonatype/nexus3/','',''); -INSERT INTO docker_images VALUES(142,'splunk',576,NULL,NULL,188,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/splunk/splunk/','',''); -INSERT INTO docker_images VALUES(143,'docker-eas-peoplesoft-base',576,NULL,NULL,151,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/uaecs/docker-eas-peoplesoft-base/','',''); -INSERT INTO docker_images VALUES(144,'imsdb',576,NULL,NULL,84,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/vineela/imsdb','',''); -INSERT INTO docker_images VALUES(145,'spfx',576,NULL,NULL,603,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/waldekm/spfx/','',''); -INSERT INTO docker_images VALUES(146,'sysinternals',580,NULL,NULL,193,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/weshigbee/sysinternals/','',''); -INSERT INTO docker_images VALUES(147,'arcgisserver',576,NULL,NULL,NULL,261,NULL,NULL,NULL,'https://hub.docker.com/r/xzdbd/arcgisserver/','',''); -INSERT INTO docker_images VALUES(148,'zeromq',576,NULL,NULL,248,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/zeromq/zeromq/','',''); -INSERT INTO docker_images VALUES(149,'IBM Workload Scheduler 9.5',576,NULL,NULL,79,NULL,NULL,NULL,NULL,'https://www.ibm.com/support/pages/ibm-workload-scheduler-95-docker-container-images','',''); -INSERT INTO docker_images VALUES(150,'IBM Transformation Extender',576,NULL,NULL,83,NULL,NULL,NULL,NULL,'https://www.ibm.com/support/pages/release-notes-ibm-transformation-extender-v1000','',''); -INSERT INTO docker_images VALUES(151,'openjdk_Windows',580,584,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/openjdk','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(152,'openjdk_Linux',576,584,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/openjdk','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(153,'perl',576,585,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/perl/','Programming Languages','Official Image'); -INSERT INTO docker_images VALUES(154,'postgres',576,NULL,NULL,157,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/postgres','Databases','Official Image'); -INSERT INTO docker_images VALUES(155,'solr',576,NULL,NULL,11,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/solr/','Analytics|Application Services','Official Image'); -INSERT INTO docker_images VALUES(156,'odm',576,NULL,NULL,73,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ibmcom/odm/','',''); -INSERT INTO docker_images VALUES(157,'maxdb-provider',576,NULL,NULL,176,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/integra/maxdb-provider/','',''); -INSERT INTO docker_images VALUES(158,'mssql-server-windows-developer',580,NULL,NULL,581,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/microsoft/mssql-server-windows-developer/','',''); -INSERT INTO docker_images VALUES(159,'mssql-server-windows-express',580,NULL,NULL,121,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/microsoft/mssql-server-windows-express/','',''); -INSERT INTO docker_images VALUES(160,'docker-sybase',576,NULL,NULL,190,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/nguoianphu/docker-sybase','',''); -INSERT INTO docker_images VALUES(161,'netscaler-cpx',576,NULL,NULL,31,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/netscaler-cpx','','Verified Publisher'); -INSERT INTO docker_images VALUES(162,'sqlite',576,NULL,NULL,258,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-azureiotedge-sqlite','','Verified Publisher'); -INSERT INTO docker_images VALUES(163,'vb',576,368,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-dotnet-framework','Programming Languages','Verified Publisher'); -INSERT INTO docker_images VALUES(164,'Software AG Adabas CE',576,NULL,NULL,656,NULL,NULL,NULL,NULL,'https://github.com/DirkNachbar/Docker','Databases','Verified Publisher'); -INSERT INTO docker_images VALUES(165,'Software AG Natural CE',576,653,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/softwareag-natural-ce','Programming Languages','Verified Publisher'); -INSERT INTO docker_images VALUES(166,'ansible/ansible',576,NULL,NULL,5,NULL,NULL,NULL,NULL,'https://hub.docker.com/r/ansible/ansible','',''); -INSERT INTO docker_images VALUES(167,'PowerShell',576,660,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-powershell','','Verified Publisher'); -INSERT INTO docker_images VALUES(168,'PowerShell',580,660,NULL,NULL,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/microsoft-powershell','','Verified Publisher'); -INSERT INTO docker_images VALUES(169,'cassandra',576,NULL,NULL,634,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/cassandra','Databases','Official Image'); -INSERT INTO docker_images VALUES(170,'Gitlab Community Edition',576,NULL,NULL,678,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/gitlab-community-edition','DevOps Tool','Verified Publisher'); -INSERT INTO docker_images VALUES(171,'maven',576,584,388,697,NULL,NULL,NULL,NULL,'https://hub.docker.com/_/maven','',NULL); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (1, 'Oracle Middleware (including Oracle Forms & Reports and Oracle Traffic Director)', 576, NULL, NULL, 137, NULL, NULL, NULL, NULL, 'https://github.com/DirkNachbar/Docker', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (2, 'eclipse', 436, NULL, NULL, 46, NULL, NULL, NULL, NULL, 'https://github.com/fgrehm/docker-eclipse', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (3, 'SAP MaxDB', 436, NULL, NULL, 176, NULL, NULL, NULL, NULL, 'https://github.com/kr428/maxdb-docker', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (4, 'IBM Maximo Asset Management', 436, NULL, NULL, 70, NULL, NULL, NULL, NULL, 'https://github.com/nishi2go/maximo-docker', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (5, 'Oracle Designer', 576, NULL, NULL, 135, NULL, NULL, NULL, NULL, 'https://github.com/oracle/docker-images', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (6, 'Oracle Real Application Clusters (RAC) Database', 432, NULL, NULL, 141, NULL, NULL, NULL, NULL, 'https://github.com/oracle/docker-images/blob/master/OracleDatabase/RAC/OracleRealApplicationClusters/README.md', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (7, 'Oracle Database Windows', 580, NULL, NULL, 134, NULL, NULL, NULL, NULL, 'https://github.com/oracle/docker-images/issues/1054', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (8, 'Oracle Siebel', 432, NULL, NULL, 182, NULL, NULL, NULL, NULL, 'https://github.com/OracleSiebel/ConfiguringSiebel/tree/master/Containerization/Docker', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (9, 'OpenLDAP', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://github.com/osixia/docker-openldap', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (10, 'Tivoli Monitoring Server (HUB TEMS)', 576, NULL, NULL, 77, NULL, NULL, NULL, NULL, 'https://github.com/sambr7/itm6hub', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (11, 'CA Wily Introscope', 576, NULL, NULL, 23, NULL, NULL, NULL, NULL, 'https://github.com/stefansiegl/docker-introscope', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (12, 'drupal', 576, NULL, NULL, 45, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/drupal/', 'Application Frameworks', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (13, 'gcc', 576, 583, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/gcc', 'DevOps Tools|Application Frameworks', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (14, 'glassfish', 576, 333, NULL, NULL, 263, NULL, NULL, NULL, 'https://hub.docker.com/_/glassfish', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (15, 'golang_Windows', 580, 323, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/golang', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (16, 'golang_Linux', 576, 323, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/golang', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (17, 'groovy', 576, 325, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/groovy/', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (18, 'haproxy', 576, NULL, NULL, NULL, 264, NULL, NULL, NULL, 'https://hub.docker.com/_/haproxy', 'Application Infrastructure', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (19, 'httpd', 576, NULL, NULL, NULL, 259, NULL, NULL, NULL, 'https://hub.docker.com/_/httpd', 'Application Infrastructure', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (20, 'IBM Security Access Manager', 576, NULL, NULL, 220, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/isam', 'Security|Application Infrastructure', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (21, 'jenkins', 576, NULL, NULL, 90, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/jenkins/', 'DevOps Tools', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (22, 'MarkLogic', 576, NULL, NULL, 97, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/marklogic', 'Analytics|Databases|Application Infrastructure', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (23, 'memcached', 576, NULL, NULL, 98, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/memcached', 'Storage', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (24, '.NET Framework', 580, NULL, NULL, NULL, NULL, NULL, NULL, 497, 'https://hub.docker.com/_/microsoft-dotnet-framework', 'Base Images ::: runtime library : uClibc, musl', 'Verified Publisher, Docker Certified'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (25, 'ASP.NET', 580, NULL, NULL, NULL, NULL, NULL, NULL, 592, 'https://hub.docker.com/_/microsoft-dotnet-framework-aspnet', '', 'Verified Publisher, Docker Certified'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (26, 'Java SE JRE_Windows', 580, NULL, NULL, NULL, NULL, NULL, NULL, 506, 'https://hub.docker.com/_/microsoft-java-jre', 'Base Images', 'Verified Publisher, Docker Certified'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (27, 'Java SE JRE_Linux', 576, NULL, NULL, NULL, NULL, NULL, NULL, 506, 'https://hub.docker.com/_/microsoft-java-jre', 'Base Images ::: splitted from original Row #35: "Java SE JRE"', 'Verified Publisher, Docker Certified'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (28, 'Microsoft SQL Server', 576, NULL, NULL, 581, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/microsoft-mssql-server', 'Base Images', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (29, 'Windows IIS', 580, NULL, NULL, NULL, 609, NULL, NULL, NULL, 'https://hub.docker.com/_/microsoft-windows-servercore-iis', 'Base Images', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (30, 'Mongo_Windows', 452, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/mongo', 'Databases', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (31, 'Mongo_Linux', 576, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/mongo', 'Databases', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (32, 'mysql', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/mysql', 'Databases', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (33, 'neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/neo4j', 'Databases', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (34, 'nginx', 576, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://hub.docker.com/_/nginx', 'Application Infrastructure', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (35, 'node', 576, NULL, NULL, NULL, NULL, NULL, NULL, 507, 'https://hub.docker.com/_/node/', 'Application Infrastructure', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (36, 'Oracle Database Enterprise Edition', 576, NULL, NULL, 134, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/oracle-database-enterprise-edition', 'Databases', 'Verified Publisher, Docker Certified'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (37, 'Oracle WebLogic Server', 576, 333, NULL, NULL, 600, NULL, NULL, NULL, 'https://hub.docker.com/_/oracle-weblogic-server-12c', 'Application Frameworks|Application Infrastructure', 'Verified Publisher, Docker Certified'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (38, 'Progress Application Server (PAS) for OpenEdge', 576, 344, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/pasoe', 'Application Infrastructure|Base Images', 'Verified Publisher, Docker Certified'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (39, 'php', 576, 586, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/php', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (40, 'Python_Windows', 580, 587, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/python', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (41, 'Python_Linux', 576, 587, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/python', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (42, 'r-base', 576, 355, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/r-base', 'Application Services', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (43, 'rabbitmq', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/rabbitmq', 'Messaging Services', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (44, 'rails', 576, 588, NULL, NULL, NULL, NULL, NULL, 508, 'https://hub.docker.com/_/rails/', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (45, 'redis_Windows', 580, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/redis/', 'Databases', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (46, 'redis_Linux', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/redis/', 'Databases', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (47, 'ruby', 576, 588, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/ruby', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (48, 'SAP HANA, express edition (database and application services)', 576, NULL, NULL, 175, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/sap-hana-express-edition-incl-application-services', 'Analytics|Application Infrastructure|Databases', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (49, 'Sentry', 576, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/sentry/', 'Application Infrastructure|DevOps Tools|Monitoring', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (50, 'sonarqube', 576, 584, NULL, 186, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/sonarqube/', 'DevOps Tools', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (51, 'swift', 576, 364, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/swift', 'Base Images|Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (52, 'tomcat', 576, 584, NULL, NULL, 260, NULL, NULL, NULL, 'https://hub.docker.com/_/tomcat', 'Application Infrastructure', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (53, 'websphere-liberty', 576, 584, NULL, NULL, 285, NULL, NULL, NULL, 'https://hub.docker.com/_/websphere-liberty', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (54, 'wordpress', 576, 586, NULL, 245, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/wordpress/', 'Application Services', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (55, 'xml-to-bootstrap', 576, NULL, NULL, 596, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/acch/xml-to-bootstrap/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (56, 'asterisk', 429, NULL, NULL, 14, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/andrius/asterisk', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (57, 'ansible', 436, NULL, NULL, 5, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ansible/ansible', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (58, 'ahfcmd', 576, NULL, NULL, 319, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/antennahouse/ahfcmd', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (59, 'oracle-apex-ords', 436, NULL, NULL, 131, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/araczkowski/oracle-apex-ords/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (60, 'siebelapp', 434, NULL, NULL, 182, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/azeemdin/siebelapp/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (61, 'bmc', 436, NULL, NULL, 19, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/baremetalcontainer/bmc', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (62, 'riak-kv_Ubuntu', 436, 584, NULL, 170, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/basho/riak-kv/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (63, 'riak-kv_CentOS', 427, 584, NULL, 170, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/basho/riak-kv/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (64, 'hive', 576, NULL, NULL, 8, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bde2020/hive', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (65, 'cordova', 576, NULL, NULL, NULL, NULL, NULL, NULL, 501, 'https://hub.docker.com/r/beevelop/cordova', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (66, 'kafka', 429, NULL, NULL, 9, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/kafka/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (67, 'postgresql', 429, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/postgresql/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (68, 'reportserver', 429, NULL, NULL, 21, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/reportserver/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (69, 'spark', 429, NULL, NULL, NULL, 280, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/spark/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (70, 'chrome', 576, NULL, NULL, 55, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/browserless/chrome/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (71, 'docker-pentaho', 576, NULL, NULL, 150, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ca0abinary/docker-pentaho/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (72, 'chef', 436, NULL, NULL, 27, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/chef/chef/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (73, 'zerto-exporter', 576, NULL, NULL, 249, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/claranet/zerto-exporter/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (74, 'management_frontend', 576, NULL, NULL, 308, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/clipper/management_frontend/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (75, 'vmware-tools', 436, NULL, NULL, 230, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/corfr/vmware-tools/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (76, 'xampp', 436, NULL, NULL, 246, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/cswl/xampp', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (77, 'activiti', 576, NULL, NULL, 3, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/cwoodcock/activiti/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (78, 'sqlanywhere', 436, NULL, NULL, 178, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/danpmelo/sqlanywhere/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (79, 'lisp', 429, 341, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/dexec/lisp', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (80, 'webfocus', 576, NULL, NULL, 232, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/dimitrislp/webfocus', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (81, 'apache-servicemix', 427, NULL, NULL, 10, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/dskow/apache-servicemix/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (82, 'tcl', 436, NULL, NULL, 365, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/efrecon/tcl/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (83, 'alpine-sass', 576, NULL, NULL, 361, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ellerbrock/alpine-sass', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (84, 'oracle-soa-suite-12c', 576, NULL, NULL, 145, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/enomoto/oracle-soa-suite-12c/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (85, 'resin', 427, NULL, NULL, NULL, 278, NULL, NULL, NULL, 'https://hub.docker.com/r/expertsystems/resin/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (86, 'docker-cobol', 576, 594, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/gregcoleman/docker-cobol/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (87, 'svn-apache', 576, NULL, NULL, 12, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/h0h4/svn-apache/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (88, 'static-file-server', 576, NULL, NULL, NULL, NULL, NULL, NULL, 505, 'https://hub.docker.com/r/halverneus/static-file-server/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (89, 'hbase', 576, NULL, NULL, 7, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/harisekhon/hbase/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (90, 'ooce', 580, NULL, NULL, 60, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/hpoo/ooce', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (91, 'scala-sbt', 576, 362, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/hseeberger/scala-sbt/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (92, 'delphi-prod', 429, 313, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/hunsche/delphi-prod', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (93, 'fabric-ca', 576, NULL, NULL, 422, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/hyperledger/fabric-ca', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (94, 'db2', 576, NULL, NULL, 43, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/db2', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (95, 'ibm-http-server', 576, NULL, NULL, NULL, 265, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/ibm-http-server/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (96, 'iib', 576, NULL, NULL, 68, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/iib/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (97, 'informix-developer-database', 576, NULL, NULL, 330, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/informix-developer-database/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (98, 'kitura-ubuntu', 436, NULL, NULL, NULL, 269, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/kitura-ubuntu/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (99, 'mq', 576, NULL, NULL, 81, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/mq/', 'IBM MQ Advanced for Developers', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (100, 'websphere-portal', 576, 584, NULL, NULL, 286, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/websphere-portal/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (101, 'websphere-traditional', 576, 584, NULL, NULL, 284, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/websphere-traditional/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (102, 'opentext', 576, NULL, NULL, 127, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ikelso/opentext', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (103, 'cognos', 576, NULL, NULL, 36, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ingvarch/cognos/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (104, 'base', 576, NULL, NULL, NULL, 268, NULL, NULL, NULL, 'https://hub.docker.com/r/jboss/base/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (105, 'wildfly', 576, NULL, NULL, NULL, 493, NULL, NULL, NULL, 'https://hub.docker.com/r/jboss/wildfly/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (106, 'docker-teradata-client', 576, NULL, NULL, 215, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/jeremymarshall/docker-teradata-client', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (107, 'firefox', 576, NULL, NULL, 117, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/jlesage/firefox', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (108, 'nginx-proxy', 576, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://hub.docker.com/r/jwilder/nginx-proxy/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (109, 'remedy-admin', 576, NULL, NULL, 169, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/kliremedy/remedy-admin/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (110, 'uniface', 576, NULL, NULL, 225, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/lammersma/uniface', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (111, 'rv-tibco', 576, NULL, NULL, 219, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/lingya/rv-tibco', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (112, 'openvpn-as', 576, NULL, NULL, 128, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/linuxserver/openvpn-as/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (113, 'lucee52', 576, NULL, NULL, NULL, 271, NULL, NULL, NULL, 'https://hub.docker.com/r/lucee/lucee52', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (114, 'sqldeveloper', 576, NULL, NULL, 146, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/marcelhuberfoo/sqldeveloper/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (115, 'term_ssh_wine_winmerge', 576, NULL, NULL, 241, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/marchandd/term_ssh_wine_winmerge/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (116, 'openbd', 576, 311, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/marcusf/openbd/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (117, 'mdw', 576, NULL, NULL, 115, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/mdwcore/mdw', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (118, 'infobright', 576, NULL, NULL, 86, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/meatcar/infobright/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (119, 'alpine-expect', 576, 315, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/mesosphere/alpine-expect/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (120, 'acroread', 576, NULL, NULL, 4, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/mgor/acroread/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (121, 'dynamics-nav', 580, NULL, NULL, 101, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/microsoft/dynamics-nav', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (122, 'fortran-gfortran', 576, 322, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nacyot/fortran-gfortran/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (123, 'javascript-node.js', 576, 589, NULL, NULL, NULL, NULL, NULL, 507, 'https://hub.docker.com/r/nacyot/javascript-node.js/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (124, 'objectivec-gcc', 576, 343, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nacyot/objectivec-gcc/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (125, 'pascal-fp_compiler', 576, 599, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nacyot/pascal-fp_compiler/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (126, 'smalltalk-gnu', 576, 363, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nacyot/smalltalk-gnu/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (127, 'asp-docker', 580, NULL, NULL, NULL, NULL, NULL, NULL, 592, 'https://hub.docker.com/r/nagaozen/asp-docker', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (128, 'nginx-ingress', 576, NULL, NULL, 88, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nginx/nginx-ingress/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (129, 'nix', 576, NULL, NULL, 125, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nixos/nix/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (130, 'node-red-docker', 576, NULL, NULL, 236, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nodered/node-red-docker/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (131, 'graphql-demo', 576, 324, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/npalm/graphql-demo', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (132, 'sas', 576, 360, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/paulohms/sas/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (133, 'flash', 576, NULL, NULL, NULL, NULL, NULL, NULL, 504, 'https://hub.docker.com/r/pegi3s/flash/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (134, 'vcenter', 576, NULL, NULL, 231, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/peterneln/vcenter', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (135, 'gpdb-devel', 576, NULL, NULL, 56, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/pivotaldata/gpdb-devel/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (136, 'pivotal-tc-server', 576, NULL, NULL, NULL, 277, NULL, NULL, NULL, 'https://hub.docker.com/r/rbosse/pivotal-tc-server/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (137, 'activemq', 576, NULL, NULL, 6, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/rmohr/activemq/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (138, 'svf', 576, NULL, NULL, 240, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/rockysui/svf', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (139, 'typescript', 576, 367, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/sandrokeil/typescript/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (140, 'hadoop-docker', 576, NULL, NULL, 57, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/sequenceiq/hadoop-docker/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (141, 'nexus3', 576, NULL, NULL, 124, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/sonatype/nexus3/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (142, 'splunk', 576, NULL, NULL, 188, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/splunk/splunk/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (143, 'docker-eas-peoplesoft-base', 576, NULL, NULL, 151, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/uaecs/docker-eas-peoplesoft-base/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (144, 'imsdb', 576, NULL, NULL, 84, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/vineela/imsdb', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (145, 'spfx', 576, NULL, NULL, 603, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/waldekm/spfx/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (146, 'sysinternals', 580, NULL, NULL, 193, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/weshigbee/sysinternals/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (147, 'arcgisserver', 576, NULL, NULL, NULL, 261, NULL, NULL, NULL, 'https://hub.docker.com/r/xzdbd/arcgisserver/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (148, 'zeromq', 576, NULL, NULL, 248, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/zeromq/zeromq/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (149, 'IBM Workload Scheduler 9.5', 576, NULL, NULL, 79, NULL, NULL, NULL, NULL, 'https://www.ibm.com/support/pages/ibm-workload-scheduler-95-docker-container-images', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (150, 'IBM Transformation Extender', 576, NULL, NULL, 83, NULL, NULL, NULL, NULL, 'https://www.ibm.com/support/pages/release-notes-ibm-transformation-extender-v1000', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (151, 'openjdk_Windows', 580, 584, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/openjdk', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (152, 'openjdk_Linux', 576, 584, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/openjdk', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (153, 'perl', 576, 585, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/perl/', 'Programming Languages', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (154, 'postgres', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/postgres', 'Databases', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (155, 'solr', 576, NULL, NULL, 11, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/solr/', 'Analytics|Application Services', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (156, 'odm', 576, NULL, NULL, 73, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/odm/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (157, 'maxdb-provider', 576, NULL, NULL, 176, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/integra/maxdb-provider/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (158, 'mssql-server-windows-developer', 580, NULL, NULL, 581, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/microsoft/mssql-server-windows-developer/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (159, 'mssql-server-windows-express', 580, NULL, NULL, 121, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/microsoft/mssql-server-windows-express/', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (160, 'docker-sybase', 576, NULL, NULL, 190, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/nguoianphu/docker-sybase', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (161, 'netscaler-cpx', 576, NULL, NULL, 31, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/netscaler-cpx', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (162, 'sqlite', 576, NULL, NULL, 258, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/microsoft-azureiotedge-sqlite', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (163, 'vb', 576, 368, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/microsoft-dotnet-framework', 'Programming Languages', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (164, 'Software AG Adabas CE', 576, NULL, NULL, 656, NULL, NULL, NULL, NULL, 'https://github.com/DirkNachbar/Docker', 'Databases', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (165, 'Software AG Natural CE', 576, 653, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/softwareag-natural-ce', 'Programming Languages', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (166, 'ansible/ansible', 576, NULL, NULL, 5, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ansible/ansible', '', ''); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (167, 'PowerShell', 576, 660, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/microsoft-powershell', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (168, 'PowerShell', 580, 660, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/microsoft-powershell', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (169, 'cassandra', 576, NULL, NULL, 634, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/cassandra', 'Databases', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (170, 'Gitlab Community Edition', 576, NULL, NULL, 678, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/gitlab-community-edition', 'DevOps Tool', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (171, 'maven', 576, 584, 388, 697, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/maven', '', NULL); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (172, 'adobecoldfusion/coldfusion', 576, NULL, NULL, 37, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/adobecoldfusion/coldfusion', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (173, 'ibmcom/db2', 576, NULL, NULL, 43, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/db2', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (174, 'bitnami/mongodb', 576, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/mongodb', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (175, 'bitnami/openldap', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/openldap', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (176, 'bitnami/postgresql', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/postgresql', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (177, 'redis', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/redis', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (178, 'sentry', 576, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/sentry', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (179, 'ibmcom/zeromq', 576, NULL, NULL, 248, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/zeromq', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (180, 'bitnami/spark', 576, NULL, NULL, NULL, 280, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/spark', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (181, 'ibmcom/react', 576, NULL, 413, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/react', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (182, 'circleci/android', 418, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/circleci/android', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (183, 'dart', 421, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/dart', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (184, 'centos', 427, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/centos', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (185, 'debian', 429, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/debian', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (186, 'opensuse', 431, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/opensuse', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (187, 'ubuntu', 436, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/ubuntu', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (188, 'fedora', 453, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/fedora', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (189, 'bitnami/wildfly', 576, NULL, NULL, NULL, NULL, NULL, 493, NULL, 'https://hub.docker.com/r/bitnami/wildfly', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (190, 'docker', 576, NULL, NULL, NULL, NULL, NULL, NULL, 503, 'https://hub.docker.com/_/docker', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (191, 'ibmcom/json', 576, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/json', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (192, 'java', 576, 584, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/java', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (193, 'python', 576, 587, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/python', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (194, 'snyk/snyk', 576, NULL, NULL, 613, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/snyk/snyk', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (195, 'varnish', 576, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'https://hub.docker.com/_/varnish', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (196, 'kasmweb/api', 576, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/kasmweb/api', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (197, 'nuxeo', 576, NULL, NULL, NULL, NULL, NULL, NULL, 620, 'https://hub.docker.com/_/nuxeo', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (198, 'arangodb', 576, NULL, NULL, 621, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/arangodb', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (199, 'bitnami/minio', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/minio', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (200, 'elasticsearch', 576, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/elasticsearch', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (201, 'bitnami/keycloak', 576, NULL, NULL, 628, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/keycloak', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (202, 'grafana/grafana', 576, NULL, NULL, 629, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/grafana/grafana', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (203, 'mariadb', 576, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/mariadb', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (204, 'vault', 576, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'https://hub.docker.com/_/vault', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (205, 'bitnami/etcd', 576, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/etcd', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (206, 'traefik', 576, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://hub.docker.com/_/traefik', '', 'Official Image'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (207, 'bitnami/git', 576, NULL, NULL, 677, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/bitnami/git', '', 'Verified Publisher'); +INSERT INTO docker_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Docker_URL, Notes, CertOfImageAndPublisher) VALUES (208, 'ibmcom/isam', 576, NULL, NULL, 693, NULL, NULL, NULL, NULL, 'https://hub.docker.com/r/ibmcom/isam', '', 'Verified Publisher'); + +-- Table: entities CREATE TABLE entities ( id integer PRIMARY KEY AUTOINCREMENT, entity_name text NOT NULL, @@ -228,664 +309,666 @@ CREATE TABLE entities ( external_link text, COTS TEXT(10) DEFAULT N NOT NULL, Legacy TEXT(10) DEFAULT N NOT NULL, ContainerImage TEXT(10) DEFAULT N NOT NULL, OpenSource TEXT(10) DEFAULT N NOT NULL, FOREIGN KEY (entity_type_id) REFERENCES entity_types (id) ); -INSERT INTO entities VALUES(1,'(E)JES',2,'{''qid'': ''Q355203'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q355203''}','Y','N','N','N'); -INSERT INTO entities VALUES(2,'A-Auto Job Scheduling Software',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(3,'Activiti',2,'{''qid'': ''Q344370'', ''types'': [''Q341'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Activiti_(software)''}','N','Y','Y','Y'); -INSERT INTO entities VALUES(4,'Adobe Acrobat Reader',2,'{''qid'': ''Q207902'', ''types'': [''Q29364197'', ''Q166142''], ''url'': ''http://dbpedia.org/resource/Adobe_Acrobat''}','N','N','Y','N'); -INSERT INTO entities VALUES(5,'Ansible',2,'{''qid'': ''Q2852503'', ''types'': [''Q29032804''], ''url'': ''http://dbpedia.org/resource/Ansible_(software)''}','N','N','Y','Y'); -INSERT INTO entities VALUES(6,'Apache ActiveMQ',2,'{''qid'': ''Q773135'', ''types'': [''Q6821765'', ''Q1092177'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_ActiveMQ''}','N','N','Y','Y'); -INSERT INTO entities VALUES(7,'Apache Hbase',2,'{''qid'': ''Q2538066'', ''types'': [''Q341'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Apache_HBase''}','N','Y','Y','N'); -INSERT INTO entities VALUES(8,'Apache Hive',2,'{''qid'': ''Q4778914'', ''types'': [''Q341'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Apache_Hive''}','N','N','Y','Y'); -INSERT INTO entities VALUES(9,'Apache Kafka',2,'{''qid'': ''Q16235208'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/Apache_Kafka''}','N','N','Y','Y'); -INSERT INTO entities VALUES(10,'Apache ServiceMix',2,'{''qid'': ''Q773212'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_ServiceMix''}','N','N','Y','Y'); -INSERT INTO entities VALUES(11,'Apache Solr',2,'{''qid'': ''Q2858103'', ''types'': [''Q19541'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_Solr''}','N','N','Y','Y'); -INSERT INTO entities VALUES(12,'Apache Subversion',2,'{''qid'': ''Q46794'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Apache_Subversion''}','N','N','Y','Y'); -INSERT INTO entities VALUES(13,'Application Development Facility (ADF)',2,'{''qid'': ''Q5285237'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Django_Software_Foundation''}','N','Y','Y','N'); -INSERT INTO entities VALUES(14,'Asterisk',2,'{''qid'': ''Q622754'', ''types'': [''Q1978634''], ''url'': ''http://dbpedia.org/resource/Asterisk_(PBX)''}','N','N','Y','Y'); -INSERT INTO entities VALUES(15,'Automic Job Scheduler',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(16,'Autosys',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(17,'Bluebeam',2,'{''qid'': ''Q4930191'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Bluebeam_Software,_Inc.''}','Y','N','N','N'); -INSERT INTO entities VALUES(18,'BMC Control-M',2,'{''qid'': ''Q4835944'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q4835944''}','Y','N','N','N'); -INSERT INTO entities VALUES(19,'BMC Identity Management',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(20,'Borland Database Engine (BDE)',2,'{''qid'': ''Q893888'', ''types'': [''Q537993''], ''url'': ''http://dbpedia.org/resource/Borland_Database_Engine''}','N','N','Y','N'); -INSERT INTO entities VALUES(21,'Business Intelligence and Reporting Tools (BIRT)',2,'{''qid'': ''Q796007'', ''types'': [''Q341'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/BIRT_Project''}','N','N','Y','Y'); -INSERT INTO entities VALUES(22,'CA Gen',2,'{''qid'': ''Q2125673'', ''types'': [''Q28059995''], ''url'': ''http://dbpedia.org/resource/CA_Gen''}','N','N','Y','N'); -INSERT INTO entities VALUES(23,'CA Introscope',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(24,'CA-Panvalet',2,'{''qid'': ''Q17073931'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Panvalet''}','Y','Y','N','N'); -INSERT INTO entities VALUES(25,'CA-TELON',2,'{''qid'': ''Q2383975'', ''types'': [''Q238137''], ''url'': ''http://dbpedia.org/resource/CA-Telon''}','Y','Y','N','N'); -INSERT INTO entities VALUES(26,'Casegen',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(27,'Chef Automate',2,'{''qid'': ''Q24479'', ''types'': [''Q29032804''], ''url'': ''http://dbpedia.org/resource/Chef_(software)''}','N','N','Y','Y'); -INSERT INTO entities VALUES(28,'Cisco AMP for Endpoints',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(29,'CiscoWorks LAN Management Solution (LMS)',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(30,'Citrix Virtual Apps and Desktops',2,'{''qid'': ''Q1093482'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/XenApp''}','Y','N','N','N'); -INSERT INTO entities VALUES(31,'Citrix ADC CPX',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(32,'Citrix Provisioning',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(33,'Clarify|*',2,'{''qid'': ''Q17105097'', ''types'': [''Q1058914''], ''url'': ''http://dbpedia.org/resource/Clarify_Op3nvoice''}','Y','Y','N','N'); -INSERT INTO entities VALUES(34,'Clarity LIMS',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(35,'LabWare LIMS',2,'{''qid'': ''Q1798149'', ''types'': [''Q121182''], ''url'': ''http://dbpedia.org/resource/Laboratory_information_management_system''}','Y','N','N','N'); -INSERT INTO entities VALUES(36,'Cognos',2,'{''qid'': ''Q1107048'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Cognos''}','N','N','Y','N'); -INSERT INTO entities VALUES(37,'Coldfusion',2,'{''qid'': ''Q468446'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Adobe_ColdFusion''}','Y','N','N','N'); -INSERT INTO entities VALUES(38,'ConceptWave',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(39,'CONNAPI',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(40,'Connect Direct',2,'{''qid'': ''Q369085'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Connect:Direct''}','Y','N','N','N'); -INSERT INTO entities VALUES(41,'Cornerstone software',2,'{''qid'': ''Q5171657'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Cornerstone_(software)''}','Y','N','N','N'); -INSERT INTO entities VALUES(42,'Crystal Reports',2,'{''qid'': ''Q1142403'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/Crystal_Reports''}','Y','N','N','N'); -INSERT INTO entities VALUES(43,'DB2',2,'{''qid'': ''Q431195'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/IBM_DB2''}','N','N','Y','N'); -INSERT INTO entities VALUES(44,'Documentum Content Server',2,'{''qid'': ''Q5287684'', ''types'': [''Q247423'', ''Q1344636''], ''url'': ''http://dbpedia.org/resource/Documentum''}','Y','N','N','N'); -INSERT INTO entities VALUES(45,'Drupal',2,'{''qid'': ''Q170855'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/Drupal''}','N','N','Y','Y'); -INSERT INTO entities VALUES(46,'Eclipse|*',2,'{''qid'': ''Q82268'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/Eclipse_(software)''}','N','N','Y','Y'); -INSERT INTO entities VALUES(47,'Elastic (ELK) Stack',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(48,'ETAP License Manager (LM)',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(49,'ExamDiff',2,'{''qid'': ''Q5419269'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ExamDiff_Pro''}','Y','N','N','N'); -INSERT INTO entities VALUES(50,'F5 Secure Web Gateway Services',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(51,'FileMaker Pro',2,'{''qid'': ''Q1982831'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/FileMaker''}','Y','N','N','N'); -INSERT INTO entities VALUES(52,'FlexNet Manager Suite',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(53,'FTP Voyager',2,'{''qid'': ''Q1389773'', ''types'': [''Q3503189'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/FTP_Voyager''}','Y','N','N','N'); -INSERT INTO entities VALUES(54,'Genymotion',2,'{''qid'': ''Q105239167'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105239167''}','Y','N','N','N'); -INSERT INTO entities VALUES(55,'Google Chrome',2,'{''qid'': ''Q777'', ''types'': [''Q6368''], ''url'': ''http://dbpedia.org/resource/Google_Chrome''}','N','N','Y','N'); -INSERT INTO entities VALUES(56,'Greenplum DB',2,'{''qid'': ''Q4039706'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Greenplum''}','N','N','Y','N'); -INSERT INTO entities VALUES(57,'Hadoop',2,'{''qid'': ''Q29120'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Apache_Hadoop''}','N','N','Y','Y'); -INSERT INTO entities VALUES(58,'HP aC++ compiler',2,'{''qid'': ''Q5635754'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/HP_aC++''}','Y','N','N','N'); -INSERT INTO entities VALUES(59,'HP C/ANSI C compiler',2,'{''qid'': ''Q4045464'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Norcroft_C_compiler''}','Y','N','N','N'); -INSERT INTO entities VALUES(60,'HP Operations Orchestration (HPOO)',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(61,'HP Server Automation (HPSA)',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(62,'IBM BigFix Platform|*',2,'{''qid'': ''Q7810432'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_BigFix''}','Y','N','N','N'); -INSERT INTO entities VALUES(63,'IBM Business Monitor',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(64,'IBM Business Process Manager',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(65,'IBM Content Manager OnDemand (CMOD)',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(66,'IBM FileNet P8 Platform',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(67,'IBM InfoSphere DataStage',2,'{''qid'': ''Q5968866'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_InfoSphere_DataStage''}','Y','N','N','N'); -INSERT INTO entities VALUES(68,'IBM Integration Bus|*',2,'{''qid'': ''Q5969139'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Integration_Bus''}','N','N','Y','N'); -INSERT INTO entities VALUES(69,'IBM License Metric Tool',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(70,'IBM Maximo',2,'{''qid'': ''Q55622518'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Maximo_(MRO)''}','N','N','Y','N'); -INSERT INTO entities VALUES(71,'IBM Migration Utility',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(72,'IBM Mobile Foundation',2,'{''qid'': ''Q25324136'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_MobileFirst''}','Y','N','N','N'); -INSERT INTO entities VALUES(73,'IBM Operational Decision Manager (ODM)',2,'{''qid'': ''Q16928000'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Operational_Decision_Management''}','N','N','Y','N'); -INSERT INTO entities VALUES(76,'IBM Tivoli Composite Application Manager',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(77,'IBM Tivoli Monitoring',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(79,'IBM Tivoli Workload Scheduler (TWS)',2,'{''qid'': ''None'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Workload_Scheduler''}','N','N','Y','N'); -INSERT INTO entities VALUES(80,'IBM WebSphere Business Integration Adaptor',2,'{''qid'': ''Q5969131'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Adapters''}','Y','N','N','N'); -INSERT INTO entities VALUES(81,'IBM Websphere MQ',2,'{''qid'': ''Q528294'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_MQ''}','N','Y','Y','N'); -INSERT INTO entities VALUES(82,'IBM WebSphere MQ Telemetry',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(83,'IBM WebSphere Transformation Extender (WTX)',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(84,'IMS DB',2,'{''qid'': ''Q1571984'', ''types'': [''Q871236'', ''Q4388320'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/IBM_Information_Management_System''}','N','N','Y','N'); -INSERT INTO entities VALUES(85,'Info-ZIP',2,'{''qid'': ''Q1662431'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Info-ZIP''}','Y','N','N','N'); -INSERT INTO entities VALUES(86,'Infobright Community Edition (ICE)',2,'{''qid'': ''Q3150805'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Infobright''}','N','N','Y','N'); -INSERT INTO entities VALUES(87,'Informatica PowerCenter',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(88,'Ingres',2,'{''qid'': ''Q60463'', ''types'': [''Q1130645'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Ingres_(database)''}','N','N','Y','N'); -INSERT INTO entities VALUES(89,'JBoss|JBoss Enterprise Service Bus',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(90,'Jenkins',2,'{''qid'': ''Q7491312'', ''types'': [''Q16947796''], ''url'': ''http://dbpedia.org/resource/Jenkins_(software)''}','N','N','Y','N'); -INSERT INTO entities VALUES(91,'joinIT',2,'{}','N','N','Y*','N'); -INSERT INTO entities VALUES(92,'LifeFlow',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(93,'Lotus Notes',2,'{''qid'': ''Q60198'', ''types'': [''Q474157'', ''Q28601953'', ''Q131093''], ''url'': ''http://dbpedia.org/resource/IBM_Notes''}','Y','N','N','N'); -INSERT INTO entities VALUES(94,'MaaS360',2,'{''qid'': ''Q39089630'', ''types'': [''None''], ''url'': ''None''}','Y','N','N','N'); -INSERT INTO entities VALUES(95,'Malwarebytes Anti-Malware',2,'{''qid'': ''Q1783235'', ''types'': [''Q13429867''], ''url'': ''http://dbpedia.org/resource/Malwarebytes_Anti-Malware''}','Y','N','N','N'); -INSERT INTO entities VALUES(96,'ManageEngine ADSelfService Plus',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(97,'MarkLogic DB',2,'{''qid'': ''Q6766381'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/MarkLogic''}','N','N','Y','N'); -INSERT INTO entities VALUES(98,'Memcached',2,'{''qid'': ''Q306661'', ''types'': [''Q165596'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Memcached''}','N','N','Y','Y'); -INSERT INTO entities VALUES(99,'Microsoft Access',2,'{''qid'': ''Q80689'', ''types'': [''Q218616'', ''Q176165'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_Access''}','Y','N','N','N'); -INSERT INTO entities VALUES(100,'Microsoft BizTalk Adapters for Host Systems',2,'{''qid'': ''Q904150'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_BizTalk_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(101,'Microsoft Dynamics AX',2,'{''qid'': ''Q675860'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_Dynamics_AX''}','N','N','Y','N'); -INSERT INTO entities VALUES(102,'Microsoft Endpoint Configuration Manager (SCCM)',2,'{''qid'': ''Q2061082'', ''types'': [''Q312466'', ''Q1371279''], ''url'': ''http://dbpedia.org/resource/System_Center_Configuration_Manager''}','Y','N','N','N'); -INSERT INTO entities VALUES(103,'Microsoft Excel',2,'{''qid'': ''Q11272'', ''types'': [''Q218616'', ''Q183197''], ''url'': ''http://dbpedia.org/resource/Microsoft_Excel''}','Y','N','N','N'); -INSERT INTO entities VALUES(104,'Microsoft Exchange Server|*',2,'{''qid'': ''Q223653'', ''types'': [''Q474157'', ''Q859477'', ''Q2933820''], ''url'': ''http://dbpedia.org/resource/Microsoft_Exchange_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(105,'Microsoft Forefront Identity Manager (FIM)',2,'{''qid'': ''Q5468182'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Forefront_Identity_Manager''}','Y','N','N','N'); -INSERT INTO entities VALUES(106,'Microsoft InfoPath',2,'{''qid'': ''Q706294'', ''types'': [''Q474157'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_InfoPath''}','Y','N','N','N'); -INSERT INTO entities VALUES(107,'Microsoft Internet Explorer',2,'{''qid'': ''Q1575'', ''types'': [''Q218616'', ''Q498267'', ''Q6368''], ''url'': ''http://dbpedia.org/resource/Internet_Explorer''}','Y','N','N','N'); -INSERT INTO entities VALUES(108,'Microsoft ISA Server',2,'{''qid'': ''Q632851'', ''types'': [''Q40056''], ''url'': ''http://dbpedia.org/resource/Microsoft_Forefront_Threat_Management_Gateway''}','Y','N','N','N'); -INSERT INTO entities VALUES(109,'Microsoft MQ',2,'{''qid'': ''Q1931595'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Microsoft_Message_Queuing''}','Y','N','N','N'); -INSERT INTO entities VALUES(110,'Microsoft System Center Endpoint Protection',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(111,'Microsoft Visual Studio',2,'{''qid'': ''Q134067'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/Microsoft_Visual_Studio''}','Y','N','N','N'); -INSERT INTO entities VALUES(112,'Microsoft Web Deploy',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(113,'Microsoft Web Farm Framework (WFF)',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(114,'Microsoft Web Platform Installer',2,'{''qid'': ''Q976637'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Web_Platform_Installer''}','Y','N','N','N'); -INSERT INTO entities VALUES(115,'Model Driven Workflow (MDW)',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(116,'MongoDB',2,'{''qid'': ''Q1165204'', ''types'': [''Q1235236'', ''Q176165'', ''Q82231''], ''url'': ''http://dbpedia.org/resource/MongoDB''}','N','N','Y','N'); -INSERT INTO entities VALUES(117,'Mozilla Firefox',2,'{''qid'': ''Q698'', ''types'': [''Q6368''], ''url'': ''http://dbpedia.org/resource/Firefox''}','N','N','Y','Y'); -INSERT INTO entities VALUES(118,'MQ Client',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(119,'MS Office 365',2,'{''qid'': ''Q775811'', ''types'': [''Q1254596'', ''Q26674207''], ''url'': ''http://dbpedia.org/resource/Office_365''}','Y','N','N','N'); -INSERT INTO entities VALUES(121,'MS SQL Server Compact',2,'{''qid'': ''Q1814028'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Compact''}','N','N','Y','N'); -INSERT INTO entities VALUES(122,'MySQL',2,'{''qid'': ''Q850'', ''types'': [''Q1371279'', ''Q1130645'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/MySQL''}','N','N','Y','Y'); -INSERT INTO entities VALUES(123,'Neo4j',2,'{''qid'': ''Q1628290'', ''types'': [''Q99510066'', ''Q218616'', ''Q595971'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Neo4j''}','N','N','Y','Y'); -INSERT INTO entities VALUES(124,'Nexus Repository OSS',2,'{}','N','Y','Y','N'); -INSERT INTO entities VALUES(125,'Nix package manager',2,'{''qid'': ''Q7041957'', ''types'': [''Q891055'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Nix_package_manager''}','N','N','Y','Y'); -INSERT INTO entities VALUES(126,'OpenLDAP',2,'{''qid'': ''Q682918'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/OpenLDAP''}','N','N','Y','Y'); -INSERT INTO entities VALUES(127,'OpenText Exstream',2,'{''qid'': ''Q5421776'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Exstream_Software''}','N','Y','Y','N'); -INSERT INTO entities VALUES(128,'OpenVPN',2,'{''qid'': ''Q509075'', ''types'': [''Q166142'', ''Q341''], ''url'': ''http://dbpedia.org/resource/OpenVPN''}','N','N','Y','Y'); -INSERT INTO entities VALUES(129,'Oracle Access Management',2,'{''qid'': ''Q7099276'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Identity_Management''}','Y','Y','N','N'); -INSERT INTO entities VALUES(130,'Oracle ADF',2,'{''qid'': ''Q1853309'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Development_Framework''}','Y','N','N','N'); -INSERT INTO entities VALUES(131,'Oracle APEX',2,'{''qid'': ''Q1908291'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Express''}','N','N','Y','N'); -INSERT INTO entities VALUES(132,'Oracle BI Publisher',2,'{''qid'': ''Q7099244'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_BI_Publisher''}','Y','N','N','N'); -INSERT INTO entities VALUES(133,'Oracle Business Intelligence',2,'{''qid'': ''Q7099251'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Business_Intelligence_Suite_Enterprise_Edition''}','Y','N','N','N'); -INSERT INTO entities VALUES(134,'Oracle Database|*',2,'{''qid'': ''Q185524'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/Oracle_Database''}','N','N','Y','N'); -INSERT INTO entities VALUES(135,'Oracle Designer',2,'{''qid'': ''Q7099261'', ''types'': [''Q28059995''], ''url'': ''http://dbpedia.org/resource/Oracle_Designer''}','N','Y','Y','N'); -INSERT INTO entities VALUES(136,'Oracle Enterprise Manager',2,'{''qid'': ''Q7099266'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Enterprise_Manager''}','Y','N','N','N'); -INSERT INTO entities VALUES(137,'Oracle Forms',2,'{''qid'': ''Q744707'', ''types'': [''Q756637''], ''url'': ''http://dbpedia.org/resource/Oracle_Forms''}','N','N','Y','N'); -INSERT INTO entities VALUES(138,'Oracle Hyperion|Hyperion Interactive Reporting',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(139,'Oracle Hyperion|Hyperion Planning',2,'{''qid'': ''Q5958168'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q5958168''}','Y','N','N','N'); -INSERT INTO entities VALUES(140,'Oracle Net Services',2,'{''qid'': ''Q7099283'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Net_Services''}','Y','Y','N','N'); -INSERT INTO entities VALUES(141,'Oracle Real Application Clusters (RAC)',2,'{''qid'': ''Q1418481'', ''types'': [''Q28057052''], ''url'': ''http://dbpedia.org/resource/Oracle_RAC''}','N','Y','Y','N'); -INSERT INTO entities VALUES(142,'Oracle Retail Point-of-Service',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(143,'Oracle Service Bus',2,'{''qid'': ''Q7099295'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Service_Bus''}','Y','N','N','N'); -INSERT INTO entities VALUES(144,'Oracle Smart View',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(145,'Oracle SOA Suite',2,'{''qid'': ''Q7099294'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_SOA_Suite''}','N','N','Y','N'); -INSERT INTO entities VALUES(146,'Oracle SQL Developer',2,'{''qid'': ''Q931351'', ''types'': [''Q13741'', ''Q47607''], ''url'': ''http://dbpedia.org/resource/Oracle_SQL_Developer''}','N','N','Y','N'); -INSERT INTO entities VALUES(147,'Oracle TimesTen In-Memory Database',2,'{''qid'': ''Q3991449'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/TimesTen''}','Y','N','N','N'); -INSERT INTO entities VALUES(148,'Oracle Warehouse Builder (OWB)',2,'{''qid'': ''Q3354986'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Warehouse_Builder''}','Y','N','N','N'); -INSERT INTO entities VALUES(149,'Orbix',2,'{''qid'': ''Q4045955'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Orbix_(software)''}','Y','N','N','N'); -INSERT INTO entities VALUES(150,'Pentaho',2,'{''qid'': ''Q644841'', ''types'': [''Q341'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Pentaho''}','N','N','Y','Y'); -INSERT INTO entities VALUES(151,'PeopleSoft',2,'{''qid'': ''Q1928814'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/PeopleSoft''}','N','Y','Y','N'); -INSERT INTO entities VALUES(152,'Perkin Elmer Informatics (PKI)',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(153,'Pervasive PSQL',2,'{''qid'': ''Q7171236'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Pervasive_PSQL''}','Y','N','N','N'); -INSERT INTO entities VALUES(154,'PIPE-FLO',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(155,'PKZIP',2,'{''qid'': ''Q1602149'', ''types'': [''Q25303924''], ''url'': ''http://dbpedia.org/resource/PKZIP''}','Y','N','N','N'); -INSERT INTO entities VALUES(156,'Planview',2,'{''qid'': ''Q19903554'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Planview''}','Y','N','N','N'); -INSERT INTO entities VALUES(157,'PostgreSQL',2,'{''qid'': ''Q192490'', ''types'': [''Q341'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/PostgreSQL''}','N','N','Y','Y'); -INSERT INTO entities VALUES(158,'Powerbuilder',2,'{''qid'': ''Q580882'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/PowerBuilder''}','Y','N','N','N'); -INSERT INTO entities VALUES(159,'Primavera P6',2,'{''qid'': ''Q2111327'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Primavera_(software)''}','Y','N','N','N'); -INSERT INTO entities VALUES(160,'Pro*COBOL',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(161,'ProjectWise',2,'{''qid'': ''Q7248950'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/ProjectWise''}','Y','N','N','N'); -INSERT INTO entities VALUES(162,'ProjectWise Web Server',2,'{''qid'': ''Q7248950'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/ProjectWise''}','Y','N','N','N'); -INSERT INTO entities VALUES(163,'PVCS Version Manager',2,'{''qid'': ''Q3359906'', ''types'': [''Q3257930'', ''Q55680343''], ''url'': ''http://dbpedia.org/resource/PVCS''}','Y','N','N','N'); -INSERT INTO entities VALUES(164,'QlikView',2,'{''qid'': ''Q105859488'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105859488''}','Y','N','N','N'); -INSERT INTO entities VALUES(165,'RabbitMQ',2,'{''qid'': ''Q2081413'', ''types'': [''Q6821765'', ''Q341''], ''url'': ''http://dbpedia.org/resource/RabbitMQ''}','N','N','Y','Y'); -INSERT INTO entities VALUES(166,'Rational ClearCase',2,'{''qid'': ''Q593863'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Rational_ClearCase''}','Y','N','N','N'); -INSERT INTO entities VALUES(167,'Rational ClearQuest',2,'{''qid'': ''Q1493633'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Rational_ClearQuest''}','Y','N','N','N'); -INSERT INTO entities VALUES(168,'Redis',2,'{''qid'': ''Q2136322'', ''types'': [''Q82231''], ''url'': ''http://dbpedia.org/resource/Redis''}','N','N','Y','Y'); -INSERT INTO entities VALUES(169,'Remedy',2,'{''qid'': ''Q7311616'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Remedy_Debugger''}','N','N','Y','N'); -INSERT INTO entities VALUES(170,'Riak',2,'{''qid'': ''Q2328712'', ''types'': [''Q506883'', ''Q20706915'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Riak''}','N','N','Y','N'); -INSERT INTO entities VALUES(171,'RightFax',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(172,'Rumba',2,'{''qid'': ''Q21684437'', ''types'': [''Q1544863'', ''Q3328778''], ''url'': ''http://dbpedia.org/resource/Rumba''}','N','N','Y','N'); -INSERT INTO entities VALUES(173,'SAP BusinessObjects BI server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(174,'SAP ERP|*',2,'{''qid'': ''Q167533'', ''types'': [''Q28057030''], ''url'': ''http://dbpedia.org/resource/SAP_ERP''}','Y','N','N','N'); -INSERT INTO entities VALUES(175,'SAP HANA DB',2,'{''qid'': ''Q951374'', ''types'': [''Q1572823'', ''Q166142'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/SAP_HANA''}','N','N','Y','N'); -INSERT INTO entities VALUES(176,'SAP MaxDB',2,'{''qid'': ''Q2143312'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/MaxDB''}','N','N','Y','N'); -INSERT INTO entities VALUES(177,'SAP NetWeaver Business Warehouse',2,'{''qid'': ''Q1269377'', ''types'': [''Q193351''], ''url'': ''http://dbpedia.org/resource/SAP_NetWeaver_Business_Warehouse''}','Y','N','N','N'); -INSERT INTO entities VALUES(178,'SAP SQL Anywhere',2,'{''qid'': ''Q2247564'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQL_Anywhere''}','N','N','Y','N'); -INSERT INTO entities VALUES(179,'SAP Web Dynpro',2,'{''qid'': ''Q1804792'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Web_Dynpro''}','Y','Y','N','N'); -INSERT INTO entities VALUES(180,'Sentry',2,'{''qid'': ''Q3478803'', ''types'': [''Q58778''], ''url'': ''http://dbpedia.org/resource/Sentry_(monitoring_system)''}','N','Y','Y','N'); -INSERT INTO entities VALUES(182,'Siebel',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(183,'SNA Manager',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(184,'SnagIt',2,'{''qid'': ''Q1776235'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Snagit''}','Y','N','N','N'); -INSERT INTO entities VALUES(185,'solidDB',2,'{''qid'': ''Q7557804'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SolidDB''}','Y','N','N','N'); -INSERT INTO entities VALUES(186,'SonarQube',2,'{''qid'': ''Q541691'', ''types'': [''Q28061130'', ''Q341''], ''url'': ''http://dbpedia.org/resource/SonarQube''}','N','Y','Y','Y'); -INSERT INTO entities VALUES(187,'SpaceMonger',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(188,'Splunk',2,'{''qid'': ''Q1835753'', ''types'': [''Q1058914'', ''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Splunk''}','N','N','Y','N'); -INSERT INTO entities VALUES(189,'SQLIO',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(190,'Sybase SQL Server|*',2,'{''qid'': ''Q2576415'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/Adaptive_Server_Enterprise''}','N','Y','Y','N'); -INSERT INTO entities VALUES(191,'Syncsort',2,'{''qid'': ''Q7662279'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Syncsort''}','Y','N','N','N'); -INSERT INTO entities VALUES(193,'Sysinternal Tools|*',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(194,'Sysinternal Tools|AccessEnum',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(195,'Sysinternal Tools|ClockRes',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(196,'Sysinternal Tools|Coreinfo',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(197,'Sysinternal Tools|DiskExt',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(198,'Sysinternal Tools|DiskMon',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(199,'Sysinternal Tools|Hex2dec',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(200,'Sysinternal Tools|Junction',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(201,'Sysinternal Tools|LDMDump',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(202,'Sysinternal Tools|LoadOrder',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(203,'Sysinternal Tools|PipeList',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(204,'Sysinternal Tools|Process Explorer',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(205,'Sysinternal Tools|PsKill',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(206,'Sysinternal Tools|PsPasswd',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(207,'Sysinternal Tools|SDelete',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(208,'Sysinternal Tools|ShareEnum',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(209,'Sysinternal Tools|Sync',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(210,'Sysinternal Tools|TCPView',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(211,'Sysinternal Tools|VMMap',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(212,'Sysinternal Tools|Whois',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(213,'Tableau',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(214,'TCPLink Enterprise Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(215,'Teradata',2,'{''qid'': ''Q430745'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Teradata''}','N','N','Y','N'); -INSERT INTO entities VALUES(216,'Teradata QS Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(217,'TIBCO Business Works (BW)|*',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(218,'TIBCO InConcert',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(219,'TIBCO Rendezvous',2,'{''qid'': ''Q11198794'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/TIBCO_Rendezvous''}','N','N','Y','N'); -INSERT INTO entities VALUES(220,'Tivoli Access Manager (TAM)',2,'{''qid'': ''None'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Access_Manager''}','N','N','Y','N'); -INSERT INTO entities VALUES(221,'TortoiseCVS',2,'{''qid'': ''Q2883113'', ''types'': [''Q166142'', ''Q341''], ''url'': ''http://dbpedia.org/resource/TortoiseCVS''}','Y','N','N','Y'); -INSERT INTO entities VALUES(222,'TortoiseSVN',2,'{''qid'': ''Q1062467'', ''types'': [''Q166142'', ''Q1130645''], ''url'': ''http://dbpedia.org/resource/TortoiseSVN''}','Y','N','N','N'); -INSERT INTO entities VALUES(223,'TSO/ISPF',2,'{''qid'': ''Q679906'', ''types'': [''Q131212''], ''url'': ''http://dbpedia.org/resource/ISPF''}','Y','N','N','N'); -INSERT INTO entities VALUES(224,'TWS zCentric',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(225,'Uniface',2,'{''qid'': ''Q2143563'', ''types'': [''Q9143'', ''Q13741'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/Uniface_(programming_language)''}','N','N','Y','N'); -INSERT INTO entities VALUES(226,'ViewNow X Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(227,'Virtual I/O Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(228,'Visibroker',2,'{''qid'': ''Q7936097'', ''types'': [''Q146768''], ''url'': ''http://dbpedia.org/resource/Visibroker''}','Y','N','N','N'); -INSERT INTO entities VALUES(229,'VMware Solution Exchange Marketplace (VSX)',2,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(230,'VMware Tools',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(231,'VMware vCenter',2,'{''qid'': ''Q55636858'', ''types'': [''Q218616'', ''Q1371279''], ''url'': ''None''}','N','N','Y','N'); -INSERT INTO entities VALUES(232,'WebFOCUS',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(233,'WebLogic Integration',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(234,'WebSphere Commerce Suite (WCS)',2,'{''qid'': ''Q5969126'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebSphere_Commerce''}','Y','N','N','N'); -INSERT INTO entities VALUES(235,'WebSphere Message Broker',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(236,'Wherescape Red',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(237,'Windchill',2,'{''qid'': ''Q8024086'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Windchill_(software)''}','Y','N','N','N'); -INSERT INTO entities VALUES(238,'Windows Indexing Service',2,'{''qid'': ''Q575974'', ''types'': [''Q1138815''], ''url'': ''http://dbpedia.org/resource/Indexing_Service''}','Y','N','N','N'); -INSERT INTO entities VALUES(239,'Windows Terminal Server (WTS)',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(240,'WingArc SVF',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(241,'WinMerge',2,'{''qid'': ''Q250602'', ''types'': [''Q341'', ''Q2990323''], ''url'': ''http://dbpedia.org/resource/WinMerge''}','N','N','Y','Y'); -INSERT INTO entities VALUES(242,'WinRAR',2,'{''qid'': ''Q242747'', ''types'': [''Q25303924'', ''Q185534''], ''url'': ''http://dbpedia.org/resource/WinRAR''}','Y','N','N','N'); -INSERT INTO entities VALUES(243,'WinSCP',2,'{''qid'': ''Q1160381'', ''types'': [''Q3503189'', ''Q2158576'', ''Q341''], ''url'': ''http://dbpedia.org/resource/WinSCP''}','Y','N','N','N'); -INSERT INTO entities VALUES(244,'Wise Package Studio',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(245,'Wordpress',2,'{''qid'': ''Q13166'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/WordPress''}','N','N','Y','Y'); -INSERT INTO entities VALUES(246,'XAMPP',2,'{''qid'': ''Q324073'', ''types'': [''Q100528793'', ''Q341''], ''url'': ''http://dbpedia.org/resource/XAMPP''}','N','N','Y','Y'); -INSERT INTO entities VALUES(247,'ZAP BI',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(248,'ZeroMQ',2,'{''qid'': ''Q8079189'', ''types'': [''Q188860'', ''Q341''], ''url'': ''http://dbpedia.org/resource/ZeroMQ''}','N','N','Y','Y'); -INSERT INTO entities VALUES(249,'Zerto Virtual Replication',2,'{''qid'': ''Q8069662'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Zerto''}','N','N','Y','N'); -INSERT INTO entities VALUES(250,'IBM PowerHA',2,'{''qid'': ''Q10850880'', ''types'': [''Q28057052'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_High_Availability_Cluster_Multiprocessing''}','Y','N','N','N'); -INSERT INTO entities VALUES(251,'Tivoli Netcool/OMNIbus',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(252,'IBM ILOG Views',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(253,'IBM ILOG CPLEX',2,'{''qid'': ''Q2372381'', ''types'': [''Q74086777''], ''url'': ''http://dbpedia.org/resource/CPLEX''}','Y','N','N','N'); -INSERT INTO entities VALUES(254,'IBM ILOG Jviews',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(255,'IBM ILOG Elixir',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(256,'IBM ILOG Supply Chain Apps',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(257,'ILOG Solver',2,'{''qid'': ''Q2011386'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/ILOG''}','Y','N','N','N'); -INSERT INTO entities VALUES(258,'SQLite',2,'{''qid'': ''Q319417'', ''types'': [''Q35687379'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQLite''}','N','N','Y','Y'); -INSERT INTO entities VALUES(259,'Apache HTTP Server',8,'{''qid'': ''Q11354'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/Apache_HTTP_Server''}','N','N','Y','Y'); -INSERT INTO entities VALUES(260,'Apache Tomcat',8,'{''qid'': ''Q507430'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Apache_Tomcat''}','N','N','Y','Y'); -INSERT INTO entities VALUES(261,'ArcGIS Server',8,'{''qid'': ''Q4784987'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ArcGIS_Server''}','N','N','Y','N'); -INSERT INTO entities VALUES(263,'GlassFish',8,'{''qid'': ''Q68847'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/GlassFish''}','N','N','Y','N'); -INSERT INTO entities VALUES(264,'HAProxy',8,'{''qid'': ''Q5628948'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/HAProxy''}','N','N','Y','Y'); -INSERT INTO entities VALUES(265,'IBM HTTP Server',8,'{''qid'': ''Q821668'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/IBM_HTTP_Server''}','N','N','Y','N'); -INSERT INTO entities VALUES(268,'JBoss|*',8,'{''qid'': ''Q485593'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/JBoss_(company)''}','N','N','Y','N'); -INSERT INTO entities VALUES(269,'Kitura',8,'{''qid'': ''Q28130427'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Kitura''}','N','N','Y','N'); -INSERT INTO entities VALUES(270,'Lotus Domino',8,'{''qid'': ''Q1069529'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q1069529''}','Y','N','N','N'); -INSERT INTO entities VALUES(271,'Lucee',8,'{''qid'': ''Q105180640'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Lucee''}','N','N','Y','Y'); -INSERT INTO entities VALUES(272,'Netscape Application Server (NAS)',8,'{''qid'': ''Q7000305'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Netscape_Application_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(273,'Netscape Enterprise Server (NES)',8,'{''qid'': ''Q478430'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q478430''}','Y','N','N','N'); -INSERT INTO entities VALUES(274,'Nginx',8,'{''qid'': ''Q306144'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/Nginx''}','N','N','Y','Y'); -INSERT INTO entities VALUES(276,'Oracle WebCenter Content Server|*',8,'{''qid'': ''Q2309159'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/Oracle_WebCenter''}','Y','N','N','N'); -INSERT INTO entities VALUES(277,'Pivotal tc Server',8,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(278,'Resin Web Server',8,'{''qid'': ''Q2145742'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Resin_(software)''}','N','N','Y','Y'); -INSERT INTO entities VALUES(279,'SAP NetWeaver App Server|*',8,'{''qid'': ''Q2204924'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/SAP_NetWeaver''}','Y','N','N','N'); -INSERT INTO entities VALUES(280,'Spark',8,'{''qid'': ''Q20712258'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Spark_(software)''}','N','N','Y','N'); -INSERT INTO entities VALUES(281,'Oracle iPlanet Web Server',8,'{''qid'': ''Q1225115'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_iPlanet_Web_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(282,'UltiDev Web Server Pro (UWS)',8,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(283,'webMethods Integration Server',8,'{''qid'': ''Q7978461'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebMethods_Integration_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(284,'Websphere Application Server (WAS)',8,'{''qid'': ''Q81612'', ''types'': [''Q1330336'', ''Q71550''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Application_Server''}','N','N','Y','N'); -INSERT INTO entities VALUES(285,'WebSphere Liberty',8,'{''qid'': ''Q2536917'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q2536917''}','N','N','Y','N'); -INSERT INTO entities VALUES(286,'WebSphere Portal Server',8,'{''qid'': ''Q4053022'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebSphere_Portal''}','N','N','Y','N'); -INSERT INTO entities VALUES(287,'Websphere Process Server',8,'{''qid'': ''Q5969143'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Process_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(289,'Oracle Real-Time Decisions (RTD)',8,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(290,'CA API Gateway',4,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(291,'Citrix ADC SDX',4,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(292,'Citrix ADC MPX',4,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(293,'HP Nonstop',4,'{''qid'': ''Q826798'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/NonStop_(server_computers)''}','Y','N','N','N'); -INSERT INTO entities VALUES(294,'IBM DataPower Gateway',4,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(295,'IBM Power Systems',4,'{''qid'': ''Q2040857'', ''types'': [''Q10929058''], ''url'': ''http://dbpedia.org/resource/IBM_Power_Systems''}','Y','N','N','N'); -INSERT INTO entities VALUES(296,'Intel Xeon Processor',4,'{''qid'': ''Q656154'', ''types'': [''Q431289'', ''Q12047070''], ''url'': ''http://dbpedia.org/resource/Xeon''}','Y','N','N','N'); -INSERT INTO entities VALUES(297,'Net Optics Taps',4,'{''qid'': ''Q17114213'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Net_Optics''}','Y','N','N','N'); -INSERT INTO entities VALUES(298,'Oracle Exadata',4,'{''qid'': ''Q4038419'', ''types'': [''Q68''], ''url'': ''http://dbpedia.org/resource/Oracle_Exadata''}','Y','N','N','N'); -INSERT INTO entities VALUES(299,'AutoIt',9,'{''qid'': ''Q784845'', ''types'': [''Q187432'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/AutoIt''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(300,'AWK',9,'{''qid'': ''Q213970'', ''types'': [''Q1418502'', ''Q187432'', ''Q28919945'', ''Q18343316'', ''Q287472''], ''url'': ''http://dbpedia.org/resource/AWK''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(301,'BASIC',9,'{''qid'': ''Q42979'', ''types'': [''Q79872'', ''Q1418502'', ''Q28922854'', ''Q9143'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/BASIC''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(302,'Brainscript',9,'{}','Y','N','N','N/A'); -INSERT INTO entities VALUES(303,'C',9,'{''qid'': ''Q15777'', ''types'': [''Q28922885'', ''Q28920117'', ''Q9143'', ''Q21562092'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C_(programming_language)''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(306,'C++|Visual C++',9,'{''qid'': ''Q847296'', ''types'': [''Q13741'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_C++''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(307,'Cascading Style Sheets (CSS)|*',9,'{''qid'': ''Q46441'', ''types'': [''Q1029123''], ''url'': ''http://dbpedia.org/resource/Cascading_Style_Sheets''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(308,'Clipper',9,'{''qid'': ''Q834358'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Clipper_(programming_language)''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(309,'CLIST',9,'{''qid'': ''Q579880'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/CLIST''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(311,'ColdFusion Markup Language (CFML)',9,'{''qid'': ''Q2524362'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ColdFusion_Markup_Language''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(312,'Data Language Interface (DL/I)',9,'{''qid'': ''Q2299300'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Data_Language_Interface''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(313,'Delphi',9,'{''qid'': ''Q487378'', ''types'': [''Q9143'', ''Q218616'', ''Q13741''], ''url'': ''http://dbpedia.org/resource/Delphi_(programming_language)''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(314,'Easytrieve',9,'{''qid'': ''Q1278381'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Easytrieve''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(315,'Expect',9,'{''qid'': ''Q2642029'', ''types'': [''Q9143'', ''Q28937412'', ''Q4826135'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Expect''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(316,'eXtensible HyperText Markup Language (XHTML)',9,'{''qid'': ''Q166074'', ''types'': [''Q20155966'', ''Q317623'', ''Q37045''], ''url'': ''http://dbpedia.org/resource/XHTML''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(318,'Extensible Markup Language (XML)|MSXML',9,'{''qid'': ''Q1133470'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/MSXML''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(319,'Extensible Stylesheet Language (XSL)',9,'{''qid'': ''Q32061'', ''types'': [''Q1029123'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/XSL''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(320,'Extensible Stylesheet Language Transformations (XLST)',9,'{''qid'': ''Q32110'', ''types'': [''Q2661442'', ''Q9143'', ''Q1144882'', ''Q3217190''], ''url'': ''http://dbpedia.org/resource/XSLT''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(321,'FOCUS',9,'{''qid'': ''Q5426833'', ''types'': [''Q238137''], ''url'': ''http://dbpedia.org/resource/FOCUS''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(322,'Fortran',9,'{''qid'': ''Q83303'', ''types'': [''Q28923026'', ''Q28922885'', ''Q899523'', ''Q28920117'', ''Q9143'', ''Q28920142'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Fortran''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(323,'Go',9,'{''qid'': ''Q37227'', ''types'': [''Q12772052'', ''Q28922885'', ''Q899523'', ''Q28920117'', ''Q9143'', ''Q28919943'', ''Q21562092'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/Go_(programming_language)''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(324,'GraphQL',9,'{''qid'': ''Q25104949'', ''types'': [''Q557770'', ''Q9143'', ''Q60551191''], ''url'': ''http://dbpedia.org/resource/GraphQL''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(325,'Groovy',9,'{''qid'': ''Q16886826'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Skeevy''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(326,'HiveQL',9,'{}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(327,'Hypertext Markup Language (HTML)',9,'{''qid'': ''Q8811'', ''types'': [''Q2661442'', ''Q17537576'', ''Q37045'', ''Q235557'', ''Q20202982''], ''url'': ''http://dbpedia.org/resource/HTML''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(328,'IBM High Level Assembler (HLASM)',9,'{''qid'': ''Q4039976'', ''types'': [''Q6470767''], ''url'': ''http://dbpedia.org/resource/IBM_High_Level_Assembler''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(329,'IBM i Control Language (CL)',9,'{''qid'': ''Q263490'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/IBM_i_Control_Language''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(330,'IBM Informix-4GL',9,'{''qid'': ''Q2816938'', ''types'': [''Q9143'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/IBM_Informix-4GL''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(333,'Java|Java Enterprise Edition (Java EE)',9,'{''qid'': ''Q193247'', ''types'': [''Q1330336'', ''Q27493'', ''Q241317''], ''url'': ''http://dbpedia.org/resource/Java_Platform,_Enterprise_Edition''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(334,'Java|Java Standard Edition (Java SE)',9,'{''qid'': ''Q747478'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Java_Platform,_Standard_Edition''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(335,'Java|JavaServer Pages (JSP)',9,'{''qid'': ''Q183169'', ''types'': [''Q351507'', ''Q20819677'', ''Q1650567'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/JavaServer_Pages''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(336,'Java|JavaServer Pages (JSP)|Scriptlets',9,'{''qid'': ''Q3476475'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Scriptlet''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(338,'JCL',9,'{''qid'': ''Q1505372'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Job_Control_Language''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(339,'Job Information Language (JIL)',9,'{}','Y','N','N','N/A'); -INSERT INTO entities VALUES(340,'JScript',9,'{''qid'': ''Q553514'', ''types'': [''Q4117406''], ''url'': ''http://dbpedia.org/resource/JScript''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(341,'Lisp',9,'{''qid'': ''Q132874'', ''types'': [''Q12772052'', ''Q28922885'', ''Q3839507'', ''Q28922887'', ''Q28922893'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Lisp_(programming_language)''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(342,'Niakwa Programming Language (NPL)',9,'{''qid'': ''Q6955040'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/NPL_(programming_language)''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(343,'Objective C',9,'{''qid'': ''Q188531'', ''types'': [''Q12772052'', ''Q28922858'', ''Q899523'', ''Q9143'', ''Q28922893''], ''url'': ''http://dbpedia.org/resource/Objective-C''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(344,'OpenEdge ABL',9,'{''qid'': ''Q1963461'', ''types'': [''Q899523'', ''Q9143'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/OpenEdge_Advanced_Business_Language''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(346,'Pascal|Object Pascal',9,'{''qid'': ''Q633894'', ''types'': [''Q12772052'', ''Q9143'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/Object_Pascal''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(348,'Perl|ActivePerl',9,'{''qid'': ''Q4033363'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ActivePerl''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(349,'Perl|Rex',9,'{''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(351,'PL/I',9,'{''qid'': ''Q223433'', ''types'': [''Q9143'', ''Q28922885''], ''url'': ''http://dbpedia.org/resource/PL/I''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(352,'PL/SQL',9,'{''qid'': ''Q41574'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/PL/SQL''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(353,'PRO*C',9,'{''qid'': ''Q2111340'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Pro*C''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(355,'R',9,'{''qid'': ''Q206904'', ''types'': [''Q9143'', ''Q1004415''], ''url'': ''http://dbpedia.org/resource/R_(programming_language)''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(356,'Rexx',9,'{''qid'': ''Q685820'', ''types'': [''Q9143'', ''Q28937412'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Rexx''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(357,'RPG',9,'{''qid'': ''Q840543'', ''types'': [''Q9143'', ''Q28922885''], ''url'': ''http://dbpedia.org/resource/IBM_RPG''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(359,'Salesforce Object Query Language (SOQL)',9,'{}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(360,'SAS',9,'{''qid'': ''Q2003932'', ''types'': [''Q9143'', ''Q13199995'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/SAS_(software)''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(361,'Sass',9,'{''qid'': ''Q1572865'', ''types'': [''Q9143'', ''Q1029123'', ''Q50843083'', ''Q918333''], ''url'': ''http://dbpedia.org/resource/Sass_(stylesheet_language)''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(362,'Scala',9,'{''qid'': ''Q460584'', ''types'': [''Q12772052'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q56062429''], ''url'': ''http://dbpedia.org/resource/Scala_(programming_language)''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(363,'Smalltalk',9,'{''qid'': ''Q235086'', ''types'': [''Q9143'', ''Q28922858'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/Smalltalk''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(364,'Swift',9,'{''qid'': ''Q17118377'', ''types'': [''Q12772052'', ''Q28923023'', ''Q3839507'', ''Q899523'', ''Q341'', ''Q9143'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Swift_(programming_language)''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(365,'TCL',9,'{''qid'': ''Q5288'', ''types'': [''Q12772052'', ''Q28922885'', ''Q899523'', ''Q187432'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Tcl''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(366,'Transact-SQL',9,'{''qid'': ''Q1411245'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Transact-SQL''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(367,'TypeScript',9,'{''qid'': ''Q978185'', ''types'': [''Q9143'', ''Q341''], ''url'': ''http://dbpedia.org/resource/TypeScript''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(368,'VB.NET',9,'{''qid'': ''Q50077'', ''types'': [''Q2378'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_Basic_.NET''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(369,'VBScript',9,'{''qid'': ''Q13743'', ''types'': [''Q187432'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/VBScript''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(370,'Visual Basic',9,'{''qid'': ''Q2378'', ''types'': [''Q28922885'', ''Q899523'', ''Q9143'', ''Q42979'', ''Q28920813''], ''url'': ''http://dbpedia.org/resource/Visual_Basic''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(371,'Visual Basic for Applications (VBA)',9,'{''qid'': ''Q667566'', ''types'': [''Q2378'', ''Q9143'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_Basic_for_Applications''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(372,'Visual FoxPro',9,'{''qid'': ''Q753868'', ''types'': [''Q9143'', ''Q28922885'', ''Q899523'', ''Q13741''], ''url'': ''http://dbpedia.org/resource/Visual_FoxPro''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(373,'VoiceXML',9,'{''qid'': ''Q776038'', ''types'': [''Q20155966''], ''url'': ''http://dbpedia.org/resource/VoiceXML''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(374,'Xbase++',9,'{''qid'': ''Q1753410'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/XBase++''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(375,'Apache Lucene',12,'{''qid'': ''Q773196'', ''types'': [''Q188860'', ''Q19541'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Lucene''}','Y','N','N','N'); -INSERT INTO entities VALUES(376,'Apache Xerces',12,'{''qid'': ''Q629740'', ''types'': [''Q188860'', ''Q1130645''], ''url'': ''http://dbpedia.org/resource/Xerces''}','Y','N','N','N'); -INSERT INTO entities VALUES(377,'Cascading Style Sheets (CSS)|Bootstrap',12,'{''qid'': ''Q1195936'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Bootstrapping''}','Y','N','N','N'); -INSERT INTO entities VALUES(378,'Java|Apache Camel',12,'{''qid'': ''Q616626'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_Camel''}','N','N','Y','Y'); -INSERT INTO entities VALUES(379,'Java|Apache Commons BeanUtils',12,'{''qid'': ''Q28916245'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q28916245''}','Y','N','N','Y'); -INSERT INTO entities VALUES(380,'Java|Apache PDFBox',12,'{''qid'': ''Q17512395'', ''types'': [''Q21127166'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_PDFBox''}','Y','N','N','Y'); -INSERT INTO entities VALUES(381,'Java|Apache Velocity',12,'{''qid'': ''Q617156'', ''types'': [''Q351507'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Apache_Velocity''}','Y','N','N','N'); -INSERT INTO entities VALUES(382,'Java|EclipseLink',12,'{''qid'': ''Q897058'', ''types'': [''Q506883''], ''url'': ''http://dbpedia.org/resource/EclipseLink''}','Y','N','N','N'); -INSERT INTO entities VALUES(383,'Java|Enterprise JavaBeans (EJB)',12,'{''qid'': ''Q742961'', ''types'': [''Q20819677'', ''Q609588''], ''url'': ''http://dbpedia.org/resource/Enterprise_JavaBeans''}','Y','N','N','N'); -INSERT INTO entities VALUES(384,'Java|EZMorph',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(385,'Java|Google Web Toolkit (GWT)',12,'{''qid'': ''Q79578'', ''types'': [''Q2533324'', ''Q1193246'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Google_Web_Toolkit''}','Y','N','N','Y'); -INSERT INTO entities VALUES(386,'Java|Hibernate',12,'{''qid'': ''Q747866'', ''types'': [''Q1172354'', ''Q7170392'', ''Q58748'', ''Q5227234'', ''Q341'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Hibernate_(framework)''}','Y','N','N','Y'); -INSERT INTO entities VALUES(387,'Java|IBM SDK',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(388,'Java|Java Development Kit (JDK)',12,'{''qid'': ''Q741303'', ''types'': [''Q467707''], ''url'': ''http://dbpedia.org/resource/Java_Development_Kit''}','Y','N','N','N'); -INSERT INTO entities VALUES(389,'Java|Java Message Service (JMS)',12,'{''qid'': ''Q755515'', ''types'': [''Q20819677'', ''Q1092177''], ''url'': ''http://dbpedia.org/resource/Java_Message_Service''}','Y','N','N','N'); -INSERT INTO entities VALUES(390,'Java|Java Web Start',12,'{''qid'': ''Q33079'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Java_Web_Start''}','Y','N','N','N'); -INSERT INTO entities VALUES(391,'Java|JavaServer Faces (JSF)',12,'{''qid'': ''Q729427'', ''types'': [''Q1330336'', ''Q20819677''], ''url'': ''http://dbpedia.org/resource/JavaServer_Faces''}','Y','N','N','N'); -INSERT INTO entities VALUES(392,'Java|JDBC',12,'{''qid'': ''Q722772'', ''types'': [''Q1172354'', ''Q165194'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/Java_Database_Connectivity''}','Y','N','N','N'); -INSERT INTO entities VALUES(393,'Java|JRuby Core',12,'{''qid'': ''Q605718'', ''types'': [], ''url'': ''http://dbpedia.org/resource/JRuby''}','Y','N','N','Y'); -INSERT INTO entities VALUES(394,'Java|Log4j',12,'{''qid'': ''Q286923'', ''types'': [''Q22003134''], ''url'': ''http://dbpedia.org/resource/Log4j''}','Y','N','N','Y'); -INSERT INTO entities VALUES(395,'Java|Quartz',12,'{''qid'': ''Q2122405'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Quartz_(scheduler)''}','Y','N','N','Y'); -INSERT INTO entities VALUES(396,'Java|Remote Method Invocation (RMI)',12,'{''qid'': ''Q61902'', ''types'': [''Q1799072''], ''url'': ''http://dbpedia.org/resource/Java_remote_method_invocation''}','Y','N','N','N'); -INSERT INTO entities VALUES(397,'Java|Servlet',12,'{''qid'': ''Q341'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Free_software''}','Y','N','N','Y'); -INSERT INTO entities VALUES(398,'Java|Spring',12,'{''qid'': ''Q720314'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q720314''}','N','N','Y','Y'); -INSERT INTO entities VALUES(399,'Java|Spring|Spring Boot',12,'{''qid'': ''Q98731994'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q98731994''}','N','N','Y','Y'); -INSERT INTO entities VALUES(400,'Java|Spring|Spring Cloud Data Flow',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(401,'Java|Spring|Spring MVC',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(402,'Java|Struts',12,'{''qid'': ''Q900957'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Apache_Struts_1''}','Y','N','N','N'); -INSERT INTO entities VALUES(403,'Java|Swing',12,'{''qid'': ''Q859221'', ''types'': [''Q21127166''], ''url'': ''http://dbpedia.org/resource/Swing_(Java)''}','N','N','Y','N'); -INSERT INTO entities VALUES(404,'Java|Vaadin',12,'{''qid'': ''Q1400683'', ''types'': [''Q1330336'', ''Q386275'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Vaadin''}','Y','N','N','N'); -INSERT INTO entities VALUES(405,'JavaScript|AJAX',12,'{''qid'': ''Q134471'', ''types'': [''Q9143'', ''Q918270'', ''Q101244''], ''url'': ''http://dbpedia.org/resource/Ajax_(programming)''}','Y','N','N','N'); -INSERT INTO entities VALUES(406,'JavaScript|AngularJS',12,'{''qid'': ''Q2849803'', ''types'': [''Q188860'', ''Q783866'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/AngularJS''}','Y','N','N','N'); -INSERT INTO entities VALUES(407,'JavaScript|Draw2D',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(408,'JavaScript|Express.js',12,'{''qid'': ''Q16878131'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Express.js''}','Y','N','N','N'); -INSERT INTO entities VALUES(409,'JavaScript|Ext JS',12,'{''qid'': ''Q515393'', ''types'': [''Q1193246'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/Ext_JS''}','N','N','Y','N'); -INSERT INTO entities VALUES(410,'JavaScript|jqGrid',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(411,'JavaScript|JQuery',12,'{''qid'': ''Q230036'', ''types'': [''Q170584'', ''Q188860'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/JQuery''}','Y','N','N','N'); -INSERT INTO entities VALUES(412,'JavaScript|Jquery|jQuery UI',12,'{''qid'': ''Q285960'', ''types'': [], ''url'': ''http://dbpedia.org/resource/JQuery_UI''}','N','N','Y','N'); -INSERT INTO entities VALUES(413,'JavaScript|React',12,'{''qid'': ''Q19399674'', ''types'': [''Q1330336'', ''Q783866'', ''Q341''], ''url'': ''http://dbpedia.org/resource/React_(JavaScript_library)''}','Y','N','N','Y'); -INSERT INTO entities VALUES(414,'JavaScript|script.aculo.us',12,'{''qid'': ''Q309509'', ''types'': [''Q188860'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/Script.aculo.us''}','Y','N','N','N'); -INSERT INTO entities VALUES(415,'JavaScript|Valums AJAX File Uploader',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(416,'OWASP Enterprise Security API (ESAPI)',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(417,'Perl|Oraperl',12,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(418,'Android',6,'{''qid'': ''Q94'', ''types'': [''Q920890''], ''url'': ''http://dbpedia.org/resource/Android_(operating_system)''}','N','N','Y','N'); -INSERT INTO entities VALUES(419,'BeOS',6,'{''qid'': ''Q62563'', ''types'': [''Q218616'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/BeOS''}','N','N','Y','N'); -INSERT INTO entities VALUES(420,'Cisco IOS',6,'{''qid'': ''Q753576'', ''types'': [''Q282080''], ''url'': ''http://dbpedia.org/resource/Cisco_IOS''}','Y','N','N','N'); -INSERT INTO entities VALUES(421,'DART',6,'{''qid'': ''Q406009'', ''types'': [''Q1330336'', ''Q12772052'', ''Q899523'', ''Q3839507'', ''Q187432'', ''Q28922893'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Dart_(programming_language)''}','N','N','Y','N'); -INSERT INTO entities VALUES(422,'Fabric OS',6,'{''qid'': ''Q5428124'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Fabric_OS''}','N','N','Y','N'); -INSERT INTO entities VALUES(423,'GNU',6,'{''qid'': ''Q44571'', ''types'': [''Q9135'', ''Q11368''], ''url'': ''http://dbpedia.org/resource/GNU''}','N','N','Y','N'); -INSERT INTO entities VALUES(424,'IBM i',6,'{''qid'': ''Q15637561'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/IBM_i''}','N','N','Y','N'); -INSERT INTO entities VALUES(425,'iOS',6,'{''qid'': ''Q48493'', ''types'': [''Q920890'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/IOS''}','Y','N','N','N'); -INSERT INTO entities VALUES(427,'Linux|CentOS',6,'{''qid'': ''Q207542'', ''types'': [''Q131669'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/CentOS''}','Y','N','N','Y'); -INSERT INTO entities VALUES(428,'Linux|Check Point',6,'{''qid'': ''Q751519'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q751519''}','Y','N','N','N'); -INSERT INTO entities VALUES(429,'Linux|Debian',6,'{''qid'': ''Q7715973'', ''types'': [''Q20983788'', ''Q3251801''], ''url'': ''http://dbpedia.org/resource/Debian''}','N','N','Y','Y'); -INSERT INTO entities VALUES(430,'Linux|Junos OS',6,'{''qid'': ''Q4041744'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Junos_OS''}','Y','N','N','N'); -INSERT INTO entities VALUES(431,'Linux|openSUSE',6,'{''qid'': ''Q16691'', ''types'': [''Q131669'', ''Q388'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/OpenSUSE''}','Y','N','N','Y'); -INSERT INTO entities VALUES(432,'Linux|Oracle Linux',6,'{''qid'': ''Q46094'', ''types'': [''Q131669'', ''Q977076''], ''url'': ''http://dbpedia.org/resource/Oracle_Linux''}','N','N','Y','Y'); -INSERT INTO entities VALUES(433,'Linux|Photon OS',6,'{''qid'': ''Q105703682'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105703682''}','N','N','Y','Y'); -INSERT INTO entities VALUES(434,'Linux|Red Hat Enterprise Linux',6,'{''qid'': ''Q215273'', ''types'': [''Q9135'', ''Q131669''], ''url'': ''http://dbpedia.org/resource/Red_Hat_Enterprise_Linux''}','N','N','Y','Y'); -INSERT INTO entities VALUES(435,'Linux|SUSE Linux Enterprise Server',6,'{''qid'': ''Q1759786'', ''types'': [''Q131669''], ''url'': ''http://dbpedia.org/resource/SUSE_Linux_Enterprise_Server''}','N','N','Y','Y'); -INSERT INTO entities VALUES(436,'Linux|Ubuntu',6,'{''qid'': ''Q381'', ''types'': [''Q131669'', ''Q5276054'', ''Q20983788'', ''Q3251801''], ''url'': ''http://dbpedia.org/resource/Ubuntu_(operating_system)''}','Y','N','N','Y'); -INSERT INTO entities VALUES(437,'Linux|zLinux',6,'{''qid'': ''Q136277'', ''types'': [''Q388''], ''url'': ''http://dbpedia.org/resource/Linux_on_z_Systems''}','N','N','Y','N'); -INSERT INTO entities VALUES(438,'macOS',6,'{''qid'': ''Q14116'', ''types'': [''Q43627'', ''Q218616'', ''Q811701'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/MacOS''}','N','N','Y','N'); -INSERT INTO entities VALUES(440,'MVS|OS/390',6,'{''qid'': ''Q1726891'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/OS/390''}','Y','N','N','N'); -INSERT INTO entities VALUES(441,'MVS|z/OS',6,'{''qid'': ''Q283705'', ''types'': [''Q14656''], ''url'': ''http://dbpedia.org/resource/Z/OS''}','Y','N','N','N'); -INSERT INTO entities VALUES(442,'OpenVMS',6,'{''qid'': ''Q479882'', ''types'': [''Q9135'', ''Q218616'', ''Q3496042''], ''url'': ''http://dbpedia.org/resource/OpenVMS''}','Y','N','N','N'); -INSERT INTO entities VALUES(443,'OS/2',6,'{''qid'': ''Q189794'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/OS/2''}','Y','N','N','N'); -INSERT INTO entities VALUES(445,'Unix|AIX',6,'{''qid'': ''Q269856'', ''types'': [''Q218616'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/IBM_AIX''}','Y','N','N','N'); -INSERT INTO entities VALUES(447,'Unix|BSD|FreeBSD',6,'{''qid'': ''Q34236'', ''types'': [], ''url'': ''http://dbpedia.org/resource/FreeBSD''}','Y','N','N','N'); -INSERT INTO entities VALUES(448,'Unix|BSD|SunOS',6,'{''qid'': ''Q1208460'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/SunOS''}','Y','N','N','N'); -INSERT INTO entities VALUES(449,'Unix|HP-UX',6,'{''qid'': ''Q847593'', ''types'': [''Q14656''], ''url'': ''http://dbpedia.org/resource/HP-UX''}','Y','N','N','N'); -INSERT INTO entities VALUES(451,'Windows|Windows Desktop',6,'{''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows''}','Y','N','N','N'); -INSERT INTO entities VALUES(452,'Windows|Windows Server',6,'{''qid'': ''Q11219'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Windows_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(453,'Linux|Fedora',6,'{''qid'': ''Q48267'', ''types'': [''Q131669'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/Fedora_(operating_system)''}','Y','N','N','Y'); -INSERT INTO entities VALUES(454,'Linux|Amazon Linux',6,'{''qid'': ''Q68223191'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q68223191''}','Y','N','N','N'); -INSERT INTO entities VALUES(455,'Clarify|Clear Basic',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(456,'Eclipse|ATLAS Transformation Language (ATL)',5,'{''qid'': ''Q667812'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ATLAS_Transformation_Language''}','Y','N','N','N'); -INSERT INTO entities VALUES(457,'IBM BigFix Platform|Client Deploy Tool',5,'{''qid'': ''Q1420900'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Microsoft_Deployment_Toolkit''}','Y','N','N','N'); -INSERT INTO entities VALUES(458,'IBM Integration Bus|Extended Structured Query Language (ESQL)',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(459,'IBM Tivoli Asset Management|Asset Discovery for Distributed',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(460,'IBM Tivoli Storage Manager|TSM API',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(461,'IBM Tivoli Storage Manager|TSM Client',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(462,'IBM Tivoli Storage Manager|TSM Storage Agent',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(463,'IBM Tivoli Storage Manager|VSS Requestor',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(464,'Microsoft Exchange Server|Veeam Explorer',5,'{''qid'': ''Q22096414'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q22096414''}','Y','N','N','N'); -INSERT INTO entities VALUES(465,'MS SQL Server|MS SQL Server Browser',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(466,'MS SQL Server|Data Transformation Services',5,'{''qid'': ''Q644775'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Data_Transformation_Services''}','Y','N','N','N'); -INSERT INTO entities VALUES(467,'MS SQL Server|Log Reader Agent',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(468,'MS SQL Server|SQL Server Analysis Services (SSAS)',5,'{''qid'': ''Q2067216'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_Analysis_Services''}','Y','N','N','N'); -INSERT INTO entities VALUES(469,'MS SQL Server|SQL Server Database Engine',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(470,'MS SQL Server|SQL Server Integration Services (SSIS)',5,'{''qid'': ''Q1231051'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Integration_Services''}','Y','N','N','N'); -INSERT INTO entities VALUES(471,'MS SQL Server|SQL Server Management Studio',5,'{''qid'': ''Q4048883'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Management_Studio''}','Y','N','N','N'); -INSERT INTO entities VALUES(472,'MS SQL Server|SQL Server Report Builder',5,'{''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services''}','Y','N','N','N'); -INSERT INTO entities VALUES(473,'MS SQL Server|SQL Server Reporting Services (SSRS)',5,'{''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services''}','Y','N','N','N'); -INSERT INTO entities VALUES(474,'Oracle Database|Jserver',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(475,'Oracle Database|Oracle Spatial and Graph',5,'{''qid'': ''Q3508244'', ''types'': [''Q7397'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Oracle_Spatial_and_Graph''}','Y','N','N','N'); -INSERT INTO entities VALUES(476,'SAP ERP|SAP EHP',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(477,'SAP ERP|SAP Kernel',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(478,'Oracle Database|SQL*Plus',5,'{''qid'': ''Q2575010'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL*Plus''}','Y','N','N','N'); -INSERT INTO entities VALUES(479,'Sybase SQL Server|Sybase Central',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(480,'Sybase SQL Server|Sybase Dsedit',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(481,'TIBCO Business Works (BW)|Integration Manager',5,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(482,'.NET Framework|Common Runtime Library',7,'{''qid'': ''Q1444922'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Runtime_library''}','Y','N','N','N'); -INSERT INTO entities VALUES(483,'.NET Framework|log4net',7,'{''qid'': ''Q7884429'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q7884429''}','Y','N','N','Y'); -INSERT INTO entities VALUES(484,'.NET Framework|Magick.NET',7,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(485,'.NET Framework|Windows Communication Foundation (WCF)',7,'{''qid'': ''Q261595'', ''types'': [''Q40056'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Communication_Foundation''}','Y','N','N','N'); -INSERT INTO entities VALUES(486,'.NET Framework|Windows Workflow Foundation (WF)',7,'{''qid'': ''Q1154450'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Workflow_Foundation''}','Y','N','N','N'); -INSERT INTO entities VALUES(487,'.NET Framework|WinForms',7,'{''qid'': ''Q613361'', ''types'': [''Q1193246'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Forms''}','Y','N','N','N'); -INSERT INTO entities VALUES(488,'ActiveX|ADO',7,'{''qid'': ''Q344005'', ''types'': [''Q165194''], ''url'': ''http://dbpedia.org/resource/ActiveX_Data_Objects''}','Y','N','N','N'); -INSERT INTO entities VALUES(489,'IIS|Easy Migration Tool (IEMT)',7,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(490,'IIS|Application Request Routing (ARR)',7,'{''qid'': ''Q16987674'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Application_Request_Routing''}','Y','N','N','N'); -INSERT INTO entities VALUES(491,'IIS|IIS Manager',7,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(492,'JBoss|JBoss Seam',7,'{''qid'': ''Q923560'', ''types'': [''Q1330336'', ''Q341''], ''url'': ''http://dbpedia.org/resource/JBoss_Seam''}','Y','N','N','Y'); -INSERT INTO entities VALUES(493,'JBoss|Wildfly',7,'{''qid'': ''Q68850'', ''types'': [''Q71550'', ''Q341''], ''url'': ''http://dbpedia.org/resource/WildFly''}','N','N','Y','Y'); -INSERT INTO entities VALUES(494,'Oracle Application Server|Oracle Transparent Gateway',7,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(495,'Oracle WebCenter Content Server|Idoc Script',7,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(496,'SAP NetWeaver App Server|ABAP',7,'{''qid'': ''Q380523'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ABAP''}','Y','N','N','N'); -INSERT INTO entities VALUES(497,'.NET Framework|*',10,'{''qid'': ''Q5289'', ''types'': [''Q241317'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/.NET_Framework''}','Y','N','N','N'); -INSERT INTO entities VALUES(498,'Active Directory (AD)',10,'{''qid'': ''Q55692'', ''types'': [''Q756230''], ''url'': ''http://dbpedia.org/resource/Active_Directory''}','Y','N','N','N'); -INSERT INTO entities VALUES(500,'ActiveX|*',10,'{''qid'': ''Q302022'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/ActiveX''}','N','N','Y','N'); -INSERT INTO entities VALUES(501,'Apache Cordova',10,'{''qid'': ''Q16626338'', ''types'': [''Q6934955''], ''url'': ''http://dbpedia.org/resource/Apache_Cordova''}','Y','N','N','Y'); -INSERT INTO entities VALUES(502,'CICS',10,'{''qid'': ''Q1146247'', ''types'': [''Q9143'', ''Q4388320''], ''url'': ''http://dbpedia.org/resource/CICS''}','Y','Y','N','N'); -INSERT INTO entities VALUES(503,'Docker',10,'{''qid'': ''Q15206305'', ''types'': [''Q167772'', ''Q7935198'', ''Q506883''], ''url'': ''http://dbpedia.org/resource/Docker_(software)''}','N','N','Y','N'); -INSERT INTO entities VALUES(504,'Flash',10,'{''qid'': ''Q165658'', ''types'': [''Q1155404'', ''Q241317'', ''Q2622299'', ''Q166142''], ''url'': ''http://dbpedia.org/resource/Adobe_Flash''}','Y','N','N','N'); -INSERT INTO entities VALUES(505,'HTTP File Server',10,'{''qid'': ''Q1566096'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/HTTP_File_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(506,'Java Runtime Environment (JRE)',10,'{''qid'': ''Q1504505'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q1504505''}','Y','Y','N','N'); -INSERT INTO entities VALUES(507,'Node.js',10,'{''qid'': ''Q756100'', ''types'': [''Q28920813''], ''url'': ''http://dbpedia.org/resource/Node.js''}','N','N','Y','Y'); -INSERT INTO entities VALUES(508,'Ruby on Rails',10,'{''qid'': ''Q190478'', ''types'': [''Q1330336'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Ruby_on_Rails''}','N','N','Y','Y'); -INSERT INTO entities VALUES(509,'VisualForce',10,'{}','Y','Y','N','N'); -INSERT INTO entities VALUES(510,'EMC Celerra',11,'{''qid'': ''Q5057823'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Celerra''}','Y','N','N','N'); -INSERT INTO entities VALUES(511,'Application Lifecycle Management (ALM)',1,'{''qid'': ''Q621590'', ''types'': [''Q1780667''], ''url'': ''http://dbpedia.org/resource/Application_lifecycle_management''}','N','N','Y','N'); -INSERT INTO entities VALUES(512,'Assembler Language',1,'{''qid'': ''Q165436'', ''types'': [''Q28922854'', ''Q9143'', ''Q558937''], ''url'': ''http://dbpedia.org/resource/Assembly_language''}','N','N','Y','N'); -INSERT INTO entities VALUES(513,'Batch Management Software (BMS)',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(514,'Business Object Reports',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(515,'Common Gateway Interface (CGI)',1,'{''qid'': ''Q264364'', ''types'': [''Q11016'', ''Q132364''], ''url'': ''http://dbpedia.org/resource/Common_Gateway_Interface''}','N','N','Y','N'); -INSERT INTO entities VALUES(516,'Compopent Object Model (COM)',1,'{''qid'': ''Q662200'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Component_Object_Model''}','N','N','Y','N'); -INSERT INTO entities VALUES(517,'Common Object Request Broker Architecture (CORBA)',1,'{''qid'': ''Q691593'', ''types'': [''Q317623''], ''url'': ''http://dbpedia.org/resource/Common_Object_Request_Broker_Architecture''}','Y','N','N','N'); -INSERT INTO entities VALUES(518,'CORBA Interface Definition Language (CORBA IDL)',1,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(519,'Data Control Language (DCL)',1,'{''qid'': ''Q604737'', ''types'': [''Q41591651''], ''url'': ''http://dbpedia.org/resource/Data_control_language''}','Y','N','N','N'); -INSERT INTO entities VALUES(520,'Database (DB)',1,'{''qid'': ''Q8513'', ''types'': [''Q15401930'', ''Q386724'', ''Q28813620''], ''url'': ''http://dbpedia.org/resource/Database''}','N','N','Y','N'); -INSERT INTO entities VALUES(521,'Electronic Data Interchange (EDI)',1,'{''qid'': ''Q690189'', ''types'': [''Q2989673''], ''url'': ''http://dbpedia.org/resource/Electronic_data_interchange''}','Y','N','N','N'); -INSERT INTO entities VALUES(522,'Application Web Server',1,'{''qid'': ''Q11288'', ''types'': [''Q1371279'', ''Q4485156'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Web_server''}','N','N','Y','N'); -INSERT INTO entities VALUES(523,'Java-based Document Object Model for XML (JDOM)',1,'{''qid'': ''Q359595'', ''types'': [''Q341'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/JDOM''}','N','N','Y','Y'); -INSERT INTO entities VALUES(524,'Lightweight Directory Access Protocol (LDAP)',1,'{''qid'': ''Q188816'', ''types'': [''Q756230'', ''Q15836568''], ''url'': ''http://dbpedia.org/resource/Lightweight_Directory_Access_Protocol''}','N','N','Y','N'); -INSERT INTO entities VALUES(525,'Open Database Connectivity (ODBC)',1,'{''qid'': ''Q212606'', ''types'': [''Q165194'', ''Q1172367''], ''url'': ''http://dbpedia.org/resource/Open_Database_Connectivity''}','Y','N','N','N'); -INSERT INTO entities VALUES(526,'Order Management System (OMS)',1,'{''qid'': ''Q7100437'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Order_management_system''}','Y','N','N','N'); -INSERT INTO entities VALUES(527,'Oracle Web Services',1,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(529,'Representational State Transfer (REST)',1,'{''qid'': ''Q749568'', ''types'': [''Q220644''], ''url'': ''http://dbpedia.org/resource/Representational_state_transfer''}','Y','N','N','N'); -INSERT INTO entities VALUES(530,'Service-Oriented Architecture (SOA)',1,'{''qid'': ''Q220644'', ''types'': [''Q846636''], ''url'': ''http://dbpedia.org/resource/Service-oriented_architecture''}','Y','N','N','N'); -INSERT INTO entities VALUES(531,'Simple Object Access Protocol (SOAP)',1,'{''qid'': ''Q189620'', ''types'': [''Q15836568''], ''url'': ''http://dbpedia.org/resource/SOAP''}','Y','N','N','N'); -INSERT INTO entities VALUES(533,'YAML',1,'{''qid'': ''Q281876'', ''types'': [''Q37045'', ''Q50843083'', ''Q235557'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/YAML''}','Y','N','N','N'); -INSERT INTO entities VALUES(535,'Application Server',1,'{''qid'': ''Q71550'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/Application_server''}','N','N','Y','N'); -INSERT INTO entities VALUES(536,'Cloud',1,'{''qid'': ''Q483639'', ''types'': [''Q771906'', ''Q241317''], ''url'': ''http://dbpedia.org/resource/Cloud_computing''}','N','N','Y','N'); -INSERT INTO entities VALUES(537,'Competency and Quality Assurance Server',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(538,'Device Provisioning Engines (DPE)',1,'{''qid'': ''Q5318925'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Dynamic_provisioning_environment''}','N','N','Y','N'); -INSERT INTO entities VALUES(539,'E-business solution',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(540,'Enterprise Service Bus(ESB)',1,'{''qid'': ''Q1061460'', ''types'': [''Q146923''], ''url'': ''http://dbpedia.org/resource/Enterprise_service_bus''}','N','N','Y','N'); -INSERT INTO entities VALUES(541,'File Server',1,'{''qid'': ''Q513349'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/File_server''}','N','N','Y','N'); -INSERT INTO entities VALUES(542,'General Ledger',1,'{''qid'': ''Q1977520'', ''types'': [''Q3831821'', ''Q4116214''], ''url'': ''http://dbpedia.org/resource/General_ledger''}','N','N','Y','N'); -INSERT INTO entities VALUES(543,'HTTP client',1,'{''qid'': ''Q2979024'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q2979024''}','Y','N','N','N'); -INSERT INTO entities VALUES(545,'Integrated Safe System of Work (ISSOW)',1,'{''qid'': ''Q5974495'', ''types'': [''Q317623''], ''url'': ''http://dbpedia.org/resource/ISSOW''}','N','N','Y','N'); -INSERT INTO entities VALUES(546,'Internet Exchange Point - Full Stack (ixp-ft)',1,'{''qid'': ''Q1433061'', ''types'': [''Q173106'', ''Q1293220''], ''url'': ''http://dbpedia.org/resource/Internet_exchange_point''}','N','N','Y','N'); -INSERT INTO entities VALUES(547,'Internet Message Access Protocol (IMAP)',1,'{''qid'': ''Q166936'', ''types'': [''Q16935517'', ''Q15836568''], ''url'': ''http://dbpedia.org/resource/Internet_Message_Access_Protocol''}','Y','N','N','N'); -INSERT INTO entities VALUES(548,'JSON',1,'{''qid'': ''Q2063'', ''types'': [''Q681263'', ''Q235557'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/JSON''}','N','N','Y','N'); -INSERT INTO entities VALUES(549,'KVS Application Server',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(550,'KVS File Server',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(551,'KVS Proxy Server',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(552,'mainframe',1,'{''qid'': ''Q177234'', ''types'': [''Q64729893''], ''url'': ''http://dbpedia.org/resource/Mainframe_computer''}','Y','N','N','N'); -INSERT INTO entities VALUES(553,'Manufacturing Execution System (MES)',1,'{''qid'': ''Q1404943'', ''types'': [''Q489371''], ''url'': ''http://dbpedia.org/resource/Manufacturing_execution_system''}','N','N','Y','N'); -INSERT INTO entities VALUES(554,'Mobile',1,'{''qid'': ''Q2738570'', ''types'': [''Q179310''], ''url'': ''http://dbpedia.org/resource/Mobile_computing''}','N','N','Y','N'); -INSERT INTO entities VALUES(555,'NonSQL',1,'{''qid'': ''Q5999165'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q5999165''}','Y','N','N','N'); -INSERT INTO entities VALUES(556,'SaaS',1,'{''qid'': ''Q1254596'', ''types'': [''Q8187769'', ''Q25036597'', ''Q17155032'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/Software_as_a_service''}','Y','N','N','N'); -INSERT INTO entities VALUES(557,'Storage Area Network (SAN)',1,'{''qid'': ''Q237576'', ''types'': [''Q15141646'', ''Q994895'', ''Q1301371''], ''url'': ''http://dbpedia.org/resource/Storage_area_network''}','N','N','Y','N'); -INSERT INTO entities VALUES(558,'Supplier Registration System Application Server',1,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(559,'Virtual Appliance',1,'{''qid'': ''Q752708'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Virtual_appliance''}','N','N','Y','N'); -INSERT INTO entities VALUES(560,'Webtop',1,'{''qid'': ''Q1780763'', ''types'': [''Q1668024''], ''url'': ''http://dbpedia.org/resource/Web_desktop''}','Y','N','N','N'); -INSERT INTO entities VALUES(561,'Proxy Server',1,'{''qid'': ''Q11189'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/Proxy_server''}','N','N','Y','N'); -INSERT INTO entities VALUES(562,'Utility',1,'{''qid'': ''Q312466'', ''types'': [''Q40056'', ''Q676202'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Utility_software''}','N','N','Y','N'); -INSERT INTO entities VALUES(563,'Citrix ADC',3,'{''qid'': ''Q12040775'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q12040775''}','N','N','Y','N'); -INSERT INTO entities VALUES(564,'Citrix ADC VPX',3,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(565,'Citrix ADC BLX',3,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(566,'InterScan Messaging Security Virtual Appliance (IMSVA)',3,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(567,'Oracle VM',3,'{''qid'': ''Q10852040'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Oracle_VM_Server_for_x86''}','Y','N','N','N'); -INSERT INTO entities VALUES(568,'VMware ESXi',3,'{''qid'': ''Q179116'', ''types'': [''Q1077480'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/VMware_ESXi''}','Y','N','N','N'); -INSERT INTO entities VALUES(569,'VMware Server',3,'{''qid'': ''Q4007037'', ''types'': [''Q1077480''], ''url'': ''http://dbpedia.org/resource/VMware_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(572,'Structured Query Language (SQL)',1,'{''qid'': ''Q47607'', ''types'': [''Q9143'', ''Q1144882'', ''Q845739'', ''Q691358''], ''url'': ''http://dbpedia.org/resource/SQL''}','Y','N','N','N'); -INSERT INTO entities VALUES(574,'Model view controller (MVC)',1,'{''qid'': ''Q44860'', ''types'': [''Q635346'', ''Q181156''], ''url'': ''http://dbpedia.org/resource/Modelûviewûcontroller''}','Y','N','N','N'); -INSERT INTO entities VALUES(576,'Linux|*',6,'{''qid'': ''Q388'', ''types'': [''Q14656'', ''Q16889133'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Linux''}','N','N','Y','Y'); -INSERT INTO entities VALUES(577,'MVS|*',6,'{''qid'': ''Q781443'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/MVS''}','Y','N','N','N'); -INSERT INTO entities VALUES(578,'Unix|*',6,'{''qid'': ''Q11368'', ''types'': [''Q170584'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/Unix''}','Y','N','N','N'); -INSERT INTO entities VALUES(579,'Unix|BSD|*',6,'{''qid'': ''Q34264'', ''types'': [''Q11368''], ''url'': ''http://dbpedia.org/resource/Berkeley_Software_Distribution''}','Y','N','N','N'); -INSERT INTO entities VALUES(580,'Windows|*',6,'{''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows''}','N','N','Y','N'); -INSERT INTO entities VALUES(581,'MS SQL Server|*',2,'{''qid'': ''Q215819'', ''types'': [''Q218616'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_SQL_Server''}','N','N','Y','N'); -INSERT INTO entities VALUES(582,'C#',9,'{''qid'': ''Q2370'', ''types'': [''Q9143'', ''Q12772052''], ''url'': ''http://dbpedia.org/resource/C_Sharp_(programming_language)''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(583,'C++|*',9,'{''qid'': ''Q2407'', ''types'': [''Q28923026'', ''Q12772052'', ''Q28922885'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q5499621'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C++''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(584,'Java|*',9,'{''qid'': ''Q251'', ''types'': [''Q12772052'', ''Q56062429'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Java_(programming_language)''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(585,'Perl|*',9,'{''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(586,'PHP',9,'{''qid'': ''Q59'', ''types'': [''Q1993334''], ''url'': ''http://dbpedia.org/resource/PHP''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(587,'Python',9,'{''qid'': ''Q28865'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Python_(programming_language)''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(588,'Ruby',9,'{''qid'': ''Q161053'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Ruby_(programming_language)''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(589,'JavaScript|*',9,'{''qid'': ''Q2005'', ''types'': [''Q241317'', ''Q12772052'', ''Q3839507'', ''Q187432'', ''Q9143'', ''Q28920810'', ''Q21562092'', ''Q28920813'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/JavaScript''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(590,'Unix|BSD|OpenBSD',6,'{''qid'': ''Q34215'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34215''}','Y','N','N','N'); -INSERT INTO entities VALUES(591,'z/VSE',6,'{''qid'': ''Q289345'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/VSE_(operating_system)''}','Y','N','N','N'); -INSERT INTO entities VALUES(592,'Active Server Pages (ASP)',9,'{''qid'': ''Q344266'', ''types'': [''Q1330336'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Active_Server_Pages''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(593,'MS-DOS',6,'{''qid'': ''Q47604'', ''types'': [''Q9135'', ''Q241317'', ''Q170434''], ''url'': ''http://dbpedia.org/resource/MS-DOS''}','Y','N','N','N'); -INSERT INTO entities VALUES(594,'COBOL',9,'{''qid'': ''Q131140'', ''types'': [''Q9143'', ''Q28922885'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/COBOL''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(595,'VME',6,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(596,'Extensible Markup Language (XML)|*',9,'{''qid'': ''Q2115'', ''types'': [''Q82753'', ''Q37045'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/XML''}','N','Y','Y','N/A'); -INSERT INTO entities VALUES(597,'DOS/360',6,'{''qid'': ''Q3487917'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/DOS/360_and_successors''}','Y','N','N','N'); -INSERT INTO entities VALUES(598,'z/TPF',6,'{''qid'': ''Q1426122'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Transaction_Processing_Facility''}','Y','N','N','N'); -INSERT INTO entities VALUES(599,'Pascal|*',9,'{''qid'': ''Q81571'', ''types'': [''Q9143'', ''Q21562092'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Pascal_(programming_language)''}','Y','Y','N','N/A'); -INSERT INTO entities VALUES(600,'Oracle WebLogic Server',8,'{''qid'': ''Q83589'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_WebLogic_Server''}','N','N','Y','N'); -INSERT INTO entities VALUES(601,'Websphere ILOG JRules BRMS',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(602,'Unix|BSD|NetBSD',6,'{''qid'': ''Q34225'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34225''}','Y','N','N','N'); -INSERT INTO entities VALUES(603,'SharePoint',2,'{''qid'': ''Q18833'', ''types'': [''Q1371279'', ''Q1344636'', ''Q131093'', ''Q831677'', ''Q615985''], ''url'': ''http://dbpedia.org/resource/SharePoint''}','Y','N','N','N'); -INSERT INTO entities VALUES(604,'IBM Tivoli Storage Manager|*',2,'{''qid'': ''Q2001900'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Storage_Manager''}','Y','N','N','N'); -INSERT INTO entities VALUES(605,'IBM Spectrum Scale',2,'{''qid'': ''Q2389927'', ''types'': [''Q174989'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_General_Parallel_File_System''}','Y','N','N','N'); -INSERT INTO entities VALUES(606,'IBM Tivoli Asset Management|*',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(607,'Oracle Hyperion|*',2,'{''qid'': ''Q1431991'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Oracle_Hyperion''}','Y','N','N','N'); -INSERT INTO entities VALUES(608,'z/VM',6,'{''qid'': ''Q1399696'', ''types'': [''Q9135'', ''Q1077480''], ''url'': ''http://dbpedia.org/resource/Z/VM''}','Y','N','N','N'); -INSERT INTO entities VALUES(609,'IIS|*',8,'{''qid'': ''Q11341'', ''types'': [''Q218616'', ''Q18287040''], ''url'': ''http://dbpedia.org/resource/Internet_Information_Services''}','Y','N','N','N'); -INSERT INTO entities VALUES(610,'Oracle Application Server|*',8,'{''qid'': ''Q2027912'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Server''}','Y','N','N','N'); -INSERT INTO entities VALUES(611,'instana',10,'{''qid'': ''Q107383927'', ''url'': ''https://www.wikidata.org/wiki/Q107383927''}','N','N','Y','N'); -INSERT INTO entities VALUES(612,'credstash',2,'{''qid'': ''Q107384165'', ''url'': ''https://www.wikidata.org/wiki/Q107384165''}','N','N','Y','N'); -INSERT INTO entities VALUES(613,'Snyk',2,'{''qid'': ''Q108282404'', ''url'': ''https://www.wikidata.org/wiki/Q108282404''}','N','N','Y','N'); -INSERT INTO entities VALUES(614,'Akka',2,'{''qid'': ''Q16002307'', ''url'': ''https://www.wikidata.org/wiki/Q16002307''}','N','N','Y','N'); -INSERT INTO entities VALUES(615,'Varnish',8,'{''qid'': ''Q1602447'', ''url'': ''https://www.wikidata.org/wiki/Q1602447''}','N','N','Y','N'); -INSERT INTO entities VALUES(616,'Datadog',10,'{''qid'': ''Q16248637'', ''url'': ''https://www.wikidata.org/wiki/Q16248637''}','N','N','Y','N'); -INSERT INTO entities VALUES(617,'API',1,'{''qid'': ''Q165194'', ''url'': ''https://www.wikidata.org/wiki/Q165194''}','N','N','Y','N'); -INSERT INTO entities VALUES(618,'Hazelcast',10,'{''qid'': ''Q17021540'', ''url'': ''https://www.wikidata.org/wiki/Q17021540''}','N','N','Y','N'); -INSERT INTO entities VALUES(619,'Infinispan',2,'{''qid'': ''Q18152516'', ''url'': ''https://www.wikidata.org/wiki/Q18152516''}','N','N','Y','N'); -INSERT INTO entities VALUES(620,'Nuxeo',10,'{''qid'': ''Q2004521'', ''url'': ''https://www.wikidata.org/wiki/Q2004521''}','N','N','Y','N'); -INSERT INTO entities VALUES(621,'ArangoDB',2,'{''qid'': ''Q20072115'', ''url'': ''https://www.wikidata.org/wiki/Q20072115''}','N','N','Y','N'); -INSERT INTO entities VALUES(622,'Eclipse|Eclipse Che',2,'{''qid'': ''Q25000883'', ''url'': ''https://www.wikidata.org/wiki/Q25000883''}','N','N','Y','N'); -INSERT INTO entities VALUES(623,'Amazon S3',2,'{''qid'': ''Q2593067'', ''url'': ''https://www.wikidata.org/wiki/Q2593067''}','N','N','Y','N'); -INSERT INTO entities VALUES(624,'ClickHouse',2,'{''qid'': ''Q27825826'', ''url'': ''https://www.wikidata.org/wiki/Q27825826''}','N','N','Y','N'); -INSERT INTO entities VALUES(625,'MinIO',2,'{''qid'': ''Q28956397'', ''url'': ''https://www.wikidata.org/wiki/Q28956397''}','N','N','Y','N'); -INSERT INTO entities VALUES(626,'Elasticsearch',2,'{''qid'': ''Q3050461'', ''url'': ''https://www.wikidata.org/wiki/Q3050461''}','N','N','Y','N'); -INSERT INTO entities VALUES(627,'XtraDB',2,'{''qid'': ''Q4021858'', ''url'': ''https://www.wikidata.org/wiki/Q4021858''}','N','N','Y','N'); -INSERT INTO entities VALUES(628,'Keycloak',2,'{''qid'': ''Q42916195'', ''url'': ''https://www.wikidata.org/wiki/Q42916195''}','N','N','Y','N'); -INSERT INTO entities VALUES(629,'Grafana',2,'{''qid'': ''Q43399271'', ''url'': ''https://www.wikidata.org/wiki/Q43399271''}','N','N','Y','N'); -INSERT INTO entities VALUES(630,'Mattermost',10,'{''qid'': ''Q55478510'', ''url'': ''https://www.wikidata.org/wiki/Q55478510''}','N','N','Y','N'); -INSERT INTO entities VALUES(631,'Synapse',2,'{''qid'': ''Q56328412'', ''url'': ''https://www.wikidata.org/wiki/Q56328412''}','N','N','Y','N'); -INSERT INTO entities VALUES(632,'Cloud IAM',2,'{''qid'': ''Q59852253'', ''url'': ''https://www.wikidata.org/wiki/Q59852253''}','N','N','Y','N'); -INSERT INTO entities VALUES(633,'Knative',10,'{''qid'': ''Q59905591'', ''url'': ''https://www.wikidata.org/wiki/Q59905591''}','N','N','Y','N'); -INSERT INTO entities VALUES(634,'Apache Cassandra',2,'{''qid'': ''Q616639'', ''url'': ''https://www.wikidata.org/wiki/Q616639''}','N','N','Y','N'); -INSERT INTO entities VALUES(635,'Kubeflow',10,'{''qid'': ''Q65048974'', ''url'': ''https://www.wikidata.org/wiki/Q65048974''}','N','N','Y','N'); -INSERT INTO entities VALUES(636,'Qiskit',2,'{''qid'': ''Q70490607'', ''url'': ''https://www.wikidata.org/wiki/Q70490607''}','N','N','Y','N'); -INSERT INTO entities VALUES(637,'Microsoft Azure',2,'{''qid'': ''Q725967'', ''url'': ''https://www.wikidata.org/wiki/Q725967''}','N','N','Y','N'); -INSERT INTO entities VALUES(638,'Strimzi',10,'{''qid'': ''Q72711423'', ''url'': ''https://www.wikidata.org/wiki/Q72711423''}','N','N','Y','N'); -INSERT INTO entities VALUES(639,'Sematext',10,'{''qid'': ''Q7449130'', ''url'': ''https://www.wikidata.org/wiki/Q7449130''}','N','N','Y','N'); -INSERT INTO entities VALUES(640,'Eclipse|Eclipse hawkBit',2,'{''qid'': ''Q76178253'', ''url'': ''https://www.wikidata.org/wiki/Q76178253''}','N','N','Y','N'); -INSERT INTO entities VALUES(641,'Eclipse|Eclipse Ditto',2,'{''qid'': ''Q76178650'', ''url'': ''https://www.wikidata.org/wiki/Q76178650''}','N','N','Y','N'); -INSERT INTO entities VALUES(642,'MariaDB',2,'{''qid'': ''Q787177'', ''url'': ''https://www.wikidata.org/wiki/Q787177''}','N','N','Y','N'); -INSERT INTO entities VALUES(643,'Zadara',2,'{''qid'': ''Q8064144'', ''url'': ''https://www.wikidata.org/wiki/Q8064144''}','N','N','Y','N'); -INSERT INTO entities VALUES(644,'Istio',2,'{''qid'': ''Q88464464'', ''url'': ''https://www.wikidata.org/wiki/Q88464464''}','N','N','Y','N'); -INSERT INTO entities VALUES(645,'Vault',2,'{''qid'': ''Q88664426'', ''url'': ''https://www.wikidata.org/wiki/Q88664426''}','N','N','Y','N'); -INSERT INTO entities VALUES(646,'Apache Druid',2,'{''qid'': ''Q89693799'', ''url'': ''https://www.wikidata.org/wiki/Q89693799''}','N','N','Y','N'); -INSERT INTO entities VALUES(647,'etcd',2,'{''qid'': ''Q96324273'', ''url'': ''https://www.wikidata.org/wiki/Q96324273''}','N','N','Y','N'); -INSERT INTO entities VALUES(648,'Traefik',8,'{''qid'': ''Q96332968'', ''url'': ''https://www.wikidata.org/wiki/Q96332968''}','N','N','Y','N'); -INSERT INTO entities VALUES(649,'IBM Cloud',2,'{''qid'': ''Q96381605'', ''url'': ''https://www.wikidata.org/wiki/Q96381605''}','N','N','Y','N'); -INSERT INTO entities VALUES(650,'YugabyteDB',2,'{''qid'': ''Q97187861'', ''url'': ''https://www.wikidata.org/wiki/Q97187861''}','N','N','Y','N'); -INSERT INTO entities VALUES(651,'CockroachDB',2,'{''qid'': ''Q98731903'', ''url'': ''https://www.wikidata.org/wiki/Q98731903''}','N','N','Y','N'); -INSERT INTO entities VALUES(652,'Jaeger',10,'{''qid'': ''Q98799449'', ''url'': ''https://www.wikidata.org/wiki/Q98799449''}','N','N','Y','N'); -INSERT INTO entities VALUES(653,'Natural Programming Language',9,'{}','N','N','Y','N/A'); -INSERT INTO entities VALUES(654,'AcuCOBOL',9,'{''qid'': ''Q288844'', ''url'': ''https://www.wikidata.org/wiki/Q288844''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(655,'Ada',9,'{''qid'': ''Q154755'', ''url'': ''https://www.wikidata.org/wiki/Q154755''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(656,'ADABAS',2,'{''qid'': ''Q346434'', ''url'': ''https://www.wikidata.org/wiki/Q346434''}','N','N','Y','N'); -INSERT INTO entities VALUES(657,'ADSO',9,'{''qid'': ''Q4685839'', ''url'': ''https://www.wikidata.org/wiki/Q4685839''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(659,'Batch',9,'{''qid'': ''Q479833'', ''url'': ''https://www.wikidata.org/wiki/Q479833''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(660,'Powershell',9,'{''qid'': ''Q840410'', ''url'': ''https://www.wikidata.org/wiki/Q840410''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(661,'COM+',10,'{''qid'': ''Q9670606'', ''url'': ''https://www.wikidata.org/wiki/Q9670606''}','N','N','Y','N'); -INSERT INTO entities VALUES(662,'Dataflex',9,'{''qid'': ''Q2391203'', ''url'': ''https://www.wikidata.org/wiki/Q2391203''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(663,'DDS',9,'{''qid'': ''Q1149607'', ''url'': ''https://www.wikidata.org/wiki/Q1149607''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(664,'Forte',9,'{''qid'': ''Q3748867'', ''url'': ''https://www.wikidata.org/wiki/Q3748867''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(665,'Foxpro',9,'{''qid'': ''Q2507721'', ''url'': ''https://www.wikidata.org/wiki/Q2507721''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(666,'IBM DB2 Purescale',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(667,'IDMS DB',2,'{}','N','N','Y','N'); -INSERT INTO entities VALUES(668,'IDMS DML',9,'{}','Y','N','N','N/A'); -INSERT INTO entities VALUES(669,'Jaguar',8,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(670,'EAServer',8,'{''qid'': ''Q5816084'', ''url'': ''https://www.wikidata.org/wiki/Q5816084''}','Y','N','N','N'); -INSERT INTO entities VALUES(672,'IBM Netezza',4,'{''qid'': ''Q3874960'', ''url'': ''https://www.wikidata.org/wiki/Q3874960''}','N','N','Y','N'); -INSERT INTO entities VALUES(674,'OpenROAD',9,'{''qid'': ''Q2025504'', ''url'': ''https://www.wikidata.org/wiki/Q2025504''}','Y','N','N','N/A'); -INSERT INTO entities VALUES(675,'Oracle Reports',2,'{''qid'': ''Q4045946'', ''url'': ''https://www.wikidata.org/wiki/Q4045946''}','Y','N','N','N'); -INSERT INTO entities VALUES(676,'SAP Replication Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(677,'Git',2,'{''qid'': ''Q186055'', ''url'': ''https://www.wikidata.org/wiki/Q186055''}','N','N','Y','N'); -INSERT INTO entities VALUES(678,'GitLab',2,'{''qid'': ''Q16639197'', ''url'': ''https://www.wikidata.org/wiki/Q16639197''}','N','N','Y','N'); -INSERT INTO entities VALUES(679,'VSAM',2,'{''qid'': ''Q1514276'', ''url'': ''https://www.wikidata.org/wiki/Q1514276''}','Y','N','N','N'); -INSERT INTO entities VALUES(680,'Cloud<>Apache HTTP Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(681,'Cloud<>Windows Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(682,'Cloud<>MS SQL Server',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(683,'Cloud<>Azure SQL Server Database',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(684,'Cloud<>MySQL',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(685,'Cloud<>Oracle Database',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(686,'Cloud<>PostgreSQL',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(687,'Cloud<>AWS RDS',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(688,'Cloud<>SAP HANA DB',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(689,'BMS Map',9,'{}','Y','N','N','N/A'); -INSERT INTO entities VALUES(690,'DB400',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(691,'ILE',9,'{''qid'': ''Q16889435'', ''url'': ''https://www.wikidata.org/wiki/Q16889435''}','N','N','Y','N/A'); -INSERT INTO entities VALUES(692,'Integrated Data Store (IDS)',2,'{''qid'': ''Q3799287'', ''url'': ''https://www.wikidata.org/wiki/Q3799287''}','Y','N','N','N'); -INSERT INTO entities VALUES(693,'ISAM',2,'{''qid'': ''Q1154755'', ''url'': ''https://www.wikidata.org/wiki/Q1154755''}','N','N','Y','N'); -INSERT INTO entities VALUES(694,'Oracle RDS',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(695,'SAP IQ',2,'{''qid'': ''Q948492'', ''url'': ''https://www.wikidata.org/wiki/Q948492''}','Y','N','N','N'); -INSERT INTO entities VALUES(696,'Cloud<>Linux',2,'{}','Y','N','N','N'); -INSERT INTO entities VALUES(697,'Apache Maven',2,'{''qid'': ''Q139941'', ''url'': ''https://www.wikidata.org/wiki/Q139941''}','N','N','Y','Y'); -INSERT INTO entities VALUES(698,'IBM Basic Assembly Language (BAL)',9,'{''qid'': ''Q5968762'', ''url'': ''https://www.wikidata.org/wiki/Q5968762''}','Y','N','N','N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (1, '(E)JES', 2, '{''qid'': ''Q355203'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q355203''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (2, 'A-Auto Job Scheduling Software', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (3, 'Activiti', 2, '{''qid'': ''Q344370'', ''types'': [''Q341'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Activiti_(software)''}', 'N', 'Y', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (4, 'Adobe Acrobat Reader', 2, '{''qid'': ''Q207902'', ''types'': [''Q29364197'', ''Q166142''], ''url'': ''http://dbpedia.org/resource/Adobe_Acrobat''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (5, 'Ansible', 2, '{''qid'': ''Q2852503'', ''types'': [''Q29032804''], ''url'': ''http://dbpedia.org/resource/Ansible_(software)''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (6, 'Apache ActiveMQ', 2, '{''qid'': ''Q773135'', ''types'': [''Q6821765'', ''Q1092177'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_ActiveMQ''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (7, 'Apache Hbase', 2, '{''qid'': ''Q2538066'', ''types'': [''Q341'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Apache_HBase''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (8, 'Apache Hive', 2, '{''qid'': ''Q4778914'', ''types'': [''Q341'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Apache_Hive''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (9, 'Apache Kafka', 2, '{''qid'': ''Q16235208'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/Apache_Kafka''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (10, 'Apache ServiceMix', 2, '{''qid'': ''Q773212'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_ServiceMix''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (11, 'Apache Solr', 2, '{''qid'': ''Q2858103'', ''types'': [''Q19541'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_Solr''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (12, 'Apache Subversion', 2, '{''qid'': ''Q46794'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Apache_Subversion''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (13, 'Application Development Facility (ADF)', 2, '{''qid'': ''Q5285237'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Django_Software_Foundation''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (14, 'Asterisk', 2, '{''qid'': ''Q622754'', ''types'': [''Q1978634''], ''url'': ''http://dbpedia.org/resource/Asterisk_(PBX)''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (15, 'Automic Job Scheduler', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (16, 'Autosys', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (17, 'Bluebeam', 2, '{''qid'': ''Q4930191'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Bluebeam_Software,_Inc.''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (18, 'BMC Control-M', 2, '{''qid'': ''Q4835944'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q4835944''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (19, 'BMC Identity Management', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (20, 'Borland Database Engine (BDE)', 2, '{''qid'': ''Q893888'', ''types'': [''Q537993''], ''url'': ''http://dbpedia.org/resource/Borland_Database_Engine''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (21, 'Business Intelligence and Reporting Tools (BIRT)', 2, '{''qid'': ''Q796007'', ''types'': [''Q341'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/BIRT_Project''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (22, 'CA Gen', 2, '{''qid'': ''Q2125673'', ''types'': [''Q28059995''], ''url'': ''http://dbpedia.org/resource/CA_Gen''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (23, 'CA Introscope', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (24, 'CA-Panvalet', 2, '{''qid'': ''Q17073931'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Panvalet''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (25, 'CA-TELON', 2, '{''qid'': ''Q2383975'', ''types'': [''Q238137''], ''url'': ''http://dbpedia.org/resource/CA-Telon''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (26, 'Casegen', 2, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (27, 'Chef Automate', 2, '{''qid'': ''Q24479'', ''types'': [''Q29032804''], ''url'': ''http://dbpedia.org/resource/Chef_(software)''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (28, 'Cisco AMP for Endpoints', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (29, 'CiscoWorks LAN Management Solution (LMS)', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (30, 'Citrix Virtual Apps and Desktops', 2, '{''qid'': ''Q1093482'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/XenApp''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (31, 'Citrix ADC CPX', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (32, 'Citrix Provisioning', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (33, 'Clarify|*', 2, '{''qid'': ''Q17105097'', ''types'': [''Q1058914''], ''url'': ''http://dbpedia.org/resource/Clarify_Op3nvoice''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (34, 'Clarity LIMS', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (35, 'LabWare LIMS', 2, '{''qid'': ''Q1798149'', ''types'': [''Q121182''], ''url'': ''http://dbpedia.org/resource/Laboratory_information_management_system''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (36, 'Cognos', 2, '{''qid'': ''Q1107048'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Cognos''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (37, 'Coldfusion', 2, '{''qid'': ''Q468446'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Adobe_ColdFusion''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (38, 'ConceptWave', 2, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (39, 'CONNAPI', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (40, 'Connect Direct', 2, '{''qid'': ''Q369085'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Connect:Direct''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (41, 'Cornerstone software', 2, '{''qid'': ''Q5171657'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Cornerstone_(software)''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (42, 'Crystal Reports', 2, '{''qid'': ''Q1142403'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/Crystal_Reports''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (43, 'DB2', 2, '{''qid'': ''Q431195'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/IBM_DB2''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (44, 'Documentum Content Server', 2, '{''qid'': ''Q5287684'', ''types'': [''Q247423'', ''Q1344636''], ''url'': ''http://dbpedia.org/resource/Documentum''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (45, 'Drupal', 2, '{''qid'': ''Q170855'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/Drupal''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (46, 'Eclipse|*', 2, '{''qid'': ''Q82268'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/Eclipse_(software)''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (47, 'Elastic (ELK) Stack', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (48, 'ETAP License Manager (LM)', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (49, 'ExamDiff', 2, '{''qid'': ''Q5419269'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ExamDiff_Pro''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (50, 'F5 Secure Web Gateway Services', 2, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (51, 'FileMaker Pro', 2, '{''qid'': ''Q1982831'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/FileMaker''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (52, 'FlexNet Manager Suite', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (53, 'FTP Voyager', 2, '{''qid'': ''Q1389773'', ''types'': [''Q3503189'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/FTP_Voyager''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (54, 'Genymotion', 2, '{''qid'': ''Q105239167'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105239167''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (55, 'Google Chrome', 2, '{''qid'': ''Q777'', ''types'': [''Q6368''], ''url'': ''http://dbpedia.org/resource/Google_Chrome''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (56, 'Greenplum DB', 2, '{''qid'': ''Q4039706'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Greenplum''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (57, 'Hadoop', 2, '{''qid'': ''Q29120'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Apache_Hadoop''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (58, 'HP aC++ compiler', 2, '{''qid'': ''Q5635754'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/HP_aC++''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (59, 'HP C/ANSI C compiler', 2, '{''qid'': ''Q4045464'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Norcroft_C_compiler''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (60, 'HP Operations Orchestration (HPOO)', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (61, 'HP Server Automation (HPSA)', 2, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (62, 'IBM BigFix Platform|*', 2, '{''qid'': ''Q7810432'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_BigFix''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (63, 'IBM Business Monitor', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (64, 'IBM Business Process Manager', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (65, 'IBM Content Manager OnDemand (CMOD)', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (66, 'IBM FileNet P8 Platform', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (67, 'IBM InfoSphere DataStage', 2, '{''qid'': ''Q5968866'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_InfoSphere_DataStage''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (68, 'IBM Integration Bus|*', 2, '{''qid'': ''Q5969139'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Integration_Bus''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (69, 'IBM License Metric Tool', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (70, 'IBM Maximo', 2, '{''qid'': ''Q55622518'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Maximo_(MRO)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (71, 'IBM Migration Utility', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (72, 'IBM Mobile Foundation', 2, '{''qid'': ''Q25324136'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_MobileFirst''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (73, 'IBM Operational Decision Manager (ODM)', 2, '{''qid'': ''Q16928000'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Operational_Decision_Management''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (76, 'IBM Tivoli Composite Application Manager', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (77, 'IBM Tivoli Monitoring', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (79, 'IBM Tivoli Workload Scheduler (TWS)', 2, '{''qid'': ''None'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Workload_Scheduler''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (80, 'IBM WebSphere Business Integration Adaptor', 2, '{''qid'': ''Q5969131'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Adapters''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (81, 'IBM Websphere MQ', 2, '{''qid'': ''Q528294'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_MQ''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (82, 'IBM WebSphere MQ Telemetry', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (83, 'IBM WebSphere Transformation Extender (WTX)', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (84, 'IMS DB', 2, '{''qid'': ''Q1571984'', ''types'': [''Q871236'', ''Q4388320'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/IBM_Information_Management_System''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (85, 'Info-ZIP', 2, '{''qid'': ''Q1662431'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Info-ZIP''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (86, 'Infobright Community Edition (ICE)', 2, '{''qid'': ''Q3150805'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Infobright''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (87, 'Informatica PowerCenter', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (88, 'Ingres', 2, '{''qid'': ''Q60463'', ''types'': [''Q1130645'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Ingres_(database)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (89, 'JBoss|JBoss Enterprise Service Bus', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (90, 'Jenkins', 2, '{''qid'': ''Q7491312'', ''types'': [''Q16947796''], ''url'': ''http://dbpedia.org/resource/Jenkins_(software)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (91, 'joinIT', 2, '{}', 'N', 'N', 'Y*', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (92, 'LifeFlow', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (93, 'Lotus Notes', 2, '{''qid'': ''Q60198'', ''types'': [''Q474157'', ''Q28601953'', ''Q131093''], ''url'': ''http://dbpedia.org/resource/IBM_Notes''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (94, 'MaaS360', 2, '{''qid'': ''Q39089630'', ''types'': [''None''], ''url'': ''None''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (95, 'Malwarebytes Anti-Malware', 2, '{''qid'': ''Q1783235'', ''types'': [''Q13429867''], ''url'': ''http://dbpedia.org/resource/Malwarebytes_Anti-Malware''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (96, 'ManageEngine ADSelfService Plus', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (97, 'MarkLogic DB', 2, '{''qid'': ''Q6766381'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/MarkLogic''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (98, 'Memcached', 2, '{''qid'': ''Q306661'', ''types'': [''Q165596'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Memcached''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (99, 'Microsoft Access', 2, '{''qid'': ''Q80689'', ''types'': [''Q218616'', ''Q176165'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_Access''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (100, 'Microsoft BizTalk Adapters for Host Systems', 2, '{''qid'': ''Q904150'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_BizTalk_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (101, 'Microsoft Dynamics AX', 2, '{''qid'': ''Q675860'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_Dynamics_AX''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (102, 'Microsoft Endpoint Configuration Manager (SCCM)', 2, '{''qid'': ''Q2061082'', ''types'': [''Q312466'', ''Q1371279''], ''url'': ''http://dbpedia.org/resource/System_Center_Configuration_Manager''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (103, 'Microsoft Excel', 2, '{''qid'': ''Q11272'', ''types'': [''Q218616'', ''Q183197''], ''url'': ''http://dbpedia.org/resource/Microsoft_Excel''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (104, 'Microsoft Exchange Server|*', 2, '{''qid'': ''Q223653'', ''types'': [''Q474157'', ''Q859477'', ''Q2933820''], ''url'': ''http://dbpedia.org/resource/Microsoft_Exchange_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (105, 'Microsoft Forefront Identity Manager (FIM)', 2, '{''qid'': ''Q5468182'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Forefront_Identity_Manager''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (106, 'Microsoft InfoPath', 2, '{''qid'': ''Q706294'', ''types'': [''Q474157'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_InfoPath''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (107, 'Microsoft Internet Explorer', 2, '{''qid'': ''Q1575'', ''types'': [''Q218616'', ''Q498267'', ''Q6368''], ''url'': ''http://dbpedia.org/resource/Internet_Explorer''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (108, 'Microsoft ISA Server', 2, '{''qid'': ''Q632851'', ''types'': [''Q40056''], ''url'': ''http://dbpedia.org/resource/Microsoft_Forefront_Threat_Management_Gateway''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (109, 'Microsoft MQ', 2, '{''qid'': ''Q1931595'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Microsoft_Message_Queuing''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (110, 'Microsoft System Center Endpoint Protection', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (111, 'Microsoft Visual Studio', 2, '{''qid'': ''Q134067'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/Microsoft_Visual_Studio''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (112, 'Microsoft Web Deploy', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (113, 'Microsoft Web Farm Framework (WFF)', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (114, 'Microsoft Web Platform Installer', 2, '{''qid'': ''Q976637'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Web_Platform_Installer''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (115, 'Model Driven Workflow (MDW)', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (116, 'MongoDB', 2, '{''qid'': ''Q1165204'', ''types'': [''Q1235236'', ''Q176165'', ''Q82231''], ''url'': ''http://dbpedia.org/resource/MongoDB''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (117, 'Mozilla Firefox', 2, '{''qid'': ''Q698'', ''types'': [''Q6368''], ''url'': ''http://dbpedia.org/resource/Firefox''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (118, 'MQ Client', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (119, 'MS Office 365', 2, '{''qid'': ''Q775811'', ''types'': [''Q1254596'', ''Q26674207''], ''url'': ''http://dbpedia.org/resource/Office_365''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (121, 'MS SQL Server Compact', 2, '{''qid'': ''Q1814028'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Compact''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (122, 'MySQL', 2, '{''qid'': ''Q850'', ''types'': [''Q1371279'', ''Q1130645'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/MySQL''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (123, 'Neo4j', 2, '{''qid'': ''Q1628290'', ''types'': [''Q99510066'', ''Q218616'', ''Q595971'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Neo4j''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (124, 'Nexus Repository OSS', 2, '{}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (125, 'Nix package manager', 2, '{''qid'': ''Q7041957'', ''types'': [''Q891055'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Nix_package_manager''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (126, 'OpenLDAP', 2, '{''qid'': ''Q682918'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/OpenLDAP''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (127, 'OpenText Exstream', 2, '{''qid'': ''Q5421776'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Exstream_Software''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (128, 'OpenVPN', 2, '{''qid'': ''Q509075'', ''types'': [''Q166142'', ''Q341''], ''url'': ''http://dbpedia.org/resource/OpenVPN''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (129, 'Oracle Access Management', 2, '{''qid'': ''Q7099276'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Identity_Management''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (130, 'Oracle ADF', 2, '{''qid'': ''Q1853309'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Development_Framework''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (131, 'Oracle APEX', 2, '{''qid'': ''Q1908291'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Express''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (132, 'Oracle BI Publisher', 2, '{''qid'': ''Q7099244'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_BI_Publisher''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (133, 'Oracle Business Intelligence', 2, '{''qid'': ''Q7099251'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Business_Intelligence_Suite_Enterprise_Edition''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (134, 'Oracle Database|*', 2, '{''qid'': ''Q185524'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/Oracle_Database''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (135, 'Oracle Designer', 2, '{''qid'': ''Q7099261'', ''types'': [''Q28059995''], ''url'': ''http://dbpedia.org/resource/Oracle_Designer''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (136, 'Oracle Enterprise Manager', 2, '{''qid'': ''Q7099266'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Enterprise_Manager''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (137, 'Oracle Forms', 2, '{''qid'': ''Q744707'', ''types'': [''Q756637''], ''url'': ''http://dbpedia.org/resource/Oracle_Forms''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (138, 'Oracle Hyperion|Hyperion Interactive Reporting', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (139, 'Oracle Hyperion|Hyperion Planning', 2, '{''qid'': ''Q5958168'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q5958168''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (140, 'Oracle Net Services', 2, '{''qid'': ''Q7099283'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Net_Services''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (141, 'Oracle Real Application Clusters (RAC)', 2, '{''qid'': ''Q1418481'', ''types'': [''Q28057052''], ''url'': ''http://dbpedia.org/resource/Oracle_RAC''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (142, 'Oracle Retail Point-of-Service', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (143, 'Oracle Service Bus', 2, '{''qid'': ''Q7099295'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_Service_Bus''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (144, 'Oracle Smart View', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (145, 'Oracle SOA Suite', 2, '{''qid'': ''Q7099294'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Oracle_SOA_Suite''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (146, 'Oracle SQL Developer', 2, '{''qid'': ''Q931351'', ''types'': [''Q13741'', ''Q47607''], ''url'': ''http://dbpedia.org/resource/Oracle_SQL_Developer''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (147, 'Oracle TimesTen In-Memory Database', 2, '{''qid'': ''Q3991449'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/TimesTen''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (148, 'Oracle Warehouse Builder (OWB)', 2, '{''qid'': ''Q3354986'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_Warehouse_Builder''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (149, 'Orbix', 2, '{''qid'': ''Q4045955'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Orbix_(software)''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (150, 'Pentaho', 2, '{''qid'': ''Q644841'', ''types'': [''Q341'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Pentaho''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (151, 'PeopleSoft', 2, '{''qid'': ''Q1928814'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/PeopleSoft''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (152, 'Perkin Elmer Informatics (PKI)', 2, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (153, 'Pervasive PSQL', 2, '{''qid'': ''Q7171236'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Pervasive_PSQL''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (154, 'PIPE-FLO', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (155, 'PKZIP', 2, '{''qid'': ''Q1602149'', ''types'': [''Q25303924''], ''url'': ''http://dbpedia.org/resource/PKZIP''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (156, 'Planview', 2, '{''qid'': ''Q19903554'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Planview''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (157, 'PostgreSQL', 2, '{''qid'': ''Q192490'', ''types'': [''Q341'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/PostgreSQL''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (158, 'Powerbuilder', 2, '{''qid'': ''Q580882'', ''types'': [''Q13741''], ''url'': ''http://dbpedia.org/resource/PowerBuilder''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (159, 'Primavera P6', 2, '{''qid'': ''Q2111327'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Primavera_(software)''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (160, 'Pro*COBOL', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (161, 'ProjectWise', 2, '{''qid'': ''Q7248950'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/ProjectWise''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (162, 'ProjectWise Web Server', 2, '{''qid'': ''Q7248950'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/ProjectWise''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (163, 'PVCS Version Manager', 2, '{''qid'': ''Q3359906'', ''types'': [''Q3257930'', ''Q55680343''], ''url'': ''http://dbpedia.org/resource/PVCS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (164, 'QlikView', 2, '{''qid'': ''Q105859488'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105859488''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (165, 'RabbitMQ', 2, '{''qid'': ''Q2081413'', ''types'': [''Q6821765'', ''Q341''], ''url'': ''http://dbpedia.org/resource/RabbitMQ''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (166, 'Rational ClearCase', 2, '{''qid'': ''Q593863'', ''types'': [''Q55680343''], ''url'': ''http://dbpedia.org/resource/Rational_ClearCase''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (167, 'Rational ClearQuest', 2, '{''qid'': ''Q1493633'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Rational_ClearQuest''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (168, 'Redis', 2, '{''qid'': ''Q2136322'', ''types'': [''Q82231''], ''url'': ''http://dbpedia.org/resource/Redis''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (169, 'Remedy', 2, '{''qid'': ''Q7311616'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Remedy_Debugger''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (170, 'Riak', 2, '{''qid'': ''Q2328712'', ''types'': [''Q506883'', ''Q20706915'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Riak''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (171, 'RightFax', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (172, 'Rumba', 2, '{''qid'': ''Q21684437'', ''types'': [''Q1544863'', ''Q3328778''], ''url'': ''http://dbpedia.org/resource/Rumba''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (173, 'SAP BusinessObjects BI server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (174, 'SAP ERP|*', 2, '{''qid'': ''Q167533'', ''types'': [''Q28057030''], ''url'': ''http://dbpedia.org/resource/SAP_ERP''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (175, 'SAP HANA DB', 2, '{''qid'': ''Q951374'', ''types'': [''Q1572823'', ''Q166142'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/SAP_HANA''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (176, 'SAP MaxDB', 2, '{''qid'': ''Q2143312'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/MaxDB''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (177, 'SAP NetWeaver Business Warehouse', 2, '{''qid'': ''Q1269377'', ''types'': [''Q193351''], ''url'': ''http://dbpedia.org/resource/SAP_NetWeaver_Business_Warehouse''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (178, 'SAP SQL Anywhere', 2, '{''qid'': ''Q2247564'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQL_Anywhere''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (179, 'SAP Web Dynpro', 2, '{''qid'': ''Q1804792'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Web_Dynpro''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (180, 'Sentry', 2, '{''qid'': ''Q3478803'', ''types'': [''Q58778''], ''url'': ''http://dbpedia.org/resource/Sentry_(monitoring_system)''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (182, 'Siebel', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (183, 'SNA Manager', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (184, 'SnagIt', 2, '{''qid'': ''Q1776235'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Snagit''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (185, 'solidDB', 2, '{''qid'': ''Q7557804'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/SolidDB''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (186, 'SonarQube', 2, '{''qid'': ''Q541691'', ''types'': [''Q28061130'', ''Q341''], ''url'': ''http://dbpedia.org/resource/SonarQube''}', 'N', 'Y', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (187, 'SpaceMonger', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (188, 'Splunk', 2, '{''qid'': ''Q1835753'', ''types'': [''Q1058914'', ''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Splunk''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (189, 'SQLIO', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (190, 'Sybase SQL Server|*', 2, '{''qid'': ''Q2576415'', ''types'': [''Q3932296''], ''url'': ''http://dbpedia.org/resource/Adaptive_Server_Enterprise''}', 'N', 'Y', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (191, 'Syncsort', 2, '{''qid'': ''Q7662279'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Syncsort''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (193, 'Sysinternal Tools|*', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (194, 'Sysinternal Tools|AccessEnum', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (195, 'Sysinternal Tools|ClockRes', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (196, 'Sysinternal Tools|Coreinfo', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (197, 'Sysinternal Tools|DiskExt', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (198, 'Sysinternal Tools|DiskMon', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (199, 'Sysinternal Tools|Hex2dec', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (200, 'Sysinternal Tools|Junction', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (201, 'Sysinternal Tools|LDMDump', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (202, 'Sysinternal Tools|LoadOrder', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (203, 'Sysinternal Tools|PipeList', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (204, 'Sysinternal Tools|Process Explorer', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (205, 'Sysinternal Tools|PsKill', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (206, 'Sysinternal Tools|PsPasswd', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (207, 'Sysinternal Tools|SDelete', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (208, 'Sysinternal Tools|ShareEnum', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (209, 'Sysinternal Tools|Sync', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (210, 'Sysinternal Tools|TCPView', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (211, 'Sysinternal Tools|VMMap', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (212, 'Sysinternal Tools|Whois', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (213, 'Tableau', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (214, 'TCPLink Enterprise Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (215, 'Teradata', 2, '{''qid'': ''Q430745'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/Teradata''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (216, 'Teradata QS Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (217, 'TIBCO Business Works (BW)|*', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (218, 'TIBCO InConcert', 2, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (219, 'TIBCO Rendezvous', 2, '{''qid'': ''Q11198794'', ''types'': [''Q1092177''], ''url'': ''http://dbpedia.org/resource/TIBCO_Rendezvous''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (220, 'Tivoli Access Manager (TAM)', 2, '{''qid'': ''None'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Access_Manager''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (221, 'TortoiseCVS', 2, '{''qid'': ''Q2883113'', ''types'': [''Q166142'', ''Q341''], ''url'': ''http://dbpedia.org/resource/TortoiseCVS''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (222, 'TortoiseSVN', 2, '{''qid'': ''Q1062467'', ''types'': [''Q166142'', ''Q1130645''], ''url'': ''http://dbpedia.org/resource/TortoiseSVN''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (223, 'TSO/ISPF', 2, '{''qid'': ''Q679906'', ''types'': [''Q131212''], ''url'': ''http://dbpedia.org/resource/ISPF''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (224, 'TWS zCentric', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (225, 'Uniface', 2, '{''qid'': ''Q2143563'', ''types'': [''Q9143'', ''Q13741'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/Uniface_(programming_language)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (226, 'ViewNow X Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (227, 'Virtual I/O Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (228, 'Visibroker', 2, '{''qid'': ''Q7936097'', ''types'': [''Q146768''], ''url'': ''http://dbpedia.org/resource/Visibroker''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (229, 'VMware Solution Exchange Marketplace (VSX)', 2, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (230, 'VMware Tools', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (231, 'VMware vCenter', 2, '{''qid'': ''Q55636858'', ''types'': [''Q218616'', ''Q1371279''], ''url'': ''None''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (232, 'WebFOCUS', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (233, 'WebLogic Integration', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (234, 'WebSphere Commerce Suite (WCS)', 2, '{''qid'': ''Q5969126'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebSphere_Commerce''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (235, 'WebSphere Message Broker', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (236, 'Wherescape Red', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (237, 'Windchill', 2, '{''qid'': ''Q8024086'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Windchill_(software)''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (238, 'Windows Indexing Service', 2, '{''qid'': ''Q575974'', ''types'': [''Q1138815''], ''url'': ''http://dbpedia.org/resource/Indexing_Service''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (239, 'Windows Terminal Server (WTS)', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (240, 'WingArc SVF', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (241, 'WinMerge', 2, '{''qid'': ''Q250602'', ''types'': [''Q341'', ''Q2990323''], ''url'': ''http://dbpedia.org/resource/WinMerge''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (242, 'WinRAR', 2, '{''qid'': ''Q242747'', ''types'': [''Q25303924'', ''Q185534''], ''url'': ''http://dbpedia.org/resource/WinRAR''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (243, 'WinSCP', 2, '{''qid'': ''Q1160381'', ''types'': [''Q3503189'', ''Q2158576'', ''Q341''], ''url'': ''http://dbpedia.org/resource/WinSCP''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (244, 'Wise Package Studio', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (245, 'Wordpress', 2, '{''qid'': ''Q13166'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/WordPress''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (246, 'XAMPP', 2, '{''qid'': ''Q324073'', ''types'': [''Q100528793'', ''Q341''], ''url'': ''http://dbpedia.org/resource/XAMPP''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (247, 'ZAP BI', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (248, 'ZeroMQ', 2, '{''qid'': ''Q8079189'', ''types'': [''Q188860'', ''Q341''], ''url'': ''http://dbpedia.org/resource/ZeroMQ''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (249, 'Zerto Virtual Replication', 2, '{''qid'': ''Q8069662'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Zerto''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (250, 'IBM PowerHA', 2, '{''qid'': ''Q10850880'', ''types'': [''Q28057052'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_High_Availability_Cluster_Multiprocessing''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (251, 'Tivoli Netcool/OMNIbus', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (252, 'IBM ILOG Views', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (253, 'IBM ILOG CPLEX', 2, '{''qid'': ''Q2372381'', ''types'': [''Q74086777''], ''url'': ''http://dbpedia.org/resource/CPLEX''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (254, 'IBM ILOG Jviews', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (255, 'IBM ILOG Elixir', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (256, 'IBM ILOG Supply Chain Apps', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (257, 'ILOG Solver', 2, '{''qid'': ''Q2011386'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/ILOG''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (258, 'SQLite', 2, '{''qid'': ''Q319417'', ''types'': [''Q35687379'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/SQLite''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (259, 'Apache HTTP Server', 8, '{''qid'': ''Q11354'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/Apache_HTTP_Server''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (260, 'Apache Tomcat', 8, '{''qid'': ''Q507430'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Apache_Tomcat''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (261, 'ArcGIS Server', 8, '{''qid'': ''Q4784987'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ArcGIS_Server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (263, 'GlassFish', 8, '{''qid'': ''Q68847'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/GlassFish''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (264, 'HAProxy', 8, '{''qid'': ''Q5628948'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/HAProxy''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (265, 'IBM HTTP Server', 8, '{''qid'': ''Q821668'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/IBM_HTTP_Server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (268, 'JBoss|*', 8, '{''qid'': ''Q485593'', ''types'': [''Q6881511'', ''Q4830453''], ''url'': ''http://dbpedia.org/resource/JBoss_(company)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (269, 'Kitura', 8, '{''qid'': ''Q28130427'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Kitura''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (270, 'Lotus Domino', 8, '{''qid'': ''Q1069529'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q1069529''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (271, 'Lucee', 8, '{''qid'': ''Q105180640'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Lucee''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (272, 'Netscape Application Server (NAS)', 8, '{''qid'': ''Q7000305'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Netscape_Application_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (273, 'Netscape Enterprise Server (NES)', 8, '{''qid'': ''Q478430'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q478430''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (274, 'Nginx', 8, '{''qid'': ''Q306144'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/Nginx''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (276, 'Oracle WebCenter Content Server|*', 8, '{''qid'': ''Q2309159'', ''types'': [''Q131093''], ''url'': ''http://dbpedia.org/resource/Oracle_WebCenter''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (277, 'Pivotal tc Server', 8, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (278, 'Resin Web Server', 8, '{''qid'': ''Q2145742'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Resin_(software)''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (279, 'SAP NetWeaver App Server|*', 8, '{''qid'': ''Q2204924'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/SAP_NetWeaver''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (280, 'Spark', 8, '{''qid'': ''Q20712258'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Spark_(software)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (281, 'Oracle iPlanet Web Server', 8, '{''qid'': ''Q1225115'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Oracle_iPlanet_Web_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (282, 'UltiDev Web Server Pro (UWS)', 8, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (283, 'webMethods Integration Server', 8, '{''qid'': ''Q7978461'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebMethods_Integration_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (284, 'Websphere Application Server (WAS)', 8, '{''qid'': ''Q81612'', ''types'': [''Q1330336'', ''Q71550''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Application_Server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (285, 'WebSphere Liberty', 8, '{''qid'': ''Q2536917'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q2536917''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (286, 'WebSphere Portal Server', 8, '{''qid'': ''Q4053022'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/WebSphere_Portal''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (287, 'Websphere Process Server', 8, '{''qid'': ''Q5969143'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_WebSphere_Process_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (289, 'Oracle Real-Time Decisions (RTD)', 8, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (290, 'CA API Gateway', 4, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (291, 'Citrix ADC SDX', 4, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (292, 'Citrix ADC MPX', 4, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (293, 'HP Nonstop', 4, '{''qid'': ''Q826798'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/NonStop_(server_computers)''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (294, 'IBM DataPower Gateway', 4, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (295, 'IBM Power Systems', 4, '{''qid'': ''Q2040857'', ''types'': [''Q10929058''], ''url'': ''http://dbpedia.org/resource/IBM_Power_Systems''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (296, 'Intel Xeon Processor', 4, '{''qid'': ''Q656154'', ''types'': [''Q431289'', ''Q12047070''], ''url'': ''http://dbpedia.org/resource/Xeon''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (297, 'Net Optics Taps', 4, '{''qid'': ''Q17114213'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Net_Optics''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (298, 'Oracle Exadata', 4, '{''qid'': ''Q4038419'', ''types'': [''Q68''], ''url'': ''http://dbpedia.org/resource/Oracle_Exadata''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (299, 'AutoIt', 9, '{''qid'': ''Q784845'', ''types'': [''Q187432'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/AutoIt''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (300, 'AWK', 9, '{''qid'': ''Q213970'', ''types'': [''Q1418502'', ''Q187432'', ''Q28919945'', ''Q18343316'', ''Q287472''], ''url'': ''http://dbpedia.org/resource/AWK''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (301, 'BASIC', 9, '{''qid'': ''Q42979'', ''types'': [''Q79872'', ''Q1418502'', ''Q28922854'', ''Q9143'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/BASIC''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (302, 'Brainscript', 9, '{}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (303, 'C', 9, '{''qid'': ''Q15777'', ''types'': [''Q28922885'', ''Q28920117'', ''Q9143'', ''Q21562092'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C_(programming_language)''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (306, 'C++|Visual C++', 9, '{''qid'': ''Q847296'', ''types'': [''Q13741'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_C++''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (307, 'Cascading Style Sheets (CSS)|*', 9, '{''qid'': ''Q46441'', ''types'': [''Q1029123''], ''url'': ''http://dbpedia.org/resource/Cascading_Style_Sheets''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (308, 'Clipper', 9, '{''qid'': ''Q834358'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Clipper_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (309, 'CLIST', 9, '{''qid'': ''Q579880'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/CLIST''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (311, 'ColdFusion Markup Language (CFML)', 9, '{''qid'': ''Q2524362'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ColdFusion_Markup_Language''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (312, 'Data Language Interface (DL/I)', 9, '{''qid'': ''Q2299300'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Data_Language_Interface''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (313, 'Delphi', 9, '{''qid'': ''Q487378'', ''types'': [''Q9143'', ''Q218616'', ''Q13741''], ''url'': ''http://dbpedia.org/resource/Delphi_(programming_language)''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (314, 'Easytrieve', 9, '{''qid'': ''Q1278381'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Easytrieve''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (315, 'Expect', 9, '{''qid'': ''Q2642029'', ''types'': [''Q9143'', ''Q28937412'', ''Q4826135'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Expect''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (316, 'eXtensible HyperText Markup Language (XHTML)', 9, '{''qid'': ''Q166074'', ''types'': [''Q20155966'', ''Q317623'', ''Q37045''], ''url'': ''http://dbpedia.org/resource/XHTML''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (318, 'Extensible Markup Language (XML)|MSXML', 9, '{''qid'': ''Q1133470'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/MSXML''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (319, 'Extensible Stylesheet Language (XSL)', 9, '{''qid'': ''Q32061'', ''types'': [''Q1029123'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/XSL''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (320, 'Extensible Stylesheet Language Transformations (XLST)', 9, '{''qid'': ''Q32110'', ''types'': [''Q2661442'', ''Q9143'', ''Q1144882'', ''Q3217190''], ''url'': ''http://dbpedia.org/resource/XSLT''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (321, 'FOCUS', 9, '{''qid'': ''Q5426833'', ''types'': [''Q238137''], ''url'': ''http://dbpedia.org/resource/FOCUS''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (322, 'Fortran', 9, '{''qid'': ''Q83303'', ''types'': [''Q28923026'', ''Q28922885'', ''Q899523'', ''Q28920117'', ''Q9143'', ''Q28920142'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Fortran''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (323, 'Go', 9, '{''qid'': ''Q37227'', ''types'': [''Q12772052'', ''Q28922885'', ''Q899523'', ''Q28920117'', ''Q9143'', ''Q28919943'', ''Q21562092'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/Go_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (324, 'GraphQL', 9, '{''qid'': ''Q25104949'', ''types'': [''Q557770'', ''Q9143'', ''Q60551191''], ''url'': ''http://dbpedia.org/resource/GraphQL''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (325, 'Groovy', 9, '{''qid'': ''Q16886826'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Skeevy''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (326, 'HiveQL', 9, '{}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (327, 'Hypertext Markup Language (HTML)', 9, '{''qid'': ''Q8811'', ''types'': [''Q2661442'', ''Q17537576'', ''Q37045'', ''Q235557'', ''Q20202982''], ''url'': ''http://dbpedia.org/resource/HTML''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (328, 'IBM High Level Assembler (HLASM)', 9, '{''qid'': ''Q4039976'', ''types'': [''Q6470767''], ''url'': ''http://dbpedia.org/resource/IBM_High_Level_Assembler''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (329, 'IBM i Control Language (CL)', 9, '{''qid'': ''Q263490'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/IBM_i_Control_Language''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (330, 'IBM Informix-4GL', 9, '{''qid'': ''Q2816938'', ''types'': [''Q9143'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/IBM_Informix-4GL''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (333, 'Java|Java Enterprise Edition (Java EE)', 9, '{''qid'': ''Q193247'', ''types'': [''Q1330336'', ''Q27493'', ''Q241317''], ''url'': ''http://dbpedia.org/resource/Java_Platform,_Enterprise_Edition''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (334, 'Java|Java Standard Edition (Java SE)', 9, '{''qid'': ''Q747478'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Java_Platform,_Standard_Edition''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (335, 'Java|JavaServer Pages (JSP)', 9, '{''qid'': ''Q183169'', ''types'': [''Q351507'', ''Q20819677'', ''Q1650567'', ''Q235557''], ''url'': ''http://dbpedia.org/resource/JavaServer_Pages''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (336, 'Java|JavaServer Pages (JSP)|Scriptlets', 9, '{''qid'': ''Q3476475'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Scriptlet''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (338, 'JCL', 9, '{''qid'': ''Q1505372'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Job_Control_Language''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (339, 'Job Information Language (JIL)', 9, '{}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (340, 'JScript', 9, '{''qid'': ''Q553514'', ''types'': [''Q4117406''], ''url'': ''http://dbpedia.org/resource/JScript''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (341, 'Lisp', 9, '{''qid'': ''Q132874'', ''types'': [''Q12772052'', ''Q28922885'', ''Q3839507'', ''Q28922887'', ''Q28922893'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Lisp_(programming_language)''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (342, 'Niakwa Programming Language (NPL)', 9, '{''qid'': ''Q6955040'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/NPL_(programming_language)''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (343, 'Objective C', 9, '{''qid'': ''Q188531'', ''types'': [''Q12772052'', ''Q28922858'', ''Q899523'', ''Q9143'', ''Q28922893''], ''url'': ''http://dbpedia.org/resource/Objective-C''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (344, 'OpenEdge ABL', 9, '{''qid'': ''Q1963461'', ''types'': [''Q899523'', ''Q9143'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/OpenEdge_Advanced_Business_Language''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (346, 'Pascal|Object Pascal', 9, '{''qid'': ''Q633894'', ''types'': [''Q12772052'', ''Q9143'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/Object_Pascal''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (348, 'Perl|ActivePerl', 9, '{''qid'': ''Q4033363'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/ActivePerl''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (349, 'Perl|Rex', 9, '{''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (351, 'PL/I', 9, '{''qid'': ''Q223433'', ''types'': [''Q9143'', ''Q28922885''], ''url'': ''http://dbpedia.org/resource/PL/I''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (352, 'PL/SQL', 9, '{''qid'': ''Q41574'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/PL/SQL''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (353, 'PRO*C', 9, '{''qid'': ''Q2111340'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Pro*C''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (355, 'R', 9, '{''qid'': ''Q206904'', ''types'': [''Q9143'', ''Q1004415''], ''url'': ''http://dbpedia.org/resource/R_(programming_language)''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (356, 'Rexx', 9, '{''qid'': ''Q685820'', ''types'': [''Q9143'', ''Q28937412'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Rexx''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (357, 'RPG', 9, '{''qid'': ''Q840543'', ''types'': [''Q9143'', ''Q28922885''], ''url'': ''http://dbpedia.org/resource/IBM_RPG''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (359, 'Salesforce Object Query Language (SOQL)', 9, '{}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (360, 'SAS', 9, '{''qid'': ''Q2003932'', ''types'': [''Q9143'', ''Q13199995'', ''Q238137''], ''url'': ''http://dbpedia.org/resource/SAS_(software)''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (361, 'Sass', 9, '{''qid'': ''Q1572865'', ''types'': [''Q9143'', ''Q1029123'', ''Q50843083'', ''Q918333''], ''url'': ''http://dbpedia.org/resource/Sass_(stylesheet_language)''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (362, 'Scala', 9, '{''qid'': ''Q460584'', ''types'': [''Q12772052'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q56062429''], ''url'': ''http://dbpedia.org/resource/Scala_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (363, 'Smalltalk', 9, '{''qid'': ''Q235086'', ''types'': [''Q9143'', ''Q28922858'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/Smalltalk''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (364, 'Swift', 9, '{''qid'': ''Q17118377'', ''types'': [''Q12772052'', ''Q28923023'', ''Q3839507'', ''Q899523'', ''Q341'', ''Q9143'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Swift_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (365, 'TCL', 9, '{''qid'': ''Q5288'', ''types'': [''Q12772052'', ''Q28922885'', ''Q899523'', ''Q187432'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Tcl''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (366, 'Transact-SQL', 9, '{''qid'': ''Q1411245'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Transact-SQL''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (367, 'TypeScript', 9, '{''qid'': ''Q978185'', ''types'': [''Q9143'', ''Q341''], ''url'': ''http://dbpedia.org/resource/TypeScript''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (368, 'VB.NET', 9, '{''qid'': ''Q50077'', ''types'': [''Q2378'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_Basic_.NET''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (369, 'VBScript', 9, '{''qid'': ''Q13743'', ''types'': [''Q187432'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/VBScript''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (370, 'Visual Basic', 9, '{''qid'': ''Q2378'', ''types'': [''Q28922885'', ''Q899523'', ''Q9143'', ''Q42979'', ''Q28920813''], ''url'': ''http://dbpedia.org/resource/Visual_Basic''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (371, 'Visual Basic for Applications (VBA)', 9, '{''qid'': ''Q667566'', ''types'': [''Q2378'', ''Q9143'', ''Q4117406''], ''url'': ''http://dbpedia.org/resource/Visual_Basic_for_Applications''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (372, 'Visual FoxPro', 9, '{''qid'': ''Q753868'', ''types'': [''Q9143'', ''Q28922885'', ''Q899523'', ''Q13741''], ''url'': ''http://dbpedia.org/resource/Visual_FoxPro''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (373, 'VoiceXML', 9, '{''qid'': ''Q776038'', ''types'': [''Q20155966''], ''url'': ''http://dbpedia.org/resource/VoiceXML''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (374, 'Xbase++', 9, '{''qid'': ''Q1753410'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/XBase++''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (375, 'Apache Lucene', 12, '{''qid'': ''Q773196'', ''types'': [''Q188860'', ''Q19541'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Lucene''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (376, 'Apache Xerces', 12, '{''qid'': ''Q629740'', ''types'': [''Q188860'', ''Q1130645''], ''url'': ''http://dbpedia.org/resource/Xerces''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (377, 'Cascading Style Sheets (CSS)|Bootstrap', 12, '{''qid'': ''Q1195936'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Bootstrapping''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (378, 'Java|Apache Camel', 12, '{''qid'': ''Q616626'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_Camel''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (379, 'Java|Apache Commons BeanUtils', 12, '{''qid'': ''Q28916245'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q28916245''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (380, 'Java|Apache PDFBox', 12, '{''qid'': ''Q17512395'', ''types'': [''Q21127166'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Apache_PDFBox''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (381, 'Java|Apache Velocity', 12, '{''qid'': ''Q617156'', ''types'': [''Q351507'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Apache_Velocity''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (382, 'Java|EclipseLink', 12, '{''qid'': ''Q897058'', ''types'': [''Q506883''], ''url'': ''http://dbpedia.org/resource/EclipseLink''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (383, 'Java|Enterprise JavaBeans (EJB)', 12, '{''qid'': ''Q742961'', ''types'': [''Q20819677'', ''Q609588''], ''url'': ''http://dbpedia.org/resource/Enterprise_JavaBeans''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (384, 'Java|EZMorph', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (385, 'Java|Google Web Toolkit (GWT)', 12, '{''qid'': ''Q79578'', ''types'': [''Q2533324'', ''Q1193246'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Google_Web_Toolkit''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (386, 'Java|Hibernate', 12, '{''qid'': ''Q747866'', ''types'': [''Q1172354'', ''Q7170392'', ''Q58748'', ''Q5227234'', ''Q341'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Hibernate_(framework)''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (387, 'Java|IBM SDK', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (388, 'Java|Java Development Kit (JDK)', 12, '{''qid'': ''Q741303'', ''types'': [''Q467707''], ''url'': ''http://dbpedia.org/resource/Java_Development_Kit''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (389, 'Java|Java Message Service (JMS)', 12, '{''qid'': ''Q755515'', ''types'': [''Q20819677'', ''Q1092177''], ''url'': ''http://dbpedia.org/resource/Java_Message_Service''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (390, 'Java|Java Web Start', 12, '{''qid'': ''Q33079'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Java_Web_Start''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (391, 'Java|JavaServer Faces (JSF)', 12, '{''qid'': ''Q729427'', ''types'': [''Q1330336'', ''Q20819677''], ''url'': ''http://dbpedia.org/resource/JavaServer_Faces''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (392, 'Java|JDBC', 12, '{''qid'': ''Q722772'', ''types'': [''Q1172354'', ''Q165194'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/Java_Database_Connectivity''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (393, 'Java|JRuby Core', 12, '{''qid'': ''Q605718'', ''types'': [], ''url'': ''http://dbpedia.org/resource/JRuby''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (394, 'Java|Log4j', 12, '{''qid'': ''Q286923'', ''types'': [''Q22003134''], ''url'': ''http://dbpedia.org/resource/Log4j''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (395, 'Java|Quartz', 12, '{''qid'': ''Q2122405'', ''types'': [''Q341''], ''url'': ''http://dbpedia.org/resource/Quartz_(scheduler)''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (396, 'Java|Remote Method Invocation (RMI)', 12, '{''qid'': ''Q61902'', ''types'': [''Q1799072''], ''url'': ''http://dbpedia.org/resource/Java_remote_method_invocation''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (397, 'Java|Servlet', 12, '{''qid'': ''Q341'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Free_software''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (398, 'Java|Spring', 12, '{''qid'': ''Q720314'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q720314''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (399, 'Java|Spring|Spring Boot', 12, '{''qid'': ''Q98731994'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q98731994''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (400, 'Java|Spring|Spring Cloud Data Flow', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (401, 'Java|Spring|Spring MVC', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (402, 'Java|Struts', 12, '{''qid'': ''Q900957'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Apache_Struts_1''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (403, 'Java|Swing', 12, '{''qid'': ''Q859221'', ''types'': [''Q21127166''], ''url'': ''http://dbpedia.org/resource/Swing_(Java)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (404, 'Java|Vaadin', 12, '{''qid'': ''Q1400683'', ''types'': [''Q1330336'', ''Q386275'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/Vaadin''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (405, 'JavaScript|AJAX', 12, '{''qid'': ''Q134471'', ''types'': [''Q9143'', ''Q918270'', ''Q101244''], ''url'': ''http://dbpedia.org/resource/Ajax_(programming)''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (406, 'JavaScript|AngularJS', 12, '{''qid'': ''Q2849803'', ''types'': [''Q188860'', ''Q783866'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/AngularJS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (407, 'JavaScript|Draw2D', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (408, 'JavaScript|Express.js', 12, '{''qid'': ''Q16878131'', ''types'': [''Q1330336''], ''url'': ''http://dbpedia.org/resource/Express.js''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (409, 'JavaScript|Ext JS', 12, '{''qid'': ''Q515393'', ''types'': [''Q1193246'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/Ext_JS''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (410, 'JavaScript|jqGrid', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (411, 'JavaScript|JQuery', 12, '{''qid'': ''Q230036'', ''types'': [''Q170584'', ''Q188860'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/JQuery''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (412, 'JavaScript|Jquery|jQuery UI', 12, '{''qid'': ''Q285960'', ''types'': [], ''url'': ''http://dbpedia.org/resource/JQuery_UI''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (413, 'JavaScript|React', 12, '{''qid'': ''Q19399674'', ''types'': [''Q1330336'', ''Q783866'', ''Q341''], ''url'': ''http://dbpedia.org/resource/React_(JavaScript_library)''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (414, 'JavaScript|script.aculo.us', 12, '{''qid'': ''Q309509'', ''types'': [''Q188860'', ''Q783866''], ''url'': ''http://dbpedia.org/resource/Script.aculo.us''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (415, 'JavaScript|Valums AJAX File Uploader', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (416, 'OWASP Enterprise Security API (ESAPI)', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (417, 'Perl|Oraperl', 12, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (418, 'Android', 6, '{''qid'': ''Q94'', ''types'': [''Q920890''], ''url'': ''http://dbpedia.org/resource/Android_(operating_system)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (419, 'BeOS', 6, '{''qid'': ''Q62563'', ''types'': [''Q218616'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/BeOS''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (420, 'Cisco IOS', 6, '{''qid'': ''Q753576'', ''types'': [''Q282080''], ''url'': ''http://dbpedia.org/resource/Cisco_IOS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (421, 'DART', 6, '{''qid'': ''Q406009'', ''types'': [''Q1330336'', ''Q12772052'', ''Q899523'', ''Q3839507'', ''Q187432'', ''Q28922893'', ''Q21562092''], ''url'': ''http://dbpedia.org/resource/Dart_(programming_language)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (422, 'Fabric OS', 6, '{''qid'': ''Q5428124'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Fabric_OS''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (423, 'GNU', 6, '{''qid'': ''Q44571'', ''types'': [''Q9135'', ''Q11368''], ''url'': ''http://dbpedia.org/resource/GNU''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (424, 'IBM i', 6, '{''qid'': ''Q15637561'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/IBM_i''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (425, 'iOS', 6, '{''qid'': ''Q48493'', ''types'': [''Q920890'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/IOS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (427, 'Linux|CentOS', 6, '{''qid'': ''Q207542'', ''types'': [''Q131669'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/CentOS''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (428, 'Linux|Check Point', 6, '{''qid'': ''Q751519'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q751519''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (429, 'Linux|Debian', 6, '{''qid'': ''Q7715973'', ''types'': [''Q20983788'', ''Q3251801''], ''url'': ''http://dbpedia.org/resource/Debian''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (430, 'Linux|Junos OS', 6, '{''qid'': ''Q4041744'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Junos_OS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (431, 'Linux|openSUSE', 6, '{''qid'': ''Q16691'', ''types'': [''Q131669'', ''Q388'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/OpenSUSE''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (432, 'Linux|Oracle Linux', 6, '{''qid'': ''Q46094'', ''types'': [''Q131669'', ''Q977076''], ''url'': ''http://dbpedia.org/resource/Oracle_Linux''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (433, 'Linux|Photon OS', 6, '{''qid'': ''Q105703682'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q105703682''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (434, 'Linux|Red Hat Enterprise Linux', 6, '{''qid'': ''Q215273'', ''types'': [''Q9135'', ''Q131669''], ''url'': ''http://dbpedia.org/resource/Red_Hat_Enterprise_Linux''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (435, 'Linux|SUSE Linux Enterprise Server', 6, '{''qid'': ''Q1759786'', ''types'': [''Q131669''], ''url'': ''http://dbpedia.org/resource/SUSE_Linux_Enterprise_Server''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (436, 'Linux|Ubuntu', 6, '{''qid'': ''Q381'', ''types'': [''Q131669'', ''Q5276054'', ''Q20983788'', ''Q3251801''], ''url'': ''http://dbpedia.org/resource/Ubuntu_(operating_system)''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (437, 'Linux|zLinux', 6, '{''qid'': ''Q136277'', ''types'': [''Q388''], ''url'': ''http://dbpedia.org/resource/Linux_on_z_Systems''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (438, 'macOS', 6, '{''qid'': ''Q14116'', ''types'': [''Q43627'', ''Q218616'', ''Q811701'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/MacOS''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (440, 'MVS|OS/390', 6, '{''qid'': ''Q1726891'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/OS/390''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (441, 'MVS|z/OS', 6, '{''qid'': ''Q283705'', ''types'': [''Q14656''], ''url'': ''http://dbpedia.org/resource/Z/OS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (442, 'OpenVMS', 6, '{''qid'': ''Q479882'', ''types'': [''Q9135'', ''Q218616'', ''Q3496042''], ''url'': ''http://dbpedia.org/resource/OpenVMS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (443, 'OS/2', 6, '{''qid'': ''Q189794'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/OS/2''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (445, 'Unix|AIX', 6, '{''qid'': ''Q269856'', ''types'': [''Q218616'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/IBM_AIX''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (447, 'Unix|BSD|FreeBSD', 6, '{''qid'': ''Q34236'', ''types'': [], ''url'': ''http://dbpedia.org/resource/FreeBSD''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (448, 'Unix|BSD|SunOS', 6, '{''qid'': ''Q1208460'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/SunOS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (449, 'Unix|HP-UX', 6, '{''qid'': ''Q847593'', ''types'': [''Q14656''], ''url'': ''http://dbpedia.org/resource/HP-UX''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (451, 'Windows|Windows Desktop', 6, '{''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (452, 'Windows|Windows Server', 6, '{''qid'': ''Q11219'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Windows_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (453, 'Linux|Fedora', 6, '{''qid'': ''Q48267'', ''types'': [''Q131669'', ''Q20983788''], ''url'': ''http://dbpedia.org/resource/Fedora_(operating_system)''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (454, 'Linux|Amazon Linux', 6, '{''qid'': ''Q68223191'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q68223191''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (455, 'Clarify|Clear Basic', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (456, 'Eclipse|ATLAS Transformation Language (ATL)', 5, '{''qid'': ''Q667812'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ATLAS_Transformation_Language''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (457, 'IBM BigFix Platform|Client Deploy Tool', 5, '{''qid'': ''Q1420900'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Microsoft_Deployment_Toolkit''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (458, 'IBM Integration Bus|Extended Structured Query Language (ESQL)', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (459, 'IBM Tivoli Asset Management|Asset Discovery for Distributed', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (460, 'IBM Tivoli Storage Manager|TSM API', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (461, 'IBM Tivoli Storage Manager|TSM Client', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (462, 'IBM Tivoli Storage Manager|TSM Storage Agent', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (463, 'IBM Tivoli Storage Manager|VSS Requestor', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (464, 'Microsoft Exchange Server|Veeam Explorer', 5, '{''qid'': ''Q22096414'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q22096414''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (465, 'MS SQL Server|MS SQL Server Browser', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (466, 'MS SQL Server|Data Transformation Services', 5, '{''qid'': ''Q644775'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Data_Transformation_Services''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (467, 'MS SQL Server|Log Reader Agent', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (468, 'MS SQL Server|SQL Server Analysis Services (SSAS)', 5, '{''qid'': ''Q2067216'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Microsoft_Analysis_Services''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (469, 'MS SQL Server|SQL Server Database Engine', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (470, 'MS SQL Server|SQL Server Integration Services (SSIS)', 5, '{''qid'': ''Q1231051'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Integration_Services''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (471, 'MS SQL Server|SQL Server Management Studio', 5, '{''qid'': ''Q4048883'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Management_Studio''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (472, 'MS SQL Server|SQL Server Report Builder', 5, '{''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (473, 'MS SQL Server|SQL Server Reporting Services (SSRS)', 5, '{''qid'': ''Q846897'', ''types'': [''Q7314108''], ''url'': ''http://dbpedia.org/resource/SQL_Server_Reporting_Services''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (474, 'Oracle Database|Jserver', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (475, 'Oracle Database|Oracle Spatial and Graph', 5, '{''qid'': ''Q3508244'', ''types'': [''Q7397'', ''Q176165''], ''url'': ''http://dbpedia.org/resource/Oracle_Spatial_and_Graph''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (476, 'SAP ERP|SAP EHP', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (477, 'SAP ERP|SAP Kernel', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (478, 'Oracle Database|SQL*Plus', 5, '{''qid'': ''Q2575010'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/SQL*Plus''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (479, 'Sybase SQL Server|Sybase Central', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (480, 'Sybase SQL Server|Sybase Dsedit', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (481, 'TIBCO Business Works (BW)|Integration Manager', 5, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (482, '.NET Framework|Common Runtime Library', 7, '{''qid'': ''Q1444922'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Runtime_library''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (483, '.NET Framework|log4net', 7, '{''qid'': ''Q7884429'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q7884429''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (484, '.NET Framework|Magick.NET', 7, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (485, '.NET Framework|Windows Communication Foundation (WCF)', 7, '{''qid'': ''Q261595'', ''types'': [''Q40056'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Communication_Foundation''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (486, '.NET Framework|Windows Workflow Foundation (WF)', 7, '{''qid'': ''Q1154450'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Workflow_Foundation''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (487, '.NET Framework|WinForms', 7, '{''qid'': ''Q613361'', ''types'': [''Q1193246'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/Windows_Forms''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (488, 'ActiveX|ADO', 7, '{''qid'': ''Q344005'', ''types'': [''Q165194''], ''url'': ''http://dbpedia.org/resource/ActiveX_Data_Objects''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (489, 'IIS|Easy Migration Tool (IEMT)', 7, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (490, 'IIS|Application Request Routing (ARR)', 7, '{''qid'': ''Q16987674'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/Application_Request_Routing''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (491, 'IIS|IIS Manager', 7, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (492, 'JBoss|JBoss Seam', 7, '{''qid'': ''Q923560'', ''types'': [''Q1330336'', ''Q341''], ''url'': ''http://dbpedia.org/resource/JBoss_Seam''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (493, 'JBoss|Wildfly', 7, '{''qid'': ''Q68850'', ''types'': [''Q71550'', ''Q341''], ''url'': ''http://dbpedia.org/resource/WildFly''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (494, 'Oracle Application Server|Oracle Transparent Gateway', 7, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (495, 'Oracle WebCenter Content Server|Idoc Script', 7, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (496, 'SAP NetWeaver App Server|ABAP', 7, '{''qid'': ''Q380523'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/ABAP''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (497, '.NET Framework|*', 10, '{''qid'': ''Q5289'', ''types'': [''Q241317'', ''Q271680''], ''url'': ''http://dbpedia.org/resource/.NET_Framework''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (498, 'Active Directory (AD)', 10, '{''qid'': ''Q55692'', ''types'': [''Q756230''], ''url'': ''http://dbpedia.org/resource/Active_Directory''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (500, 'ActiveX|*', 10, '{''qid'': ''Q302022'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/ActiveX''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (501, 'Apache Cordova', 10, '{''qid'': ''Q16626338'', ''types'': [''Q6934955''], ''url'': ''http://dbpedia.org/resource/Apache_Cordova''}', 'Y', 'N', 'N', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (502, 'CICS', 10, '{''qid'': ''Q1146247'', ''types'': [''Q9143'', ''Q4388320''], ''url'': ''http://dbpedia.org/resource/CICS''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (503, 'Docker', 10, '{''qid'': ''Q15206305'', ''types'': [''Q167772'', ''Q7935198'', ''Q506883''], ''url'': ''http://dbpedia.org/resource/Docker_(software)''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (504, 'Flash', 10, '{''qid'': ''Q165658'', ''types'': [''Q1155404'', ''Q241317'', ''Q2622299'', ''Q166142''], ''url'': ''http://dbpedia.org/resource/Adobe_Flash''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (505, 'HTTP File Server', 10, '{''qid'': ''Q1566096'', ''types'': [''Q11288''], ''url'': ''http://dbpedia.org/resource/HTTP_File_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (506, 'Java Runtime Environment (JRE)', 10, '{''qid'': ''Q1504505'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q1504505''}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (507, 'Node.js', 10, '{''qid'': ''Q756100'', ''types'': [''Q28920813''], ''url'': ''http://dbpedia.org/resource/Node.js''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (508, 'Ruby on Rails', 10, '{''qid'': ''Q190478'', ''types'': [''Q1330336'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Ruby_on_Rails''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (509, 'VisualForce', 10, '{}', 'Y', 'Y', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (510, 'EMC Celerra', 11, '{''qid'': ''Q5057823'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Celerra''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (511, 'Application Lifecycle Management (ALM)', 1, '{''qid'': ''Q621590'', ''types'': [''Q1780667''], ''url'': ''http://dbpedia.org/resource/Application_lifecycle_management''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (512, 'Assembler Language', 1, '{''qid'': ''Q165436'', ''types'': [''Q28922854'', ''Q9143'', ''Q558937''], ''url'': ''http://dbpedia.org/resource/Assembly_language''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (513, 'Batch Management Software (BMS)', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (514, 'Business Object Reports', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (515, 'Common Gateway Interface (CGI)', 1, '{''qid'': ''Q264364'', ''types'': [''Q11016'', ''Q132364''], ''url'': ''http://dbpedia.org/resource/Common_Gateway_Interface''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (516, 'Compopent Object Model (COM)', 1, '{''qid'': ''Q662200'', ''types'': [''Q271680''], ''url'': ''http://dbpedia.org/resource/Component_Object_Model''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (517, 'Common Object Request Broker Architecture (CORBA)', 1, '{''qid'': ''Q691593'', ''types'': [''Q317623''], ''url'': ''http://dbpedia.org/resource/Common_Object_Request_Broker_Architecture''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (518, 'CORBA Interface Definition Language (CORBA IDL)', 1, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (519, 'Data Control Language (DCL)', 1, '{''qid'': ''Q604737'', ''types'': [''Q41591651''], ''url'': ''http://dbpedia.org/resource/Data_control_language''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (520, 'Database (DB)', 1, '{''qid'': ''Q8513'', ''types'': [''Q15401930'', ''Q386724'', ''Q28813620''], ''url'': ''http://dbpedia.org/resource/Database''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (521, 'Electronic Data Interchange (EDI)', 1, '{''qid'': ''Q690189'', ''types'': [''Q2989673''], ''url'': ''http://dbpedia.org/resource/Electronic_data_interchange''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (522, 'Application Web Server', 1, '{''qid'': ''Q11288'', ''types'': [''Q1371279'', ''Q4485156'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Web_server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (523, 'Java-based Document Object Model for XML (JDOM)', 1, '{''qid'': ''Q359595'', ''types'': [''Q341'', ''Q21127166''], ''url'': ''http://dbpedia.org/resource/JDOM''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (524, 'Lightweight Directory Access Protocol (LDAP)', 1, '{''qid'': ''Q188816'', ''types'': [''Q756230'', ''Q15836568''], ''url'': ''http://dbpedia.org/resource/Lightweight_Directory_Access_Protocol''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (525, 'Open Database Connectivity (ODBC)', 1, '{''qid'': ''Q212606'', ''types'': [''Q165194'', ''Q1172367''], ''url'': ''http://dbpedia.org/resource/Open_Database_Connectivity''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (526, 'Order Management System (OMS)', 1, '{''qid'': ''Q7100437'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Order_management_system''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (527, 'Oracle Web Services', 1, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (529, 'Representational State Transfer (REST)', 1, '{''qid'': ''Q749568'', ''types'': [''Q220644''], ''url'': ''http://dbpedia.org/resource/Representational_state_transfer''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (530, 'Service-Oriented Architecture (SOA)', 1, '{''qid'': ''Q220644'', ''types'': [''Q846636''], ''url'': ''http://dbpedia.org/resource/Service-oriented_architecture''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (531, 'Simple Object Access Protocol (SOAP)', 1, '{''qid'': ''Q189620'', ''types'': [''Q15836568''], ''url'': ''http://dbpedia.org/resource/SOAP''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (533, 'YAML', 1, '{''qid'': ''Q281876'', ''types'': [''Q37045'', ''Q50843083'', ''Q235557'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/YAML''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (535, 'Application Server', 1, '{''qid'': ''Q71550'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/Application_server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (536, 'Cloud', 1, '{''qid'': ''Q483639'', ''types'': [''Q771906'', ''Q241317''], ''url'': ''http://dbpedia.org/resource/Cloud_computing''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (537, 'Competency and Quality Assurance Server', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (538, 'Device Provisioning Engines (DPE)', 1, '{''qid'': ''Q5318925'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Dynamic_provisioning_environment''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (539, 'E-business solution', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (540, 'Enterprise Service Bus(ESB)', 1, '{''qid'': ''Q1061460'', ''types'': [''Q146923''], ''url'': ''http://dbpedia.org/resource/Enterprise_service_bus''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (541, 'File Server', 1, '{''qid'': ''Q513349'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/File_server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (542, 'General Ledger', 1, '{''qid'': ''Q1977520'', ''types'': [''Q3831821'', ''Q4116214''], ''url'': ''http://dbpedia.org/resource/General_ledger''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (543, 'HTTP client', 1, '{''qid'': ''Q2979024'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q2979024''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (545, 'Integrated Safe System of Work (ISSOW)', 1, '{''qid'': ''Q5974495'', ''types'': [''Q317623''], ''url'': ''http://dbpedia.org/resource/ISSOW''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (546, 'Internet Exchange Point - Full Stack (ixp-ft)', 1, '{''qid'': ''Q1433061'', ''types'': [''Q173106'', ''Q1293220''], ''url'': ''http://dbpedia.org/resource/Internet_exchange_point''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (547, 'Internet Message Access Protocol (IMAP)', 1, '{''qid'': ''Q166936'', ''types'': [''Q16935517'', ''Q15836568''], ''url'': ''http://dbpedia.org/resource/Internet_Message_Access_Protocol''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (548, 'JSON', 1, '{''qid'': ''Q2063'', ''types'': [''Q681263'', ''Q235557'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/JSON''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (549, 'KVS Application Server', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (550, 'KVS File Server', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (551, 'KVS Proxy Server', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (552, 'mainframe', 1, '{''qid'': ''Q177234'', ''types'': [''Q64729893''], ''url'': ''http://dbpedia.org/resource/Mainframe_computer''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (553, 'Manufacturing Execution System (MES)', 1, '{''qid'': ''Q1404943'', ''types'': [''Q489371''], ''url'': ''http://dbpedia.org/resource/Manufacturing_execution_system''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (554, 'Mobile', 1, '{''qid'': ''Q2738570'', ''types'': [''Q179310''], ''url'': ''http://dbpedia.org/resource/Mobile_computing''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (555, 'NonSQL', 1, '{''qid'': ''Q5999165'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q5999165''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (556, 'SaaS', 1, '{''qid'': ''Q1254596'', ''types'': [''Q8187769'', ''Q25036597'', ''Q17155032'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/Software_as_a_service''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (557, 'Storage Area Network (SAN)', 1, '{''qid'': ''Q237576'', ''types'': [''Q15141646'', ''Q994895'', ''Q1301371''], ''url'': ''http://dbpedia.org/resource/Storage_area_network''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (558, 'Supplier Registration System Application Server', 1, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (559, 'Virtual Appliance', 1, '{''qid'': ''Q752708'', ''types'': [''None''], ''url'': ''http://dbpedia.org/resource/Virtual_appliance''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (560, 'Webtop', 1, '{''qid'': ''Q1780763'', ''types'': [''Q1668024''], ''url'': ''http://dbpedia.org/resource/Web_desktop''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (561, 'Proxy Server', 1, '{''qid'': ''Q11189'', ''types'': [''Q1371279''], ''url'': ''http://dbpedia.org/resource/Proxy_server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (562, 'Utility', 1, '{''qid'': ''Q312466'', ''types'': [''Q40056'', ''Q676202'', ''Q17155032''], ''url'': ''http://dbpedia.org/resource/Utility_software''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (563, 'Citrix ADC', 3, '{''qid'': ''Q12040775'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q12040775''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (564, 'Citrix ADC VPX', 3, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (565, 'Citrix ADC BLX', 3, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (566, 'InterScan Messaging Security Virtual Appliance (IMSVA)', 3, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (567, 'Oracle VM', 3, '{''qid'': ''Q10852040'', ''types'': [], ''url'': ''http://dbpedia.org/resource/Oracle_VM_Server_for_x86''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (568, 'VMware ESXi', 3, '{''qid'': ''Q179116'', ''types'': [''Q1077480'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/VMware_ESXi''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (569, 'VMware Server', 3, '{''qid'': ''Q4007037'', ''types'': [''Q1077480''], ''url'': ''http://dbpedia.org/resource/VMware_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (572, 'Structured Query Language (SQL)', 1, '{''qid'': ''Q47607'', ''types'': [''Q9143'', ''Q1144882'', ''Q845739'', ''Q691358''], ''url'': ''http://dbpedia.org/resource/SQL''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (574, 'Model view controller (MVC)', 1, '{''qid'': ''Q44860'', ''types'': [''Q635346'', ''Q181156''], ''url'': ''http://dbpedia.org/resource/Modelûviewûcontroller''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (576, 'Linux|*', 6, '{''qid'': ''Q388'', ''types'': [''Q14656'', ''Q16889133'', ''Q341''], ''url'': ''http://dbpedia.org/resource/Linux''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (577, 'MVS|*', 6, '{''qid'': ''Q781443'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/MVS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (578, 'Unix|*', 6, '{''qid'': ''Q11368'', ''types'': [''Q170584'', ''Q14656''], ''url'': ''http://dbpedia.org/resource/Unix''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (579, 'Unix|BSD|*', 6, '{''qid'': ''Q34264'', ''types'': [''Q11368''], ''url'': ''http://dbpedia.org/resource/Berkeley_Software_Distribution''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (580, 'Windows|*', 6, '{''qid'': ''Q1406'', ''types'': [''Q9135'', ''Q218616''], ''url'': ''http://dbpedia.org/resource/Microsoft_Windows''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (581, 'MS SQL Server|*', 2, '{''qid'': ''Q215819'', ''types'': [''Q218616'', ''Q3932296''], ''url'': ''http://dbpedia.org/resource/Microsoft_SQL_Server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (582, 'C#', 9, '{''qid'': ''Q2370'', ''types'': [''Q9143'', ''Q12772052''], ''url'': ''http://dbpedia.org/resource/C_Sharp_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (583, 'C++|*', 9, '{''qid'': ''Q2407'', ''types'': [''Q28923026'', ''Q12772052'', ''Q28922885'', ''Q899523'', ''Q3839507'', ''Q9143'', ''Q5499621'', ''Q651794''], ''url'': ''http://dbpedia.org/resource/C++''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (584, 'Java|*', 9, '{''qid'': ''Q251'', ''types'': [''Q12772052'', ''Q56062429'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Java_(programming_language)''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (585, 'Perl|*', 9, '{''qid'': ''Q42478'', ''types'': [''Q9143''], ''url'': ''http://dbpedia.org/resource/Perl''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (586, 'PHP', 9, '{''qid'': ''Q59'', ''types'': [''Q1993334''], ''url'': ''http://dbpedia.org/resource/PHP''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (587, 'Python', 9, '{''qid'': ''Q28865'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Python_(programming_language)''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (588, 'Ruby', 9, '{''qid'': ''Q161053'', ''types'': [''Q899523''], ''url'': ''http://dbpedia.org/resource/Ruby_(programming_language)''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (589, 'JavaScript|*', 9, '{''qid'': ''Q2005'', ''types'': [''Q241317'', ''Q12772052'', ''Q3839507'', ''Q187432'', ''Q9143'', ''Q28920810'', ''Q21562092'', ''Q28920813'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/JavaScript''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (590, 'Unix|BSD|OpenBSD', 6, '{''qid'': ''Q34215'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34215''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (591, 'z/VSE', 6, '{''qid'': ''Q289345'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/VSE_(operating_system)''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (592, 'Active Server Pages (ASP)', 9, '{''qid'': ''Q344266'', ''types'': [''Q1330336'', ''Q9143''], ''url'': ''http://dbpedia.org/resource/Active_Server_Pages''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (593, 'MS-DOS', 6, '{''qid'': ''Q47604'', ''types'': [''Q9135'', ''Q241317'', ''Q170434''], ''url'': ''http://dbpedia.org/resource/MS-DOS''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (594, 'COBOL', 9, '{''qid'': ''Q131140'', ''types'': [''Q9143'', ''Q28922885'', ''Q21562092'', ''Q899523''], ''url'': ''http://dbpedia.org/resource/COBOL''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (595, 'VME', 6, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (596, 'Extensible Markup Language (XML)|*', 9, '{''qid'': ''Q2115'', ''types'': [''Q82753'', ''Q37045'', ''Q24451526''], ''url'': ''http://dbpedia.org/resource/XML''}', 'N', 'Y', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (597, 'DOS/360', 6, '{''qid'': ''Q3487917'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/DOS/360_and_successors''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (598, 'z/TPF', 6, '{''qid'': ''Q1426122'', ''types'': [''Q9135''], ''url'': ''http://dbpedia.org/resource/Transaction_Processing_Facility''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (599, 'Pascal|*', 9, '{''qid'': ''Q81571'', ''types'': [''Q9143'', ''Q21562092'', ''Q1993334''], ''url'': ''http://dbpedia.org/resource/Pascal_(programming_language)''}', 'Y', 'Y', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (600, 'Oracle WebLogic Server', 8, '{''qid'': ''Q83589'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_WebLogic_Server''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (601, 'Websphere ILOG JRules BRMS', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (602, 'Unix|BSD|NetBSD', 6, '{''qid'': ''Q34225'', ''types'': [], ''url'': ''https://www.wikidata.org/wiki/Q34225''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (603, 'SharePoint', 2, '{''qid'': ''Q18833'', ''types'': [''Q1371279'', ''Q1344636'', ''Q131093'', ''Q831677'', ''Q615985''], ''url'': ''http://dbpedia.org/resource/SharePoint''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (604, 'IBM Tivoli Storage Manager|*', 2, '{''qid'': ''Q2001900'', ''types'': [''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_Tivoli_Storage_Manager''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (605, 'IBM Spectrum Scale', 2, '{''qid'': ''Q2389927'', ''types'': [''Q174989'', ''Q7397''], ''url'': ''http://dbpedia.org/resource/IBM_General_Parallel_File_System''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (606, 'IBM Tivoli Asset Management|*', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (607, 'Oracle Hyperion|*', 2, '{''qid'': ''Q1431991'', ''types'': [''Q4830453''], ''url'': ''http://dbpedia.org/resource/Oracle_Hyperion''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (608, 'z/VM', 6, '{''qid'': ''Q1399696'', ''types'': [''Q9135'', ''Q1077480''], ''url'': ''http://dbpedia.org/resource/Z/VM''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (609, 'IIS|*', 8, '{''qid'': ''Q11341'', ''types'': [''Q218616'', ''Q18287040''], ''url'': ''http://dbpedia.org/resource/Internet_Information_Services''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (610, 'Oracle Application Server|*', 8, '{''qid'': ''Q2027912'', ''types'': [''Q71550''], ''url'': ''http://dbpedia.org/resource/Oracle_Application_Server''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (611, 'instana', 10, '{''qid'': ''Q107383927'', ''url'': ''https://www.wikidata.org/wiki/Q107383927''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (612, 'credstash', 2, '{''qid'': ''Q107384165'', ''url'': ''https://www.wikidata.org/wiki/Q107384165''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (613, 'Snyk', 2, '{''qid'': ''Q108282404'', ''url'': ''https://www.wikidata.org/wiki/Q108282404''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (614, 'Akka', 2, '{''qid'': ''Q16002307'', ''url'': ''https://www.wikidata.org/wiki/Q16002307''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (615, 'Varnish', 8, '{''qid'': ''Q1602447'', ''url'': ''https://www.wikidata.org/wiki/Q1602447''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (616, 'Datadog', 10, '{''qid'': ''Q16248637'', ''url'': ''https://www.wikidata.org/wiki/Q16248637''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (617, 'API', 1, '{''qid'': ''Q165194'', ''url'': ''https://www.wikidata.org/wiki/Q165194''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (618, 'Hazelcast', 10, '{''qid'': ''Q17021540'', ''url'': ''https://www.wikidata.org/wiki/Q17021540''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (619, 'Infinispan', 2, '{''qid'': ''Q18152516'', ''url'': ''https://www.wikidata.org/wiki/Q18152516''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (620, 'Nuxeo', 10, '{''qid'': ''Q2004521'', ''url'': ''https://www.wikidata.org/wiki/Q2004521''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (621, 'ArangoDB', 2, '{''qid'': ''Q20072115'', ''url'': ''https://www.wikidata.org/wiki/Q20072115''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (622, 'Eclipse|Eclipse Che', 2, '{''qid'': ''Q25000883'', ''url'': ''https://www.wikidata.org/wiki/Q25000883''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (623, 'Amazon S3', 2, '{''qid'': ''Q2593067'', ''url'': ''https://www.wikidata.org/wiki/Q2593067''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (624, 'ClickHouse', 2, '{''qid'': ''Q27825826'', ''url'': ''https://www.wikidata.org/wiki/Q27825826''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (625, 'MinIO', 2, '{''qid'': ''Q28956397'', ''url'': ''https://www.wikidata.org/wiki/Q28956397''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (626, 'Elasticsearch', 2, '{''qid'': ''Q3050461'', ''url'': ''https://www.wikidata.org/wiki/Q3050461''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (627, 'XtraDB', 2, '{''qid'': ''Q4021858'', ''url'': ''https://www.wikidata.org/wiki/Q4021858''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (628, 'Keycloak', 2, '{''qid'': ''Q42916195'', ''url'': ''https://www.wikidata.org/wiki/Q42916195''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (629, 'Grafana', 2, '{''qid'': ''Q43399271'', ''url'': ''https://www.wikidata.org/wiki/Q43399271''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (630, 'Mattermost', 10, '{''qid'': ''Q55478510'', ''url'': ''https://www.wikidata.org/wiki/Q55478510''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (631, 'Synapse', 2, '{''qid'': ''Q56328412'', ''url'': ''https://www.wikidata.org/wiki/Q56328412''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (632, 'Cloud IAM', 2, '{''qid'': ''Q59852253'', ''url'': ''https://www.wikidata.org/wiki/Q59852253''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (633, 'Knative', 10, '{''qid'': ''Q59905591'', ''url'': ''https://www.wikidata.org/wiki/Q59905591''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (634, 'Apache Cassandra', 2, '{''qid'': ''Q616639'', ''url'': ''https://www.wikidata.org/wiki/Q616639''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (635, 'Kubeflow', 10, '{''qid'': ''Q65048974'', ''url'': ''https://www.wikidata.org/wiki/Q65048974''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (636, 'Qiskit', 2, '{''qid'': ''Q70490607'', ''url'': ''https://www.wikidata.org/wiki/Q70490607''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (637, 'Microsoft Azure', 2, '{''qid'': ''Q725967'', ''url'': ''https://www.wikidata.org/wiki/Q725967''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (638, 'Strimzi', 10, '{''qid'': ''Q72711423'', ''url'': ''https://www.wikidata.org/wiki/Q72711423''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (639, 'Sematext', 10, '{''qid'': ''Q7449130'', ''url'': ''https://www.wikidata.org/wiki/Q7449130''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (640, 'Eclipse|Eclipse hawkBit', 2, '{''qid'': ''Q76178253'', ''url'': ''https://www.wikidata.org/wiki/Q76178253''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (641, 'Eclipse|Eclipse Ditto', 2, '{''qid'': ''Q76178650'', ''url'': ''https://www.wikidata.org/wiki/Q76178650''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (642, 'MariaDB', 2, '{''qid'': ''Q787177'', ''url'': ''https://www.wikidata.org/wiki/Q787177''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (643, 'Zadara', 2, '{''qid'': ''Q8064144'', ''url'': ''https://www.wikidata.org/wiki/Q8064144''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (644, 'Istio', 2, '{''qid'': ''Q88464464'', ''url'': ''https://www.wikidata.org/wiki/Q88464464''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (645, 'Vault', 2, '{''qid'': ''Q88664426'', ''url'': ''https://www.wikidata.org/wiki/Q88664426''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (646, 'Apache Druid', 2, '{''qid'': ''Q89693799'', ''url'': ''https://www.wikidata.org/wiki/Q89693799''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (647, 'etcd', 2, '{''qid'': ''Q96324273'', ''url'': ''https://www.wikidata.org/wiki/Q96324273''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (648, 'Traefik', 8, '{''qid'': ''Q96332968'', ''url'': ''https://www.wikidata.org/wiki/Q96332968''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (649, 'IBM Cloud', 2, '{''qid'': ''Q96381605'', ''url'': ''https://www.wikidata.org/wiki/Q96381605''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (650, 'YugabyteDB', 2, '{''qid'': ''Q97187861'', ''url'': ''https://www.wikidata.org/wiki/Q97187861''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (651, 'CockroachDB', 2, '{''qid'': ''Q98731903'', ''url'': ''https://www.wikidata.org/wiki/Q98731903''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (652, 'Jaeger', 10, '{''qid'': ''Q98799449'', ''url'': ''https://www.wikidata.org/wiki/Q98799449''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (653, 'Natural Programming Language', 9, '{}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (654, 'AcuCOBOL', 9, '{''qid'': ''Q288844'', ''url'': ''https://www.wikidata.org/wiki/Q288844''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (655, 'Ada', 9, '{''qid'': ''Q154755'', ''url'': ''https://www.wikidata.org/wiki/Q154755''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (656, 'ADABAS', 2, '{''qid'': ''Q346434'', ''url'': ''https://www.wikidata.org/wiki/Q346434''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (657, 'ADSO', 9, '{''qid'': ''Q4685839'', ''url'': ''https://www.wikidata.org/wiki/Q4685839''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (659, 'Batch', 9, '{''qid'': ''Q479833'', ''url'': ''https://www.wikidata.org/wiki/Q479833''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (660, 'Powershell', 9, '{''qid'': ''Q840410'', ''url'': ''https://www.wikidata.org/wiki/Q840410''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (661, 'COM+', 10, '{''qid'': ''Q9670606'', ''url'': ''https://www.wikidata.org/wiki/Q9670606''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (662, 'Dataflex', 9, '{''qid'': ''Q2391203'', ''url'': ''https://www.wikidata.org/wiki/Q2391203''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (663, 'DDS', 9, '{''qid'': ''Q1149607'', ''url'': ''https://www.wikidata.org/wiki/Q1149607''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (664, 'Forte', 9, '{''qid'': ''Q3748867'', ''url'': ''https://www.wikidata.org/wiki/Q3748867''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (665, 'Foxpro', 9, '{''qid'': ''Q2507721'', ''url'': ''https://www.wikidata.org/wiki/Q2507721''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (666, 'IBM DB2 Purescale', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (667, 'IDMS DB', 2, '{}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (668, 'IDMS DML', 9, '{}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (669, 'Jaguar', 8, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (670, 'EAServer', 8, '{''qid'': ''Q5816084'', ''url'': ''https://www.wikidata.org/wiki/Q5816084''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (672, 'IBM Netezza', 4, '{''qid'': ''Q3874960'', ''url'': ''https://www.wikidata.org/wiki/Q3874960''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (674, 'OpenROAD', 9, '{''qid'': ''Q2025504'', ''url'': ''https://www.wikidata.org/wiki/Q2025504''}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (675, 'Oracle Reports', 2, '{''qid'': ''Q4045946'', ''url'': ''https://www.wikidata.org/wiki/Q4045946''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (676, 'SAP Replication Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (677, 'Git', 2, '{''qid'': ''Q186055'', ''url'': ''https://www.wikidata.org/wiki/Q186055''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (678, 'GitLab', 2, '{''qid'': ''Q16639197'', ''url'': ''https://www.wikidata.org/wiki/Q16639197''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (679, 'VSAM', 2, '{''qid'': ''Q1514276'', ''url'': ''https://www.wikidata.org/wiki/Q1514276''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (680, 'Cloud<>Apache HTTP Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (681, 'Cloud<>Windows Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (682, 'Cloud<>MS SQL Server', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (683, 'Cloud<>Azure SQL Server Database', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (684, 'Cloud<>MySQL', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (685, 'Cloud<>Oracle Database', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (686, 'Cloud<>PostgreSQL', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (687, 'Cloud<>AWS RDS', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (688, 'Cloud<>SAP HANA DB', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (689, 'BMS Map', 9, '{}', 'Y', 'N', 'N', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (690, 'DB400', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (691, 'ILE', 9, '{''qid'': ''Q16889435'', ''url'': ''https://www.wikidata.org/wiki/Q16889435''}', 'N', 'N', 'Y', 'N/A'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (692, 'Integrated Data Store (IDS)', 2, '{''qid'': ''Q3799287'', ''url'': ''https://www.wikidata.org/wiki/Q3799287''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (693, 'ISAM', 2, '{''qid'': ''Q1154755'', ''url'': ''https://www.wikidata.org/wiki/Q1154755''}', 'N', 'N', 'Y', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (694, 'Oracle RDS', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (695, 'SAP IQ', 2, '{''qid'': ''Q948492'', ''url'': ''https://www.wikidata.org/wiki/Q948492''}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (696, 'Cloud<>Linux', 2, '{}', 'Y', 'N', 'N', 'N'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (697, 'Apache Maven', 2, '{''qid'': ''Q139941'', ''url'': ''https://www.wikidata.org/wiki/Q139941''}', 'N', 'N', 'Y', 'Y'); +INSERT INTO entities (id, entity_name, entity_type_id, external_link, COTS, Legacy, ContainerImage, OpenSource) VALUES (698, 'IBM Basic Assembly Language (BAL)', 9, '{''qid'': ''Q5968762'', ''url'': ''https://www.wikidata.org/wiki/Q5968762''}', 'Y', 'N', 'N', 'N'); + +-- Table: entity_mentions CREATE TABLE entity_mentions ( id integer PRIMARY KEY AUTOINCREMENT, entity_mention_name text NOT NULL, @@ -895,6865 +978,6867 @@ CREATE TABLE entity_mentions ( FOREIGN KEY (entity_type_id) REFERENCES entity_types (id), FOREIGN KEY (entity_id) REFERENCES entities (id) ); -INSERT INTO entity_mentions VALUES(1,'DOT NET',10,497,'others'); -INSERT INTO entity_mentions VALUES(2,'.NET 4.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(3,'Dot net - FW 4',10,497,'others'); -INSERT INTO entity_mentions VALUES(4,'.Net 4.7.1 Enterprise Lib',10,497,'others'); -INSERT INTO entity_mentions VALUES(5,'.Net 3.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(6,'.NET4.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(7,'.NET Framework 4.x',10,497,'others'); -INSERT INTO entity_mentions VALUES(8,'Microsoft - Microsoft .NET Framework 2',10,497,'others'); -INSERT INTO entity_mentions VALUES(9,'Microsoft - Microsoft .NET Framework 3.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(10,'.NET 3.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(11,'Dot Net Framework 3.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(12,'.NET',10,497,'others'); -INSERT INTO entity_mentions VALUES(13,'.NET 4',10,497,'others'); -INSERT INTO entity_mentions VALUES(14,'.Net 4.5.2 Enterprise Lib',10,497,'others'); -INSERT INTO entity_mentions VALUES(15,'.NET2.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(16,'DOTNET',10,497,'others'); -INSERT INTO entity_mentions VALUES(17,'Microsoft .NET Release 1.1',10,497,'others'); -INSERT INTO entity_mentions VALUES(18,'.Net 4.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(19,'.NET 2.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(20,'.Net Framework 4.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(21,'Microsoft .NET 4.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(22,'.net 2017',10,497,'others'); -INSERT INTO entity_mentions VALUES(23,'.Net framework',10,497,'others'); -INSERT INTO entity_mentions VALUES(24,'Microsoft .NET Framework 4.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(25,'.net 4.0 Framework',10,497,'others'); -INSERT INTO entity_mentions VALUES(26,'Microsoft.NET 2.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(27,'.Net 4.5.2',10,497,'others'); -INSERT INTO entity_mentions VALUES(28,'.NET 4.6',10,497,'others'); -INSERT INTO entity_mentions VALUES(29,'Microsoft - Microsoft .NET Framework 4',10,497,'others'); -INSERT INTO entity_mentions VALUES(30,'.NET4.6',10,497,'others'); -INSERT INTO entity_mentions VALUES(31,'Microsoft - Microsoft .NET Framework 4.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(32,'Dot Net Framework 4.5',10,497,'others'); -INSERT INTO entity_mentions VALUES(33,'Microsoft - Microsoft .NET Framework 3',10,497,'others'); -INSERT INTO entity_mentions VALUES(34,'Microsoft - Microsoft .Net Framework 1',10,497,'others'); -INSERT INTO entity_mentions VALUES(35,'Microsoft .NET Release 4.6',10,497,'others'); -INSERT INTO entity_mentions VALUES(36,'.net Framework 3.5 SP1',10,497,'others'); -INSERT INTO entity_mentions VALUES(37,'Microsoft.net',10,497,'others'); -INSERT INTO entity_mentions VALUES(38,'Microsoft .NET',10,497,'others'); -INSERT INTO entity_mentions VALUES(39,'Microsoft .NET Release 2.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(40,'Dot Net 2.0',10,497,'others'); -INSERT INTO entity_mentions VALUES(41,'Common Runtime Library',7,482,'others'); -INSERT INTO entity_mentions VALUES(42,'APACHE LOG4NET',7,483,'others'); -INSERT INTO entity_mentions VALUES(43,'LOG4NET',7,483,'others'); -INSERT INTO entity_mentions VALUES(44,'Magik',7,484,'others'); -INSERT INTO entity_mentions VALUES(45,'Magick.NET',7,484,'others'); -INSERT INTO entity_mentions VALUES(46,'WCF',7,485,'others'); -INSERT INTO entity_mentions VALUES(47,'Windows Communication Foundation',7,485,'others'); -INSERT INTO entity_mentions VALUES(48,'Windows Communication Foundation (WCF)',7,485,'others'); -INSERT INTO entity_mentions VALUES(49,'WWF',7,486,'others'); -INSERT INTO entity_mentions VALUES(50,'Windows Workflow Foundation (WF)',7,486,'others'); -INSERT INTO entity_mentions VALUES(51,'Windows Workflow Foundation',7,486,'others'); -INSERT INTO entity_mentions VALUES(52,'WinForms',7,487,'others'); -INSERT INTO entity_mentions VALUES(53,'Ejes',2,1,'others'); -INSERT INTO entity_mentions VALUES(54,'(E)JES',2,1,'others'); -INSERT INTO entity_mentions VALUES(55,'(UNIRITA) A-AUTO 7.2.2',2,2,'others'); -INSERT INTO entity_mentions VALUES(56,'A-AUTO',2,2,'others'); -INSERT INTO entity_mentions VALUES(57,'A-Auto Job Scheduling Software',2,2,'others'); -INSERT INTO entity_mentions VALUES(58,'Active Directoy',10,498,'others'); -INSERT INTO entity_mentions VALUES(59,'Active Directory (AD)',10,498,'others'); -INSERT INTO entity_mentions VALUES(60,'Active Server Page',9,592,'others'); -INSERT INTO entity_mentions VALUES(61,'ASPNet',9,592,'others'); -INSERT INTO entity_mentions VALUES(62,'Microsoft Active Server Pages 6.0',9,592,'others'); -INSERT INTO entity_mentions VALUES(63,'APSX',9,592,'others'); -INSERT INTO entity_mentions VALUES(64,'ASP .NET',9,592,'others'); -INSERT INTO entity_mentions VALUES(65,'Microsoft Active Server Pages',9,592,'others'); -INSERT INTO entity_mentions VALUES(66,'Microsoft ASP files',9,592,'others'); -INSERT INTO entity_mentions VALUES(67,'Active Server Pages (ASP)',9,592,'others'); -INSERT INTO entity_mentions VALUES(68,'ASP',9,592,'others'); -INSERT INTO entity_mentions VALUES(69,'Classic ASP',9,592,'others'); -INSERT INTO entity_mentions VALUES(70,'Classis ASP',9,592,'others'); -INSERT INTO entity_mentions VALUES(71,'ASP 3.0',9,592,'others'); -INSERT INTO entity_mentions VALUES(72,'ASP.NET',9,592,'others'); -INSERT INTO entity_mentions VALUES(73,'ASPX',9,592,'others'); -INSERT INTO entity_mentions VALUES(74,'ASP.NET 1.0.3705',9,592,'others'); -INSERT INTO entity_mentions VALUES(75,'ActiveX',10,500,'others'); -INSERT INTO entity_mentions VALUES(76,'ADO',7,488,'others'); -INSERT INTO entity_mentions VALUES(77,'Activiti',2,3,'others'); -INSERT INTO entity_mentions VALUES(78,'Adobe Acrobat Reader',2,4,'others'); -INSERT INTO entity_mentions VALUES(79,'Acrobat Reader',2,4,'others'); -INSERT INTO entity_mentions VALUES(80,'Adobe - Adobe Acrobat Reader DC 2019',2,4,'others'); -INSERT INTO entity_mentions VALUES(81,'Adobe Acrobat Reader DC 2019',2,4,'others'); -INSERT INTO entity_mentions VALUES(82,'Android',6,418,'others'); -INSERT INTO entity_mentions VALUES(83,'Android SDK',6,418,'others'); -INSERT INTO entity_mentions VALUES(84,'Andriod',6,418,'others'); -INSERT INTO entity_mentions VALUES(85,'ansible',2,5,'others'); -INSERT INTO entity_mentions VALUES(86,'Apache ActiveMQ',2,6,'others'); -INSERT INTO entity_mentions VALUES(87,'Apache Active Queue',2,6,'others'); -INSERT INTO entity_mentions VALUES(88,'MQ Apache Active Queue',2,6,'others'); -INSERT INTO entity_mentions VALUES(89,'Cordova',10,501,'others'); -INSERT INTO entity_mentions VALUES(90,'Cordova framework',10,501,'others'); -INSERT INTO entity_mentions VALUES(91,'Apache Cordova',10,501,'others'); -INSERT INTO entity_mentions VALUES(92,'cordova-android',10,501,'others'); -INSERT INTO entity_mentions VALUES(93,'Apache Hbase',2,7,'others'); -INSERT INTO entity_mentions VALUES(94,'Hbase',2,7,'others'); -INSERT INTO entity_mentions VALUES(95,'Hive',2,8,'others'); -INSERT INTO entity_mentions VALUES(96,'Apache Hive',2,8,'others'); -INSERT INTO entity_mentions VALUES(97,'Apache HTTP Server 2.0',8,259,'others'); -INSERT INTO entity_mentions VALUES(98,'Apache HTTP Server 2.2 (Linux)',8,259,'others'); -INSERT INTO entity_mentions VALUES(99,'Apache HTTP Server 2.4 (Linux)',8,259,'others'); -INSERT INTO entity_mentions VALUES(100,'APACHE HTTP SERVER VERSION 2.2.13',8,259,'others'); -INSERT INTO entity_mentions VALUES(101,'TS-Apache HTTP Server 2.4',8,259,'others'); -INSERT INTO entity_mentions VALUES(102,'Apache',8,259,'others'); -INSERT INTO entity_mentions VALUES(103,'Apache Web Server',8,259,'others'); -INSERT INTO entity_mentions VALUES(104,'Apache 2.4',8,259,'others'); -INSERT INTO entity_mentions VALUES(105,'Apache HTTP Server 2.0 (Solaris)',8,259,'others'); -INSERT INTO entity_mentions VALUES(106,'APACHE HTTP SERVER VERSION 1.3',8,259,'others'); -INSERT INTO entity_mentions VALUES(107,'APACHE WEB SERVER VERSION 1.3.27',8,259,'others'); -INSERT INTO entity_mentions VALUES(108,'Apache WebServer',8,259,'others'); -INSERT INTO entity_mentions VALUES(109,'Apache HTTP Server 2.4',8,259,'others'); -INSERT INTO entity_mentions VALUES(110,'Apache 3',8,259,'others'); -INSERT INTO entity_mentions VALUES(111,'Apache Instance',8,259,'others'); -INSERT INTO entity_mentions VALUES(112,'Apache HTTP Server 2.0 (Linux)',8,259,'others'); -INSERT INTO entity_mentions VALUES(113,'Apache 2.4 - 32 bit',8,259,'others'); -INSERT INTO entity_mentions VALUES(114,'Apache HTTP Server 2.2',8,259,'others'); -INSERT INTO entity_mentions VALUES(115,'Apache HTTP Server',8,259,'others'); -INSERT INTO entity_mentions VALUES(116,'Apache Kafka',2,9,'others'); -INSERT INTO entity_mentions VALUES(117,'kafka',2,9,'others'); -INSERT INTO entity_mentions VALUES(118,'Apache Lucene',12,375,'others'); -INSERT INTO entity_mentions VALUES(119,'Lucene',12,375,'others'); -INSERT INTO entity_mentions VALUES(120,'ServiceMix',2,10,'others'); -INSERT INTO entity_mentions VALUES(121,'Apache ServiceMix',2,10,'others'); -INSERT INTO entity_mentions VALUES(122,'Apache Solr',2,11,'others'); -INSERT INTO entity_mentions VALUES(123,'solr',2,11,'others'); -INSERT INTO entity_mentions VALUES(124,'Subversion',2,12,'others'); -INSERT INTO entity_mentions VALUES(125,'Apache Subversion',2,12,'others'); -INSERT INTO entity_mentions VALUES(126,'Subversion software',2,12,'others'); -INSERT INTO entity_mentions VALUES(127,'Tomcat 8',8,260,'others'); -INSERT INTO entity_mentions VALUES(128,'APACHE TOMCAT VERSION 6',8,260,'others'); -INSERT INTO entity_mentions VALUES(129,'Tomcat 3',8,260,'others'); -INSERT INTO entity_mentions VALUES(130,'Apache Tomcat 6 (Linux)',8,260,'others'); -INSERT INTO entity_mentions VALUES(131,'Apache Tomcat',8,260,'others'); -INSERT INTO entity_mentions VALUES(132,'Apache Tomcat 3 (Linux)',8,260,'others'); -INSERT INTO entity_mentions VALUES(133,'tomcat',8,260,'others'); -INSERT INTO entity_mentions VALUES(134,'Tomcat 3/4/5/6/7',8,260,'others'); -INSERT INTO entity_mentions VALUES(135,'Apache Tomcat 7',8,260,'others'); -INSERT INTO entity_mentions VALUES(136,'Apache Software Foundation - Apache Tomcat 8.5',8,260,'others'); -INSERT INTO entity_mentions VALUES(137,'Tomcat 7',8,260,'others'); -INSERT INTO entity_mentions VALUES(138,'APACHE TOMCAT VERSION 7',8,260,'others'); -INSERT INTO entity_mentions VALUES(139,'Tomcat 6',8,260,'others'); -INSERT INTO entity_mentions VALUES(140,'Tomcat 8.0.33',8,260,'others'); -INSERT INTO entity_mentions VALUES(141,'Tomcat 7.0',8,260,'others'); -INSERT INTO entity_mentions VALUES(142,'Tomcat 9',8,260,'others'); -INSERT INTO entity_mentions VALUES(143,'Tomcat 4',8,260,'others'); -INSERT INTO entity_mentions VALUES(144,'Apache Software Foundation - Apache Tomcat 9',8,260,'others'); -INSERT INTO entity_mentions VALUES(145,'Apache Software Foundation - Apache Tomcat 7',8,260,'others'); -INSERT INTO entity_mentions VALUES(146,'Apache Tomcat 6',8,260,'others'); -INSERT INTO entity_mentions VALUES(147,'Apache Tomcat 8',8,260,'others'); -INSERT INTO entity_mentions VALUES(148,'Tomcat 8/9',8,260,'others'); -INSERT INTO entity_mentions VALUES(149,'Apache Tomcat 8.5.15',8,260,'others'); -INSERT INTO entity_mentions VALUES(150,'Apache Tomcat 9',8,260,'others'); -INSERT INTO entity_mentions VALUES(151,'Apache Software Foundation - Apache Tomcat 8',8,260,'others'); -INSERT INTO entity_mentions VALUES(152,'Apache Tomcat 1',8,260,'others'); -INSERT INTO entity_mentions VALUES(153,'Tomcat 5',8,260,'others'); -INSERT INTO entity_mentions VALUES(154,'Apache Tomcat 3',8,260,'others'); -INSERT INTO entity_mentions VALUES(155,'Apache Tomcat 8 (Linux)',8,260,'others'); -INSERT INTO entity_mentions VALUES(156,'APACHE TOMCAT VERSION 6.0',8,260,'others'); -INSERT INTO entity_mentions VALUES(157,'Apache Tomcat 5',8,260,'others'); -INSERT INTO entity_mentions VALUES(158,'Apache tomcat 9.0.12',8,260,'others'); -INSERT INTO entity_mentions VALUES(159,'Apache xerces',12,376,'others'); -INSERT INTO entity_mentions VALUES(160,'XERCES',12,376,'others'); -INSERT INTO entity_mentions VALUES(161,'Application Development Facility (ADF)',2,13,'others'); -INSERT INTO entity_mentions VALUES(162,'ADF',2,13,'others'); -INSERT INTO entity_mentions VALUES(163,'ADF (Application Development Facility)',2,13,'others'); -INSERT INTO entity_mentions VALUES(164,'Application Development Facility',2,13,'others'); -INSERT INTO entity_mentions VALUES(165,'ArcGIS Server 10.3.1',8,261,'others'); -INSERT INTO entity_mentions VALUES(166,'ArcGIS Server',8,261,'others'); -INSERT INTO entity_mentions VALUES(167,'Asterisk 1.8',2,14,'others'); -INSERT INTO entity_mentions VALUES(168,'Asterisk',2,14,'others'); -INSERT INTO entity_mentions VALUES(169,'AutoIt 3.3',9,299,'others'); -INSERT INTO entity_mentions VALUES(170,'AutoIt',9,299,'others'); -INSERT INTO entity_mentions VALUES(171,'AutoiIt',9,299,'others'); -INSERT INTO entity_mentions VALUES(172,'Automic - UC4',2,15,'others'); -INSERT INTO entity_mentions VALUES(173,'Automic Job Scheduler',2,15,'others'); -INSERT INTO entity_mentions VALUES(174,'Autosys',2,16,'others'); -INSERT INTO entity_mentions VALUES(175,'AWK',9,300,'others'); -INSERT INTO entity_mentions VALUES(176,'basic',9,301,'others'); -INSERT INTO entity_mentions VALUES(177,'WLS 10.2',8,600,'others'); -INSERT INTO entity_mentions VALUES(178,'BEA WebLogic Enterprise (WLE)',8,600,'others'); -INSERT INTO entity_mentions VALUES(179,'Oracle Weblogic 12.2.1.3.0',8,600,'others'); -INSERT INTO entity_mentions VALUES(180,'Oracle Weblogic 12c',8,600,'others'); -INSERT INTO entity_mentions VALUES(181,'Oracle Weblogic 12.2.1.2.0',8,600,'others'); -INSERT INTO entity_mentions VALUES(182,'BEA WLS',8,600,'others'); -INSERT INTO entity_mentions VALUES(183,'Weblogic 9.2.0.0',8,600,'others'); -INSERT INTO entity_mentions VALUES(184,'BEA WebLogic Server',8,600,'others'); -INSERT INTO entity_mentions VALUES(185,'Weblogic 12c',8,600,'others'); -INSERT INTO entity_mentions VALUES(186,'Oracle WebLogic Server 12',8,600,'others'); -INSERT INTO entity_mentions VALUES(187,'Weblogic 10.1 MP1',8,600,'others'); -INSERT INTO entity_mentions VALUES(188,'BEA WebLogic Server 8',8,600,'others'); -INSERT INTO entity_mentions VALUES(189,'Oracle WebLogic Server',8,600,'others'); -INSERT INTO entity_mentions VALUES(190,'WEBLOGIC-SERVER',8,600,'others'); -INSERT INTO entity_mentions VALUES(191,'Weblogic 12.2.1.2',8,600,'others'); -INSERT INTO entity_mentions VALUES(192,'Oracle WebLogic Server 12 (Linux)',8,600,'others'); -INSERT INTO entity_mentions VALUES(193,'Weblogic 12.2.1.3.0',8,600,'others'); -INSERT INTO entity_mentions VALUES(194,'WLE',8,600,'others'); -INSERT INTO entity_mentions VALUES(195,'Weblogic 10.3.0.0',8,600,'others'); -INSERT INTO entity_mentions VALUES(196,'Weblogic 12.1.3.0',8,600,'others'); -INSERT INTO entity_mentions VALUES(197,'Weblogic',8,600,'others'); -INSERT INTO entity_mentions VALUES(198,'Oracle WebLogic Server 10',8,600,'others'); -INSERT INTO entity_mentions VALUES(199,'ORACLE WEBLOGIC SERVER 10.3',8,600,'others'); -INSERT INTO entity_mentions VALUES(200,'Weblogic Server',8,600,'others'); -INSERT INTO entity_mentions VALUES(201,'Oracle Weblogic 8.1.1',8,600,'others'); -INSERT INTO entity_mentions VALUES(202,'Web Logic',8,600,'others'); -INSERT INTO entity_mentions VALUES(203,'Oracle Weblogic 12.x',8,600,'others'); -INSERT INTO entity_mentions VALUES(204,'BEA WEBLOGIC SERVER VERSION 7',8,600,'others'); -INSERT INTO entity_mentions VALUES(205,'Oracle Weblogic Server 12c',8,600,'others'); -INSERT INTO entity_mentions VALUES(206,'Weblogic 10.3.6.0',8,600,'others'); -INSERT INTO entity_mentions VALUES(207,'Oracle Weblogic 12.1.2',8,600,'others'); -INSERT INTO entity_mentions VALUES(208,'BEA WLE',8,600,'others'); -INSERT INTO entity_mentions VALUES(209,'WLS 10',8,600,'others'); -INSERT INTO entity_mentions VALUES(210,'WLS',8,600,'others'); -INSERT INTO entity_mentions VALUES(211,'WebLogic',8,600,'others'); -INSERT INTO entity_mentions VALUES(212,'ORACLE WEBLOGIC SERVER VERSION 10.3',8,600,'others'); -INSERT INTO entity_mentions VALUES(213,'Weblogic 12.2.1.1',8,600,'others'); -INSERT INTO entity_mentions VALUES(214,'BEA Weblogic',8,600,'others'); -INSERT INTO entity_mentions VALUES(215,'Oracle Weblogic 12.1',8,600,'others'); -INSERT INTO entity_mentions VALUES(216,'Weblogic 10',8,600,'others'); -INSERT INTO entity_mentions VALUES(217,'BeOS',6,419,'others'); -INSERT INTO entity_mentions VALUES(218,'Bluebeam Q',2,17,'others'); -INSERT INTO entity_mentions VALUES(219,'BMC Control-M CM For SAP 6.2',2,18,'others'); -INSERT INTO entity_mentions VALUES(220,'BMC Control-M',2,18,'others'); -INSERT INTO entity_mentions VALUES(221,'BMC Identity Management',2,19,'others'); -INSERT INTO entity_mentions VALUES(222,'IDM-BMC Identity Management',2,19,'others'); -INSERT INTO entity_mentions VALUES(223,'Borland Database Engine',2,20,'others'); -INSERT INTO entity_mentions VALUES(224,'Borland - BDE Administrator 1',2,20,'others'); -INSERT INTO entity_mentions VALUES(225,'Borland Database Engine (BDE)',2,20,'others'); -INSERT INTO entity_mentions VALUES(226,'Borland - BDE Administrator 5.2',2,20,'others'); -INSERT INTO entity_mentions VALUES(227,'brain script',9,302,'others'); -INSERT INTO entity_mentions VALUES(228,'BRAINScript',9,302,'others'); -INSERT INTO entity_mentions VALUES(229,'Business Intelligence and Reporting Tools',2,21,'others'); -INSERT INTO entity_mentions VALUES(230,'Actuate Report Server',2,21,'others'); -INSERT INTO entity_mentions VALUES(231,'BIRT',2,21,'others'); -INSERT INTO entity_mentions VALUES(232,'Business Intelligence and Reporting Tools (BIRT)',2,21,'others'); -INSERT INTO entity_mentions VALUES(233,'C',9,303,'others'); -INSERT INTO entity_mentions VALUES(234,'CSHARP',9,582,'others'); -INSERT INTO entity_mentions VALUES(235,'C# 3.0',9,582,'others'); -INSERT INTO entity_mentions VALUES(236,'C#',9,582,'others'); -INSERT INTO entity_mentions VALUES(237,'c-sharp',9,582,'others'); -INSERT INTO entity_mentions VALUES(238,'C+',9,583,'others'); -INSERT INTO entity_mentions VALUES(239,'C++',9,583,'others'); -INSERT INTO entity_mentions VALUES(240,'vc++',9,306,'others'); -INSERT INTO entity_mentions VALUES(241,'MSVC',9,306,'others'); -INSERT INTO entity_mentions VALUES(242,'Visual C++ 2008',9,306,'others'); -INSERT INTO entity_mentions VALUES(243,'Microsoft Visual C++',9,306,'others'); -INSERT INTO entity_mentions VALUES(244,'Visual C++',9,306,'others'); -INSERT INTO entity_mentions VALUES(245,'Microsoft - Microsoft Visual C++ 2008 Redistributable (x64) 9',9,306,'others'); -INSERT INTO entity_mentions VALUES(246,'vc',9,306,'others'); -INSERT INTO entity_mentions VALUES(247,'CA API Gateway',4,290,'others'); -INSERT INTO entity_mentions VALUES(248,'CA Gen 8',2,22,'others'); -INSERT INTO entity_mentions VALUES(249,'CA Gen',2,22,'others'); -INSERT INTO entity_mentions VALUES(250,'CA Technologies - Computer Associates Introscope 8.2',2,23,'others'); -INSERT INTO entity_mentions VALUES(251,'Introscope',2,23,'others'); -INSERT INTO entity_mentions VALUES(252,'CA Technologies - Computer Associates Introscope',2,23,'others'); -INSERT INTO entity_mentions VALUES(253,'CA Introscope',2,23,'others'); -INSERT INTO entity_mentions VALUES(254,'CA-Panvalet',2,24,'others'); -INSERT INTO entity_mentions VALUES(255,'Panvalet',2,24,'others'); -INSERT INTO entity_mentions VALUES(256,'Telon',2,25,'others'); -INSERT INTO entity_mentions VALUES(257,'CA-TELON',2,25,'others'); -INSERT INTO entity_mentions VALUES(258,'CSS 3',9,307,'others'); -INSERT INTO entity_mentions VALUES(259,'Style Sheet',9,307,'others'); -INSERT INTO entity_mentions VALUES(260,'Cascading Style Sheets',9,307,'others'); -INSERT INTO entity_mentions VALUES(261,'Cascading Style Sheets (CSS)',9,307,'others'); -INSERT INTO entity_mentions VALUES(262,'CSS',9,307,'others'); -INSERT INTO entity_mentions VALUES(263,'Bootstrap',12,377,'others'); -INSERT INTO entity_mentions VALUES(264,'Casegen',2,26,'others'); -INSERT INTO entity_mentions VALUES(265,'Chef Automate',2,27,'others'); -INSERT INTO entity_mentions VALUES(266,'CICS',10,502,'others'); -INSERT INTO entity_mentions VALUES(267,'Cisco AMP for Endpoints',2,28,'others'); -INSERT INTO entity_mentions VALUES(268,'Cisco Systems Inc. - Cisco AMP for Endpoints Connector 6.1',2,28,'others'); -INSERT INTO entity_mentions VALUES(269,'Cisco IOS',6,420,'others'); -INSERT INTO entity_mentions VALUES(270,'CiscoWorks',2,29,'others'); -INSERT INTO entity_mentions VALUES(271,'CISCO CISCOWORKS',2,29,'others'); -INSERT INTO entity_mentions VALUES(272,'CiscoWorks LAN Management Solution (LMS)',2,29,'others'); -INSERT INTO entity_mentions VALUES(273,'CiscoWorks LAN Management Solution',2,29,'others'); -INSERT INTO entity_mentions VALUES(274,'WinFrame',2,30,'others'); -INSERT INTO entity_mentions VALUES(275,'Citrix Virtual Apps',2,30,'others'); -INSERT INTO entity_mentions VALUES(276,'Citrix Managed Desktops',2,30,'others'); -INSERT INTO entity_mentions VALUES(277,'METAFRAME',2,30,'others'); -INSERT INTO entity_mentions VALUES(278,'XenApp',2,30,'others'); -INSERT INTO entity_mentions VALUES(279,'Citrix Metaframe',2,30,'others'); -INSERT INTO entity_mentions VALUES(280,'Citrix Server',2,30,'others'); -INSERT INTO entity_mentions VALUES(281,'Citrix Virtual Apps and Desktops',2,30,'others'); -INSERT INTO entity_mentions VALUES(282,'Presentation Server',2,30,'others'); -INSERT INTO entity_mentions VALUES(283,'NETSCALER-1.5',3,563,'others'); -INSERT INTO entity_mentions VALUES(284,'NETSCALER-11.',3,563,'others'); -INSERT INTO entity_mentions VALUES(285,'Citrix SD-WAN',3,563,'others'); -INSERT INTO entity_mentions VALUES(286,'NetScaler SD-WAN',3,563,'others'); -INSERT INTO entity_mentions VALUES(287,'Citrix NetScaler ADC',3,563,'others'); -INSERT INTO entity_mentions VALUES(288,'Citrix ADC',3,563,'others'); -INSERT INTO entity_mentions VALUES(289,'NetScaler ADC',3,563,'others'); -INSERT INTO entity_mentions VALUES(290,'NetScaler ADC VPX',3,564,'others'); -INSERT INTO entity_mentions VALUES(291,'Citrix ADC VPX',3,564,'others'); -INSERT INTO entity_mentions VALUES(292,'NetScaler VPX',3,564,'others'); -INSERT INTO entity_mentions VALUES(293,'Citrix NetScaler VPX',3,564,'others'); -INSERT INTO entity_mentions VALUES(294,'Citrix ADC BLX',3,565,'others'); -INSERT INTO entity_mentions VALUES(295,'NetScaler CPX',2,31,'others'); -INSERT INTO entity_mentions VALUES(296,'Citrix ADC CPX',2,31,'others'); -INSERT INTO entity_mentions VALUES(297,'Citrix ADC SDX',4,291,'others'); -INSERT INTO entity_mentions VALUES(298,'NetScaler SDX',4,291,'others'); -INSERT INTO entity_mentions VALUES(299,'Citrix ADC MPX',4,292,'others'); -INSERT INTO entity_mentions VALUES(300,'NetScaler MPX',4,292,'others'); -INSERT INTO entity_mentions VALUES(301,'Citrix Provisioning',2,32,'others'); -INSERT INTO entity_mentions VALUES(302,'Citrix Provisioning 2006',2,32,'others'); -INSERT INTO entity_mentions VALUES(303,'Citrix Provisioning Services',2,32,'others'); -INSERT INTO entity_mentions VALUES(304,'Provisioning Services 7.15.8',2,32,'others'); -INSERT INTO entity_mentions VALUES(305,'Citrix PVS',2,32,'others'); -INSERT INTO entity_mentions VALUES(306,'Clarify',2,33,'others'); -INSERT INTO entity_mentions VALUES(307,'Clear Basic',5,455,'others'); -INSERT INTO entity_mentions VALUES(308,'Clarify ClearBasic',5,455,'others'); -INSERT INTO entity_mentions VALUES(309,'Clarity LIMS',2,34,'others'); -INSERT INTO entity_mentions VALUES(310,'LabWare LIMS',2,35,'others'); -INSERT INTO entity_mentions VALUES(311,'Clipper',9,308,'others'); -INSERT INTO entity_mentions VALUES(312,'CLISTS',9,309,'others'); -INSERT INTO entity_mentions VALUES(313,'CLIST',9,309,'others'); -INSERT INTO entity_mentions VALUES(314,'COBOL II',9,594,'others'); -INSERT INTO entity_mentions VALUES(315,'COBOL',9,594,'others'); -INSERT INTO entity_mentions VALUES(316,'Cobol Assembler',9,594,'others'); -INSERT INTO entity_mentions VALUES(317,'IBM COGNOS BUSINESS INTELLIGENCE SERVER VERSION 10.2',2,36,'others'); -INSERT INTO entity_mentions VALUES(318,'IBM - COGNOS',2,36,'others'); -INSERT INTO entity_mentions VALUES(319,'IBM Cognos',2,36,'others'); -INSERT INTO entity_mentions VALUES(320,'Cognos',2,36,'others'); -INSERT INTO entity_mentions VALUES(321,'IBM Cognos ICM',2,36,'others'); -INSERT INTO entity_mentions VALUES(322,'Cold Fusion',2,37,'others'); -INSERT INTO entity_mentions VALUES(323,'Coldfusion Webserver',2,37,'others'); -INSERT INTO entity_mentions VALUES(324,'Coldfusion',2,37,'others'); -INSERT INTO entity_mentions VALUES(325,'ColdFus',2,37,'others'); -INSERT INTO entity_mentions VALUES(326,'CFML',9,311,'others'); -INSERT INTO entity_mentions VALUES(327,'ColdFusion Markup Language',9,311,'others'); -INSERT INTO entity_mentions VALUES(328,'ColdFusion Markup Language (CFML)',9,311,'others'); -INSERT INTO entity_mentions VALUES(329,'ConceptWave',2,38,'others'); -INSERT INTO entity_mentions VALUES(330,'CONNAPI',2,39,'others'); -INSERT INTO entity_mentions VALUES(331,'Sterling Connect',2,40,'others'); -INSERT INTO entity_mentions VALUES(332,'Connect Direct 4.5',2,40,'others'); -INSERT INTO entity_mentions VALUES(333,'IBM Sterling Connect:Direct',2,40,'others'); -INSERT INTO entity_mentions VALUES(334,'Connect:Direct',2,40,'others'); -INSERT INTO entity_mentions VALUES(335,'Connect Direct File agent',2,40,'others'); -INSERT INTO entity_mentions VALUES(336,'Connect Direct',2,40,'others'); -INSERT INTO entity_mentions VALUES(337,'IBM Sterling Connect:Direct vX',2,40,'others'); -INSERT INTO entity_mentions VALUES(338,'Sterling Connect:Direct',2,40,'others'); -INSERT INTO entity_mentions VALUES(339,'Connect Direct 4.5, 4.6',2,40,'others'); -INSERT INTO entity_mentions VALUES(340,'Connect Direct 4.6',2,40,'others'); -INSERT INTO entity_mentions VALUES(341,'Cormerstone',2,41,'others'); -INSERT INTO entity_mentions VALUES(342,'Cornerstone software',2,41,'others'); -INSERT INTO entity_mentions VALUES(343,'Cornerstone',2,41,'others'); -INSERT INTO entity_mentions VALUES(344,'Crystal Report',2,42,'others'); -INSERT INTO entity_mentions VALUES(345,'Crystal',2,42,'others'); -INSERT INTO entity_mentions VALUES(346,'Crystal Reports',2,42,'others'); -INSERT INTO entity_mentions VALUES(347,'DART',6,421,'others'); -INSERT INTO entity_mentions VALUES(348,'DL/I',9,312,'others'); -INSERT INTO entity_mentions VALUES(349,'Data Language/I',9,312,'others'); -INSERT INTO entity_mentions VALUES(350,'Data Language Interface (DL/I)',9,312,'others'); -INSERT INTO entity_mentions VALUES(351,'Data Language/One',9,312,'others'); -INSERT INTO entity_mentions VALUES(352,'Data Language/Interface',9,312,'others'); -INSERT INTO entity_mentions VALUES(353,'Dl1',9,312,'others'); -INSERT INTO entity_mentions VALUES(354,'Data Language Interface',9,312,'others'); -INSERT INTO entity_mentions VALUES(355,'DB2/400',2,43,'others'); -INSERT INTO entity_mentions VALUES(356,'IBM DB2 UDB/LUW ENTERPRISE SERVER EDITION DB2 v9.7 FP11 SB 37314',2,43,'others'); -INSERT INTO entity_mentions VALUES(357,'IBM - IBM DB2 Advanced Workgroup Server Edition OEM Limited Use 11.1',2,43,'others'); -INSERT INTO entity_mentions VALUES(358,'DB2 ESE 10.1',2,43,'others'); -INSERT INTO entity_mentions VALUES(359,'IBM - IBM DB2 Enterprise Server Edition - CPU Option 9.7',2,43,'others'); -INSERT INTO entity_mentions VALUES(360,'DB2 UDB',2,43,'others'); -INSERT INTO entity_mentions VALUES(361,'DB2',2,43,'others'); -INSERT INTO entity_mentions VALUES(362,'DB2 V9',2,43,'others'); -INSERT INTO entity_mentions VALUES(363,'IBM DB',2,43,'others'); -INSERT INTO entity_mentions VALUES(364,'DB2-UDB',2,43,'others'); -INSERT INTO entity_mentions VALUES(365,'DB2 11.1',2,43,'others'); -INSERT INTO entity_mentions VALUES(366,'IBM-DB2-V9',2,43,'others'); -INSERT INTO entity_mentions VALUES(367,'IBM - IBM DB2 Advanced Enterprise Server Edition OEM Limited Use 11.1',2,43,'others'); -INSERT INTO entity_mentions VALUES(368,'IBM - IBM DB2 Personal Edition Product Trial 9.7',2,43,'others'); -INSERT INTO entity_mentions VALUES(369,'IBM - IBM DB2 Enterprise Server Edition - CPU Option 10.1',2,43,'others'); -INSERT INTO entity_mentions VALUES(370,'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.*',2,43,'others'); -INSERT INTO entity_mentions VALUES(371,'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.7',2,43,'others'); -INSERT INTO entity_mentions VALUES(372,'IBM DB2 UDB/LUW ENTERPRISE SERVER EDITION DB2 ESE v9.7 FP 11 Special Build 35826 37314',2,43,'others'); -INSERT INTO entity_mentions VALUES(373,'DB2/UDB',2,43,'others'); -INSERT INTO entity_mentions VALUES(374,'IBM DB2 ENTERPRISE SERVER EDITION PVU OPTION 10.5',2,43,'others'); -INSERT INTO entity_mentions VALUES(375,'DB2 10.5',2,43,'others'); -INSERT INTO entity_mentions VALUES(376,'DB2 9.7',2,43,'others'); -INSERT INTO entity_mentions VALUES(377,'DB2 9.1',2,43,'others'); -INSERT INTO entity_mentions VALUES(378,'IBM - IBM DB2 UDB Enterprise Server Edition 8.2',2,43,'others'); -INSERT INTO entity_mentions VALUES(379,'DB2 for i',2,43,'others'); -INSERT INTO entity_mentions VALUES(380,'IBM - IBM DB2 Enterprise Server Edition OEM Limited Use 10.5',2,43,'others'); -INSERT INTO entity_mentions VALUES(381,'IBM - IBM DB2 Storage Optimization Feature 9.7',2,43,'others'); -INSERT INTO entity_mentions VALUES(382,'IBM - IBM DB2 Advanced Enterprise Server Edition PVU Option 10.5',2,43,'others'); -INSERT INTO entity_mentions VALUES(383,'UDB',2,43,'others'); -INSERT INTO entity_mentions VALUES(384,'IBM - IBM DB2 Enterprise Server Edition Product Trial 9.7',2,43,'others'); -INSERT INTO entity_mentions VALUES(385,'DB2 ESE 10.5',2,43,'others'); -INSERT INTO entity_mentions VALUES(386,'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.5',2,43,'others'); -INSERT INTO entity_mentions VALUES(387,'IBM DB2',2,43,'others'); -INSERT INTO entity_mentions VALUES(388,'IBM - IBM DB2 Workgroup Server Edition Product Trial 9.7',2,43,'others'); -INSERT INTO entity_mentions VALUES(389,'Delphi',9,313,'others'); -INSERT INTO entity_mentions VALUES(390,'docker',10,503,'others'); -INSERT INTO entity_mentions VALUES(391,'Documentum D2',2,44,'others'); -INSERT INTO entity_mentions VALUES(392,'Documentum content server',2,44,'others'); -INSERT INTO entity_mentions VALUES(393,'Documentum',2,44,'others'); -INSERT INTO entity_mentions VALUES(394,'DOCUMENTUM-CS',2,44,'others'); -INSERT INTO entity_mentions VALUES(395,'DRUPAL',2,45,'others'); -INSERT INTO entity_mentions VALUES(396,'Easytrieve',9,314,'others'); -INSERT INTO entity_mentions VALUES(397,'EZTriev',9,314,'others'); -INSERT INTO entity_mentions VALUES(398,'Eztrieve',9,314,'others'); -INSERT INTO entity_mentions VALUES(399,'Eclipse',2,46,'others'); -INSERT INTO entity_mentions VALUES(400,'ATLAS Transformation Language',5,456,'others'); -INSERT INTO entity_mentions VALUES(401,'ATL',5,456,'others'); -INSERT INTO entity_mentions VALUES(402,'ATLAS Transformation Language (ATL)',5,456,'others'); -INSERT INTO entity_mentions VALUES(403,'Elastic (ELK) Stack',2,47,'others'); -INSERT INTO entity_mentions VALUES(404,'ELK',2,47,'others'); -INSERT INTO entity_mentions VALUES(405,'EMC Celerra',11,510,'others'); -INSERT INTO entity_mentions VALUES(406,'ETAP License Manager (LM)',2,48,'others'); -INSERT INTO entity_mentions VALUES(407,'ETAP Licensing Manager/TARO GJH',2,48,'others'); -INSERT INTO entity_mentions VALUES(408,'ETAP License Manager',2,48,'others'); -INSERT INTO entity_mentions VALUES(409,'ETAP License Manager GJH',2,48,'others'); -INSERT INTO entity_mentions VALUES(410,'PrestoSoft - ExamDiff Application 1.6',2,49,'others'); -INSERT INTO entity_mentions VALUES(411,'PrestoSoft - ExamDiff Application',2,49,'others'); -INSERT INTO entity_mentions VALUES(412,'ExamDiff',2,49,'others'); -INSERT INTO entity_mentions VALUES(413,'ExamDiff Application',2,49,'others'); -INSERT INTO entity_mentions VALUES(414,'Expect',9,315,'others'); -INSERT INTO entity_mentions VALUES(415,'Expect Scripts',9,315,'others'); -INSERT INTO entity_mentions VALUES(416,'eXtensible HyperText Markup Language (XHTML)',9,316,'others'); -INSERT INTO entity_mentions VALUES(417,'eXtensible HyperText Markup Language',9,316,'others'); -INSERT INTO entity_mentions VALUES(418,'XHTML',9,316,'others'); -INSERT INTO entity_mentions VALUES(419,'XML',9,596,'others'); -INSERT INTO entity_mentions VALUES(420,'Extensible Markup Language',9,596,'others'); -INSERT INTO entity_mentions VALUES(421,'Extensible Markup Language (XML)',9,596,'others'); -INSERT INTO entity_mentions VALUES(422,'MSXML',9,318,'others'); -INSERT INTO entity_mentions VALUES(423,'Microsoft - MSXML 4.0 SP2 4.2',9,318,'others'); -INSERT INTO entity_mentions VALUES(424,'Extensible Stylesheet Language',9,319,'others'); -INSERT INTO entity_mentions VALUES(425,'XSL',9,319,'others'); -INSERT INTO entity_mentions VALUES(426,'Extensible Stylesheet Language (XSL)',9,319,'others'); -INSERT INTO entity_mentions VALUES(427,'Extensible Stylesheet Language Transformations (XLST)',9,320,'others'); -INSERT INTO entity_mentions VALUES(428,'Extensible Stylesheet Language Transformations',9,320,'others'); -INSERT INTO entity_mentions VALUES(429,'XSLT',9,320,'others'); -INSERT INTO entity_mentions VALUES(430,'ServerCA Access GatewayF5',2,50,'others'); -INSERT INTO entity_mentions VALUES(431,'F5 Secure Web Gateway Services',2,50,'others'); -INSERT INTO entity_mentions VALUES(432,'Fabric OS',6,422,'others'); -INSERT INTO entity_mentions VALUES(433,'FabricOS',6,422,'others'); -INSERT INTO entity_mentions VALUES(434,'FileMaker Pro',2,51,'others'); -INSERT INTO entity_mentions VALUES(435,'FILEMAKER PRO 8.5',2,51,'others'); -INSERT INTO entity_mentions VALUES(436,'Flash',10,504,'others'); -INSERT INTO entity_mentions VALUES(437,'Flexnet 2016',2,52,'others'); -INSERT INTO entity_mentions VALUES(438,'FlexNet Manager Suite',2,52,'others'); -INSERT INTO entity_mentions VALUES(439,'FlexNet Manager Suite 2016',2,52,'others'); -INSERT INTO entity_mentions VALUES(440,'FOCUS',9,321,'others'); -INSERT INTO entity_mentions VALUES(441,'fortran',9,322,'others'); -INSERT INTO entity_mentions VALUES(442,'Rhino Software Inc - FTP Voyager 16.2',2,53,'others'); -INSERT INTO entity_mentions VALUES(443,'FTP Voyager',2,53,'others'); -INSERT INTO entity_mentions VALUES(444,'Genymotion',2,54,'others'); -INSERT INTO entity_mentions VALUES(445,'GlassFish',8,263,'others'); -INSERT INTO entity_mentions VALUES(446,'GlassFish Server 4 Open Source',8,263,'others'); -INSERT INTO entity_mentions VALUES(447,'GlassFish Server 4',8,263,'others'); -INSERT INTO entity_mentions VALUES(448,'GNU',6,423,'others'); -INSERT INTO entity_mentions VALUES(449,'Go',9,323,'others'); -INSERT INTO entity_mentions VALUES(450,'Chrome',2,55,'others'); -INSERT INTO entity_mentions VALUES(451,'Google Chrome',2,55,'others'); -INSERT INTO entity_mentions VALUES(452,'Google Chrome 76',2,55,'others'); -INSERT INTO entity_mentions VALUES(453,'GraphQL',9,324,'others'); -INSERT INTO entity_mentions VALUES(454,'EMC Greenplum',2,56,'others'); -INSERT INTO entity_mentions VALUES(455,'Groovy',9,325,'others'); -INSERT INTO entity_mentions VALUES(456,'Hadoop',2,57,'others'); -INSERT INTO entity_mentions VALUES(457,'HAProxy',8,264,'others'); -INSERT INTO entity_mentions VALUES(458,'HiveQL',9,326,'others'); -INSERT INTO entity_mentions VALUES(459,'HP aC++ compiler',2,58,'others'); -INSERT INTO entity_mentions VALUES(460,'HP C++',2,58,'others'); -INSERT INTO entity_mentions VALUES(461,'HP aC++',2,58,'others'); -INSERT INTO entity_mentions VALUES(462,'HP C/aC++',2,58,'others'); -INSERT INTO entity_mentions VALUES(463,'HP C++ 10.20',2,58,'others'); -INSERT INTO entity_mentions VALUES(464,'HPC 11.11',2,59,'others'); -INSERT INTO entity_mentions VALUES(465,'HP C/ANSI C compiler',2,59,'others'); -INSERT INTO entity_mentions VALUES(466,'HP C/ANSI C',2,59,'others'); -INSERT INTO entity_mentions VALUES(467,'HP Nonstop J06.20.00',4,293,'others'); -INSERT INTO entity_mentions VALUES(468,'HP Nonstop',4,293,'others'); -INSERT INTO entity_mentions VALUES(469,'HP Operations Orchestration (HPOO)',2,60,'others'); -INSERT INTO entity_mentions VALUES(470,'HP Operations Orchestration',2,60,'others'); -INSERT INTO entity_mentions VALUES(471,'HPOO',2,60,'others'); -INSERT INTO entity_mentions VALUES(472,'HPSA',2,61,'others'); -INSERT INTO entity_mentions VALUES(473,'HP Server Automation',2,61,'others'); -INSERT INTO entity_mentions VALUES(474,'HP Server Automation (HPSA)',2,61,'others'); -INSERT INTO entity_mentions VALUES(475,'HFS',10,505,'others'); -INSERT INTO entity_mentions VALUES(476,'www.rejetto.com - HttpFileServer 2.3',10,505,'others'); -INSERT INTO entity_mentions VALUES(477,'HTTP File Server',10,505,'others'); -INSERT INTO entity_mentions VALUES(478,'HttpFileServer',10,505,'others'); -INSERT INTO entity_mentions VALUES(479,'Hypertext Markup Language',9,327,'others'); -INSERT INTO entity_mentions VALUES(480,'HTML4',9,327,'others'); -INSERT INTO entity_mentions VALUES(481,'HTML',9,327,'others'); -INSERT INTO entity_mentions VALUES(482,'Hypertext Markup Language (HTML)',9,327,'others'); -INSERT INTO entity_mentions VALUES(483,'HTML5',9,327,'others'); -INSERT INTO entity_mentions VALUES(484,'IBM BigFix',2,62,'others'); -INSERT INTO entity_mentions VALUES(485,'IBM - IBM BigFix Platform',2,62,'others'); -INSERT INTO entity_mentions VALUES(486,'IBM BigFix Platform',2,62,'others'); -INSERT INTO entity_mentions VALUES(487,'IBM - IBM BigFix Platform Client Deploy Tool 9.5',5,457,'others'); -INSERT INTO entity_mentions VALUES(488,'Client Deploy Tool',5,457,'others'); -INSERT INTO entity_mentions VALUES(489,'(IBM) IBM Business Monitor 8.5.6',2,63,'others'); -INSERT INTO entity_mentions VALUES(490,'IBM Business Monitor',2,63,'others'); -INSERT INTO entity_mentions VALUES(491,'IBM BPM',2,64,'others'); -INSERT INTO entity_mentions VALUES(492,'IBM Business Process Manager',2,64,'others'); -INSERT INTO entity_mentions VALUES(493,'IBM Business Process Manager 8.5.7.0',2,64,'others'); -INSERT INTO entity_mentions VALUES(494,'(IBM) IBM Business Process Manager 8.5.6',2,64,'others'); -INSERT INTO entity_mentions VALUES(495,'IBM Business Process Manager 8.5.6.0',2,64,'others'); -INSERT INTO entity_mentions VALUES(496,'IBM Content Manager OnDemand',2,65,'others'); -INSERT INTO entity_mentions VALUES(497,'IBM Content Manager OnDemand (CMOD)',2,65,'others'); -INSERT INTO entity_mentions VALUES(498,'CMOD',2,65,'others'); -INSERT INTO entity_mentions VALUES(499,'Data Power',4,294,'others'); -INSERT INTO entity_mentions VALUES(500,'IBM DataPower Gateway',4,294,'others'); -INSERT INTO entity_mentions VALUES(501,'IDG.7.5.2.19hp',4,294,'others'); -INSERT INTO entity_mentions VALUES(502,'datapower-connector',4,294,'others'); -INSERT INTO entity_mentions VALUES(503,'FileNet',2,66,'others'); -INSERT INTO entity_mentions VALUES(504,'IBM FileNet',2,66,'others'); -INSERT INTO entity_mentions VALUES(505,'IBM FileNet P8 Platform',2,66,'others'); -INSERT INTO entity_mentions VALUES(506,'hlasm',9,328,'others'); -INSERT INTO entity_mentions VALUES(507,'IBM High Level Assembler',9,328,'others'); -INSERT INTO entity_mentions VALUES(508,'IBM High Level Assembler (HLASM)',9,328,'others'); -INSERT INTO entity_mentions VALUES(509,'IBM - IBM HTTP Server 6.1',8,265,'others'); -INSERT INTO entity_mentions VALUES(510,'IHS',8,265,'others'); -INSERT INTO entity_mentions VALUES(511,'IBM - IBM HTTP Server 7',8,265,'others'); -INSERT INTO entity_mentions VALUES(512,'IBM - IBM HTTP Server 8.5',8,265,'others'); -INSERT INTO entity_mentions VALUES(513,'WebSphere and IHS',8,265,'others'); -INSERT INTO entity_mentions VALUES(514,'WebSphere http',8,265,'others'); -INSERT INTO entity_mentions VALUES(515,'(IBM) IBM HTTP Server 8.5',8,265,'others'); -INSERT INTO entity_mentions VALUES(516,'IBM HTTP Server',8,265,'others'); -INSERT INTO entity_mentions VALUES(517,'IBM HTTP SERVER 8',8,265,'others'); -INSERT INTO entity_mentions VALUES(518,'IBM HTTP Server 8.',8,265,'others'); -INSERT INTO entity_mentions VALUES(519,'IBM Websphere HTTP Server',8,265,'others'); -INSERT INTO entity_mentions VALUES(520,'IBM HTTP',8,265,'others'); -INSERT INTO entity_mentions VALUES(521,'WebSphere IHS',8,265,'others'); -INSERT INTO entity_mentions VALUES(522,'WebSphere -IHS',8,265,'others'); -INSERT INTO entity_mentions VALUES(523,'IBM HTTP SERVER 6.1',8,265,'others'); -INSERT INTO entity_mentions VALUES(524,'IBMi',6,424,'others'); -INSERT INTO entity_mentions VALUES(525,'IBM i',6,424,'others'); -INSERT INTO entity_mentions VALUES(526,'OS400 V7R1',6,424,'others'); -INSERT INTO entity_mentions VALUES(527,'OS400',6,424,'others'); -INSERT INTO entity_mentions VALUES(528,'OS/400',6,424,'others'); -INSERT INTO entity_mentions VALUES(529,'CLP',9,329,'others'); -INSERT INTO entity_mentions VALUES(530,'IBM i Control Language (CL)',9,329,'others'); -INSERT INTO entity_mentions VALUES(531,'IBM Informix-4GL',9,330,'others'); -INSERT INTO entity_mentions VALUES(532,'Informix 4GL',9,330,'others'); -INSERT INTO entity_mentions VALUES(533,'Informix-4GL',9,330,'others'); -INSERT INTO entity_mentions VALUES(534,'DATASTAGE',2,67,'others'); -INSERT INTO entity_mentions VALUES(535,'IBM InfoSphere DataStage',2,67,'others'); -INSERT INTO entity_mentions VALUES(536,'datastage 11.3',2,67,'others'); -INSERT INTO entity_mentions VALUES(537,'IBM Integration Bus 10.0',2,68,'others'); -INSERT INTO entity_mentions VALUES(538,'IBM Integration Bus v9',2,68,'others'); -INSERT INTO entity_mentions VALUES(539,'IBM Integration Bus 9.0',2,68,'others'); -INSERT INTO entity_mentions VALUES(540,'IBM Integration Bus',2,68,'others'); -INSERT INTO entity_mentions VALUES(541,'IIB',2,68,'others'); -INSERT INTO entity_mentions VALUES(542,'IBM Integration Bus v10',2,68,'others'); -INSERT INTO entity_mentions VALUES(543,'Extended Structured Query Language (ESQL)',5,458,'others'); -INSERT INTO entity_mentions VALUES(544,'ESQL',5,458,'others'); -INSERT INTO entity_mentions VALUES(545,'Extended Structured Query Language',5,458,'others'); -INSERT INTO entity_mentions VALUES(546,'IBM - IBM License Metric Tool and Tivoli Asset Discovery for Distributed',2,69,'others'); -INSERT INTO entity_mentions VALUES(547,'IBM License Metric Tool',2,69,'others'); -INSERT INTO entity_mentions VALUES(548,'Maximo',2,70,'others'); -INSERT INTO entity_mentions VALUES(549,'IBM Maximo 7.6',2,70,'others'); -INSERT INTO entity_mentions VALUES(550,'IBM Maximo',2,70,'others'); -INSERT INTO entity_mentions VALUES(551,'IBM Migration Utility',2,71,'others'); -INSERT INTO entity_mentions VALUES(552,'IBM WorkLight',2,72,'others'); -INSERT INTO entity_mentions VALUES(553,'IBM Mobile Foundation',2,72,'others'); -INSERT INTO entity_mentions VALUES(554,'Operational Decision Manager',2,73,'others'); -INSERT INTO entity_mentions VALUES(555,'ILOG JRules',2,73,'others'); -INSERT INTO entity_mentions VALUES(556,'Decision Server 8.0.1.0',2,73,'others'); -INSERT INTO entity_mentions VALUES(557,'IBM WebSphere ILOG Jrules',2,73,'others'); -INSERT INTO entity_mentions VALUES(558,'IBM Operational Decision Manager (ODM)',2,73,'others'); -INSERT INTO entity_mentions VALUES(559,'Decision Center 8.0.1.0',2,73,'others'); -INSERT INTO entity_mentions VALUES(560,'IBM Operational Decision Manager',2,73,'others'); -INSERT INTO entity_mentions VALUES(561,'IBM ODM',2,73,'others'); -INSERT INTO entity_mentions VALUES(562,'AS400',4,295,'others'); -INSERT INTO entity_mentions VALUES(563,'AS/400',4,295,'others'); -INSERT INTO entity_mentions VALUES(564,'IBM Power Systems',4,295,'others'); -INSERT INTO entity_mentions VALUES(565,'System p',4,295,'others'); -INSERT INTO entity_mentions VALUES(566,'System i',4,295,'others'); -INSERT INTO entity_mentions VALUES(567,'P-series',4,295,'others'); -INSERT INTO entity_mentions VALUES(568,'IBM iSeries/AS400 system Model 520',4,295,'others'); -INSERT INTO entity_mentions VALUES(569,'IBM - IBM Spectrum Scale Express Client 4.1',2,605,'others'); -INSERT INTO entity_mentions VALUES(570,'IBM Spectrum Scale Server',2,605,'others'); -INSERT INTO entity_mentions VALUES(571,'IBM Spectrum Scale',2,605,'others'); -INSERT INTO entity_mentions VALUES(572,'IBM - IBM Spectrum Scale Express Server 4.1',2,605,'others'); -INSERT INTO entity_mentions VALUES(573,'IBM - IBM Spectrum Scale Standard Server 4.1',2,605,'others'); -INSERT INTO entity_mentions VALUES(574,'IBM - IBM Spectrum Scale Express FPO 4.1',2,605,'others'); -INSERT INTO entity_mentions VALUES(575,'IBM Spectrum Scale FPO',2,605,'others'); -INSERT INTO entity_mentions VALUES(576,'IBM Spectrum Scale Client',2,605,'others'); -INSERT INTO entity_mentions VALUES(577,'IBM - IBM Spectrum Scale Standard FPO 4.1',2,605,'others'); -INSERT INTO entity_mentions VALUES(578,'IBM - IBM Spectrum Scale Standard Client 4.1',2,605,'others'); -INSERT INTO entity_mentions VALUES(579,'IBM Tivoli Asset Management',2,606,'others'); -INSERT INTO entity_mentions VALUES(580,'Tivoli Asset Management',2,606,'others'); -INSERT INTO entity_mentions VALUES(581,'Asset Discovery for Distributed',5,459,'others'); -INSERT INTO entity_mentions VALUES(582,'Tivoli Asset Discovery for Distributed',5,459,'others'); -INSERT INTO entity_mentions VALUES(583,'IBM - IBM Tivoli Composite Application Manager for Microsoft Applications - MS SQL Server Agent 6.3',2,76,'others'); -INSERT INTO entity_mentions VALUES(584,'IBM Tivoli Composite Application Manager',2,76,'others'); -INSERT INTO entity_mentions VALUES(585,'IBM - IBM Tivoli Composite Application Manager Agent for DB2 7.1',2,76,'others'); -INSERT INTO entity_mentions VALUES(586,'IBM - IBM Tivoli Composite Application Manager for Microsoft Applications - IIS server agent 6.3',2,76,'others'); -INSERT INTO entity_mentions VALUES(587,'IBM - IBM Tivoli Monitoring - Windows OS Agent 6.2',2,77,'others'); -INSERT INTO entity_mentions VALUES(588,'IBM - IBM Tivoli Monitoring for Databases - DB2 Agent 6.2',2,77,'others'); -INSERT INTO entity_mentions VALUES(589,'IBM Tivoli Monitoring',2,77,'others'); -INSERT INTO entity_mentions VALUES(590,'IBM - IBM Tivoli Monitoring - Windows OS Agent 6.3',2,77,'others'); -INSERT INTO entity_mentions VALUES(591,'Tivoli Monitoring',2,77,'others'); -INSERT INTO entity_mentions VALUES(592,'Database MS SQL Agent',2,77,'others'); -INSERT INTO entity_mentions VALUES(593,'Linux OS Agent',2,77,'others'); -INSERT INTO entity_mentions VALUES(594,'Database DB2 Agent',2,77,'others'); -INSERT INTO entity_mentions VALUES(595,'IBM - IBM Tivoli Monitoring for Databases - MS SQL Agent 6.2',2,77,'others'); -INSERT INTO entity_mentions VALUES(596,'IBM - IBM Tivoli Monitoring - Linux OS Agent 6.2',2,77,'others'); -INSERT INTO entity_mentions VALUES(597,'Windows OS Agent',2,77,'others'); -INSERT INTO entity_mentions VALUES(598,'IBM - IBM Tivoli Monitoring - Windows OS Agent 6',2,77,'others'); -INSERT INTO entity_mentions VALUES(599,'IBM Tivoli Storage Manager',2,604,'others'); -INSERT INTO entity_mentions VALUES(600,'IBM - IBM TSM FCM',2,604,'others'); -INSERT INTO entity_mentions VALUES(601,'Tivoli Storage Manager',2,604,'others'); -INSERT INTO entity_mentions VALUES(602,'IBM - IBM Tivoli Storage Manager',2,604,'others'); -INSERT INTO entity_mentions VALUES(603,'IBM Tivoli Storage Manager API',2,604,'others'); -INSERT INTO entity_mentions VALUES(604,'IBM - IBM Tivoli Storage Manager for Databases - Data Protection for Microsoft SQL 6.3',2,604,'others'); -INSERT INTO entity_mentions VALUES(605,'Databases Data Protection for Microsoft SQL',2,604,'others'); -INSERT INTO entity_mentions VALUES(606,'IBM - IBM Tivoli Storage Manager API 6.4',2,604,'others'); -INSERT INTO entity_mentions VALUES(607,'IBM - IBM Spectrum Protect Data Protection for Microsoft SQL Server 8.1',2,604,'others'); -INSERT INTO entity_mentions VALUES(608,'IBM Spectrum Protect Data Protection',2,604,'others'); -INSERT INTO entity_mentions VALUES(609,'TSM API',5,460,'others'); -INSERT INTO entity_mentions VALUES(610,'IBM - IBM Spectrum Protect API 7.1',5,460,'others'); -INSERT INTO entity_mentions VALUES(611,'IBM - IBM Spectrum Protect Client',5,461,'others'); -INSERT INTO entity_mentions VALUES(612,'TSM Client',5,461,'others'); -INSERT INTO entity_mentions VALUES(613,'IBM - IBM Tivoli Storage Manager Client',5,461,'others'); -INSERT INTO entity_mentions VALUES(614,'TSM Storage Agent',5,462,'others'); -INSERT INTO entity_mentions VALUES(615,'IBM - IBM Spectrum Protect Storage Agent 8.1',5,462,'others'); -INSERT INTO entity_mentions VALUES(616,'VSS Requestor',5,463,'others'); -INSERT INTO entity_mentions VALUES(617,'VSS Requestor configured 8.1',5,463,'others'); -INSERT INTO entity_mentions VALUES(618,'VSS Requestor 7.1',5,463,'others'); -INSERT INTO entity_mentions VALUES(619,'TWS-WS',2,79,'others'); -INSERT INTO entity_mentions VALUES(620,'Tivoli Workload Scheduler',2,79,'others'); -INSERT INTO entity_mentions VALUES(621,'IBM Tivoli Workload Scheduler (TWS)',2,79,'others'); -INSERT INTO entity_mentions VALUES(622,'IBM WebSphere Business Integration Adaptor',2,80,'others'); -INSERT INTO entity_mentions VALUES(623,'WebSphere Business Integration Adaptor',2,80,'others'); -INSERT INTO entity_mentions VALUES(624,'wbia 2.6',2,80,'others'); -INSERT INTO entity_mentions VALUES(625,'IBM WBIA 2.6.0.12',2,80,'others'); -INSERT INTO entity_mentions VALUES(626,'IBM Websphere MQ 7.1',2,81,'others'); -INSERT INTO entity_mentions VALUES(627,'MQ',2,81,'others'); -INSERT INTO entity_mentions VALUES(628,'MQ 9.1',2,81,'others'); -INSERT INTO entity_mentions VALUES(629,'IBM WebSphere MQ Client 7.5',2,81,'others'); -INSERT INTO entity_mentions VALUES(630,'Websphere MQ',2,81,'others'); -INSERT INTO entity_mentions VALUES(631,'MQ 7',2,81,'others'); -INSERT INTO entity_mentions VALUES(632,'MQ 6',2,81,'others'); -INSERT INTO entity_mentions VALUES(633,'MQ 9.0',2,81,'others'); -INSERT INTO entity_mentions VALUES(634,'MQ 5.3',2,81,'others'); -INSERT INTO entity_mentions VALUES(635,'MQ 7.01',2,81,'others'); -INSERT INTO entity_mentions VALUES(636,'MQ 7.5',2,81,'others'); -INSERT INTO entity_mentions VALUES(637,'MQSeries 8.0',2,81,'others'); -INSERT INTO entity_mentions VALUES(638,'IBM Websphere MQ',2,81,'others'); -INSERT INTO entity_mentions VALUES(639,'IBM MQ',2,81,'others'); -INSERT INTO entity_mentions VALUES(640,'IBM WEBSPHERE MQ SERVER 7.5',2,81,'others'); -INSERT INTO entity_mentions VALUES(641,'WSMQ 8.0',2,81,'others'); -INSERT INTO entity_mentions VALUES(642,'MQ 9.0.5',2,81,'others'); -INSERT INTO entity_mentions VALUES(643,'IBM WebSphere MQ Telemetry Service 7.5',2,82,'others'); -INSERT INTO entity_mentions VALUES(644,'IBM WebSphere MQ Telemetry',2,82,'others'); -INSERT INTO entity_mentions VALUES(645,'WTX',2,83,'others'); -INSERT INTO entity_mentions VALUES(646,'IBM WebSphere Transformation Extender (WTX)',2,83,'others'); -INSERT INTO entity_mentions VALUES(647,'IBM WebSphere Transformation Extender',2,83,'others'); -INSERT INTO entity_mentions VALUES(648,'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.6001.18000',8,609,'others'); -INSERT INTO entity_mentions VALUES(649,'IIS 7.5',8,609,'others'); -INSERT INTO entity_mentions VALUES(650,'Internet Information Services (IIS)',8,609,'others'); -INSERT INTO entity_mentions VALUES(651,'Microsoft Internet Information Services 7.5',8,609,'others'); -INSERT INTO entity_mentions VALUES(652,'MICROSOFT INTERNET INFORMATION SERVICES VERSION 7',8,609,'others'); -INSERT INTO entity_mentions VALUES(653,'Microsoft Internet Information Services',8,609,'others'); -INSERT INTO entity_mentions VALUES(654,'Microsoft Internet Information',8,609,'others'); -INSERT INTO entity_mentions VALUES(655,'IIS Express 8',8,609,'others'); -INSERT INTO entity_mentions VALUES(656,'Internet Information Services (IIS 6.0)',8,609,'others'); -INSERT INTO entity_mentions VALUES(657,'Microsoft IIS 8.5',8,609,'others'); -INSERT INTO entity_mentions VALUES(658,'IIS',8,609,'others'); -INSERT INTO entity_mentions VALUES(659,'IIS Express',8,609,'others'); -INSERT INTO entity_mentions VALUES(660,'MICROSOFT INTERNET INFORMATION SERVICES VERSION 7.5',8,609,'others'); -INSERT INTO entity_mentions VALUES(661,'Microsoft Internet Inf',8,609,'others'); -INSERT INTO entity_mentions VALUES(662,'MICROSOFT INTERNET INFORMATION SERVER VERSION 5.1.2600.2180',8,609,'others'); -INSERT INTO entity_mentions VALUES(663,'TS-IIS Express 10',8,609,'others'); -INSERT INTO entity_mentions VALUES(664,'Microsoft Internet Informat',8,609,'others'); -INSERT INTO entity_mentions VALUES(665,'Microsoft IIS Webserver',8,609,'others'); -INSERT INTO entity_mentions VALUES(666,'IIS Server',8,609,'others'); -INSERT INTO entity_mentions VALUES(667,'Microsoft Internet Information Services 8.5',8,609,'others'); -INSERT INTO entity_mentions VALUES(668,'IIS Version 7',8,609,'others'); -INSERT INTO entity_mentions VALUES(669,'Microsoft Internet Information Services 8.0',8,609,'others'); -INSERT INTO entity_mentions VALUES(670,'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.3790.1830',8,609,'others'); -INSERT INTO entity_mentions VALUES(671,'IIS 8.5.9600.16386',8,609,'others'); -INSERT INTO entity_mentions VALUES(672,'IIS 7.x',8,609,'others'); -INSERT INTO entity_mentions VALUES(673,'IIS 7.0',8,609,'others'); -INSERT INTO entity_mentions VALUES(674,'IIS 10',8,609,'others'); -INSERT INTO entity_mentions VALUES(675,'Microsoft Internet Information Services 6.0',8,609,'others'); -INSERT INTO entity_mentions VALUES(676,'Internet Information Services (IIS 7.0)',8,609,'others'); -INSERT INTO entity_mentions VALUES(677,'Microsoft Internet Information Services 10.0',8,609,'others'); -INSERT INTO entity_mentions VALUES(678,'IIS 8.5',8,609,'others'); -INSERT INTO entity_mentions VALUES(679,'Microsoft - IIS Express 10',8,609,'others'); -INSERT INTO entity_mentions VALUES(680,'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.*',8,609,'others'); -INSERT INTO entity_mentions VALUES(681,'Microsoft IIS 7.0',8,609,'others'); -INSERT INTO entity_mentions VALUES(682,'MICROSOFT INTERNET INFORMATION SERVICES VERSION 8',8,609,'others'); -INSERT INTO entity_mentions VALUES(683,'IIS v 7.0',8,609,'others'); -INSERT INTO entity_mentions VALUES(684,'IIS 7.2.1952',8,609,'others'); -INSERT INTO entity_mentions VALUES(685,'Microsoft Internet Information Services 7.0',8,609,'others'); -INSERT INTO entity_mentions VALUES(686,'Microsoft IIS 8.0',8,609,'others'); -INSERT INTO entity_mentions VALUES(687,'IIS Web Server v6',8,609,'others'); -INSERT INTO entity_mentions VALUES(688,'IIS 8.x',8,609,'others'); -INSERT INTO entity_mentions VALUES(689,'IIS 8.0.1557',8,609,'others'); -INSERT INTO entity_mentions VALUES(690,'IIS 11',8,609,'others'); -INSERT INTO entity_mentions VALUES(691,'IIS 6.0',8,609,'others'); -INSERT INTO entity_mentions VALUES(692,'IIS Express 7',8,609,'others'); -INSERT INTO entity_mentions VALUES(693,'IIS 7.2.2',8,609,'others'); -INSERT INTO entity_mentions VALUES(694,'IIS Instance',8,609,'others'); -INSERT INTO entity_mentions VALUES(695,'Microsoft IIS 6.0',8,609,'others'); -INSERT INTO entity_mentions VALUES(696,'IIS Express 10',8,609,'others'); -INSERT INTO entity_mentions VALUES(697,'IIS Servers',8,609,'others'); -INSERT INTO entity_mentions VALUES(698,'MS-IIS',8,609,'others'); -INSERT INTO entity_mentions VALUES(699,'Internet Information Services (IIS 8.5)',8,609,'others'); -INSERT INTO entity_mentions VALUES(700,'IIS 8.0',8,609,'others'); -INSERT INTO entity_mentions VALUES(701,'Microsoft IIS 7.5',8,609,'others'); -INSERT INTO entity_mentions VALUES(702,'IIS Version 8 64 bit',8,609,'others'); -INSERT INTO entity_mentions VALUES(703,'IIS 6',8,609,'others'); -INSERT INTO entity_mentions VALUES(704,'IIS7.5',8,609,'others'); -INSERT INTO entity_mentions VALUES(705,'IEMT',7,489,'others'); -INSERT INTO entity_mentions VALUES(706,'Microsoft - IIS 6.0 Migration Tool 1',7,489,'others'); -INSERT INTO entity_mentions VALUES(707,'IIS Easy Migration Tool',7,489,'others'); -INSERT INTO entity_mentions VALUES(708,'Easy Migration Tool',7,489,'others'); -INSERT INTO entity_mentions VALUES(709,'Easy Migration Tool (IEMT)',7,489,'others'); -INSERT INTO entity_mentions VALUES(710,'IIS Easy Migration Tool (IEMT)',7,489,'others'); -INSERT INTO entity_mentions VALUES(711,'MS-ARR',7,490,'others'); -INSERT INTO entity_mentions VALUES(712,'Application Request Routing',7,490,'others'); -INSERT INTO entity_mentions VALUES(713,'ARR',7,490,'others'); -INSERT INTO entity_mentions VALUES(714,'Application Request Routing (ARR)',7,490,'others'); -INSERT INTO entity_mentions VALUES(715,'IIS Manager',7,491,'others'); -INSERT INTO entity_mentions VALUES(716,'IMS DB',2,84,'others'); -INSERT INTO entity_mentions VALUES(717,'IMS',2,84,'others'); -INSERT INTO entity_mentions VALUES(718,'Infozip 6',2,85,'others'); -INSERT INTO entity_mentions VALUES(719,'Infozip',2,85,'others'); -INSERT INTO entity_mentions VALUES(720,'Info-ZIP',2,85,'others'); -INSERT INTO entity_mentions VALUES(721,'Infobright Community Edition',2,86,'others'); -INSERT INTO entity_mentions VALUES(722,'Infobright Community Edition (ICE)',2,86,'others'); -INSERT INTO entity_mentions VALUES(723,'infobright-ce',2,86,'others'); -INSERT INTO entity_mentions VALUES(724,'informatica',2,87,'others'); -INSERT INTO entity_mentions VALUES(725,'Informatica PowerCenter',2,87,'others'); -INSERT INTO entity_mentions VALUES(726,'Informatica PowerCenter 10.2',2,87,'others'); -INSERT INTO entity_mentions VALUES(727,'Informatica Version 10.2.0 HotFix1',2,87,'others'); -INSERT INTO entity_mentions VALUES(728,'Informatica Power Center 8.6.1',2,87,'others'); -INSERT INTO entity_mentions VALUES(729,'ETL tool: Informatica',2,87,'others'); -INSERT INTO entity_mentions VALUES(730,'Informatica database server-mspr50',2,87,'others'); -INSERT INTO entity_mentions VALUES(731,'Informatica ETL',2,87,'others'); -INSERT INTO entity_mentions VALUES(732,'Informatica Power Center 9.6.1',2,87,'others'); -INSERT INTO entity_mentions VALUES(733,'Informatica PowerCenter 10.2-msprap150',2,87,'others'); -INSERT INTO entity_mentions VALUES(734,'ETL tool=Informatica',2,87,'others'); -INSERT INTO entity_mentions VALUES(735,'Ingres',2,88,'others'); -INSERT INTO entity_mentions VALUES(736,'INGRES DBM',2,88,'others'); -INSERT INTO entity_mentions VALUES(737,'Intel(R) Xeon(R) CPU E7- 4870 @ 2.40GHz',4,296,'others'); -INSERT INTO entity_mentions VALUES(738,'intel(r) xeon(r) cpu e7- 4870 @ 2.40ghz',4,296,'others'); -INSERT INTO entity_mentions VALUES(739,'Intel(R) Xeon(R) CPU E5530 @ 2.40GHz',4,296,'others'); -INSERT INTO entity_mentions VALUES(740,'Intel(R) Xeon(R) CPU X7550 @ 2.00GHz',4,296,'others'); -INSERT INTO entity_mentions VALUES(741,'Intel(R) Xeon(R) CPU E5-2648L v4 @ 1.80GHz',4,296,'others'); -INSERT INTO entity_mentions VALUES(742,'Intel Xeon Processor',4,296,'others'); -INSERT INTO entity_mentions VALUES(743,'IMSVA 9.1',3,566,'others'); -INSERT INTO entity_mentions VALUES(744,'InterScan Messaging Security Virtual Appliance',3,566,'others'); -INSERT INTO entity_mentions VALUES(745,'InterScan Messaging Security Virtual Appliance (IMSVA)',3,566,'others'); -INSERT INTO entity_mentions VALUES(746,'IMSVA',3,566,'others'); -INSERT INTO entity_mentions VALUES(747,'iOS',6,425,'others'); -INSERT INTO entity_mentions VALUES(748,'Java 1.8',9,584,'others'); -INSERT INTO entity_mentions VALUES(749,'Java 7',9,584,'others'); -INSERT INTO entity_mentions VALUES(750,'Java on Weblogic server',9,584,'others'); -INSERT INTO entity_mentions VALUES(751,'Java',9,584,'others'); -INSERT INTO entity_mentions VALUES(752,'Java5',9,584,'others'); -INSERT INTO entity_mentions VALUES(753,'Java 6',9,584,'others'); -INSERT INTO entity_mentions VALUES(754,'Java 6.0',9,584,'others'); -INSERT INTO entity_mentions VALUES(755,'Java 7 Update 25',9,584,'others'); -INSERT INTO entity_mentions VALUES(756,'Java Scripting',9,584,'others'); -INSERT INTO entity_mentions VALUES(758,'Java (open source)',9,584,'others'); -INSERT INTO entity_mentions VALUES(759,'Java 5',9,584,'others'); -INSERT INTO entity_mentions VALUES(760,'Java 1.5',9,584,'others'); -INSERT INTO entity_mentions VALUES(761,'Java (1.6)',9,584,'others'); -INSERT INTO entity_mentions VALUES(762,'Java 1.8.0_92',9,584,'others'); -INSERT INTO entity_mentions VALUES(763,'Java 1.6',9,584,'others'); -INSERT INTO entity_mentions VALUES(764,'J2EE 6',9,584,'others'); -INSERT INTO entity_mentions VALUES(765,'Java (J2EE)',9,584,'others'); -INSERT INTO entity_mentions VALUES(766,'Oracle - Java Runtime Environment 11',10,506,'others'); -INSERT INTO entity_mentions VALUES(767,'JRE',10,506,'others'); -INSERT INTO entity_mentions VALUES(768,'Java Runtime',10,506,'others'); -INSERT INTO entity_mentions VALUES(769,'Oracle - Java Runtime Environment 8',10,506,'others'); -INSERT INTO entity_mentions VALUES(770,'Oracle - Java Runtime Environment 7',10,506,'others'); -INSERT INTO entity_mentions VALUES(771,'Java Runtime Environment (JRE)',10,506,'others'); -INSERT INTO entity_mentions VALUES(772,'Java Runtime 6',10,506,'others'); -INSERT INTO entity_mentions VALUES(773,'Camel',12,378,'others'); -INSERT INTO entity_mentions VALUES(774,'Apache Camel',12,378,'others'); -INSERT INTO entity_mentions VALUES(775,'SS7/CAMEL',12,378,'others'); -INSERT INTO entity_mentions VALUES(776,'Apache mmons-beanutils',12,379,'others'); -INSERT INTO entity_mentions VALUES(777,'Apache Commons BeanUtils',12,379,'others'); -INSERT INTO entity_mentions VALUES(778,'PDFBox',12,380,'others'); -INSERT INTO entity_mentions VALUES(779,'Apache PDFBox',12,380,'others'); -INSERT INTO entity_mentions VALUES(780,'PDFBox 1.6',12,380,'others'); -INSERT INTO entity_mentions VALUES(781,'Velocity',12,381,'others'); -INSERT INTO entity_mentions VALUES(782,'Apache Velocity',12,381,'others'); -INSERT INTO entity_mentions VALUES(783,'EclipseLink 2.6.4',12,382,'others'); -INSERT INTO entity_mentions VALUES(784,'EclipseLink',12,382,'others'); -INSERT INTO entity_mentions VALUES(785,'EJB',12,383,'others'); -INSERT INTO entity_mentions VALUES(786,'EJBS',12,383,'others'); -INSERT INTO entity_mentions VALUES(787,'Ejb 2.x',12,383,'others'); -INSERT INTO entity_mentions VALUES(788,'Enterprise JavaBeans (EJB)',12,383,'others'); -INSERT INTO entity_mentions VALUES(789,'Enterprise JavaBeans',12,383,'others'); -INSERT INTO entity_mentions VALUES(790,'JAVA-XSL',9,319,'others'); -INSERT INTO entity_mentions VALUES(793,'EZMorph',12,384,'others'); -INSERT INTO entity_mentions VALUES(794,'GWT',12,385,'others'); -INSERT INTO entity_mentions VALUES(795,'Google Web Toolkit',12,385,'others'); -INSERT INTO entity_mentions VALUES(796,'Google Web Toolkit (GWT)',12,385,'others'); -INSERT INTO entity_mentions VALUES(797,'Hibernate',12,386,'others'); -INSERT INTO entity_mentions VALUES(798,'IBM - IBM SDK 5.0 for Windows AMD/EMT 64',12,387,'others'); -INSERT INTO entity_mentions VALUES(799,'IBM SDK',12,387,'others'); -INSERT INTO entity_mentions VALUES(800,'Oracle - JDK/SDK',12,388,'others'); -INSERT INTO entity_mentions VALUES(801,'JDK 1.7.0',12,388,'others'); -INSERT INTO entity_mentions VALUES(802,'JDK',12,388,'others'); -INSERT INTO entity_mentions VALUES(803,'Oracle (Sun) JDK/JRE',12,388,'others'); -INSERT INTO entity_mentions VALUES(804,'JDK8',12,388,'others'); -INSERT INTO entity_mentions VALUES(805,'JDK 1.5',12,388,'others'); -INSERT INTO entity_mentions VALUES(806,'Oracle JDK',12,388,'others'); -INSERT INTO entity_mentions VALUES(807,'Java Development Kit (JDK)',12,388,'others'); -INSERT INTO entity_mentions VALUES(808,'Oracle - JDK/SDK 8',12,388,'others'); -INSERT INTO entity_mentions VALUES(809,'Java Development Kit',12,388,'others'); -INSERT INTO entity_mentions VALUES(810,'JDK 1.6.0_24',12,388,'others'); -INSERT INTO entity_mentions VALUES(811,'JDK8 (1.8)',12,388,'others'); -INSERT INTO entity_mentions VALUES(812,'JDK 1.3',12,388,'others'); -INSERT INTO entity_mentions VALUES(813,'JEE',9,333,'others'); -INSERT INTO entity_mentions VALUES(814,'Java EE',9,333,'others'); -INSERT INTO entity_mentions VALUES(815,'Java Enterprise Edition (Java EE)',9,333,'others'); -INSERT INTO entity_mentions VALUES(816,'Java Enterprise Edition',9,333,'others'); -INSERT INTO entity_mentions VALUES(817,'Java Message Service (JMS)',12,389,'others'); -INSERT INTO entity_mentions VALUES(818,'JMS',12,389,'others'); -INSERT INTO entity_mentions VALUES(819,'Java Message Service',12,389,'others'); -INSERT INTO entity_mentions VALUES(820,'Java Standard Edition (Java SE)',9,334,'others'); -INSERT INTO entity_mentions VALUES(821,'oracle - java - java se 6',9,334,'others'); -INSERT INTO entity_mentions VALUES(822,'Java SE 6',9,334,'others'); -INSERT INTO entity_mentions VALUES(823,'Java Web Start',12,390,'others'); -INSERT INTO entity_mentions VALUES(824,'Oracle - Java Web Start 1.5',12,390,'others'); -INSERT INTO entity_mentions VALUES(825,'Oracle - Java Web Start 6',12,390,'others'); -INSERT INTO entity_mentions VALUES(826,'JavaServer Faces',12,391,'others'); -INSERT INTO entity_mentions VALUES(827,'JavaServer Faces (JSF)',12,391,'others'); -INSERT INTO entity_mentions VALUES(828,'JSF',12,391,'others'); -INSERT INTO entity_mentions VALUES(829,'JavaServer Pages',9,335,'others'); -INSERT INTO entity_mentions VALUES(830,'JavaServer Pages (JSP)',9,335,'others'); -INSERT INTO entity_mentions VALUES(831,'Core JSP',9,335,'others'); -INSERT INTO entity_mentions VALUES(832,'JSP',9,335,'others'); -INSERT INTO entity_mentions VALUES(833,'JSP Scriptlets',9,336,'others'); -INSERT INTO entity_mentions VALUES(834,'Java Scriplet',9,336,'others'); -INSERT INTO entity_mentions VALUES(835,'JDBC',12,392,'others'); -INSERT INTO entity_mentions VALUES(836,'JRuby Core',12,393,'others'); -INSERT INTO entity_mentions VALUES(837,'Core 9.2.0.0',12,393,'others'); -INSERT INTO entity_mentions VALUES(838,'APACHE LOG4J',12,394,'others'); -INSERT INTO entity_mentions VALUES(839,'Log4j',12,394,'others'); -INSERT INTO entity_mentions VALUES(840,'Quartz',12,395,'others'); -INSERT INTO entity_mentions VALUES(841,'Java RMI',12,396,'others'); -INSERT INTO entity_mentions VALUES(842,'Java Remote Method Invocation (RMI)',12,396,'others'); -INSERT INTO entity_mentions VALUES(843,'Remote Method Invocation',12,396,'others'); -INSERT INTO entity_mentions VALUES(844,'Java Servlets',12,397,'others'); -INSERT INTO entity_mentions VALUES(845,'Java 6 Servlets',12,397,'others'); -INSERT INTO entity_mentions VALUES(846,'J2EE Servlets',12,397,'others'); -INSERT INTO entity_mentions VALUES(847,'Servlet',12,397,'others'); -INSERT INTO entity_mentions VALUES(848,'Servlets',12,397,'others'); -INSERT INTO entity_mentions VALUES(849,'Servlets v2.3',12,397,'others'); -INSERT INTO entity_mentions VALUES(850,'Spring',12,398,'others'); -INSERT INTO entity_mentions VALUES(851,'Spring IO',12,398,'others'); -INSERT INTO entity_mentions VALUES(852,'Spring BOOT',12,399,'others'); -INSERT INTO entity_mentions VALUES(853,'Spring Cloud Data Flow',12,400,'others'); -INSERT INTO entity_mentions VALUES(854,'Spring MVC',12,401,'others'); -INSERT INTO entity_mentions VALUES(855,'Struts (2.0)',12,402,'others'); -INSERT INTO entity_mentions VALUES(856,'Struts 2.0',12,402,'others'); -INSERT INTO entity_mentions VALUES(857,'Struts',12,402,'others'); -INSERT INTO entity_mentions VALUES(858,'Swing',12,403,'others'); -INSERT INTO entity_mentions VALUES(859,'Swings',12,403,'others'); -INSERT INTO entity_mentions VALUES(860,'Vaadin',12,404,'others'); -INSERT INTO entity_mentions VALUES(861,'javasript',9,589,'others'); -INSERT INTO entity_mentions VALUES(862,'JS',9,589,'others'); -INSERT INTO entity_mentions VALUES(863,'Javascript',9,589,'others'); -INSERT INTO entity_mentions VALUES(864,'Java Script',9,589,'others'); -INSERT INTO entity_mentions VALUES(865,'javascriptl',9,589,'others'); -INSERT INTO entity_mentions VALUES(866,'AJAX',12,405,'others'); -INSERT INTO entity_mentions VALUES(867,'Angular JS',12,406,'others'); -INSERT INTO entity_mentions VALUES(868,'AngularJS',12,406,'others'); -INSERT INTO entity_mentions VALUES(869,'Angular',12,406,'others'); -INSERT INTO entity_mentions VALUES(870,'Draw2D',12,407,'others'); -INSERT INTO entity_mentions VALUES(871,'Draw2D 2.10.1',12,407,'others'); -INSERT INTO entity_mentions VALUES(872,'Express',12,408,'others'); -INSERT INTO entity_mentions VALUES(873,'Express.js',12,408,'others'); -INSERT INTO entity_mentions VALUES(874,'ExtJS 4.1',12,409,'others'); -INSERT INTO entity_mentions VALUES(875,'Sencha 4.2.0',12,409,'others'); -INSERT INTO entity_mentions VALUES(876,'ExtJS',12,409,'others'); -INSERT INTO entity_mentions VALUES(877,'Ext JS',12,409,'others'); -INSERT INTO entity_mentions VALUES(878,'jqGrid',12,410,'others'); -INSERT INTO entity_mentions VALUES(879,'JQuery 1.7',12,411,'others'); -INSERT INTO entity_mentions VALUES(880,'JQuery',12,411,'others'); -INSERT INTO entity_mentions VALUES(881,'jqueryui',12,412,'others'); -INSERT INTO entity_mentions VALUES(882,'jQuery UI',12,412,'others'); -INSERT INTO entity_mentions VALUES(883,'jquery-ui',12,412,'others'); -INSERT INTO entity_mentions VALUES(884,'react',12,413,'others'); -INSERT INTO entity_mentions VALUES(885,'ReactJS',12,413,'others'); -INSERT INTO entity_mentions VALUES(886,'react.js',12,413,'others'); -INSERT INTO entity_mentions VALUES(887,'Scriptaculous',12,414,'others'); -INSERT INTO entity_mentions VALUES(888,'script.aculo.us',12,414,'others'); -INSERT INTO entity_mentions VALUES(889,'Valums File Uploader',12,415,'others'); -INSERT INTO entity_mentions VALUES(890,'Valums AJAX File Uploader',12,415,'others'); -INSERT INTO entity_mentions VALUES(891,'Jboss 7',8,268,'others'); -INSERT INTO entity_mentions VALUES(892,'JBOSS 5.1.2',8,268,'others'); -INSERT INTO entity_mentions VALUES(893,'Red Hat JBoss Enterprise Application Platform 6.3',8,268,'others'); -INSERT INTO entity_mentions VALUES(894,'EAP',8,268,'others'); -INSERT INTO entity_mentions VALUES(895,'JBOSS-EAP',8,268,'others'); -INSERT INTO entity_mentions VALUES(896,'JBoss Application Server 4',8,268,'others'); -INSERT INTO entity_mentions VALUES(897,'JBoss Application Server 7',8,268,'others'); -INSERT INTO entity_mentions VALUES(898,'JBoss Application Server 5',8,268,'others'); -INSERT INTO entity_mentions VALUES(899,'JBoss Application Server',8,268,'others'); -INSERT INTO entity_mentions VALUES(900,'Enterprise Application Platform',8,268,'others'); -INSERT INTO entity_mentions VALUES(901,'JBoss',8,268,'others'); -INSERT INTO entity_mentions VALUES(902,'Jboss 7.1.2',8,268,'others'); -INSERT INTO entity_mentions VALUES(904,'JBOSS 5.1.2 EAP',8,268,'others'); -INSERT INTO entity_mentions VALUES(905,'server: Jboss',8,268,'others'); -INSERT INTO entity_mentions VALUES(906,'JBOSS 6.3.2 EAP',8,268,'others'); -INSERT INTO entity_mentions VALUES(907,'JBoss EAP 4.3',8,268,'others'); -INSERT INTO entity_mentions VALUES(908,'Jboss 4.1.2',8,268,'others'); -INSERT INTO entity_mentions VALUES(909,'JBOSS 5',8,268,'others'); -INSERT INTO entity_mentions VALUES(910,'JBOSS 6.3.2',8,268,'others'); -INSERT INTO entity_mentions VALUES(911,'JBoss Seam',7,492,'others'); -INSERT INTO entity_mentions VALUES(912,'SEAM',7,492,'others'); -INSERT INTO entity_mentions VALUES(913,'JCL',9,338,'others'); -INSERT INTO entity_mentions VALUES(914,'Jenkins',2,90,'others'); -INSERT INTO entity_mentions VALUES(915,'Job Information Language',9,339,'others'); -INSERT INTO entity_mentions VALUES(916,'JIL - Job Information Language',9,339,'others'); -INSERT INTO entity_mentions VALUES(917,'Job Information Language (JIL)',9,339,'others'); -INSERT INTO entity_mentions VALUES(918,'JIL',9,339,'others'); -INSERT INTO entity_mentions VALUES(919,'JoinIT by Acayosoft',2,91,'others'); -INSERT INTO entity_mentions VALUES(920,'Acayosoft JoinIT',2,91,'others'); -INSERT INTO entity_mentions VALUES(921,'JoinIT by Acayosoft v 9.0.8',2,91,'others'); -INSERT INTO entity_mentions VALUES(922,'joinIT',2,91,'others'); -INSERT INTO entity_mentions VALUES(923,'JScript',9,340,'others'); -INSERT INTO entity_mentions VALUES(924,'Kitura',8,269,'others'); -INSERT INTO entity_mentions VALUES(925,'LifeFlow',2,92,'others'); -INSERT INTO entity_mentions VALUES(926,'LifeFlow Tool',2,92,'others'); -INSERT INTO entity_mentions VALUES(927,'Linux 2.6.32-696.28.1.el6.x86_64',6,576,'others'); -INSERT INTO entity_mentions VALUES(928,'Other Linux (64-bit)',6,576,'others'); -INSERT INTO entity_mentions VALUES(929,'Linux',6,576,'others'); -INSERT INTO entity_mentions VALUES(930,'Linux 2.6.32-696.30.1.el6.x86_64',6,576,'others'); -INSERT INTO entity_mentions VALUES(931,'Linux 2.6.9',6,576,'others'); -INSERT INTO entity_mentions VALUES(932,'Linux 2.6.32-642.3.1.el6.x86_64',6,576,'others'); -INSERT INTO entity_mentions VALUES(933,'Linux - 2.6.18-371.1.2.el5',6,576,'others'); -INSERT INTO entity_mentions VALUES(934,'Linux 2.6.32-696.23.1.el6.x86_64',6,576,'others'); -INSERT INTO entity_mentions VALUES(935,'Other Linux (32-bit)',6,576,'others'); -INSERT INTO entity_mentions VALUES(936,'Linux (64-bit)',6,576,'others'); -INSERT INTO entity_mentions VALUES(937,'Linux 3.10.0-1062.el7.x86_64',6,576,'others'); -INSERT INTO entity_mentions VALUES(938,'Other 2.6.x Linux (64-bit)',6,576,'others'); -INSERT INTO entity_mentions VALUES(939,'CentOS 6 (32-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(940,'LINUX CentOS 7.3',6,427,'others'); -INSERT INTO entity_mentions VALUES(941,'CentOS 4 (32-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(942,'LINUX CentOS 6.2',6,427,'others'); -INSERT INTO entity_mentions VALUES(943,'Linux CentOS_5.5',6,427,'others'); -INSERT INTO entity_mentions VALUES(944,'CentOS 7.2',6,427,'others'); -INSERT INTO entity_mentions VALUES(945,'CentOS 6 (64-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(946,'LINUX CentOS 6.8',6,427,'others'); -INSERT INTO entity_mentions VALUES(947,'LINUX CentOS 6.9',6,427,'others'); -INSERT INTO entity_mentions VALUES(948,'LINUX CentOS 6.4',6,427,'others'); -INSERT INTO entity_mentions VALUES(949,'CentOS 4/5/6 (64-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(950,'CentOS 5 (32-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(951,'Linux CentOS_5.2',6,427,'others'); -INSERT INTO entity_mentions VALUES(952,'CentOS 4 (64-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(953,'CentOS 7 (64-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(954,'CentOS 5 (64-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(955,'CentOS 5.8 (x86)',6,427,'others'); -INSERT INTO entity_mentions VALUES(956,'CentOS 6.4',6,427,'others'); -INSERT INTO entity_mentions VALUES(957,'CentOS 7.5.184',6,427,'others'); -INSERT INTO entity_mentions VALUES(958,'CentOS 4/5/6 (32-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(959,'CentOS',6,427,'others'); -INSERT INTO entity_mentions VALUES(960,'CentOS release 5.11',6,427,'others'); -INSERT INTO entity_mentions VALUES(961,'CentOS 4/5 or later (32-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(962,'LINUX CentOS 6.5',6,427,'others'); -INSERT INTO entity_mentions VALUES(963,'LINUX CentOS 6.7',6,427,'others'); -INSERT INTO entity_mentions VALUES(964,'LINUX CentOS 5.8',6,427,'others'); -INSERT INTO entity_mentions VALUES(965,'LINUX CentOS 5',6,427,'others'); -INSERT INTO entity_mentions VALUES(966,'CentOS 7.x',6,427,'others'); -INSERT INTO entity_mentions VALUES(967,'CentOS 4/5/6/7 (64-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(968,'CentOS 4/5 or later (64-bit)',6,427,'others'); -INSERT INTO entity_mentions VALUES(969,'LINUX CentOS 5.7',6,427,'others'); -INSERT INTO entity_mentions VALUES(970,'Check Point IPSO',6,428,'others'); -INSERT INTO entity_mentions VALUES(971,'Gaia Kernel version 2.7',6,428,'others'); -INSERT INTO entity_mentions VALUES(972,'Checkpoint',6,428,'others'); -INSERT INTO entity_mentions VALUES(973,'Check Point Gaia',6,428,'others'); -INSERT INTO entity_mentions VALUES(974,'Gaia Kernel version 2.6',6,428,'others'); -INSERT INTO entity_mentions VALUES(975,'Debian Linux',6,429,'others'); -INSERT INTO entity_mentions VALUES(976,'Debian GNU/Linux 8 (64-bit)',6,429,'others'); -INSERT INTO entity_mentions VALUES(977,'Debian',6,429,'others'); -INSERT INTO entity_mentions VALUES(978,'Debian Linux 8',6,429,'others'); -INSERT INTO entity_mentions VALUES(979,'LINUX Debian 6.0',6,429,'others'); -INSERT INTO entity_mentions VALUES(980,'Debian GNU/Linux 5 (64-bit)',6,429,'others'); -INSERT INTO entity_mentions VALUES(981,'Junos OS',6,430,'others'); -INSERT INTO entity_mentions VALUES(982,'JunOS',6,430,'others'); -INSERT INTO entity_mentions VALUES(983,'JunOS 8.0R14',6,430,'others'); -INSERT INTO entity_mentions VALUES(984,'JunOS 8.0R13',6,430,'others'); -INSERT INTO entity_mentions VALUES(985,'OpenSuse',6,431,'others'); -INSERT INTO entity_mentions VALUES(986,'SUSE openSUSE (64-bit)',6,431,'others'); -INSERT INTO entity_mentions VALUES(987,'Oracle - Linux Server - 7.5 Beta',6,432,'others'); -INSERT INTO entity_mentions VALUES(988,'Oracle Linux 7',6,432,'others'); -INSERT INTO entity_mentions VALUES(989,'LINUX Oracle EL 6.6 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(990,'OEL',6,432,'others'); -INSERT INTO entity_mentions VALUES(991,'LINUX Oracle EL 6.3 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(992,'LINUX Oracle EL 7.4 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(993,'OEL 6.5 (Oracle Linux)3.8.13-16.2.1.el6uek.x86_64',6,432,'others'); -INSERT INTO entity_mentions VALUES(994,'LINUX Oracle EL 5.11 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(995,'LINUX Oracle EL 5.10 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(996,'LINUX Oracle EL 5.9',6,432,'others'); -INSERT INTO entity_mentions VALUES(997,'Oracle Linux 6.1',6,432,'others'); -INSERT INTO entity_mentions VALUES(998,'Oracle Linux 4/5 or later (64-bit)',6,432,'others'); -INSERT INTO entity_mentions VALUES(999,'LINUX Oracle EL 6.9',6,432,'others'); -INSERT INTO entity_mentions VALUES(1000,'LINUX Oracle EL 6.8 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(1001,'Oracle Linux 5 (64-bit)',6,432,'others'); -INSERT INTO entity_mentions VALUES(1002,'Oracle Enterprise Server 7.5',6,432,'others'); -INSERT INTO entity_mentions VALUES(1003,'Oracle Linux 5u10',6,432,'others'); -INSERT INTO entity_mentions VALUES(1004,'OEL6.7 - 3.8.13-68.3.4.el6uek.x86_64',6,432,'others'); -INSERT INTO entity_mentions VALUES(1005,'Oracle Linux Server 6.10',6,432,'others'); -INSERT INTO entity_mentions VALUES(1006,'LINUX Oracle EL 6.9 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(1007,'LINUX Oracle EL 6.7 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(1008,'Oracle Linux Server release 6.9',6,432,'others'); -INSERT INTO entity_mentions VALUES(1009,'Oracle Linux Server 6.9',6,432,'others'); -INSERT INTO entity_mentions VALUES(1010,'LINUX Oracle EL 5.8 64bit',6,432,'others'); -INSERT INTO entity_mentions VALUES(1011,'OEL 6.5 (Oracle Linux)2.6.32-431.el6.x86_63',6,432,'others'); -INSERT INTO entity_mentions VALUES(1012,'Oracle Linux Server 6.7',6,432,'others'); -INSERT INTO entity_mentions VALUES(1013,'Oracle Enterprise Linux',6,432,'others'); -INSERT INTO entity_mentions VALUES(1014,'Oracle Linux',6,432,'others'); -INSERT INTO entity_mentions VALUES(1015,'OEL 6.5 (Oracle Linux)2.6.32-431.el6.x86_62',6,432,'others'); -INSERT INTO entity_mentions VALUES(1016,'Oracle Linux 4 (64-bit)',6,432,'others'); -INSERT INTO entity_mentions VALUES(1017,'Photon OS',6,433,'others'); -INSERT INTO entity_mentions VALUES(1018,'VMware Photon',6,433,'others'); -INSERT INTO entity_mentions VALUES(1019,'VMware Photon 1',6,433,'others'); -INSERT INTO entity_mentions VALUES(1020,'Red Hat Enterprise Linux Server 6.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1021,'Red Hat Enterprise Linux Server 7.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1022,'Linux - Redhat 6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1023,'LINUX RedHat ES 5.7 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1024,'Red Hat Enterprise Linux Server 6.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1025,'Red Hat Enterprise Linux AS release 4 (Nahant Update 8)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1026,'Red Hat Enterprise Linux Server release 6.9 (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1027,'RED HAT ENTERPRISE LINUX 5.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1028,'Red Hat Enterprise Linux Server 6.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1029,'LINUX RedHat EL 7.3 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1030,'RHEL',6,434,'others'); -INSERT INTO entity_mentions VALUES(1031,'Redhat Linux 5.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1032,'Linux Red Hat 7.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1033,'Red Hat Enterprise Linux Server 7.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1034,'Red Hat Enterprise Linux Server 7.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1035,'Red Hat(Linux)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1036,'LINUX Red Hat Enterprise Linux Server 5.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1037,'LINUX RedHat EL 5.7 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1038,'Linux Red Hat5.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1039,'Linux Red Hat3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1040,'LINUXRed Hat Enterprise Linux Server 7.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1041,'Red Hat Enterprise Linux Server 5.8',6,434,'others'); -INSERT INTO entity_mentions VALUES(1042,'LINUX RedHat EL 6.8 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1043,'RHEL 7.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1044,'Redhat - Redhat Linux 7.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1045,'Linux RH6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1046,'Red Hat Enterprise Linux 6 (32-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1047,'RED HAT ENTERPRISE LINUX SERVER 6.X (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1048,'RHEL 6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1049,'Red Hat Enterprise Linux 7.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1050,'LINUXRed Hat Enterprise Linux Server 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1051,'RHEL 6.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1052,'Red Hat Enterprise Linux Santiago 6.3 32 Bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1053,'LINUX RedHat EL 6.6 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1054,'RED HAT ENTERPRISE LINUX 6.10',6,434,'others'); -INSERT INTO entity_mentions VALUES(1055,'RED HAT ENTERPRISE LINUX SERVER 5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1056,'Linux Red Hat6.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1057,'RED HAT ENTERPRISE LINUX SERVER 7.X (Maipo)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1058,'Red Hat Enterprise Linux Server release 7.3 (Maipo)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1059,'RHEL7.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1060,'Linux Red Hat Enterprise Server 6.10',6,434,'others'); -INSERT INTO entity_mentions VALUES(1061,'Red Hat Enterprise Linux Server 7.6 (Maipo)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1062,'Red Hat Enterprise Linux 5 (64-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1063,'Linux Red Hat6.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1064,'RHEL 7.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1065,'RHEL 7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1066,'RED HAT ENTERPRISE LINUX 4.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1067,'Red Hat Enterprise Linux 5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1068,'Red Hat Enterprise Linux Server 6.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1069,'LINUX RedHat EL 7.5 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1070,'LINUXRed Hat Enterprise Linux Server 5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1071,'LINUX RED HAT ENTERPRISE SERVER 5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1072,'Unix Linux Redhat',6,434,'others'); -INSERT INTO entity_mentions VALUES(1073,'LINUX RED HAT ENTERPRISE SERVER 6 X64',6,434,'others'); -INSERT INTO entity_mentions VALUES(1074,'Red Hat Linux',6,434,'others'); -INSERT INTO entity_mentions VALUES(1075,'LINUX RED HAT ENTERPRISE SERVER 6.8',6,434,'others'); -INSERT INTO entity_mentions VALUES(1076,'RHEL6.6 - 2.6.32-504.el6.x86_64',6,434,'others'); -INSERT INTO entity_mentions VALUES(1077,'RED HAT ENTERPRISE LINUX 5.X',6,434,'others'); -INSERT INTO entity_mentions VALUES(1078,'Linux Red Hat Enterprise Server 7.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1079,'Linux Red Hat4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1080,'Linux Red Hat Enterprise Server 6.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1081,'Red Hat Enterprise Linux Server release 5.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1082,'Red Hat Linux x64 6.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1083,'Red Hat Enterprise Linux Server 7.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1084,'Linux Red Hat6.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1085,'LINUX RED HAT ENTERPRISE SERVER 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1086,'Red Hat Enterprise Linux Server release 6.6 (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1087,'RED HAT ENTERPRISE LINUX 6.X',6,434,'others'); -INSERT INTO entity_mentions VALUES(1088,'Red Hat Enterprise Linux Server 6.x',6,434,'others'); -INSERT INTO entity_mentions VALUES(1089,'RedHat Enterprise Linux 6 (64-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1090,'RED HAT ENTERPRISE LINUX',6,434,'others'); -INSERT INTO entity_mentions VALUES(1091,'Redhat - Redhat Linux 6.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1092,'RED HAT ENTERPRISE LINUX 5.8',6,434,'others'); -INSERT INTO entity_mentions VALUES(1093,'RED HAT ENTERPRISE LINUX 5.10',6,434,'others'); -INSERT INTO entity_mentions VALUES(1094,'RED HAT ENTERPRISE LINUX 7.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1095,'Red Hat Enterprise Linux Server 5.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1096,'Redhat - RHEL 7.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1097,'RHEL7.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1098,'Red Hat Enterprise Linux Server release 7.5 (Maipo)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1099,'Red Hat Enterprise Linux 6 (64-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1100,'Red Hat Entreprise Linux 6.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1101,'RED HAT ENTERPRISE LINUX 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1102,'RHEL 5.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1103,'Red Hat Enterprise Linux 7.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1104,'LINUX RedHat EL 6.2 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1105,'Linux Red Hat6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1106,'RED HAT ENTERPRISE LINUX 5.11 - 5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1107,'Red Hat Enterprise Linux Server 5.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1108,'Redhat 6 64-Bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1109,'Red Hat Enterprise Linux 5 (32-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1110,'Red Hat Enterprise Linux Server 7.',6,434,'others'); -INSERT INTO entity_mentions VALUES(1111,'RHEL 6.6 ((64 bit x86_64)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1112,'Red Hat Enterprise Linux Server Release 6.10',6,434,'others'); -INSERT INTO entity_mentions VALUES(1113,'LINUX RED HAT ENTERPRISE ES 4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1114,'Linux Red Hat Enterprise Server 5.11 (2.6.18-419.el5)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1115,'Red Hat Enterprise Linux Server release 6.8 (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1116,'RED HAT ENTERPRISE LINUX 4.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1117,'Redhat Linux 6.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1118,'Red Hat Enterprise Linux AS',6,434,'others'); -INSERT INTO entity_mentions VALUES(1119,'RED HAT ADVANCED SERVER 5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1120,'LINUX RED HAT ENTERPRISE SERVER 7.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1121,'RHEL6.7 - 2.6.32-573.el6.x86_64',6,434,'others'); -INSERT INTO entity_mentions VALUES(1122,'Red Hat Enterprise Linux Server 5.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1123,'LINUX RedHat EL 5 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1124,'Red Hat Enterprise Linux 7.2 (64-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1125,'LINUX RedHat EL 5.11 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1126,'RHEL 6.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1127,'RHEL 6.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1128,'Red Hat Enterprise Linux Server',6,434,'others'); -INSERT INTO entity_mentions VALUES(1129,'Red Hat Enterprise Linux Server 5.x',6,434,'others'); -INSERT INTO entity_mentions VALUES(1130,'Red Hat Enterprise Linux Santiago 6.x',6,434,'others'); -INSERT INTO entity_mentions VALUES(1131,'RED HAT ENTERPRISE LINUX 6.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1132,'RED HAT ENTERPRISE LINUX 7.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1133,'Red Hat Enterprise Linux Server release 5.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1134,'RHEL Server',6,434,'others'); -INSERT INTO entity_mentions VALUES(1135,'Linux RHEL',6,434,'others'); -INSERT INTO entity_mentions VALUES(1136,'redhat6.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1137,'RHEL 5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1138,'Redhat - Redhat Linux 6.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1139,'Linux RH',6,434,'others'); -INSERT INTO entity_mentions VALUES(1140,'Red Hat Enterprise Linux Server release 6.10 (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1141,'Red Hat Enterprise Linux 3 (32-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1142,'Redhat - Red Hat(Linux)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1143,'RED HAT ENTERPRISE LINUX 5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1144,'RED HAT ENTERPRISE LINUX SERVER 4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1145,'Redhat Linux 6.10',6,434,'others'); -INSERT INTO entity_mentions VALUES(1146,'Linux RH7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1147,'Red Hat Enterprise Linux Server release 5 (Tikanga)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1148,'RHEL 7.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1149,'LINUX Red Hat Enterprise Linux Server 6.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1150,'Red Hat Enterprise Linux Server 6.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1151,'Red Hat Enterprise Linux Server release 7.4 (Maipo)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1152,'Red Hat V6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1153,'Redhat Linux',6,434,'others'); -INSERT INTO entity_mentions VALUES(1154,'RHEL 6.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1155,'RED HAT ENTERPRISE LINUX 6.X TPM',6,434,'others'); -INSERT INTO entity_mentions VALUES(1156,'Linux Red Hat5.8',6,434,'others'); -INSERT INTO entity_mentions VALUES(1157,'Linux Red Hat5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1158,'Linux RH5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1159,'Red Hat Enterprise Linux Santiago 6.3 64 Bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1160,'rehl5.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1161,'RED HAT ENTERPRISE LINUX ES 5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1162,'Red Hat Enterprise Linux Server release 7.6 (Maipo)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1163,'LINUX RED HAT ENTERPRISE SERVER 7.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1164,'Red Hat Enterprise Linux 4 (32-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1165,'RHEL 7.xx',6,434,'others'); -INSERT INTO entity_mentions VALUES(1166,'Red Hat Enterprise Linux Server 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1167,'Red Hat Enterprise Linux Server release 7.x',6,434,'others'); -INSERT INTO entity_mentions VALUES(1168,'Red Hat Enterprise Linux 7 (64-bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1169,'Red Hat Enterprise Linux 5 Update 3 (RHEL 5.3) for x86-64',6,434,'others'); -INSERT INTO entity_mentions VALUES(1170,'LINUX RED HAT ENTERPRISE AS 4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1171,'RHEL Linux',6,434,'others'); -INSERT INTO entity_mentions VALUES(1172,'RHEL 7.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1173,'RED HAT ENTERPRISE LINUX 4.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1174,'RED HAT ENTERPRISE LINUX 6.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1175,'Linux Red Hat6.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1176,'RHEL 7.5',6,434,'others'); -INSERT INTO entity_mentions VALUES(1177,'RHEL 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1178,'RED HAT ENTERPRISE LINUX 5.X TPM',6,434,'others'); -INSERT INTO entity_mentions VALUES(1179,'RED HAT ENTERPRISE LINUX ES 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1180,'LINUX RedHat EL 7.4 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1181,'Red Hat Enterprise Linux Server release 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1182,'Red Hat Linux 5.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1183,'LINUX RED HAT ENTERPRISE SERVER 7.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1184,'LINUX RedHat EL 5.0 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1185,'Red Hat Enterprise Linux Server release 6.3 (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1186,'RED HAT ENTERPRISE LINUX SERVER 5.X (Tikanga)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1187,'Red Hat Enterprise Linux Server 7.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1188,'Linux Red Hat 6.10',6,434,'others'); -INSERT INTO entity_mentions VALUES(1189,'Linux Red Hat',6,434,'others'); -INSERT INTO entity_mentions VALUES(1190,'Red Hat 6.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1191,'LINUX Red Hat Enterprise Linux Server 6.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1192,'LINUX Red Hat Enterprise Linux Server 5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1193,'Red Hat Enterprise Linux Server 5.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1194,'RHEL7.xx',6,434,'others'); -INSERT INTO entity_mentions VALUES(1195,'RHEL 6.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1196,'Linux Red Hat5.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1197,'Red Hat Enterprise Linux Server 7.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1198,'Red Hat Enterprise Linux Server release 6.5 (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1199,'Linux Red Hat6.8',6,434,'others'); -INSERT INTO entity_mentions VALUES(1200,'Red Hat Enterprise Linux Server 6.1',6,434,'others'); -INSERT INTO entity_mentions VALUES(1201,'LINUXRed Hat Enterprise Linux Server 6.10',6,434,'others'); -INSERT INTO entity_mentions VALUES(1202,'Red Hat Enterprise Linux 7.7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1203,'Red Hat Enterprise Linux Server 7.x',6,434,'others'); -INSERT INTO entity_mentions VALUES(1204,'Redhat Linux 7.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1205,'red hat',6,434,'others'); -INSERT INTO entity_mentions VALUES(1206,'LINUX RedHat EL 6.10 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1207,'Red Hat Enterprise Linux 6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1208,'Red Hat Enterprise Linux Server release 6.7 (Santiago)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1209,'Linux Red Hat5.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1210,'Red Hat Enterprise Linux 7',6,434,'others'); -INSERT INTO entity_mentions VALUES(1211,'Red Hat Linux 6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1212,'RED HAT ENTERPRISE LINUX 7.X',6,434,'others'); -INSERT INTO entity_mentions VALUES(1213,'RHEL x86-64',6,434,'others'); -INSERT INTO entity_mentions VALUES(1214,'LINUX RED HAT ENTERPRISE SERVER 7.4',6,434,'others'); -INSERT INTO entity_mentions VALUES(1215,'Red Hat Enterprise Linux Server 4.9',6,434,'others'); -INSERT INTO entity_mentions VALUES(1216,'RED HAT ENTERPRISE LINUX 5 (64 Bit)',6,434,'others'); -INSERT INTO entity_mentions VALUES(1217,'Redhat',6,434,'others'); -INSERT INTO entity_mentions VALUES(1218,'RED HAT ENTERPRISE LINUX 7.X TPM',6,434,'others'); -INSERT INTO entity_mentions VALUES(1219,'Red Hat Enterprise Linux Server 6.8',6,434,'others'); -INSERT INTO entity_mentions VALUES(1220,'Red Hat Enterprise Linux Server 5.11',6,434,'others'); -INSERT INTO entity_mentions VALUES(1221,'RED HAT ENTERPRISE LINUX SERVER 6.2',6,434,'others'); -INSERT INTO entity_mentions VALUES(1222,'RedHat 7.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1223,'Redhat Linux 6.6',6,434,'others'); -INSERT INTO entity_mentions VALUES(1224,'LINUX RED HAT 5 EL',6,434,'others'); -INSERT INTO entity_mentions VALUES(1225,'LINUX RedHat EL 6.9 64bit',6,434,'others'); -INSERT INTO entity_mentions VALUES(1226,'RED HAT ENTERPRISE LINUX 7.3',6,434,'others'); -INSERT INTO entity_mentions VALUES(1227,'suse enterprise server 11 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1228,'SUSE Linux Enterprise Server 12 x86_64',6,435,'others'); -INSERT INTO entity_mentions VALUES(1229,'SUSE11',6,435,'others'); -INSERT INTO entity_mentions VALUES(1230,'SUSE Linux Enterprise 10 (32-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1231,'SUSE Linux Enterprise 10 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1232,'Linux SuSE12',6,435,'others'); -INSERT INTO entity_mentions VALUES(1233,'SUSE Linux Enterprise 12 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1234,'Linux SuSE2.6.32-504.12.2.el6.x86_64',6,435,'others'); -INSERT INTO entity_mentions VALUES(1235,'LINUXSUSE_SLES 11.4',6,435,'others'); -INSERT INTO entity_mentions VALUES(1236,'SUSE Linux Enterprise 11 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1237,'SUSE10',6,435,'others'); -INSERT INTO entity_mentions VALUES(1238,'SUSE Linux 12',6,435,'others'); -INSERT INTO entity_mentions VALUES(1239,'LINUX SUSE_SLES 11.4',6,435,'others'); -INSERT INTO entity_mentions VALUES(1240,'LINUX SuSE Enterprise Server 11 64bit',6,435,'others'); -INSERT INTO entity_mentions VALUES(1241,'SLES 11 SP4',6,435,'others'); -INSERT INTO entity_mentions VALUES(1242,'SUSE Enterprise Server 11 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1243,'SUSELinux Enterprise 11.x',6,435,'others'); -INSERT INTO entity_mentions VALUES(1244,'SUSE Linux Enterprise Server 11 x86_64',6,435,'others'); -INSERT INTO entity_mentions VALUES(1245,'SUSE Enterprise 11 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1246,'SUSE Enterprise 10 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1247,'suse enterprise 11 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1248,'SUSE LINUX ENTERPRISE SERVER 11, SERVICE PACK SERVICE PACK SP4',6,435,'others'); -INSERT INTO entity_mentions VALUES(1249,'SUSE Linux 11',6,435,'others'); -INSERT INTO entity_mentions VALUES(1250,'SUSE Linux 11 SP3',6,435,'others'); -INSERT INTO entity_mentions VALUES(1251,'SUSE Linux Eneterprise Server (SLES) 11.0',6,435,'others'); -INSERT INTO entity_mentions VALUES(1252,'SUSE Linux',6,435,'others'); -INSERT INTO entity_mentions VALUES(1253,'SLES 9',6,435,'others'); -INSERT INTO entity_mentions VALUES(1254,'SUSE Linux Enterprise Server 11 (x86_64)PATCHLEVEL = 3',6,435,'others'); -INSERT INTO entity_mentions VALUES(1255,'Linux SuSE11',6,435,'others'); -INSERT INTO entity_mentions VALUES(1256,'SUSE',6,435,'others'); -INSERT INTO entity_mentions VALUES(1257,'SUSELinux Enterprise 11 (64-bit)',6,435,'others'); -INSERT INTO entity_mentions VALUES(1258,'LINUX SuSE Enterprise Server 9',6,435,'others'); -INSERT INTO entity_mentions VALUES(1259,'LINUX SuSE 10.0 Enterprise',6,435,'others'); -INSERT INTO entity_mentions VALUES(1260,'SUSE LINUX ENTERPRISE SERVER 11.3',6,435,'others'); -INSERT INTO entity_mentions VALUES(1261,'SUSE LINUX Enterprise Server 9 (i586) VERSION = 9 PATCHLEVEL = 3',6,435,'others'); -INSERT INTO entity_mentions VALUES(1262,'SUSE Linux Enterprise Server 11 (x86_64)PATCHLEVEL = 1',6,435,'others'); -INSERT INTO entity_mentions VALUES(1263,'SUSE Linux Enterprise 11 SP4',6,435,'others'); -INSERT INTO entity_mentions VALUES(1264,'SuseLinux',6,435,'others'); -INSERT INTO entity_mentions VALUES(1265,'SLES 12 SP2 for Power/SAP',6,435,'others'); -INSERT INTO entity_mentions VALUES(1266,'SUSE Linux Enterprise Server',6,435,'others'); -INSERT INTO entity_mentions VALUES(1267,'LINUX Ubuntu 12.04.1 LTS',6,436,'others'); -INSERT INTO entity_mentions VALUES(1268,'Ubuntu - Ubuntu Server - 16.04.1 LTS',6,436,'others'); -INSERT INTO entity_mentions VALUES(1269,'Ubuntu Linux (32-bit)',6,436,'others'); -INSERT INTO entity_mentions VALUES(1270,'LINUX Ubuntu 16.04 LTS',6,436,'others'); -INSERT INTO entity_mentions VALUES(1271,'Ubuntu Linux Server 10 (64-bit)',6,436,'others'); -INSERT INTO entity_mentions VALUES(1272,'Ubuntu',6,436,'others'); -INSERT INTO entity_mentions VALUES(1273,'LINUX Ubuntu 14.04 LTS',6,436,'others'); -INSERT INTO entity_mentions VALUES(1274,'UBUNTU LINUX (64-BIT)',6,436,'others'); -INSERT INTO entity_mentions VALUES(1275,'Ubuntu Linux',6,436,'others'); -INSERT INTO entity_mentions VALUES(1276,'LINUX UBUNTU 16.04',6,436,'others'); -INSERT INTO entity_mentions VALUES(1277,'LINUX Ubuntu',6,436,'others'); -INSERT INTO entity_mentions VALUES(1278,'Linux - Ubuntu Server 16.04.1 LTS',6,436,'others'); -INSERT INTO entity_mentions VALUES(1279,'zLinux',6,437,'others'); -INSERT INTO entity_mentions VALUES(1280,'Lisp',9,341,'others'); -INSERT INTO entity_mentions VALUES(1281,'Lotus Domino',8,270,'others'); -INSERT INTO entity_mentions VALUES(1282,'domino8.5',8,270,'others'); -INSERT INTO entity_mentions VALUES(1283,'Domino 8.x',8,270,'others'); -INSERT INTO entity_mentions VALUES(1284,'Lotus Notes',2,93,'others'); -INSERT INTO entity_mentions VALUES(1285,'Lotus Notes Internal',2,93,'others'); -INSERT INTO entity_mentions VALUES(1286,'Lucee',8,271,'others'); -INSERT INTO entity_mentions VALUES(1287,'Lucee 5.2.6.60',8,271,'others'); -INSERT INTO entity_mentions VALUES(1288,'MaaS360',2,94,'others'); -INSERT INTO entity_mentions VALUES(1289,'mac OS',6,438,'others'); -INSERT INTO entity_mentions VALUES(1290,'macOS',6,438,'others'); -INSERT INTO entity_mentions VALUES(1291,'Darwin',6,438,'others'); -INSERT INTO entity_mentions VALUES(1292,'Malwarebytes Anti-Malware',2,95,'others'); -INSERT INTO entity_mentions VALUES(1293,'Malwarebytes Corporation - Malwarebytes Anti-Malware 3.4',2,95,'others'); -INSERT INTO entity_mentions VALUES(1294,'Malwarebytes',2,95,'others'); -INSERT INTO entity_mentions VALUES(1295,'ManageEngine ADSelfService Plus',2,96,'others'); -INSERT INTO entity_mentions VALUES(1296,'Manage Engine ADSelfService Porta',2,96,'others'); -INSERT INTO entity_mentions VALUES(1297,'Marklogic',2,97,'others'); -INSERT INTO entity_mentions VALUES(1298,'MarkLogic DB',2,97,'others'); -INSERT INTO entity_mentions VALUES(1299,'Memcache',2,98,'others'); -INSERT INTO entity_mentions VALUES(1300,'Memcached',2,98,'others'); -INSERT INTO entity_mentions VALUES(1301,'ACCDB',2,99,'others'); -INSERT INTO entity_mentions VALUES(1302,'Microsoft Access',2,99,'others'); -INSERT INTO entity_mentions VALUES(1303,'Access DB',2,99,'others'); -INSERT INTO entity_mentions VALUES(1304,'MS Access 2016',2,99,'others'); -INSERT INTO entity_mentions VALUES(1305,'MS Access',2,99,'others'); -INSERT INTO entity_mentions VALUES(1306,'Microsoft BizTalk Adapters for Host Systems 2.0',2,100,'others'); -INSERT INTO entity_mentions VALUES(1307,'Microsoft BizTalk Adapters for Host Systems',2,100,'others'); -INSERT INTO entity_mentions VALUES(1308,'Microsoft Dynamics AX',2,101,'others'); -INSERT INTO entity_mentions VALUES(1309,'MS Dynamics AX 4',2,101,'others'); -INSERT INTO entity_mentions VALUES(1310,'Microsoft - Microsoft System Center Configuration Manager 2012',2,102,'others'); -INSERT INTO entity_mentions VALUES(1311,'SCCM',2,102,'others'); -INSERT INTO entity_mentions VALUES(1312,'Microsoft Endpoint Configuration Manager (SCCM)',2,102,'others'); -INSERT INTO entity_mentions VALUES(1313,'ConfigMgr',2,102,'others'); -INSERT INTO entity_mentions VALUES(1314,'Microsoft - Microsoft System Center Configuration Manager Client 5',2,102,'others'); -INSERT INTO entity_mentions VALUES(1315,'Microsoft Endpoint Configuration Manager',2,102,'others'); -INSERT INTO entity_mentions VALUES(1316,'MS System Centre Configuration Manager',2,102,'others'); -INSERT INTO entity_mentions VALUES(1317,'MS Excel',2,103,'others'); -INSERT INTO entity_mentions VALUES(1318,'Excel',2,103,'others'); -INSERT INTO entity_mentions VALUES(1319,'Microsoft Excel 2010',2,103,'others'); -INSERT INTO entity_mentions VALUES(1320,'Microsoft Excel',2,103,'others'); -INSERT INTO entity_mentions VALUES(1321,'Excel 2010',2,103,'others'); -INSERT INTO entity_mentions VALUES(1322,'Microsoft Exchange Server',2,104,'others'); -INSERT INTO entity_mentions VALUES(1323,'MS Exchange 2010 Enterprise',2,104,'others'); -INSERT INTO entity_mentions VALUES(1324,'Veeam Explorer',5,464,'others'); -INSERT INTO entity_mentions VALUES(1325,'Microsoft Forefront Identity Manager (FIM)',2,105,'others'); -INSERT INTO entity_mentions VALUES(1326,'Microsoft Forefront Identity Manager',2,105,'others'); -INSERT INTO entity_mentions VALUES(1327,'FIM SQL Development Server',2,105,'others'); -INSERT INTO entity_mentions VALUES(1328,'InfoPath',2,106,'others'); -INSERT INTO entity_mentions VALUES(1329,'Microsoft InfoPath',2,106,'others'); -INSERT INTO entity_mentions VALUES(1330,'Microsoft - Internet Explor',2,107,'others'); -INSERT INTO entity_mentions VALUES(1331,'Microsoft - Internet Explorer 11',2,107,'others'); -INSERT INTO entity_mentions VALUES(1332,'Microsoft Internet Explorer',2,107,'others'); -INSERT INTO entity_mentions VALUES(1333,'Internet Explor',2,107,'others'); -INSERT INTO entity_mentions VALUES(1334,'ISA Server',2,108,'others'); -INSERT INTO entity_mentions VALUES(1335,'Microsoft ISA Server',2,108,'others'); -INSERT INTO entity_mentions VALUES(1336,'Microsoft MQ',2,109,'others'); -INSERT INTO entity_mentions VALUES(1337,'System Center Endpoint Protection for Mac',2,110,'others'); -INSERT INTO entity_mentions VALUES(1338,'System Center 2012 Endpoint Protection',2,110,'others'); -INSERT INTO entity_mentions VALUES(1339,'Microsoft System Center 2012 Endpoint Protection',2,110,'others'); -INSERT INTO entity_mentions VALUES(1340,'Microsoft - Microsoft System Center 2012 Endpoint Protection 2.2',2,110,'others'); -INSERT INTO entity_mentions VALUES(1341,'SCEP for Linux',2,110,'others'); -INSERT INTO entity_mentions VALUES(1342,'System Center Endpoint Protection for Linux',2,110,'others'); -INSERT INTO entity_mentions VALUES(1343,'Microsoft System Center Endpoint Protection 2012',2,110,'others'); -INSERT INTO entity_mentions VALUES(1344,'System Center 2012 R2 Endpoint Protection',2,110,'others'); -INSERT INTO entity_mentions VALUES(1345,'SCEP for Mac',2,110,'others'); -INSERT INTO entity_mentions VALUES(1346,'Microsoft System Center Endpoint Protection',2,110,'others'); -INSERT INTO entity_mentions VALUES(1347,'System Center Endpoint Protection',2,110,'others'); -INSERT INTO entity_mentions VALUES(1348,'Microsoft - Microsoft Visual Studio 2010',2,111,'others'); -INSERT INTO entity_mentions VALUES(1349,'Microsoft Visual Studio 2010',2,111,'others'); -INSERT INTO entity_mentions VALUES(1350,'Microsoft Visual Studio',2,111,'others'); -INSERT INTO entity_mentions VALUES(1351,'Visual Studio',2,111,'others'); -INSERT INTO entity_mentions VALUES(1352,'Microsoft Web Deploy 2.0',2,112,'others'); -INSERT INTO entity_mentions VALUES(1353,'Microsoft Web Deploy',2,112,'others'); -INSERT INTO entity_mentions VALUES(1354,'Web Deploy',2,112,'others'); -INSERT INTO entity_mentions VALUES(1355,'msdeploy',2,112,'others'); -INSERT INTO entity_mentions VALUES(1356,'Web Farm Framework',2,113,'others'); -INSERT INTO entity_mentions VALUES(1357,'Microsoft Web Farm Framework Version 2.2',2,113,'others'); -INSERT INTO entity_mentions VALUES(1358,'Microsoft Web Farm Framework',2,113,'others'); -INSERT INTO entity_mentions VALUES(1359,'WFF',2,113,'others'); -INSERT INTO entity_mentions VALUES(1360,'Microsoft Web Farm Framework (WFF)',2,113,'others'); -INSERT INTO entity_mentions VALUES(1361,'WebPI',2,114,'others'); -INSERT INTO entity_mentions VALUES(1362,'Web Platform Installer',2,114,'others'); -INSERT INTO entity_mentions VALUES(1363,'Microsoft Web Platform Installer',2,114,'others'); -INSERT INTO entity_mentions VALUES(1364,'Microsoft Web Platform Installer 3.0',2,114,'others'); -INSERT INTO entity_mentions VALUES(1365,'Web PI',2,114,'others'); -INSERT INTO entity_mentions VALUES(1366,'MDW 6',2,115,'others'); -INSERT INTO entity_mentions VALUES(1367,'MDW Framework',2,115,'others'); -INSERT INTO entity_mentions VALUES(1368,'MDW',2,115,'others'); -INSERT INTO entity_mentions VALUES(1369,'Model Driven Workflow',2,115,'others'); -INSERT INTO entity_mentions VALUES(1370,'Model Driven Workflow (MDW)',2,115,'others'); -INSERT INTO entity_mentions VALUES(1371,'MONGO-DB',2,116,'others'); -INSERT INTO entity_mentions VALUES(1372,'Mango DB',2,116,'others'); -INSERT INTO entity_mentions VALUES(1373,'Mongo DB',2,116,'others'); -INSERT INTO entity_mentions VALUES(1374,'MangoDB',2,116,'others'); -INSERT INTO entity_mentions VALUES(1375,'MongoDB',2,116,'others'); -INSERT INTO entity_mentions VALUES(1376,'Mozilla.org - Firefox 38.5',2,117,'others'); -INSERT INTO entity_mentions VALUES(1377,'Firefox',2,117,'others'); -INSERT INTO entity_mentions VALUES(1378,'Mozilla.org',2,117,'others'); -INSERT INTO entity_mentions VALUES(1379,'Mozilla.org - Firefox 68',2,117,'others'); -INSERT INTO entity_mentions VALUES(1380,'Mozilla Firefox',2,117,'others'); -INSERT INTO entity_mentions VALUES(1381,'Mozilla.or',2,117,'others'); -INSERT INTO entity_mentions VALUES(1382,'MQ Client 7.5',2,118,'others'); -INSERT INTO entity_mentions VALUES(1383,'MQ Client',2,118,'others'); -INSERT INTO entity_mentions VALUES(1384,'MS Office 365',2,119,'others'); -INSERT INTO entity_mentions VALUES(1385,'Office 365',2,119,'others'); -INSERT INTO entity_mentions VALUES(1386,'O365',2,119,'others'); -INSERT INTO entity_mentions VALUES(1387,'MS SQL Server 2008 Standard',2,581,'others'); -INSERT INTO entity_mentions VALUES(1388,'MS SQL 2008R2SP2ENT (10.52.4042.0)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1389,'MS SQL Server 2008',2,581,'others'); -INSERT INTO entity_mentions VALUES(1390,'SQL Server 11.0.2100.60',2,581,'others'); -INSERT INTO entity_mentions VALUES(1391,'MS SQL 2016 SP1',2,581,'others'); -INSERT INTO entity_mentions VALUES(1392,'SQL 2012 Development Server',2,581,'others'); -INSERT INTO entity_mentions VALUES(1393,'MICROSOFT SQL SERVER 2008 R2 ENTERPRISE EDITION 10.5',2,581,'others'); -INSERT INTO entity_mentions VALUES(1394,'Microsoft - Microsoft SQL Server 2012 for Microsoft SQL Server 2012 Standard Edition 2012',2,581,'others'); -INSERT INTO entity_mentions VALUES(1395,'MS SQL Server MS SQL Server 2008',2,581,'others'); -INSERT INTO entity_mentions VALUES(1396,'SQL Server 2016 SP1',2,581,'others'); -INSERT INTO entity_mentions VALUES(1397,'SQL Server 2000',2,581,'others'); -INSERT INTO entity_mentions VALUES(1398,'SQL Server 2005 Standard',2,581,'others'); -INSERT INTO entity_mentions VALUES(1399,'Microsoft SQL Server 2008 (SP4) - 10.0.6000.29 (X64)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1400,'MICROSOFT SQL SERVER 2005 STANDARD EDITION 9.*',2,581,'others'); -INSERT INTO entity_mentions VALUES(1401,'Microsoft SQL Server SQL Server 2008 R2',2,581,'others'); -INSERT INTO entity_mentions VALUES(1402,'MICROSOFT SQL SERVER 2012 DEVELOPER EDITION',2,581,'others'); -INSERT INTO entity_mentions VALUES(1403,'Microsoft SQL Server 2000',2,581,'others'); -INSERT INTO entity_mentions VALUES(1404,'MS SQL Server 2008 R2 Express',2,581,'others'); -INSERT INTO entity_mentions VALUES(1405,'SQL Server',2,581,'others'); -INSERT INTO entity_mentions VALUES(1406,'SQL Server 2012 SP3',2,581,'others'); -INSERT INTO entity_mentions VALUES(1407,'SQL Server 2003',2,581,'others'); -INSERT INTO entity_mentions VALUES(1408,'Microsoft SQL Server 2016 - Service pack 2',2,581,'others'); -INSERT INTO entity_mentions VALUES(1409,'SQL SERVER 2008 R2',2,581,'others'); -INSERT INTO entity_mentions VALUES(1410,'MS SQL Server 2008 Enterprise R2',2,581,'others'); -INSERT INTO entity_mentions VALUES(1411,'MS SQL Server 2014 Express',2,581,'others'); -INSERT INTO entity_mentions VALUES(1412,'SQL Server 2008 R2 SP1',2,581,'others'); -INSERT INTO entity_mentions VALUES(1413,'SQL Server 2008 R2 Enterprize SP2 64Bit',2,581,'others'); -INSERT INTO entity_mentions VALUES(1414,'MICROSOFT SQL SERVER 2012 STANDARD EDITION',2,581,'others'); -INSERT INTO entity_mentions VALUES(1415,'MS SQL Server 2008 Developer',2,581,'others'); -INSERT INTO entity_mentions VALUES(1416,'SQL 2005',2,581,'others'); -INSERT INTO entity_mentions VALUES(1417,'MICROSOFT SQL SERVER 2008 DEVELOPER EDITION',2,581,'others'); -INSERT INTO entity_mentions VALUES(1418,'Microsoft SQL Server 2012 (SP4-GDR)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1419,'MS SQL Server 2012 Enterprise',2,581,'others'); -INSERT INTO entity_mentions VALUES(1420,'Microsoft SQL Server 2008 R2 (RTM) - 10.50.1600.1 (X64)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1421,'MS SQL Server 2005 Express',2,581,'others'); -INSERT INTO entity_mentions VALUES(1422,'SQL Server 2016',2,581,'others'); -INSERT INTO entity_mentions VALUES(1423,'Microsoft SQL Server 2012',2,581,'others'); -INSERT INTO entity_mentions VALUES(1424,'Microsoft SQL Server SQL Server 2005',2,581,'others'); -INSERT INTO entity_mentions VALUES(1425,'MS SQL',2,581,'others'); -INSERT INTO entity_mentions VALUES(1426,'sql server 2009 SQL',2,581,'others'); -INSERT INTO entity_mentions VALUES(1427,'Microsoft - Microsoft SQL - 13.0',2,581,'others'); -INSERT INTO entity_mentions VALUES(1428,'MSSQL Database Server',2,581,'others'); -INSERT INTO entity_mentions VALUES(1429,'SQL Server 2008 R2 SP3',2,581,'others'); -INSERT INTO entity_mentions VALUES(1430,'sql server 2013 SQL',2,581,'others'); -INSERT INTO entity_mentions VALUES(1431,'SQL 2012',2,581,'others'); -INSERT INTO entity_mentions VALUES(1432,'Microsoft SQL Server 2000 (SP4)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1433,'MS SQL Server 2012 Standard',2,581,'others'); -INSERT INTO entity_mentions VALUES(1434,'MSSQL2008',2,581,'others'); -INSERT INTO entity_mentions VALUES(1435,'MS SQL server 2008 R2',2,581,'others'); -INSERT INTO entity_mentions VALUES(1436,'MS SQL Server 2000 Standard',2,581,'others'); -INSERT INTO entity_mentions VALUES(1437,'MS SQLServer',2,581,'others'); -INSERT INTO entity_mentions VALUES(1438,'microsoft sql',2,581,'others'); -INSERT INTO entity_mentions VALUES(1439,'MS SQL 2008R2SP2STD (10.52.4042.0)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1440,'MS SQL Server 2008 R2 Standard',2,581,'others'); -INSERT INTO entity_mentions VALUES(1441,'MS SQL Server 2005 Enterprise',2,581,'others'); -INSERT INTO entity_mentions VALUES(1442,'MS SQL Server 2008 Standard R2',2,581,'others'); -INSERT INTO entity_mentions VALUES(1443,'SQL Server 12.0.2000.8',2,581,'others'); -INSERT INTO entity_mentions VALUES(1444,'MS SQL 2008R2SP3STD (10.53.6220.0)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1445,'SQL Server 11.0.5388.0',2,581,'others'); -INSERT INTO entity_mentions VALUES(1446,'sql server 2011 SQL',2,581,'others'); -INSERT INTO entity_mentions VALUES(1447,'MS SQL Server 2014 Enterprise',2,581,'others'); -INSERT INTO entity_mentions VALUES(1448,'sql server 2008 SQL',2,581,'others'); -INSERT INTO entity_mentions VALUES(1449,'SQl 2016',2,581,'others'); -INSERT INTO entity_mentions VALUES(1450,'Microsoft SQL Server',2,581,'others'); -INSERT INTO entity_mentions VALUES(1451,'SQL Server 2014 SP2',2,581,'others'); -INSERT INTO entity_mentions VALUES(1452,'SQL Server 2008 R2 RTM',2,581,'others'); -INSERT INTO entity_mentions VALUES(1453,'Microsoft SQL Server Standard Edition',2,581,'others'); -INSERT INTO entity_mentions VALUES(1454,'MS SQL Server 2000',2,581,'others'); -INSERT INTO entity_mentions VALUES(1455,'sql2000',2,581,'others'); -INSERT INTO entity_mentions VALUES(1456,'SQL Server 2012',2,581,'others'); -INSERT INTO entity_mentions VALUES(1457,'Microsoft SQL Server 2008',2,581,'others'); -INSERT INTO entity_mentions VALUES(1458,'SQL Server 10.0.5538.0',2,581,'others'); -INSERT INTO entity_mentions VALUES(1459,'Microsoft - Microsoft SQL Server 2008 R2 for Microsoft SQL Server 2008 R2 Express Edition 2008',2,581,'others'); -INSERT INTO entity_mentions VALUES(1460,'MICROSOFT SQL SERVER 2014 ENTERPRISE EDITION 12',2,581,'others'); -INSERT INTO entity_mentions VALUES(1461,'SQL Server 11.0.3156.0',2,581,'others'); -INSERT INTO entity_mentions VALUES(1462,'SQLServer',2,581,'others'); -INSERT INTO entity_mentions VALUES(1463,'SQL Server 2000 SP4',2,581,'others'); -INSERT INTO entity_mentions VALUES(1464,'SQL Server 2008',2,581,'others'); -INSERT INTO entity_mentions VALUES(1465,'SQL Server 2008 R2 STD SP1',2,581,'others'); -INSERT INTO entity_mentions VALUES(1466,'sql server 2010 SQL',2,581,'others'); -INSERT INTO entity_mentions VALUES(1467,'MICROSOFT SQL SERVER 2008 R2 STANDARD EDITION',2,581,'others'); -INSERT INTO entity_mentions VALUES(1468,'Microsoft SQL Server 2012 (SP4) (KB4018073) - 11.0.7001.0 (X64)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1469,'MICROSOFT SQL SERVER 2014 STANDARD EDITION 12',2,581,'others'); -INSERT INTO entity_mentions VALUES(1470,'MS SQL SERVER 08',2,581,'others'); -INSERT INTO entity_mentions VALUES(1471,'SQL Server 10.50.2550.0',2,581,'others'); -INSERT INTO entity_mentions VALUES(1472,'Microsoft SQL Server 2005',2,581,'others'); -INSERT INTO entity_mentions VALUES(1473,'SQL 2000',2,581,'others'); -INSERT INTO entity_mentions VALUES(1474,'sql server 2012 SQL',2,581,'others'); -INSERT INTO entity_mentions VALUES(1475,'MS SQL Server 2017',2,581,'others'); -INSERT INTO entity_mentions VALUES(1476,'MS SQL Server 2012',2,581,'others'); -INSERT INTO entity_mentions VALUES(1477,'MS SQL Server 2008 R2 Enterprise',2,581,'others'); -INSERT INTO entity_mentions VALUES(1478,'SQL Server 9.0.1399.0',2,581,'others'); -INSERT INTO entity_mentions VALUES(1479,'MS SQL 2008SP2STD (10.2.4067.0)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1480,'SQL Server 2005',2,581,'others'); -INSERT INTO entity_mentions VALUES(1481,'Microsoft SQL Server 8.1',2,581,'others'); -INSERT INTO entity_mentions VALUES(1482,'Microsoft - Microsoft SQL Server 2005 for Microsoft SQL Server 2005 Express Edition 2005',2,581,'others'); -INSERT INTO entity_mentions VALUES(1483,'Microsoft - Microsoft SQL Server 2008 R2 for Microsoft SQL Server 2008 R2 Standard Edition 2008',2,581,'others'); -INSERT INTO entity_mentions VALUES(1484,'MICROSOFT SQL SERVER 2008 R2 ENTERPRISE EDITION 10.*',2,581,'others'); -INSERT INTO entity_mentions VALUES(1485,'MICROSOFT SQL SERVER 2008 R2 STANDARD EDITION 10.5',2,581,'others'); -INSERT INTO entity_mentions VALUES(1486,'MS SQL 2005SP3STD (9.3.4340)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1487,'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION',2,581,'others'); -INSERT INTO entity_mentions VALUES(1488,'SQL Server 2017 RTM',2,581,'others'); -INSERT INTO entity_mentions VALUES(1489,'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION 11.0"',2,581,'others'); -INSERT INTO entity_mentions VALUES(1490,'SQL 2014',2,581,'others'); -INSERT INTO entity_mentions VALUES(1491,'Microsoft - Microsoft SQL Server 2014 for Microsoft SQL Server 2014 Express Edition 2014',2,581,'others'); -INSERT INTO entity_mentions VALUES(1492,'Microsoft SQL Server 2008R2',2,581,'others'); -INSERT INTO entity_mentions VALUES(1493,'SQL Server 2008 SP1',2,581,'others'); -INSERT INTO entity_mentions VALUES(1494,'MICROSOFT SQL SERVER 2005 ENTERPRISE EDITION',2,581,'others'); -INSERT INTO entity_mentions VALUES(1495,'SQLSVR2008',2,581,'others'); -INSERT INTO entity_mentions VALUES(1496,'MICROSOFT SQL SERVER 2008 ENTERPRISE EDITION',2,581,'others'); -INSERT INTO entity_mentions VALUES(1497,'SQL Server 9.0.5069.0',2,581,'others'); -INSERT INTO entity_mentions VALUES(1498,'MS SQL Instance',2,581,'others'); -INSERT INTO entity_mentions VALUES(1499,'Microsoft - Microsoft SQL Server 2014 for Microsoft SQL Server 2014 Standard Edition 2014',2,581,'others'); -INSERT INTO entity_mentions VALUES(1500,'MICROSOFT SQL SERVER 2008 STANDARD EDITION',2,581,'others'); -INSERT INTO entity_mentions VALUES(1501,'SQL Server 2012 SP4',2,581,'others'); -INSERT INTO entity_mentions VALUES(1502,'Microsoft SQL sever 2008 R2 SP 3',2,581,'others'); -INSERT INTO entity_mentions VALUES(1503,'SQL Server 2012 SP2',2,581,'others'); -INSERT INTO entity_mentions VALUES(1504,'Microsoft SQL Server 2016',2,581,'others'); -INSERT INTO entity_mentions VALUES(1505,'MS SQL Server 2012 Developer',2,581,'others'); -INSERT INTO entity_mentions VALUES(1506,'MS SQL 2014',2,581,'others'); -INSERT INTO entity_mentions VALUES(1507,'MS SQL Server',2,581,'others'); -INSERT INTO entity_mentions VALUES(1508,'MS SQL Server 2005 Standard',2,581,'others'); -INSERT INTO entity_mentions VALUES(1509,'SQL Server 2014',2,581,'others'); -INSERT INTO entity_mentions VALUES(1510,'MS SQL Server 2016',2,581,'others'); -INSERT INTO entity_mentions VALUES(1511,'MICROSOFT SQL SERVER 2012 STANDARD EDITION 11',2,581,'others'); -INSERT INTO entity_mentions VALUES(1512,'SQL Server 10.0.2531.0',2,581,'others'); -INSERT INTO entity_mentions VALUES(1513,'MICROSOFT SQL SERVER 2000 STANDARD EDITION 8.*',2,581,'others'); -INSERT INTO entity_mentions VALUES(1514,'MS SQL Server 2014',2,581,'others'); -INSERT INTO entity_mentions VALUES(1515,'Microsoft - SQL Server Express LocalDB 2014',2,581,'others'); -INSERT INTO entity_mentions VALUES(1516,'MS SQL 2012SP3STD (11.3.6020.0)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1517,'MICROSOFT SQL SERVER 2014 STANDARD EDITION 12.0',2,581,'others'); -INSERT INTO entity_mentions VALUES(1518,'MSSQL',2,581,'others'); -INSERT INTO entity_mentions VALUES(1519,'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION 11',2,581,'others'); -INSERT INTO entity_mentions VALUES(1520,'Microsoft - Microsoft SQL Server 2008 for Microsoft SQL Server 2008 Express Edition 2008',2,581,'others'); -INSERT INTO entity_mentions VALUES(1521,'SQL Server 2008 SP4',2,581,'others'); -INSERT INTO entity_mentions VALUES(1522,'Microsoft SQL Server 2008 R2 Policies 10.50.1600.1',2,581,'others'); -INSERT INTO entity_mentions VALUES(1523,'Microsoft SQL Server 1997 (SP4)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1524,'MS SQL Server 2008 Express',2,581,'others'); -INSERT INTO entity_mentions VALUES(1525,'MS SQL 2005SP4STD (9.4.5324)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1526,'SQL 2008',2,581,'others'); -INSERT INTO entity_mentions VALUES(1527,'MS SQL Server 2008 Enterprise',2,581,'others'); -INSERT INTO entity_mentions VALUES(1528,'MS SQL Server 2005',2,581,'others'); -INSERT INTO entity_mentions VALUES(1529,'SQL 2008 R2',2,581,'others'); -INSERT INTO entity_mentions VALUES(1530,'Microsoft SQL Server 2008 (SP3) - 10.0.5500.0 (X64)',2,581,'others'); -INSERT INTO entity_mentions VALUES(1531,'MS SQL Server 2014 Standard',2,581,'others'); -INSERT INTO entity_mentions VALUES(1532,'SQL Server 2016 SP2',2,581,'others'); -INSERT INTO entity_mentions VALUES(1533,'Microsoft SQL Server 2014',2,581,'others'); -INSERT INTO entity_mentions VALUES(1534,'Microsoft SQL Server Browser 10.52.4000.0',5,465,'others'); -INSERT INTO entity_mentions VALUES(1535,'MS SQL Server Browser',5,465,'others'); -INSERT INTO entity_mentions VALUES(1536,'MS SQL Server Compact',2,121,'others'); -INSERT INTO entity_mentions VALUES(1537,'Microsoft SQL Server Compact 3.5 SP2 ENU 3.5.8080.0',2,121,'others'); -INSERT INTO entity_mentions VALUES(1538,'Microsoft SQL Server Compact 3.5 SP2 Query Tools ENU 3.5.8080.0',2,121,'others'); -INSERT INTO entity_mentions VALUES(1539,'MS DTS',5,466,'others'); -INSERT INTO entity_mentions VALUES(1540,'Data Transformation Services',5,466,'others'); -INSERT INTO entity_mentions VALUES(1541,'Microsoft - Microsoft SQL Server Replication Logreader Agent 9',5,467,'others'); -INSERT INTO entity_mentions VALUES(1542,'Log Reader Agent',5,467,'others'); -INSERT INTO entity_mentions VALUES(1543,'SQL Server Analysis Services 10.50.2500.0',5,468,'others'); -INSERT INTO entity_mentions VALUES(1544,'SQL Server Analysis Services 11.0.2218.0',5,468,'others'); -INSERT INTO entity_mentions VALUES(1545,'SQL Server Analysis Services',5,468,'others'); -INSERT INTO entity_mentions VALUES(1546,'Microsoft - Microsoft SQL Server Analysis Services 2012 for Microsoft SQL Server 2012 Standard Edition 2012',5,468,'others'); -INSERT INTO entity_mentions VALUES(1547,'Microsoft - Microsoft SQL Server Analysis Services 2014 for Microsoft SQL Server 2014 Standard Edition 2014',5,468,'others'); -INSERT INTO entity_mentions VALUES(1548,'SSAS 2012',5,468,'others'); -INSERT INTO entity_mentions VALUES(1549,'Microsoft - Microsoft SQL Server Analysis Services 2014 for Microsoft SQL Server 2014 Enterprise Edition 2014',5,468,'others'); -INSERT INTO entity_mentions VALUES(1550,'SQL Server Analysis Services 12.0.2000.8',5,468,'others'); -INSERT INTO entity_mentions VALUES(1551,'SQL Server Analysis Services (SSAS)',5,468,'others'); -INSERT INTO entity_mentions VALUES(1552,'SQL Server Analysis Services 11.0.3000.0',5,468,'others'); -INSERT INTO entity_mentions VALUES(1553,'SSAS',5,468,'others'); -INSERT INTO entity_mentions VALUES(1554,'6+ SSAS databases',5,468,'others'); -INSERT INTO entity_mentions VALUES(1555,'25+ SSAS databases',5,468,'others'); -INSERT INTO entity_mentions VALUES(1556,'SQL Server Database Engine',5,469,'others'); -INSERT INTO entity_mentions VALUES(1557,'Microsoft - Microsoft SQL Server Database Engine Services 10.1',5,469,'others'); -INSERT INTO entity_mentions VALUES(1558,'Microsoft - Microsoft SQL Server Integration Services 2014 for Microsoft SQL Server 2014 Enterprise Edition 2014',5,470,'others'); -INSERT INTO entity_mentions VALUES(1559,'SSIS',5,470,'others'); -INSERT INTO entity_mentions VALUES(1560,'SSIS 2008 R3',5,470,'others'); -INSERT INTO entity_mentions VALUES(1561,'Microsoft - Microsoft SQL Server Integration Services 2014 for Microsoft SQL Server 2014 Standard Edition 2014',5,470,'others'); -INSERT INTO entity_mentions VALUES(1562,'SSIS 2008 R4',5,470,'others'); -INSERT INTO entity_mentions VALUES(1563,'SQL Server Integration Services',5,470,'others'); -INSERT INTO entity_mentions VALUES(1564,'SSIS 2008 R2',5,470,'others'); -INSERT INTO entity_mentions VALUES(1565,'SSIS - 2008',5,470,'others'); -INSERT INTO entity_mentions VALUES(1566,'SQL Server Integration Services (SSIS)',5,470,'others'); -INSERT INTO entity_mentions VALUES(1567,'Microsoft - Microsoft SQL Server Management Studio 16',5,471,'others'); -INSERT INTO entity_mentions VALUES(1568,'Microsoft SQL Server Management studio2016',5,471,'others'); -INSERT INTO entity_mentions VALUES(1569,'SQL Management Studio',5,471,'others'); -INSERT INTO entity_mentions VALUES(1570,'SQL server mgmt studio 2012',5,471,'others'); -INSERT INTO entity_mentions VALUES(1571,'SQL Server Management Studio',5,471,'others'); -INSERT INTO entity_mentions VALUES(1572,'Microsoft - SQL Server Management Studio 2012',5,471,'others'); -INSERT INTO entity_mentions VALUES(1573,'Microsoft - Microsoft SQL Report Builder 10.5',5,472,'others'); -INSERT INTO entity_mentions VALUES(1574,'SQL Server Report Builder',5,472,'others'); -INSERT INTO entity_mentions VALUES(1575,'SQL Server Reporting Services 10.50.2500.0',5,473,'others'); -INSERT INTO entity_mentions VALUES(1576,'SQL Server Reporting Services',5,473,'others'); -INSERT INTO entity_mentions VALUES(1577,'SQL Server Reporting Services 11.0.5058.0',5,473,'others'); -INSERT INTO entity_mentions VALUES(1578,'SQL Server Reporting Services 12.0.2000.8',5,473,'others'); -INSERT INTO entity_mentions VALUES(1579,'SQL Server Reporting Services 11.0.2218.0',5,473,'others'); -INSERT INTO entity_mentions VALUES(1580,'Microsoft - Microsoft SQL Server Reporting Services 2012 for Microsoft SQL Server 2012 Express Edition 2012',5,473,'others'); -INSERT INTO entity_mentions VALUES(1581,'SQL Server Reporting Services 11.0.3000.0',5,473,'others'); -INSERT INTO entity_mentions VALUES(1582,'SSRS 2016',5,473,'others'); -INSERT INTO entity_mentions VALUES(1583,'SSRS',5,473,'others'); -INSERT INTO entity_mentions VALUES(1584,'SQL Server Reporting Services (SSRS)',5,473,'others'); -INSERT INTO entity_mentions VALUES(1585,'MICROSOFT SQL SERVER REPORTING SERVICES 10.*',5,473,'others'); -INSERT INTO entity_mentions VALUES(1586,'MVS',6,577,'others'); -INSERT INTO entity_mentions VALUES(1587,'OS/390',6,440,'others'); -INSERT INTO entity_mentions VALUES(1588,'ZOS V1R9',6,441,'others'); -INSERT INTO entity_mentions VALUES(1589,'ZOS Base 1.12',6,441,'others'); -INSERT INTO entity_mentions VALUES(1590,'IBM Z/OS V2.1',6,441,'others'); -INSERT INTO entity_mentions VALUES(1591,'z/OS 1.9',6,441,'others'); -INSERT INTO entity_mentions VALUES(1592,'z/OS',6,441,'others'); -INSERT INTO entity_mentions VALUES(1593,'zOS',6,441,'others'); -INSERT INTO entity_mentions VALUES(1594,'z/OS 1.8',6,441,'others'); -INSERT INTO entity_mentions VALUES(1595,'zOS 11.1',6,441,'others'); -INSERT INTO entity_mentions VALUES(1596,'z/OS Base',6,441,'others'); -INSERT INTO entity_mentions VALUES(1597,'MySQL Instance',2,122,'others'); -INSERT INTO entity_mentions VALUES(1598,'MySQL AB - MySQL - 15.1',2,122,'others'); -INSERT INTO entity_mentions VALUES(1599,'My SQL 0',2,122,'others'); -INSERT INTO entity_mentions VALUES(1600,'MYSQL',2,122,'others'); -INSERT INTO entity_mentions VALUES(1601,'Sun - Sun Microsystems MySQL Server Community Edition 5.6',2,122,'others'); -INSERT INTO entity_mentions VALUES(1602,'MySQL AB - MySQL Server 5.5',2,122,'others'); -INSERT INTO entity_mentions VALUES(1603,'MySQL AB - MySQL Server 5.7',2,122,'others'); -INSERT INTO entity_mentions VALUES(1604,'MySQL Enterprise Server - 8.0.16',2,122,'others'); -INSERT INTO entity_mentions VALUES(1605,'mysql on linux',2,122,'others'); -INSERT INTO entity_mentions VALUES(1606,'Neo4',2,123,'others'); -INSERT INTO entity_mentions VALUES(1607,'Neo4J',2,123,'others'); -INSERT INTO entity_mentions VALUES(1608,'Net Optics Network TAPs',4,297,'others'); -INSERT INTO entity_mentions VALUES(1609,'Net Optics Taps',4,297,'others'); -INSERT INTO entity_mentions VALUES(1610,'NAS',8,272,'others'); -INSERT INTO entity_mentions VALUES(1611,'Netscape Application Server',8,272,'others'); -INSERT INTO entity_mentions VALUES(1612,'Netscape Application Server (NAS)',8,272,'others'); -INSERT INTO entity_mentions VALUES(1613,'NES',8,273,'others'); -INSERT INTO entity_mentions VALUES(1614,'Netscape Enterprise Server',8,273,'others'); -INSERT INTO entity_mentions VALUES(1615,'Netscape En',8,273,'others'); -INSERT INTO entity_mentions VALUES(1616,'Netscape Enterprise Server (NES)',8,273,'others'); -INSERT INTO entity_mentions VALUES(1617,'Nexus',2,124,'others'); -INSERT INTO entity_mentions VALUES(1618,'Nexus Repository OSS',2,124,'others'); -INSERT INTO entity_mentions VALUES(1619,'Nginx (Linux)',8,274,'others'); -INSERT INTO entity_mentions VALUES(1620,'Nginx 3 (Linux)',8,274,'others'); -INSERT INTO entity_mentions VALUES(1621,'Nginx 1 (Linux)',8,274,'others'); -INSERT INTO entity_mentions VALUES(1622,'Nginx',8,274,'others'); -INSERT INTO entity_mentions VALUES(1623,'Nginx 1',8,274,'others'); -INSERT INTO entity_mentions VALUES(1624,'Nginx 3',8,274,'others'); -INSERT INTO entity_mentions VALUES(1625,'Niakwa Programming Language (NPL)',9,342,'others'); -INSERT INTO entity_mentions VALUES(1626,'NPL (Niakwa Inc)',9,342,'others'); -INSERT INTO entity_mentions VALUES(1627,'Niakwa Programming Language',9,342,'others'); -INSERT INTO entity_mentions VALUES(1628,'NIX',2,125,'others'); -INSERT INTO entity_mentions VALUES(1629,'Nix package manager',2,125,'others'); -INSERT INTO entity_mentions VALUES(1630,'Node.js',10,507,'others'); -INSERT INTO entity_mentions VALUES(1631,'Node.js 0.10 (Linux)',10,507,'others'); -INSERT INTO entity_mentions VALUES(1632,'Nodejs Foundation - nodejs - node.js 11.7.0',10,507,'others'); -INSERT INTO entity_mentions VALUES(1633,'TS-Node.js 6',10,507,'others'); -INSERT INTO entity_mentions VALUES(1634,'Node.js 4',10,507,'others'); -INSERT INTO entity_mentions VALUES(1635,'Node.js 6',10,507,'others'); -INSERT INTO entity_mentions VALUES(1636,'Node.js 10',10,507,'others'); -INSERT INTO entity_mentions VALUES(1637,'Node.js 8',10,507,'others'); -INSERT INTO entity_mentions VALUES(1638,'TS-Node.js 8',10,507,'others'); -INSERT INTO entity_mentions VALUES(1639,'TS-Node.js 0.10',10,507,'others'); -INSERT INTO entity_mentions VALUES(1640,'node',10,507,'others'); -INSERT INTO entity_mentions VALUES(1641,'Node.js 0.8',10,507,'others'); -INSERT INTO entity_mentions VALUES(1642,'Node.js 0.10',10,507,'others'); -INSERT INTO entity_mentions VALUES(1643,'Node.js 4 (Linux)',10,507,'others'); -INSERT INTO entity_mentions VALUES(1644,'TS-Node.js 11',10,507,'others'); -INSERT INTO entity_mentions VALUES(1645,'Node.js 5',10,507,'others'); -INSERT INTO entity_mentions VALUES(1646,'Nodejs',10,507,'others'); -INSERT INTO entity_mentions VALUES(1647,'Node.js 0.12',10,507,'others'); -INSERT INTO entity_mentions VALUES(1648,'Objective C',9,343,'others'); -INSERT INTO entity_mentions VALUES(1649,'Objective-C',9,343,'others'); -INSERT INTO entity_mentions VALUES(1650,'Obj-C',9,343,'others'); -INSERT INTO entity_mentions VALUES(1651,'OpenEdge ABL',9,344,'others'); -INSERT INTO entity_mentions VALUES(1652,'Progress',9,344,'others'); -INSERT INTO entity_mentions VALUES(1653,'OpenEdge',9,344,'others'); -INSERT INTO entity_mentions VALUES(1654,'Progress OpenEdge',9,344,'others'); -INSERT INTO entity_mentions VALUES(1655,'Symas OpenLDAP',2,126,'others'); -INSERT INTO entity_mentions VALUES(1656,'OpenLDAP',2,126,'others'); -INSERT INTO entity_mentions VALUES(1657,'HPExstream',2,127,'others'); -INSERT INTO entity_mentions VALUES(1658,'OpenText Exstream',2,127,'others'); -INSERT INTO entity_mentions VALUES(1659,'VMS 8.4',6,442,'others'); -INSERT INTO entity_mentions VALUES(1660,'OPENVMS 7.3.2',6,442,'others'); -INSERT INTO entity_mentions VALUES(1661,'VMS',6,442,'others'); -INSERT INTO entity_mentions VALUES(1662,'OpenVMS',6,442,'others'); -INSERT INTO entity_mentions VALUES(1663,'OPENVMS 8.4',6,442,'others'); -INSERT INTO entity_mentions VALUES(1664,'OpenVPN',2,128,'others'); -INSERT INTO entity_mentions VALUES(1665,'Oracle Access Management',2,129,'others'); -INSERT INTO entity_mentions VALUES(1666,'OAM 12c',2,129,'others'); -INSERT INTO entity_mentions VALUES(1667,'ADF 12c',2,130,'others'); -INSERT INTO entity_mentions VALUES(1668,'Oracle ADF',2,130,'others'); -INSERT INTO entity_mentions VALUES(1669,'Oracle APEX',2,131,'others'); -INSERT INTO entity_mentions VALUES(1670,'Apex',2,131,'others'); -INSERT INTO entity_mentions VALUES(1671,'Oracle HTTP Server 12c',8,610,'others'); -INSERT INTO entity_mentions VALUES(1672,'OHS',8,610,'others'); -INSERT INTO entity_mentions VALUES(1673,'Oracle Application Server 9i',8,610,'others'); -INSERT INTO entity_mentions VALUES(1674,'Oracle HTTP Server powered by Apache',8,610,'others'); -INSERT INTO entity_mentions VALUES(1675,'j2eeoracleca',8,610,'others'); -INSERT INTO entity_mentions VALUES(1676,'Oracle Application Server',8,610,'others'); -INSERT INTO entity_mentions VALUES(1677,'Oracle HTTP',8,610,'others'); -INSERT INTO entity_mentions VALUES(1678,'Oracle HTTP server',8,610,'others'); -INSERT INTO entity_mentions VALUES(1679,'Oracle - Oracle Application Server OC4J Instance 11.2',8,610,'others'); -INSERT INTO entity_mentions VALUES(1680,'Oracle Web App Server',8,610,'others'); -INSERT INTO entity_mentions VALUES(1681,'9i AS server',8,610,'others'); -INSERT INTO entity_mentions VALUES(1682,'Oracle Applications 11.5.10CU2',8,610,'others'); -INSERT INTO entity_mentions VALUES(1683,'Oracle Application R12.1.3',8,610,'others'); -INSERT INTO entity_mentions VALUES(1684,'OC4J',8,610,'others'); -INSERT INTO entity_mentions VALUES(1685,'Oracle Appache 1.0.22',8,610,'others'); -INSERT INTO entity_mentions VALUES(1686,'Oracle Transparent Gateway',7,494,'others'); -INSERT INTO entity_mentions VALUES(1687,'Weblogic BI Publisher',2,132,'others'); -INSERT INTO entity_mentions VALUES(1688,'Oracle BI Publisher 10g (10.1.3.4)',2,132,'others'); -INSERT INTO entity_mentions VALUES(1689,'Oracle BI Publisher',2,132,'others'); -INSERT INTO entity_mentions VALUES(1690,'Oracle Business Intelligence',2,133,'others'); -INSERT INTO entity_mentions VALUES(1691,'OBI',2,133,'others'); -INSERT INTO entity_mentions VALUES(1692,'OBIEE',2,133,'others'); -INSERT INTO entity_mentions VALUES(1693,'OBI Reporting',2,133,'others'); -INSERT INTO entity_mentions VALUES(1694,'Oracle 12c Enterprise',2,134,'others'); -INSERT INTO entity_mentions VALUES(1695,'Oracle 12 c',2,134,'others'); -INSERT INTO entity_mentions VALUES(1696,'Oracle 12.2 Client',2,134,'others'); -INSERT INTO entity_mentions VALUES(1697,'Oracle 11gR1',2,134,'others'); -INSERT INTO entity_mentions VALUES(1698,'Oracle 18c',2,134,'others'); -INSERT INTO entity_mentions VALUES(1699,'Oracle 9.2.0.7.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1700,'Oracle 10.2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1701,'Oracle Database 11g Enterprise Edition Release 11.2.0.4.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1702,'Oracle 11.2 (Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit) RAC',2,134,'others'); -INSERT INTO entity_mentions VALUES(1703,'Oracle 18',2,134,'others'); -INSERT INTO entity_mentions VALUES(1704,'Oracle 9i',2,134,'others'); -INSERT INTO entity_mentions VALUES(1705,'Oracle 12c (v12.2.0.1) ORACLE',2,134,'others'); -INSERT INTO entity_mentions VALUES(1706,'Oracle Database 12.1.0.2.190716',2,134,'others'); -INSERT INTO entity_mentions VALUES(1707,'Oracle 12.1.0.2.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1708,'Oracle 12.1',2,134,'others'); -INSERT INTO entity_mentions VALUES(1709,'Oracle Database 11g R2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1710,'Oracle 11 on AIX',2,134,'others'); -INSERT INTO entity_mentions VALUES(1711,'Oracle Database 10g Enterprise Edition Release 10.1.0.4.0 - 64bit',2,134,'others'); -INSERT INTO entity_mentions VALUES(1712,'Oracle Database 11.2.0.3.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1713,'Oracle Database 10g 10.2.0.5.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1714,'Oracle 11 on EXA',2,134,'others'); -INSERT INTO entity_mentions VALUES(1715,'Oracle Database 11.1.0.7.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1716,'Oracle Database Server',2,134,'others'); -INSERT INTO entity_mentions VALUES(1717,'Oracle DB Server',2,134,'others'); -INSERT INTO entity_mentions VALUES(1718,'Oracle (9i,10g,11g,12c,18c)',2,134,'others'); -INSERT INTO entity_mentions VALUES(1719,'Oracle 12C',2,134,'others'); -INSERT INTO entity_mentions VALUES(1720,'Oracle 10.2.0.5',2,134,'others'); -INSERT INTO entity_mentions VALUES(1721,'Oracle-OracleDB-10g',2,134,'others'); -INSERT INTO entity_mentions VALUES(1722,'Oracle 11.2.0.2.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1723,'Oracle 10',2,134,'others'); -INSERT INTO entity_mentions VALUES(1724,'Oracle 8',2,134,'others'); -INSERT INTO entity_mentions VALUES(1725,'Oracle 11G R2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1726,'Oracle Database 10g Release 10.2.0.4.0 - 64bit Production',2,134,'others'); -INSERT INTO entity_mentions VALUES(1727,'Oarcle 11G',2,134,'others'); -INSERT INTO entity_mentions VALUES(1728,'Oracle 12C R2 ORACLE',2,134,'others'); -INSERT INTO entity_mentions VALUES(1729,'Oracle 11x',2,134,'others'); -INSERT INTO entity_mentions VALUES(1730,'Oracle 11.2.4',2,134,'others'); -INSERT INTO entity_mentions VALUES(1731,'Oracle Database 11gR2 Enterprise Edition 11.2.0.1 (64-bit)',2,134,'others'); -INSERT INTO entity_mentions VALUES(1732,'Oracle',2,134,'others'); -INSERT INTO entity_mentions VALUES(1733,'Oracle 12.1.0.2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1734,'Oracle Database 10g R2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1735,'Oracle 12x',2,134,'others'); -INSERT INTO entity_mentions VALUES(1736,'Oracle - 12.1.0.2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1737,'Oracle 10g',2,134,'others'); -INSERT INTO entity_mentions VALUES(1738,'DB - Oracle inbuilt',2,134,'others'); -INSERT INTO entity_mentions VALUES(1739,'Oracle 12g',2,134,'others'); -INSERT INTO entity_mentions VALUES(1740,'Oracle Database 10g Release 2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1741,'Oracle 11.2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1742,'Oracle 11 g',2,134,'others'); -INSERT INTO entity_mentions VALUES(1743,'Oracle 9.2.0.8.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1744,'Oracle Database 12.2.1.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1745,'Oracle 10.2.0.4.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1746,'Oracle 10g (10.2.0.3.0 on 32-bit windows)',2,134,'others'); -INSERT INTO entity_mentions VALUES(1747,'Oracle 11g (11.2.0.3.0 on 64-bit windows)',2,134,'others'); -INSERT INTO entity_mentions VALUES(1748,'Oracle-Oracle DB-8i',2,134,'others'); -INSERT INTO entity_mentions VALUES(1749,'Oracle DB',2,134,'others'); -INSERT INTO entity_mentions VALUES(1750,'Oracle Database',2,134,'others'); -INSERT INTO entity_mentions VALUES(1751,'Oracle - Oracle Database - 10g Release 2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1752,'Oracle 10x',2,134,'others'); -INSERT INTO entity_mentions VALUES(1753,'Oracle 11.2.0.4.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1754,'Oracle 11g RAC',2,134,'others'); -INSERT INTO entity_mentions VALUES(1755,'Oracle Database 11g Release 2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1756,'Oracle Server',2,134,'others'); -INSERT INTO entity_mentions VALUES(1757,'Oracle Database 12c R1',2,134,'others'); -INSERT INTO entity_mentions VALUES(1758,'Oracle 10.2.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1759,'Oracle 11.2.0.4.0 64-bit',2,134,'others'); -INSERT INTO entity_mentions VALUES(1760,'Oracle 10.2.0.5.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1761,'Oracle 9.2.0.5.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1762,'Oracle DB 11g EER 11.2.0.3.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1763,'ORACLE RELATIONAL DATABASE MANAGEMENT SYSTEM VERSION 11.2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1764,'Oracle Database 9i Release 2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1765,'Oracle 11.1.0.7.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1766,'Oracle Database 11g',2,134,'others'); -INSERT INTO entity_mentions VALUES(1767,'Oracle DB 11.2.0.3',2,134,'others'); -INSERT INTO entity_mentions VALUES(1768,'Oracle 12.2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1769,'Oracle 11g',2,134,'others'); -INSERT INTO entity_mentions VALUES(1770,'Oracle Database 12c Release 2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1771,'Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production',2,134,'others'); -INSERT INTO entity_mentions VALUES(1772,'Oracle 11.2.0.3.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1773,'Oracle 10.2.0.3.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1774,'Oracle 12',2,134,'others'); -INSERT INTO entity_mentions VALUES(1775,'Oracle Database 12c R2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1776,'Oracle 12C on linux',2,134,'others'); -INSERT INTO entity_mentions VALUES(1777,'oracle 11g ORACLE',2,134,'others'); -INSERT INTO entity_mentions VALUES(1778,'Oracle - 11.2.0.3',2,134,'others'); -INSERT INTO entity_mentions VALUES(1779,'Oracle 12c (Oracle Database 12c Enterprise Edition Release 11.2.0.3.0 - 64bit)',2,134,'others'); -INSERT INTO entity_mentions VALUES(1780,'Oracle9i Enterprise Edition Release 9.2.0.5.0',2,134,'others'); -INSERT INTO entity_mentions VALUES(1781,'OracleDB EE11.2',2,134,'others'); -INSERT INTO entity_mentions VALUES(1782,'Oracle 11g on linux',2,134,'others'); -INSERT INTO entity_mentions VALUES(1783,'Oracle 11gEssbase',2,134,'others'); -INSERT INTO entity_mentions VALUES(1784,'Oracle12',2,134,'others'); -INSERT INTO entity_mentions VALUES(1785,'Oracle Database 12c Release 1',2,134,'others'); -INSERT INTO entity_mentions VALUES(1786,'JServer Release 9.2.0.5.0',5,474,'others'); -INSERT INTO entity_mentions VALUES(1787,'Jserver',5,474,'others'); -INSERT INTO entity_mentions VALUES(1788,'ORACLE SPATIAL',5,475,'others'); -INSERT INTO entity_mentions VALUES(1789,'Oracle Spatial and Graph',5,475,'others'); -INSERT INTO entity_mentions VALUES(1790,'Designer 6i',2,135,'others'); -INSERT INTO entity_mentions VALUES(1791,'Oracle Designer',2,135,'others'); -INSERT INTO entity_mentions VALUES(1792,'Enterprise Manager 12.2.1.1',2,136,'others'); -INSERT INTO entity_mentions VALUES(1793,'Enterprise Manager 12.2.1.2',2,136,'others'); -INSERT INTO entity_mentions VALUES(1794,'Enterprise Manager 11.1.1.7',2,136,'others'); -INSERT INTO entity_mentions VALUES(1795,'Oracle Enterprise Manager',2,136,'others'); -INSERT INTO entity_mentions VALUES(1796,'Exadata X6-2',4,298,'others'); -INSERT INTO entity_mentions VALUES(1797,'Oracle Exadata',4,298,'others'); -INSERT INTO entity_mentions VALUES(1798,'Oracle Exadata 11g',4,298,'others'); -INSERT INTO entity_mentions VALUES(1799,'Oracle - Exadata X6-2',4,298,'others'); -INSERT INTO entity_mentions VALUES(1800,'Oracle Forms',2,137,'others'); -INSERT INTO entity_mentions VALUES(1801,'Hyperion Interactive Reporting',2,138,'others'); -INSERT INTO entity_mentions VALUES(1802,'Oracle Hyperion Interactive Reporting version 9.3',2,138,'others'); -INSERT INTO entity_mentions VALUES(1803,'Hyperion Planning Server',2,139,'others'); -INSERT INTO entity_mentions VALUES(1804,'Hyperion Planning',2,139,'others'); -INSERT INTO entity_mentions VALUES(1805,'Oracle Net Services',2,140,'others'); -INSERT INTO entity_mentions VALUES(1806,'Oracle, Nets',2,140,'others'); -INSERT INTO entity_mentions VALUES(1807,'Oracle Real Application Clusters (RAC)',2,141,'others'); -INSERT INTO entity_mentions VALUES(1808,'Oracle RAC',2,141,'others'); -INSERT INTO entity_mentions VALUES(1809,'Oracle Real Application Clusters',2,141,'others'); -INSERT INTO entity_mentions VALUES(1810,'Oracle Retail Point-of-Service',2,142,'others'); -INSERT INTO entity_mentions VALUES(1811,'ORPOS 13.3.3',2,142,'others'); -INSERT INTO entity_mentions VALUES(1812,'ORPOS 13.3.5',2,142,'others'); -INSERT INTO entity_mentions VALUES(1813,'ORPOS 13.3.4',2,142,'others'); -INSERT INTO entity_mentions VALUES(1814,'Oracle Service Bus',2,143,'others'); -INSERT INTO entity_mentions VALUES(1815,'Oracle Service Bus 11.1.1.7',2,143,'others'); -INSERT INTO entity_mentions VALUES(1816,'Oracle Service Bus 12.2.1.2',2,143,'others'); -INSERT INTO entity_mentions VALUES(1817,'OSB Servers',2,143,'others'); -INSERT INTO entity_mentions VALUES(1818,'Oracle Service Bus 12.2.1.1',2,143,'others'); -INSERT INTO entity_mentions VALUES(1819,'Oracle Smart View',2,144,'others'); -INSERT INTO entity_mentions VALUES(1820,'Hyperian Smart View',2,144,'others'); -INSERT INTO entity_mentions VALUES(1821,'Oracle SOA Suite',2,145,'others'); -INSERT INTO entity_mentions VALUES(1822,'Oracle SOA Suite 12.2.1.3.0',2,145,'others'); -INSERT INTO entity_mentions VALUES(1823,'Oracle SQL Developer',2,146,'others'); -INSERT INTO entity_mentions VALUES(1824,'Oracle - Oracle Sql Developer 1.5',2,146,'others'); -INSERT INTO entity_mentions VALUES(1825,'Oracle TimesTen In-Memory Database',2,147,'others'); -INSERT INTO entity_mentions VALUES(1826,'Oracle TT',2,147,'others'); -INSERT INTO entity_mentions VALUES(1827,'Oracle VM 3.3.3',3,567,'others'); -INSERT INTO entity_mentions VALUES(1828,'Oracle VM',3,567,'others'); -INSERT INTO entity_mentions VALUES(1829,'Oracle VM 3.3',3,567,'others'); -INSERT INTO entity_mentions VALUES(1830,'OWB 10g',2,148,'others'); -INSERT INTO entity_mentions VALUES(1831,'Oracle Warehouse Builder',2,148,'others'); -INSERT INTO entity_mentions VALUES(1832,'Oracle Warehouse Builder (OWB)',2,148,'others'); -INSERT INTO entity_mentions VALUES(1833,'WebCenter Content Server',8,276,'others'); -INSERT INTO entity_mentions VALUES(1834,'Oracle WebCenter Content Server',8,276,'others'); -INSERT INTO entity_mentions VALUES(1835,'IDOC SCRIPT',7,495,'others'); -INSERT INTO entity_mentions VALUES(1836,'Orbix',2,149,'others'); -INSERT INTO entity_mentions VALUES(1837,'IONA Orbix',2,149,'others'); -INSERT INTO entity_mentions VALUES(1838,'OS/2',6,443,'others'); -INSERT INTO entity_mentions VALUES(1839,'OWASP Enterprise Security API (ESAPI)',12,416,'others'); -INSERT INTO entity_mentions VALUES(1840,'OWASP Enterprise Security API',12,416,'others'); -INSERT INTO entity_mentions VALUES(1841,'Esapi',12,416,'others'); -INSERT INTO entity_mentions VALUES(1842,'Pascal',9,599,'others'); -INSERT INTO entity_mentions VALUES(1843,'Object Pascal',9,346,'others'); -INSERT INTO entity_mentions VALUES(1844,'Clascal',9,346,'others'); -INSERT INTO entity_mentions VALUES(1845,'Pentaho',2,150,'others'); -INSERT INTO entity_mentions VALUES(1846,'peoplesoft',2,151,'others'); -INSERT INTO entity_mentions VALUES(1847,'Oracle-HR-9.2',2,151,'others'); -INSERT INTO entity_mentions VALUES(1848,'Perkin Elmer Informatics',2,152,'others'); -INSERT INTO entity_mentions VALUES(1849,'Perkin Elmer Informatics (PKI)',2,152,'others'); -INSERT INTO entity_mentions VALUES(1850,'Perl',9,585,'others'); -INSERT INTO entity_mentions VALUES(1851,'Perl 5.8.4',9,585,'others'); -INSERT INTO entity_mentions VALUES(1852,'ActivePerl',9,348,'others'); -INSERT INTO entity_mentions VALUES(1853,'ActiveState Tool Corp. - ActivePerl 5.12',9,348,'others'); -INSERT INTO entity_mentions VALUES(1854,'ActiveState Tool Corp. - ActivePerl 5.8',9,348,'others'); -INSERT INTO entity_mentions VALUES(1855,'ORAPERL',12,417,'others'); -INSERT INTO entity_mentions VALUES(1856,'REX',9,349,'others'); -INSERT INTO entity_mentions VALUES(1857,'Pervasive',2,153,'others'); -INSERT INTO entity_mentions VALUES(1858,'Pervasive PSQL',2,153,'others'); -INSERT INTO entity_mentions VALUES(1859,'PHP 5.4',9,586,'others'); -INSERT INTO entity_mentions VALUES(1860,'PHP',9,586,'others'); -INSERT INTO entity_mentions VALUES(1861,'Pipeflo',2,154,'others'); -INSERT INTO entity_mentions VALUES(1862,'PIPE-FLO',2,154,'others'); -INSERT INTO entity_mentions VALUES(1863,'TCServer V6',8,277,'others'); -INSERT INTO entity_mentions VALUES(1864,'Pivotal tc Server',8,277,'others'); -INSERT INTO entity_mentions VALUES(1865,'IBM PKWARE PKZip 2',2,155,'others'); -INSERT INTO entity_mentions VALUES(1866,'PKZIP',2,155,'others'); -INSERT INTO entity_mentions VALUES(1867,'PL/I',9,351,'others'); -INSERT INTO entity_mentions VALUES(1868,'PL1',9,351,'others'); -INSERT INTO entity_mentions VALUES(1869,'pli',9,351,'others'); -INSERT INTO entity_mentions VALUES(1870,'PL/1',9,351,'others'); -INSERT INTO entity_mentions VALUES(1871,'PLQSL',9,352,'others'); -INSERT INTO entity_mentions VALUES(1872,'Oracle - SQL',9,352,'others'); -INSERT INTO entity_mentions VALUES(1873,'PL/SQL TEMPLATING LANGUAGE',9,352,'others'); -INSERT INTO entity_mentions VALUES(1874,'PL/SQL',9,352,'others'); -INSERT INTO entity_mentions VALUES(1875,'Oracle SQL',9,352,'others'); -INSERT INTO entity_mentions VALUES(1876,'PLSQL;',9,352,'others'); -INSERT INTO entity_mentions VALUES(1877,'Oracle PL/SQL',9,352,'others'); -INSERT INTO entity_mentions VALUES(1878,'Oracle PLSQL',9,352,'others'); -INSERT INTO entity_mentions VALUES(1879,'plsql',9,352,'others'); -INSERT INTO entity_mentions VALUES(1880,'pl-sql',9,352,'others'); -INSERT INTO entity_mentions VALUES(1881,'PL SQL',9,352,'others'); -INSERT INTO entity_mentions VALUES(1882,'Planview',2,156,'others'); -INSERT INTO entity_mentions VALUES(1883,'Projectplace',2,156,'others'); -INSERT INTO entity_mentions VALUES(1884,'postgres',2,157,'others'); -INSERT INTO entity_mentions VALUES(1885,'PostGreSQL',2,157,'others'); -INSERT INTO entity_mentions VALUES(1886,'PostgreSQL 0',2,157,'others'); -INSERT INTO entity_mentions VALUES(1887,'Postgress',2,157,'others'); -INSERT INTO entity_mentions VALUES(1888,'PowerBuilder 6.5',2,158,'others'); -INSERT INTO entity_mentions VALUES(1889,'Powerbuilder V12.5',2,158,'others'); -INSERT INTO entity_mentions VALUES(1890,'Power Builder',2,158,'others'); -INSERT INTO entity_mentions VALUES(1891,'Powerbuilder v11.5',2,158,'others'); -INSERT INTO entity_mentions VALUES(1892,'Power Builder 6.5',2,158,'others'); -INSERT INTO entity_mentions VALUES(1893,'Powerbuilder',2,158,'others'); -INSERT INTO entity_mentions VALUES(1894,'Primavera',2,159,'others'); -INSERT INTO entity_mentions VALUES(1895,'Primavera P6',2,159,'others'); -INSERT INTO entity_mentions VALUES(1896,'PRO*C',9,353,'others'); -INSERT INTO entity_mentions VALUES(1897,'PRO C',9,353,'others'); -INSERT INTO entity_mentions VALUES(1898,'ProC',9,353,'others'); -INSERT INTO entity_mentions VALUES(1899,'Pro*Cobol',2,160,'others'); -INSERT INTO entity_mentions VALUES(1900,'ProjectWise',2,161,'others'); -INSERT INTO entity_mentions VALUES(1901,'ProjectWise Oracle Server',2,161,'others'); -INSERT INTO entity_mentions VALUES(1902,'Projectwise Server (XM)',2,162,'others'); -INSERT INTO entity_mentions VALUES(1903,'ProjectWise JJ',2,162,'others'); -INSERT INTO entity_mentions VALUES(1904,'Projectwise Server',2,162,'others'); -INSERT INTO entity_mentions VALUES(1905,'Projectwise Setup for PEMEX',2,162,'others'); -INSERT INTO entity_mentions VALUES(1906,'ProjectWise Web Server',2,162,'others'); -INSERT INTO entity_mentions VALUES(1907,'ProjectWise Application Server',2,162,'others'); -INSERT INTO entity_mentions VALUES(1908,'ProjectWise Cache Server',2,162,'others'); -INSERT INTO entity_mentions VALUES(1909,'PVCS Version Manager',2,163,'others'); -INSERT INTO entity_mentions VALUES(1910,'Serena PVCS Version Manager 8.4',2,163,'others'); -INSERT INTO entity_mentions VALUES(1911,'Python Software Foundation - Python 2.6',9,587,'others'); -INSERT INTO entity_mentions VALUES(1912,'Python - Python - Python 2',9,587,'others'); -INSERT INTO entity_mentions VALUES(1913,'Python 2',9,587,'others'); -INSERT INTO entity_mentions VALUES(1914,'Python',9,587,'others'); -INSERT INTO entity_mentions VALUES(1915,'QlikView',2,164,'others'); -INSERT INTO entity_mentions VALUES(1916,'R',9,355,'others'); -INSERT INTO entity_mentions VALUES(1917,'RMQ',2,165,'others'); -INSERT INTO entity_mentions VALUES(1918,'rabbit mq',2,165,'others'); -INSERT INTO entity_mentions VALUES(1919,'RabbitMQ',2,165,'others'); -INSERT INTO entity_mentions VALUES(1920,'ClearCase Build Utility 1',2,166,'others'); -INSERT INTO entity_mentions VALUES(1921,'Rational ClearCase',2,166,'others'); -INSERT INTO entity_mentions VALUES(1922,'Clearquest',2,167,'others'); -INSERT INTO entity_mentions VALUES(1923,'Rational ClearQuest',2,167,'others'); -INSERT INTO entity_mentions VALUES(1924,'redis',2,168,'others'); -INSERT INTO entity_mentions VALUES(1925,'Remedy',2,169,'others'); -INSERT INTO entity_mentions VALUES(1926,'Remedy ARS',2,169,'others'); -INSERT INTO entity_mentions VALUES(1927,'Resin Web Server',8,278,'others'); -INSERT INTO entity_mentions VALUES(1928,'Resin',8,278,'others'); -INSERT INTO entity_mentions VALUES(1929,'rexx',9,356,'others'); -INSERT INTO entity_mentions VALUES(1930,'Riak',2,170,'others'); -INSERT INTO entity_mentions VALUES(1931,'RightFax client 10',2,171,'others'); -INSERT INTO entity_mentions VALUES(1932,'RightFax',2,171,'others'); -INSERT INTO entity_mentions VALUES(1933,'RPG',9,357,'others'); -INSERT INTO entity_mentions VALUES(1934,'Ruby',9,588,'others'); -INSERT INTO entity_mentions VALUES(1935,'Ruby on Rails',10,508,'others'); -INSERT INTO entity_mentions VALUES(1936,'Rumba',2,172,'others'); -INSERT INTO entity_mentions VALUES(1937,'Salesforce Object Query Language (SOQL)',9,359,'others'); -INSERT INTO entity_mentions VALUES(1938,'SOQL',9,359,'others'); -INSERT INTO entity_mentions VALUES(1939,'Salesforce Object Query Language',9,359,'others'); -INSERT INTO entity_mentions VALUES(1940,'SAP Business Objects',2,173,'others'); -INSERT INTO entity_mentions VALUES(1941,'Business Objects 12',2,173,'others'); -INSERT INTO entity_mentions VALUES(1942,'BusinessObjects 4.2 SP7',2,173,'others'); -INSERT INTO entity_mentions VALUES(1943,'SAP BI 4.2 Sp5',2,173,'others'); -INSERT INTO entity_mentions VALUES(1944,'SAP BusinessObjects BI server',2,173,'others'); -INSERT INTO entity_mentions VALUES(1945,'SAP ERP',2,174,'others'); -INSERT INTO entity_mentions VALUES(1946,'SAP EHP 7',5,476,'others'); -INSERT INTO entity_mentions VALUES(1947,'SAP EHP',5,476,'others'); -INSERT INTO entity_mentions VALUES(1948,'SAP - SAP Kernel 7.1',5,477,'others'); -INSERT INTO entity_mentions VALUES(1949,'SAP Kernel',5,477,'others'); -INSERT INTO entity_mentions VALUES(1950,'SAP HANA ON SUSEOracle 11g on Linux',2,175,'others'); -INSERT INTO entity_mentions VALUES(1951,'HANA',2,175,'others'); -INSERT INTO entity_mentions VALUES(1952,'SAP HANA DB',2,175,'others'); -INSERT INTO entity_mentions VALUES(1953,'SAP - HANA 2.0',2,175,'others'); -INSERT INTO entity_mentions VALUES(1954,'SAP MaxDB',2,176,'others'); -INSERT INTO entity_mentions VALUES(1955,'NetWeaver',8,279,'others'); -INSERT INTO entity_mentions VALUES(1956,'SAP NetWeaver App Server',8,279,'others'); -INSERT INTO entity_mentions VALUES(1957,'ABAP',7,496,'others'); -INSERT INTO entity_mentions VALUES(1958,'SAP NetWeaver Business Warehouse',2,177,'others'); -INSERT INTO entity_mentions VALUES(1959,'SAP BW 7.5 SP10 - BW has 10 App servers for load balancing',2,177,'others'); -INSERT INTO entity_mentions VALUES(1960,'SAP BW DB server has one instance and 13 servers for load balancing',2,177,'others'); -INSERT INTO entity_mentions VALUES(1961,'SAP BW 7.5 SP10',2,177,'others'); -INSERT INTO entity_mentions VALUES(1962,'SAP - SAP SQL Anywhere Network Database Server 12',2,178,'others'); -INSERT INTO entity_mentions VALUES(1963,'SAP SQL Anywhere',2,178,'others'); -INSERT INTO entity_mentions VALUES(1964,'SAP - SAP SQL Anywhere Network Database Server 11',2,178,'others'); -INSERT INTO entity_mentions VALUES(1965,'SAP - SAP SQL Anywhere Personal Database Server 16',2,178,'others'); -INSERT INTO entity_mentions VALUES(1966,'SAP Web Dynpro',2,179,'others'); -INSERT INTO entity_mentions VALUES(1967,'Web-Dynpro',2,179,'others'); -INSERT INTO entity_mentions VALUES(1968,'SAS',9,360,'others'); -INSERT INTO entity_mentions VALUES(1969,'SAS 9.2',9,360,'others'); -INSERT INTO entity_mentions VALUES(1970,'SCSS',9,361,'others'); -INSERT INTO entity_mentions VALUES(1971,'Sass',9,361,'others'); -INSERT INTO entity_mentions VALUES(1972,'Scala',9,362,'others'); -INSERT INTO entity_mentions VALUES(1973,'Scalla',9,362,'others'); -INSERT INTO entity_mentions VALUES(1974,'Sentry',2,180,'others'); -INSERT INTO entity_mentions VALUES(1975,'Sentry 1.13',2,180,'others'); -INSERT INTO entity_mentions VALUES(1976,'Sharepoints 2010',2,603,'others'); -INSERT INTO entity_mentions VALUES(1977,'Microsoft SPS 2010',2,603,'others'); -INSERT INTO entity_mentions VALUES(1978,'SharePoint',2,603,'others'); -INSERT INTO entity_mentions VALUES(1979,'SharePoint 2013',2,603,'others'); -INSERT INTO entity_mentions VALUES(1980,'Sharepoint 2007',2,603,'others'); -INSERT INTO entity_mentions VALUES(1981,'Sharepoint 2010',2,603,'others'); -INSERT INTO entity_mentions VALUES(1982,'SQL Server SP2013 Database Server',2,603,'others'); -INSERT INTO entity_mentions VALUES(1983,'Sharepoint 2016',2,603,'others'); -INSERT INTO entity_mentions VALUES(1984,'Siebel IP 2015',2,182,'others'); -INSERT INTO entity_mentions VALUES(1985,'Siebel 7.8.2.16',2,182,'others'); -INSERT INTO entity_mentions VALUES(1986,'Siebel',2,182,'others'); -INSERT INTO entity_mentions VALUES(1987,'Siebel CRM',2,182,'others'); -INSERT INTO entity_mentions VALUES(1988,'Smalltalk',9,363,'others'); -INSERT INTO entity_mentions VALUES(1989,'SNA Manager',2,183,'others'); -INSERT INTO entity_mentions VALUES(1990,'SNA Manager 8.0.3608.0',2,183,'others'); -INSERT INTO entity_mentions VALUES(1991,'Techsmith Corporation - SnagIt 8',2,184,'others'); -INSERT INTO entity_mentions VALUES(1992,'SnagIt',2,184,'others'); -INSERT INTO entity_mentions VALUES(1993,'Solid development server',2,185,'others'); -INSERT INTO entity_mentions VALUES(1994,'solidDB',2,185,'others'); -INSERT INTO entity_mentions VALUES(1995,'SonarSource - SonarSource SonarQube Server 5.1',2,186,'others'); -INSERT INTO entity_mentions VALUES(1996,'SonarQube',2,186,'others'); -INSERT INTO entity_mentions VALUES(1997,'SpaceMonger',2,187,'others'); -INSERT INTO entity_mentions VALUES(1998,'Sixty-Five Software - SpaceMonger 1.4',2,187,'others'); -INSERT INTO entity_mentions VALUES(1999,'Spark',8,280,'others'); -INSERT INTO entity_mentions VALUES(2000,'Splunk',2,188,'others'); -INSERT INTO entity_mentions VALUES(2001,'SQLPlus',5,478,'others'); -INSERT INTO entity_mentions VALUES(2002,'SQL Plus',5,478,'others'); -INSERT INTO entity_mentions VALUES(2003,'SQL*Plus',5,478,'others'); -INSERT INTO entity_mentions VALUES(2004,'SQLIO 1.0',2,189,'others'); -INSERT INTO entity_mentions VALUES(2005,'SQLIO',2,189,'others'); -INSERT INTO entity_mentions VALUES(2007,'Sun ONE Web Server',8,281,'others'); -INSERT INTO entity_mentions VALUES(2008,'Sun Java Web Server 7.0 Update 2',8,281,'others'); -INSERT INTO entity_mentions VALUES(2009,'iPlanet Web Server',8,281,'others'); -INSERT INTO entity_mentions VALUES(2010,'Oracle iPlanet Web Server',8,281,'others'); -INSERT INTO entity_mentions VALUES(2011,'Sun Java Web Server',8,281,'others'); -INSERT INTO entity_mentions VALUES(2012,'SunOne',8,281,'others'); -INSERT INTO entity_mentions VALUES(2013,'Swift',9,364,'others'); -INSERT INTO entity_mentions VALUES(2014,'Sybase SQL Server',2,190,'others'); -INSERT INTO entity_mentions VALUES(2015,'Sybase',2,190,'others'); -INSERT INTO entity_mentions VALUES(2016,'SYBASE ADAPTIVE SERVER ENTERPRISE DATABASE SERVER 12.5"',2,190,'others'); -INSERT INTO entity_mentions VALUES(2017,'SYBASE ADAPTIVE SERVER ENTERPRISE DATABASE SERVER 12',2,190,'others'); -INSERT INTO entity_mentions VALUES(2018,'SAP - Sybase Adaptive Server Enterprise 12.5',2,190,'others'); -INSERT INTO entity_mentions VALUES(2019,'SAP - Sybase Adaptive Server Enterprise 16',2,190,'others'); -INSERT INTO entity_mentions VALUES(2020,'SAP - Sybase Adaptive Server Enterprise 12',2,190,'others'); -INSERT INTO entity_mentions VALUES(2021,'Sybase Central',5,479,'others'); -INSERT INTO entity_mentions VALUES(2022,'SAP - Sybase Central 4.3',5,479,'others'); -INSERT INTO entity_mentions VALUES(2023,'SAP - Sybase Dsedit 12.5',5,480,'others'); -INSERT INTO entity_mentions VALUES(2024,'Sybase Dsedit',5,480,'others'); -INSERT INTO entity_mentions VALUES(2025,'Sysncsort',2,191,'others'); -INSERT INTO entity_mentions VALUES(2026,'syncsort',2,191,'others'); -INSERT INTO entity_mentions VALUES(2027,'Sysinternals LLC - AccessEnum 1 1',2,194,'others'); -INSERT INTO entity_mentions VALUES(2028,'AccessEnum',2,194,'others'); -INSERT INTO entity_mentions VALUES(2029,'Sysinternals LLC - ClockRes 2',2,195,'others'); -INSERT INTO entity_mentions VALUES(2030,'ClockRes',2,195,'others'); -INSERT INTO entity_mentions VALUES(2031,'Sysinternals LLC - Coreinfo 3.21',2,196,'others'); -INSERT INTO entity_mentions VALUES(2032,'Coreinfo',2,196,'others'); -INSERT INTO entity_mentions VALUES(2033,'Sysinternals LLC - DiskExt 1.1',2,197,'others'); -INSERT INTO entity_mentions VALUES(2034,'DiskExt',2,197,'others'); -INSERT INTO entity_mentions VALUES(2035,'Sysinternals LLC - DiskMon 2.01',2,198,'others'); -INSERT INTO entity_mentions VALUES(2036,'DiskMon',2,198,'others'); -INSERT INTO entity_mentions VALUES(2037,'Hex2dec',2,199,'others'); -INSERT INTO entity_mentions VALUES(2038,'Sysinternals LLC - Hex2dec 1',2,199,'others'); -INSERT INTO entity_mentions VALUES(2039,'Sysinternals LLC - Junction 1.6',2,200,'others'); -INSERT INTO entity_mentions VALUES(2040,'Junction',2,200,'others'); -INSERT INTO entity_mentions VALUES(2041,'Sysinternals LLC - LDMDump 1.02',2,201,'others'); -INSERT INTO entity_mentions VALUES(2042,'LDMDump',2,201,'others'); -INSERT INTO entity_mentions VALUES(2043,'Sysinternals LLC - LoadOrder 1',2,202,'others'); -INSERT INTO entity_mentions VALUES(2044,'LoadOrder',2,202,'others'); -INSERT INTO entity_mentions VALUES(2045,'PipeList',2,203,'others'); -INSERT INTO entity_mentions VALUES(2046,'Sysinternals LLC - PipeList 1.01',2,203,'others'); -INSERT INTO entity_mentions VALUES(2047,'Process Explorer',2,204,'others'); -INSERT INTO entity_mentions VALUES(2048,'Sysinternals LLC - Process Explorer 16.5',2,204,'others'); -INSERT INTO entity_mentions VALUES(2049,'Sysinternals LLC - PsKill 1.15',2,205,'others'); -INSERT INTO entity_mentions VALUES(2050,'PsKill',2,205,'others'); -INSERT INTO entity_mentions VALUES(2051,'Sysinternals LLC - PsPasswd 1.23',2,206,'others'); -INSERT INTO entity_mentions VALUES(2052,'PsPasswd',2,206,'others'); -INSERT INTO entity_mentions VALUES(2053,'SDelete',2,207,'others'); -INSERT INTO entity_mentions VALUES(2054,'Sysinternals LLC - SDelete 1.61',2,207,'others'); -INSERT INTO entity_mentions VALUES(2055,'Sysinternals LLC - ShareEnum 1.6',2,208,'others'); -INSERT INTO entity_mentions VALUES(2056,'ShareEnum',2,208,'others'); -INSERT INTO entity_mentions VALUES(2057,'Sysinternals LLC - Sync 2.2',2,209,'others'); -INSERT INTO entity_mentions VALUES(2058,'Sync',2,209,'others'); -INSERT INTO entity_mentions VALUES(2059,'Sysinternals LLC - Sysinternals TCPView 3.5',2,210,'others'); -INSERT INTO entity_mentions VALUES(2060,'TCPView',2,210,'others'); -INSERT INTO entity_mentions VALUES(2061,'Sysinternals LLC - VMMap 3.11',2,211,'others'); -INSERT INTO entity_mentions VALUES(2062,'VMMap',2,211,'others'); -INSERT INTO entity_mentions VALUES(2063,'Sysinternals LLC - Whois 1.11',2,212,'others'); -INSERT INTO entity_mentions VALUES(2064,'Whois',2,212,'others'); -INSERT INTO entity_mentions VALUES(2065,'Tableau',2,213,'others'); -INSERT INTO entity_mentions VALUES(2066,'TCL',9,365,'others'); -INSERT INTO entity_mentions VALUES(2067,'TCPLink Enterprise Server 6',2,214,'others'); -INSERT INTO entity_mentions VALUES(2068,'(Canon IT Solutions) TCPLink Enterprise Server 6',2,214,'others'); -INSERT INTO entity_mentions VALUES(2069,'TERADATA',2,215,'others'); -INSERT INTO entity_mentions VALUES(2070,'Teradata hors Radia',2,215,'others'); -INSERT INTO entity_mentions VALUES(2071,'Teradata QS Server',2,216,'others'); -INSERT INTO entity_mentions VALUES(2072,'TERADATA QUERY SCHEDULER SERVER VERSION 15',2,216,'others'); -INSERT INTO entity_mentions VALUES(2073,'TIBCO Business Works',2,217,'others'); -INSERT INTO entity_mentions VALUES(2074,'Tibco BW',2,217,'others'); -INSERT INTO entity_mentions VALUES(2075,'BusinessWorks',2,217,'others'); -INSERT INTO entity_mentions VALUES(2076,'TIBCO Business Works (BW)',2,217,'others'); -INSERT INTO entity_mentions VALUES(2077,'Integration Manager',5,481,'others'); -INSERT INTO entity_mentions VALUES(2078,'Tibco-IM',5,481,'others'); -INSERT INTO entity_mentions VALUES(2079,'Tibco Integration Manager',5,481,'others'); -INSERT INTO entity_mentions VALUES(2080,'Tibco InConcert',2,218,'others'); -INSERT INTO entity_mentions VALUES(2081,'TIBCO Rendezvous (RV)',2,219,'others'); -INSERT INTO entity_mentions VALUES(2082,'TIBCO Rendezvous',2,219,'others'); -INSERT INTO entity_mentions VALUES(2083,'Tivoli Access Manager (TAM)',2,220,'others'); -INSERT INTO entity_mentions VALUES(2084,'Tivoli Access Manager 6.1',2,220,'others'); -INSERT INTO entity_mentions VALUES(2085,'TortoiseCVS',2,221,'others'); -INSERT INTO entity_mentions VALUES(2086,'TortoiseSVN',2,222,'others'); -INSERT INTO entity_mentions VALUES(2087,'TortoiseSVN 1.8',2,222,'others'); -INSERT INTO entity_mentions VALUES(2088,'TSQL',9,366,'others'); -INSERT INTO entity_mentions VALUES(2089,'Transact-SQL',9,366,'others'); -INSERT INTO entity_mentions VALUES(2090,'Trasact SQL',9,366,'others'); -INSERT INTO entity_mentions VALUES(2091,'T-SQL',9,366,'others'); -INSERT INTO entity_mentions VALUES(2092,'Transact SQL',9,366,'others'); -INSERT INTO entity_mentions VALUES(2093,'TSO/ISPF',2,223,'others'); -INSERT INTO entity_mentions VALUES(2094,'ispf',2,223,'others'); -INSERT INTO entity_mentions VALUES(2095,'TSO',2,223,'others'); -INSERT INTO entity_mentions VALUES(2096,'TSO ISPF',2,223,'others'); -INSERT INTO entity_mentions VALUES(2097,'TWS zCentric 8.4',2,224,'others'); -INSERT INTO entity_mentions VALUES(2098,'TWS Zcentric',2,224,'others'); -INSERT INTO entity_mentions VALUES(2099,'TypeScript',9,367,'others'); -INSERT INTO entity_mentions VALUES(2100,'UltiDev Web Server Pro (UWS)',8,282,'others'); -INSERT INTO entity_mentions VALUES(2101,'UltiDev Web Server Pro',8,282,'others'); -INSERT INTO entity_mentions VALUES(2102,'UltiDev Web Server Pro 2',8,282,'others'); -INSERT INTO entity_mentions VALUES(2103,'UltiDev Cassini Pro',8,282,'others'); -INSERT INTO entity_mentions VALUES(2104,'Uniface',2,225,'others'); -INSERT INTO entity_mentions VALUES(2105,'Unix',6,578,'others'); -INSERT INTO entity_mentions VALUES(2106,'IBM AIX 6.1 6100 64 Bit',6,445,'others'); -INSERT INTO entity_mentions VALUES(2107,'AIX 7.1 7100-04-06-1806',6,445,'others'); -INSERT INTO entity_mentions VALUES(2108,'AIX-6',6,445,'others'); -INSERT INTO entity_mentions VALUES(2109,'AIX Enterprise',6,445,'others'); -INSERT INTO entity_mentions VALUES(2110,'IBM AIX',6,445,'others'); -INSERT INTO entity_mentions VALUES(2111,'AIX7.1.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2112,'AIX 7100-05-03-1838',6,445,'others'); -INSERT INTO entity_mentions VALUES(2113,'IBM - AIX Standard Edition 7.1',6,445,'others'); -INSERT INTO entity_mentions VALUES(2114,'IBM AIX 5.3, SERVICE PACK TL12 SP08',6,445,'others'); -INSERT INTO entity_mentions VALUES(2115,'AIX7.2.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2116,'AIX 6.1.0.0.09',6,445,'others'); -INSERT INTO entity_mentions VALUES(2117,'AIX 7.2.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2118,'AIX 5.3 5300-12-07-1241',6,445,'others'); -INSERT INTO entity_mentions VALUES(2119,'AIX 6.1.9.101',6,445,'others'); -INSERT INTO entity_mentions VALUES(2120,'AIX 5.3.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2121,'AIX 7.1',6,445,'others'); -INSERT INTO entity_mentions VALUES(2122,'AIX 7.1 7100-05-03-1846',6,445,'others'); -INSERT INTO entity_mentions VALUES(2123,'AIX 5.3.0.0.08',6,445,'others'); -INSERT INTO entity_mentions VALUES(2124,'AIX 6.1 6100-09-09-1717',6,445,'others'); -INSERT INTO entity_mentions VALUES(2125,'AIX 7.1 7100-04-01-1543',6,445,'others'); -INSERT INTO entity_mentions VALUES(2126,'AIX 6100-09-09-1717',6,445,'others'); -INSERT INTO entity_mentions VALUES(2127,'IBM AIX 6.1 Enterprise 64 Bit',6,445,'others'); -INSERT INTO entity_mentions VALUES(2128,'AIX 7.1.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2129,'IBM AIX 7.1 x',6,445,'others'); -INSERT INTO entity_mentions VALUES(2130,'AIX 7.1 7100-05-03-1838',6,445,'others'); -INSERT INTO entity_mentions VALUES(2131,'AIX7.2',6,445,'others'); -INSERT INTO entity_mentions VALUES(2132,'AIX 6.1 6100-09-12-1838',6,445,'others'); -INSERT INTO entity_mentions VALUES(2133,'AIX (Linux)',6,445,'others'); -INSERT INTO entity_mentions VALUES(2134,'IBM - AIX Express Edition 7.1',6,445,'others'); -INSERT INTO entity_mentions VALUES(2135,'AIX 5.3.0.0.12',6,445,'others'); -INSERT INTO entity_mentions VALUES(2136,'AIX',6,445,'others'); -INSERT INTO entity_mentions VALUES(2137,'IBM AIX 6.1 6100 32 Bit',6,445,'others'); -INSERT INTO entity_mentions VALUES(2138,'AIX: 7.2',6,445,'others'); -INSERT INTO entity_mentions VALUES(2139,'AIX 6.1',6,445,'others'); -INSERT INTO entity_mentions VALUES(2140,'AIX 5.3',6,445,'others'); -INSERT INTO entity_mentions VALUES(2141,'IBM AIX 5.3 5300 64 Bit',6,445,'others'); -INSERT INTO entity_mentions VALUES(2142,'AIX 5.2.0.0.09',6,445,'others'); -INSERT INTO entity_mentions VALUES(2143,'AIX 5.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2144,'AIX 7100-05-03-1846',6,445,'others'); -INSERT INTO entity_mentions VALUES(2145,'AIX 7.2 7200-03-03-1914',6,445,'others'); -INSERT INTO entity_mentions VALUES(2146,'AIX6.1.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2147,'IBM AIX 7.1 7100 64 Bit',6,445,'others'); -INSERT INTO entity_mentions VALUES(2148,'AIX 7.1 7100-05-04-1914',6,445,'others'); -INSERT INTO entity_mentions VALUES(2149,'IBM AIX 5.x',6,445,'others'); -INSERT INTO entity_mentions VALUES(2150,'AIX 6.1.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2151,'AIX 7.1.5.16',6,445,'others'); -INSERT INTO entity_mentions VALUES(2152,'AIX 6.1.0.0 UNIX LPAR',6,445,'others'); -INSERT INTO entity_mentions VALUES(2153,'AIX 5300-12-07-1241',6,445,'others'); -INSERT INTO entity_mentions VALUES(2154,'IBM AIX 5.3, SERVICE PACK TL12 SP01',6,445,'others'); -INSERT INTO entity_mentions VALUES(2155,'IBM - AIX 6.1.0.0',6,445,'others'); -INSERT INTO entity_mentions VALUES(2156,'IBM AIX 6.1x',6,445,'others'); -INSERT INTO entity_mentions VALUES(2157,'AIX7.1',6,445,'others'); -INSERT INTO entity_mentions VALUES(2158,'AIX 7100-04-05-1720',6,445,'others'); -INSERT INTO entity_mentions VALUES(2159,'AIX Express',6,445,'others'); -INSERT INTO entity_mentions VALUES(2160,'IBM AIX 64 Bit',6,445,'others'); -INSERT INTO entity_mentions VALUES(2161,'AIX Standard',6,445,'others'); -INSERT INTO entity_mentions VALUES(2162,'AIX 6.1.8.16',6,445,'others'); -INSERT INTO entity_mentions VALUES(2163,'FreeBSD (64-bit)',6,447,'others'); -INSERT INTO entity_mentions VALUES(2164,'FreeBSD',6,447,'others'); -INSERT INTO entity_mentions VALUES(2165,'FreeBSD 8.X',6,447,'others'); -INSERT INTO entity_mentions VALUES(2166,'FreeBSD 8.4',6,447,'others'); -INSERT INTO entity_mentions VALUES(2167,'Sun Solaris 10 OS',6,448,'others'); -INSERT INTO entity_mentions VALUES(2168,'Solaris 11.2 SPARC',6,448,'others'); -INSERT INTO entity_mentions VALUES(2169,'Solaris UNIX',6,448,'others'); -INSERT INTO entity_mentions VALUES(2170,'Unix Servers (Solaris',6,448,'others'); -INSERT INTO entity_mentions VALUES(2171,'Oracle Solaris 11.3 SPARC',6,448,'others'); -INSERT INTO entity_mentions VALUES(2172,'SUN 5.10',6,448,'others'); -INSERT INTO entity_mentions VALUES(2173,'SOLARIS 10',6,448,'others'); -INSERT INTO entity_mentions VALUES(2174,'Sun Solaris',6,448,'others'); -INSERT INTO entity_mentions VALUES(2175,'Solaris 5.10 (Generic_150400-61)',6,448,'others'); -INSERT INTO entity_mentions VALUES(2176,'Solaris 5.10 (Generic_150400-62)',6,448,'others'); -INSERT INTO entity_mentions VALUES(2177,'Solaris (Sun OS 5.9)',6,448,'others'); -INSERT INTO entity_mentions VALUES(2178,'Solaris 5.10 (Generic_150400-55)',6,448,'others'); -INSERT INTO entity_mentions VALUES(2179,'SUNOS 5.10',6,448,'others'); -INSERT INTO entity_mentions VALUES(2180,'Sun Solaris - 5.10',6,448,'others'); -INSERT INTO entity_mentions VALUES(2181,'Solaris 10 (SunOS 5.10)',6,448,'others'); -INSERT INTO entity_mentions VALUES(2182,'Oracle Solaris',6,448,'others'); -INSERT INTO entity_mentions VALUES(2183,'Unix - SunOS - 5.10 Generic_147147-26',6,448,'others'); -INSERT INTO entity_mentions VALUES(2184,'Solaris 1 (SPARC)',6,448,'others'); -INSERT INTO entity_mentions VALUES(2185,'SUN OS',6,448,'others'); -INSERT INTO entity_mentions VALUES(2186,'solaris',6,448,'others'); -INSERT INTO entity_mentions VALUES(2187,'SunSolaris 10.0',6,448,'others'); -INSERT INTO entity_mentions VALUES(2188,'SOLARIS 9',6,448,'others'); -INSERT INTO entity_mentions VALUES(2189,'SunOS',6,448,'others'); -INSERT INTO entity_mentions VALUES(2190,'SUN 5.9',6,448,'others'); -INSERT INTO entity_mentions VALUES(2191,'SOLARIS 8',6,448,'others'); -INSERT INTO entity_mentions VALUES(2192,'SunOS 5.1',6,448,'others'); -INSERT INTO entity_mentions VALUES(2193,'SunOS 5.11',6,448,'others'); -INSERT INTO entity_mentions VALUES(2194,'Oracle Solaris 10',6,448,'others'); -INSERT INTO entity_mentions VALUES(2195,'Sun Solaris 10',6,448,'others'); -INSERT INTO entity_mentions VALUES(2196,'HPUX 11i V1',6,449,'others'); -INSERT INTO entity_mentions VALUES(2197,'HP-UX 11.31',6,449,'others'); -INSERT INTO entity_mentions VALUES(2198,'HPUX 11i V3',6,449,'others'); -INSERT INTO entity_mentions VALUES(2199,'HP/UXB.11.23',6,449,'others'); -INSERT INTO entity_mentions VALUES(2200,'HPUX B.11.31',6,449,'others'); -INSERT INTO entity_mentions VALUES(2201,'HPUX 11',6,449,'others'); -INSERT INTO entity_mentions VALUES(2202,'hp-ux',6,449,'others'); -INSERT INTO entity_mentions VALUES(2203,'HPUX 11.23',6,449,'others'); -INSERT INTO entity_mentions VALUES(2204,'HP-UX B.11.31',6,449,'others'); -INSERT INTO entity_mentions VALUES(2205,'HPUX 11.31',6,449,'others'); -INSERT INTO entity_mentions VALUES(2206,'HP-UX 11.23',6,449,'others'); -INSERT INTO entity_mentions VALUES(2207,'HP-UX B.11.00',6,449,'others'); -INSERT INTO entity_mentions VALUES(2208,'HP-UX B.11.23',6,449,'others'); -INSERT INTO entity_mentions VALUES(2209,'HP-UX B.11.11',6,449,'others'); -INSERT INTO entity_mentions VALUES(2210,'HP 10.20',6,449,'others'); -INSERT INTO entity_mentions VALUES(2211,'HP Unix',6,449,'others'); -INSERT INTO entity_mentions VALUES(2212,'HP UX',6,449,'others'); -INSERT INTO entity_mentions VALUES(2213,'HP-UX 11.11',6,449,'others'); -INSERT INTO entity_mentions VALUES(2214,'HPUX',6,449,'others'); -INSERT INTO entity_mentions VALUES(2215,'HPUX-11i V3',6,449,'others'); -INSERT INTO entity_mentions VALUES(2216,'HP-UX B.10.20',6,449,'others'); -INSERT INTO entity_mentions VALUES(2217,'HP/UXB.11.31',6,449,'others'); -INSERT INTO entity_mentions VALUES(2218,'HP-UX 10.20',6,449,'others'); -INSERT INTO entity_mentions VALUES(2219,'Visual Basic .Net',9,368,'others'); -INSERT INTO entity_mentions VALUES(2220,'VB.NET',9,368,'others'); -INSERT INTO entity_mentions VALUES(2221,'VB Script',9,369,'others'); -INSERT INTO entity_mentions VALUES(2222,'VBscript',9,369,'others'); -INSERT INTO entity_mentions VALUES(2223,'NetManage-ViewNow',2,226,'others'); -INSERT INTO entity_mentions VALUES(2224,'ViewNow X Server',2,226,'others'); -INSERT INTO entity_mentions VALUES(2225,'Virtual I/O Server',2,227,'others'); -INSERT INTO entity_mentions VALUES(2226,'VIO 2.2.0.10',2,227,'others'); -INSERT INTO entity_mentions VALUES(2227,'VIOS',2,227,'others'); -INSERT INTO entity_mentions VALUES(2228,'visibroker',2,228,'others'); -INSERT INTO entity_mentions VALUES(2229,'VB6',9,370,'others'); -INSERT INTO entity_mentions VALUES(2230,'VB 6.0',9,370,'others'); -INSERT INTO entity_mentions VALUES(2231,'visualbasic',9,370,'others'); -INSERT INTO entity_mentions VALUES(2232,'VB',9,370,'others'); -INSERT INTO entity_mentions VALUES(2233,'VISUAL BASIC 6',9,370,'others'); -INSERT INTO entity_mentions VALUES(2234,'Visual Basic',9,370,'others'); -INSERT INTO entity_mentions VALUES(2235,'Visual Basic 6.0',9,370,'others'); -INSERT INTO entity_mentions VALUES(2236,'Visusal Basic',9,370,'others'); -INSERT INTO entity_mentions VALUES(2237,'Visual Basic for Applications (VBA)',9,371,'others'); -INSERT INTO entity_mentions VALUES(2238,'Visual Basic for Applications',9,371,'others'); -INSERT INTO entity_mentions VALUES(2239,'VBA',9,371,'others'); -INSERT INTO entity_mentions VALUES(2240,'Access VB',9,371,'others'); -INSERT INTO entity_mentions VALUES(2241,'Visual FoxPro',9,372,'others'); -INSERT INTO entity_mentions VALUES(2242,'vfoxpro',9,372,'others'); -INSERT INTO entity_mentions VALUES(2243,'VisualForce',10,509,'others'); -INSERT INTO entity_mentions VALUES(2244,'ESXi',3,568,'others'); -INSERT INTO entity_mentions VALUES(2245,'ESXi 5.1',3,568,'others'); -INSERT INTO entity_mentions VALUES(2246,'VM ESXi 5.1',3,568,'others'); -INSERT INTO entity_mentions VALUES(2247,'VM ESXi 6.0',3,568,'others'); -INSERT INTO entity_mentions VALUES(2248,'VM ESXi 5.5',3,568,'others'); -INSERT INTO entity_mentions VALUES(2249,'VMWARE ESXI SERVER 5.5',3,568,'others'); -INSERT INTO entity_mentions VALUES(2250,'VM ESXi 5.0.0',3,568,'others'); -INSERT INTO entity_mentions VALUES(2251,'VMware ESXi 5.5.0',3,568,'others'); -INSERT INTO entity_mentions VALUES(2252,'VM ESXi 6.5',3,568,'others'); -INSERT INTO entity_mentions VALUES(2253,'VMWare ESX',3,568,'others'); -INSERT INTO entity_mentions VALUES(2254,'VM ESXi 5.0',3,568,'others'); -INSERT INTO entity_mentions VALUES(2255,'VMWare ESXi',3,568,'others'); -INSERT INTO entity_mentions VALUES(2256,'VMWARE ESXI SERVER 5.1',3,568,'others'); -INSERT INTO entity_mentions VALUES(2257,'VMware Appliance',3,569,'others'); -INSERT INTO entity_mentions VALUES(2258,'VMware Server',3,569,'others'); -INSERT INTO entity_mentions VALUES(2259,'VMware Solution Exchange Marketplace (VSX)',2,229,'others'); -INSERT INTO entity_mentions VALUES(2260,'VSX',2,229,'others'); -INSERT INTO entity_mentions VALUES(2261,'VMware Solution Exchange Marketplace',2,229,'others'); -INSERT INTO entity_mentions VALUES(2262,'VMware - VMware Tools 10.2',2,230,'others'); -INSERT INTO entity_mentions VALUES(2263,'VMware Tools',2,230,'others'); -INSERT INTO entity_mentions VALUES(2264,'VMware - VMware vCenter Server 5.5',2,231,'others'); -INSERT INTO entity_mentions VALUES(2265,'VMware vCenter',2,231,'others'); -INSERT INTO entity_mentions VALUES(2266,'VoiceXML',9,373,'others'); -INSERT INTO entity_mentions VALUES(2267,'VXML',9,373,'others'); -INSERT INTO entity_mentions VALUES(2268,'WebFOCUS',2,232,'others'); -INSERT INTO entity_mentions VALUES(2269,'Web Focus',2,232,'others'); -INSERT INTO entity_mentions VALUES(2270,'FOCEXEC',2,232,'others'); -INSERT INTO entity_mentions VALUES(2271,'Web Logic Integration',2,233,'others'); -INSERT INTO entity_mentions VALUES(2272,'WLI 8',2,233,'others'); -INSERT INTO entity_mentions VALUES(2273,'WebLogic Integration',2,233,'others'); -INSERT INTO entity_mentions VALUES(2274,'Web Logic Integration 9.2.0.0',2,233,'others'); -INSERT INTO entity_mentions VALUES(2275,'webMethods Integration Server',8,283,'others'); -INSERT INTO entity_mentions VALUES(2276,'WebMethods',8,283,'others'); -INSERT INTO entity_mentions VALUES(2277,'Webmethods 9.7',8,283,'others'); -INSERT INTO entity_mentions VALUES(2278,'WAS 7',8,284,'others'); -INSERT INTO entity_mentions VALUES(2279,'websphere 8.0.0.4',8,284,'others'); -INSERT INTO entity_mentions VALUES(2280,'IBM WEBSPHERE APPLICATION SERVER VERSION 6.1.0',8,284,'others'); -INSERT INTO entity_mentions VALUES(2281,'WEBSPHERE APPLICATION SERVER - BASE VERSION 8.5.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2282,'WEBSPHERE APPLICATION SERVER 8',8,284,'others'); -INSERT INTO entity_mentions VALUES(2283,'Websphere Application Server 6.x',8,284,'others'); -INSERT INTO entity_mentions VALUES(2284,'websphere',8,284,'others'); -INSERT INTO entity_mentions VALUES(2285,'WebSphere Application Server 9.0',8,284,'others'); -INSERT INTO entity_mentions VALUES(2286,'IBM WebSphere Application Server Network Deployment, 8.0.0.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2287,'WebSphere Application Server (WAS)',8,284,'others'); -INSERT INTO entity_mentions VALUES(2288,'IBM WebSphere Application Server Network Deployment 7',8,284,'others'); -INSERT INTO entity_mentions VALUES(2289,'WebSphere Application Server 8.5.1',8,284,'others'); -INSERT INTO entity_mentions VALUES(2290,'WAS ND8.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2291,'WAS7',8,284,'others'); -INSERT INTO entity_mentions VALUES(2292,'WebSphere Application Server 5.1',8,284,'others'); -INSERT INTO entity_mentions VALUES(2293,'WebSphere Application Server 8.5.5.6',8,284,'others'); -INSERT INTO entity_mentions VALUES(2294,'WebSphere Application Server 5.0',8,284,'others'); -INSERT INTO entity_mentions VALUES(2295,'WebSphere Application Server 8.0',8,284,'others'); -INSERT INTO entity_mentions VALUES(2296,'IBM WebSphere 8.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2297,'Websphere 9.0',8,284,'others'); -INSERT INTO entity_mentions VALUES(2298,'WebSphere 7.0.0.27',8,284,'others'); -INSERT INTO entity_mentions VALUES(2299,'IBM - WebSphere Application Server - Base 8.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2300,'WebSphere Application Server 8.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2301,'WEBSPHERE APPLICATION SERVER 8.5.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2302,'WebSphere Application Server 8.5 (WAS)',8,284,'others'); -INSERT INTO entity_mentions VALUES(2303,'Websphere AS (JVM)',8,284,'others'); -INSERT INTO entity_mentions VALUES(2304,'WebSphere App Server',8,284,'others'); -INSERT INTO entity_mentions VALUES(2305,'WebSphere Application Server 6.1 (WAS)',8,284,'others'); -INSERT INTO entity_mentions VALUES(2306,'WEBSPHERE APPLICATION SERVER',8,284,'others'); -INSERT INTO entity_mentions VALUES(2307,'WAS 6.1',8,284,'others'); -INSERT INTO entity_mentions VALUES(2308,'WebSphere 8.0.0.4',8,284,'others'); -INSERT INTO entity_mentions VALUES(2309,'WEBSPHERE APPLICATION SERVER 6.1',8,284,'others'); -INSERT INTO entity_mentions VALUES(2310,'IBM WebSphere',8,284,'others'); -INSERT INTO entity_mentions VALUES(2311,'Websphere Application Server 8.5.5.11',8,284,'others'); -INSERT INTO entity_mentions VALUES(2312,'WebSphere Application Server 8.5.5.8',8,284,'others'); -INSERT INTO entity_mentions VALUES(2313,'IBM WebSphere Application Server 8.5',8,284,'others'); -INSERT INTO entity_mentions VALUES(2314,'Websphere (WAS7)',8,284,'others'); -INSERT INTO entity_mentions VALUES(2315,'IBM WebSphere Application',8,284,'others'); -INSERT INTO entity_mentions VALUES(2316,'WAS 6.x',8,284,'others'); -INSERT INTO entity_mentions VALUES(2317,'WAS',8,284,'others'); -INSERT INTO entity_mentions VALUES(2318,'IBM OpenStack Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2319,'IBM WebSphere Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2320,'Open Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2321,'IBM Open Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2322,'WebSphere Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2323,'IBM WebSphere Application Server Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2324,'IBM WAS Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2325,'WebSphere Application Server Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2326,'WAS Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2327,'IBM Cloud WebSphere Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2328,'OpenStack Liberty',8,285,'others'); -INSERT INTO entity_mentions VALUES(2329,'WebSphere Commerce Suite (WCS)',2,234,'others'); -INSERT INTO entity_mentions VALUES(2330,'WebSphere Commerce',2,234,'others'); -INSERT INTO entity_mentions VALUES(2331,'WMB 6.1',2,235,'others'); -INSERT INTO entity_mentions VALUES(2332,'WebSphere Message Broker v6.0',2,235,'others'); -INSERT INTO entity_mentions VALUES(2333,'WebSphere Message Broker',2,235,'others'); -INSERT INTO entity_mentions VALUES(2334,'WebSphere Portal Version 6.1',8,286,'others'); -INSERT INTO entity_mentions VALUES(2335,'WebSphere Portal Enable Limited Use 6.1',8,286,'others'); -INSERT INTO entity_mentions VALUES(2336,'WebSphere Portal Server 6.0',8,286,'others'); -INSERT INTO entity_mentions VALUES(2337,'WebSphere Portal Enable 6.1',8,286,'others'); -INSERT INTO entity_mentions VALUES(2338,'WebSphere Portal Extend 6.1',8,286,'others'); -INSERT INTO entity_mentions VALUES(2339,'WebSphere Portal Server',8,286,'others'); -INSERT INTO entity_mentions VALUES(2340,'WebSphere Portal Limited Use 6.1',8,286,'others'); -INSERT INTO entity_mentions VALUES(2341,'WebSphere Portal Extend Limited Use 6.1',8,286,'others'); -INSERT INTO entity_mentions VALUES(2342,'Websphere Process Server',8,287,'others'); -INSERT INTO entity_mentions VALUES(2343,'Websphere Process Server 8.5',8,287,'others'); -INSERT INTO entity_mentions VALUES(2344,'Wherescape Red',2,236,'others'); -INSERT INTO entity_mentions VALUES(2345,'Windchill 11.1',2,237,'others'); -INSERT INTO entity_mentions VALUES(2346,'Windchill',2,237,'others'); -INSERT INTO entity_mentions VALUES(2347,'windows nt',6,580,'others'); -INSERT INTO entity_mentions VALUES(2348,'Windows',6,580,'others'); -INSERT INTO entity_mentions VALUES(2349,'Windows OS: Windows NT',6,580,'others'); -INSERT INTO entity_mentions VALUES(2350,'Windows NT 6.1 Service Pack 1',6,580,'others'); -INSERT INTO entity_mentions VALUES(2351,'Windows NT 6.1',6,580,'others'); -INSERT INTO entity_mentions VALUES(2352,'Windows NT 4.0',6,580,'others'); -INSERT INTO entity_mentions VALUES(2353,'Microsoft Windows NT 6.1',6,580,'others'); -INSERT INTO entity_mentions VALUES(2354,'Window',6,580,'others'); -INSERT INTO entity_mentions VALUES(2355,'Microsoft Windows NT 4.0',6,580,'others'); -INSERT INTO entity_mentions VALUES(2356,'WINDOWS6.1.7601',6,580,'others'); -INSERT INTO entity_mentions VALUES(2357,'Windows NT 6.1Windows NT 6.1',6,580,'others'); -INSERT INTO entity_mentions VALUES(2358,'Windows Indexing Service',2,238,'others'); -INSERT INTO entity_mentions VALUES(2359,'IIS Index Search Server',2,238,'others'); -INSERT INTO entity_mentions VALUES(2360,'WTS',2,239,'others'); -INSERT INTO entity_mentions VALUES(2361,'Windows Terminal Server',2,239,'others'); -INSERT INTO entity_mentions VALUES(2362,'Windows Terminal Server (WTS)',2,239,'others'); -INSERT INTO entity_mentions VALUES(2363,'Windows 7 Standard',6,451,'others'); -INSERT INTO entity_mentions VALUES(2364,'WINDOWS 10 SERVER STANDARD EDITION X64',6,451,'others'); -INSERT INTO entity_mentions VALUES(2365,'Microsoft Windows 7 (64-bit)',6,451,'others'); -INSERT INTO entity_mentions VALUES(2366,'Microsoft Windows XP Professional (32-bit)',6,451,'others'); -INSERT INTO entity_mentions VALUES(2367,'Windows 7 Professional x64',6,451,'others'); -INSERT INTO entity_mentions VALUES(2368,'Microsoft Microsoft Windows Entreprise',6,451,'others'); -INSERT INTO entity_mentions VALUES(2369,'Microsoft Windows 2000',6,451,'others'); -INSERT INTO entity_mentions VALUES(2370,'Microsoft Windows 10',6,451,'others'); -INSERT INTO entity_mentions VALUES(2371,'MS Microsoft Windows 7',6,451,'others'); -INSERT INTO entity_mentions VALUES(2372,'Microsoft Windows 7 Professional',6,451,'others'); -INSERT INTO entity_mentions VALUES(2373,'Microsoft Microsoft Windows 7 Enterprise',6,451,'others'); -INSERT INTO entity_mentions VALUES(2374,'Microsoft Windows 10 Enterprise',6,451,'others'); -INSERT INTO entity_mentions VALUES(2375,'Win Desktop',6,451,'others'); -INSERT INTO entity_mentions VALUES(2376,'Windows 10 Pro',6,451,'others'); -INSERT INTO entity_mentions VALUES(2377,'Windows 10',6,451,'others'); -INSERT INTO entity_mentions VALUES(2378,'Windows 7 Ultimate',6,451,'others'); -INSERT INTO entity_mentions VALUES(2379,'Microsoft Windows 8 (64-bit)',6,451,'others'); -INSERT INTO entity_mentions VALUES(2380,'Microsoft Windows XP',6,451,'others'); -INSERT INTO entity_mentions VALUES(2381,'Windows 10 Enterprise',6,451,'others'); -INSERT INTO entity_mentions VALUES(2382,'Windows XP',6,451,'others'); -INSERT INTO entity_mentions VALUES(2383,'Windows 10 Professional',6,451,'others'); -INSERT INTO entity_mentions VALUES(2384,'Windows 7',6,451,'others'); -INSERT INTO entity_mentions VALUES(2385,'Microsoft Windows 10 (64-bit)',6,451,'others'); -INSERT INTO entity_mentions VALUES(2386,'Win 7',6,451,'others'); -INSERT INTO entity_mentions VALUES(2387,'windowsxp',6,451,'others'); -INSERT INTO entity_mentions VALUES(2388,'Microsoft Windows Unknown',6,451,'others'); -INSERT INTO entity_mentions VALUES(2389,'Windows 7 Enterprise',6,451,'others'); -INSERT INTO entity_mentions VALUES(2390,'Windows XP Professional',6,451,'others'); -INSERT INTO entity_mentions VALUES(2391,'Windows 7 Professional',6,451,'others'); -INSERT INTO entity_mentions VALUES(2392,'Window XP',6,451,'others'); -INSERT INTO entity_mentions VALUES(2393,'Microsoft Windows 7 Enterprise',6,451,'others'); -INSERT INTO entity_mentions VALUES(2394,'Microsoft Windows 7 - SOE',6,451,'others'); -INSERT INTO entity_mentions VALUES(2395,'Windows 7 Enterprise Edition',6,451,'others'); -INSERT INTO entity_mentions VALUES(2396,'Windows 8',6,451,'others'); -INSERT INTO entity_mentions VALUES(2397,'Microsoft Windows 7',6,451,'others'); -INSERT INTO entity_mentions VALUES(2398,'Microsoft Windows 7 (32-bit)',6,451,'others'); -INSERT INTO entity_mentions VALUES(2399,'Windows Embedded Standard 7',6,451,'others'); -INSERT INTO entity_mentions VALUES(2400,'Win10',6,451,'others'); -INSERT INTO entity_mentions VALUES(2401,'Windows 2003',6,451,'others'); -INSERT INTO entity_mentions VALUES(2402,'Windows Server 2012 R9',6,452,'others'); -INSERT INTO entity_mentions VALUES(2403,'Windows 2003 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2404,'Windows 2008 Enterprise R2 x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2405,'Windows Server 2003 SE x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2406,'Microsoft Windows Server 2008 R2 Standard Service Pack 1, 64-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2407,'WINDOWS SERVER 2004',6,452,'others'); -INSERT INTO entity_mentions VALUES(2408,'WINDOWS 2008R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2409,'Microsoft Windows Server 2008 Standard Editio',6,452,'others'); -INSERT INTO entity_mentions VALUES(2410,'MICROSOFT WINDOWS NT 2003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2411,'Windows Server 2008 R2 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2412,'Windows Server 2012 R3',6,452,'others'); -INSERT INTO entity_mentions VALUES(2413,'WINDOWS 2003 R2 SERVER STANDARD EDITION',6,452,'others'); -INSERT INTO entity_mentions VALUES(2414,'Windows Server 28 - i386',6,452,'others'); -INSERT INTO entity_mentions VALUES(2415,'Microsoft Microsoft Windows Server 2016 Datacenter',6,452,'others'); -INSERT INTO entity_mentions VALUES(2416,'Microsoft(R) Windows(R) Server 2003, Enterprise Edition Service Pack 2, 32-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2417,'Windows Server 2008 Enterprise x64 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2418,'Windows Server 2016',6,452,'others'); -INSERT INTO entity_mentions VALUES(2419,'Microsoft - Windows server 2012 - R2 - Service Pack 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2420,'Microsoft(R) Windows(R) Server 2003, Standard Edition R2 Service Pack 2, 32-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2421,'Microsoft Windows Server 2008 R2 Standard x64 Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2422,'WINDOWS6.1.7601 Server 2008 R2 Ent x64 SP 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2423,'Windows Server 2012 R2 Standard (Core)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2424,'WINDOWS 2008 R2 SERVER STANDARD EDITION X64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2425,'Windows Server 2012 R26',6,452,'others'); -INSERT INTO entity_mentions VALUES(2426,'Microsoft(R) Windows(R) Server 2003 Standard x64 Edition R2 Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2427,'Windows 2008 Enterprise 32-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2428,'Microsoft Windows Server 2003 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2429,'Windows Server 2012 R2 Std',6,452,'others'); -INSERT INTO entity_mentions VALUES(2430,'Windows 2003 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2431,'Windows 2008 R2 Enterprise 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2432,'Windows Server 2012 R2 Standard 64 bit Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2433,'Microsoft Windows Server 2003 Enterprise Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2434,'Microsoft Windows Server 2000 Advanced',6,452,'others'); -INSERT INTO entity_mentions VALUES(2435,'Microsoft Windows Server 2012 R2 St',6,452,'others'); -INSERT INTO entity_mentions VALUES(2436,'Windows 2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2437,'Windows 2012 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2438,'Windows Server 2008 R2 (64 bits)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2439,'Windows X-Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2440,'Windows 2008 R2 Standard 6.1.7601 Service Pack 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2441,'Windows Server 2003 Standard (32-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2442,'Windows 2008 Standard x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2443,'Microsoft Windows Server 2008 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2444,'Microsoft Windows Storage Server 2012 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2445,'Windows Server 2003 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2446,'Windows 2012 R2 Standard 64-Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2447,'Windows Server 212 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2448,'Windows Server 2012 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2449,'Windows Server 2012 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2450,'Windows Server 2017',6,452,'others'); -INSERT INTO entity_mentions VALUES(2451,'Windows Server 2000 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2452,'Windows Server 2003 Enterprise R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2453,'Windows Server 2003 SP2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2454,'Microsoft Windows 2000 Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2455,'w2k12',6,452,'others'); -INSERT INTO entity_mentions VALUES(2456,'WINDOWS 2013',6,452,'others'); -INSERT INTO entity_mentions VALUES(2457,'WINDOWS 2016 SE 64 BIT',6,452,'others'); -INSERT INTO entity_mentions VALUES(2458,'Windows Server 2008 R2 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2459,'Microsoft - Windows 2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2460,'Microsoft Windows Server 2016',6,452,'others'); -INSERT INTO entity_mentions VALUES(2461,'Microsoft Windows Server 2000 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2462,'Windows Server 2012 R12',6,452,'others'); -INSERT INTO entity_mentions VALUES(2463,'Window Server 2003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2464,'WINDOWS SERVER 2008 ENTERPRISE X64 6.0',6,452,'others'); -INSERT INTO entity_mentions VALUES(2465,'Windows server 2008R2 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2466,'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition R2 Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2467,'MICROSOFT WINDOWS 2008 TPM',6,452,'others'); -INSERT INTO entity_mentions VALUES(2468,'Microsoft Windows Server 2012 Standardx64 Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2469,'MICROSOFT WINDOWS STD 2008',6,452,'others'); -INSERT INTO entity_mentions VALUES(2470,'Microsoft(R) Windows(R) Server 2003, Standard Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2471,'Windows Server 2012 R23',6,452,'others'); -INSERT INTO entity_mentions VALUES(2472,'WINDOWS 6.3.9600 Server 2012 R2 Std x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2473,'Windows 2008 R2 Standard 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2474,'Windows Server 2008 SP1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2475,'Windows server 2008 R2 standard Service Pack1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2476,'MICROSOFT WINDOWS STD 2008 TPM',6,452,'others'); -INSERT INTO entity_mentions VALUES(2477,'Microsoft Windows Server 2008 Standard Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2478,'Windows 2012 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2479,'MICROSOFT WINDOWS NT 2003 ENT',6,452,'others'); -INSERT INTO entity_mentions VALUES(2480,'Windows Server 2012 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2481,'Windows Server 2016 Standard 64 bit Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2482,'MICROSOFT WINDOWS 2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2483,'Windows Server 2003 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2484,'Windows 2003 Standard5.2.3790',6,452,'others'); -INSERT INTO entity_mentions VALUES(2485,'Windows Server 2012 R4',6,452,'others'); -INSERT INTO entity_mentions VALUES(2486,'Windows Server 2012 R7',6,452,'others'); -INSERT INTO entity_mentions VALUES(2487,'Windows Server 2012 R17',6,452,'others'); -INSERT INTO entity_mentions VALUES(2488,'Windows 2012 R',6,452,'others'); -INSERT INTO entity_mentions VALUES(2489,'Windows Server 2012 R8',6,452,'others'); -INSERT INTO entity_mentions VALUES(2490,'WINDOWS SERVER 2012 R2 DATACENTER',6,452,'others'); -INSERT INTO entity_mentions VALUES(2491,'Microsoft Windows Server 2003 R2 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2492,'Windows 2008 Enterprise 32 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2493,'MICROSOFT WINDOWS 2008 ENT',6,452,'others'); -INSERT INTO entity_mentions VALUES(2494,'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2495,'Windows 2012 R2 Standard 6.3.9600',6,452,'others'); -INSERT INTO entity_mentions VALUES(2496,'Windows 2000 Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2497,'Windows Server 2012 R20',6,452,'others'); -INSERT INTO entity_mentions VALUES(2498,'Windows Server 2000',6,452,'others'); -INSERT INTO entity_mentions VALUES(2499,'Windows Server 2003 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2500,'Windows Server 2008 Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2501,'Windows 2016 Datacenter',6,452,'others'); -INSERT INTO entity_mentions VALUES(2502,'Microsoft(R) Windows(R) Server 2003, Standard Edition Service Pack 2, 32-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2503,'Microsoft Windows Server 2016 Datacenter',6,452,'others'); -INSERT INTO entity_mentions VALUES(2504,'WINDOWS SERVER 2008 R2 STANDARD 6.1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2505,'Microsoft - Windows Server 2008 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2506,'Microsoft Windows Server 2012 (64-bit) - Server 2012 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2507,'Microsoft Windows Server 2016 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2508,'Windows Server 2008 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2509,'Windows 2016 Datacenter10.0.14393',6,452,'others'); -INSERT INTO entity_mentions VALUES(2510,'Windows Server 2008 64-Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2511,'windows server 2008 r2 ent',6,452,'others'); -INSERT INTO entity_mentions VALUES(2512,'Windows Server 212',6,452,'others'); -INSERT INTO entity_mentions VALUES(2513,'windows6.3.9600',6,452,'others'); -INSERT INTO entity_mentions VALUES(2514,'Windows 2012 R2 Standard 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2515,'Microsoft Windows Server 2000 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2516,'windows6.3.9600 server 2012 r2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2517,'Windows 2008 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2518,'Microsoft Microsoft Windows Server 2016 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2519,'Windows 2003 Server Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2520,'Windows Server 2012 R16',6,452,'others'); -INSERT INTO entity_mentions VALUES(2521,'Window server 2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2522,'Microsoft Windows Server 2003 Enterprise Edition Version 5.2.3790 [Build 3790]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2523,'Windows 2003 Server R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2524,'Windows Server 2012 R21',6,452,'others'); -INSERT INTO entity_mentions VALUES(2525,'Microsoft Windows Server 2003 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2526,'Windows Server 2012 R6',6,452,'others'); -INSERT INTO entity_mentions VALUES(2527,'Windows Server 2012 R27',6,452,'others'); -INSERT INTO entity_mentions VALUES(2528,'Windows 2008 Standard without Hyper-V6.0.6003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2529,'WINDOWS SERVER 2012 R2 - Server 2012 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2530,'Windows 2008 R2 Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2531,'Microsoft Windows Server 2003 Standard (32-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2532,'Windows 2012 R2 Datacenter',6,452,'others'); -INSERT INTO entity_mentions VALUES(2533,'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition R2 Service Pack 2, 64-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2534,'Windows Server 2018',6,452,'others'); -INSERT INTO entity_mentions VALUES(2535,'Windows 2008 Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2536,'WINDOWS6.3.9600 Server 2012 R2 DC x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2537,'Windows 2008 Standard 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2538,'WINDOWS 6.1.7601 Server 2008 R2 Ent x64 SP 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2539,'WINDOWS SERVER 2012 R2 DATACENTER 6.3',6,452,'others'); -INSERT INTO entity_mentions VALUES(2540,'Microsoft Windows Server 2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2541,'Windows Server 2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2542,'Windows server Standard SP2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2543,'WINDOWS 2003 R2 SERVER ENTERPRISE EDITION',6,452,'others'); -INSERT INTO entity_mentions VALUES(2544,'Windows 2000',6,452,'others'); -INSERT INTO entity_mentions VALUES(2545,'W2K8R2 Standard 64 BIT',6,452,'others'); -INSERT INTO entity_mentions VALUES(2546,'Windows Server 2008 R2 Datacenter',6,452,'others'); -INSERT INTO entity_mentions VALUES(2547,'Windows 2008 Standard6.0.6003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2548,'Windows2008 R2 Enterprise 64bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2549,'WINDOWS 2012 R2 SERVER STANDARD EDITION X64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2550,'Windows Server 2000 Professional',6,452,'others'); -INSERT INTO entity_mentions VALUES(2551,'Microsoft Windows Server 2008 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2552,'WINDOWS SERVER 2003 R2 ENTERPRISE 5.2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2553,'Win2008R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2554,'Microsoft Windows Server 2003 Web Edition (32-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2555,'Windows 2008 Standard 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2556,'Microsoft Windows Server 2008 R2 Enterprise Version 6.1.7601 [Build 7601]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2557,'Windows Server 2003 Appliance',6,452,'others'); -INSERT INTO entity_mentions VALUES(2558,'Windows server 2012 R2 Standared',6,452,'others'); -INSERT INTO entity_mentions VALUES(2559,'Windows 2008 ENT R2 (64 bits)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2560,'Windows Server 2003 (32-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2561,'Microsoft Windows Server 2003 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2562,'WIN2008R2 6.1.7601',6,452,'others'); -INSERT INTO entity_mentions VALUES(2563,'Microsoft Windows Server 2012 R2 Datacenter',6,452,'others'); -INSERT INTO entity_mentions VALUES(2564,'microsoft windows std 2012 tpm',6,452,'others'); -INSERT INTO entity_mentions VALUES(2565,'Windows Server 2012 R2 Standardx64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2566,'microsoft windows 2008',6,452,'others'); -INSERT INTO entity_mentions VALUES(2567,'Microsoft Windows Server 2016 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2568,'Windows 2008 Standard 32 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2569,'Microsoft Windows 2008 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2570,'Microsoft Windows 2000 Server Service Pack 4',6,452,'others'); -INSERT INTO entity_mentions VALUES(2571,'Microsoft Windows Server 2003 Enterprise x64 Edition Version 5.2.3790 [Build 3790]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2572,'Microsoft Windows Storage Server 2012 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2573,'Microsoft Windows Server 2003 Standard x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2574,'Window2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2575,'Microsoft Windows NT Server Version 4.0.1381 [Build 1381]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2576,'Windows Server 2003 Ent',6,452,'others'); -INSERT INTO entity_mentions VALUES(2577,'Windows Server 2000 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2578,'Windows 2008 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2579,'Microsoft Windows Server 2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2580,'Microsoft Windows Server 2003 Standard Edition Version 5.2.3790 [Build 3790]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2581,'Windows Server 2003;',6,452,'others'); -INSERT INTO entity_mentions VALUES(2582,'WS03',6,452,'others'); -INSERT INTO entity_mentions VALUES(2583,'WINDOWS 6.0.6002 Server 2008 Ent x64 SP 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2584,'Windows 2008 Enterprise x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2585,'Microsoft Windows Server 2003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2586,'Windows Server 2008 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2587,'Windows Server 2008 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2588,'windows server 2008 r2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2589,'Windows 2008 R2 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2590,'Windows Server 2003 Std 32-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2591,'Windows 2008 R2 Standard 64bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2592,'Microsoft Windows Server 2008 (32-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2593,'MS WINDOWS SERVER 08',6,452,'others'); -INSERT INTO entity_mentions VALUES(2594,'Microsoft Windows 2003 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2595,'Windows Server 2012 R25',6,452,'others'); -INSERT INTO entity_mentions VALUES(2596,'MICROSOFT WINDOWS NT 2003 TPM',6,452,'others'); -INSERT INTO entity_mentions VALUES(2597,'Win Server 2008',6,452,'others'); -INSERT INTO entity_mentions VALUES(2598,'Windows 2003 R2 Standard 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2599,'WINDOWS 5.2.3790 Server 2003 Ent SP 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2600,'WIN2014',6,452,'others'); -INSERT INTO entity_mentions VALUES(2601,'Windows Server 2012 R19',6,452,'others'); -INSERT INTO entity_mentions VALUES(2602,'Microsoft Windows Server 2012 R2 Standard Version 6.3.9600 [Build 9600]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2603,'Windows Server 2008 R2 Ent 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2604,'Win 2012 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2605,'Microsoft Windows Server 2008 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2606,'WINDOWS 6.3.9600 Server 2012 R2 DC x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2607,'Windows Server 2012 R24',6,452,'others'); -INSERT INTO entity_mentions VALUES(2608,'Win Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2609,'Windows 2008 Standard R2 x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2610,'Windows Server 2008 R2 Enterprise x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2611,'Windows server 2008 Dual processor Intel Xeon x5660 @2.80 GHz 6196 MB memory installed',6,452,'others'); -INSERT INTO entity_mentions VALUES(2612,'Windows2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2613,'Windows 2008 R2 Standard6.1.7601',6,452,'others'); -INSERT INTO entity_mentions VALUES(2614,'Windows 2016',6,452,'others'); -INSERT INTO entity_mentions VALUES(2615,'Windows 2008 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2616,'Windows Server 2008 R2 64Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2617,'Windows Server 2012 R14',6,452,'others'); -INSERT INTO entity_mentions VALUES(2618,'Windows Storage Server 2008 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2619,'Windows Server 2008 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2620,'Microsoft Windows Server 2003 (32-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2621,'Windows OS 2008 Server R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2622,'Microsoft Microsoft Windows Server 2008 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2623,'Windows Server 28 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2624,'WINDOWS 2003 SERVER ENTERPRISE EDITION',6,452,'others'); -INSERT INTO entity_mentions VALUES(2625,'Microsoft Windows Server 2003 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2626,'Windows Server 2008 (32-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2627,'Windows Server 2003 Std 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2628,'Windows 2012 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2629,'Wintel',6,452,'others'); -INSERT INTO entity_mentions VALUES(2630,'Windows Server 2003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2631,'Windows Server 2003 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2632,'Microsoft Windows Server 2012 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2633,'Windows 2000 Standard Server SP4',6,452,'others'); -INSERT INTO entity_mentions VALUES(2634,'WINDOWS6.3.9600 Server 2012 R2 Std x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2635,'Microsoft Windows 2000 Server Version 5.0.2195 [Build 2195]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2636,'Microsoft Windows Server 2016 St',6,452,'others'); -INSERT INTO entity_mentions VALUES(2637,'WINDOWS SERVER 2008 ENTERPRISE 6.0',6,452,'others'); -INSERT INTO entity_mentions VALUES(2638,'Windows Server 2008 R2 Std',6,452,'others'); -INSERT INTO entity_mentions VALUES(2639,'Windows 2003 Enterprise5.2.3790',6,452,'others'); -INSERT INTO entity_mentions VALUES(2640,'WINDOWS 2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2641,'Windows 2008 R2 OS',6,452,'others'); -INSERT INTO entity_mentions VALUES(2642,'Microsoft Windows Server 2008 R2 Enterprise Service Pack 1, 64-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2643,'Windows Server 2008 Enterprise x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2644,'Windows 2003 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2645,'Windows 2008 R2 Enterprise6.1.7601',6,452,'others'); -INSERT INTO entity_mentions VALUES(2646,'Windows 2003 Standard 32 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2647,'WINDOWS SERVER 2003 APPLIANCE 5.2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2648,'Windows Server 2003 Std',6,452,'others'); -INSERT INTO entity_mentions VALUES(2649,'WS08R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2650,'Windows Storage Server 2012 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2651,'WINDOWS SERVER 2003 STANDARD 5.2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2652,'Windows 2008 Enterprise 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2653,'Microsoft Windows Server 2012 R2 for Microsoft Windows Server 2012 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2654,'Windows Server 2000 Advanced',6,452,'others'); -INSERT INTO entity_mentions VALUES(2655,'Microsoft Windows Server 2008 R2 Enterprise x64 Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2656,'WINDOWS 2008 R2 SERVER ENTERPRISE EDITION X64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2657,'Windows Server 2008 32-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2658,'Windows Server 2003 Web Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2659,'WINDOWS SERVER 2012 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2660,'Microsoft Windows 2012 R2 Server Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2661,'w2k8r2sp1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2662,'Microsoft Windows Server 2008 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2663,'Windows Server 2003 Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2664,'Microsoft Windows Server 2008 R2 Standa',6,452,'others'); -INSERT INTO entity_mentions VALUES(2665,'Win 2003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2666,'Windows Server 2012 R29',6,452,'others'); -INSERT INTO entity_mentions VALUES(2667,'Microsoft - Windows server 2008 - Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2668,'Microsoft Windows Server 2003 Enterprise x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2669,'Microsoft(R) Windows(R) Server 2003, Enterprise Edition R2 Service Pack 2, 32-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2670,'Windows 2012 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2671,'WINDOWS SERVER 2012 R2 STANDARD 6.3',6,452,'others'); -INSERT INTO entity_mentions VALUES(2672,'Windows Server 2008 Enterprise R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2673,'Microsoft Windows Server 2008 R2 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2674,'Windows 2008 R2 Standard 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2675,'Microsoft Windows Server 2008 R2 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2676,'Windows 2003 Enterprise 32-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2677,'Microsoft - Microsoft Windows Server 2012 for Microsoft Windows Server 2012 Standard 6.2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2678,'Windows 2012 Storage R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2679,'Windows server 2008 Dual processor Intel Xeon x5660 @2.80 GHz 4096 MB memory installed',6,452,'others'); -INSERT INTO entity_mentions VALUES(2680,'Microsoft - Windows Server 2012 R2 - 6.3',6,452,'others'); -INSERT INTO entity_mentions VALUES(2681,'Windows Server 2012 R5',6,452,'others'); -INSERT INTO entity_mentions VALUES(2682,'Microsoft Windows Server 2012 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2683,'MICROSOFT WINDOWS NT 2003 ENT TPM',6,452,'others'); -INSERT INTO entity_mentions VALUES(2684,'Windows 2012 Server R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2685,'Windows 2016 Standard10.0.14393',6,452,'others'); -INSERT INTO entity_mentions VALUES(2686,'Microsoft Microsoft Windows Server 2012 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2687,'Windows Server 2003 Ent 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2688,'MICROSOFT WINDOWS 2003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2689,'WINDOWS 2003 SERVER ENTERPRISE EDITION X64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2690,'Windows 2012 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2691,'WINDOWS 2000 ADVANCED SERVER 5.0',6,452,'others'); -INSERT INTO entity_mentions VALUES(2692,'Microsoft Windows NT 4.0 Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2693,'Windows Server2012 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2694,'Win Server 2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2695,'Microsoft Windows Server 2008 Enterprise Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2696,'MICROSOFT WINDOWS STD 2012 TPM',6,452,'others'); -INSERT INTO entity_mentions VALUES(2697,'Windows 2003 Enterprise 32 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2698,'Windows 2008 Enterprise R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2699,'Windows 2008',6,452,'others'); -INSERT INTO entity_mentions VALUES(2700,'Microsoft Microsoft Windows 2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2701,'WINDOWS 2003 SERVER STANDARD EDITION',6,452,'others'); -INSERT INTO entity_mentions VALUES(2702,'windows server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2703,'Microsoft Windows Server 2008',6,452,'others'); -INSERT INTO entity_mentions VALUES(2704,'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2705,'Win Server 2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2706,'Windows 2016 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2707,'Microsoft Windows Server 2003 Standard (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2708,'Microsoft Windows Server 2008 R2 Standard. Service Pack 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2709,'Windows 2000 Server Service Pack 4',6,452,'others'); -INSERT INTO entity_mentions VALUES(2710,'Windows Server 2003 R2 Ent 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2711,'Windows Server 2012 r2 64bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2712,'Windows 2008 Enterprise 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2713,'Microsoft Windows Server 2012 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2714,'Windows Server 2012 R15',6,452,'others'); -INSERT INTO entity_mentions VALUES(2715,'Windows 2003 Standard 5.2.3790 Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2716,'Windows 2012 Standard6.2.9200',6,452,'others'); -INSERT INTO entity_mentions VALUES(2717,'MICROSOFT WINDOWS 2016 TPM',6,452,'others'); -INSERT INTO entity_mentions VALUES(2718,'Microsoft Windows Server 2016 or later (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2719,'Windows Storage Server 2012 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2720,'Windows 2003 Enterprise',6,452,'others'); -INSERT INTO entity_mentions VALUES(2721,'Windows Server 2016 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2722,'Microsoft Windows Server 2012 R2 Standardx64 Edition',6,452,'others'); -INSERT INTO entity_mentions VALUES(2723,'Windows 2008 R2 Enterprise 64-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2724,'Windows 2003 Server',6,452,'others'); -INSERT INTO entity_mentions VALUES(2725,'Windows 2012 R2 Standard6.3.9600',6,452,'others'); -INSERT INTO entity_mentions VALUES(2726,'Windows Server Threshold, 64-bit (Build 14393)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2727,'Windows Server 2012 R28',6,452,'others'); -INSERT INTO entity_mentions VALUES(2728,'Windows Server 2012 R13',6,452,'others'); -INSERT INTO entity_mentions VALUES(2729,'Microsoft Microsoft Windows Server 2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2730,'Microsoft Windows Server 2008 R2 Standard Service Pack 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2731,'Windows Server 2003 32-bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2732,'Microsoft Windows Server 2008 R2 Enterprise Version 6.1.7600 [Build 7600]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2733,'Microsoft - Windows server 2003 - Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2734,'Windows 2008 Standard R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2735,'MicrosoftWindows Server 2008 R2 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2736,'windows6.3',6,452,'others'); -INSERT INTO entity_mentions VALUES(2737,'Microsoft - Windows Server 2012 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2738,'Windows 2016 64 Bit',6,452,'others'); -INSERT INTO entity_mentions VALUES(2739,'Windows Server 2003 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2740,'Windows Server NT',6,452,'others'); -INSERT INTO entity_mentions VALUES(2741,'Windows Server 2012 Std',6,452,'others'); -INSERT INTO entity_mentions VALUES(2742,'Microsoft Windows Server 2008 R2 Standard Version 6.1.7601 [Build 7601]',6,452,'others'); -INSERT INTO entity_mentions VALUES(2743,'Windows Server 2012 R18',6,452,'others'); -INSERT INTO entity_mentions VALUES(2744,'Windows 2008 Enterprise6.0.6003',6,452,'others'); -INSERT INTO entity_mentions VALUES(2745,'Microsoft(R) Windows(R) Server 2003, Standard Edition Service Pack 1, 32-bit version',6,452,'others'); -INSERT INTO entity_mentions VALUES(2746,'Windows Server 2012 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2747,'Windows Server 2019 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2748,'windows server 2008 R2 SP1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2749,'Win 2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2750,'Win2012',6,452,'others'); -INSERT INTO entity_mentions VALUES(2751,'Win2012R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2752,'windows server threshold',6,452,'others'); -INSERT INTO entity_mentions VALUES(2753,'win2008',6,452,'others'); -INSERT INTO entity_mentions VALUES(2754,'Windows 2003 Standard x64',6,452,'others'); -INSERT INTO entity_mentions VALUES(2755,'Microsoft Windows Storage Server 2008 R2 Standard',6,452,'others'); -INSERT INTO entity_mentions VALUES(2756,'Windows Server 28',6,452,'others'); -INSERT INTO entity_mentions VALUES(2757,'Microsoft Windows Server 2008 Standard Service Pack 2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2758,'Windows Server 2008 R2 (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2759,'Windows Server 2008 R2 with Service Pack 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2760,'Windows Server 2012 R11',6,452,'others'); -INSERT INTO entity_mentions VALUES(2761,'Windows Server 2012 R10',6,452,'others'); -INSERT INTO entity_mentions VALUES(2762,'Windows Server 2012 R30',6,452,'others'); -INSERT INTO entity_mentions VALUES(2763,'WINDOWS 2016 STANDARD EDITION',6,452,'others'); -INSERT INTO entity_mentions VALUES(2764,'Windows Server 2012 R22',6,452,'others'); -INSERT INTO entity_mentions VALUES(2765,'Windows Server 2003 Standard (64-bit)',6,452,'others'); -INSERT INTO entity_mentions VALUES(2766,'WINDOWS SERVER 2008 R2 ENTERPRISE 6.1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2767,'Microsoft Windows Server 2008 R2 (64-bit) - Server 2008 R2',6,452,'others'); -INSERT INTO entity_mentions VALUES(2768,'Microsoft Windows Server 2008 R2 Enterprise Service Pack 1',6,452,'others'); -INSERT INTO entity_mentions VALUES(2769,'Windows Server 2008',6,452,'others'); -INSERT INTO entity_mentions VALUES(2770,'(WingArc) SVF 9.1',2,240,'others'); -INSERT INTO entity_mentions VALUES(2771,'WingArc SVF',2,240,'others'); -INSERT INTO entity_mentions VALUES(2772,'WinMerge',2,241,'others'); -INSERT INTO entity_mentions VALUES(2773,'WinMerge.org - WinMerge 2.14',2,241,'others'); -INSERT INTO entity_mentions VALUES(2774,'RARLab - WinRAR 5.31',2,242,'others'); -INSERT INTO entity_mentions VALUES(2775,'WinRAR',2,242,'others'); -INSERT INTO entity_mentions VALUES(2776,'WinSCP.net - WinSCP 5.11',2,243,'others'); -INSERT INTO entity_mentions VALUES(2777,'WinSCP',2,243,'others'); -INSERT INTO entity_mentions VALUES(2778,'Wise',2,244,'others'); -INSERT INTO entity_mentions VALUES(2779,'Wise Package Studio',2,244,'others'); -INSERT INTO entity_mentions VALUES(2780,'Wordpress',2,245,'others'); -INSERT INTO entity_mentions VALUES(2781,'XAMPP',2,246,'others'); -INSERT INTO entity_mentions VALUES(2782,'Xbase++',9,374,'others'); -INSERT INTO entity_mentions VALUES(2783,'Xbase++ v1.9',9,374,'others'); -INSERT INTO entity_mentions VALUES(2784,'ZAP BI Application Test Server',2,247,'others'); -INSERT INTO entity_mentions VALUES(2785,'ZAP BI Application Stage Server',2,247,'others'); -INSERT INTO entity_mentions VALUES(2786,'ZAP BI',2,247,'others'); -INSERT INTO entity_mentions VALUES(2787,'ZAP BI Application Server',2,247,'others'); -INSERT INTO entity_mentions VALUES(2788,'ZMQ',2,248,'others'); -INSERT INTO entity_mentions VALUES(2789,'ZeroMQ',2,248,'others'); -INSERT INTO entity_mentions VALUES(2790,'Zerto Vritual Appliance',2,249,'others'); -INSERT INTO entity_mentions VALUES(2791,'Zerto Virtual Replication',2,249,'others'); -INSERT INTO entity_mentions VALUES(2792,'Fedora',6,453,'others'); -INSERT INTO entity_mentions VALUES(2793,'Amazon Linux',6,454,'others'); -INSERT INTO entity_mentions VALUES(2794,'Oracle RTD',8,289,'others'); -INSERT INTO entity_mentions VALUES(2795,'Oracle Real-Time Decisions (RTD)',8,289,'others'); -INSERT INTO entity_mentions VALUES(2796,'Oracle Real-Time Decisions',8,289,'others'); -INSERT INTO entity_mentions VALUES(2797,'PowerHA',2,250,'others'); -INSERT INTO entity_mentions VALUES(2798,'IBM High Availability Cluster Multiprocessing',2,250,'others'); -INSERT INTO entity_mentions VALUES(2799,'IBM PowerHA',2,250,'others'); -INSERT INTO entity_mentions VALUES(2800,'IBM PowerHA SystemMirror',2,250,'others'); -INSERT INTO entity_mentions VALUES(2801,'Tivoli Netcool/OMNIbus',2,251,'others'); -INSERT INTO entity_mentions VALUES(2802,'OMNIbus',2,251,'others'); -INSERT INTO entity_mentions VALUES(2803,'Tivoli Netcool',2,251,'others'); -INSERT INTO entity_mentions VALUES(2804,'IBM ILOG Views',2,252,'others'); -INSERT INTO entity_mentions VALUES(2805,'ILOG Views',2,252,'others'); -INSERT INTO entity_mentions VALUES(2806,'IBM ILOG CPLEX',2,253,'others'); -INSERT INTO entity_mentions VALUES(2807,'ILOG CPLEX',2,253,'others'); -INSERT INTO entity_mentions VALUES(2808,'IBM ILOG Jviews',2,254,'others'); -INSERT INTO entity_mentions VALUES(2809,'ILOG Jviews',2,254,'others'); -INSERT INTO entity_mentions VALUES(2810,'IBM ILOG Elixir',2,255,'others'); -INSERT INTO entity_mentions VALUES(2811,'ILOG Elixir',2,255,'others'); -INSERT INTO entity_mentions VALUES(2812,'ILOG Supply Chain Apps',2,256,'others'); -INSERT INTO entity_mentions VALUES(2813,'IBM ILOG Supply Chain Apps',2,256,'others'); -INSERT INTO entity_mentions VALUES(2814,'ILOG Solver',2,257,'others'); -INSERT INTO entity_mentions VALUES(2815,'Websphere ILOG JRules BRMS',2,601,'others'); -INSERT INTO entity_mentions VALUES(2816,'ILOG JRules BRMS',2,601,'others'); -INSERT INTO entity_mentions VALUES(2817,'Application Lifecycle Management',1,511,'others'); -INSERT INTO entity_mentions VALUES(2818,'ALM',1,511,'others'); -INSERT INTO entity_mentions VALUES(2819,'Application Lifecycle Management (ALM)',1,511,'others'); -INSERT INTO entity_mentions VALUES(2820,'Assembler Language',1,512,'others'); -INSERT INTO entity_mentions VALUES(2821,'Assembler',1,512,'others'); -INSERT INTO entity_mentions VALUES(2822,'BMS',1,513,'others'); -INSERT INTO entity_mentions VALUES(2823,'Batch Management Software (BMS)',1,513,'others'); -INSERT INTO entity_mentions VALUES(2824,'Batch Management Software',1,513,'others'); -INSERT INTO entity_mentions VALUES(2825,'Business Object Reports',1,514,'others'); -INSERT INTO entity_mentions VALUES(2826,'Common Gateway Interface (CGI)',1,515,'others'); -INSERT INTO entity_mentions VALUES(2827,'Common Gateway Interface',1,515,'others'); -INSERT INTO entity_mentions VALUES(2828,'CGI',1,515,'others'); -INSERT INTO entity_mentions VALUES(2829,'Compopent Object Model',1,516,'others'); -INSERT INTO entity_mentions VALUES(2830,'COM',1,516,'others'); -INSERT INTO entity_mentions VALUES(2831,'Compopent Object Model (COM)',1,516,'others'); -INSERT INTO entity_mentions VALUES(2832,'Common Object Request Broker Architecture (CORBA)',1,517,'others'); -INSERT INTO entity_mentions VALUES(2833,'Common Object Request Broker Architecture',1,517,'others'); -INSERT INTO entity_mentions VALUES(2834,'CORBA',1,517,'others'); -INSERT INTO entity_mentions VALUES(2835,'CORBA Interface Definition Language (CORBA IDL)',1,518,'others'); -INSERT INTO entity_mentions VALUES(2836,'CORBA Interface Definition Language',1,518,'others'); -INSERT INTO entity_mentions VALUES(2837,'CORBA IDL',1,518,'others'); -INSERT INTO entity_mentions VALUES(2838,'Data Control Language',1,519,'others'); -INSERT INTO entity_mentions VALUES(2839,'DCL',1,519,'others'); -INSERT INTO entity_mentions VALUES(2840,'Database',1,520,'others'); -INSERT INTO entity_mentions VALUES(2841,'DB',1,520,'others'); -INSERT INTO entity_mentions VALUES(2842,'DB (database)',1,520,'others'); -INSERT INTO entity_mentions VALUES(2843,'EDI',1,521,'others'); -INSERT INTO entity_mentions VALUES(2844,'Electronic Data Interchange',1,521,'others'); -INSERT INTO entity_mentions VALUES(2845,'Electronic Data Interchange (EDI)',1,521,'others'); -INSERT INTO entity_mentions VALUES(2846,'Web Server',1,522,'others'); -INSERT INTO entity_mentions VALUES(2847,'Java-based Document Object Model for XML',1,523,'others'); -INSERT INTO entity_mentions VALUES(2848,'Java-based Document Object Model for XML (JDOM)',1,523,'others'); -INSERT INTO entity_mentions VALUES(2849,'JDOM',1,523,'others'); -INSERT INTO entity_mentions VALUES(2850,'Lightweight Directory Access Protocol',1,524,'others'); -INSERT INTO entity_mentions VALUES(2851,'LDAP',1,524,'others'); -INSERT INTO entity_mentions VALUES(2852,'Lightweight Directory Access Protocol (LDAP)',1,524,'others'); -INSERT INTO entity_mentions VALUES(2853,'Open Database Connectivity (ODBC)',1,525,'others'); -INSERT INTO entity_mentions VALUES(2854,'Open Database Connectivity',1,525,'others'); -INSERT INTO entity_mentions VALUES(2855,'ODBC',1,525,'others'); -INSERT INTO entity_mentions VALUES(2856,'Order Management System (OMS)',1,526,'others'); -INSERT INTO entity_mentions VALUES(2857,'Order Management System',1,526,'others'); -INSERT INTO entity_mentions VALUES(2858,'OMS',1,526,'others'); -INSERT INTO entity_mentions VALUES(2859,'Oracle Web Services',1,527,'others'); -INSERT INTO entity_mentions VALUES(2860,'Reporting Services',5,473,'others'); -INSERT INTO entity_mentions VALUES(2861,'REST',1,529,'others'); -INSERT INTO entity_mentions VALUES(2862,'Representational State Transfer',1,529,'others'); -INSERT INTO entity_mentions VALUES(2863,'Representational State Transfer (REST)',1,529,'others'); -INSERT INTO entity_mentions VALUES(2864,'Service-Oriented Architecture',1,530,'others'); -INSERT INTO entity_mentions VALUES(2865,'Service-Oriented Architecture (SOA)',1,530,'others'); -INSERT INTO entity_mentions VALUES(2866,'SOA',1,530,'others'); -INSERT INTO entity_mentions VALUES(2867,'Simple Object Access Protocol (SOAP)',1,531,'others'); -INSERT INTO entity_mentions VALUES(2868,'SOAP',1,531,'others'); -INSERT INTO entity_mentions VALUES(2869,'Simple Object Access Protocol',1,531,'others'); -INSERT INTO entity_mentions VALUES(2870,'Sturctured Query Language',1,572,'others'); -INSERT INTO entity_mentions VALUES(2871,'SQL',1,572,'others'); -INSERT INTO entity_mentions VALUES(2872,'YAML',1,533,'others'); -INSERT INTO entity_mentions VALUES(2873,'MVC',1,574,'others'); -INSERT INTO entity_mentions VALUES(2874,'Application Server',1,535,'others'); -INSERT INTO entity_mentions VALUES(2875,'Cloud',1,536,'others'); -INSERT INTO entity_mentions VALUES(2876,'Competency and Quality Assurance Server',1,537,'others'); -INSERT INTO entity_mentions VALUES(2877,'Device Provisioning Engines',1,538,'others'); -INSERT INTO entity_mentions VALUES(2878,'Device Provisioning Engines (DPE)',1,538,'others'); -INSERT INTO entity_mentions VALUES(2879,'DPE',1,538,'others'); -INSERT INTO entity_mentions VALUES(2880,'E-business solution',1,539,'others'); -INSERT INTO entity_mentions VALUES(2881,'Ebusiness solution',1,539,'others'); -INSERT INTO entity_mentions VALUES(2882,'ESB',1,540,'others'); -INSERT INTO entity_mentions VALUES(2883,'Enterprise Service Bus',1,540,'others'); -INSERT INTO entity_mentions VALUES(2884,'Enterprise Service Bus(ESB)',1,540,'others'); -INSERT INTO entity_mentions VALUES(2885,'File Server',1,541,'others'); -INSERT INTO entity_mentions VALUES(2886,'General Ledger',1,542,'others'); -INSERT INTO entity_mentions VALUES(2887,'HTTP client',1,543,'others'); -INSERT INTO entity_mentions VALUES(2888,'HTTP Server',1,522,'others'); -INSERT INTO entity_mentions VALUES(2889,'Integrated Safe System of Work',1,545,'others'); -INSERT INTO entity_mentions VALUES(2890,'ISSOW',1,545,'others'); -INSERT INTO entity_mentions VALUES(2891,'Integrated Safe System of Work (ISSOW)',1,545,'others'); -INSERT INTO entity_mentions VALUES(2892,'Internet Exchange Point - Full Stack (ixp-ft)',1,546,'others'); -INSERT INTO entity_mentions VALUES(2893,'IMAP',1,547,'others'); -INSERT INTO entity_mentions VALUES(2894,'Internet Message Access Protocol',1,547,'others'); -INSERT INTO entity_mentions VALUES(2895,'Internet Message Access Protocol (IMAP)',1,547,'others'); -INSERT INTO entity_mentions VALUES(2896,'JSON',1,548,'others'); -INSERT INTO entity_mentions VALUES(2897,'KVS Application Server',1,549,'others'); -INSERT INTO entity_mentions VALUES(2898,'KVS File Server',1,550,'others'); -INSERT INTO entity_mentions VALUES(2899,'KVS Proxy Server',1,551,'others'); -INSERT INTO entity_mentions VALUES(2900,'mainframe',1,552,'others'); -INSERT INTO entity_mentions VALUES(2901,'Manufacturing Execution System',1,553,'others'); -INSERT INTO entity_mentions VALUES(2902,'Manufacturing Execution System (MES)',1,553,'others'); -INSERT INTO entity_mentions VALUES(2903,'MES',1,553,'others'); -INSERT INTO entity_mentions VALUES(2904,'Mobile',1,554,'others'); -INSERT INTO entity_mentions VALUES(2905,'NonSQL',1,555,'others'); -INSERT INTO entity_mentions VALUES(2906,'SaaS',1,556,'others'); -INSERT INTO entity_mentions VALUES(2907,'Storage Area Network',1,557,'others'); -INSERT INTO entity_mentions VALUES(2908,'Storage Area Network (SAN)',1,557,'others'); -INSERT INTO entity_mentions VALUES(2909,'SAN',1,557,'others'); -INSERT INTO entity_mentions VALUES(2910,'Supplier Registration System',1,558,'others'); -INSERT INTO entity_mentions VALUES(2911,'Supplier Registration Application Server',1,558,'others'); -INSERT INTO entity_mentions VALUES(2912,'Supplier Registration System Application Server',1,558,'others'); -INSERT INTO entity_mentions VALUES(2913,'Virtual Appliance',1,559,'others'); -INSERT INTO entity_mentions VALUES(2914,'Webtop',1,560,'others'); -INSERT INTO entity_mentions VALUES(2915,'Proxy Server',1,561,'others'); -INSERT INTO entity_mentions VALUES(2916,'Application/Utility',1,562,'others'); -INSERT INTO entity_mentions VALUES(2917,'Utility',1,562,'others'); -INSERT INTO entity_mentions VALUES(2918,'SQLite',2,258,'others'); -INSERT INTO entity_mentions VALUES(2919,'OpenBSD',6,590,'others'); -INSERT INTO entity_mentions VALUES(2920,'z/VSE',6,591,'others'); -INSERT INTO entity_mentions VALUES(2921,'Z/Virtual System Environment',6,591,'others'); -INSERT INTO entity_mentions VALUES(2922,'VSE',6,591,'others'); -INSERT INTO entity_mentions VALUES(2923,'DOS/VSE',6,591,'others'); -INSERT INTO entity_mentions VALUES(2924,'Microsoft Disk Operating System',6,593,'others'); -INSERT INTO entity_mentions VALUES(2925,'Microsoft DOS',6,593,'others'); -INSERT INTO entity_mentions VALUES(2926,'MS DOS',6,593,'others'); -INSERT INTO entity_mentions VALUES(2927,'MS-DOS',6,593,'others'); -INSERT INTO entity_mentions VALUES(2928,'VME/B',6,595,'others'); -INSERT INTO entity_mentions VALUES(2929,'VME',6,595,'others'); -INSERT INTO entity_mentions VALUES(2930,'Virtual Machine Environment',6,595,'others'); -INSERT INTO entity_mentions VALUES(2931,'VME 2900',6,595,'others'); -INSERT INTO entity_mentions VALUES(2932,'OpenVME',6,595,'others'); -INSERT INTO entity_mentions VALUES(2933,'DOS/360',6,597,'others'); -INSERT INTO entity_mentions VALUES(2934,'Disk Operating System/360',6,597,'others'); -INSERT INTO entity_mentions VALUES(2935,'TPF',6,598,'others'); -INSERT INTO entity_mentions VALUES(2936,'z/TPF',6,598,'others'); -INSERT INTO entity_mentions VALUES(2937,'Transaction Processing Facility',6,598,'others'); -INSERT INTO entity_mentions VALUES(2938,'z/VM',6,608,'others'); -INSERT INTO entity_mentions VALUES(2939,'Berkeley Software Distribution',6,579,'others'); -INSERT INTO entity_mentions VALUES(2940,'BSD',6,579,'others'); -INSERT INTO entity_mentions VALUES(2941,'Berkeley System Distribution',6,579,'others'); -INSERT INTO entity_mentions VALUES(2942,'BSD Unix',6,579,'others'); -INSERT INTO entity_mentions VALUES(2943,'Berkeley Unix',6,579,'others'); -INSERT INTO entity_mentions VALUES(2944,'Wildfly',7,493,'others'); -INSERT INTO entity_mentions VALUES(2946,'Job Entry Subsystem 3',2,1,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2947,'Job Entry Subsystem',2,1,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2948,'Job Entry Subsystem 2/3',2,1,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2949,'JES2',2,1,'also_known_as'); -INSERT INTO entity_mentions VALUES(2950,'JES3',2,1,'also_known_as'); -INSERT INTO entity_mentions VALUES(2952,'Acrobat forms',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2953,'Adobe Acrobat 3D',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2954,'Adobe Acrobat Professional',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2955,'Acrobat Professional',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2956,'Adobe Acrobat Pro',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2957,'Acrobat 8',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2958,'Adobe Acrobat Capture',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2960,'Acrobat file',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2961,'Acrobat reader',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2962,'Adobe Reader X',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2963,'Acrobat 3D',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2964,'Adobe Reader LE',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2965,'Adobe acrobat',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2966,'Acrobat Pro',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2967,'Acrobat 7',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2968,'Adobe Acrobat 9.5.5',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2969,'Adobe reader',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2970,'Adobe Acrobat Viewer',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2971,'Acrobat Exchange',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2972,'Acrobat document',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2973,'Acroread',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2974,'AdobeR Reader',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2975,'Adobe Acrobat Distiller',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2976,'Acrobat PDFMaker 10.0 for Word',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2977,'Adobe Acrobat X',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2978,'Adobe Acrobat Reader DC',2,4,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2979,'Adobe Reader',2,4,'also_known_as'); -INSERT INTO entity_mentions VALUES(2981,'Ansible software',2,5,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2982,'Activemq',2,6,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2983,'ActiveMQ',2,6,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2984,'HBase',2,7,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2987,'Kafka Streams',2,9,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2988,'Kafka (software)',2,9,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2989,'Apache kafka',2,9,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2991,'Solr',2,11,'also_known_as'); -INSERT INTO entity_mentions VALUES(2992,'Subversion (vcs)',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2993,'Commit access',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2994,'Svn (vcs)',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2995,'Subverson',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2996,'Subversion branch',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2997,'Svn (software)',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(2999,'Sub Versioning',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3000,'Apache subversion',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3001,'Svn software',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3002,'Subversion branching',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3003,'SVN branch',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3004,'Subversion (program)',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3005,'Subversive branching',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3006,'Svn vcs',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3007,'Subversion (software)',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3008,'Svn (Unix)',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3009,'Subversion (Software)',2,12,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3010,'Asterisk operator',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3011,'Asterisk character',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3012,'Asterisks',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3013,'Asterisk (punctuation)',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3014,'Asterick',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3015,'Asterisked form',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3016,'Splat (pronouns)',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3017,'Heavy asterisk',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3018,'Asteract',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3019,'Astrick',2,14,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3020,'Bluebeam Revu',2,17,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3021,'BDE (Borland)',2,20,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3022,'Borland BDE',2,20,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3023,'ODAPI',2,20,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3024,'Eclipse BIRT',2,21,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3025,'BIRT Reports',2,21,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3026,'BIRT Report',2,21,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3027,'Advantage:Gen',2,22,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3028,'Cool:Gen',2,22,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3029,'COOLGen',2,22,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3030,'COOL:Gen',2,22,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3031,'Advantage Gen',2,22,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3032,'Coolgen',2,22,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3033,'Information Engineering Facility',2,22,'also_known_as'); -INSERT INTO entity_mentions VALUES(3035,'CA Panvalet',2,24,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3037,'TELON',2,25,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3038,'Chef (tool)',2,27,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3039,'Chef-Solo',2,27,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3040,'Chef Community Repository',2,27,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3041,'Chef software',2,27,'also_known_as'); -INSERT INTO entity_mentions VALUES(3042,'Citrix XenApp',2,30,'also_known_as'); -INSERT INTO entity_mentions VALUES(3044,'Citrix WinFrame',2,30,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3045,'Winframe',2,30,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3046,'OP3Nvoice',2,33,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3047,'Clarify - Op3nvoice',2,33,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3048,'Laboratory information system',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3049,'Laboratory Information Management System',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3050,'Laboratory informatics system',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3051,'Lims',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3052,'Laboratory Information Management Systems',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3053,'Lab information system',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3054,'Laboratory computer system',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3055,'Laboratory Information Management Software',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3056,'Laboratory Information System',2,35,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3057,'Cognos Inc.',2,36,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3059,'Macromedia ColdFusion MX',2,37,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3060,'ColdFusion MX',2,37,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3062,'Adobe cold fusion',2,37,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3063,'ColdFusion Components',2,37,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3064,'Cold Fusion programming language',2,37,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3065,'Abobe coldfusion',2,37,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3066,'ColdFusion programming language',2,37,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3067,'ColdFusion',2,37,'also_known_as'); -INSERT INTO entity_mentions VALUES(3068,'Macromedia ColdFusion',2,37,'also_known_as'); -INSERT INTO entity_mentions VALUES(3069,'Network Data Mover',2,40,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3072,'Crystal reports',2,42,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3073,'SAP Crystal Reports',2,42,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3074,'Report application server',2,42,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3076,'Db2',2,43,'also_known_as'); -INSERT INTO entity_mentions VALUES(3078,'IBM DB2 Express-C',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3079,'DB2/2',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3080,'DB2 Express',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3081,'SQLCA',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3082,'Ibm viper',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3083,'DATABASE 2',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3084,'IBM Db2',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3085,'Db2 for i',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3086,'DB2 DWE',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3087,'DB/2',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3088,'IBM PureQuery',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3089,'DB2 Everyplace',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3090,'PureQuery',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3092,'Db/2',2,43,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3094,'EMC Documentum',2,44,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3095,'Droopal',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3096,'Deanspace',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3097,'Drupal theming',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3098,'Droople',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3099,'CivicSpace',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3100,'Druscal',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3101,'Drupal Con',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3102,'DrupalCon',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3103,'Civic Space',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3104,'Drupla',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3105,'Durpal',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3106,'DeanSpace',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3107,'Druple',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3108,'Hack4Dean',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3109,'Civicspace',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3110,'Acquia Drupal',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3111,'Open Atrium',2,45,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3112,'Eclipse sdk',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3113,'Mylyn',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3114,'Java Eclipse',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3115,'Web Tools Platform',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3116,'Eclipse software',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3117,'Eclipse SDK',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3118,'Eclipse Kura',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3119,'Eclipse Classic',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3120,'Eclipse ganymede',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3121,'Eclipse Europa',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3122,'Eclipse (computing)',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3123,'Eclipse (platform)',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3124,'Eclipse IDE',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3125,'Java eclipse',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3126,'Yoxos OnDemand',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3127,'Eclipse java',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3128,'Yoxos',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3129,'Eclipse (IDE)',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3130,'Eclipse (SDK)',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3131,'Eclipse ide',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3132,'Eclipse (ide)',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3133,'Eclipse Galileo',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3134,'Eclipse platform',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3135,'Eclipse RCP',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3136,'Java Emitter Templates',2,46,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3137,'Eclipse ADT',2,46,'also_known_as'); -INSERT INTO entity_mentions VALUES(3140,'Filemaker',2,51,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3141,'FileMaker II',2,51,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3142,'Filemaker Pro',2,51,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3143,'FileMaker Server',2,51,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3144,'FilemakerPro',2,51,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3145,'Google chrome 5',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3146,'Google Chrome Beta',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3147,'Google chrome',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3148,'Google Chrome 12',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3149,'Chrome software',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3150,'Google Chrome 14',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3151,'Chrome (browser)',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3152,'Googlechrome',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3153,'Chrome Canary',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3154,'Google Chrome extension',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3155,'Google Chrome browser',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3156,'Google Chrome for IOS',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3157,'Chrome extension',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3158,'Extension (Google Chrome)',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3159,'Incognito mode',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3160,'Chrome browser',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3161,'Google Chrome for Android',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3162,'Google Chrome Extensions Gallery',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3163,'Google Chrome 4',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3164,'GChrome',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3165,'Google Browser',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3166,'Chrome google',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3167,'Chrome (software)',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3168,'Chrome (Google)',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3169,'Chrome web browser',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3170,'Google Chrome 13',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3171,'Google Chrome 11',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3172,'Google Chrome Canary',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3173,'Chrome Extensions',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3174,'Chromium (engine)',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3175,'GBrowser',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3176,'Chrome (web browser)',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3177,'Google Chrome for iOS',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3178,'Chrome for Android',2,55,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3180,'Pivotal Greenplum Database',2,56,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3181,'Greenplum database',2,56,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3182,'Hadoop distributed file system',2,57,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3183,'Hadoop Distributed Filesystem',2,57,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3184,'Hadoop YARN',2,57,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3185,'HDFS',2,57,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3186,'Amazon Elastic MapReduce',2,57,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3187,'Hadoop Distributed File System',2,57,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3188,'YARN',2,57,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3190,'NorCroft',2,59,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3191,'Norcroft compiler suite',2,59,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3192,'Norcroft C',2,59,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3193,'Norcroft compiler',2,59,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3194,'Norcroft',2,59,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3195,'Tivoli Endpoint Manager',2,62,'also_known_as'); -INSERT INTO entity_mentions VALUES(3196,'IBM Endpoint Manager',2,62,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3197,'Datastage',2,67,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3198,'IBM InfoSphere',2,67,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3199,'DataStage',2,67,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3200,'IBM WebSphere DataStage',2,67,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3202,'IBM WebSphere Message Broker',2,68,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3204,'IBM MobileFirst',2,72,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3205,'IBM WebSphere ILOG JRules',2,73,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3206,'Spectrum Scale',2,605,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3208,'General Parallel File System',2,605,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3209,'IBM General Parallel File System',2,605,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3210,'Vesta File System',2,605,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3211,'Adstar Distributed Storage Manager',2,604,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3213,'ADSM',2,604,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3214,'ADSTAR Distributed Storage Manager',2,604,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3215,'IBM Tivoli Storage Manager FastBack',2,604,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3216,'Distributed Storage Manager Client',2,604,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3217,'WebSphere Adapters',2,80,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3218,'MQ Series',2,81,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3220,'IBM Message Queue Interface',2,81,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3221,'Mqseries',2,81,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3222,'IBM WebSphere MQ',2,81,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3224,'WebSphere MQ',2,81,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3225,'MQSeries',2,81,'also_known_as'); -INSERT INTO entity_mentions VALUES(3226,'Hierarchical sequential access method',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3227,'IBM IMS',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3228,'Information Management System',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3229,'IMS DC',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3230,'IMS/DC',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3231,'HSAM (computing)',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3232,'Information management system',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3233,'Hierarchical Sequential Access Method',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3234,'IMS/DB',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3235,'IMS/TM',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3236,'IMS system',2,84,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3237,'WiZ',2,85,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3238,'Zip (software)',2,85,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3239,'Info-Zip',2,85,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3240,'InfoZip',2,85,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3242,'Berkeley Ingres QUEL',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3243,'IngresCorporation',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3244,'Ingres II',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3245,'Ingres Database',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3246,'University Ingres',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3247,'OpenIngres',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3248,'CA-Ingres',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3249,'Ingres database',2,88,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3250,'INGRES',2,88,'also_known_as'); -INSERT INTO entity_mentions VALUES(3252,'Lotus domino',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3253,'Notes Release 3.0',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3254,'Lotus Notes 3.0',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3255,'Lotus Notes Mail',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3256,'Lotus Notes 2.1',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3257,'Lotus Notes Release 3.0',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3258,'Lotus notes',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3259,'Eproductivity',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3260,'Notes 3.0',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3261,'Lodus notes',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3262,'Domino XML',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3263,'Lodus nodes',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3264,'Notes Release 2.1',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3265,'Lodus Nodes',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3266,'IBM Lotus Notes',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3267,'IBM Lotus Domino',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3268,'Notes Storage Facility',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3270,'Dominoblog',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3271,'Lodus Notes',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3272,'Lotus Notes Release 2.1',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3273,'Notes 2.1',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3274,'IBM iNotes Webmail Redirect',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3275,'Domino (software)',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3276,'HLC Domino',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3277,'HCL Notes',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3278,'EProductivity',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3279,'Notes Storage Format',2,93,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3281,'IBM Notes',2,93,'also_known_as'); -INSERT INTO entity_mentions VALUES(3282,'MaaS 360 (Software)',2,94,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3283,'Malwarebytes'' AntiMalware',2,95,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3284,'Malwarebytes'' Anti-Malware',2,95,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3285,'Malware Bytes',2,95,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3287,'Mark Logic',2,97,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3288,'MarkMail',2,97,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3289,'MarkLogic Corporation',2,97,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3290,'Mark logic',2,97,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3292,'Memory Cache Daemon',2,98,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3293,'Microsoft Access Development',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3294,'Ms access',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3295,'Ms Access',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3296,'Microsoft Access 2002',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3297,'Access 2002',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3298,'MS access',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3299,'Access 97 SR2',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3300,'Microsoft Access 2007',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3301,'Access 2',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3302,'Accdb',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3304,'MSAccess',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3305,'Office Access',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3306,'Microsoft Acces',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3307,'Access 97',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3308,'MSACCESS',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3309,'Microsoft access',2,99,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3310,'Microsoft Office Access',2,99,'also_known_as'); -INSERT INTO entity_mentions VALUES(3311,'Biztalk',2,100,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3312,'BizTalk',2,100,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3313,'BizTalk Server',2,100,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3314,'Microsoft Biztalk Server',2,100,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3315,'Axapta',2,101,'also_known_as'); -INSERT INTO entity_mentions VALUES(3316,'En''tegrate',2,101,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3317,'X++',2,101,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3318,'En''tegrate Software',2,101,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3319,'Dynamics AX',2,101,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3320,'MorphX',2,101,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3321,'System Management Server',2,102,'also_known_as'); -INSERT INTO entity_mentions VALUES(3323,'System center configuration manager',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3324,'System Centre Configuration Manager',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3325,'Systems Management Server',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3326,'System Center Configuration Manager',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3327,'AssetMetrix',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3328,'SCCM 2007',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3329,'MSSMS',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3330,'Microsoft Systems Management Server',2,102,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3331,'MS excel',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3332,'Excel (Microsoft)',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3333,'Excel macro',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3334,'Microsoft XL',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3335,'Excel function',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3337,'Microsoft excel file formats',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3338,'Microsoft excel',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3339,'Microsoft(r) Excel(r)',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3340,'XLW',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3341,'Ms Excel',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3342,'XLS files',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3343,'XLS file',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3344,'Microsoft Excel XP',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3345,'Ms excel',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3346,'Excel Viewer',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3347,'XLS FILE',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3348,'Microsoft Excel:mac',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3349,'Excel spreadsheet',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3350,'Microsoft Excel 95',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3351,'Microsoft Excel 2002',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3352,'Microsoft Excel 2003',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3353,'Excel 2007',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3354,'Microsoft Excel Viewer',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3355,'Microsoft Excel file format',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3356,'Excel Web App',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3357,'EXCEL',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3358,'Xlw',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3359,'Microsoft Excel 2004',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3360,'MICROSOFT EXCEL',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3361,'Excel table',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3362,'Excel 2003',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3363,'Excel VBA',2,103,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3364,'Microsoft Office Excel',2,103,'also_known_as'); -INSERT INTO entity_mentions VALUES(3367,'Office Excel',2,103,'also_known_as'); -INSERT INTO entity_mentions VALUES(3368,'MS Exchange Server',2,104,'also_known_as'); -INSERT INTO entity_mentions VALUES(3369,'Exchange email',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3370,'Exchange 2007',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3371,'Exchange Online',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3372,'Microsoft Exchange Client',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3373,'Exchange Server',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3374,'Cluster continuos replication',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3375,'Exchange 2010',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3376,'Microsoft Exchange 2013',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3377,'Microsoft Exchange Server 2013',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3378,'Microsoft Exchange server',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3379,'LinkAge Software',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3380,'Exchange Server 2007',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3381,'Exchange Server 2003',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3382,'Exchange 2013',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3383,'MS Exchange 2010 SP2',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3384,'Exchange Server 2013',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3385,'Cluster continuous replication',2,104,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3386,'Identity Lifecycle Manager',2,105,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3387,'Microsoft Office Infopath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3388,'Microsoft infoPath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3389,'Microsoft Infopath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3390,'Microsoft infopath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3391,'Infopath 2007',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3392,'Office Forms Server',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3393,'MS InfoPath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3394,'Infopath Form Services',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3395,'MS infoPath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3396,'Ms Infopath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3397,'Infopath Forms Services',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3399,'Microsoft InfoPath Filler',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3400,'InfoPath Forms Services',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3401,'Forms Server',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3402,'Infopath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3403,'Ms infoPath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3404,'InfoPath Form Services',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3405,'Infopass',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3406,'Ms infopath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3407,'Microsoft Office Forms Server',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3408,'Office InfoPath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3409,'MS infopath',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3410,'InfoPath forms services',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3411,'Microsoft Office InfoPath 2007',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3412,'Infopath forms services',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3413,'Microsoft InfoPath Designer',2,106,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3414,'Microsoft Office InfoPath',2,106,'also_known_as'); -INSERT INTO entity_mentions VALUES(3415,'XDocs',2,106,'also_known_as'); -INSERT INTO entity_mentions VALUES(3417,'MSIE',2,107,'also_known_as'); -INSERT INTO entity_mentions VALUES(3418,'Windows Internet Explorer',2,107,'also_known_as'); -INSERT INTO entity_mentions VALUES(3419,'MS IE',2,107,'also_known_as'); -INSERT INTO entity_mentions VALUES(3420,'Internetexplorer',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3421,'Microsoft IE',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3422,'Stopie',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3423,'Internut Exploder',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3424,'WinInet',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3425,'Internex',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3426,'Wininet',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3427,'Internet Exploder',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3428,'Iexplorer',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3429,'Features of internet explorer',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3430,'WinINET',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3431,'MicroSoft Internet Explorer',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3432,'Innerhtml',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3433,'Iexplore',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3434,'MSIE (web browser)',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3435,'Internet explorer',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3436,'Internet exploiter',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3437,'Internet Exploiter',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3438,'MS Internet Explorer',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3439,'InternetExplorer',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3440,'M.S.I.E.',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3441,'IE browser',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3442,'InnerHTML',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3443,'StopIE',2,107,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3444,'Microsoft Proxy Server',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3445,'Threat Management Gateway',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3446,'Internet Security and Acceleratoin Server',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3447,'Internet Security and Acceleration Server',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3449,'Internet Security and Acceleration',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3450,'MS Proxy Server',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3451,'ISA server',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3452,'Forefront Threat Management Gateway',2,108,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3454,'Forefront TMG',2,108,'also_known_as'); -INSERT INTO entity_mentions VALUES(3455,'Microsoft Internet Security and Acceleration Server',2,108,'also_known_as'); -INSERT INTO entity_mentions VALUES(3456,'MSMQ',2,109,'also_known_as'); -INSERT INTO entity_mentions VALUES(3457,'Microsoft Message Queue Server',2,109,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3458,'Microsoft Message Queue',2,109,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3459,'Visual Studio .NET',2,111,'also_known_as'); -INSERT INTO entity_mentions VALUES(3460,'Microsoft Visual Studio .NET',2,111,'also_known_as'); -INSERT INTO entity_mentions VALUES(3462,'Vs2010',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3463,'Visual Studio 97',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3464,'Microsoft Visual Studio 2008',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3465,'Data dude',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3466,'Visual Studio Shell',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3467,'Microsoft Development Environment',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3468,'Visual Studio .NET 2003',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3469,'VS2008',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3470,'LightSwitch',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3471,'Visual Studio Team Services',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3472,'Visual Studio 2017',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3473,'Microsoft visual studio',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3474,'Microsoft Visual Studio 2015',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3475,'Visual Studio Online',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3476,'Visual Studio 11',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3477,'DevBiz Business Solutions',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3478,'Visual Studio .NET 2005',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3479,'Visual Studio .NET 2002',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3480,'Visual Studio Test Professional',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3481,'VS2017',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3482,'Visual Studio 2019',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3483,'VS2010',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3484,'Microsoft Visual Studio Community',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3485,'Visual Studio.NET 2005',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3486,'Microsoft Visual Studio debugger',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3487,'MSDEV',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3488,'Visual Studio 2013',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3489,'Visual Studio Application Lifecycle Management',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3490,'Visual Studio Team Suite',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3491,'Visual studio',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3492,'VS6',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3493,'Microsoft Test professional',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3494,'Visual Studio 2015',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3495,'Azure DevOps Services',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3496,'Visual Studio 2010',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3497,'Microsoft visual studio 2010',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3498,'VS2005',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3499,'Visual Studio.NET',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3500,'VS 2005',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3501,'DXCore',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3502,'Visual Studio debugger',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3503,'Visual Studio Team Test',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3504,'MS Visual Studio',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3505,'RefactorPro',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3506,'Visual Studio Debugger',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3507,'VisualStudio',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3508,'Visual Studio LightSwitch',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3509,'Microsoft Orcas',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3510,'Visual Studio ALM',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3511,'Microsoft Visual Studio 2005',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3512,'Visual Studio 2005',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3513,'CodeView and the Visual Studio Debugger',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3514,'Visual Studio Orcas',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3515,'Visual Studio 2022',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3516,'Microsoft Test Professional',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3517,'Visual Studio 2008',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3518,'Microsoft Visual Studio Debugger',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3519,'Vs.net',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3520,'VS05',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3521,'Vs 2010',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3522,'Visual Studio 6.0',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3523,'Visual Studio Community',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3524,'VISUAL STUDIO 2008',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3525,'DevBiz',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3527,'Visual Studio 2012',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3528,'VS 2008',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3529,'Visual Studio Ultimate 2010',2,111,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3532,'Mongo db',2,116,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3533,'Mongodb',2,116,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3534,'Firefox (browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3535,'Firebird browser',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3536,'FireBird (browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3537,'Mozila Firefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3538,'Firefox minefield',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3539,'Minefield (trunk build)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3540,'FireFox (web browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3541,'Firebird (web browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3542,'Mozilla Phoenix',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3543,'Mozilla/browser',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3544,'Firefox (software)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3545,'Mozilla firefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3546,'M/b',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3547,'Phoenix web browser',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3548,'Firefox Aurora',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3549,'Mozilla Firerfox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3550,'Firebird (browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3551,'Mozilla''s Firefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3552,'MineField Browser',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3553,'Firefox (web browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3554,'Mozilla phoenix',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3555,'SpreadFirefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3556,'FireBird (web browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3557,'Mozzila Firefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3558,'FireFox (browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3559,'Mozilla Minefield',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3560,'Firefox esr',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3561,'Mozilla FireFox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3562,'Mozilla Firefox''s',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3563,'Mozilla firebird',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3564,'Mozff',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3565,'Mozilla firefox esr',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3566,'Firebird Web Browser',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3567,'Frefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3568,'Phoenix (browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3569,'Spread Firefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3570,'Forefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3571,'FireFox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3572,'Mozillafirefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3573,'Mozilla Fire Fox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3574,'Firefox Roadmap',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3575,'Firefox roadmap',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3576,'Firebird web browser',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3577,'Mozilla Firefox (software)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3578,'Mozilla Firefox ESR',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3579,'SpreadFireFox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3580,'Moz firefox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3581,'Firefox Browser',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3582,'Firefo',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3583,'Fire Fox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3584,'Mozilla FireBird',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3585,'Mozilla FX',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3586,'Firefox ESR',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3587,'Mozilla ff',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3588,'Phoenix (web browser)',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3589,'Fire fox',2,117,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3590,'Firefox web browser',2,117,'also_known_as'); -INSERT INTO entity_mentions VALUES(3591,'Firefox browser',2,117,'also_known_as'); -INSERT INTO entity_mentions VALUES(3592,'Mozilla Firebird',2,117,'also_known_as'); -INSERT INTO entity_mentions VALUES(3594,'MS-Office 365',2,119,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3598,'MS-SQL',2,581,'also_known_as'); -INSERT INTO entity_mentions VALUES(3600,'Sql Server 2000',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3601,'SQL Server 2017',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3602,'Sqlcmd',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3603,'SQL Server 2014 ISO',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3607,'Microsoft SQL Server 2008 R2',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3608,'Microsoft SQL server',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3610,'SQL Server 2014 CAB',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3611,'SQL Server 2008 R2',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3612,'Pubs (database)',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3614,'Microsoft SQL',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3616,'Microsoft Sql Server',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3617,'SQL 6.5',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3618,'Ms sql server',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3620,'Microsoft sql server',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3621,'Mssql',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3623,'SQL 7.0',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3624,'SQL Server 2019',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3625,'SQL Server 2005 Compact Edition',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3626,'SQL Server Compact 3.5',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3627,'Microsoft SQL Server Compact Edition',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3628,'SQL Server Compact Edition Database File',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3629,'Sql mobile',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3630,'SQL Server Compact Edition',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3631,'SQL Mobile',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3632,'SQLCE',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3633,'SQL Server Mobile',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3634,'SQLce',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3635,'SQL Server Compact 2005 Edition',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3636,'SQL Server Mobile Edition',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3637,'SQL Server CE',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3638,'Microsoft SQL Server Mobile Edition',2,121,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3639,'Microsoft SQL Server Compact',2,121,'also_known_as'); -INSERT INTO entity_mentions VALUES(3640,'SQL CE',2,121,'also_known_as'); -INSERT INTO entity_mentions VALUES(3641,'My sql',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3642,'MySQL server',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3643,'Mysql 5.0',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3644,'MySQL Fabric',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3645,'Mysqldump',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3646,'MySql',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3648,'MySQL HA',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3649,'SunSQL',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3650,'Libmysqld',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3651,'Mysql-server',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3652,'Mysql',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3653,'Mqsql',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3654,'My Structured Query Language',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3655,'My SQL',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3656,'MySql 5',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3657,'Mysql 5.1',2,122,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3658,'Neo Technology',2,123,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3660,'Nix language',2,125,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3661,'Nix Package Manager',2,125,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3662,'Openldap',2,126,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3664,'PrivateVPN',2,128,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3665,'Openvon',2,128,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3666,'Openvpn',2,128,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3667,'Open VPN',2,128,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3668,'ADF Faces',2,130,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3670,'Oracle HTML DB',2,131,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3671,'Html db',2,131,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3672,'HTML DB',2,131,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3674,'Oracle XML Publisher',2,132,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3676,'Oracle11i',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3677,'Oracle8i',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3678,'Oracle (software)',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3679,'Oracle (database)',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3680,'Ora92',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3681,'Oracle 11i',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3682,'Oracle express',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3683,'Oracle XE',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3684,'Oracle (DBMS)',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3685,'Oracle database',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3686,'Instantclient',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3687,'Oracle db',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3689,'Oracle R Enterprise',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3690,'Oracle9i',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3691,'Oracle11g',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3692,'Oracle DBMS',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3693,'Oracle8',2,134,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3694,'Oracle RDBMS',2,134,'also_known_as'); -INSERT INTO entity_mentions VALUES(3695,'Oracle Designer 2000',2,135,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3698,'Oracle Hyperion|Hyperion Planning',2,139,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3699,'Oracle Net',2,140,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3700,'Real application clusters',2,141,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3702,'Oracle soa',2,145,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3705,'Timesten',2,147,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3706,'Smallbase',2,147,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3707,'TimesTen In-Memory Database',2,147,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3709,'Orbix (Software)',2,149,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3710,'Pentaho Data Integration',2,150,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3711,'Ramsetcube',2,150,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3712,'PeopleSoft Enterprise',2,151,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3713,'People Soft',2,151,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3714,'PeopleSoft',2,151,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3715,'PeopleSoft EnterpriseOne',2,151,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3716,'PeopleSoft HRMS',2,151,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3717,'Peoplesoft',2,151,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3718,'Pervasive psql',2,153,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3719,'Actian Zen',2,153,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3720,'Pervasive sql',2,153,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3721,'PKZip',2,155,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3722,'PKSFX',2,155,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3723,'PKUNZIP',2,155,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3724,'SecureZIP',2,155,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3725,'Pkunzip',2,155,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3726,'Pkzip',2,155,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3727,'Metis (modelling)',2,156,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3728,'Metis (software)',2,156,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3729,'PgSQL',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3730,'PostgreSQL Data Base Management System',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3731,'Postsql',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3732,'Postgres95',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3733,'POSTGRES',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3734,'Autovacuum',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3735,'PGSQL',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3736,'PostSQL',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3737,'PostGRES',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3738,'POSTGRES95',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3739,'Psql (PostgreSQL)',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3740,'Pgsql',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3741,'PortugueseSQL',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3742,'PostegreSQL',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3743,'PostGRE',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3744,'PostgresSQL',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3745,'Postgresql',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3746,'PostGres',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3747,'PostgreSql',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3748,'Postgre sql',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3750,'Postgre',2,157,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3751,'Postgres',2,157,'also_known_as'); -INSERT INTO entity_mentions VALUES(3753,'Sybase PowerBuilder',2,158,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3755,'Oracle Primavera',2,159,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3756,'Primavera p6',2,159,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3757,'XER (file format)',2,159,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3758,'Primavera P3',2,159,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3761,'Polytron Version Control System',2,163,'also_known_as'); -INSERT INTO entity_mentions VALUES(3763,'Rabbit MQ',2,165,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3764,'Rabbitmq',2,165,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3765,'RabbitMq',2,165,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3766,'Rabbit mq',2,165,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3767,'MultiVersion File System',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3768,'IBM Rational ClearCase',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3769,'Clear case',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3770,'IBM Rational MultiVersion File System',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3771,'Clearcase',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3772,'Rational MultiVersion File System',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3773,'Ibm clear case',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3774,'ClearCase',2,166,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3775,'Rational Business Developer Extension',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3776,'Rational Service Tester for SOA Quality',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3777,'Rational Business Developer',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3779,'IBM Rational SQABasic',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3780,'SQABasic',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3781,'IBM Rational Business Developer Extension',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3782,'Rationale Software',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3783,'Rational Machines',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3784,'Rational Application Developer',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3785,'Rational Team Concert',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3786,'Rational Engineering Lifecycle Manager',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3787,'IBM Jazz',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3788,'IBM Rational Team Concert',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3789,'Rational Rose RealTime',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3790,'IBM Rational Business Developer',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3791,'IBM Rational Software',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3792,'Rational Software Corporation',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3793,'Rational Functional Tester',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3794,'Rational Tau',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3795,'Rational robot',2,167,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3796,'IBM Rational',2,167,'also_known_as'); -INSERT INTO entity_mentions VALUES(3797,'Redis (data store)',2,168,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3798,'Redis (dbms)',2,168,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3799,'Redis database format',2,168,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3802,'Rumba criolla',2,172,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3803,'Mysap',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3804,'SAP enterprise software',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3805,'SAP Transport management system',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3806,'Profitability Analysis (SAP)',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3807,'MySAP',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3808,'SAP ERP Financials',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3809,'MySAP ERP',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3810,'SAP Basis',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3811,'SAP HCM PA',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3812,'SAP ECC',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3813,'MySAP ERP Operations',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3814,'SAP ERP Human Capital Management',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3815,'MySAP ERP Financials',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3816,'SAP Fiori',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3817,'SAP ERP Operations',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3818,'SAP ERP Corporate Services',2,174,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3819,'High-performance Analytical Application',2,175,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3820,'SAP DB',2,176,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3821,'SAPDB',2,176,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3822,'SapDB',2,176,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3823,'SAP Netweaver Business Intelligence',2,177,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3824,'SAP NetWeaver Business Intelligence',2,177,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3825,'SAP BW',2,177,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3826,'SAP Business Information Warehouse',2,177,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3827,'Sybase ASA',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3828,'ASA (SQL Anywhere)',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3829,'PowerSoft SQL',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3830,'SAP Adaptive Server Anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3831,'Sybase asa',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3832,'PowerSoft Watcom SQL',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3833,'Sybase Anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3834,'Sql anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3835,'Adaptive Server Anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3837,'PowerSoft SQL Anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3838,'Sybase SQL Anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3839,'SAP Sybase Adaptive Server Anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3840,'SAP Sybase ASA',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3841,'Watcom SQL',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3842,'Sybase Adaptive Server Anywhere',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3843,'SAP ASA',2,178,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3844,'Web Dynpro ABAP',2,179,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3845,'Webdynpro',2,179,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3846,'Dynpro',2,179,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3847,'Sentry Risk Table',2,180,'also_known_as'); -INSERT INTO entity_mentions VALUES(3848,'Windows Sharepoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3849,'Microsoft SharePoint Server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3850,'MOSS 2007',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3851,'Microsoft Office SharePoint Server 2007',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3852,'SharePoint 2007',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3853,'Windows sharepoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3854,'Microsoft SharePoint 2010',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3855,'SharePoint 2010',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3856,'Microsoft SharePoint 2007',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3857,'Sharepoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3858,'Share point server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3859,'SharePoint Foundation',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3860,'SharePoint services',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3861,'SharePoint Server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3862,'Sharepoint portal server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3863,'Microsoft sharepoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3864,'Windows SharePoint 2007',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3865,'Microsoft SharePoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3866,'Office SharePoint Server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3867,'Windows SharePoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3868,'MS Sharepoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3869,'Windows SharePoint Server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3871,'Windows SharePoint Services',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3872,'Share Point',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3873,'Microsoft Office Sharepoint Server 2007',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3874,'Microsoft Windows SharePoint Services',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3875,'Microsoft Office SharePoint Portal Server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3876,'Microsoft Sharepoint Foundation',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3877,'SharePoint Portal Server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3878,'Sharepoint services',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3879,'Sharepoint Services',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3881,'Microsoft Sharepoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3882,'Windows Sharepoint Services 3',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3883,'Sharepoint server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3884,'MS SharePoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3885,'Microsoft Office SharePoint',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3886,'SharePointCOE',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3887,'Share point',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3888,'Sharepoint collaboration',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3889,'Microsoft SharePoint Foundation',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3890,'SharePoint Services',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3891,'SharePoint Resources',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3892,'Windows Sharepoint Services',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3893,'Microsoft Office SharePoint Server',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3894,'Snaglt',2,184,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3896,'IBM Mobile',2,185,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3897,'SonarLint',2,186,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3898,'Sonarqube',2,186,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3899,'Sonar (software quality)',2,186,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3902,'SAP Sybase DB',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3903,'SAP Sybase SQL Server',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3904,'SAP Sybase ASE',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3905,'Sybase Adaptive Server Enterprise',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3906,'SAP Adaptive Server Enterprise',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3907,'SAP Sybase Adaptive Server Enterprise (ASE)',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3908,'Sybase (database)',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3909,'SAP SQL Server',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3910,'SAP Sybase',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3911,'SAP Sybase Adaptive Server Enterprise',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3912,'Sybase database',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3913,'ASE (SQL Server)',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3914,'Sybase Enterprise',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3915,'Sybase ASE',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3916,'SAP ASE',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3917,'Sybase DB',2,190,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3918,'Syncsort',2,191,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3919,'Teradata Geospatial',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3920,'Teradata FastLoad',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3921,'Teradata Warehouse Miner',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3922,'Fastexport',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3923,'BTEQ',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3924,'Teradata Parallel Transporter',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3925,'FastExport',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3926,'ADAM Software',2,215,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3927,'Tibco Rendezvous',2,219,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3928,'Tivoli Access Manager',2,220,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3929,'Tortoise CVS',2,221,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3930,'TSVN',2,222,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3931,'Tortoisesvn',2,222,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3932,'Tortoise svn',2,222,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3933,'Tortoise SVN',2,222,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3934,'UNIFACE',2,225,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3935,'VisiBroker',2,228,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3936,'Vcenter',2,231,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3937,'IBM WebSphere Commerce',2,234,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3940,'Index Server',2,238,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3942,'Windows indexing service',2,238,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3943,'WinMerge 2011',2,241,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3944,'Winmerge',2,241,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3945,'Winrar',2,242,'also_known_as'); -INSERT INTO entity_mentions VALUES(3946,'WinRar',2,242,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3947,'RAR5',2,242,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3948,'Rarlab WinRAR',2,242,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3949,'Win RAR',2,242,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3950,'WINSCP',2,243,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3951,'Winscp',2,243,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3952,'Word press',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3953,'BbPress',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3954,'Cafelog',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3955,'WordPress MU',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3956,'B2\cafelog',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3958,'B2/cafelog',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3959,'WordPress 2.1.2',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3960,'WordCamp',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3961,'WordPress Foundation',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3962,'Word Press',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3963,'The WordPress Foundation',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3964,'Wordpress foundation',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3965,'B2 (software)',2,245,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3966,'Xampp',2,246,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3967,'XAMPP Lite',2,246,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3968,'Xamp',2,246,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3969,'Xampp Lite',2,246,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3970,'Apache Friends',2,246,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3971,'0MQ',2,248,'also_known_as'); -INSERT INTO entity_mentions VALUES(3973,'Nanomsg',2,248,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3974,'Zero MQ',2,248,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3975,'ØMQ',2,248,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3976,'0mq',2,248,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3977,'Zmq',2,248,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3978,'Zeromq',2,248,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3979,'OMQ',2,248,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3981,'HACMP',2,250,'also_known_as'); -INSERT INTO entity_mentions VALUES(3982,'High Availability Cluster Multiprocessing',2,250,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3985,'OPL Development Studio',2,253,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3986,'LogicTools',2,257,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3987,'Sqlite',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3988,'SQL Lite',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3989,'Sqlite3',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3990,'SqlLite',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3991,'SQLLite',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3992,'SQLite4',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3993,'SQLlite',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3994,'SQLite3',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3995,'SQlite',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3996,'SQLLite DB',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3997,'SQLite Manager',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3998,'Sqllite',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(3999,'SQLITE',2,258,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4000,'Apache webserver',8,259,'also_known_as'); -INSERT INTO entity_mentions VALUES(4001,'Apache Server',8,259,'also_known_as'); -INSERT INTO entity_mentions VALUES(4002,'Apache web server',8,259,'also_known_as'); -INSERT INTO entity_mentions VALUES(4003,'Apache WWW Server',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4004,'Apache (server)',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4005,'Apache (web server)',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4006,'Apache httpd',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4007,'Apache server',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4008,'Apache2',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4009,'Apache2ctl',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4012,'Apache Web server',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4013,'Apache HTTPd',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4014,'Apache http',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4015,'Apache HTTPD',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4016,'Apachectl',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4017,'Apache http server',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4018,'Apache HTTP server',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4019,'Apache (HTTP server)',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4020,'Apache 1.3',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4021,'Apache (webserver)',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4022,'Apache 2.2',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4023,'Apache Webserver',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4024,'Apache (computing)',8,259,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4025,'Tomcat Catalina',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4026,'Apache tomcat',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4027,'Tomcat Jasper',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4028,'Tomcat6',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4030,'Tomcat5',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4031,'Catalina (Tomcat)',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4032,'Tomcat Coyote',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4033,'Tomcat (software)',8,260,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4034,'Jakarta Tomcat',8,260,'also_known_as'); -INSERT INTO entity_mentions VALUES(4036,'BEA-WebLogic',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4037,'Bea Weblogic',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4038,'Oracle Weblogic',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4040,'BEA AS',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4041,'BEA WebLogic',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4043,'BEA Application Server',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4045,'Oracle WebLogic',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4047,'Oracle Weblogic Server',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4048,'WebLogic Application Server',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4049,'Sun ONE Application Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4050,'Oracle GlassFish Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4051,'SJSAS',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4052,'Java System Application Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4053,'Glassfish Application Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4054,'Sun GlassFish Enterprise Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4055,'Glassfish server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4056,'Sun Java Application Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4057,'Sun Java System Application Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4058,'IPlanet Application Server',8,263,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4059,'Haproxy',8,264,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4061,'Microsoft IIS',8,609,'also_known_as'); -INSERT INTO entity_mentions VALUES(4063,'Internet Information Server',8,609,'also_known_as'); -INSERT INTO entity_mentions VALUES(4064,'IIS 7',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4065,'Microsoft Internet Information Server',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4066,'IIS Media Services',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4067,'Microsoft-IIS',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4068,'MS IIS',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4069,'IIS7',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4070,'IIS Media Pack',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4071,'Microsoft-iis',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4072,'Microsoft IIS server',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4074,'IIS server',8,609,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4075,'Red Hat Software',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4076,'RHTS',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4077,'RHAT (NASDAQ)',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4078,'Red Hat Czech',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4079,'PNAELV',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4080,'JBoss (company)',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4081,'RHAT',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4082,'Redhat.com',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4083,'Red Hat Test Suite',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4084,'Ntsysv',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4085,'FUSE Message Broker',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4086,'JBOSS',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4087,'RESTEasy',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4088,'Red Hat (company)',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4089,'REDHAT',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4090,'Red.ht',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4091,'CloudForms',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4092,'Red Hat High',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4093,'Red Hat Enterprise MRG',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4095,'RED HAT',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4096,'JBoss Group',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4097,'Red hat',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4098,'Red Hat',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4099,'Red Hat MGR',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4101,'Red Hat MRG',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4102,'RESTeasy',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4103,'Red Hat Inc',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4104,'Red Hat India',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4105,'Red Hat Inc.',8,268,'also_known_as'); -INSERT INTO entity_mentions VALUES(4106,'RedHat',8,268,'also_known_as'); -INSERT INTO entity_mentions VALUES(4111,'Fuse Message Broker',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4119,'NASDAQ:RHAT',8,268,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4142,'IBM Domino',8,270,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4146,'Nginx plus',8,274,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4147,'NGINX',8,274,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4148,'Engine X',8,274,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4149,'NGINX Unit',8,274,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4150,'Oracle OC4J',8,610,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4152,'Oracle Application Server 10g',8,610,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4153,'Oracle Imaging and Process Management',8,276,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4154,'Oracle Content Management',8,276,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4155,'WebCenter',8,276,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4156,'Oracle Universal Content Management',8,276,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4157,'Universal Content Management',8,276,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4158,'Oracle WebCenter Imaging',8,276,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4159,'Resin Server',8,278,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4160,'Resin Application Server',8,278,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4161,'Caucho Resin',8,278,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4162,'Quercus (software)',8,278,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4163,'NetWeawer',8,279,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4164,'SAP Netweaver solution',8,279,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4165,'Netweaver',8,279,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4166,'SAP Central Process Scheduling',8,279,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4168,'Apache Spark',8,280,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4169,'Sun Java System Web Server',8,281,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4170,'Sun Java Enterprise System Web Server',8,281,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4171,'IPlanet Web Server 4.1',8,281,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4174,'Netscape FastTrack Server',8,281,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4176,'IPlanet Web Server',8,281,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4177,'Sun-Java-System-Web-Server',8,281,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4179,'WebSphere Application Server V3.0',8,284,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4180,'WebSphere Application Server V5.0',8,284,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4181,'Websphere 6',8,284,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4182,'WAS 6',8,284,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4183,'WebSphere Application Server',8,284,'also_known_as'); -INSERT INTO entity_mentions VALUES(4184,'WebSphere',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4185,'WebSphere Application Server V5.1 Business Integration Foundation Edition',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4186,'WebSphere Application Server V6.0',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4187,'WebSphere Application Server V5.0 Enterprise Edition',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4188,'IBM WebSphere Real Time',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4189,'Websphere',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4190,'IBM Websphere',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4191,'WebSphere Application Server V4.0',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4192,'Websphere Software',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4193,'IBM WebSphere Information Integration',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4194,'WebSphere Information Integration',8,285,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4196,'WebSphere Process Server',8,287,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4197,'Integrity NonStop',4,293,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4198,'HP Integrity NonStop',4,293,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4199,'HPE NonStop',4,293,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4200,'Nonstop kernel',4,293,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4201,'NonStop Kernel',4,293,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4202,'NonStop OS',4,293,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4203,'IBM Power System',4,295,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4204,'Lpar2rrd',4,295,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4205,'Power Systems',4,295,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4206,'L5335',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4207,'Xeon E5-26xx',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4208,'Dunnington (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4209,'Cascades (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4210,'Scalable Memory Interconnect',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4211,'X7460',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4212,'Xeon E3-12xx',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4213,'Xeonx',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4214,'Woodcrest (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4215,'Pentium II Xeon',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4216,'Tigerton (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4217,'Jasper Forest (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4218,'XEON',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4219,'Xeon E7-48xx v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4220,'Clovertown (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4221,'Xeon E5',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4222,'Westmere-EX',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4223,'Drake (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4224,'X5650',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4225,'Xeon E3 v2',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4226,'Wolfdale-DP (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4227,'Quad-Core Intel Xeon',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4228,'Tanner (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4229,'Scalable memory interconnect',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4230,'Intel Xeon CPU',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4231,'Quad-Core Xeon',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4232,'Intel Xeon E5',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4233,'Xeon E3 v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4234,'Dempsey (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4235,'Xeon Silver',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4236,'Xeon E7-88xx v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4237,'Harpertown (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4238,'Xeon E5 v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4239,'Intel SMI',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4240,'Gainestown (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4241,'Xeon MP',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4242,'Dual-Core Xeon',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4243,'Xeon E5-26xx v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4244,'Intel Xeon Gold',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4245,'Nancona',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4246,'Haswell-EP',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4247,'Intel Xeon Platinum',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4248,'Sossaman (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4249,'Xeon E3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4250,'Xeon E7 v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4251,'Xeon E7 v2',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4252,'Intel Woodcrest',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4253,'E5310',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4254,'Intel Xeon Bronze',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4255,'Xeon E5 v2',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4256,'Pentium III Xeon',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4257,'Nehalem-ex',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4258,'Xeon E5-16xx',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4259,'Intel Xeon Silver',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4260,'Beckton (microprocessor)',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4261,'Xeon E5-16xx v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4262,'Xeon Bronze',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4263,'Sossaman',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4264,'Xeon E3-12xx v3',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4265,'Intel Xeon',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4266,'Xeon Platinum',4,296,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4268,'Oracle Database Machine',4,298,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4269,'Exadata',4,298,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4270,'Autoit',9,299,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4271,'Autoit script',9,299,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4272,'AutoIt3',9,299,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4273,'AI3',9,299,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4274,'Awk',9,300,'also_known_as'); -INSERT INTO entity_mentions VALUES(4275,'Nawk',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4276,'GNU Awk',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4277,'GAWK',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4278,'GNU awk',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4279,'One true AWK',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4280,'AWK (programming language)',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4281,'AWK programming language',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4282,'Awk (language)',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4283,'Tawk',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4284,'One True AWK',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4285,'Gawk (GNU package)',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4286,'Awk language',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4287,'One true awk',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4288,'Awk programming language',9,300,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4289,'BASAIC programming language',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4290,'Beginner All-Purpose Symbolic',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4291,'Beginner''s All Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4292,'Beginners All Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4293,'Beginner All Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4294,'Beginner''s All-Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4295,'Basic programming language',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4296,'Beginners'' All-Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4297,'Beginners'' All-Purpose Symbolic',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4298,'Basic (programming language)',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4299,'Basic (language)',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4300,'Basic computer language',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4301,'Unstructured BASIC',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4302,'B.A.S.I.C.',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4303,'ECMA-55',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4304,'Beginner All-Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4305,'Compiled BASIC',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4306,'Structured BASIC',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4307,'Beginners All-Purpose Symbolic',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4308,'Beginner''s All-Purpose Symbolic',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4309,'ROM BASIC programming language',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4310,'Beginners All-Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4311,'BASIC language',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4312,'BASIC (programming language)',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4313,'Beginners All-purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4314,'Basic (computer language)',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4315,'Beginners'' All Purpose Symbolic Instruction Code',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4316,'ANSI BASIC',9,301,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4317,'BASIC programming language',9,301,'also_known_as'); -INSERT INTO entity_mentions VALUES(4318,'Beginner''s All-purpose Symbolic Instruction Code',9,301,'also_known_as'); -INSERT INTO entity_mentions VALUES(4319,'C prog',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4320,'C programming Language',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4321,'C-programming',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4322,'C programming language/Evolution',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4323,'C (computer language)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4324,'C (programming langage)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4325,'C lang',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4326,'C (lang)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4327,'C programing language',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4328,'C (programming)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4329,'C78 (C version)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4330,'C programming',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4331,'C Language',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4332,'C language',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4333,'C Programming',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4334,'C program',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4335,'C programming language/K and R C',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4336,'C (language)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4337,'32/16 bit C programming',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4338,'C (software)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4339,'C(programming language)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4340,'C (Programming Language)',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4341,'Programming language C',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4342,'Computer language C',9,303,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4343,'C programming language',9,303,'also_known_as'); -INSERT INTO entity_mentions VALUES(4344,'C# (programming language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4345,'C++++',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4346,'Visual C Sharp .Net',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4347,'Visual C Sharp Express Edition',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4348,'C♯ (programming language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4349,'Microsoft Visual C ♯',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4350,'C Sharp language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4351,'C# programming language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4352,'ISO/IEC 23270',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4353,'C Sharp Programming Language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4354,'Microsoft Visual C Sharp',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4355,'C-sharp programming language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4356,'C ♯ (programming language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4357,'C hash',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4358,'C♯ (language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4359,'C sharp (computing)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4360,'CS (programming language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4361,'C sharp (language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4362,'C Sharp (language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4363,'ECMA-334',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4364,'C-hash',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4365,'C sharp 6.0',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4366,'C♯ programming language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4367,'Visual C Sharp',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4368,'C Sharp 5.0',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4369,'C-Hash',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4370,'C sharp programming language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4371,'ISO 23270',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4372,'C Sharp Programming language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4373,'C Sharp (computing)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4374,'C # (programming language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4375,'C sharp (programming language)',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4376,'C hashtag',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4377,'C Pound',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4378,'C Sharp programming language',9,582,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4379,'C plus plus',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4380,'C++ 1.0',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4381,'C plus plus programming language',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4382,'ISO/IEC 14882:2003',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4383,'C++ standard',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4384,'Standard C++ Foundation',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4385,'ISO/IEC 14882',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4386,'Sepples',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4387,'Cee plus plus',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4388,'C++ program',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4389,'C++ (Programming Language)',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4390,'C+++',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4391,'C++ syntax',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4392,'ANSI C++',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4393,'ISO C++',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4394,'C++ (programming language)',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4395,'C++ 2.0',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4396,'C++ language',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4397,'Cee Plus Plus',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4398,'C Plus Plus programming language',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4399,'Core language',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4400,'ISO C++ programming language',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4401,'Cplusplus',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4402,'C++ programming language',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4403,'C++98',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4404,'ISO/IEC 14882:2014',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4405,'++C',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4406,'CPlusPlus',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4407,'ISO/IEC 14882:2015',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4408,'C-plus-plus programming language',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4409,'C-plus-plus',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4410,'C Plus Plus',9,583,'also_known_as'); -INSERT INTO entity_mentions VALUES(4411,'Microsoft C',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4412,'Visual C++ .NET 2003',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4413,'Embedded Visual C++',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4414,'Visual C++ 2002',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4415,'Visual C++ 5.0',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4416,'Visual C++ 2010',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4417,'Visual C++ .NET 2002',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4418,'Visual C++ 2003',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4419,'Vc++',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4420,'MSVC90',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4422,'MSVC 2005',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4423,'Embedded visual c plus plus',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4424,'Visual C++ 6.0',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4425,'Visual C++ 2.0',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4427,'Visual C plus plus',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4428,'Visual C Plus Plus',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4429,'MSVC80',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4430,'Visual C++ 4.0',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4431,'Visual C++ 2012',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4432,'Visual C++ 4.2',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4433,'VisualC++',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4434,'MSVC110',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4435,'VC++',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4436,'MSVC120',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4437,'Microsoft C compiler',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4438,'MSVC 2010',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4439,'Microsoft Visual C plus plus',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4440,'MSVC100',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4441,'MSVC71',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4442,'Vc9',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4443,'MSVC 2013',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4444,'Visual C++ 1.0',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4445,'MSVC 2003',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4446,'Msvc',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4447,'Visual C++ 2013',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4448,'Microsoft Visual C Plus Plus',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4449,'Visual C++ 2005',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4450,'MSVC 2002',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4451,'MSVC 2008',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4452,'MSVC 2012',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4453,'Visual c',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4454,'MS Visual C++',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4455,'Vc6',9,306,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4459,'Cascading Stylesheets',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4460,'Css1',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4461,'Cascading Style Sheet',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4462,'CSS stylesheet',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4463,'CSS selector',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4464,'CSS (internet)',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4465,'Cascading style sheets',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4466,'CSS1',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4467,'Css 2.1',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4468,'Aural Cascading Style Sheets',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4469,'Css3',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4470,'CSS 2',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4471,'CSS2',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4472,'CSs',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4473,'CSS 1.0',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4474,'Text/css',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4475,'Css 2.0',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4476,'CSS4',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4477,'Cascading Style Sheets - CSS',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4478,'Css 3',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4479,'Css',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4480,'Cascading style sheet',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4481,'CSS 4',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4482,'XML/XSL skin',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4483,'CSS styles',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4484,'CSS style sheets',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4485,'Cascading Style Sheets 4',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4486,'CSS styling',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4487,'CSS 3.0',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4488,'CSS style',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4489,'CSS2.1',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4490,'Cascading stylesheets',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4491,'Css2',9,307,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4492,'CSS3',9,307,'also_known_as'); -INSERT INTO entity_mentions VALUES(4493,'Clipper programming language',9,308,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4494,'CA clipper',9,308,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4495,'Clipper prog',9,308,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4496,'CA-Clipper',9,308,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4497,'Clist',9,309,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4498,'CoBoL',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4499,'COBOL-85',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4500,'COBOL 20XX',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4501,'COBOL 85',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4502,'ISO/IEC 1989',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4503,'MF-COBOL',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4504,'O-O COBOL',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4505,'COBOL programming language',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4506,'COBOL-74',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4507,'COBOL 60',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4508,'ISO 1989',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4509,'COBOL 74',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4510,'COBOL74',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4511,'COBOL-68',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4512,'OO COBOL',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4513,'COBOL language',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4514,'COBOL 1985',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4515,'Common Ordinary Business-Oriented Language',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4516,'COBOL 1968',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4517,'COBOL 2014',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4518,'Object-oriented COBOL',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4519,'Common Business Oriented Language',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4520,'COBOL (programming language)',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4521,'X3J4',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4522,'COBOL68',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4523,'COBOL 1974',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4524,'COBOL85',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4525,'OO-COBOL',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4526,'COBOL-60',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4527,'COmmon Business-Oriented Language',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4528,'COBOL 1960',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4529,'COBOL 2002',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4530,'RM/COBOL',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4531,'COBOL 68',9,594,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4532,'Common Business-Oriented Language',9,594,'also_known_as'); -INSERT INTO entity_mentions VALUES(4533,'Cobol',9,594,'also_known_as'); -INSERT INTO entity_mentions VALUES(4535,'Cfml',9,311,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4536,'Data Language/1',9,312,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4537,'IBM Data Language One (DL/1)',9,312,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4539,'DL/1',9,312,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4540,'Borland Delphi 2006',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4541,'Delphi rad',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4542,'Delphi 2006',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4543,'Delphi XE2',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4544,'RAD Studio',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4545,'Embarcadero RAD Studio',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4546,'Delphi 2009',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4547,'Delphi XE',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4548,'CodeGear Delphi',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4549,'Delphi (IDE)',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4550,'Delphi XE4',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4551,'Delphi XE3',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4552,'Borland Delphi',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4553,'Delphi code',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4554,'Delphi 4',9,313,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4555,'Embarcadero Delphi',9,313,'also_known_as'); -INSERT INTO entity_mentions VALUES(4558,'Xhtml11',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4559,'Xhtml strict',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4560,'XHTML 1.0',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4561,'XHTML 1.1',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4562,'Xhtml',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4563,'Xht',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4564,'Xhtml 2',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4565,'EXtensible HyperText Markup Language',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4566,'XHTML2',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4567,'X(HTML)',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4568,'XHTML 2.0',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4569,'Extensible HyperText Markup Language',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4570,'XHTML 2',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4571,'Extensible Hypertext Markup Language',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4572,'EXtensible Hypertext Markup Language',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4573,'(X)HTML',9,316,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4574,'XML feed',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4575,'XML feeds',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4576,'Well-formed XML',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4577,'Extended markup language',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4578,'EXtensible Markup Language',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4579,'Xml:lang',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4580,'Xml parser',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4581,'XML tag set',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4582,'Web3S',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4583,'Extensible markup language',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4584,'Xml',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4585,'Extended Markup Language',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4586,'Dynamic XML',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4587,'XML parser',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4588,'Text/xml',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4590,'Valid XML document',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4591,'MS XML',9,318,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4592,'Microsoft XML Core Services',9,318,'also_known_as'); -INSERT INTO entity_mentions VALUES(4593,'Xsl',9,319,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4594,'Extensible stylesheet language',9,319,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4595,'EXtensible Stylesheet Language',9,319,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4596,'XSL stylesheet',9,319,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4597,'XSL stylesheets',9,319,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4599,'XML template engine',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4600,'XSL Transformation',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4601,'XSLT 2.0',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4602,'Xslt',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4603,'XSLT processor',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4604,'XLST',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4605,'XML template processor',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4606,'XSL-T',9,320,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4607,'XSL Transformations',9,320,'also_known_as'); -INSERT INTO entity_mentions VALUES(4609,'Focus (software)',9,321,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4610,'Focus software',9,321,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4611,'FORTRAN',9,322,'also_known_as'); -INSERT INTO entity_mentions VALUES(4612,'Formula Translation',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4613,'Fortran 77',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4614,'FORTRAN II',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4615,'Formula Translator',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4616,'FORTRAN 66',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4617,'FORTRAN programming language',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4618,'Fortran (programming language)',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4619,'Fortran 2018',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4620,'Fortran IV',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4621,'Fortran 2008',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4622,'Format (Fortran 66)',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4623,'Fortran 66',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4624,'Fortran programming language',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4625,'FORTRAN77',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4626,'ECMA-9',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4627,'Fortran language',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4628,'FORTRAN IV',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4629,'Fortran 95',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4630,'F77',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4631,'Fortran 2003',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4632,'FORTRAN 77',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4633,'Visual Fortran',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4634,'Fortran 90',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4635,'FORTRAN (programming language)',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4636,'FORTRAN 86',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4637,'Formula translation',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4638,'F2003',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4639,'Fort77',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4640,'Fortran 5 (programming language)',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4641,'F95',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4642,'Fortran 8X',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4643,'Fortran 2015',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4644,'Fortran-66',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4645,'FORTRAN I',9,322,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4646,'Go (Programming language)',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4647,'Gccgo',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4648,'Go Programming Language',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4649,'Google go',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4650,'Go language',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4651,'Golang',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4652,'Go google',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4653,'Go (language)',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4654,'GoLang',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4655,'Go lang',9,323,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4656,'Go programming language',9,323,'also_known_as'); -INSERT INTO entity_mentions VALUES(4657,'Google Go',9,323,'also_known_as'); -INSERT INTO entity_mentions VALUES(4658,'Graphql',9,324,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4660,'Dynamic Hypertext Markup Language',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4661,'HTML file',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4662,'Hypertext markup language',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4664,'Basic HTML',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4665,'HTM file',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4666,'HTML 4.01',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4667,'ISO/IEC HTML',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4668,'Hyper text Markup Language',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4670,'Hyper Text Markup Language',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4671,'HTML2',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4672,'HTML 4',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4673,'HTML 3.2',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4674,'HTML+',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4675,'HLMT',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4676,'ISO/IEC 15445',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4677,'Hyper text markup language',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4678,'Html comment',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4679,'HTML code',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4680,'HTML strict',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4681,'HyperText Markup Language',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4682,'HTML 4.0',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4683,'Html',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4684,'Html language',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4685,'Html code',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4686,'HTML File Format',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4687,'HTML syntax',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4688,'HTML 3',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4689,'HMTL',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4690,'Text/html',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4691,'Html coding',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4692,'HTML 2',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4693,'HTML3',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4694,'Html 4.01',9,327,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4696,'HLASM',9,328,'also_known_as'); -INSERT INTO entity_mentions VALUES(4697,'IBM High-Level Assembler',9,328,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4699,'AS/400 Control Language',9,329,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4700,'CL Programming',9,329,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4701,'Control Language Programming',9,329,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4702,'CL (OS/400 command interpreter)',9,329,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4703,'AS/400 Command Language',9,329,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4704,'IBM i Control Language',9,329,'also_known_as'); -INSERT INTO entity_mentions VALUES(4705,'Informix 4GL/SQL',9,330,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4707,'Java programming language',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4708,'Javax',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4709,'Java (software)',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4710,'Java (Programming language)',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4711,'Javalang',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4712,'Java Programming',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4713,'JPD (file format)',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4714,'Java (programming)',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4715,'Java (langage)',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4716,'Java language',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4717,'Java technology',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4718,'Flow Java',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4719,'Java (language)',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4720,'Java programming',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4721,'Java (Programming Language)',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4722,'Java prog',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4723,'Java code',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4724,'Java computer language',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4725,'Java Programing Languge',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4732,'JavaEE',9,333,'also_known_as'); -INSERT INTO entity_mentions VALUES(4734,'J2EE',9,333,'also_known_as'); -INSERT INTO entity_mentions VALUES(4735,'Enterprise Java',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4736,'Java enterprise',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4737,'JSR 313',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4738,'Java EE 5',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4739,'Java Platform',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4741,'Java Enterprise Platform',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4742,'JSR 58',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4743,'Java 2 Platform Enterprise',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4744,'Java ee',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4745,'J2EE 1.4',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4746,'Jakarta Enterprise Edition',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4747,'J2EE 1.3',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4748,'Java 2 Enterprise Edition',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4749,'J2EE 1.2',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4750,'JSR 151',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4751,'JSR 244',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4752,'J2ee',9,333,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4753,'J2SE',9,334,'also_known_as'); -INSERT INTO entity_mentions VALUES(4754,'Java 2 Platform Standard Edition',9,334,'also_known_as'); -INSERT INTO entity_mentions VALUES(4755,'Java SE',9,334,'also_known_as'); -INSERT INTO entity_mentions VALUES(4756,'JSR 59',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4757,'Javase',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4758,'J2se',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4759,'Java 2 Platform',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4760,'Java 2 Standard Edition',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4761,'Java Standard Edition',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4762,'JavaSE',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4763,'Java se',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4764,'JSR 270',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4765,'Java SE platform',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4766,'JSR 176',9,334,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4767,'JSR 152',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4768,'JSP compiler',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4769,'JSP container',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4770,'Jave Page',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4771,'Jakarta Server Pages compiler',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4772,'Jave Server',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4773,'Java server pages',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4774,'Javaserver pages',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4775,'Jsp2',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4776,'JSP files',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4777,'Java Server Page',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4778,'Java Server Pages',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4779,'JSP engine',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4780,'JSPF',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4781,'JSR 245',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4782,'JavaServer Pages compiler',9,335,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4783,'JavaServer Page',9,335,'also_known_as'); -INSERT INTO entity_mentions VALUES(4785,'Scriptlets',9,336,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4786,'JavaScripts',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4787,'Live-script',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4788,'JavaScript programming language',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4789,'Mocha (programming language)',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4790,'JavaScript rollover',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4791,'Live-Script',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4792,'Javascript Console',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4793,'Server side javascript',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4794,'Live script',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4795,'Javascript programming language',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4796,'JavaScript Forums',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4797,'JavaScript 1.6',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4799,'JavaScript language',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4800,'Escript',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4801,'JavaScript (programming language)',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4802,'Client-side JavaScript',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4803,'Javascript (programming language)',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4804,'Vanilla JS',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4805,'SSJS',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4806,'Javascript 1.7',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4807,'Java script',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4809,'JavaScript 1.7',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4810,'DOM scripting',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4811,'Vanilla JavaScript',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4812,'Live Script',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4813,'CSJS',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4814,'Server-side JavaScript',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4815,'Server-Side JavaScript',9,589,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4816,'IBM JCL',9,338,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4817,'Job Control Statements',9,338,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4818,'Job management language',9,338,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4819,'Job entry control language',9,338,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4820,'JECL',9,338,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4821,'Job control language',9,338,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4822,'Jscript',9,340,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4823,'Microsoft JScript',9,340,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4824,'JS script',9,340,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4825,'ActiveXObject',9,340,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4826,'Managed JScript',9,340,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4827,'Lisp computer language',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4828,'Lisp language',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4829,'Lisp atom',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4830,'LISP (programming language)',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4831,'LISP atom',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4832,'Lisp (programming)',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4833,'List Processing',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4834,'Lisp (language)',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4835,'MuLISP',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4836,'LISP',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4837,'LISP language',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4838,'Lisp 1.5',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4839,'LISP programming language',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4840,'Lisp programming language',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4841,'LISP 1.5',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4842,'Lithp (programming language)',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4843,'Lisp renaissance',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4844,'LISP (programming)',9,341,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4845,'NPL (Programming language)',9,342,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4846,'NPL programming language',9,342,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4848,'ObjC',9,343,'also_known_as'); -INSERT INTO entity_mentions VALUES(4849,'Objc',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4850,'Objective-C 2.0',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4851,'Objective C++',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4852,'Objective-C++',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4854,'Object C',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4855,'Objective-C (programming language)',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4856,'Obj-c',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4857,'ObjC programming language',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4858,'Objective c',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4859,'C and Smalltalk',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4860,'Objective-c',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4861,'ObjectiveC',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4862,'Obj C',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4863,'Objective-C programming language',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4864,'Obj C programming language',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4865,'Objective C programming language',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4866,'Objective C plus plus',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4867,'Obj-C programming language',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4868,'Smalltalk and C',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4869,'Object-C',9,343,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4870,'OpenEdge Advanced Business Language (ABL)',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4871,'OpenEdge Database',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4873,'OpenEdge Advance Business Language (ABL)',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4874,'Progress RDBMS',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4875,'Progress DBMS',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4876,'Advanced Business Language',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4877,'Progress (software)',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4878,'Progress4GL',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4879,'Webspeed',9,344,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4880,'Progress 4GL',9,344,'also_known_as'); -INSERT INTO entity_mentions VALUES(4881,'Pascal-SC',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4882,'Pascal-P1',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4883,'Pascal (language)',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4884,'Pascal-P',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4885,'Pascal programming language',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4886,'PASCAL-XSC',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4887,'Pascal-S',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4888,'Pascal Programming Language',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4889,'PASCAL-SC',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4890,'PASCAL (Programming language)',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4891,'Pascal-P2',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4892,'Pascal-P3',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4893,'Pascal-P system',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4894,'Pascal-P System',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4895,'Pascal-F',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4896,'Pascal (command)',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4897,'ISO/IEC 10206',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4898,'Pascal-P5',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4899,'Pascal language',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4900,'Pascal-p2',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4901,'Pascal 86',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4902,'Pascal-P4',9,599,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4903,'Pascal-XSC',9,599,'also_known_as'); -INSERT INTO entity_mentions VALUES(4904,'Delphi (language)',9,346,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4905,'Delphi programming language',9,346,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4906,'Delphi (programming language)',9,346,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4907,'Object-Oriented Pascal',9,346,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4908,'Delphi language',9,346,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4909,'Delphi (Computer Language)',9,346,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4910,'Delphi programming',9,346,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4911,'Perl 7',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4912,'Perl (programming language)',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4913,'Practical Extraction and Report Language',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4914,'Perl interpreter',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4915,'Vanilla Perl',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4916,'Practical Extraction And Report Language',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4917,'Ponie',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4918,'Embedded Perl',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4919,'Perl language',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4920,'X-perl',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4921,'Perl programming language',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4922,'Swiss army chainsaw',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4923,'IndigoPerl',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4924,'Perl code',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4925,'Swiss-army chainsaw',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4926,'Perl5',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4927,'PONIE',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4928,'PERL',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4929,'Perl 5',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4930,'Perl programming',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4931,'Perl (language)',9,585,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4932,'PerlScript',9,348,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4933,'Active Perl',9,348,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4934,'Activeperl',9,348,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4935,'Perlscript',9,348,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4947,'Perl Golf',9,349,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4958,'Php language',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4959,'Php (programming language)',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4960,'Zend Engine 3',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4961,'Php 5.3',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4962,'PHP interpreter',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4963,'PHP (programming language)',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4964,'Php 4',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4965,'PHP 5',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4966,'PHPNG',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4967,'PHP8',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4968,'PHP Next Generation',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4969,'PHP5-FPM',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4970,'PHP5',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4971,'PHP4',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4972,'Php 5.4',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4973,'Php 5.1',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4974,'PHP-FPM',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4975,'Php',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4976,'PHTML',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4977,'PHP/FI',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4978,'Php-fpm',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4979,'Php6',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4980,'PHP 6',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4981,'Php 5.0',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4982,'PHP3',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4983,'Php 6.0',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4984,'Zephir (programming language)',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4985,'Php1',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4986,'PHP:Hypertext Preprocessor',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4987,'Php 3',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4988,'PHP7',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4989,'PHP programming',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4990,'Phtml',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4991,'Php 5.2',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4992,'Php5',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4993,'Php2',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4994,'Phpng',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4995,'PHP Hypertext Preprocessor (programming language)',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4996,'PHP next generation',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4997,'Php3',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4998,'PHP6',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(4999,'PHP programing language',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5000,'PHP 7',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5001,'Php 1',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5002,'Php 2',9,586,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5003,'Hypertext Preprocessor',9,586,'also_known_as'); -INSERT INTO entity_mentions VALUES(5004,'PHP programming language',9,586,'also_known_as'); -INSERT INTO entity_mentions VALUES(5005,'PHP: Hypertext Preprocessor',9,586,'also_known_as'); -INSERT INTO entity_mentions VALUES(5006,'PHP Hypertext Preprocessor',9,586,'also_known_as'); -INSERT INTO entity_mentions VALUES(5007,'SL/1',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5009,'Pl/1',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5010,'PL1 language',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5011,'PL/I programming language',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5012,'Visual PL/1',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5013,'DEC PL/I',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5014,'PL/I-80',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5015,'PL/MP',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5016,'Raincode PL/1',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5017,'PL/I-86',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5018,'PLI programming language',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5019,'PL/I (programming language)',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5020,'PL1 programming language',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5021,'PL/MI',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5022,'PLI-86',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5023,'VAX PL/I',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5024,'PL/Ⅰ',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5025,'RainCode PL/1',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5026,'PL/1 programming language',9,351,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5027,'StepSqlite',9,352,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5028,'PLSQL',9,352,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5029,'P/SQL',9,352,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5031,'Pro*C++',9,353,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5032,'Pro C',9,353,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5033,'Pro*C/C++',9,353,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5034,'Python scripting language',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5035,'Python program',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5036,'PythonLanguage',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5037,'Python computer language',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5038,'Python code',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5039,'Python3',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5040,'Python (computing)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5041,'Python programming language',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5042,'Python programming',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5043,'Pythonistas',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5044,'PEP8',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5045,'Pyston',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5046,'Python language',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5047,'Python (lang)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5048,'Python2',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5049,'Python3000',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5050,'Python 3k',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5051,'Python (language)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5052,'Coconut (programming language)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5053,'Python (software)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5054,'Pythonlang',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5055,'Python prog',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5056,'Python Programming',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5057,'Python Programming Language',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5058,'Python (scripting language)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5059,'Pythonista',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5060,'Python (programming)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5061,'Python (Programming Language)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5062,'Python (computer language)',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5063,'Python 3K',9,587,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5064,'R project',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5065,'R (programming)',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5066,'R Shiny',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5067,'GNU-S',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5068,'RStat',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5069,'R programming language',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5070,'R Statistics',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5071,'R-stat',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5072,'R lang',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5073,'RPro',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5074,'R code',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5075,'R-Project',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5076,'R (computer language)',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5077,'R Project',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5078,'R programming',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5079,'R (program)',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5080,'R-project',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5081,'R (software)',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5082,'R-Stat',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5083,'Rstat',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5084,'RGL (software package)',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5085,'R (language)',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5086,'Rlang',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5087,'ParallelR',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5088,'R Open',9,355,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5089,'GNU R',9,355,'also_known_as'); -INSERT INTO entity_mentions VALUES(5090,'GNU S',9,355,'also_known_as'); -INSERT INTO entity_mentions VALUES(5091,'R language',9,355,'also_known_as'); -INSERT INTO entity_mentions VALUES(5092,'Quercus Personal REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5093,'Personal Rexx',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5094,'Personal REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5095,'REstructured eXtended eXecutor',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5096,'Enterprise REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5097,'Rexx programming language',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5098,'IBM REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5099,'Restructured Extended Executor',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5100,'REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5101,'Kilowatt Portable REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5102,'Pmrexx',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5103,'Enterprise Alternatives REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5104,'Kilowatt Portable Rexx',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5105,'Restructured extended executor',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5106,'Quercus Personal Rexx',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5107,'REXX (programming language)',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5108,'Portable REXX',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5109,'Portable Rexx',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5110,'REXX programming language',9,356,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5111,'Report Program Generator',9,357,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5112,'Report program generator',9,357,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5113,'RPGLE',9,357,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5114,'RPG (programming language)',9,357,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5115,'IBM RPG (programming language)',9,357,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5116,'RPG IV',9,357,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5117,'RPG programming language',9,357,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5118,'Ruby (Programming Language)',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5119,'Ruby Programming Language',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5120,'Ruby programming',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5121,'Ruby Enterprise Edition',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5122,'Ruby language',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5123,'Ruby (language)',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5124,'Ruby (programming language',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5125,'Ruby (lang)',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5126,'Ruby lang',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5127,'Ruby-gnome2',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5128,'Ruby-language',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5129,'Ruby (computing)',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5130,'Ruby programming language',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5131,'Rubylang',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5132,'Ruby prog',9,588,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5133,'SAS (Software)',9,360,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5134,'SAS System',9,360,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5135,'SAS (programming language)',9,360,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5136,'SAS/STAT',9,360,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5137,'Interactive Matrix Language',9,360,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5138,'Statistical Analysis System',9,360,'also_known_as'); -INSERT INTO entity_mentions VALUES(5139,'Scss',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5140,'Sass CSS',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5141,'Sass (CSS)',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5142,'Sass (Stylesheet Language)',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5143,'Sass (markup language)',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5144,'SASS (language)',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5145,'Sass (software)',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5146,'Libsass',9,361,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5147,'Scala programming language',9,362,'also_known_as'); -INSERT INTO entity_mentions VALUES(5148,'Scala language',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5149,'Scala.js (programming language)',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5150,'ScalaNative',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5151,'ScalaNative (programming language)',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5152,'Scala-JS (Programming Language)',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5153,'Scala-JS',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5154,'Scala Native',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5155,'ScalaJS (Programming Language)',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5156,'Scala (programming language',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5157,'ScalaJs (programming language)',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5158,'Scala.js',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5159,'Scala Native (programming language)',9,362,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5160,'Smalltalk (programming language)',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5161,'Smalltalk programming language',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5162,'Smalltak',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5163,'Smalltalk-80',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5164,'Smalltalk Programming Language',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5165,'Smalltalk-72',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5166,'SmallTalk',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5167,'Smalltalk/V',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5168,'Visual Smalltalk',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5169,'Smalltalk 80',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5170,'SmallTalk programming language',9,363,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5171,'Swift (Apple programming language)',9,364,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5172,'Swift programming language',9,364,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5173,'Swift language',9,364,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5174,'Apple Swift',9,364,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5175,'SwiftNIO',9,364,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5176,'Swiftlang',9,364,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5177,'Tool Command Language',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5178,'Safe-Tcl',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5179,'Tcl (computer language)',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5180,'Object-oriented programming in Tcl',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5181,'Tcl (programming language)',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5182,'Tcl programming language',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5183,'Tcl/tk',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5184,'TclTk',9,365,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5185,'Tsql',9,366,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5188,'T-sql',9,366,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5190,'Microsoft TypeScript',9,367,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5192,'Microsoft Visual Basic.NET',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5193,'VB.Net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5194,'VB.net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5195,'Microsoft Visual Basic 2008 Express',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5196,'VB 2005',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5197,'VBx',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5198,'Vb dot net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5199,'Visual Basic 2005',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5201,'Visual BASIC .net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5202,'Visual Basic.NET',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5203,'Vb.net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5204,'Visual Basic (.NET Version)',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5205,'Visual Basic .NET 2003',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5206,'VB .NET',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5207,'Visual basic .net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5208,'Visual Basic.net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5209,'Visual Basic.Net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5210,'Microsoft Visual Basic .NET',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5211,'Visual Basic .net',9,368,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5212,'Vbscript',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5214,'VBS Script',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5215,'VBScript (programming language)',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5216,'VBSCRIPT',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5217,'VB script',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5218,'Visual Basic Scripting',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5220,'Visual Basic Script Edition',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5221,'Visual Basic Scripting Edition',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5222,'VBSScript',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5223,'Visual Basic Script',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5224,'VbScript',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5225,'VBScript programming language',9,369,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5226,'Visual Basic 6',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5227,'Visual basic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5228,'Microsoft Visual Basic 5.0',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5229,'Visual basic 6',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5230,'Microsoft Visual Basic 6.0',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5231,'Vbasic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5232,'Microsoft Visual Basic 6',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5234,'VB4',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5236,'Classic Visual Basic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5237,'Microsoft Visual Basic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5238,'Hummingbird Basic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5239,'MSVB',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5240,'VBP',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5241,'VB3',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5242,'Visual Basic 6 Portable',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5243,'Visual Basic programming language',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5244,'Microsoft Visual BASIC',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5245,'VBLang',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5246,'Visual Basic Control',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5247,'VisualBasic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5248,'VBDOS 1.0',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5249,'Virtual Basic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5250,'Visual BASIC',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5251,'Visual Basic Classic',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5252,'Visual Basic 5',9,370,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5253,'Microsoft visual basic for applications',9,371,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5254,'Visual Basic for Applications programming language',9,371,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5255,'Visual basic for applications',9,371,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5256,'Visual Foxpro',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5257,'Visual Fox pro',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5258,'Microsoft Visual FoxPro',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5259,'Microsoft Visual Fox pro',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5260,'Microsoft Visual Foxpro',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5261,'Visual FoxPro programming language',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5262,'Visual Fox Pro',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5263,'Microsoft Visual Fox Pro',9,372,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5265,'Voice XML',9,373,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5266,'Voicexml',9,373,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5268,'XBase plus plus',9,374,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5269,'Clucene',12,375,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5270,'KinoSearch',12,375,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5271,'Kinosearch',12,375,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5272,'Solr/Lucene',12,375,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5274,'Apache Xerces',12,376,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5275,'Bootstarpping',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5276,'Boot strap',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5277,'Bootstrapped',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5278,'Bootstrap support',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5279,'Bootstrapping (computing)',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5280,'Bootstrapper',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5281,'Boot-strap',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5282,'Bootstrap (word origin)',12,377,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5283,'Java|Apache Camel',12,378,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5284,'Java|Apache Commons BeanUtils',12,379,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5286,'Velocity apache',12,381,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5287,'Velocity (software)',12,381,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5288,'Jakarta Velocity',12,381,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5289,'Java|EclipseLink',12,382,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5292,'Enterprise Java Beans',12,383,'also_known_as'); -INSERT INTO entity_mentions VALUES(5293,'Enterprise Beans',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5294,'Enterprise beans',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5295,'Enterprise JavaBean',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5296,'Enterprise Bean',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5297,'SLSB',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5298,'Enterprise bean',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5299,'SFSB',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5300,'Jakarta Enterprise Bean',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5301,'Bean-Managed Persistence',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5302,'Enterprise Java Bean',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5303,'Java Enterprise Bean',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5304,'EJB Container',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5305,'Jakarta Enterprise beans',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5306,'Jakarta Enterprise bean',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5307,'JSR 153',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5308,'JSR 19',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5309,'EJB container',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5310,'Ejb',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5311,'JSR 220',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5312,'Container-Managed Persistence',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5313,'Message-driven EJB',12,383,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5314,'JSNI',12,385,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5315,'Hibernate Query Language',12,386,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5316,'Hibernate (Java)',12,386,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5317,'Hibernate OGM',12,386,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5318,'Hibernate (software)',12,386,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5319,'Hibernet',12,386,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5320,'Hibernate Core',12,386,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5321,'Hibernate (java)',12,386,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5322,'Java 2 SDK',12,388,'also_known_as'); -INSERT INTO entity_mentions VALUES(5324,'Java SDK',12,388,'also_known_as'); -INSERT INTO entity_mentions VALUES(5325,'J2SDK',12,388,'also_known_as'); -INSERT INTO entity_mentions VALUES(5326,'Java 2 Software Development Kit',12,388,'also_known_as'); -INSERT INTO entity_mentions VALUES(5327,'JDK 1.2',12,388,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5328,'Java Development Toolkit',12,388,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5329,'Java jdk',12,388,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5330,'JSR 914',12,389,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5331,'Java messaging service',12,389,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5333,'JNLP',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5334,'Web Start',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5335,'Java webstart',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5336,'Java Network Launching Protocol',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5337,'JavaWS',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5338,'Webstart',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5339,'JSR 56',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5340,'Javaws',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5341,'Java web start',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5342,'Java Webstart',12,390,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5343,'JSR 127',12,391,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5344,'JSR 252',12,391,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5345,'Java Server Faces',12,391,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5346,'Javaserver faces',12,391,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5349,'Jdbc',12,392,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5350,'Java Data Base Connectivity',12,392,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5352,'JRuby programming language',12,393,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5353,'JRuby language',12,393,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5354,'Jruby',12,393,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5355,'Apache Log4net',12,394,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5356,'Log4javascript',12,394,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5357,'Apache log4net',12,394,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5358,'Log4js',12,394,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5359,'Log4Net',12,394,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5360,'Log4c',12,394,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5361,'Log4J',12,394,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5362,'Quartz job scheduler',12,395,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5363,'JRMI',12,396,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5364,'Remote Method Invokation',12,396,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5365,'Java Remote Method Invocation',12,396,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5366,'Rmic',12,396,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5368,'Free-source',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5369,'Free source',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5370,'Four Freedoms (software)',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5371,'Free (software)',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5372,'Software Libre',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5373,'Libre software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5374,'Free-source software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5375,'Free-libre software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5376,'Four Freedoms (Free software)',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5377,'Libre Software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5378,'Freedom-ware',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5379,'4 software freedoms',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5380,'Free sofware',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5381,'Free-software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5382,'FSF''s "free software" ideal',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5383,'Free and Open Source Software (FOSS) for development',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5384,'Freedomware',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5385,'Free computer software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5386,'Freed Software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5387,'Freedom software',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5388,'Software libre',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5389,'Free software development',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5390,'Four Freedoms (free software)',12,397,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5391,'Spring (Java)',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5392,'Spring framework',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5394,'Spring beans',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5395,'Spring (framework)',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5396,'Spring Boot',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5397,'Java Spring',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5398,'Spring Framework (Java)',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5399,'Springframework',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5400,'Spring IOC Framework',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5401,'Spring AOP framework',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5402,'Spring AOP',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5403,'The Spring Framework',12,398,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5404,'Java|Spring|Spring Boot',12,399,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5405,'Jakarta Struts',12,402,'also_known_as'); -INSERT INTO entity_mentions VALUES(5406,'Struts Studio',12,402,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5407,'Struts Framework',12,402,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5408,'Java Struts',12,402,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5409,'Swing (java)',12,403,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5410,'Swing java',12,403,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5411,'Java Swing',12,403,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5412,'Javax.swing',12,403,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5413,'IT Mill Toolkit',12,404,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5414,'Ajax framework',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5415,'Ajax programming',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5416,'CAJAX',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5417,'Ajax scripts',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5418,'AJAX (programming)',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5419,'AJAXy',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5420,'AJAX framework',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5421,'Ajax desktops',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5422,'Asynchronous Javascript and XML',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5423,'Ajax language',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5424,'Ajax (software)',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5425,'Asynchronous JavaScript and JSON',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5426,'Asynchronous JavaScript and XML',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5427,'AJAX Framework',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5428,'AJAJ',12,405,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5431,'Angular.js',12,406,'also_known_as'); -INSERT INTO entity_mentions VALUES(5432,'MVW framework',12,406,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5433,'Scope (AngularJS)',12,406,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5434,'Angularjs',12,406,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5435,'Expressjs',12,408,'also_known_as'); -INSERT INTO entity_mentions VALUES(5436,'Ext Core',12,409,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5437,'Extjs',12,409,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5438,'Ext (JavaScript library)',12,409,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5440,'Ext (javascript library)',12,409,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5441,'CssQuery',12,411,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5442,'Jquery Library',12,411,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5443,'Jquery',12,411,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5444,'JQueryUI',12,412,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5445,'React.js',12,413,'also_known_as'); -INSERT INTO entity_mentions VALUES(5447,'Reactjs',12,413,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5448,'Facebook React',12,413,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5449,'React (web framework)',12,413,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5450,'React JS',12,413,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5451,'React Fiber',12,413,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5452,'JavaScript|script.aculo.us',12,414,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5453,'Android operating system',6,418,'also_known_as'); -INSERT INTO entity_mentions VALUES(5454,'Android OS',6,418,'also_known_as'); -INSERT INTO entity_mentions VALUES(5455,'Google Android',6,418,'also_known_as'); -INSERT INTO entity_mentions VALUES(5456,'Android (software stack)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5457,'Android system',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5458,'Android (phone)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5459,'Android (Google)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5460,'Android phone operating system',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5461,'Google Android Linux OS',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5462,'Android (Operating System)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5463,'Android (mobile device platform)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5464,'Android Apps',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5465,'Android Phone',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5466,'Android cell phone',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5467,'Honeycomb',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5468,'Android software',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5469,'Android google',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5470,'Android 3.0 Honeycomb',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5471,'Android platform',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5472,'Android cellphone',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5473,'Android device',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5474,'Android mobile phone',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5475,'Mobile Android',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5476,'Android 3.0',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5478,'Android phone',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5479,'TaintDroid',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5480,'Google android',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5481,'Android (system)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5482,'Android Open Source Project',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5483,'Android app',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5484,'Os android',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5485,'Android (software)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5486,'Android application',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5487,'Android (os)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5488,'Android.os',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5489,'Android (OS)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5490,'Android Device Manager',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5491,'Android (platform)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5492,'Android client',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5493,'IDroid',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5494,'Android (company)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5495,'Android-powered device',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5496,'Android (mobile phone platform)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5497,'Android Operating System',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5498,'Android devices',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5499,'Google''s Android',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5500,'Android mobile',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5501,'Android fork',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5502,'Android (google)',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5503,'Surfaceflinger',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5504,'Android os',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5505,'Android mobile phone platform',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5506,'Google Android One',6,418,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5507,'B.E.O.S',6,419,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5508,'Be OS',6,419,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5509,'Internetwork Operating System',6,420,'also_known_as'); -INSERT INTO entity_mentions VALUES(5510,'IOS (Cisco)',6,420,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5511,'CIOSS',6,420,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5512,'Interface Descriptor Block',6,420,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5513,'Google Dash',6,421,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5514,'ECMA Dart',6,421,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5515,'Dart (language)',6,421,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5516,'Dart programming language',6,421,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5517,'Dart language',6,421,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5518,'DartLang',6,421,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5519,'ECMA-408',6,421,'also_known_as'); -INSERT INTO entity_mentions VALUES(5520,'Google Dart',6,421,'also_known_as'); -INSERT INTO entity_mentions VALUES(5521,'Fabos',6,422,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5522,'The GNU operating system',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5523,'GNU/DOS',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5524,'GNU System',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5525,'GNU Operating System',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5526,'The GNU system',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5527,'GNU OS',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5528,'GNU system',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5529,'GNU''s Not Unix',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5530,'GNU operating system',6,423,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5531,'I5os',6,424,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5532,'IBM OS/400',6,424,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5534,'IBM i5/OS',6,424,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5535,'I on Power',6,424,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5536,'IBM i on Power',6,424,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5538,'I5/OS',6,424,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5539,'IBM I5/OS',6,424,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5540,'I-OS',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5541,'OS X iPhone',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5542,'IPhoneOS',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5543,'IPhone Operating System',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5544,'IPhone os',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5545,'Mac OS X (iPhone)',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5546,'IOS Apple',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5547,'Ipod touch os',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5548,'IPod Touch OS',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5549,'IPhone OS',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5550,'Apple iPhone OS',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5551,'OS X Mobile',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5552,'IOS (Apple Inc.)',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5553,'Multitasking (iOS)',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5554,'Apple iOS',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5555,'Iphone os',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5556,'IPhone operating system',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5557,'AppleiOS',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5558,'IOS (Apple)',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5559,'IOS (operating system)',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5560,'Ios (Apple)',6,425,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5561,'Linux (operating system)',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5562,'LINUX',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5563,'Linuces',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5564,'GNU/Linux/X11',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5565,'LinuX',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5566,'Linux-based GNU system',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5567,'Gnu/Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5568,'Linux+GNU',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5569,'Linux desktop',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5570,'Lienucks',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5571,'GNU-Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5572,'Linux/GNU',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5573,'Desktop GNU/Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5574,'Desktop Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5575,'Linux Powered System',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5576,'Linux/gnu',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5577,'Linux server',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5578,'GNU-linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5579,'GNU/Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5580,'Linux box',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5581,'GNULinux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5582,'Lynux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5583,'Linux OS',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5584,'Linices',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5585,'Linux-based GNU systems',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5586,'GNU/Linux/X',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5587,'Desktop linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5588,'GNU–Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5589,'Gnu/linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5590,'Linux on the desktop',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5591,'GNU+Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5592,'GNU Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5593,'Linux (GNU/Linux)',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5594,'Lineux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5595,'Linux/X11',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5596,'Linix',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5597,'Linux operating system',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5598,'Linux/X',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5599,'BlackRhino GNU/Linux',6,576,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5600,'Centos',6,427,'also_known_as'); -INSERT INTO entity_mentions VALUES(5601,'CentOs',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5602,'Centos7',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5603,'Centos Stream',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5604,'CentOS Linux',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5605,'Community Enterprise Operating System',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5606,'CAOS Linux',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5607,'Cent OS',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5608,'CentOS Stream',6,427,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5609,'CheckPoint INSPECT Code',6,428,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5610,'VPN-1',6,428,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5611,'FireWall-1',6,428,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5612,'VPN-1 Power',6,428,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5613,'FireWall-1/VPN-1',6,428,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5615,'Debian GNU/Linux',6,429,'also_known_as'); -INSERT INTO entity_mentions VALUES(5616,'Debian Sid',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5617,'Debian GNU Hurd',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5618,'Debian Unstable',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5619,'Debian GNU/kFreeBSD',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5620,'Debian/sid',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5621,'Debian GNU/FreeBSD',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5622,'Debian Live',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5623,'Embedded Debian',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5624,'Debian Project',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5625,'Debian stable',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5626,'Kfreebsd-i386',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5627,'Debian Multimedia Project',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5628,'Debian repository',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5629,'Debian GNU',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5630,'Sid (Debian)',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5631,'Debian LTS',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5632,'GNU/Debian',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5633,'Kfreebsd-amd64',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5634,'Debian gnu/kfreebsd',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5635,'Debian OS',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5636,'Embedian',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5637,'KFreeBSD',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5638,'Debian Manifesto',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5639,'Debian Hurd',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5640,'Debian GNU/Hurd',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5641,'Debian (operating system)',6,429,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5643,'Juniper JUNOS',6,430,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5644,'Juniper OS',6,430,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5645,'JUNOS',6,430,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5646,'Juniper Junos',6,430,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5647,'Junos SDK',6,430,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5648,'Junos',6,430,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5649,'OpenSuSE',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5650,'SUSE Linux Professional',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5651,'OpenSUSE 11',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5652,'OpenSUSE Linux',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5653,'Factory (openSUSE)',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5654,'Factory (software)',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5655,'OpenSuSe',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5656,'Tumbleweed (software)',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5657,'OpenSUSE Tumbleweed',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5658,'Open SUSE',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5660,'Tumbleweed (operating system)',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5661,'OPENSUSE',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5662,'SUSEWatcher',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5663,'Opensuse',6,431,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5664,'Unbreakable Enterprise Kernel',6,432,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5665,'Oracle Unbreakable Enterprise Kernel',6,432,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5666,'Unbreakable Linux',6,432,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5667,'Oracle linux',6,432,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5668,'Unbreakable Linux Network',6,432,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5669,'Red Hat Compatible Kernel',6,432,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5670,'Oracle Unbreakable Linux',6,432,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5674,'Red Hat Global Desktop',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5675,'RedHat enterprise linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5676,'Red hat enterprise linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5677,'RedHat Enterprise Linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5678,'Redhat Enterprise Linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5679,'Redhat enterprise linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5680,'Rhel',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5681,'Red hat enterprise',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5682,'Red Hat enterprise linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5683,'Rhel4',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5684,'Red Hat Global Desktop Linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5685,'Red Hat Enterprise Linux (RHEL)',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5686,'Red hat Enterprise Linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5687,'Red Hat Enterprise Linux 3',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5688,'Enterprise Linux',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5689,'RedPatch',6,434,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5690,'SUSE LINUX Enterprise Server',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5691,'SuSE SLES',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5692,'SLES (software)',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5693,'SuSE Linux Enterprise Server',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5694,'SUSE Linux Enterprise',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5695,'SLES (operating system)',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5696,'SuSE Enterprise Linux',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5697,'SUSE SLES',6,435,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5698,'Ubunt',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5699,'Ubuntu (GNU/Linux distribution)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5700,'Ubuntu Server Edition',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5701,'Ubuntu Light',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5702,'Ubuntu (linux)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5703,'Ubuntu (Operating system)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5704,'Ubuntulinux',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5705,'Uboonto Linux',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5706,'Easyubuntu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5707,'Ubuntu (os)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5708,'Ubuntu LTS',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5709,'Linux ubuntu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5710,'Ubuntu (software)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5711,'Ubuntu desktop',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5712,'Ubuntu (OS)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5713,'Ubuntu (Operating System)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5714,'Ubuntu operating system',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5715,'Ubufox',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5716,'Ubunto Linux',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5717,'Ubuntu (O.S.)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5718,'Ubuntu Business Desktop Remix',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5719,'Ubuntu GNU/Linux',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5720,'Ubuntu os',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5721,'Ubuntu Server',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5722,'Ubuntu (distribution)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5723,'Ubuntu (operating system)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5724,'Ubanto',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5725,'Unbuntu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5726,'Uboonto',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5727,'Ubuntu Linux (operating system based on Debian)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5728,'EasyUbuntu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5729,'Ubuntu Linux os',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5730,'Portable Ubuntu for Windows',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5731,'Ubuntu distro',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5732,'Ubuntu server',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5733,'Ubuntu distribution',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5734,'Ubuntu linux os',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5735,'Ubuntu (Linux)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5736,'Ubuntu (Linux distribution)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5737,'Ubutnu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5738,'Ubunut',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5739,'Ubuntu Desktop',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5740,'Ubuntu Linux Server Edition',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5741,'Ubuntu Universe',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5742,'Unbutu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5743,'Ubuntu Foundation',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5744,'Linux Ubuntu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5745,'Universe ubuntu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5746,'Ubuntu operatng system',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5747,'Ubuntu (linux distribution)',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5748,'Ubununtu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5749,'Ubuntu Linux distribution',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5750,'Easy Ubuntu',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5751,'Ubunto',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5752,'Ubuntu Enterprise Cloud',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5753,'ShipIt',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5754,'Ubuntu linux',6,436,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5755,'Ubuntu Linux operating system',6,436,'also_known_as'); -INSERT INTO entity_mentions VALUES(5757,'Ubuntu OS',6,436,'also_known_as'); -INSERT INTO entity_mentions VALUES(5758,'Ubuntu Project',6,436,'also_known_as'); -INSERT INTO entity_mentions VALUES(5759,'Ubuntu GNU/linux',6,436,'also_known_as'); -INSERT INTO entity_mentions VALUES(5760,'Linux on zSeries',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5761,'LinuxONE',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5762,'ZLinux',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5763,'Linux for zSeries',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5764,'Linux on System z9',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5765,'Linux on mainframe',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5766,'S390x',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5767,'Linux/390',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5768,'IBM LinuxONE',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5769,'Linux for mainframe',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5770,'Linux on z Systems',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5771,'Linux on System z',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5772,'Linux on Z Systems',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5773,'Linux for mainframes',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5774,'Linux on zseries',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5775,'Linux on mainframes',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5776,'Mainframe Linux',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5777,'Linux on z',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5778,'Z/Linux',6,437,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5779,'Apple OS X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5780,'Marklar project',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5781,'OS/X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5782,'Max os x',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5783,'Mac OS X 10',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5784,'OS-X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5785,'Mac os 10',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5786,'Mac osx',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5787,'MacOS X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5788,'Macintosh OSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5789,'Macos',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5790,'Mac OSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5791,'MacOSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5792,'Macosx',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5793,'Apple Macintosh OSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5794,'Mac OS/OS X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5795,'Macintosh OS-X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5796,'Os x',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5797,'Mac OS-X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5798,'MacOS/X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5799,'Mac Os X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5800,'MAC OS X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5801,'MacintoshOSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5802,'Apple Macintosh OS X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5803,'Os ten',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5804,'Mac OS/X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5805,'Osx',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5806,'IBSD',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5807,'Apple macOS',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5808,'OSx',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5809,'Mac os ten',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5810,'OS X (operating system)',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5811,'MacOs',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5812,'Apple Mac OSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5813,'Macos x',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5814,'MAC OSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5815,'Apple OSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5816,'Apple Mac OS X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5817,'Macintosh OS X',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5818,'MOSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5819,'Mac os x',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5820,'Apple MacOSX',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5821,'MacOS 10',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5822,'Apple os x',6,438,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5823,'OSX',6,438,'also_known_as'); -INSERT INTO entity_mentions VALUES(5824,'Mac OS 10',6,438,'also_known_as'); -INSERT INTO entity_mentions VALUES(5825,'Mac OS X',6,438,'also_known_as'); -INSERT INTO entity_mentions VALUES(5826,'OS X',6,438,'also_known_as'); -INSERT INTO entity_mentions VALUES(5827,'MSP (operating system)',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5828,'MVS/ESA',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5829,'OS/MVS',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5830,'MVS Operating System',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5831,'Data Facility Product',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5832,'MVS/XA',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5833,'MVS/370',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5834,'Fujitsu MSP',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5835,'OS/VS2 (MVS)',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5836,'Hitachi VOS3',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5837,'MVS/SP',6,577,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5838,'Multiple Virtual Storage',6,577,'also_known_as'); -INSERT INTO entity_mentions VALUES(5839,'MVS|OS/390',6,440,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5840,'ZOS',6,441,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5841,'IBM z/OS',6,441,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5842,'Virtual Memory System',6,442,'also_known_as'); -INSERT INTO entity_mentions VALUES(5843,'VAX/VMS',6,442,'also_known_as'); -INSERT INTO entity_mentions VALUES(5844,'Open vms',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5845,'VMS operating system',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5846,'OpenVMS 7.2',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5847,'DECwindows',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5848,'VMS (operating system)',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5849,'VAX-VMS',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5850,'DEC VMS',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5851,'DECWindows',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5852,'Vax/vms',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5853,'Open VMS',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5854,'Openvms',6,442,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5855,'OS/2 Warp',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5856,'Win-OS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5857,'DOS/286 (OS/2)',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5858,'NEWDOS (OS/2)',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5859,'Microsoft Betriebssystem/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5860,'Os2 warp',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5861,'OS/2 Warp 3',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5862,'OS/2 Warp 3J',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5863,'Warp 3',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5864,'IBM BS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5865,'BS/2 1.1',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5866,'Os2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5867,'OS/2 1.21',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5868,'BS/2 1.3',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5869,'Advanced DOS',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5870,'OS2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5871,'BS/2 1.0',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5872,'WINOS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5873,'OS/2 Warp 4.5',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5874,'IBM OS2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5875,'OS/2 Special Edition for Windows',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5876,'OS/2 2.1',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5877,'OS/2 Warp 4',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5878,'OS/2 1.3',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5879,'WinOS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5880,'OS/2 1.0',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5881,'Warp Server',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5882,'Microsoft OS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5883,'WIN-OS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5884,'OS/2 Warp Connect',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5885,'Microsoft Operating System/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5886,'IBM OS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5887,'OS/2 for Windows',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5888,'OS/2 2.0',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5889,'IBM Operating System/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5890,'OS 2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5891,'Betriebssystem/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5892,'DOS 5 (OS/2)',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5893,'Microsoft BS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5894,'IBM Betriebssystem/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5895,'DOS 286 (OS/2)',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5896,'OS/2 API',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5897,'OS/2 1.1',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5898,'BS/2 1.2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5899,'Os/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5900,'BS/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5901,'CP/DOS',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5902,'ADOS (OS/2)',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5903,'OS/2 1.2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5904,'0S/2',6,443,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5905,'Operating System/2',6,443,'also_known_as'); -INSERT INTO entity_mentions VALUES(5906,'Unixes',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5907,'UNIX operating system',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5908,'UNIX systems',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5909,'Unix operating system',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5910,'Truly Unix',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5911,'UNIX system',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5912,'Unix box',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5913,'Unix system',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5914,'Traditional Unix',6,578,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5915,'UNIX',6,578,'also_known_as'); -INSERT INTO entity_mentions VALUES(5916,'Advanced IBM UNIX',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5917,'IBM-RT/AIX',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5918,'IBM AIX (operating system)',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5919,'Object Data Manager',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5920,'AIX (operating system)',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5921,'Aix os',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5922,'IBM System AIX',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5923,'Ibm lum',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5924,'AIX for Apple Network Server',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5925,'IBM AIX/370',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5926,'Advanced Interactive eXecutive',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5927,'AIX/RT',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5928,'AIX/370',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5929,'AIXv3',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5930,'IBM370/AIX',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5931,'IBM AIX/PS2',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5932,'VM/IX',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5933,'IX/370',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5934,'AIX for ANS',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5935,'IBM AIX/RT',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5936,'AIX Operating System',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5937,'AIX operating system',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5938,'AIX for Apple Network Servers',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5939,'IBM AIX/390',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5940,'AIX/PS2',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5941,'AIX/390',6,445,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5943,'BSD operating system',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5944,'Berkeley software distribution',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5945,'4.4BSD-Lite',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5946,'Vmunix',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5947,'BSD Unices',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5948,'HPBSD',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5949,'4.4BSD-Encumbered',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5950,'Berkeley UNIX',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5951,'Berkley Software Distribution',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5952,'Net/1',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5953,'Berkeley UNIX 4.3BSD',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5954,'BSD-based',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5955,'Bsdgames',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5956,'Net/2',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5957,'Bsd',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5958,'*BSD',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5960,'BSD (operating system)',6,579,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5962,'BSD UNIX',6,579,'also_known_as'); -INSERT INTO entity_mentions VALUES(5965,'TrustedBSD',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5966,'Freebsd',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5967,'FBSD',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5968,'Free BSD',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5969,'FreeBSD 8',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5970,'NanoBSD',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5971,'Linuxulator',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5972,'FreeBSD Project',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5973,'FREEBSD',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5974,'FreeBSD kernel',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5975,'FreeBSD 5.0',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5976,'Free bsd',6,447,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5978,'Sun os',6,448,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5979,'SunOS Unix',6,448,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5980,'Sunos',6,448,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5981,'SunOS 4.1',6,448,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5982,'Sun OS',6,448,'also_known_as'); -INSERT INTO entity_mentions VALUES(5984,'Hewlett Packard Unix',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5985,'HP/UX',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5986,'Hewlett-Packard UniX',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5987,'Hewlett Packard-Unix',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5988,'Hpux',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5989,'Hewlett-Packard Unix',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5991,'Hewlett-Packard UNIX',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5992,'Hewlett Packard UniX',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5993,'Hewlett Packard UNIX',6,449,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5995,'MS Windows',6,580,'also_known_as'); -INSERT INTO entity_mentions VALUES(5997,'Apptimum',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5998,'Windows Operating System',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(5999,'Windows OS',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6000,'Windows 365',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6001,'Windows the operating system',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6002,'Windows (Operating System)',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6003,'WINDOWS',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6004,'Windows (OS)',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6005,'Microsoft windows',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6006,'MS-Windows',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6007,'Windows operating system',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6009,'Mswin',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6010,'Microsoft windows os',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6011,'MICROSOFT WINDOWS',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6012,'Widnows',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6013,'Windwos',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6014,'Windows (operating system)',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6015,'MSWindows',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6016,'Alliance OS',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6017,'Windows®',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6019,'Ms windows',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6020,'Windows os',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6021,'MsWindows',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6022,'Windows (Operating system)',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6023,'32-bit Windows',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6024,'Microsoft windows operating system',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6025,'Windows Microsoft',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6026,'Freedows OS',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6027,'MSWin',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6028,'Windows computers',6,580,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6042,'Windows PC',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6052,'PC Windows',6,451,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6063,'Windows Storage Server',6,452,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6064,'Microsoft Windows Server',6,452,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6065,'Windows Web Edition',6,452,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6066,'Windows server',6,452,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6067,'Windows Server 200x',6,452,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6068,'Windows Server 2022',6,452,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6069,'Microsoft Windows server',6,452,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6070,'Fedora Rawhide',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6071,'Linux fedora',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6072,'Fedora (OS)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6073,'Fedora AOS',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6074,'Fedora Extras',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6075,'Fedora (GNU/Linux distribution)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6076,'Fedora Core Linux',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6077,'Fedora Workstation',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6078,'Fedora OS',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6079,'Fedora (linux distribution)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6080,'COPR (Fedora)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6081,'Rawhide (operating system)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6082,'Fedora linux',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6083,'Fedora Robotics',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6084,'Cool Other Package Repositories',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6085,'Fedora Linux',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6086,'Fedomatix',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6087,'Fedora (Operating System)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6088,'Rawhide (software)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6089,'Eeedora',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6090,'Fedora operating system',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6091,'Fedora (software)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6092,'Fedora Core',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6093,'Fedora Cloud',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6094,'Rawhide (computing)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6095,'Fedora IoT',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6096,'Fedora Linux Swap',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6097,'Fedora (Linux)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6098,'Fedora Modular Server',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6099,'Fedora (Linux distribution)',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6100,'Fedora CoreOS',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6101,'Fedora 10',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6102,'Fedora Silverblue',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6103,'Fedora Atomic Host',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6104,'Fedora spin',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6105,'Fedora Server',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6106,'EPEL',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6107,'Fedora LXQt',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6108,'Fedora core',6,453,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6109,'Linux|Amazon Linux',6,454,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6111,'Microsoft Exchange Server|Veeam Explorer',5,464,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6112,'Data Transformation Service',5,466,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6113,'DTS package',5,466,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6114,'DTS Package',5,466,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6115,'Data transformation service',5,466,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6116,'DTS Packages',5,466,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6117,'DTS Tasks',5,466,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6118,'OLAP Services',5,468,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6119,'ADOMD.NET',5,468,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6121,'SSIS package',5,470,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6122,'SSMS',5,471,'also_known_as'); -INSERT INTO entity_mentions VALUES(6123,'SSMSE',5,471,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6124,'Management studio',5,471,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6127,'SQL Reporting Services',5,473,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6128,'Sql server reporting services',5,473,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6129,'Spatial Data Option',5,475,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6130,'GeoRaster',5,475,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6131,'Oracle Spatial',5,475,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6133,'Sqlplus',5,478,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6135,'Run-time library',7,482,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6136,'.NET Framework|log4net',7,483,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6137,'Windows Communications Foundation',7,485,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6138,'Indigo Application Server',7,485,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6139,'Windows communication foundation',7,485,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6141,'Windows Communication Framework',7,485,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6142,'Indigo (messaging system)',7,485,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6143,'Microsoft Indigo',7,485,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6144,'WF4',7,486,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6145,'Workflow Foundation',7,486,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6146,'Windows Overflow Foundation',7,486,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6147,'Windows.Forms',7,487,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6148,'Winforms',7,487,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6149,'Windows Forms control',7,487,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6150,'WindowsForms',7,487,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6151,'Windows Forms application',7,487,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6153,'ActiveX Data Object',7,488,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6154,'Active X Data Objects',7,488,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6155,'Msado',7,488,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6156,'Jboss seam',7,492,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6157,'JBoss SEAM',7,492,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6158,'Seam framework',7,492,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6159,'JBoss application server',7,493,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6161,'JBoss AS',7,493,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6162,'Jbossas',7,493,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6163,'Jboss as',7,493,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6164,'Jboss',7,493,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6165,'JBossWS',7,493,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6168,'ABAP Objects',7,496,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6169,'SAP ABAP',7,496,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6170,'Abap Objects',7,496,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6171,'ABAP/4',7,496,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6172,'Abap IV',7,496,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6173,'Abap',7,496,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6174,'.NET SDK',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6175,'Dot NET Framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6176,'Microsoft net framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6177,'Net Framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6178,'Dotnet framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6179,'Netfx',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6180,'Dot Net Framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6181,'Dot net framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6182,'.NET Enterprise Server',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6183,'.NET framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6184,'NetFX',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6185,'Microsoft .NET framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6186,'Microsoft''s .NET Framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6187,'.NET Server',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6188,'.Net Framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6190,'.NET Services',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6191,'.NET platform',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6192,'.Net (programming language)',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6193,'Microsoft .NET Framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6194,'.net framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6195,'NET Framework',10,497,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6196,'Active Directory Services',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6197,'Likewise Open',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6198,'Active directory object',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6199,'AD/LDS',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6200,'Active Directory Schema',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6201,'AD DS',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6202,'Microsoft Active Directory',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6203,'NT Directory Service',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6204,'Active Directory Site',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6205,'ActiveDirectory',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6206,'Active directory authentication module',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6207,'Active Directory Domain Services',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6208,'Active directory objects',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6209,'Active directory',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6210,'Micorsoft Active Directory',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6211,'Active Directory Service Interfaces',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6212,'Active Directory Service',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6213,'Active Directory Directory Services',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6214,'Microsoft Active Direcory',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6215,'Domain tree',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6216,'Active Directory Application Mode',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6217,'AD LDS',10,498,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6218,'ASP programming language',9,592,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6220,'ASP3',9,592,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6221,'Apache::ASP',9,592,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6222,'Active server pages',9,592,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6224,'Asp Apache',9,592,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6225,'Active X',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6226,'ActiveX Control',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6227,'Activex',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6228,'ActiveX client',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6229,'ActiveX Object',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6230,'ActiveX control',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6231,'ActiveX component',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6232,'MFC ActiveX Control',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6233,'Active x',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6234,'ActiveX server',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6235,'Active-x',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6236,'Activex control',10,500,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6237,'Apache Cordoba',10,501,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6238,'Apache Callback',10,501,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6239,'Customer Information Control System',10,502,'also_known_as'); -INSERT INTO entity_mentions VALUES(6240,'CICS Transaction Server',10,502,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6241,'Docker software',10,503,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6242,'Docker (Linux container engine)',10,503,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6243,'Libcontainer',10,503,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6244,'Dockerfile',10,503,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6245,'Docker Toolbox',10,503,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6246,'Shockwave Flash',10,504,'also_known_as'); -INSERT INTO entity_mentions VALUES(6247,'UIRA',10,504,'also_known_as'); -INSERT INTO entity_mentions VALUES(6248,'Flash MX',10,504,'also_known_as'); -INSERT INTO entity_mentions VALUES(6249,'Flash CS3',10,504,'also_known_as'); -INSERT INTO entity_mentions VALUES(6250,'Futuresplash',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6251,'Adobe Flash CS4',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6252,'Flash 8',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6253,'Flash mx 2004',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6254,'Flash (software)',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6255,'FutureSplash',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6256,'Macromedia Flash Remoting',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6257,'Macromedia flash',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6258,'Flash programming',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6259,'Adobe Flash animation',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6260,'Flash 6',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6261,'Adobe flash',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6262,'Adobe Flash Platform',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6263,'Macromedia Flash Professional 9',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6264,'F4L',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6265,'Flash components',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6266,'Flash 10',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6267,'F4l',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6268,'Flash 9',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6269,'Qflash',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6270,'Flash mx',10,504,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6273,'NodeJs',10,507,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6274,'Node js',10,507,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6275,'Node.JS',10,507,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6277,'Iojs',10,507,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6278,'Io.js',10,507,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6279,'NodeJS',10,507,'also_known_as'); -INSERT INTO entity_mentions VALUES(6280,'Action Web Service',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6281,'Rubyonrails',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6282,'Ruby on Яails',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6283,'Ruby on rails',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6284,'Action Mailer',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6285,'Ruby on Iaails',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6286,'Rails framework',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6287,'Ruby on Rails (web framework)',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6288,'Ruby On Rails',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6289,'Ruby-on-rails',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6290,'Ruby with rails',10,508,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6293,'Application management',1,511,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6294,'Application life-cycle management',1,511,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6295,'Integrated application lifecycle management',1,511,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6296,'Software Lifecycle Management',1,511,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6297,'Assembly Language',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6298,'Assembler (computer programming)',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6299,'Meta-assembler',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6300,'Op code mnemonic',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6301,'Cross-assembler',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6302,'Assembly languages',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6303,'Programming language/assembly',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6304,'Assembly language assembler',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6305,'Two-pass assembler',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6306,'Cross assembler',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6307,'Assembly code',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6308,'Assembler code',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6309,'Assembler language',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6310,'Assembler program',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6311,'Assembly language macros',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6312,'Mnemonics (assembler)',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6313,'ARM Assembly Language Programming',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6314,'Extended mnemonics',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6315,'Mnemonics (assembly language)',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6316,'Symbolic machine code',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6317,'Assembly programming language',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6318,'Assembly Programming System',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6319,'Assembler (programming language)',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6320,'Symbolic Machine Code',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6321,'Mnemonic (assembly language)',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6322,'Macro assembler',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6323,'Assembler (computing)',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6324,'Assembly file',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6325,'Mnemonic (assembler)',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6326,'Assember language',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6327,'Assembler for an assembly language',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6328,'Assembler programming',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6329,'Macroassembler',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6330,'Assembler directive',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6331,'Assembly programming',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6332,'Opcode mnemonics',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6333,'Assembly time',1,512,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6335,'Cgi script',1,515,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6336,'CGI script',1,515,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6337,'Common gateway interface',1,515,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6340,'Interface ID',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6341,'ActiveX application',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6342,'COM/ActiveX',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6343,'Multi Threaded Apartment',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6344,'COM object',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6345,'Neutral Apartment',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6346,'COM server',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6347,'Component object model',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6348,'Single-Threaded Apartment',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6349,'ActiveX script',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6350,'Single Threaded Apartment',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6351,'COM and OLE',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6352,'Microsoft Component Object Model',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6353,'Single-threaded apartment',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6355,'Apartment model',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6356,'Multi-Threaded Apartment',1,516,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6358,'Portable Object Adapter',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6359,'Object Management Architecture',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6360,'Portable interceptors',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6361,'OMG IDL',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6362,'Common object request broker architecture',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6363,'VMCID',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6364,'Incarnation (CORBA)',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6366,'Corbaloc',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6367,'CORBA Component Model',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6368,'Servant (CORBA)',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6369,'Corba',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6370,'CORBA architecture',1,517,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6373,'DDBMS',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6374,'Enterprise database management',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6375,'Distributed data base',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6376,'Database management system',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6377,'Database Management',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6378,'Database query',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6379,'DBMSs',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6380,'Research database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6381,'Database management software',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6382,'Database (computing)',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6383,'Distributed Database Management System',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6384,'Database instance',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6385,'Database management program',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6386,'DataBase',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6387,'Library database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6388,'Database system',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6389,'Database management systems',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6390,'Database/Applications',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6391,'Data Base',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6392,'Distributed database management system',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6393,'Database Management System',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6394,'Database manager',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6395,'Database programming',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6396,'Database software',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6397,'Public database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6398,'Distributed databases',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6399,'Dbms',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6400,'Forensic database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6401,'Data base management system',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6402,'Databases',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6403,'Electronic data processing database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6404,'Database management',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6405,'Computer database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6406,'Data-base',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6407,'Data bases',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6408,'DBMS',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6409,'Computer Databases',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6410,'Database System',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6411,'Database development',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6412,'Numeric database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6413,'DB file',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6414,'Scientific database',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6415,'Database Manager',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6416,'Database systems',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6417,'Database information system',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6418,'Data base',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6419,'D-base',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6420,'Database backend',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6421,'General-purpose DBMS',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6422,'Public databases',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6423,'Db management',1,520,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6424,'EDI Translation Software',1,521,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6426,'ANSI ASC X.12',1,521,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6427,'X.12',1,521,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6428,'Web-servers',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6429,'Web Servers',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6430,'Webserver',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6432,'Www server',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6433,'Web-server',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6434,'HTTP web server',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6436,'Web servers',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6437,'WWW server',1,522,'also_known_as'); -INSERT INTO entity_mentions VALUES(6438,'HTTP server',1,522,'also_known_as'); -INSERT INTO entity_mentions VALUES(6439,'Jdom',1,523,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6440,'Java object model',1,523,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6441,'JSR 102',1,523,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6442,'Java Document Object Model',1,523,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6443,'Ldap',1,524,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6444,'Eldap',1,524,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6445,'LDAPS',1,524,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6447,'Database driver',1,525,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6448,'ODBC driver',1,525,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6449,'ODBC Driver',1,525,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6450,'Open DataBase Connectivity',1,525,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6451,'OBDC',1,525,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6452,'Odbc',1,525,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6453,'Open database connectivity',1,525,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6456,'Order management',1,526,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6459,'REST API',1,529,'also_known_as'); -INSERT INTO entity_mentions VALUES(6462,'REST Architecture',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6463,'REST-SST',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6464,'RESTful web service',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6465,'REST interface',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6466,'RESTFul',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6467,'RESTfully',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6468,'Rest interface',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6469,'Restful interface',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6470,'RESTful API',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6471,'Restful web service',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6472,'Restful',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6473,'Restful application',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6474,'RESTful',1,529,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6475,'SOA Lifecycle',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6476,'SOA environment',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6477,'Service Oriented Architecture',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6478,'Endpoint computing',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6479,'Service orientated architecture',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6480,'Soba (computing)',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6481,'Broker (service-oriented architecture)',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6483,'Service-oriented business application',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6484,'Service Oriented Computing',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6485,'Service-oriented Architecture',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6486,'Service-oriented architectures',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6487,'Service oriented architecture',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6488,'Service Orientated Architecture',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6489,'Service-orientated architecture',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6490,'Service-Orientated Architecture',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6491,'Service Oriented Architectures',1,530,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6493,'SOAP request',1,531,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6494,'SOAP (protocol)',1,531,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6495,'Soap service',1,531,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6496,'Structured Query Language',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6497,'SQL script',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6498,'ANSI SQL',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6499,'SQL Servers',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6500,'Procedural SQL',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6501,'Structured query language',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6502,'SQL language',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6503,'Distributed SQL processing',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6504,'SQL programming language',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6505,'Transaction Control Language',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6506,'SEQUEL',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6507,'SQL (programming language)',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6508,'SQL database',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6509,'Structure Query Language',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6510,'Sql',1,572,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6511,'Yaml',1,533,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6512,'Yet Another Markup Language',1,533,'also_known_as'); -INSERT INTO entity_mentions VALUES(6513,'YAML Ain''t Markup Language',1,533,'also_known_as'); -INSERT INTO entity_mentions VALUES(6514,'Model',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6515,'Model-view',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6516,'Model view controller triad',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6517,'controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6518,'view',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6519,'Model-template-view',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6520,'Model–View–Controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6521,'Model View Controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6522,'MVC controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6523,'View (MVC)',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6524,'Model-View-Controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6525,'Controller (MVC)',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6526,'MVC Design Pattern',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6527,'MVC architecture',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6528,'Model-view controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6529,'Model-Template-View',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6530,'MVC Pattern',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6531,'Model-view-controller design pattern',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6532,'Model-View-Controller paradigm',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6533,'Model view controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6534,'Model/View/Controller',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6535,'MVC view',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6536,'MVC model',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6537,'Model (MVC)',1,574,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6538,'Model-view-controller',1,574,'also_known_as'); -INSERT INTO entity_mentions VALUES(6539,'Application server computing',1,535,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6541,'Mobile App Server',1,535,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6542,'Application servers',1,535,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6543,'Enterprise application server',1,535,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6544,'Java application server',1,535,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6545,'Appserver',1,535,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6546,'App server',1,535,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6547,'Web application server',1,535,'also_known_as'); -INSERT INTO entity_mentions VALUES(6548,'Cloud hosting',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6549,'Cloud architecture',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6550,'Cloud service',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6551,'IoT Cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6552,'Cloud-hosted',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6553,'Cloud vendor',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6554,'Cloud Provider Interface',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6555,'Cloud transformation',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6556,'XaaS',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6557,'Cloud computing platform',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6558,'Cloud computing vendor',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6559,'Cloud Computing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6560,'Cloud-based',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6561,'Cloud provider',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6562,'Could computing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6563,'Cloud computing provider',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6564,'Computing cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6565,'Computing in the cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6566,'Communication as a service',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6567,'Cloud infrastructure',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6568,'Hybrid cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6569,'Private cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6570,'Cloud Technology',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6571,'Cloud client',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6572,'Cloud vendors',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6573,'Cloud networking',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6574,'Cloud Hosting',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6575,'Remote computing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6576,'Private Cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6577,'Computing-in-the-cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6578,'Cloud hardware',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6579,'Cloud computer',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6580,'Cloud technology',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6581,'Public Cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6582,'Cloud processing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6583,'Burst computing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6584,'Member Only Cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6585,'Content Marketing Cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6586,'Cloud computing user',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6587,'Cloud Applications',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6588,'Online software',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6589,'Cloud Software',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6590,'Cloud services provider',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6591,'Computer cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6592,'Cloud-computing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6593,'Cloud distribution',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6594,'Public cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6595,'Cloud services',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6596,'Cloud-based computing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6597,'Cloud Service',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6598,'Cloudware',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6599,'EaaS',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6600,'Cloud service provider',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6601,'Cloud software',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6602,'Cloud user',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6603,'Cloud (computing)',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6604,'Cross-Platform Hybrid Cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6605,'Cloud Infrastructure',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6606,'Cloud (computers)',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6607,'Hybrid Cloud',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6608,'Cloud standards',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6609,'Cloud users',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6610,'Cloud clients',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6611,'Cloud computing platforms',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6612,'Enterprise Cloud Computing',1,536,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6613,'Dynamic Provisioning Environment',1,538,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6615,'Workgroup File server',1,541,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6616,'Fileserver',1,541,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6617,'File host',1,541,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6618,'Storage server',1,541,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6620,'Workgroup file server',1,541,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6621,'File Server Solution',1,541,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6622,'Nominal ledgers',1,542,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6624,'Generalledger',1,542,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6625,'General ledgers',1,542,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6626,'Nominal ledger',1,542,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6635,'HTTP daemon',1,522,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6641,'IXP',1,546,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6642,'Internet Exchange',1,546,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6643,'Internet exchange',1,546,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6644,'Internet Exchange Point',1,546,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6645,'IMAP server',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6646,'DIMAP',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6647,'Interactive Mail Access Protocol',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6648,'IMAP4',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6649,'IMAP3',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6650,'Imapd',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6651,'IMAPv4',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6652,'Imaps',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6653,'IMAPS',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6654,'Internet message access protocol',1,547,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6656,'Javascript Object Notation',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6657,'Json',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6658,'JSONNP',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6659,'Internet JSON',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6660,'JSON Schema',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6661,'JSON5',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6662,'I-JSON',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6663,'HJSON',1,548,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6664,'JavaScript Object Notation',1,548,'also_known_as'); -INSERT INTO entity_mentions VALUES(6665,'Mainframe computers',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6666,'Mainframe',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6667,'Main frame',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6668,'Big-iron',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6669,'MainFrame',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6670,'Mainframe computing',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6671,'Mainframe Computer',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6672,'Main frame computer',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6673,'Mainframes',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6674,'Big iron (computing)',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6675,'Main Frame Computer',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6676,'Main-frame',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6677,'Mainframe server',1,552,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6679,'Manufacturing execution systems',1,553,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6680,'Manufacturing Execution Systems',1,553,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6682,'Software as a secure service',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6683,'Saasworld',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6684,'Software as service',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6685,'SasS',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6686,'Software-As-A-Service',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6687,'Software-as-a-service',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6688,'OpenSaaS',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6689,'Software plus services',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6690,'Software-as-a-Service',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6691,'Software As A Service',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6692,'Software as a Service',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6693,'Software as a sevice',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6694,'Cloud application',1,556,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6695,'SaaSS',1,556,'also_known_as'); -INSERT INTO entity_mentions VALUES(6697,'Storage area networks',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6698,'Storage Area Networks',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6699,'Storage network',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6700,'Distributed storage area networks',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6702,'Sanoip',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6703,'SANoIP',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6704,'Storage area networking',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6705,'San server',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6706,'SAN (computing)',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6707,'Storage Area Network(SAN)',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6708,'Centralized storage area networks',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6709,'Storage layer',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6711,'Storage networking',1,557,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6712,'Online desktop',1,560,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6713,'WebTop',1,560,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6714,'Cloud desktop',1,560,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6716,'Web Desktop',1,560,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6717,'Anonymous Surfing',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6718,'Proxy IP address',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6719,'Application layer proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6720,'Caching proxy server',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6721,'Translation proxy server',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6722,'Internet proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6723,'Anonymous server',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6724,'Anonymous Web surfing',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6725,'Proxyserver',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6726,'Web Proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6727,'Proxy Bouncing',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6728,'Proxifier',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6729,'Http proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6730,'Proxy chaining',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6731,'Suffix proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6732,'Anonymity network',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6733,'Application-layer proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6734,'CGI proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6735,'HTTP proxy server',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6736,'Free proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6737,'Proxy Website',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6738,'Intercepting proxy server',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6739,'HTTPS Proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6740,'Proxy chain',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6741,'Proxy IP',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6742,'Proxy gateway',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6743,'Web proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6745,'Web proxies',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6746,'Proxy servers',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6747,'Proxy bypass',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6748,'Anonymous proxy server',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6749,'Bypass (computing)',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6750,'Residential proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6751,'Transparent proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6752,'Myspace proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6753,'Split proxies',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6754,'Forward proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6755,'P roxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6756,'HTTP proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6757,'Proxy Sites',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6758,'SSL Proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6759,'Anonymous Web proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6760,'Server proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6761,'Tproxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6762,'Circumventor',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6763,'Caching proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6764,'Secure & Anonymous Internet Surfing',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6765,'HTTP proxying',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6766,'Proxy filter',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6767,'Anonymous web proxy',1,561,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6768,'Utility (computer science)',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6769,'Software utility',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6770,'Utility program',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6771,'Utility (software)',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6772,'Software utilities',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6773,'Utility Programs',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6774,'Utility (computing)',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6775,'Utility Software',1,562,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6776,'NetScaler',3,563,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6777,'Netscaler',3,563,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6778,'Oracle virtual machine',3,567,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6780,'ESX Server',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6781,'VMware ESXi Server',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6782,'VMware ESX Server 2.0',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6783,'VMWare ESX Server',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6784,'ESX Server 3i',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6785,'VMware ESX Server 3.0',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6786,'VMware ESX',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6787,'VMware ESXi (software)',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6790,'VMware ESX Server',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6791,'ESXI',3,568,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6793,'VMware GSX Server',3,569,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6794,'GSX Server',3,569,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6795,'VMWare Server',3,569,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6811,'Structured Programming Facility',2,223,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6812,'System Productivity Facility',2,223,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6813,'Program Development Facility',2,223,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(6814,'Interactive System Productivity Facility',2,223,'also_known_as'); -INSERT INTO entity_mentions VALUES(6974,'Data Source Views',2,581,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7032,'ISO 14882',9,583,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7050,'Java Language Specification',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7057,'Java language specification',9,584,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7119,'OpenRsync',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7120,'Openbsd',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7121,'OpenCVS',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7122,'Opencvs',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7123,'Open bsd',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7124,'OpenBSD project',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7125,'Open BSD',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7126,'OpenBSD Project',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7127,'Obsd',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7128,'Openrsync',6,590,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7129,'VSE/SP',6,591,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7130,'Z/VSE (operating system)',6,591,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7131,'VSE/ESA',6,591,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7132,'Z/VSE',6,591,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7140,'ASP Hints',9,592,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7143,'MSDOS',6,593,'also_known_as'); -INSERT INTO entity_mentions VALUES(7146,'MS-DOS 1.51',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7147,'Microsoft Arabic MS-DOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7148,'HP MS-DOS 3.22R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7149,'MS-DOS 3.31',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7150,'MS-DOS 5.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7151,'MS-DOS 3.3a',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7152,'MS-DOS 3.3A',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7153,'Ms-dos',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7154,'TI MS-DOS 2.12',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7155,'MS-DOS 3.30',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7156,'MS-DOS 1.52',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7157,'Ms-Dos',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7158,'TeleVideo Personal Computer DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7159,'MSN-DOS Prompt',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7160,'MS-DOS 2.5',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7161,'AST Premium Exec DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7162,'Texas Instruments MS-DOS 2.12',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7163,'MS-DOS 1.50',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7164,'MS-DOS 1.20',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7165,'Altos MS-DOS 2.11',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7166,'Microsoft Hebrew MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7167,'MS-DOS 3.22R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7168,'MS-DOS 3.4',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7169,'MSdos',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7170,'HDOS (Microsoft)',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7171,'MS-DOS 3.21R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7172,'Microsoft MS-DOS 3.30A',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7173,'Compaq MS-DOS 3.31',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7174,'TeleVideo PC DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7175,'AST Premium Exec MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7176,'NCR-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7177,'MS-DOS 7.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7178,'Microsoft ADOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7179,'MS-DOS 1.23',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7180,'Hebrew MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7181,'MS-DOS 2.25',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7182,'MS-DOS 3.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7183,'ADOS 5.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7184,'Microsoft HDOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7185,'MS-DOS 2.12',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7186,'MS-DOS 2.11',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7187,'MS-DOS Mobile',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7188,'MS-DOS 2.10',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7189,'Microsoft HDOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7190,'MS-DOS 1.27',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7191,'MS-DOS 5.01',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7192,'MS-DOS 1.11',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7193,'MS-DOS 8.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7194,'Tandy MS-DOS 2.11R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7195,'MS-DOS 6.x',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7196,'MS-DOS 2.05',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7197,'MS-DOS 3.30+',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7198,'MS-DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7199,'HDOS (MS-DOS)',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7200,'MS/DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7201,'MS-DOS 1.1',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7202,'MS-DOS 2.50',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7203,'Microsoft Arabic MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7204,'MS-DOS 3.1',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7205,'MS-DOS 1.14',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7206,'MS-DOS 2.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7207,'MS-DOS 3.3R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7208,'TeleVideo Personal Computer DOS 2.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7209,'ADOS (Microsoft)',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7210,'MS-DOS 3.40',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7211,'MS-DOS 2.13',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7212,'TeleVideo PC DOS 2.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7213,'Microsoft Arabic MS-DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7214,'AST Premium Exec MS-DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7215,'Access DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7216,'MS-DOS 3.30a',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7217,'MS-DOS 2.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7218,'PC MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7219,'MS-DOS 3.30A',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7220,'TI MS-DOS 3.30R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7221,'MS-DOS 6',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7222,'MS-DOS 5',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7223,'Microsoft MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7224,'MS-DOS 1.2',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7225,'MS-DOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7226,'ADOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7227,'Texas Instruments MS-DOS 3.3R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7228,'AST MS-DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7229,'Microsoft HDOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7230,'TI MS-DOS 3.3R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7231,'MS-DOS 4.00 (IBM-developed)',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7232,'MS-DOS 1.22',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7233,'MS-DOS 1.53',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7234,'ADOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7235,'MS-ROMDOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7236,'MS-DOS 3.25',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7237,'Hebrew MS-DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7238,'MS-DOS 1.40',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7239,'MS-DOS 3.30R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7240,'AST Premium Exec DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7241,'Texas Instruments MS-DOS 3.30R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7242,'MS-DOS 1.25',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7243,'MS-DOS 2.01',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7244,'MS-DOS 1.26',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7245,'MS-DOS 1.41',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7246,'MS-DOS 1.29',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7247,'TeleVideo Personal Computer DOS 2.11',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7248,'MS-DOS 6.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7249,'Microsoft MS-DOS 3.30a',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7250,'TeleVideo PC DOS 2.11',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7251,'SB-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7252,'Microsoft Hebrew MS-DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7253,'HDOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7254,'Hewlett-Packard MS-DOS 3.22R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7255,'MS-DOS 5.00A',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7256,'MS-DOS 6.22',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7257,'Microsoft ADOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7258,'MS-DOS 3.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7259,'MS-DOS 2.2',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7260,'Hebrew MS-DOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7261,'MS-DOS 1',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7262,'COMPAQ-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7263,'MS-DOS 3.21',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7264,'MS-DOS 3.2',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7265,'Microsoft MS-DOS 3.3A',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7266,'MS-DOS 3.22',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7267,'MS-DOS 6.21',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7268,'MS-DOS 3.20',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7269,'Microsoft ADOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7270,'MS-DOS 1.30',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7271,'MS-DOS 7.10',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7272,'MS-DOS 3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7273,'MS-DOS 4.01',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7274,'Altos MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7275,'Microsoft Hebrew MS-DOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7276,'Arabic MS-DOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7277,'MsDOS',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7278,'MS-DOS 1.28',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7279,'MS-DOS 2.20',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7280,'MS-DOS 1.13',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7281,'MS-DOS 1.24',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7282,'HDOS 5.00',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7283,'ADOS (MS-DOS)',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7284,'MS-DOS 1.21',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7285,'MS-DOS 2',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7286,'HDOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7287,'MS DOS Mobile',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7288,'MS-DOS 6.2',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7289,'MS-DOS 6.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7290,'MS-DOS 2.11R',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7291,'MS-DOS 1.12',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7292,'MS-DOS 6.20',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7293,'Arabic MS-DOS 3.3',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7294,'Arabic MS-DOS 5.0',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7295,'MS-DOS 4.0 (IBM-developed)',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7296,'Microsoft MS-DOS 3.3a',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7297,'MS-DOS 1.54',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7298,'MS-DOS 3.10',6,593,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7335,'XML comment',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7339,'XML Specification',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7342,'XML vocabulary',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7345,'XML document',9,596,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7356,'DOS/VS',6,597,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7357,'IBM TOS/360',6,597,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7359,'Tape Operating System',6,597,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7360,'TOS/360',6,597,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7361,'SSX/VSE',6,597,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7362,'Z/TPF',6,598,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7363,'TPF/ESA',6,598,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7394,'T3Server',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7395,'DbKona',8,600,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7401,'Netbsd',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7402,'NETBSD',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7403,'Nbsd',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7404,'The NetBSD Foundation',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7405,'NBSD',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7406,'Net bsd',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7407,'Net BSD',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7408,'NetBSD kernel',6,602,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7438,'Web part packager',2,603,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7466,'Arbor Software',2,607,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7486,'credstash',2,612,NULL); -INSERT INTO entity_mentions VALUES(7487,'Snyk',2,613,NULL); -INSERT INTO entity_mentions VALUES(7488,'Akka',2,614,NULL); -INSERT INTO entity_mentions VALUES(7489,'Akka (software)',2,614,NULL); -INSERT INTO entity_mentions VALUES(7490,'Akka (toolkit)',2,614,NULL); -INSERT INTO entity_mentions VALUES(7491,'Varnish',8,615,NULL); -INSERT INTO entity_mentions VALUES(7492,'Varnish (Software)',8,615,NULL); -INSERT INTO entity_mentions VALUES(7493,'Varinish (Software)',8,615,NULL); -INSERT INTO entity_mentions VALUES(7494,'Varnish cache',8,615,NULL); -INSERT INTO entity_mentions VALUES(7495,'Varnishd',8,615,NULL); -INSERT INTO entity_mentions VALUES(7496,'Varnish cache server',8,615,NULL); -INSERT INTO entity_mentions VALUES(7497,'Varnish-cache.org',8,615,NULL); -INSERT INTO entity_mentions VALUES(7498,'Varnish (software)',8,615,NULL); -INSERT INTO entity_mentions VALUES(7499,'Datadog',10,616,NULL); -INSERT INTO entity_mentions VALUES(7500,'API',1,617,NULL); -INSERT INTO entity_mentions VALUES(7501,'Application-programming interface',1,617,NULL); -INSERT INTO entity_mentions VALUES(7502,'Application Programming Interfaces',1,617,NULL); -INSERT INTO entity_mentions VALUES(7503,'Application-level interaction',1,617,NULL); -INSERT INTO entity_mentions VALUES(7504,'Application Program Interface',1,617,NULL); -INSERT INTO entity_mentions VALUES(7505,'Api',1,617,NULL); -INSERT INTO entity_mentions VALUES(7506,'API documentation',1,617,NULL); -INSERT INTO entity_mentions VALUES(7507,'API Documentation',1,617,NULL); -INSERT INTO entity_mentions VALUES(7508,'Application Programming Interface (API)',1,617,NULL); -INSERT INTO entity_mentions VALUES(7509,'Application program interface',1,617,NULL); -INSERT INTO entity_mentions VALUES(7510,'Applications programming interface',1,617,NULL); -INSERT INTO entity_mentions VALUES(7512,'Hazelcast',10,618,NULL); -INSERT INTO entity_mentions VALUES(7513,'Nuxeo',10,620,NULL); -INSERT INTO entity_mentions VALUES(7514,'ArangoDB',2,621,NULL); -INSERT INTO entity_mentions VALUES(7515,'AQL (ArangoDB Query Language)',2,621,NULL); -INSERT INTO entity_mentions VALUES(7516,'AvocadoDB',2,621,NULL); -INSERT INTO entity_mentions VALUES(7517,'Eclipse Che',2,622,NULL); -INSERT INTO entity_mentions VALUES(7518,'Codenvy',2,622,NULL); -INSERT INTO entity_mentions VALUES(7519,'Amazon S3',2,623,NULL); -INSERT INTO entity_mentions VALUES(7520,'Amazon Simple Storage Service',2,623,NULL); -INSERT INTO entity_mentions VALUES(7521,'Simple Storage Service',2,623,NULL); -INSERT INTO entity_mentions VALUES(7522,'S3.amazonaws.com',2,623,NULL); -INSERT INTO entity_mentions VALUES(7523,'Amazon-s3',2,623,NULL); -INSERT INTO entity_mentions VALUES(7524,'AWS S3',2,623,NULL); -INSERT INTO entity_mentions VALUES(7525,'Applications that use S3 API',2,623,NULL); -INSERT INTO entity_mentions VALUES(7526,'User:Leoinspace/Applications that use S3 API',2,623,NULL); -INSERT INTO entity_mentions VALUES(7527,'Amazon S3 server',2,623,NULL); -INSERT INTO entity_mentions VALUES(7528,'Amazon s3',2,623,NULL); -INSERT INTO entity_mentions VALUES(7530,'S3',2,623,NULL); -INSERT INTO entity_mentions VALUES(7531,'ClickHouse',2,624,NULL); -INSERT INTO entity_mentions VALUES(7532,'Clickhouse',2,624,NULL); -INSERT INTO entity_mentions VALUES(7533,'MinIO',2,625,NULL); -INSERT INTO entity_mentions VALUES(7534,'Minio',2,625,NULL); -INSERT INTO entity_mentions VALUES(7535,'Elasticsearch',2,626,NULL); -INSERT INTO entity_mentions VALUES(7536,'Compass Project',2,626,NULL); -INSERT INTO entity_mentions VALUES(7537,'ElasticSearch',2,626,NULL); -INSERT INTO entity_mentions VALUES(7538,'Shay Banon',2,626,NULL); -INSERT INTO entity_mentions VALUES(7539,'Logstash',2,626,NULL); -INSERT INTO entity_mentions VALUES(7540,'Elastic search',2,626,NULL); -INSERT INTO entity_mentions VALUES(7541,'Elastic Search',2,626,NULL); -INSERT INTO entity_mentions VALUES(7542,'Elasticsearch BV',2,626,NULL); -INSERT INTO entity_mentions VALUES(7543,'Elastic stack',2,626,NULL); -INSERT INTO entity_mentions VALUES(7544,'ELK stack',2,626,NULL); -INSERT INTO entity_mentions VALUES(7545,'es',2,626,NULL); -INSERT INTO entity_mentions VALUES(7546,'XtraDB',2,627,NULL); -INSERT INTO entity_mentions VALUES(7547,'Xtradb',2,627,NULL); -INSERT INTO entity_mentions VALUES(7548,'Xtra DB',2,627,NULL); -INSERT INTO entity_mentions VALUES(7549,'Percona XtraDB',2,627,NULL); -INSERT INTO entity_mentions VALUES(7550,'Keycloak',2,628,NULL); -INSERT INTO entity_mentions VALUES(7551,'JBoss SSO',2,628,NULL); -INSERT INTO entity_mentions VALUES(7552,'PicketLink (software)',2,628,NULL); -INSERT INTO entity_mentions VALUES(7553,'Grafana',2,629,NULL); -INSERT INTO entity_mentions VALUES(7554,'Mattermost',10,630,NULL); -INSERT INTO entity_mentions VALUES(7555,'Mattermost.com',10,630,NULL); -INSERT INTO entity_mentions VALUES(7556,'Cloud IAM',2,632,NULL); -INSERT INTO entity_mentions VALUES(7557,'Knative',10,633,NULL); -INSERT INTO entity_mentions VALUES(7558,'Apache Cassandra',2,634,NULL); -INSERT INTO entity_mentions VALUES(7559,'Apache cassandra',2,634,NULL); -INSERT INTO entity_mentions VALUES(7560,'Cassandra (database)',2,634,NULL); -INSERT INTO entity_mentions VALUES(7561,'Cassandra (software)',2,634,NULL); -INSERT INTO entity_mentions VALUES(7562,'Cassandra software',2,634,NULL); -INSERT INTO entity_mentions VALUES(7563,'Cassandra',2,634,NULL); -INSERT INTO entity_mentions VALUES(7564,'Kubeflow',10,635,NULL); -INSERT INTO entity_mentions VALUES(7565,'Qiskit',2,636,NULL); -INSERT INTO entity_mentions VALUES(7566,'QISKit',2,636,NULL); -INSERT INTO entity_mentions VALUES(7567,'Microsoft Azure',2,637,NULL); -INSERT INTO entity_mentions VALUES(7568,'Windows Strata',2,637,NULL); -INSERT INTO entity_mentions VALUES(7569,'Windows Cloud',2,637,NULL); -INSERT INTO entity_mentions VALUES(7570,'Windows azure',2,637,NULL); -INSERT INTO entity_mentions VALUES(7571,'Windows Azure Fabric Controller',2,637,NULL); -INSERT INTO entity_mentions VALUES(7572,'Microsoft Windows Azure',2,637,NULL); -INSERT INTO entity_mentions VALUES(7573,'Azure Services Platform',2,637,NULL); -INSERT INTO entity_mentions VALUES(7574,'Windows Azure',2,637,NULL); -INSERT INTO entity_mentions VALUES(7575,'Azure machine learning studio',2,637,NULL); -INSERT INTO entity_mentions VALUES(7576,'Microsoft azure',2,637,NULL); -INSERT INTO entity_mentions VALUES(7577,'Ethereum Blockchain as a Service',2,637,NULL); -INSERT INTO entity_mentions VALUES(7579,'Azure',2,637,NULL); -INSERT INTO entity_mentions VALUES(7580,'Strimzi',10,638,NULL); -INSERT INTO entity_mentions VALUES(7581,'Sematext',10,639,NULL); -INSERT INTO entity_mentions VALUES(7582,'Eclipse Ditto',2,641,NULL); -INSERT INTO entity_mentions VALUES(7583,'Zadara',2,643,NULL); -INSERT INTO entity_mentions VALUES(7584,'Zadara Storage',2,643,NULL); -INSERT INTO entity_mentions VALUES(7585,'Istio',2,644,NULL); -INSERT INTO entity_mentions VALUES(7586,'Vault',2,645,NULL); -INSERT INTO entity_mentions VALUES(7587,'Vault overseer',2,645,NULL); -INSERT INTO entity_mentions VALUES(7588,'Vault (disambiguation)',2,645,NULL); -INSERT INTO entity_mentions VALUES(7589,'Vaults',2,645,NULL); -INSERT INTO entity_mentions VALUES(7590,'Vault (software)',2,645,NULL); -INSERT INTO entity_mentions VALUES(7591,'HashiCorp Vault',2,645,NULL); -INSERT INTO entity_mentions VALUES(7592,'Apache Druid',2,646,NULL); -INSERT INTO entity_mentions VALUES(7593,'Druid (open-source data store)',2,646,NULL); -INSERT INTO entity_mentions VALUES(7594,'etcd',2,647,NULL); -INSERT INTO entity_mentions VALUES(7595,'Traefik',8,648,NULL); -INSERT INTO entity_mentions VALUES(7596,'IBM Cloud',2,649,NULL); -INSERT INTO entity_mentions VALUES(7597,'Bluemix',2,649,NULL); -INSERT INTO entity_mentions VALUES(7598,'IBM Bluemix',2,649,NULL); -INSERT INTO entity_mentions VALUES(7599,'OpenWhisk',2,649,NULL); -INSERT INTO entity_mentions VALUES(7600,'CockroachDB',2,651,NULL); -INSERT INTO entity_mentions VALUES(7601,'Cockroach DB',2,651,NULL); -INSERT INTO entity_mentions VALUES(7602,'User:Remote50/sandbox',2,651,NULL); -INSERT INTO entity_mentions VALUES(7603,'Cockroachlabs',2,651,NULL); -INSERT INTO entity_mentions VALUES(7604,'Cockroach Labs',2,651,NULL); -INSERT INTO entity_mentions VALUES(7605,'Jaeger',10,652,NULL); -INSERT INTO entity_mentions VALUES(7606,'NATURAL',9,653,'others'); -INSERT INTO entity_mentions VALUES(7607,'NPL',9,653,'others'); -INSERT INTO entity_mentions VALUES(7608,'Natural Programming Language',9,653,'others'); -INSERT INTO entity_mentions VALUES(7609,'ACUCOBOL-GT',9,654,'also_known_as'); -INSERT INTO entity_mentions VALUES(7610,'ACUCOBOL',9,654,'also_known_as'); -INSERT INTO entity_mentions VALUES(7611,'AcuCOBOL',9,654,'also_known_as'); -INSERT INTO entity_mentions VALUES(7612,'Ada',9,655,'also_known_as'); -INSERT INTO entity_mentions VALUES(7613,'MIL-STD-1815',9,655,'also_known_as'); -INSERT INTO entity_mentions VALUES(7614,'ISO/IEC 8652',9,655,'also_known_as'); -INSERT INTO entity_mentions VALUES(7615,'Ada 95',9,655,'also_known_as'); -INSERT INTO entity_mentions VALUES(7616,'Ada 83',9,655,'also_known_as'); -INSERT INTO entity_mentions VALUES(7617,'Ada 80',9,655,'also_known_as'); -INSERT INTO entity_mentions VALUES(7618,'Ada 2012',9,655,'also_known_as'); -INSERT INTO entity_mentions VALUES(7619,'Adaptable DAta BAse System',2,656,'also_known_as'); -INSERT INTO entity_mentions VALUES(7620,'ADABAS',2,656,'also_known_as'); -INSERT INTO entity_mentions VALUES(7621,'Adabas database',2,656,'also_known_as'); -INSERT INTO entity_mentions VALUES(7622,'Application Development System Online',9,657,'also_known_as'); -INSERT INTO entity_mentions VALUES(7623,'ADS/O',9,657,'also_known_as'); -INSERT INTO entity_mentions VALUES(7624,'ADS',9,657,'also_known_as'); -INSERT INTO entity_mentions VALUES(7625,'ADS/Online',9,657,'also_known_as'); -INSERT INTO entity_mentions VALUES(7626,'Ansible',2,5,'also_known_as'); -INSERT INTO entity_mentions VALUES(7627,'Ansible Software',2,5,'also_known_as'); -INSERT INTO entity_mentions VALUES(7628,'batch',9,659,'also_known_as'); -INSERT INTO entity_mentions VALUES(7629,'BAT file',9,659,'also_known_as'); -INSERT INTO entity_mentions VALUES(7630,'batch file',9,659,'also_known_as'); -INSERT INTO entity_mentions VALUES(7631,'Windows PowerShell',9,660,'also_known_as'); -INSERT INTO entity_mentions VALUES(7632,'PowerShell Core',9,660,'also_known_as'); -INSERT INTO entity_mentions VALUES(7633,'PS',9,660,'also_known_as'); -INSERT INTO entity_mentions VALUES(7634,'Power Shell',9,660,'also_known_as'); -INSERT INTO entity_mentions VALUES(7635,'Monal Shell',9,660,'also_known_as'); -INSERT INTO entity_mentions VALUES(7636,'Microsoft Shell',9,660,'also_known_as'); -INSERT INTO entity_mentions VALUES(7637,'MSH',9,660,'also_known_as'); -INSERT INTO entity_mentions VALUES(7638,'COM+',9,661,'also_known_as'); -INSERT INTO entity_mentions VALUES(7639,'Microsoft Component Services',9,661,'also_known_as'); -INSERT INTO entity_mentions VALUES(7640,'COM Services',9,661,'also_known_as'); -INSERT INTO entity_mentions VALUES(7641,'DataFlex',9,662,'also_known_as'); -INSERT INTO entity_mentions VALUES(7642,'Dataflex',9,662,'also_known_as'); -INSERT INTO entity_mentions VALUES(7643,'Visual DataFlex',9,662,'redirects_transclusions'); -INSERT INTO entity_mentions VALUES(7644,'DDS',9,663,'also_known_as'); -INSERT INTO entity_mentions VALUES(7645,'Data distribution service',9,663,'also_known_as'); -INSERT INTO entity_mentions VALUES(7646,'Forte 4GL',9,664,'also_known_as'); -INSERT INTO entity_mentions VALUES(7647,'Forte',9,664,'also_known_as'); -INSERT INTO entity_mentions VALUES(7648,'FoxPro',9,665,'also_known_as'); -INSERT INTO entity_mentions VALUES(7649,'Foxpro',9,665,'also_known_as'); -INSERT INTO entity_mentions VALUES(7650,'FoxPro 2',9,665,'also_known_as'); -INSERT INTO entity_mentions VALUES(7651,'FoxPro 26',9,665,'also_known_as'); -INSERT INTO entity_mentions VALUES(7652,'FoxPro 2.6',9,665,'also_known_as'); -INSERT INTO entity_mentions VALUES(7653,'FPU26',9,665,'also_known_as'); -INSERT INTO entity_mentions VALUES(7654,'IBM DB2 Purescale',2,666,'others'); -INSERT INTO entity_mentions VALUES(7655,'DB2 Purescale',2,666,'others'); -INSERT INTO entity_mentions VALUES(7656,'IDMS DB',2,667,'others'); -INSERT INTO entity_mentions VALUES(7657,'IDMS Database',2,667,'others'); -INSERT INTO entity_mentions VALUES(7658,'IDMS/DB Database',2,667,'others'); -INSERT INTO entity_mentions VALUES(7659,'IDMS/DB DML',9,668,'others'); -INSERT INTO entity_mentions VALUES(7660,'IDMS/DB Data Manipulation Language',9,668,'others'); -INSERT INTO entity_mentions VALUES(7661,'IDMS DML',9,668,'others'); -INSERT INTO entity_mentions VALUES(7662,'Jaguar',8,669,'others'); -INSERT INTO entity_mentions VALUES(7663,'EAServer',8,670,'also_known_as'); -INSERT INTO entity_mentions VALUES(7664,'Enterprise Application Server',8,670,'also_known_as'); -INSERT INTO entity_mentions VALUES(7665,'Sybase Enterprise Application Server',8,670,'also_known_as'); -INSERT INTO entity_mentions VALUES(7668,'Cassandra SGBD',2,634,'also_known_as'); -INSERT INTO entity_mentions VALUES(7669,'Netezza',4,672,'also_known_as'); -INSERT INTO entity_mentions VALUES(7670,'IBM Netezza',4,672,'also_known_as'); -INSERT INTO entity_mentions VALUES(7674,'OpenEdge Advanced Business Language',9,344,'also_known_as'); -INSERT INTO entity_mentions VALUES(7676,'Open Rapid Object Application Development',9,674,'also_known_as'); -INSERT INTO entity_mentions VALUES(7677,'Oracle Reports',2,675,'also_known_as'); -INSERT INTO entity_mentions VALUES(7678,'Oracle RPT',2,675,'also_known_as'); -INSERT INTO entity_mentions VALUES(7679,'Oracle Reports 1',2,675,'others'); -INSERT INTO entity_mentions VALUES(7680,'Oracle Reports 2.0',2,675,'others'); -INSERT INTO entity_mentions VALUES(7681,'Oracle Reports 2.5',2,675,'others'); -INSERT INTO entity_mentions VALUES(7682,'Oracle Reports 6i',2,675,'others'); -INSERT INTO entity_mentions VALUES(7683,'Oracle Reports 9i',2,675,'others'); -INSERT INTO entity_mentions VALUES(7684,'Oracle Reports 10g',2,675,'others'); -INSERT INTO entity_mentions VALUES(7685,'SAP Replication Server',2,676,'others'); -INSERT INTO entity_mentions VALUES(7686,'content tracker',2,677,'also_known_as'); -INSERT INTO entity_mentions VALUES(7687,'Git',2,677,'also_known_as'); -INSERT INTO entity_mentions VALUES(7688,'the stupid content tracker',2,677,'also_known_as'); -INSERT INTO entity_mentions VALUES(7689,'gitlab',2,678,'also_known_as'); -INSERT INTO entity_mentions VALUES(7690,'Virtual Storage Access Method',2,679,'also_known_as'); -INSERT INTO entity_mentions VALUES(7691,'VSAM',2,679,'also_known_as'); -INSERT INTO entity_mentions VALUES(7692,'BMS Map',9,689,'others'); -INSERT INTO entity_mentions VALUES(7693,'Basic Mapping Supprt',9,689,'others'); -INSERT INTO entity_mentions VALUES(7695,'DB400',2,690,'others'); -INSERT INTO entity_mentions VALUES(7696,'DB/400',2,690,'others'); -INSERT INTO entity_mentions VALUES(7697,'Integrated Language Environment',9,691,'also_known_as'); -INSERT INTO entity_mentions VALUES(7698,'ILE',9,691,'also_known_as'); -INSERT INTO entity_mentions VALUES(7699,'indexed sequential access method',2,693,'also_known_as'); -INSERT INTO entity_mentions VALUES(7700,'ISAM',2,693,'also_known_as'); -INSERT INTO entity_mentions VALUES(7701,'IBM ISAM',2,693,'others'); -INSERT INTO entity_mentions VALUES(7702,'Oracle RDS',2,694,'others'); -INSERT INTO entity_mentions VALUES(7703,'RDS Oracle DB',2,694,'others'); -INSERT INTO entity_mentions VALUES(7704,'Oracle RDS Database',2,694,'others'); -INSERT INTO entity_mentions VALUES(7705,'SAP IQ',2,695,'also_known_as'); -INSERT INTO entity_mentions VALUES(7706,'Sybase IQ',2,695,'also_known_as'); -INSERT INTO entity_mentions VALUES(7707,'SAP Sybase IQ',2,695,'also_known_as'); -INSERT INTO entity_mentions VALUES(7708,'z/Linux',2,437,'also_known_as'); -INSERT INTO entity_mentions VALUES(7709,'Linux on IBM Z',2,437,'also_known_as'); -INSERT INTO entity_mentions VALUES(7710,'Integrated Data Store (IDS)',2,692,'also_known_as'); -INSERT INTO entity_mentions VALUES(7711,'IDS',2,692,'also_known_as'); -INSERT INTO entity_mentions VALUES(7712,'IDS/I',2,692,'also_known_as'); -INSERT INTO entity_mentions VALUES(7713,'Springboot',12,399,'others'); -INSERT INTO entity_mentions VALUES(7714,'Apache Maven',2,697,'others'); -INSERT INTO entity_mentions VALUES(7715,'Maven',2,697,'also_known_as'); -INSERT INTO entity_mentions VALUES(7716,'BAL',9,698,'also_known_as'); -INSERT INTO entity_mentions VALUES(7717,'Basic Assembler Language',9,698,'also_known_as'); -INSERT INTO entity_mentions VALUES(7718,'Basic Assembly Language',9,698,'also_known_as'); -INSERT INTO entity_mentions VALUES(7719,'IBM Basic assembly language',9,698,'others'); -INSERT INTO entity_mentions VALUES(7720,'COM plus',9,661,'others'); -INSERT INTO entity_mentions VALUES(7721,'COM+ Events',9,661,'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1, 'DOT NET', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2, '.NET 4.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3, 'Dot net - FW 4', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4, '.Net 4.7.1 Enterprise Lib', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5, '.Net 3.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6, '.NET4.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7, '.NET Framework 4.x', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (8, 'Microsoft - Microsoft .NET Framework 2', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (9, 'Microsoft - Microsoft .NET Framework 3.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (10, '.NET 3.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (11, 'Dot Net Framework 3.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (12, '.NET', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (13, '.NET 4', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (14, '.Net 4.5.2 Enterprise Lib', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (15, '.NET2.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (16, 'DOTNET', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (17, 'Microsoft .NET Release 1.1', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (18, '.Net 4.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (19, '.NET 2.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (20, '.Net Framework 4.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (21, 'Microsoft .NET 4.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (22, '.net 2017', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (23, '.Net framework', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (24, 'Microsoft .NET Framework 4.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (25, '.net 4.0 Framework', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (26, 'Microsoft.NET 2.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (27, '.Net 4.5.2', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (28, '.NET 4.6', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (29, 'Microsoft - Microsoft .NET Framework 4', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (30, '.NET4.6', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (31, 'Microsoft - Microsoft .NET Framework 4.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (32, 'Dot Net Framework 4.5', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (33, 'Microsoft - Microsoft .NET Framework 3', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (34, 'Microsoft - Microsoft .Net Framework 1', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (35, 'Microsoft .NET Release 4.6', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (36, '.net Framework 3.5 SP1', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (37, 'Microsoft.net', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (38, 'Microsoft .NET', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (39, 'Microsoft .NET Release 2.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (40, 'Dot Net 2.0', 10, 497, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (41, 'Common Runtime Library', 7, 482, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (42, 'APACHE LOG4NET', 7, 483, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (43, 'LOG4NET', 7, 483, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (44, 'Magik', 7, 484, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (45, 'Magick.NET', 7, 484, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (46, 'WCF', 7, 485, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (47, 'Windows Communication Foundation', 7, 485, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (48, 'Windows Communication Foundation (WCF)', 7, 485, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (49, 'WWF', 7, 486, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (50, 'Windows Workflow Foundation (WF)', 7, 486, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (51, 'Windows Workflow Foundation', 7, 486, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (52, 'WinForms', 7, 487, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (53, 'Ejes', 2, 1, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (54, '(E)JES', 2, 1, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (55, '(UNIRITA) A-AUTO 7.2.2', 2, 2, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (56, 'A-AUTO', 2, 2, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (57, 'A-Auto Job Scheduling Software', 2, 2, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (58, 'Active Directoy', 10, 498, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (59, 'Active Directory (AD)', 10, 498, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (60, 'Active Server Page', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (61, 'ASPNet', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (62, 'Microsoft Active Server Pages 6.0', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (63, 'APSX', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (64, 'ASP .NET', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (65, 'Microsoft Active Server Pages', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (66, 'Microsoft ASP files', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (67, 'Active Server Pages (ASP)', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (68, 'ASP', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (69, 'Classic ASP', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (70, 'Classis ASP', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (71, 'ASP 3.0', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (72, 'ASP.NET', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (73, 'ASPX', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (74, 'ASP.NET 1.0.3705', 9, 592, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (75, 'ActiveX', 10, 500, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (76, 'ADO', 7, 488, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (77, 'Activiti', 2, 3, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (78, 'Adobe Acrobat Reader', 2, 4, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (79, 'Acrobat Reader', 2, 4, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (80, 'Adobe - Adobe Acrobat Reader DC 2019', 2, 4, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (81, 'Adobe Acrobat Reader DC 2019', 2, 4, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (82, 'Android', 6, 418, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (83, 'Android SDK', 6, 418, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (84, 'Andriod', 6, 418, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (85, 'ansible', 2, 5, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (86, 'Apache ActiveMQ', 2, 6, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (87, 'Apache Active Queue', 2, 6, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (88, 'MQ Apache Active Queue', 2, 6, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (89, 'Cordova', 10, 501, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (90, 'Cordova framework', 10, 501, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (91, 'Apache Cordova', 10, 501, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (92, 'cordova-android', 10, 501, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (93, 'Apache Hbase', 2, 7, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (94, 'Hbase', 2, 7, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (95, 'Hive', 2, 8, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (96, 'Apache Hive', 2, 8, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (97, 'Apache HTTP Server 2.0', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (98, 'Apache HTTP Server 2.2 (Linux)', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (99, 'Apache HTTP Server 2.4 (Linux)', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (100, 'APACHE HTTP SERVER VERSION 2.2.13', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (101, 'TS-Apache HTTP Server 2.4', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (102, 'Apache', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (103, 'Apache Web Server', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (104, 'Apache 2.4', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (105, 'Apache HTTP Server 2.0 (Solaris)', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (106, 'APACHE HTTP SERVER VERSION 1.3', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (107, 'APACHE WEB SERVER VERSION 1.3.27', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (108, 'Apache WebServer', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (109, 'Apache HTTP Server 2.4', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (110, 'Apache 3', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (111, 'Apache Instance', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (112, 'Apache HTTP Server 2.0 (Linux)', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (113, 'Apache 2.4 - 32 bit', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (114, 'Apache HTTP Server 2.2', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (115, 'Apache HTTP Server', 8, 259, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (116, 'Apache Kafka', 2, 9, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (117, 'kafka', 2, 9, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (118, 'Apache Lucene', 12, 375, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (119, 'Lucene', 12, 375, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (120, 'ServiceMix', 2, 10, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (121, 'Apache ServiceMix', 2, 10, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (122, 'Apache Solr', 2, 11, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (123, 'solr', 2, 11, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (124, 'Subversion', 2, 12, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (125, 'Apache Subversion', 2, 12, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (126, 'Subversion software', 2, 12, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (127, 'Tomcat 8', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (128, 'APACHE TOMCAT VERSION 6', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (129, 'Tomcat 3', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (130, 'Apache Tomcat 6 (Linux)', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (131, 'Apache Tomcat', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (132, 'Apache Tomcat 3 (Linux)', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (133, 'tomcat', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (134, 'Tomcat 3/4/5/6/7', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (135, 'Apache Tomcat 7', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (136, 'Apache Software Foundation - Apache Tomcat 8.5', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (137, 'Tomcat 7', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (138, 'APACHE TOMCAT VERSION 7', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (139, 'Tomcat 6', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (140, 'Tomcat 8.0.33', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (141, 'Tomcat 7.0', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (142, 'Tomcat 9', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (143, 'Tomcat 4', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (144, 'Apache Software Foundation - Apache Tomcat 9', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (145, 'Apache Software Foundation - Apache Tomcat 7', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (146, 'Apache Tomcat 6', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (147, 'Apache Tomcat 8', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (148, 'Tomcat 8/9', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (149, 'Apache Tomcat 8.5.15', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (150, 'Apache Tomcat 9', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (151, 'Apache Software Foundation - Apache Tomcat 8', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (152, 'Apache Tomcat 1', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (153, 'Tomcat 5', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (154, 'Apache Tomcat 3', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (155, 'Apache Tomcat 8 (Linux)', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (156, 'APACHE TOMCAT VERSION 6.0', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (157, 'Apache Tomcat 5', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (158, 'Apache tomcat 9.0.12', 8, 260, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (159, 'Apache xerces', 12, 376, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (160, 'XERCES', 12, 376, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (161, 'Application Development Facility (ADF)', 2, 13, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (162, 'ADF', 2, 13, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (163, 'ADF (Application Development Facility)', 2, 13, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (164, 'Application Development Facility', 2, 13, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (165, 'ArcGIS Server 10.3.1', 8, 261, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (166, 'ArcGIS Server', 8, 261, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (167, 'Asterisk 1.8', 2, 14, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (168, 'Asterisk', 2, 14, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (169, 'AutoIt 3.3', 9, 299, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (170, 'AutoIt', 9, 299, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (171, 'AutoiIt', 9, 299, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (172, 'Automic - UC4', 2, 15, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (173, 'Automic Job Scheduler', 2, 15, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (174, 'Autosys', 2, 16, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (175, 'AWK', 9, 300, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (176, 'basic', 9, 301, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (177, 'WLS 10.2', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (178, 'BEA WebLogic Enterprise (WLE)', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (179, 'Oracle Weblogic 12.2.1.3.0', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (180, 'Oracle Weblogic 12c', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (181, 'Oracle Weblogic 12.2.1.2.0', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (182, 'BEA WLS', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (183, 'Weblogic 9.2.0.0', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (184, 'BEA WebLogic Server', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (185, 'Weblogic 12c', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (186, 'Oracle WebLogic Server 12', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (187, 'Weblogic 10.1 MP1', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (188, 'BEA WebLogic Server 8', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (189, 'Oracle WebLogic Server', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (190, 'WEBLOGIC-SERVER', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (191, 'Weblogic 12.2.1.2', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (192, 'Oracle WebLogic Server 12 (Linux)', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (193, 'Weblogic 12.2.1.3.0', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (194, 'WLE', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (195, 'Weblogic 10.3.0.0', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (196, 'Weblogic 12.1.3.0', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (197, 'Weblogic', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (198, 'Oracle WebLogic Server 10', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (199, 'ORACLE WEBLOGIC SERVER 10.3', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (200, 'Weblogic Server', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (201, 'Oracle Weblogic 8.1.1', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (202, 'Web Logic', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (203, 'Oracle Weblogic 12.x', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (204, 'BEA WEBLOGIC SERVER VERSION 7', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (205, 'Oracle Weblogic Server 12c', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (206, 'Weblogic 10.3.6.0', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (207, 'Oracle Weblogic 12.1.2', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (208, 'BEA WLE', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (209, 'WLS 10', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (210, 'WLS', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (211, 'WebLogic', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (212, 'ORACLE WEBLOGIC SERVER VERSION 10.3', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (213, 'Weblogic 12.2.1.1', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (214, 'BEA Weblogic', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (215, 'Oracle Weblogic 12.1', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (216, 'Weblogic 10', 8, 600, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (217, 'BeOS', 6, 419, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (218, 'Bluebeam Q', 2, 17, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (219, 'BMC Control-M CM For SAP 6.2', 2, 18, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (220, 'BMC Control-M', 2, 18, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (221, 'BMC Identity Management', 2, 19, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (222, 'IDM-BMC Identity Management', 2, 19, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (223, 'Borland Database Engine', 2, 20, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (224, 'Borland - BDE Administrator 1', 2, 20, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (225, 'Borland Database Engine (BDE)', 2, 20, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (226, 'Borland - BDE Administrator 5.2', 2, 20, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (227, 'brain script', 9, 302, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (228, 'BRAINScript', 9, 302, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (229, 'Business Intelligence and Reporting Tools', 2, 21, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (230, 'Actuate Report Server', 2, 21, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (231, 'BIRT', 2, 21, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (232, 'Business Intelligence and Reporting Tools (BIRT)', 2, 21, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (233, 'C', 9, 303, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (234, 'CSHARP', 9, 582, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (235, 'C# 3.0', 9, 582, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (236, 'C#', 9, 582, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (237, 'c-sharp', 9, 582, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (238, 'C+', 9, 583, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (239, 'C++', 9, 583, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (240, 'vc++', 9, 306, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (241, 'MSVC', 9, 306, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (242, 'Visual C++ 2008', 9, 306, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (243, 'Microsoft Visual C++', 9, 306, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (244, 'Visual C++', 9, 306, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (245, 'Microsoft - Microsoft Visual C++ 2008 Redistributable (x64) 9', 9, 306, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (246, 'vc', 9, 306, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (247, 'CA API Gateway', 4, 290, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (248, 'CA Gen 8', 2, 22, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (249, 'CA Gen', 2, 22, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (250, 'CA Technologies - Computer Associates Introscope 8.2', 2, 23, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (251, 'Introscope', 2, 23, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (252, 'CA Technologies - Computer Associates Introscope', 2, 23, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (253, 'CA Introscope', 2, 23, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (254, 'CA-Panvalet', 2, 24, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (255, 'Panvalet', 2, 24, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (256, 'Telon', 2, 25, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (257, 'CA-TELON', 2, 25, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (258, 'CSS 3', 9, 307, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (259, 'Style Sheet', 9, 307, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (260, 'Cascading Style Sheets', 9, 307, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (261, 'Cascading Style Sheets (CSS)', 9, 307, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (262, 'CSS', 9, 307, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (263, 'Bootstrap', 12, 377, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (264, 'Casegen', 2, 26, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (265, 'Chef Automate', 2, 27, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (266, 'CICS', 10, 502, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (267, 'Cisco AMP for Endpoints', 2, 28, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (268, 'Cisco Systems Inc. - Cisco AMP for Endpoints Connector 6.1', 2, 28, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (269, 'Cisco IOS', 6, 420, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (270, 'CiscoWorks', 2, 29, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (271, 'CISCO CISCOWORKS', 2, 29, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (272, 'CiscoWorks LAN Management Solution (LMS)', 2, 29, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (273, 'CiscoWorks LAN Management Solution', 2, 29, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (274, 'WinFrame', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (275, 'Citrix Virtual Apps', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (276, 'Citrix Managed Desktops', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (277, 'METAFRAME', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (278, 'XenApp', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (279, 'Citrix Metaframe', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (280, 'Citrix Server', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (281, 'Citrix Virtual Apps and Desktops', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (282, 'Presentation Server', 2, 30, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (283, 'NETSCALER-1.5', 3, 563, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (284, 'NETSCALER-11.', 3, 563, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (285, 'Citrix SD-WAN', 3, 563, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (286, 'NetScaler SD-WAN', 3, 563, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (287, 'Citrix NetScaler ADC', 3, 563, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (288, 'Citrix ADC', 3, 563, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (289, 'NetScaler ADC', 3, 563, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (290, 'NetScaler ADC VPX', 3, 564, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (291, 'Citrix ADC VPX', 3, 564, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (292, 'NetScaler VPX', 3, 564, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (293, 'Citrix NetScaler VPX', 3, 564, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (294, 'Citrix ADC BLX', 3, 565, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (295, 'NetScaler CPX', 2, 31, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (296, 'Citrix ADC CPX', 2, 31, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (297, 'Citrix ADC SDX', 4, 291, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (298, 'NetScaler SDX', 4, 291, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (299, 'Citrix ADC MPX', 4, 292, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (300, 'NetScaler MPX', 4, 292, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (301, 'Citrix Provisioning', 2, 32, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (302, 'Citrix Provisioning 2006', 2, 32, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (303, 'Citrix Provisioning Services', 2, 32, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (304, 'Provisioning Services 7.15.8', 2, 32, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (305, 'Citrix PVS', 2, 32, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (306, 'Clarify', 2, 33, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (307, 'Clear Basic', 5, 455, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (308, 'Clarify ClearBasic', 5, 455, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (309, 'Clarity LIMS', 2, 34, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (310, 'LabWare LIMS', 2, 35, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (311, 'Clipper', 9, 308, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (312, 'CLISTS', 9, 309, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (313, 'CLIST', 9, 309, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (314, 'COBOL II', 9, 594, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (315, 'COBOL', 9, 594, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (316, 'Cobol Assembler', 9, 594, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (317, 'IBM COGNOS BUSINESS INTELLIGENCE SERVER VERSION 10.2', 2, 36, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (318, 'IBM - COGNOS', 2, 36, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (319, 'IBM Cognos', 2, 36, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (320, 'Cognos', 2, 36, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (321, 'IBM Cognos ICM', 2, 36, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (322, 'Cold Fusion', 2, 37, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (323, 'Coldfusion Webserver', 2, 37, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (324, 'Coldfusion', 2, 37, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (325, 'ColdFus', 2, 37, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (326, 'CFML', 9, 311, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (327, 'ColdFusion Markup Language', 9, 311, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (328, 'ColdFusion Markup Language (CFML)', 9, 311, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (329, 'ConceptWave', 2, 38, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (330, 'CONNAPI', 2, 39, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (331, 'Sterling Connect', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (332, 'Connect Direct 4.5', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (333, 'IBM Sterling Connect:Direct', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (334, 'Connect:Direct', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (335, 'Connect Direct File agent', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (336, 'Connect Direct', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (337, 'IBM Sterling Connect:Direct vX', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (338, 'Sterling Connect:Direct', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (339, 'Connect Direct 4.5, 4.6', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (340, 'Connect Direct 4.6', 2, 40, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (341, 'Cormerstone', 2, 41, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (342, 'Cornerstone software', 2, 41, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (343, 'Cornerstone', 2, 41, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (344, 'Crystal Report', 2, 42, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (345, 'Crystal', 2, 42, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (346, 'Crystal Reports', 2, 42, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (347, 'DART', 6, 421, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (348, 'DL/I', 9, 312, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (349, 'Data Language/I', 9, 312, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (350, 'Data Language Interface (DL/I)', 9, 312, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (351, 'Data Language/One', 9, 312, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (352, 'Data Language/Interface', 9, 312, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (353, 'Dl1', 9, 312, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (354, 'Data Language Interface', 9, 312, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (355, 'DB2/400', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (356, 'IBM DB2 UDB/LUW ENTERPRISE SERVER EDITION DB2 v9.7 FP11 SB 37314', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (357, 'IBM - IBM DB2 Advanced Workgroup Server Edition OEM Limited Use 11.1', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (358, 'DB2 ESE 10.1', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (359, 'IBM - IBM DB2 Enterprise Server Edition - CPU Option 9.7', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (360, 'DB2 UDB', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (361, 'DB2', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (362, 'DB2 V9', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (363, 'IBM DB', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (364, 'DB2-UDB', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (365, 'DB2 11.1', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (366, 'IBM-DB2-V9', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (367, 'IBM - IBM DB2 Advanced Enterprise Server Edition OEM Limited Use 11.1', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (368, 'IBM - IBM DB2 Personal Edition Product Trial 9.7', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (369, 'IBM - IBM DB2 Enterprise Server Edition - CPU Option 10.1', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (370, 'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.*', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (371, 'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.7', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (372, 'IBM DB2 UDB/LUW ENTERPRISE SERVER EDITION DB2 ESE v9.7 FP 11 Special Build 35826 37314', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (373, 'DB2/UDB', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (374, 'IBM DB2 ENTERPRISE SERVER EDITION PVU OPTION 10.5', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (375, 'DB2 10.5', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (376, 'DB2 9.7', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (377, 'DB2 9.1', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (378, 'IBM - IBM DB2 UDB Enterprise Server Edition 8.2', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (379, 'DB2 for i', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (380, 'IBM - IBM DB2 Enterprise Server Edition OEM Limited Use 10.5', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (381, 'IBM - IBM DB2 Storage Optimization Feature 9.7', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (382, 'IBM - IBM DB2 Advanced Enterprise Server Edition PVU Option 10.5', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (383, 'UDB', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (384, 'IBM - IBM DB2 Enterprise Server Edition Product Trial 9.7', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (385, 'DB2 ESE 10.5', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (386, 'IBM DB2 ENTERPRISE SERVER EDITION - CPU OPTION 9.5', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (387, 'IBM DB2', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (388, 'IBM - IBM DB2 Workgroup Server Edition Product Trial 9.7', 2, 43, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (389, 'Delphi', 9, 313, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (390, 'docker', 10, 503, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (391, 'Documentum D2', 2, 44, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (392, 'Documentum content server', 2, 44, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (393, 'Documentum', 2, 44, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (394, 'DOCUMENTUM-CS', 2, 44, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (395, 'DRUPAL', 2, 45, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (396, 'Easytrieve', 9, 314, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (397, 'EZTriev', 9, 314, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (398, 'Eztrieve', 9, 314, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (399, 'Eclipse', 2, 46, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (400, 'ATLAS Transformation Language', 5, 456, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (401, 'ATL', 5, 456, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (402, 'ATLAS Transformation Language (ATL)', 5, 456, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (403, 'Elastic (ELK) Stack', 2, 47, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (404, 'ELK', 2, 47, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (405, 'EMC Celerra', 11, 510, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (406, 'ETAP License Manager (LM)', 2, 48, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (407, 'ETAP Licensing Manager/TARO GJH', 2, 48, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (408, 'ETAP License Manager', 2, 48, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (409, 'ETAP License Manager GJH', 2, 48, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (410, 'PrestoSoft - ExamDiff Application 1.6', 2, 49, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (411, 'PrestoSoft - ExamDiff Application', 2, 49, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (412, 'ExamDiff', 2, 49, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (413, 'ExamDiff Application', 2, 49, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (414, 'Expect', 9, 315, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (415, 'Expect Scripts', 9, 315, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (416, 'eXtensible HyperText Markup Language (XHTML)', 9, 316, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (417, 'eXtensible HyperText Markup Language', 9, 316, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (418, 'XHTML', 9, 316, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (419, 'XML', 9, 596, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (420, 'Extensible Markup Language', 9, 596, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (421, 'Extensible Markup Language (XML)', 9, 596, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (422, 'MSXML', 9, 318, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (423, 'Microsoft - MSXML 4.0 SP2 4.2', 9, 318, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (424, 'Extensible Stylesheet Language', 9, 319, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (425, 'XSL', 9, 319, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (426, 'Extensible Stylesheet Language (XSL)', 9, 319, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (427, 'Extensible Stylesheet Language Transformations (XLST)', 9, 320, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (428, 'Extensible Stylesheet Language Transformations', 9, 320, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (429, 'XSLT', 9, 320, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (430, 'ServerCA Access GatewayF5', 2, 50, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (431, 'F5 Secure Web Gateway Services', 2, 50, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (432, 'Fabric OS', 6, 422, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (433, 'FabricOS', 6, 422, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (434, 'FileMaker Pro', 2, 51, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (435, 'FILEMAKER PRO 8.5', 2, 51, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (436, 'Flash', 10, 504, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (437, 'Flexnet 2016', 2, 52, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (438, 'FlexNet Manager Suite', 2, 52, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (439, 'FlexNet Manager Suite 2016', 2, 52, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (440, 'FOCUS', 9, 321, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (441, 'fortran', 9, 322, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (442, 'Rhino Software Inc - FTP Voyager 16.2', 2, 53, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (443, 'FTP Voyager', 2, 53, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (444, 'Genymotion', 2, 54, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (445, 'GlassFish', 8, 263, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (446, 'GlassFish Server 4 Open Source', 8, 263, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (447, 'GlassFish Server 4', 8, 263, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (448, 'GNU', 6, 423, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (449, 'Go', 9, 323, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (450, 'Chrome', 2, 55, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (451, 'Google Chrome', 2, 55, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (452, 'Google Chrome 76', 2, 55, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (453, 'GraphQL', 9, 324, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (454, 'EMC Greenplum', 2, 56, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (455, 'Groovy', 9, 325, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (456, 'Hadoop', 2, 57, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (457, 'HAProxy', 8, 264, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (458, 'HiveQL', 9, 326, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (459, 'HP aC++ compiler', 2, 58, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (460, 'HP C++', 2, 58, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (461, 'HP aC++', 2, 58, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (462, 'HP C/aC++', 2, 58, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (463, 'HP C++ 10.20', 2, 58, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (464, 'HPC 11.11', 2, 59, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (465, 'HP C/ANSI C compiler', 2, 59, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (466, 'HP C/ANSI C', 2, 59, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (467, 'HP Nonstop J06.20.00', 4, 293, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (468, 'HP Nonstop', 4, 293, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (469, 'HP Operations Orchestration (HPOO)', 2, 60, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (470, 'HP Operations Orchestration', 2, 60, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (471, 'HPOO', 2, 60, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (472, 'HPSA', 2, 61, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (473, 'HP Server Automation', 2, 61, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (474, 'HP Server Automation (HPSA)', 2, 61, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (475, 'HFS', 10, 505, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (476, 'www.rejetto.com - HttpFileServer 2.3', 10, 505, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (477, 'HTTP File Server', 10, 505, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (478, 'HttpFileServer', 10, 505, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (479, 'Hypertext Markup Language', 9, 327, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (480, 'HTML4', 9, 327, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (481, 'HTML', 9, 327, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (482, 'Hypertext Markup Language (HTML)', 9, 327, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (483, 'HTML5', 9, 327, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (484, 'IBM BigFix', 2, 62, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (485, 'IBM - IBM BigFix Platform', 2, 62, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (486, 'IBM BigFix Platform', 2, 62, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (487, 'IBM - IBM BigFix Platform Client Deploy Tool 9.5', 5, 457, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (488, 'Client Deploy Tool', 5, 457, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (489, '(IBM) IBM Business Monitor 8.5.6', 2, 63, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (490, 'IBM Business Monitor', 2, 63, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (491, 'IBM BPM', 2, 64, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (492, 'IBM Business Process Manager', 2, 64, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (493, 'IBM Business Process Manager 8.5.7.0', 2, 64, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (494, '(IBM) IBM Business Process Manager 8.5.6', 2, 64, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (495, 'IBM Business Process Manager 8.5.6.0', 2, 64, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (496, 'IBM Content Manager OnDemand', 2, 65, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (497, 'IBM Content Manager OnDemand (CMOD)', 2, 65, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (498, 'CMOD', 2, 65, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (499, 'Data Power', 4, 294, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (500, 'IBM DataPower Gateway', 4, 294, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (501, 'IDG.7.5.2.19hp', 4, 294, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (502, 'datapower-connector', 4, 294, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (503, 'FileNet', 2, 66, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (504, 'IBM FileNet', 2, 66, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (505, 'IBM FileNet P8 Platform', 2, 66, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (506, 'hlasm', 9, 328, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (507, 'IBM High Level Assembler', 9, 328, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (508, 'IBM High Level Assembler (HLASM)', 9, 328, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (509, 'IBM - IBM HTTP Server 6.1', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (510, 'IHS', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (511, 'IBM - IBM HTTP Server 7', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (512, 'IBM - IBM HTTP Server 8.5', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (513, 'WebSphere and IHS', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (514, 'WebSphere http', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (515, '(IBM) IBM HTTP Server 8.5', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (516, 'IBM HTTP Server', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (517, 'IBM HTTP SERVER 8', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (518, 'IBM HTTP Server 8.', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (519, 'IBM Websphere HTTP Server', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (520, 'IBM HTTP', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (521, 'WebSphere IHS', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (522, 'WebSphere -IHS', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (523, 'IBM HTTP SERVER 6.1', 8, 265, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (524, 'IBMi', 6, 424, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (525, 'IBM i', 6, 424, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (526, 'OS400 V7R1', 6, 424, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (527, 'OS400', 6, 424, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (528, 'OS/400', 6, 424, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (529, 'CLP', 9, 329, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (530, 'IBM i Control Language (CL)', 9, 329, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (531, 'IBM Informix-4GL', 9, 330, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (532, 'Informix 4GL', 9, 330, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (533, 'Informix-4GL', 9, 330, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (534, 'DATASTAGE', 2, 67, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (535, 'IBM InfoSphere DataStage', 2, 67, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (536, 'datastage 11.3', 2, 67, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (537, 'IBM Integration Bus 10.0', 2, 68, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (538, 'IBM Integration Bus v9', 2, 68, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (539, 'IBM Integration Bus 9.0', 2, 68, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (540, 'IBM Integration Bus', 2, 68, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (541, 'IIB', 2, 68, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (542, 'IBM Integration Bus v10', 2, 68, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (543, 'Extended Structured Query Language (ESQL)', 5, 458, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (544, 'ESQL', 5, 458, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (545, 'Extended Structured Query Language', 5, 458, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (546, 'IBM - IBM License Metric Tool and Tivoli Asset Discovery for Distributed', 2, 69, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (547, 'IBM License Metric Tool', 2, 69, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (548, 'Maximo', 2, 70, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (549, 'IBM Maximo 7.6', 2, 70, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (550, 'IBM Maximo', 2, 70, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (551, 'IBM Migration Utility', 2, 71, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (552, 'IBM WorkLight', 2, 72, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (553, 'IBM Mobile Foundation', 2, 72, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (554, 'Operational Decision Manager', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (555, 'ILOG JRules', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (556, 'Decision Server 8.0.1.0', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (557, 'IBM WebSphere ILOG Jrules', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (558, 'IBM Operational Decision Manager (ODM)', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (559, 'Decision Center 8.0.1.0', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (560, 'IBM Operational Decision Manager', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (561, 'IBM ODM', 2, 73, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (562, 'AS400', 4, 295, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (563, 'AS/400', 4, 295, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (564, 'IBM Power Systems', 4, 295, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (565, 'System p', 4, 295, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (566, 'System i', 4, 295, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (567, 'P-series', 4, 295, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (568, 'IBM iSeries/AS400 system Model 520', 4, 295, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (569, 'IBM - IBM Spectrum Scale Express Client 4.1', 2, 605, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (570, 'IBM Spectrum Scale Server', 2, 605, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (571, 'IBM Spectrum Scale', 2, 605, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (572, 'IBM - IBM Spectrum Scale Express Server 4.1', 2, 605, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (573, 'IBM - IBM Spectrum Scale Standard Server 4.1', 2, 605, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (574, 'IBM - IBM Spectrum Scale Express FPO 4.1', 2, 605, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (575, 'IBM Spectrum Scale FPO', 2, 605, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (576, 'IBM Spectrum Scale Client', 2, 605, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (577, 'IBM - IBM Spectrum Scale Standard FPO 4.1', 2, 605, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (578, 'IBM - IBM Spectrum Scale Standard Client 4.1', 2, 605, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (579, 'IBM Tivoli Asset Management', 2, 606, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (580, 'Tivoli Asset Management', 2, 606, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (581, 'Asset Discovery for Distributed', 5, 459, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (582, 'Tivoli Asset Discovery for Distributed', 5, 459, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (583, 'IBM - IBM Tivoli Composite Application Manager for Microsoft Applications - MS SQL Server Agent 6.3', 2, 76, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (584, 'IBM Tivoli Composite Application Manager', 2, 76, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (585, 'IBM - IBM Tivoli Composite Application Manager Agent for DB2 7.1', 2, 76, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (586, 'IBM - IBM Tivoli Composite Application Manager for Microsoft Applications - IIS server agent 6.3', 2, 76, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (587, 'IBM - IBM Tivoli Monitoring - Windows OS Agent 6.2', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (588, 'IBM - IBM Tivoli Monitoring for Databases - DB2 Agent 6.2', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (589, 'IBM Tivoli Monitoring', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (590, 'IBM - IBM Tivoli Monitoring - Windows OS Agent 6.3', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (591, 'Tivoli Monitoring', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (592, 'Database MS SQL Agent', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (593, 'Linux OS Agent', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (594, 'Database DB2 Agent', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (595, 'IBM - IBM Tivoli Monitoring for Databases - MS SQL Agent 6.2', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (596, 'IBM - IBM Tivoli Monitoring - Linux OS Agent 6.2', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (597, 'Windows OS Agent', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (598, 'IBM - IBM Tivoli Monitoring - Windows OS Agent 6', 2, 77, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (599, 'IBM Tivoli Storage Manager', 2, 604, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (600, 'IBM - IBM TSM FCM', 2, 604, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (601, 'Tivoli Storage Manager', 2, 604, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (602, 'IBM - IBM Tivoli Storage Manager', 2, 604, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (603, 'IBM Tivoli Storage Manager API', 2, 604, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (604, 'IBM - IBM Tivoli Storage Manager for Databases - Data Protection for Microsoft SQL 6.3', 2, 604, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (605, 'Databases Data Protection for Microsoft SQL', 2, 604, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (606, 'IBM - IBM Tivoli Storage Manager API 6.4', 2, 604, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (607, 'IBM - IBM Spectrum Protect Data Protection for Microsoft SQL Server 8.1', 2, 604, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (608, 'IBM Spectrum Protect Data Protection', 2, 604, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (609, 'TSM API', 5, 460, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (610, 'IBM - IBM Spectrum Protect API 7.1', 5, 460, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (611, 'IBM - IBM Spectrum Protect Client', 5, 461, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (612, 'TSM Client', 5, 461, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (613, 'IBM - IBM Tivoli Storage Manager Client', 5, 461, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (614, 'TSM Storage Agent', 5, 462, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (615, 'IBM - IBM Spectrum Protect Storage Agent 8.1', 5, 462, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (616, 'VSS Requestor', 5, 463, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (617, 'VSS Requestor configured 8.1', 5, 463, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (618, 'VSS Requestor 7.1', 5, 463, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (619, 'TWS-WS', 2, 79, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (620, 'Tivoli Workload Scheduler', 2, 79, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (621, 'IBM Tivoli Workload Scheduler (TWS)', 2, 79, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (622, 'IBM WebSphere Business Integration Adaptor', 2, 80, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (623, 'WebSphere Business Integration Adaptor', 2, 80, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (624, 'wbia 2.6', 2, 80, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (625, 'IBM WBIA 2.6.0.12', 2, 80, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (626, 'IBM Websphere MQ 7.1', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (627, 'MQ', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (628, 'MQ 9.1', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (629, 'IBM WebSphere MQ Client 7.5', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (630, 'Websphere MQ', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (631, 'MQ 7', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (632, 'MQ 6', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (633, 'MQ 9.0', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (634, 'MQ 5.3', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (635, 'MQ 7.01', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (636, 'MQ 7.5', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (637, 'MQSeries 8.0', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (638, 'IBM Websphere MQ', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (639, 'IBM MQ', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (640, 'IBM WEBSPHERE MQ SERVER 7.5', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (641, 'WSMQ 8.0', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (642, 'MQ 9.0.5', 2, 81, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (643, 'IBM WebSphere MQ Telemetry Service 7.5', 2, 82, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (644, 'IBM WebSphere MQ Telemetry', 2, 82, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (645, 'WTX', 2, 83, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (646, 'IBM WebSphere Transformation Extender (WTX)', 2, 83, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (647, 'IBM WebSphere Transformation Extender', 2, 83, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (648, 'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.6001.18000', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (649, 'IIS 7.5', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (650, 'Internet Information Services (IIS)', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (651, 'Microsoft Internet Information Services 7.5', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (652, 'MICROSOFT INTERNET INFORMATION SERVICES VERSION 7', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (653, 'Microsoft Internet Information Services', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (654, 'Microsoft Internet Information', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (655, 'IIS Express 8', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (656, 'Internet Information Services (IIS 6.0)', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (657, 'Microsoft IIS 8.5', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (658, 'IIS', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (659, 'IIS Express', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (660, 'MICROSOFT INTERNET INFORMATION SERVICES VERSION 7.5', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (661, 'Microsoft Internet Inf', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (662, 'MICROSOFT INTERNET INFORMATION SERVER VERSION 5.1.2600.2180', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (663, 'TS-IIS Express 10', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (664, 'Microsoft Internet Informat', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (665, 'Microsoft IIS Webserver', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (666, 'IIS Server', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (667, 'Microsoft Internet Information Services 8.5', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (668, 'IIS Version 7', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (669, 'Microsoft Internet Information Services 8.0', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (670, 'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.3790.1830', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (671, 'IIS 8.5.9600.16386', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (672, 'IIS 7.x', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (673, 'IIS 7.0', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (674, 'IIS 10', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (675, 'Microsoft Internet Information Services 6.0', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (676, 'Internet Information Services (IIS 7.0)', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (677, 'Microsoft Internet Information Services 10.0', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (678, 'IIS 8.5', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (679, 'Microsoft - IIS Express 10', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (680, 'MICROSOFT INTERNET INFORMATION SERVER VERSION 6.0.*', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (681, 'Microsoft IIS 7.0', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (682, 'MICROSOFT INTERNET INFORMATION SERVICES VERSION 8', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (683, 'IIS v 7.0', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (684, 'IIS 7.2.1952', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (685, 'Microsoft Internet Information Services 7.0', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (686, 'Microsoft IIS 8.0', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (687, 'IIS Web Server v6', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (688, 'IIS 8.x', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (689, 'IIS 8.0.1557', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (690, 'IIS 11', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (691, 'IIS 6.0', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (692, 'IIS Express 7', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (693, 'IIS 7.2.2', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (694, 'IIS Instance', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (695, 'Microsoft IIS 6.0', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (696, 'IIS Express 10', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (697, 'IIS Servers', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (698, 'MS-IIS', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (699, 'Internet Information Services (IIS 8.5)', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (700, 'IIS 8.0', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (701, 'Microsoft IIS 7.5', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (702, 'IIS Version 8 64 bit', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (703, 'IIS 6', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (704, 'IIS7.5', 8, 609, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (705, 'IEMT', 7, 489, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (706, 'Microsoft - IIS 6.0 Migration Tool 1', 7, 489, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (707, 'IIS Easy Migration Tool', 7, 489, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (708, 'Easy Migration Tool', 7, 489, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (709, 'Easy Migration Tool (IEMT)', 7, 489, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (710, 'IIS Easy Migration Tool (IEMT)', 7, 489, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (711, 'MS-ARR', 7, 490, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (712, 'Application Request Routing', 7, 490, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (713, 'ARR', 7, 490, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (714, 'Application Request Routing (ARR)', 7, 490, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (715, 'IIS Manager', 7, 491, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (716, 'IMS DB', 2, 84, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (717, 'IMS', 2, 84, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (718, 'Infozip 6', 2, 85, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (719, 'Infozip', 2, 85, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (720, 'Info-ZIP', 2, 85, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (721, 'Infobright Community Edition', 2, 86, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (722, 'Infobright Community Edition (ICE)', 2, 86, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (723, 'infobright-ce', 2, 86, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (724, 'informatica', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (725, 'Informatica PowerCenter', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (726, 'Informatica PowerCenter 10.2', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (727, 'Informatica Version 10.2.0 HotFix1', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (728, 'Informatica Power Center 8.6.1', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (729, 'ETL tool: Informatica', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (730, 'Informatica database server-mspr50', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (731, 'Informatica ETL', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (732, 'Informatica Power Center 9.6.1', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (733, 'Informatica PowerCenter 10.2-msprap150', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (734, 'ETL tool=Informatica', 2, 87, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (735, 'Ingres', 2, 88, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (736, 'INGRES DBM', 2, 88, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (737, 'Intel(R) Xeon(R) CPU E7- 4870 @ 2.40GHz', 4, 296, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (738, 'intel(r) xeon(r) cpu e7- 4870 @ 2.40ghz', 4, 296, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (739, 'Intel(R) Xeon(R) CPU E5530 @ 2.40GHz', 4, 296, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (740, 'Intel(R) Xeon(R) CPU X7550 @ 2.00GHz', 4, 296, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (741, 'Intel(R) Xeon(R) CPU E5-2648L v4 @ 1.80GHz', 4, 296, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (742, 'Intel Xeon Processor', 4, 296, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (743, 'IMSVA 9.1', 3, 566, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (744, 'InterScan Messaging Security Virtual Appliance', 3, 566, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (745, 'InterScan Messaging Security Virtual Appliance (IMSVA)', 3, 566, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (746, 'IMSVA', 3, 566, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (747, 'iOS', 6, 425, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (748, 'Java 1.8', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (749, 'Java 7', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (750, 'Java on Weblogic server', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (751, 'Java', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (752, 'Java5', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (753, 'Java 6', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (754, 'Java 6.0', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (755, 'Java 7 Update 25', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (756, 'Java Scripting', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (758, 'Java (open source)', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (759, 'Java 5', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (760, 'Java 1.5', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (761, 'Java (1.6)', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (762, 'Java 1.8.0_92', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (763, 'Java 1.6', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (764, 'J2EE 6', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (765, 'Java (J2EE)', 9, 584, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (766, 'Oracle - Java Runtime Environment 11', 10, 506, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (767, 'JRE', 10, 506, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (768, 'Java Runtime', 10, 506, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (769, 'Oracle - Java Runtime Environment 8', 10, 506, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (770, 'Oracle - Java Runtime Environment 7', 10, 506, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (771, 'Java Runtime Environment (JRE)', 10, 506, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (772, 'Java Runtime 6', 10, 506, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (773, 'Camel', 12, 378, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (774, 'Apache Camel', 12, 378, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (775, 'SS7/CAMEL', 12, 378, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (776, 'Apache mmons-beanutils', 12, 379, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (777, 'Apache Commons BeanUtils', 12, 379, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (778, 'PDFBox', 12, 380, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (779, 'Apache PDFBox', 12, 380, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (780, 'PDFBox 1.6', 12, 380, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (781, 'Velocity', 12, 381, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (782, 'Apache Velocity', 12, 381, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (783, 'EclipseLink 2.6.4', 12, 382, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (784, 'EclipseLink', 12, 382, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (785, 'EJB', 12, 383, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (786, 'EJBS', 12, 383, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (787, 'Ejb 2.x', 12, 383, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (788, 'Enterprise JavaBeans (EJB)', 12, 383, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (789, 'Enterprise JavaBeans', 12, 383, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (790, 'JAVA-XSL', 9, 319, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (793, 'EZMorph', 12, 384, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (794, 'GWT', 12, 385, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (795, 'Google Web Toolkit', 12, 385, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (796, 'Google Web Toolkit (GWT)', 12, 385, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (797, 'Hibernate', 12, 386, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (798, 'IBM - IBM SDK 5.0 for Windows AMD/EMT 64', 12, 387, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (799, 'IBM SDK', 12, 387, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (800, 'Oracle - JDK/SDK', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (801, 'JDK 1.7.0', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (802, 'JDK', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (803, 'Oracle (Sun) JDK/JRE', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (804, 'JDK8', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (805, 'JDK 1.5', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (806, 'Oracle JDK', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (807, 'Java Development Kit (JDK)', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (808, 'Oracle - JDK/SDK 8', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (809, 'Java Development Kit', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (810, 'JDK 1.6.0_24', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (811, 'JDK8 (1.8)', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (812, 'JDK 1.3', 12, 388, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (813, 'JEE', 9, 333, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (814, 'Java EE', 9, 333, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (815, 'Java Enterprise Edition (Java EE)', 9, 333, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (816, 'Java Enterprise Edition', 9, 333, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (817, 'Java Message Service (JMS)', 12, 389, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (818, 'JMS', 12, 389, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (819, 'Java Message Service', 12, 389, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (820, 'Java Standard Edition (Java SE)', 9, 334, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (821, 'oracle - java - java se 6', 9, 334, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (822, 'Java SE 6', 9, 334, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (823, 'Java Web Start', 12, 390, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (824, 'Oracle - Java Web Start 1.5', 12, 390, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (825, 'Oracle - Java Web Start 6', 12, 390, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (826, 'JavaServer Faces', 12, 391, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (827, 'JavaServer Faces (JSF)', 12, 391, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (828, 'JSF', 12, 391, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (829, 'JavaServer Pages', 9, 335, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (830, 'JavaServer Pages (JSP)', 9, 335, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (831, 'Core JSP', 9, 335, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (832, 'JSP', 9, 335, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (833, 'JSP Scriptlets', 9, 336, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (834, 'Java Scriplet', 9, 336, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (835, 'JDBC', 12, 392, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (836, 'JRuby Core', 12, 393, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (837, 'Core 9.2.0.0', 12, 393, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (838, 'APACHE LOG4J', 12, 394, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (839, 'Log4j', 12, 394, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (840, 'Quartz', 12, 395, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (841, 'Java RMI', 12, 396, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (842, 'Java Remote Method Invocation (RMI)', 12, 396, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (843, 'Remote Method Invocation', 12, 396, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (844, 'Java Servlets', 12, 397, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (845, 'Java 6 Servlets', 12, 397, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (846, 'J2EE Servlets', 12, 397, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (847, 'Servlet', 12, 397, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (848, 'Servlets', 12, 397, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (849, 'Servlets v2.3', 12, 397, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (850, 'Spring', 12, 398, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (851, 'Spring IO', 12, 398, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (852, 'Spring BOOT', 12, 399, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (853, 'Spring Cloud Data Flow', 12, 400, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (854, 'Spring MVC', 12, 401, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (855, 'Struts (2.0)', 12, 402, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (856, 'Struts 2.0', 12, 402, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (857, 'Struts', 12, 402, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (858, 'Swing', 12, 403, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (859, 'Swings', 12, 403, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (860, 'Vaadin', 12, 404, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (861, 'javasript', 9, 589, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (862, 'JS', 9, 589, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (863, 'Javascript', 9, 589, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (864, 'Java Script', 9, 589, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (865, 'javascriptl', 9, 589, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (866, 'AJAX', 12, 405, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (867, 'Angular JS', 12, 406, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (868, 'AngularJS', 12, 406, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (869, 'Angular', 12, 406, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (870, 'Draw2D', 12, 407, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (871, 'Draw2D 2.10.1', 12, 407, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (872, 'Express', 12, 408, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (873, 'Express.js', 12, 408, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (874, 'ExtJS 4.1', 12, 409, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (875, 'Sencha 4.2.0', 12, 409, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (876, 'ExtJS', 12, 409, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (877, 'Ext JS', 12, 409, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (878, 'jqGrid', 12, 410, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (879, 'JQuery 1.7', 12, 411, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (880, 'JQuery', 12, 411, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (881, 'jqueryui', 12, 412, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (882, 'jQuery UI', 12, 412, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (883, 'jquery-ui', 12, 412, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (884, 'react', 12, 413, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (885, 'ReactJS', 12, 413, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (886, 'react.js', 12, 413, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (887, 'Scriptaculous', 12, 414, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (888, 'script.aculo.us', 12, 414, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (889, 'Valums File Uploader', 12, 415, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (890, 'Valums AJAX File Uploader', 12, 415, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (891, 'Jboss 7', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (892, 'JBOSS 5.1.2', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (893, 'Red Hat JBoss Enterprise Application Platform 6.3', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (894, 'EAP', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (895, 'JBOSS-EAP', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (896, 'JBoss Application Server 4', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (897, 'JBoss Application Server 7', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (898, 'JBoss Application Server 5', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (899, 'JBoss Application Server', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (900, 'Enterprise Application Platform', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (901, 'JBoss', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (902, 'Jboss 7.1.2', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (904, 'JBOSS 5.1.2 EAP', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (905, 'server: Jboss', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (906, 'JBOSS 6.3.2 EAP', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (907, 'JBoss EAP 4.3', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (908, 'Jboss 4.1.2', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (909, 'JBOSS 5', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (910, 'JBOSS 6.3.2', 8, 268, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (911, 'JBoss Seam', 7, 492, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (912, 'SEAM', 7, 492, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (913, 'JCL', 9, 338, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (914, 'Jenkins', 2, 90, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (915, 'Job Information Language', 9, 339, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (916, 'JIL - Job Information Language', 9, 339, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (917, 'Job Information Language (JIL)', 9, 339, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (918, 'JIL', 9, 339, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (919, 'JoinIT by Acayosoft', 2, 91, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (920, 'Acayosoft JoinIT', 2, 91, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (921, 'JoinIT by Acayosoft v 9.0.8', 2, 91, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (922, 'joinIT', 2, 91, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (923, 'JScript', 9, 340, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (924, 'Kitura', 8, 269, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (925, 'LifeFlow', 2, 92, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (926, 'LifeFlow Tool', 2, 92, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (927, 'Linux 2.6.32-696.28.1.el6.x86_64', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (928, 'Other Linux (64-bit)', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (929, 'Linux', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (930, 'Linux 2.6.32-696.30.1.el6.x86_64', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (931, 'Linux 2.6.9', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (932, 'Linux 2.6.32-642.3.1.el6.x86_64', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (933, 'Linux - 2.6.18-371.1.2.el5', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (934, 'Linux 2.6.32-696.23.1.el6.x86_64', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (935, 'Other Linux (32-bit)', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (936, 'Linux (64-bit)', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (937, 'Linux 3.10.0-1062.el7.x86_64', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (938, 'Other 2.6.x Linux (64-bit)', 6, 576, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (939, 'CentOS 6 (32-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (940, 'LINUX CentOS 7.3', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (941, 'CentOS 4 (32-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (942, 'LINUX CentOS 6.2', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (943, 'Linux CentOS_5.5', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (944, 'CentOS 7.2', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (945, 'CentOS 6 (64-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (946, 'LINUX CentOS 6.8', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (947, 'LINUX CentOS 6.9', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (948, 'LINUX CentOS 6.4', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (949, 'CentOS 4/5/6 (64-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (950, 'CentOS 5 (32-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (951, 'Linux CentOS_5.2', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (952, 'CentOS 4 (64-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (953, 'CentOS 7 (64-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (954, 'CentOS 5 (64-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (955, 'CentOS 5.8 (x86)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (956, 'CentOS 6.4', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (957, 'CentOS 7.5.184', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (958, 'CentOS 4/5/6 (32-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (959, 'CentOS', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (960, 'CentOS release 5.11', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (961, 'CentOS 4/5 or later (32-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (962, 'LINUX CentOS 6.5', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (963, 'LINUX CentOS 6.7', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (964, 'LINUX CentOS 5.8', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (965, 'LINUX CentOS 5', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (966, 'CentOS 7.x', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (967, 'CentOS 4/5/6/7 (64-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (968, 'CentOS 4/5 or later (64-bit)', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (969, 'LINUX CentOS 5.7', 6, 427, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (970, 'Check Point IPSO', 6, 428, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (971, 'Gaia Kernel version 2.7', 6, 428, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (972, 'Checkpoint', 6, 428, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (973, 'Check Point Gaia', 6, 428, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (974, 'Gaia Kernel version 2.6', 6, 428, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (975, 'Debian Linux', 6, 429, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (976, 'Debian GNU/Linux 8 (64-bit)', 6, 429, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (977, 'Debian', 6, 429, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (978, 'Debian Linux 8', 6, 429, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (979, 'LINUX Debian 6.0', 6, 429, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (980, 'Debian GNU/Linux 5 (64-bit)', 6, 429, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (981, 'Junos OS', 6, 430, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (982, 'JunOS', 6, 430, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (983, 'JunOS 8.0R14', 6, 430, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (984, 'JunOS 8.0R13', 6, 430, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (985, 'OpenSuse', 6, 431, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (986, 'SUSE openSUSE (64-bit)', 6, 431, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (987, 'Oracle - Linux Server - 7.5 Beta', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (988, 'Oracle Linux 7', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (989, 'LINUX Oracle EL 6.6 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (990, 'OEL', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (991, 'LINUX Oracle EL 6.3 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (992, 'LINUX Oracle EL 7.4 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (993, 'OEL 6.5 (Oracle Linux)3.8.13-16.2.1.el6uek.x86_64', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (994, 'LINUX Oracle EL 5.11 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (995, 'LINUX Oracle EL 5.10 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (996, 'LINUX Oracle EL 5.9', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (997, 'Oracle Linux 6.1', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (998, 'Oracle Linux 4/5 or later (64-bit)', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (999, 'LINUX Oracle EL 6.9', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1000, 'LINUX Oracle EL 6.8 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1001, 'Oracle Linux 5 (64-bit)', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1002, 'Oracle Enterprise Server 7.5', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1003, 'Oracle Linux 5u10', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1004, 'OEL6.7 - 3.8.13-68.3.4.el6uek.x86_64', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1005, 'Oracle Linux Server 6.10', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1006, 'LINUX Oracle EL 6.9 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1007, 'LINUX Oracle EL 6.7 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1008, 'Oracle Linux Server release 6.9', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1009, 'Oracle Linux Server 6.9', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1010, 'LINUX Oracle EL 5.8 64bit', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1011, 'OEL 6.5 (Oracle Linux)2.6.32-431.el6.x86_63', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1012, 'Oracle Linux Server 6.7', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1013, 'Oracle Enterprise Linux', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1014, 'Oracle Linux', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1015, 'OEL 6.5 (Oracle Linux)2.6.32-431.el6.x86_62', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1016, 'Oracle Linux 4 (64-bit)', 6, 432, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1017, 'Photon OS', 6, 433, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1018, 'VMware Photon', 6, 433, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1019, 'VMware Photon 1', 6, 433, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1020, 'Red Hat Enterprise Linux Server 6.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1021, 'Red Hat Enterprise Linux Server 7.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1022, 'Linux - Redhat 6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1023, 'LINUX RedHat ES 5.7 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1024, 'Red Hat Enterprise Linux Server 6.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1025, 'Red Hat Enterprise Linux AS release 4 (Nahant Update 8)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1026, 'Red Hat Enterprise Linux Server release 6.9 (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1027, 'RED HAT ENTERPRISE LINUX 5.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1028, 'Red Hat Enterprise Linux Server 6.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1029, 'LINUX RedHat EL 7.3 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1030, 'RHEL', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1031, 'Redhat Linux 5.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1032, 'Linux Red Hat 7.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1033, 'Red Hat Enterprise Linux Server 7.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1034, 'Red Hat Enterprise Linux Server 7.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1035, 'Red Hat(Linux)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1036, 'LINUX Red Hat Enterprise Linux Server 5.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1037, 'LINUX RedHat EL 5.7 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1038, 'Linux Red Hat5.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1039, 'Linux Red Hat3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1040, 'LINUXRed Hat Enterprise Linux Server 7.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1041, 'Red Hat Enterprise Linux Server 5.8', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1042, 'LINUX RedHat EL 6.8 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1043, 'RHEL 7.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1044, 'Redhat - Redhat Linux 7.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1045, 'Linux RH6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1046, 'Red Hat Enterprise Linux 6 (32-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1047, 'RED HAT ENTERPRISE LINUX SERVER 6.X (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1048, 'RHEL 6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1049, 'Red Hat Enterprise Linux 7.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1050, 'LINUXRed Hat Enterprise Linux Server 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1051, 'RHEL 6.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1052, 'Red Hat Enterprise Linux Santiago 6.3 32 Bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1053, 'LINUX RedHat EL 6.6 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1054, 'RED HAT ENTERPRISE LINUX 6.10', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1055, 'RED HAT ENTERPRISE LINUX SERVER 5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1056, 'Linux Red Hat6.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1057, 'RED HAT ENTERPRISE LINUX SERVER 7.X (Maipo)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1058, 'Red Hat Enterprise Linux Server release 7.3 (Maipo)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1059, 'RHEL7.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1060, 'Linux Red Hat Enterprise Server 6.10', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1061, 'Red Hat Enterprise Linux Server 7.6 (Maipo)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1062, 'Red Hat Enterprise Linux 5 (64-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1063, 'Linux Red Hat6.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1064, 'RHEL 7.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1065, 'RHEL 7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1066, 'RED HAT ENTERPRISE LINUX 4.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1067, 'Red Hat Enterprise Linux 5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1068, 'Red Hat Enterprise Linux Server 6.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1069, 'LINUX RedHat EL 7.5 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1070, 'LINUXRed Hat Enterprise Linux Server 5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1071, 'LINUX RED HAT ENTERPRISE SERVER 5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1072, 'Unix Linux Redhat', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1073, 'LINUX RED HAT ENTERPRISE SERVER 6 X64', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1074, 'Red Hat Linux', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1075, 'LINUX RED HAT ENTERPRISE SERVER 6.8', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1076, 'RHEL6.6 - 2.6.32-504.el6.x86_64', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1077, 'RED HAT ENTERPRISE LINUX 5.X', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1078, 'Linux Red Hat Enterprise Server 7.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1079, 'Linux Red Hat4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1080, 'Linux Red Hat Enterprise Server 6.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1081, 'Red Hat Enterprise Linux Server release 5.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1082, 'Red Hat Linux x64 6.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1083, 'Red Hat Enterprise Linux Server 7.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1084, 'Linux Red Hat6.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1085, 'LINUX RED HAT ENTERPRISE SERVER 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1086, 'Red Hat Enterprise Linux Server release 6.6 (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1087, 'RED HAT ENTERPRISE LINUX 6.X', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1088, 'Red Hat Enterprise Linux Server 6.x', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1089, 'RedHat Enterprise Linux 6 (64-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1090, 'RED HAT ENTERPRISE LINUX', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1091, 'Redhat - Redhat Linux 6.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1092, 'RED HAT ENTERPRISE LINUX 5.8', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1093, 'RED HAT ENTERPRISE LINUX 5.10', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1094, 'RED HAT ENTERPRISE LINUX 7.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1095, 'Red Hat Enterprise Linux Server 5.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1096, 'Redhat - RHEL 7.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1097, 'RHEL7.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1098, 'Red Hat Enterprise Linux Server release 7.5 (Maipo)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1099, 'Red Hat Enterprise Linux 6 (64-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1100, 'Red Hat Entreprise Linux 6.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1101, 'RED HAT ENTERPRISE LINUX 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1102, 'RHEL 5.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1103, 'Red Hat Enterprise Linux 7.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1104, 'LINUX RedHat EL 6.2 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1105, 'Linux Red Hat6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1106, 'RED HAT ENTERPRISE LINUX 5.11 - 5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1107, 'Red Hat Enterprise Linux Server 5.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1108, 'Redhat 6 64-Bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1109, 'Red Hat Enterprise Linux 5 (32-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1110, 'Red Hat Enterprise Linux Server 7.', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1111, 'RHEL 6.6 ((64 bit x86_64)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1112, 'Red Hat Enterprise Linux Server Release 6.10', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1113, 'LINUX RED HAT ENTERPRISE ES 4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1114, 'Linux Red Hat Enterprise Server 5.11 (2.6.18-419.el5)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1115, 'Red Hat Enterprise Linux Server release 6.8 (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1116, 'RED HAT ENTERPRISE LINUX 4.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1117, 'Redhat Linux 6.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1118, 'Red Hat Enterprise Linux AS', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1119, 'RED HAT ADVANCED SERVER 5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1120, 'LINUX RED HAT ENTERPRISE SERVER 7.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1121, 'RHEL6.7 - 2.6.32-573.el6.x86_64', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1122, 'Red Hat Enterprise Linux Server 5.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1123, 'LINUX RedHat EL 5 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1124, 'Red Hat Enterprise Linux 7.2 (64-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1125, 'LINUX RedHat EL 5.11 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1126, 'RHEL 6.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1127, 'RHEL 6.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1128, 'Red Hat Enterprise Linux Server', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1129, 'Red Hat Enterprise Linux Server 5.x', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1130, 'Red Hat Enterprise Linux Santiago 6.x', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1131, 'RED HAT ENTERPRISE LINUX 6.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1132, 'RED HAT ENTERPRISE LINUX 7.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1133, 'Red Hat Enterprise Linux Server release 5.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1134, 'RHEL Server', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1135, 'Linux RHEL', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1136, 'redhat6.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1137, 'RHEL 5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1138, 'Redhat - Redhat Linux 6.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1139, 'Linux RH', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1140, 'Red Hat Enterprise Linux Server release 6.10 (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1141, 'Red Hat Enterprise Linux 3 (32-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1142, 'Redhat - Red Hat(Linux)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1143, 'RED HAT ENTERPRISE LINUX 5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1144, 'RED HAT ENTERPRISE LINUX SERVER 4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1145, 'Redhat Linux 6.10', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1146, 'Linux RH7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1147, 'Red Hat Enterprise Linux Server release 5 (Tikanga)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1148, 'RHEL 7.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1149, 'LINUX Red Hat Enterprise Linux Server 6.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1150, 'Red Hat Enterprise Linux Server 6.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1151, 'Red Hat Enterprise Linux Server release 7.4 (Maipo)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1152, 'Red Hat V6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1153, 'Redhat Linux', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1154, 'RHEL 6.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1155, 'RED HAT ENTERPRISE LINUX 6.X TPM', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1156, 'Linux Red Hat5.8', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1157, 'Linux Red Hat5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1158, 'Linux RH5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1159, 'Red Hat Enterprise Linux Santiago 6.3 64 Bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1160, 'rehl5.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1161, 'RED HAT ENTERPRISE LINUX ES 5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1162, 'Red Hat Enterprise Linux Server release 7.6 (Maipo)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1163, 'LINUX RED HAT ENTERPRISE SERVER 7.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1164, 'Red Hat Enterprise Linux 4 (32-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1165, 'RHEL 7.xx', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1166, 'Red Hat Enterprise Linux Server 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1167, 'Red Hat Enterprise Linux Server release 7.x', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1168, 'Red Hat Enterprise Linux 7 (64-bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1169, 'Red Hat Enterprise Linux 5 Update 3 (RHEL 5.3) for x86-64', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1170, 'LINUX RED HAT ENTERPRISE AS 4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1171, 'RHEL Linux', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1172, 'RHEL 7.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1173, 'RED HAT ENTERPRISE LINUX 4.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1174, 'RED HAT ENTERPRISE LINUX 6.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1175, 'Linux Red Hat6.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1176, 'RHEL 7.5', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1177, 'RHEL 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1178, 'RED HAT ENTERPRISE LINUX 5.X TPM', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1179, 'RED HAT ENTERPRISE LINUX ES 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1180, 'LINUX RedHat EL 7.4 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1181, 'Red Hat Enterprise Linux Server release 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1182, 'Red Hat Linux 5.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1183, 'LINUX RED HAT ENTERPRISE SERVER 7.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1184, 'LINUX RedHat EL 5.0 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1185, 'Red Hat Enterprise Linux Server release 6.3 (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1186, 'RED HAT ENTERPRISE LINUX SERVER 5.X (Tikanga)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1187, 'Red Hat Enterprise Linux Server 7.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1188, 'Linux Red Hat 6.10', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1189, 'Linux Red Hat', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1190, 'Red Hat 6.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1191, 'LINUX Red Hat Enterprise Linux Server 6.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1192, 'LINUX Red Hat Enterprise Linux Server 5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1193, 'Red Hat Enterprise Linux Server 5.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1194, 'RHEL7.xx', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1195, 'RHEL 6.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1196, 'Linux Red Hat5.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1197, 'Red Hat Enterprise Linux Server 7.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1198, 'Red Hat Enterprise Linux Server release 6.5 (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1199, 'Linux Red Hat6.8', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1200, 'Red Hat Enterprise Linux Server 6.1', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1201, 'LINUXRed Hat Enterprise Linux Server 6.10', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1202, 'Red Hat Enterprise Linux 7.7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1203, 'Red Hat Enterprise Linux Server 7.x', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1204, 'Redhat Linux 7.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1205, 'red hat', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1206, 'LINUX RedHat EL 6.10 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1207, 'Red Hat Enterprise Linux 6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1208, 'Red Hat Enterprise Linux Server release 6.7 (Santiago)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1209, 'Linux Red Hat5.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1210, 'Red Hat Enterprise Linux 7', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1211, 'Red Hat Linux 6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1212, 'RED HAT ENTERPRISE LINUX 7.X', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1213, 'RHEL x86-64', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1214, 'LINUX RED HAT ENTERPRISE SERVER 7.4', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1215, 'Red Hat Enterprise Linux Server 4.9', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1216, 'RED HAT ENTERPRISE LINUX 5 (64 Bit)', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1217, 'Redhat', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1218, 'RED HAT ENTERPRISE LINUX 7.X TPM', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1219, 'Red Hat Enterprise Linux Server 6.8', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1220, 'Red Hat Enterprise Linux Server 5.11', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1221, 'RED HAT ENTERPRISE LINUX SERVER 6.2', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1222, 'RedHat 7.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1223, 'Redhat Linux 6.6', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1224, 'LINUX RED HAT 5 EL', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1225, 'LINUX RedHat EL 6.9 64bit', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1226, 'RED HAT ENTERPRISE LINUX 7.3', 6, 434, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1227, 'suse enterprise server 11 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1228, 'SUSE Linux Enterprise Server 12 x86_64', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1229, 'SUSE11', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1230, 'SUSE Linux Enterprise 10 (32-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1231, 'SUSE Linux Enterprise 10 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1232, 'Linux SuSE12', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1233, 'SUSE Linux Enterprise 12 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1234, 'Linux SuSE2.6.32-504.12.2.el6.x86_64', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1235, 'LINUXSUSE_SLES 11.4', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1236, 'SUSE Linux Enterprise 11 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1237, 'SUSE10', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1238, 'SUSE Linux 12', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1239, 'LINUX SUSE_SLES 11.4', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1240, 'LINUX SuSE Enterprise Server 11 64bit', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1241, 'SLES 11 SP4', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1242, 'SUSE Enterprise Server 11 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1243, 'SUSELinux Enterprise 11.x', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1244, 'SUSE Linux Enterprise Server 11 x86_64', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1245, 'SUSE Enterprise 11 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1246, 'SUSE Enterprise 10 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1247, 'suse enterprise 11 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1248, 'SUSE LINUX ENTERPRISE SERVER 11, SERVICE PACK SERVICE PACK SP4', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1249, 'SUSE Linux 11', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1250, 'SUSE Linux 11 SP3', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1251, 'SUSE Linux Eneterprise Server (SLES) 11.0', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1252, 'SUSE Linux', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1253, 'SLES 9', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1254, 'SUSE Linux Enterprise Server 11 (x86_64)PATCHLEVEL = 3', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1255, 'Linux SuSE11', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1256, 'SUSE', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1257, 'SUSELinux Enterprise 11 (64-bit)', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1258, 'LINUX SuSE Enterprise Server 9', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1259, 'LINUX SuSE 10.0 Enterprise', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1260, 'SUSE LINUX ENTERPRISE SERVER 11.3', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1261, 'SUSE LINUX Enterprise Server 9 (i586) VERSION = 9 PATCHLEVEL = 3', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1262, 'SUSE Linux Enterprise Server 11 (x86_64)PATCHLEVEL = 1', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1263, 'SUSE Linux Enterprise 11 SP4', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1264, 'SuseLinux', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1265, 'SLES 12 SP2 for Power/SAP', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1266, 'SUSE Linux Enterprise Server', 6, 435, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1267, 'LINUX Ubuntu 12.04.1 LTS', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1268, 'Ubuntu - Ubuntu Server - 16.04.1 LTS', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1269, 'Ubuntu Linux (32-bit)', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1270, 'LINUX Ubuntu 16.04 LTS', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1271, 'Ubuntu Linux Server 10 (64-bit)', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1272, 'Ubuntu', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1273, 'LINUX Ubuntu 14.04 LTS', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1274, 'UBUNTU LINUX (64-BIT)', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1275, 'Ubuntu Linux', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1276, 'LINUX UBUNTU 16.04', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1277, 'LINUX Ubuntu', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1278, 'Linux - Ubuntu Server 16.04.1 LTS', 6, 436, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1279, 'zLinux', 6, 437, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1280, 'Lisp', 9, 341, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1281, 'Lotus Domino', 8, 270, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1282, 'domino8.5', 8, 270, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1283, 'Domino 8.x', 8, 270, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1284, 'Lotus Notes', 2, 93, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1285, 'Lotus Notes Internal', 2, 93, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1286, 'Lucee', 8, 271, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1287, 'Lucee 5.2.6.60', 8, 271, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1288, 'MaaS360', 2, 94, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1289, 'mac OS', 6, 438, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1290, 'macOS', 6, 438, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1291, 'Darwin', 6, 438, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1292, 'Malwarebytes Anti-Malware', 2, 95, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1293, 'Malwarebytes Corporation - Malwarebytes Anti-Malware 3.4', 2, 95, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1294, 'Malwarebytes', 2, 95, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1295, 'ManageEngine ADSelfService Plus', 2, 96, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1296, 'Manage Engine ADSelfService Porta', 2, 96, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1297, 'Marklogic', 2, 97, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1298, 'MarkLogic DB', 2, 97, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1299, 'Memcache', 2, 98, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1300, 'Memcached', 2, 98, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1301, 'ACCDB', 2, 99, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1302, 'Microsoft Access', 2, 99, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1303, 'Access DB', 2, 99, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1304, 'MS Access 2016', 2, 99, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1305, 'MS Access', 2, 99, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1306, 'Microsoft BizTalk Adapters for Host Systems 2.0', 2, 100, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1307, 'Microsoft BizTalk Adapters for Host Systems', 2, 100, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1308, 'Microsoft Dynamics AX', 2, 101, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1309, 'MS Dynamics AX 4', 2, 101, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1310, 'Microsoft - Microsoft System Center Configuration Manager 2012', 2, 102, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1311, 'SCCM', 2, 102, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1312, 'Microsoft Endpoint Configuration Manager (SCCM)', 2, 102, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1313, 'ConfigMgr', 2, 102, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1314, 'Microsoft - Microsoft System Center Configuration Manager Client 5', 2, 102, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1315, 'Microsoft Endpoint Configuration Manager', 2, 102, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1316, 'MS System Centre Configuration Manager', 2, 102, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1317, 'MS Excel', 2, 103, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1318, 'Excel', 2, 103, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1319, 'Microsoft Excel 2010', 2, 103, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1320, 'Microsoft Excel', 2, 103, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1321, 'Excel 2010', 2, 103, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1322, 'Microsoft Exchange Server', 2, 104, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1323, 'MS Exchange 2010 Enterprise', 2, 104, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1324, 'Veeam Explorer', 5, 464, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1325, 'Microsoft Forefront Identity Manager (FIM)', 2, 105, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1326, 'Microsoft Forefront Identity Manager', 2, 105, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1327, 'FIM SQL Development Server', 2, 105, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1328, 'InfoPath', 2, 106, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1329, 'Microsoft InfoPath', 2, 106, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1330, 'Microsoft - Internet Explor', 2, 107, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1331, 'Microsoft - Internet Explorer 11', 2, 107, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1332, 'Microsoft Internet Explorer', 2, 107, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1333, 'Internet Explor', 2, 107, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1334, 'ISA Server', 2, 108, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1335, 'Microsoft ISA Server', 2, 108, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1336, 'Microsoft MQ', 2, 109, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1337, 'System Center Endpoint Protection for Mac', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1338, 'System Center 2012 Endpoint Protection', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1339, 'Microsoft System Center 2012 Endpoint Protection', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1340, 'Microsoft - Microsoft System Center 2012 Endpoint Protection 2.2', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1341, 'SCEP for Linux', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1342, 'System Center Endpoint Protection for Linux', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1343, 'Microsoft System Center Endpoint Protection 2012', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1344, 'System Center 2012 R2 Endpoint Protection', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1345, 'SCEP for Mac', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1346, 'Microsoft System Center Endpoint Protection', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1347, 'System Center Endpoint Protection', 2, 110, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1348, 'Microsoft - Microsoft Visual Studio 2010', 2, 111, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1349, 'Microsoft Visual Studio 2010', 2, 111, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1350, 'Microsoft Visual Studio', 2, 111, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1351, 'Visual Studio', 2, 111, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1352, 'Microsoft Web Deploy 2.0', 2, 112, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1353, 'Microsoft Web Deploy', 2, 112, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1354, 'Web Deploy', 2, 112, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1355, 'msdeploy', 2, 112, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1356, 'Web Farm Framework', 2, 113, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1357, 'Microsoft Web Farm Framework Version 2.2', 2, 113, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1358, 'Microsoft Web Farm Framework', 2, 113, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1359, 'WFF', 2, 113, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1360, 'Microsoft Web Farm Framework (WFF)', 2, 113, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1361, 'WebPI', 2, 114, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1362, 'Web Platform Installer', 2, 114, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1363, 'Microsoft Web Platform Installer', 2, 114, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1364, 'Microsoft Web Platform Installer 3.0', 2, 114, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1365, 'Web PI', 2, 114, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1366, 'MDW 6', 2, 115, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1367, 'MDW Framework', 2, 115, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1368, 'MDW', 2, 115, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1369, 'Model Driven Workflow', 2, 115, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1370, 'Model Driven Workflow (MDW)', 2, 115, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1371, 'MONGO-DB', 2, 116, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1372, 'Mango DB', 2, 116, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1373, 'Mongo DB', 2, 116, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1374, 'MangoDB', 2, 116, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1375, 'MongoDB', 2, 116, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1376, 'Mozilla.org - Firefox 38.5', 2, 117, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1377, 'Firefox', 2, 117, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1378, 'Mozilla.org', 2, 117, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1379, 'Mozilla.org - Firefox 68', 2, 117, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1380, 'Mozilla Firefox', 2, 117, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1381, 'Mozilla.or', 2, 117, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1382, 'MQ Client 7.5', 2, 118, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1383, 'MQ Client', 2, 118, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1384, 'MS Office 365', 2, 119, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1385, 'Office 365', 2, 119, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1386, 'O365', 2, 119, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1387, 'MS SQL Server 2008 Standard', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1388, 'MS SQL 2008R2SP2ENT (10.52.4042.0)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1389, 'MS SQL Server 2008', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1390, 'SQL Server 11.0.2100.60', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1391, 'MS SQL 2016 SP1', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1392, 'SQL 2012 Development Server', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1393, 'MICROSOFT SQL SERVER 2008 R2 ENTERPRISE EDITION 10.5', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1394, 'Microsoft - Microsoft SQL Server 2012 for Microsoft SQL Server 2012 Standard Edition 2012', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1395, 'MS SQL Server MS SQL Server 2008', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1396, 'SQL Server 2016 SP1', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1397, 'SQL Server 2000', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1398, 'SQL Server 2005 Standard', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1399, 'Microsoft SQL Server 2008 (SP4) - 10.0.6000.29 (X64)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1400, 'MICROSOFT SQL SERVER 2005 STANDARD EDITION 9.*', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1401, 'Microsoft SQL Server SQL Server 2008 R2', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1402, 'MICROSOFT SQL SERVER 2012 DEVELOPER EDITION', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1403, 'Microsoft SQL Server 2000', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1404, 'MS SQL Server 2008 R2 Express', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1405, 'SQL Server', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1406, 'SQL Server 2012 SP3', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1407, 'SQL Server 2003', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1408, 'Microsoft SQL Server 2016 - Service pack 2', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1409, 'SQL SERVER 2008 R2', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1410, 'MS SQL Server 2008 Enterprise R2', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1411, 'MS SQL Server 2014 Express', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1412, 'SQL Server 2008 R2 SP1', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1413, 'SQL Server 2008 R2 Enterprize SP2 64Bit', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1414, 'MICROSOFT SQL SERVER 2012 STANDARD EDITION', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1415, 'MS SQL Server 2008 Developer', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1416, 'SQL 2005', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1417, 'MICROSOFT SQL SERVER 2008 DEVELOPER EDITION', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1418, 'Microsoft SQL Server 2012 (SP4-GDR)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1419, 'MS SQL Server 2012 Enterprise', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1420, 'Microsoft SQL Server 2008 R2 (RTM) - 10.50.1600.1 (X64)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1421, 'MS SQL Server 2005 Express', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1422, 'SQL Server 2016', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1423, 'Microsoft SQL Server 2012', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1424, 'Microsoft SQL Server SQL Server 2005', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1425, 'MS SQL', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1426, 'sql server 2009 SQL', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1427, 'Microsoft - Microsoft SQL - 13.0', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1428, 'MSSQL Database Server', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1429, 'SQL Server 2008 R2 SP3', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1430, 'sql server 2013 SQL', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1431, 'SQL 2012', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1432, 'Microsoft SQL Server 2000 (SP4)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1433, 'MS SQL Server 2012 Standard', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1434, 'MSSQL2008', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1435, 'MS SQL server 2008 R2', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1436, 'MS SQL Server 2000 Standard', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1437, 'MS SQLServer', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1438, 'microsoft sql', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1439, 'MS SQL 2008R2SP2STD (10.52.4042.0)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1440, 'MS SQL Server 2008 R2 Standard', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1441, 'MS SQL Server 2005 Enterprise', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1442, 'MS SQL Server 2008 Standard R2', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1443, 'SQL Server 12.0.2000.8', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1444, 'MS SQL 2008R2SP3STD (10.53.6220.0)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1445, 'SQL Server 11.0.5388.0', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1446, 'sql server 2011 SQL', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1447, 'MS SQL Server 2014 Enterprise', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1448, 'sql server 2008 SQL', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1449, 'SQl 2016', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1450, 'Microsoft SQL Server', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1451, 'SQL Server 2014 SP2', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1452, 'SQL Server 2008 R2 RTM', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1453, 'Microsoft SQL Server Standard Edition', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1454, 'MS SQL Server 2000', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1455, 'sql2000', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1456, 'SQL Server 2012', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1457, 'Microsoft SQL Server 2008', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1458, 'SQL Server 10.0.5538.0', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1459, 'Microsoft - Microsoft SQL Server 2008 R2 for Microsoft SQL Server 2008 R2 Express Edition 2008', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1460, 'MICROSOFT SQL SERVER 2014 ENTERPRISE EDITION 12', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1461, 'SQL Server 11.0.3156.0', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1462, 'SQLServer', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1463, 'SQL Server 2000 SP4', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1464, 'SQL Server 2008', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1465, 'SQL Server 2008 R2 STD SP1', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1466, 'sql server 2010 SQL', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1467, 'MICROSOFT SQL SERVER 2008 R2 STANDARD EDITION', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1468, 'Microsoft SQL Server 2012 (SP4) (KB4018073) - 11.0.7001.0 (X64)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1469, 'MICROSOFT SQL SERVER 2014 STANDARD EDITION 12', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1470, 'MS SQL SERVER 08', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1471, 'SQL Server 10.50.2550.0', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1472, 'Microsoft SQL Server 2005', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1473, 'SQL 2000', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1474, 'sql server 2012 SQL', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1475, 'MS SQL Server 2017', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1476, 'MS SQL Server 2012', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1477, 'MS SQL Server 2008 R2 Enterprise', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1478, 'SQL Server 9.0.1399.0', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1479, 'MS SQL 2008SP2STD (10.2.4067.0)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1480, 'SQL Server 2005', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1481, 'Microsoft SQL Server 8.1', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1482, 'Microsoft - Microsoft SQL Server 2005 for Microsoft SQL Server 2005 Express Edition 2005', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1483, 'Microsoft - Microsoft SQL Server 2008 R2 for Microsoft SQL Server 2008 R2 Standard Edition 2008', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1484, 'MICROSOFT SQL SERVER 2008 R2 ENTERPRISE EDITION 10.*', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1485, 'MICROSOFT SQL SERVER 2008 R2 STANDARD EDITION 10.5', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1486, 'MS SQL 2005SP3STD (9.3.4340)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1487, 'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1488, 'SQL Server 2017 RTM', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1489, 'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION 11.0"', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1490, 'SQL 2014', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1491, 'Microsoft - Microsoft SQL Server 2014 for Microsoft SQL Server 2014 Express Edition 2014', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1492, 'Microsoft SQL Server 2008R2', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1493, 'SQL Server 2008 SP1', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1494, 'MICROSOFT SQL SERVER 2005 ENTERPRISE EDITION', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1495, 'SQLSVR2008', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1496, 'MICROSOFT SQL SERVER 2008 ENTERPRISE EDITION', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1497, 'SQL Server 9.0.5069.0', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1498, 'MS SQL Instance', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1499, 'Microsoft - Microsoft SQL Server 2014 for Microsoft SQL Server 2014 Standard Edition 2014', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1500, 'MICROSOFT SQL SERVER 2008 STANDARD EDITION', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1501, 'SQL Server 2012 SP4', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1502, 'Microsoft SQL sever 2008 R2 SP 3', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1503, 'SQL Server 2012 SP2', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1504, 'Microsoft SQL Server 2016', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1505, 'MS SQL Server 2012 Developer', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1506, 'MS SQL 2014', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1507, 'MS SQL Server', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1508, 'MS SQL Server 2005 Standard', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1509, 'SQL Server 2014', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1510, 'MS SQL Server 2016', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1511, 'MICROSOFT SQL SERVER 2012 STANDARD EDITION 11', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1512, 'SQL Server 10.0.2531.0', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1513, 'MICROSOFT SQL SERVER 2000 STANDARD EDITION 8.*', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1514, 'MS SQL Server 2014', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1515, 'Microsoft - SQL Server Express LocalDB 2014', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1516, 'MS SQL 2012SP3STD (11.3.6020.0)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1517, 'MICROSOFT SQL SERVER 2014 STANDARD EDITION 12.0', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1518, 'MSSQL', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1519, 'MICROSOFT SQL SERVER 2012 ENTERPRISE EDITION 11', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1520, 'Microsoft - Microsoft SQL Server 2008 for Microsoft SQL Server 2008 Express Edition 2008', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1521, 'SQL Server 2008 SP4', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1522, 'Microsoft SQL Server 2008 R2 Policies 10.50.1600.1', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1523, 'Microsoft SQL Server 1997 (SP4)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1524, 'MS SQL Server 2008 Express', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1525, 'MS SQL 2005SP4STD (9.4.5324)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1526, 'SQL 2008', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1527, 'MS SQL Server 2008 Enterprise', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1528, 'MS SQL Server 2005', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1529, 'SQL 2008 R2', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1530, 'Microsoft SQL Server 2008 (SP3) - 10.0.5500.0 (X64)', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1531, 'MS SQL Server 2014 Standard', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1532, 'SQL Server 2016 SP2', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1533, 'Microsoft SQL Server 2014', 2, 581, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1534, 'Microsoft SQL Server Browser 10.52.4000.0', 5, 465, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1535, 'MS SQL Server Browser', 5, 465, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1536, 'MS SQL Server Compact', 2, 121, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1537, 'Microsoft SQL Server Compact 3.5 SP2 ENU 3.5.8080.0', 2, 121, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1538, 'Microsoft SQL Server Compact 3.5 SP2 Query Tools ENU 3.5.8080.0', 2, 121, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1539, 'MS DTS', 5, 466, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1540, 'Data Transformation Services', 5, 466, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1541, 'Microsoft - Microsoft SQL Server Replication Logreader Agent 9', 5, 467, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1542, 'Log Reader Agent', 5, 467, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1543, 'SQL Server Analysis Services 10.50.2500.0', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1544, 'SQL Server Analysis Services 11.0.2218.0', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1545, 'SQL Server Analysis Services', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1546, 'Microsoft - Microsoft SQL Server Analysis Services 2012 for Microsoft SQL Server 2012 Standard Edition 2012', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1547, 'Microsoft - Microsoft SQL Server Analysis Services 2014 for Microsoft SQL Server 2014 Standard Edition 2014', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1548, 'SSAS 2012', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1549, 'Microsoft - Microsoft SQL Server Analysis Services 2014 for Microsoft SQL Server 2014 Enterprise Edition 2014', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1550, 'SQL Server Analysis Services 12.0.2000.8', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1551, 'SQL Server Analysis Services (SSAS)', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1552, 'SQL Server Analysis Services 11.0.3000.0', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1553, 'SSAS', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1554, '6+ SSAS databases', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1555, '25+ SSAS databases', 5, 468, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1556, 'SQL Server Database Engine', 5, 469, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1557, 'Microsoft - Microsoft SQL Server Database Engine Services 10.1', 5, 469, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1558, 'Microsoft - Microsoft SQL Server Integration Services 2014 for Microsoft SQL Server 2014 Enterprise Edition 2014', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1559, 'SSIS', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1560, 'SSIS 2008 R3', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1561, 'Microsoft - Microsoft SQL Server Integration Services 2014 for Microsoft SQL Server 2014 Standard Edition 2014', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1562, 'SSIS 2008 R4', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1563, 'SQL Server Integration Services', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1564, 'SSIS 2008 R2', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1565, 'SSIS - 2008', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1566, 'SQL Server Integration Services (SSIS)', 5, 470, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1567, 'Microsoft - Microsoft SQL Server Management Studio 16', 5, 471, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1568, 'Microsoft SQL Server Management studio2016', 5, 471, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1569, 'SQL Management Studio', 5, 471, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1570, 'SQL server mgmt studio 2012', 5, 471, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1571, 'SQL Server Management Studio', 5, 471, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1572, 'Microsoft - SQL Server Management Studio 2012', 5, 471, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1573, 'Microsoft - Microsoft SQL Report Builder 10.5', 5, 472, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1574, 'SQL Server Report Builder', 5, 472, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1575, 'SQL Server Reporting Services 10.50.2500.0', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1576, 'SQL Server Reporting Services', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1577, 'SQL Server Reporting Services 11.0.5058.0', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1578, 'SQL Server Reporting Services 12.0.2000.8', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1579, 'SQL Server Reporting Services 11.0.2218.0', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1580, 'Microsoft - Microsoft SQL Server Reporting Services 2012 for Microsoft SQL Server 2012 Express Edition 2012', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1581, 'SQL Server Reporting Services 11.0.3000.0', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1582, 'SSRS 2016', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1583, 'SSRS', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1584, 'SQL Server Reporting Services (SSRS)', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1585, 'MICROSOFT SQL SERVER REPORTING SERVICES 10.*', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1586, 'MVS', 6, 577, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1587, 'OS/390', 6, 440, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1588, 'ZOS V1R9', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1589, 'ZOS Base 1.12', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1590, 'IBM Z/OS V2.1', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1591, 'z/OS 1.9', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1592, 'z/OS', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1593, 'zOS', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1594, 'z/OS 1.8', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1595, 'zOS 11.1', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1596, 'z/OS Base', 6, 441, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1597, 'MySQL Instance', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1598, 'MySQL AB - MySQL - 15.1', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1599, 'My SQL 0', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1600, 'MYSQL', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1601, 'Sun - Sun Microsystems MySQL Server Community Edition 5.6', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1602, 'MySQL AB - MySQL Server 5.5', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1603, 'MySQL AB - MySQL Server 5.7', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1604, 'MySQL Enterprise Server - 8.0.16', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1605, 'mysql on linux', 2, 122, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1606, 'Neo4', 2, 123, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1607, 'Neo4J', 2, 123, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1608, 'Net Optics Network TAPs', 4, 297, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1609, 'Net Optics Taps', 4, 297, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1610, 'NAS', 8, 272, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1611, 'Netscape Application Server', 8, 272, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1612, 'Netscape Application Server (NAS)', 8, 272, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1613, 'NES', 8, 273, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1614, 'Netscape Enterprise Server', 8, 273, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1615, 'Netscape En', 8, 273, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1616, 'Netscape Enterprise Server (NES)', 8, 273, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1617, 'Nexus', 2, 124, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1618, 'Nexus Repository OSS', 2, 124, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1619, 'Nginx (Linux)', 8, 274, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1620, 'Nginx 3 (Linux)', 8, 274, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1621, 'Nginx 1 (Linux)', 8, 274, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1622, 'Nginx', 8, 274, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1623, 'Nginx 1', 8, 274, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1624, 'Nginx 3', 8, 274, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1625, 'Niakwa Programming Language (NPL)', 9, 342, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1626, 'NPL (Niakwa Inc)', 9, 342, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1627, 'Niakwa Programming Language', 9, 342, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1628, 'NIX', 2, 125, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1629, 'Nix package manager', 2, 125, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1630, 'Node.js', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1631, 'Node.js 0.10 (Linux)', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1632, 'Nodejs Foundation - nodejs - node.js 11.7.0', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1633, 'TS-Node.js 6', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1634, 'Node.js 4', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1635, 'Node.js 6', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1636, 'Node.js 10', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1637, 'Node.js 8', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1638, 'TS-Node.js 8', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1639, 'TS-Node.js 0.10', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1640, 'node', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1641, 'Node.js 0.8', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1642, 'Node.js 0.10', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1643, 'Node.js 4 (Linux)', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1644, 'TS-Node.js 11', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1645, 'Node.js 5', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1646, 'Nodejs', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1647, 'Node.js 0.12', 10, 507, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1648, 'Objective C', 9, 343, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1649, 'Objective-C', 9, 343, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1650, 'Obj-C', 9, 343, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1651, 'OpenEdge ABL', 9, 344, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1652, 'Progress', 9, 344, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1653, 'OpenEdge', 9, 344, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1654, 'Progress OpenEdge', 9, 344, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1655, 'Symas OpenLDAP', 2, 126, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1656, 'OpenLDAP', 2, 126, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1657, 'HPExstream', 2, 127, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1658, 'OpenText Exstream', 2, 127, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1659, 'VMS 8.4', 6, 442, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1660, 'OPENVMS 7.3.2', 6, 442, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1661, 'VMS', 6, 442, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1662, 'OpenVMS', 6, 442, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1663, 'OPENVMS 8.4', 6, 442, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1664, 'OpenVPN', 2, 128, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1665, 'Oracle Access Management', 2, 129, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1666, 'OAM 12c', 2, 129, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1667, 'ADF 12c', 2, 130, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1668, 'Oracle ADF', 2, 130, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1669, 'Oracle APEX', 2, 131, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1670, 'Apex', 2, 131, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1671, 'Oracle HTTP Server 12c', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1672, 'OHS', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1673, 'Oracle Application Server 9i', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1674, 'Oracle HTTP Server powered by Apache', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1675, 'j2eeoracleca', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1676, 'Oracle Application Server', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1677, 'Oracle HTTP', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1678, 'Oracle HTTP server', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1679, 'Oracle - Oracle Application Server OC4J Instance 11.2', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1680, 'Oracle Web App Server', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1681, '9i AS server', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1682, 'Oracle Applications 11.5.10CU2', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1683, 'Oracle Application R12.1.3', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1684, 'OC4J', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1685, 'Oracle Appache 1.0.22', 8, 610, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1686, 'Oracle Transparent Gateway', 7, 494, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1687, 'Weblogic BI Publisher', 2, 132, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1688, 'Oracle BI Publisher 10g (10.1.3.4)', 2, 132, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1689, 'Oracle BI Publisher', 2, 132, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1690, 'Oracle Business Intelligence', 2, 133, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1691, 'OBI', 2, 133, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1692, 'OBIEE', 2, 133, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1693, 'OBI Reporting', 2, 133, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1694, 'Oracle 12c Enterprise', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1695, 'Oracle 12 c', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1696, 'Oracle 12.2 Client', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1697, 'Oracle 11gR1', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1698, 'Oracle 18c', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1699, 'Oracle 9.2.0.7.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1700, 'Oracle 10.2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1701, 'Oracle Database 11g Enterprise Edition Release 11.2.0.4.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1702, 'Oracle 11.2 (Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit) RAC', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1703, 'Oracle 18', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1704, 'Oracle 9i', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1705, 'Oracle 12c (v12.2.0.1) ORACLE', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1706, 'Oracle Database 12.1.0.2.190716', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1707, 'Oracle 12.1.0.2.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1708, 'Oracle 12.1', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1709, 'Oracle Database 11g R2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1710, 'Oracle 11 on AIX', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1711, 'Oracle Database 10g Enterprise Edition Release 10.1.0.4.0 - 64bit', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1712, 'Oracle Database 11.2.0.3.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1713, 'Oracle Database 10g 10.2.0.5.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1714, 'Oracle 11 on EXA', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1715, 'Oracle Database 11.1.0.7.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1716, 'Oracle Database Server', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1717, 'Oracle DB Server', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1718, 'Oracle (9i,10g,11g,12c,18c)', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1719, 'Oracle 12C', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1720, 'Oracle 10.2.0.5', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1721, 'Oracle-OracleDB-10g', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1722, 'Oracle 11.2.0.2.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1723, 'Oracle 10', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1724, 'Oracle 8', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1725, 'Oracle 11G R2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1726, 'Oracle Database 10g Release 10.2.0.4.0 - 64bit Production', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1727, 'Oarcle 11G', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1728, 'Oracle 12C R2 ORACLE', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1729, 'Oracle 11x', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1730, 'Oracle 11.2.4', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1731, 'Oracle Database 11gR2 Enterprise Edition 11.2.0.1 (64-bit)', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1732, 'Oracle', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1733, 'Oracle 12.1.0.2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1734, 'Oracle Database 10g R2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1735, 'Oracle 12x', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1736, 'Oracle - 12.1.0.2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1737, 'Oracle 10g', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1738, 'DB - Oracle inbuilt', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1739, 'Oracle 12g', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1740, 'Oracle Database 10g Release 2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1741, 'Oracle 11.2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1742, 'Oracle 11 g', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1743, 'Oracle 9.2.0.8.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1744, 'Oracle Database 12.2.1.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1745, 'Oracle 10.2.0.4.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1746, 'Oracle 10g (10.2.0.3.0 on 32-bit windows)', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1747, 'Oracle 11g (11.2.0.3.0 on 64-bit windows)', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1748, 'Oracle-Oracle DB-8i', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1749, 'Oracle DB', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1750, 'Oracle Database', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1751, 'Oracle - Oracle Database - 10g Release 2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1752, 'Oracle 10x', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1753, 'Oracle 11.2.0.4.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1754, 'Oracle 11g RAC', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1755, 'Oracle Database 11g Release 2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1756, 'Oracle Server', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1757, 'Oracle Database 12c R1', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1758, 'Oracle 10.2.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1759, 'Oracle 11.2.0.4.0 64-bit', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1760, 'Oracle 10.2.0.5.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1761, 'Oracle 9.2.0.5.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1762, 'Oracle DB 11g EER 11.2.0.3.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1763, 'ORACLE RELATIONAL DATABASE MANAGEMENT SYSTEM VERSION 11.2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1764, 'Oracle Database 9i Release 2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1765, 'Oracle 11.1.0.7.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1766, 'Oracle Database 11g', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1767, 'Oracle DB 11.2.0.3', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1768, 'Oracle 12.2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1769, 'Oracle 11g', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1770, 'Oracle Database 12c Release 2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1771, 'Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1772, 'Oracle 11.2.0.3.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1773, 'Oracle 10.2.0.3.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1774, 'Oracle 12', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1775, 'Oracle Database 12c R2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1776, 'Oracle 12C on linux', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1777, 'oracle 11g ORACLE', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1778, 'Oracle - 11.2.0.3', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1779, 'Oracle 12c (Oracle Database 12c Enterprise Edition Release 11.2.0.3.0 - 64bit)', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1780, 'Oracle9i Enterprise Edition Release 9.2.0.5.0', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1781, 'OracleDB EE11.2', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1782, 'Oracle 11g on linux', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1783, 'Oracle 11gEssbase', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1784, 'Oracle12', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1785, 'Oracle Database 12c Release 1', 2, 134, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1786, 'JServer Release 9.2.0.5.0', 5, 474, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1787, 'Jserver', 5, 474, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1788, 'ORACLE SPATIAL', 5, 475, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1789, 'Oracle Spatial and Graph', 5, 475, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1790, 'Designer 6i', 2, 135, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1791, 'Oracle Designer', 2, 135, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1792, 'Enterprise Manager 12.2.1.1', 2, 136, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1793, 'Enterprise Manager 12.2.1.2', 2, 136, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1794, 'Enterprise Manager 11.1.1.7', 2, 136, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1795, 'Oracle Enterprise Manager', 2, 136, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1796, 'Exadata X6-2', 4, 298, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1797, 'Oracle Exadata', 4, 298, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1798, 'Oracle Exadata 11g', 4, 298, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1799, 'Oracle - Exadata X6-2', 4, 298, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1800, 'Oracle Forms', 2, 137, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1801, 'Hyperion Interactive Reporting', 2, 138, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1802, 'Oracle Hyperion Interactive Reporting version 9.3', 2, 138, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1803, 'Hyperion Planning Server', 2, 139, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1804, 'Hyperion Planning', 2, 139, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1805, 'Oracle Net Services', 2, 140, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1806, 'Oracle, Nets', 2, 140, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1807, 'Oracle Real Application Clusters (RAC)', 2, 141, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1808, 'Oracle RAC', 2, 141, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1809, 'Oracle Real Application Clusters', 2, 141, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1810, 'Oracle Retail Point-of-Service', 2, 142, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1811, 'ORPOS 13.3.3', 2, 142, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1812, 'ORPOS 13.3.5', 2, 142, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1813, 'ORPOS 13.3.4', 2, 142, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1814, 'Oracle Service Bus', 2, 143, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1815, 'Oracle Service Bus 11.1.1.7', 2, 143, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1816, 'Oracle Service Bus 12.2.1.2', 2, 143, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1817, 'OSB Servers', 2, 143, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1818, 'Oracle Service Bus 12.2.1.1', 2, 143, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1819, 'Oracle Smart View', 2, 144, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1820, 'Hyperian Smart View', 2, 144, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1821, 'Oracle SOA Suite', 2, 145, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1822, 'Oracle SOA Suite 12.2.1.3.0', 2, 145, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1823, 'Oracle SQL Developer', 2, 146, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1824, 'Oracle - Oracle Sql Developer 1.5', 2, 146, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1825, 'Oracle TimesTen In-Memory Database', 2, 147, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1826, 'Oracle TT', 2, 147, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1827, 'Oracle VM 3.3.3', 3, 567, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1828, 'Oracle VM', 3, 567, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1829, 'Oracle VM 3.3', 3, 567, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1830, 'OWB 10g', 2, 148, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1831, 'Oracle Warehouse Builder', 2, 148, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1832, 'Oracle Warehouse Builder (OWB)', 2, 148, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1833, 'WebCenter Content Server', 8, 276, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1834, 'Oracle WebCenter Content Server', 8, 276, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1835, 'IDOC SCRIPT', 7, 495, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1836, 'Orbix', 2, 149, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1837, 'IONA Orbix', 2, 149, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1838, 'OS/2', 6, 443, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1839, 'OWASP Enterprise Security API (ESAPI)', 12, 416, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1840, 'OWASP Enterprise Security API', 12, 416, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1841, 'Esapi', 12, 416, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1842, 'Pascal', 9, 599, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1843, 'Object Pascal', 9, 346, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1844, 'Clascal', 9, 346, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1845, 'Pentaho', 2, 150, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1846, 'peoplesoft', 2, 151, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1847, 'Oracle-HR-9.2', 2, 151, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1848, 'Perkin Elmer Informatics', 2, 152, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1849, 'Perkin Elmer Informatics (PKI)', 2, 152, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1850, 'Perl', 9, 585, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1851, 'Perl 5.8.4', 9, 585, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1852, 'ActivePerl', 9, 348, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1853, 'ActiveState Tool Corp. - ActivePerl 5.12', 9, 348, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1854, 'ActiveState Tool Corp. - ActivePerl 5.8', 9, 348, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1855, 'ORAPERL', 12, 417, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1856, 'REX', 9, 349, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1857, 'Pervasive', 2, 153, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1858, 'Pervasive PSQL', 2, 153, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1859, 'PHP 5.4', 9, 586, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1860, 'PHP', 9, 586, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1861, 'Pipeflo', 2, 154, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1862, 'PIPE-FLO', 2, 154, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1863, 'TCServer V6', 8, 277, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1864, 'Pivotal tc Server', 8, 277, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1865, 'IBM PKWARE PKZip 2', 2, 155, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1866, 'PKZIP', 2, 155, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1867, 'PL/I', 9, 351, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1868, 'PL1', 9, 351, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1869, 'pli', 9, 351, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1870, 'PL/1', 9, 351, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1871, 'PLQSL', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1872, 'Oracle - SQL', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1873, 'PL/SQL TEMPLATING LANGUAGE', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1874, 'PL/SQL', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1875, 'Oracle SQL', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1876, 'PLSQL;', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1877, 'Oracle PL/SQL', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1878, 'Oracle PLSQL', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1879, 'plsql', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1880, 'pl-sql', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1881, 'PL SQL', 9, 352, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1882, 'Planview', 2, 156, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1883, 'Projectplace', 2, 156, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1884, 'postgres', 2, 157, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1885, 'PostGreSQL', 2, 157, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1886, 'PostgreSQL 0', 2, 157, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1887, 'Postgress', 2, 157, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1888, 'PowerBuilder 6.5', 2, 158, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1889, 'Powerbuilder V12.5', 2, 158, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1890, 'Power Builder', 2, 158, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1891, 'Powerbuilder v11.5', 2, 158, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1892, 'Power Builder 6.5', 2, 158, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1893, 'Powerbuilder', 2, 158, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1894, 'Primavera', 2, 159, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1895, 'Primavera P6', 2, 159, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1896, 'PRO*C', 9, 353, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1897, 'PRO C', 9, 353, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1898, 'ProC', 9, 353, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1899, 'Pro*Cobol', 2, 160, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1900, 'ProjectWise', 2, 161, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1901, 'ProjectWise Oracle Server', 2, 161, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1902, 'Projectwise Server (XM)', 2, 162, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1903, 'ProjectWise JJ', 2, 162, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1904, 'Projectwise Server', 2, 162, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1905, 'Projectwise Setup for PEMEX', 2, 162, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1906, 'ProjectWise Web Server', 2, 162, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1907, 'ProjectWise Application Server', 2, 162, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1908, 'ProjectWise Cache Server', 2, 162, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1909, 'PVCS Version Manager', 2, 163, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1910, 'Serena PVCS Version Manager 8.4', 2, 163, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1911, 'Python Software Foundation - Python 2.6', 9, 587, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1912, 'Python - Python - Python 2', 9, 587, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1913, 'Python 2', 9, 587, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1914, 'Python', 9, 587, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1915, 'QlikView', 2, 164, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1916, 'R', 9, 355, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1917, 'RMQ', 2, 165, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1918, 'rabbit mq', 2, 165, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1919, 'RabbitMQ', 2, 165, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1920, 'ClearCase Build Utility 1', 2, 166, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1921, 'Rational ClearCase', 2, 166, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1922, 'Clearquest', 2, 167, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1923, 'Rational ClearQuest', 2, 167, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1924, 'redis', 2, 168, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1925, 'Remedy', 2, 169, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1926, 'Remedy ARS', 2, 169, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1927, 'Resin Web Server', 8, 278, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1928, 'Resin', 8, 278, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1929, 'rexx', 9, 356, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1930, 'Riak', 2, 170, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1931, 'RightFax client 10', 2, 171, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1932, 'RightFax', 2, 171, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1933, 'RPG', 9, 357, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1934, 'Ruby', 9, 588, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1935, 'Ruby on Rails', 10, 508, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1936, 'Rumba', 2, 172, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1937, 'Salesforce Object Query Language (SOQL)', 9, 359, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1938, 'SOQL', 9, 359, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1939, 'Salesforce Object Query Language', 9, 359, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1940, 'SAP Business Objects', 2, 173, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1941, 'Business Objects 12', 2, 173, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1942, 'BusinessObjects 4.2 SP7', 2, 173, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1943, 'SAP BI 4.2 Sp5', 2, 173, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1944, 'SAP BusinessObjects BI server', 2, 173, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1945, 'SAP ERP', 2, 174, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1946, 'SAP EHP 7', 5, 476, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1947, 'SAP EHP', 5, 476, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1948, 'SAP - SAP Kernel 7.1', 5, 477, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1949, 'SAP Kernel', 5, 477, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1950, 'SAP HANA ON SUSEOracle 11g on Linux', 2, 175, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1951, 'HANA', 2, 175, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1952, 'SAP HANA DB', 2, 175, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1953, 'SAP - HANA 2.0', 2, 175, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1954, 'SAP MaxDB', 2, 176, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1955, 'NetWeaver', 8, 279, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1956, 'SAP NetWeaver App Server', 8, 279, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1957, 'ABAP', 7, 496, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1958, 'SAP NetWeaver Business Warehouse', 2, 177, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1959, 'SAP BW 7.5 SP10 - BW has 10 App servers for load balancing', 2, 177, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1960, 'SAP BW DB server has one instance and 13 servers for load balancing', 2, 177, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1961, 'SAP BW 7.5 SP10', 2, 177, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1962, 'SAP - SAP SQL Anywhere Network Database Server 12', 2, 178, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1963, 'SAP SQL Anywhere', 2, 178, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1964, 'SAP - SAP SQL Anywhere Network Database Server 11', 2, 178, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1965, 'SAP - SAP SQL Anywhere Personal Database Server 16', 2, 178, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1966, 'SAP Web Dynpro', 2, 179, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1967, 'Web-Dynpro', 2, 179, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1968, 'SAS', 9, 360, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1969, 'SAS 9.2', 9, 360, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1970, 'SCSS', 9, 361, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1971, 'Sass', 9, 361, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1972, 'Scala', 9, 362, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1973, 'Scalla', 9, 362, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1974, 'Sentry', 2, 180, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1975, 'Sentry 1.13', 2, 180, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1976, 'Sharepoints 2010', 2, 603, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1977, 'Microsoft SPS 2010', 2, 603, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1978, 'SharePoint', 2, 603, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1979, 'SharePoint 2013', 2, 603, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1980, 'Sharepoint 2007', 2, 603, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1981, 'Sharepoint 2010', 2, 603, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1982, 'SQL Server SP2013 Database Server', 2, 603, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1983, 'Sharepoint 2016', 2, 603, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1984, 'Siebel IP 2015', 2, 182, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1985, 'Siebel 7.8.2.16', 2, 182, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1986, 'Siebel', 2, 182, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1987, 'Siebel CRM', 2, 182, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1988, 'Smalltalk', 9, 363, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1989, 'SNA Manager', 2, 183, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1990, 'SNA Manager 8.0.3608.0', 2, 183, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1991, 'Techsmith Corporation - SnagIt 8', 2, 184, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1992, 'SnagIt', 2, 184, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1993, 'Solid development server', 2, 185, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1994, 'solidDB', 2, 185, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1995, 'SonarSource - SonarSource SonarQube Server 5.1', 2, 186, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1996, 'SonarQube', 2, 186, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1997, 'SpaceMonger', 2, 187, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1998, 'Sixty-Five Software - SpaceMonger 1.4', 2, 187, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (1999, 'Spark', 8, 280, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2000, 'Splunk', 2, 188, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2001, 'SQLPlus', 5, 478, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2002, 'SQL Plus', 5, 478, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2003, 'SQL*Plus', 5, 478, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2004, 'SQLIO 1.0', 2, 189, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2005, 'SQLIO', 2, 189, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2007, 'Sun ONE Web Server', 8, 281, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2008, 'Sun Java Web Server 7.0 Update 2', 8, 281, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2009, 'iPlanet Web Server', 8, 281, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2010, 'Oracle iPlanet Web Server', 8, 281, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2011, 'Sun Java Web Server', 8, 281, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2012, 'SunOne', 8, 281, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2013, 'Swift', 9, 364, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2014, 'Sybase SQL Server', 2, 190, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2015, 'Sybase', 2, 190, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2016, 'SYBASE ADAPTIVE SERVER ENTERPRISE DATABASE SERVER 12.5"', 2, 190, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2017, 'SYBASE ADAPTIVE SERVER ENTERPRISE DATABASE SERVER 12', 2, 190, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2018, 'SAP - Sybase Adaptive Server Enterprise 12.5', 2, 190, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2019, 'SAP - Sybase Adaptive Server Enterprise 16', 2, 190, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2020, 'SAP - Sybase Adaptive Server Enterprise 12', 2, 190, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2021, 'Sybase Central', 5, 479, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2022, 'SAP - Sybase Central 4.3', 5, 479, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2023, 'SAP - Sybase Dsedit 12.5', 5, 480, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2024, 'Sybase Dsedit', 5, 480, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2025, 'Sysncsort', 2, 191, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2026, 'syncsort', 2, 191, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2027, 'Sysinternals LLC - AccessEnum 1 1', 2, 194, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2028, 'AccessEnum', 2, 194, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2029, 'Sysinternals LLC - ClockRes 2', 2, 195, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2030, 'ClockRes', 2, 195, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2031, 'Sysinternals LLC - Coreinfo 3.21', 2, 196, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2032, 'Coreinfo', 2, 196, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2033, 'Sysinternals LLC - DiskExt 1.1', 2, 197, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2034, 'DiskExt', 2, 197, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2035, 'Sysinternals LLC - DiskMon 2.01', 2, 198, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2036, 'DiskMon', 2, 198, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2037, 'Hex2dec', 2, 199, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2038, 'Sysinternals LLC - Hex2dec 1', 2, 199, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2039, 'Sysinternals LLC - Junction 1.6', 2, 200, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2040, 'Junction', 2, 200, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2041, 'Sysinternals LLC - LDMDump 1.02', 2, 201, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2042, 'LDMDump', 2, 201, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2043, 'Sysinternals LLC - LoadOrder 1', 2, 202, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2044, 'LoadOrder', 2, 202, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2045, 'PipeList', 2, 203, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2046, 'Sysinternals LLC - PipeList 1.01', 2, 203, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2047, 'Process Explorer', 2, 204, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2048, 'Sysinternals LLC - Process Explorer 16.5', 2, 204, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2049, 'Sysinternals LLC - PsKill 1.15', 2, 205, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2050, 'PsKill', 2, 205, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2051, 'Sysinternals LLC - PsPasswd 1.23', 2, 206, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2052, 'PsPasswd', 2, 206, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2053, 'SDelete', 2, 207, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2054, 'Sysinternals LLC - SDelete 1.61', 2, 207, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2055, 'Sysinternals LLC - ShareEnum 1.6', 2, 208, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2056, 'ShareEnum', 2, 208, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2057, 'Sysinternals LLC - Sync 2.2', 2, 209, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2058, 'Sync', 2, 209, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2059, 'Sysinternals LLC - Sysinternals TCPView 3.5', 2, 210, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2060, 'TCPView', 2, 210, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2061, 'Sysinternals LLC - VMMap 3.11', 2, 211, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2062, 'VMMap', 2, 211, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2063, 'Sysinternals LLC - Whois 1.11', 2, 212, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2064, 'Whois', 2, 212, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2065, 'Tableau', 2, 213, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2066, 'TCL', 9, 365, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2067, 'TCPLink Enterprise Server 6', 2, 214, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2068, '(Canon IT Solutions) TCPLink Enterprise Server 6', 2, 214, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2069, 'TERADATA', 2, 215, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2070, 'Teradata hors Radia', 2, 215, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2071, 'Teradata QS Server', 2, 216, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2072, 'TERADATA QUERY SCHEDULER SERVER VERSION 15', 2, 216, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2073, 'TIBCO Business Works', 2, 217, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2074, 'Tibco BW', 2, 217, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2075, 'BusinessWorks', 2, 217, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2076, 'TIBCO Business Works (BW)', 2, 217, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2077, 'Integration Manager', 5, 481, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2078, 'Tibco-IM', 5, 481, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2079, 'Tibco Integration Manager', 5, 481, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2080, 'Tibco InConcert', 2, 218, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2081, 'TIBCO Rendezvous (RV)', 2, 219, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2082, 'TIBCO Rendezvous', 2, 219, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2083, 'Tivoli Access Manager (TAM)', 2, 220, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2084, 'Tivoli Access Manager 6.1', 2, 220, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2085, 'TortoiseCVS', 2, 221, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2086, 'TortoiseSVN', 2, 222, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2087, 'TortoiseSVN 1.8', 2, 222, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2088, 'TSQL', 9, 366, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2089, 'Transact-SQL', 9, 366, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2090, 'Trasact SQL', 9, 366, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2091, 'T-SQL', 9, 366, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2092, 'Transact SQL', 9, 366, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2093, 'TSO/ISPF', 2, 223, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2094, 'ispf', 2, 223, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2095, 'TSO', 2, 223, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2096, 'TSO ISPF', 2, 223, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2097, 'TWS zCentric 8.4', 2, 224, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2098, 'TWS Zcentric', 2, 224, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2099, 'TypeScript', 9, 367, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2100, 'UltiDev Web Server Pro (UWS)', 8, 282, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2101, 'UltiDev Web Server Pro', 8, 282, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2102, 'UltiDev Web Server Pro 2', 8, 282, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2103, 'UltiDev Cassini Pro', 8, 282, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2104, 'Uniface', 2, 225, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2105, 'Unix', 6, 578, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2106, 'IBM AIX 6.1 6100 64 Bit', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2107, 'AIX 7.1 7100-04-06-1806', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2108, 'AIX-6', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2109, 'AIX Enterprise', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2110, 'IBM AIX', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2111, 'AIX7.1.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2112, 'AIX 7100-05-03-1838', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2113, 'IBM - AIX Standard Edition 7.1', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2114, 'IBM AIX 5.3, SERVICE PACK TL12 SP08', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2115, 'AIX7.2.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2116, 'AIX 6.1.0.0.09', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2117, 'AIX 7.2.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2118, 'AIX 5.3 5300-12-07-1241', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2119, 'AIX 6.1.9.101', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2120, 'AIX 5.3.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2121, 'AIX 7.1', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2122, 'AIX 7.1 7100-05-03-1846', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2123, 'AIX 5.3.0.0.08', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2124, 'AIX 6.1 6100-09-09-1717', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2125, 'AIX 7.1 7100-04-01-1543', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2126, 'AIX 6100-09-09-1717', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2127, 'IBM AIX 6.1 Enterprise 64 Bit', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2128, 'AIX 7.1.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2129, 'IBM AIX 7.1 x', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2130, 'AIX 7.1 7100-05-03-1838', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2131, 'AIX7.2', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2132, 'AIX 6.1 6100-09-12-1838', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2133, 'AIX (Linux)', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2134, 'IBM - AIX Express Edition 7.1', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2135, 'AIX 5.3.0.0.12', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2136, 'AIX', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2137, 'IBM AIX 6.1 6100 32 Bit', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2138, 'AIX: 7.2', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2139, 'AIX 6.1', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2140, 'AIX 5.3', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2141, 'IBM AIX 5.3 5300 64 Bit', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2142, 'AIX 5.2.0.0.09', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2143, 'AIX 5.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2144, 'AIX 7100-05-03-1846', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2145, 'AIX 7.2 7200-03-03-1914', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2146, 'AIX6.1.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2147, 'IBM AIX 7.1 7100 64 Bit', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2148, 'AIX 7.1 7100-05-04-1914', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2149, 'IBM AIX 5.x', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2150, 'AIX 6.1.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2151, 'AIX 7.1.5.16', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2152, 'AIX 6.1.0.0 UNIX LPAR', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2153, 'AIX 5300-12-07-1241', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2154, 'IBM AIX 5.3, SERVICE PACK TL12 SP01', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2155, 'IBM - AIX 6.1.0.0', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2156, 'IBM AIX 6.1x', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2157, 'AIX7.1', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2158, 'AIX 7100-04-05-1720', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2159, 'AIX Express', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2160, 'IBM AIX 64 Bit', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2161, 'AIX Standard', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2162, 'AIX 6.1.8.16', 6, 445, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2163, 'FreeBSD (64-bit)', 6, 447, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2164, 'FreeBSD', 6, 447, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2165, 'FreeBSD 8.X', 6, 447, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2166, 'FreeBSD 8.4', 6, 447, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2167, 'Sun Solaris 10 OS', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2168, 'Solaris 11.2 SPARC', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2169, 'Solaris UNIX', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2170, 'Unix Servers (Solaris', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2171, 'Oracle Solaris 11.3 SPARC', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2172, 'SUN 5.10', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2173, 'SOLARIS 10', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2174, 'Sun Solaris', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2175, 'Solaris 5.10 (Generic_150400-61)', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2176, 'Solaris 5.10 (Generic_150400-62)', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2177, 'Solaris (Sun OS 5.9)', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2178, 'Solaris 5.10 (Generic_150400-55)', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2179, 'SUNOS 5.10', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2180, 'Sun Solaris - 5.10', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2181, 'Solaris 10 (SunOS 5.10)', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2182, 'Oracle Solaris', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2183, 'Unix - SunOS - 5.10 Generic_147147-26', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2184, 'Solaris 1 (SPARC)', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2185, 'SUN OS', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2186, 'solaris', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2187, 'SunSolaris 10.0', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2188, 'SOLARIS 9', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2189, 'SunOS', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2190, 'SUN 5.9', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2191, 'SOLARIS 8', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2192, 'SunOS 5.1', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2193, 'SunOS 5.11', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2194, 'Oracle Solaris 10', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2195, 'Sun Solaris 10', 6, 448, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2196, 'HPUX 11i V1', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2197, 'HP-UX 11.31', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2198, 'HPUX 11i V3', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2199, 'HP/UXB.11.23', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2200, 'HPUX B.11.31', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2201, 'HPUX 11', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2202, 'hp-ux', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2203, 'HPUX 11.23', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2204, 'HP-UX B.11.31', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2205, 'HPUX 11.31', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2206, 'HP-UX 11.23', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2207, 'HP-UX B.11.00', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2208, 'HP-UX B.11.23', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2209, 'HP-UX B.11.11', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2210, 'HP 10.20', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2211, 'HP Unix', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2212, 'HP UX', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2213, 'HP-UX 11.11', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2214, 'HPUX', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2215, 'HPUX-11i V3', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2216, 'HP-UX B.10.20', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2217, 'HP/UXB.11.31', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2218, 'HP-UX 10.20', 6, 449, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2219, 'Visual Basic .Net', 9, 368, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2220, 'VB.NET', 9, 368, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2221, 'VB Script', 9, 369, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2222, 'VBscript', 9, 369, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2223, 'NetManage-ViewNow', 2, 226, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2224, 'ViewNow X Server', 2, 226, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2225, 'Virtual I/O Server', 2, 227, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2226, 'VIO 2.2.0.10', 2, 227, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2227, 'VIOS', 2, 227, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2228, 'visibroker', 2, 228, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2229, 'VB6', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2230, 'VB 6.0', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2231, 'visualbasic', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2232, 'VB', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2233, 'VISUAL BASIC 6', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2234, 'Visual Basic', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2235, 'Visual Basic 6.0', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2236, 'Visusal Basic', 9, 370, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2237, 'Visual Basic for Applications (VBA)', 9, 371, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2238, 'Visual Basic for Applications', 9, 371, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2239, 'VBA', 9, 371, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2240, 'Access VB', 9, 371, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2241, 'Visual FoxPro', 9, 372, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2242, 'vfoxpro', 9, 372, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2243, 'VisualForce', 10, 509, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2244, 'ESXi', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2245, 'ESXi 5.1', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2246, 'VM ESXi 5.1', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2247, 'VM ESXi 6.0', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2248, 'VM ESXi 5.5', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2249, 'VMWARE ESXI SERVER 5.5', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2250, 'VM ESXi 5.0.0', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2251, 'VMware ESXi 5.5.0', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2252, 'VM ESXi 6.5', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2253, 'VMWare ESX', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2254, 'VM ESXi 5.0', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2255, 'VMWare ESXi', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2256, 'VMWARE ESXI SERVER 5.1', 3, 568, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2257, 'VMware Appliance', 3, 569, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2258, 'VMware Server', 3, 569, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2259, 'VMware Solution Exchange Marketplace (VSX)', 2, 229, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2260, 'VSX', 2, 229, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2261, 'VMware Solution Exchange Marketplace', 2, 229, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2262, 'VMware - VMware Tools 10.2', 2, 230, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2263, 'VMware Tools', 2, 230, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2264, 'VMware - VMware vCenter Server 5.5', 2, 231, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2265, 'VMware vCenter', 2, 231, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2266, 'VoiceXML', 9, 373, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2267, 'VXML', 9, 373, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2268, 'WebFOCUS', 2, 232, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2269, 'Web Focus', 2, 232, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2270, 'FOCEXEC', 2, 232, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2271, 'Web Logic Integration', 2, 233, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2272, 'WLI 8', 2, 233, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2273, 'WebLogic Integration', 2, 233, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2274, 'Web Logic Integration 9.2.0.0', 2, 233, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2275, 'webMethods Integration Server', 8, 283, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2276, 'WebMethods', 8, 283, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2277, 'Webmethods 9.7', 8, 283, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2278, 'WAS 7', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2279, 'websphere 8.0.0.4', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2280, 'IBM WEBSPHERE APPLICATION SERVER VERSION 6.1.0', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2281, 'WEBSPHERE APPLICATION SERVER - BASE VERSION 8.5.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2282, 'WEBSPHERE APPLICATION SERVER 8', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2283, 'Websphere Application Server 6.x', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2284, 'websphere', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2285, 'WebSphere Application Server 9.0', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2286, 'IBM WebSphere Application Server Network Deployment, 8.0.0.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2287, 'WebSphere Application Server (WAS)', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2288, 'IBM WebSphere Application Server Network Deployment 7', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2289, 'WebSphere Application Server 8.5.1', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2290, 'WAS ND8.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2291, 'WAS7', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2292, 'WebSphere Application Server 5.1', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2293, 'WebSphere Application Server 8.5.5.6', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2294, 'WebSphere Application Server 5.0', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2295, 'WebSphere Application Server 8.0', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2296, 'IBM WebSphere 8.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2297, 'Websphere 9.0', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2298, 'WebSphere 7.0.0.27', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2299, 'IBM - WebSphere Application Server - Base 8.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2300, 'WebSphere Application Server 8.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2301, 'WEBSPHERE APPLICATION SERVER 8.5.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2302, 'WebSphere Application Server 8.5 (WAS)', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2303, 'Websphere AS (JVM)', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2304, 'WebSphere App Server', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2305, 'WebSphere Application Server 6.1 (WAS)', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2306, 'WEBSPHERE APPLICATION SERVER', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2307, 'WAS 6.1', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2308, 'WebSphere 8.0.0.4', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2309, 'WEBSPHERE APPLICATION SERVER 6.1', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2310, 'IBM WebSphere', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2311, 'Websphere Application Server 8.5.5.11', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2312, 'WebSphere Application Server 8.5.5.8', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2313, 'IBM WebSphere Application Server 8.5', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2314, 'Websphere (WAS7)', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2315, 'IBM WebSphere Application', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2316, 'WAS 6.x', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2317, 'WAS', 8, 284, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2318, 'IBM OpenStack Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2319, 'IBM WebSphere Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2320, 'Open Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2321, 'IBM Open Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2322, 'WebSphere Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2323, 'IBM WebSphere Application Server Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2324, 'IBM WAS Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2325, 'WebSphere Application Server Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2326, 'WAS Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2327, 'IBM Cloud WebSphere Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2328, 'OpenStack Liberty', 8, 285, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2329, 'WebSphere Commerce Suite (WCS)', 2, 234, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2330, 'WebSphere Commerce', 2, 234, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2331, 'WMB 6.1', 2, 235, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2332, 'WebSphere Message Broker v6.0', 2, 235, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2333, 'WebSphere Message Broker', 2, 235, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2334, 'WebSphere Portal Version 6.1', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2335, 'WebSphere Portal Enable Limited Use 6.1', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2336, 'WebSphere Portal Server 6.0', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2337, 'WebSphere Portal Enable 6.1', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2338, 'WebSphere Portal Extend 6.1', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2339, 'WebSphere Portal Server', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2340, 'WebSphere Portal Limited Use 6.1', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2341, 'WebSphere Portal Extend Limited Use 6.1', 8, 286, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2342, 'Websphere Process Server', 8, 287, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2343, 'Websphere Process Server 8.5', 8, 287, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2344, 'Wherescape Red', 2, 236, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2345, 'Windchill 11.1', 2, 237, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2346, 'Windchill', 2, 237, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2347, 'windows nt', 6, 580, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2348, 'Windows', 6, 580, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2349, 'Windows OS: Windows NT', 6, 580, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2350, 'Windows NT 6.1 Service Pack 1', 6, 580, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2351, 'Windows NT 6.1', 6, 580, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2352, 'Windows NT 4.0', 6, 580, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2353, 'Microsoft Windows NT 6.1', 6, 580, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2354, 'Window', 6, 580, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2355, 'Microsoft Windows NT 4.0', 6, 580, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2356, 'WINDOWS6.1.7601', 6, 580, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2357, 'Windows NT 6.1Windows NT 6.1', 6, 580, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2358, 'Windows Indexing Service', 2, 238, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2359, 'IIS Index Search Server', 2, 238, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2360, 'WTS', 2, 239, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2361, 'Windows Terminal Server', 2, 239, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2362, 'Windows Terminal Server (WTS)', 2, 239, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2363, 'Windows 7 Standard', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2364, 'WINDOWS 10 SERVER STANDARD EDITION X64', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2365, 'Microsoft Windows 7 (64-bit)', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2366, 'Microsoft Windows XP Professional (32-bit)', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2367, 'Windows 7 Professional x64', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2368, 'Microsoft Microsoft Windows Entreprise', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2369, 'Microsoft Windows 2000', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2370, 'Microsoft Windows 10', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2371, 'MS Microsoft Windows 7', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2372, 'Microsoft Windows 7 Professional', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2373, 'Microsoft Microsoft Windows 7 Enterprise', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2374, 'Microsoft Windows 10 Enterprise', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2375, 'Win Desktop', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2376, 'Windows 10 Pro', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2377, 'Windows 10', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2378, 'Windows 7 Ultimate', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2379, 'Microsoft Windows 8 (64-bit)', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2380, 'Microsoft Windows XP', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2381, 'Windows 10 Enterprise', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2382, 'Windows XP', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2383, 'Windows 10 Professional', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2384, 'Windows 7', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2385, 'Microsoft Windows 10 (64-bit)', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2386, 'Win 7', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2387, 'windowsxp', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2388, 'Microsoft Windows Unknown', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2389, 'Windows 7 Enterprise', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2390, 'Windows XP Professional', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2391, 'Windows 7 Professional', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2392, 'Window XP', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2393, 'Microsoft Windows 7 Enterprise', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2394, 'Microsoft Windows 7 - SOE', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2395, 'Windows 7 Enterprise Edition', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2396, 'Windows 8', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2397, 'Microsoft Windows 7', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2398, 'Microsoft Windows 7 (32-bit)', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2399, 'Windows Embedded Standard 7', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2400, 'Win10', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2401, 'Windows 2003', 6, 451, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2402, 'Windows Server 2012 R9', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2403, 'Windows 2003 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2404, 'Windows 2008 Enterprise R2 x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2405, 'Windows Server 2003 SE x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2406, 'Microsoft Windows Server 2008 R2 Standard Service Pack 1, 64-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2407, 'WINDOWS SERVER 2004', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2408, 'WINDOWS 2008R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2409, 'Microsoft Windows Server 2008 Standard Editio', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2410, 'MICROSOFT WINDOWS NT 2003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2411, 'Windows Server 2008 R2 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2412, 'Windows Server 2012 R3', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2413, 'WINDOWS 2003 R2 SERVER STANDARD EDITION', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2414, 'Windows Server 28 - i386', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2415, 'Microsoft Microsoft Windows Server 2016 Datacenter', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2416, 'Microsoft(R) Windows(R) Server 2003, Enterprise Edition Service Pack 2, 32-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2417, 'Windows Server 2008 Enterprise x64 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2418, 'Windows Server 2016', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2419, 'Microsoft - Windows server 2012 - R2 - Service Pack 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2420, 'Microsoft(R) Windows(R) Server 2003, Standard Edition R2 Service Pack 2, 32-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2421, 'Microsoft Windows Server 2008 R2 Standard x64 Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2422, 'WINDOWS6.1.7601 Server 2008 R2 Ent x64 SP 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2423, 'Windows Server 2012 R2 Standard (Core)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2424, 'WINDOWS 2008 R2 SERVER STANDARD EDITION X64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2425, 'Windows Server 2012 R26', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2426, 'Microsoft(R) Windows(R) Server 2003 Standard x64 Edition R2 Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2427, 'Windows 2008 Enterprise 32-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2428, 'Microsoft Windows Server 2003 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2429, 'Windows Server 2012 R2 Std', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2430, 'Windows 2003 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2431, 'Windows 2008 R2 Enterprise 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2432, 'Windows Server 2012 R2 Standard 64 bit Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2433, 'Microsoft Windows Server 2003 Enterprise Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2434, 'Microsoft Windows Server 2000 Advanced', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2435, 'Microsoft Windows Server 2012 R2 St', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2436, 'Windows 2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2437, 'Windows 2012 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2438, 'Windows Server 2008 R2 (64 bits)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2439, 'Windows X-Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2440, 'Windows 2008 R2 Standard 6.1.7601 Service Pack 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2441, 'Windows Server 2003 Standard (32-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2442, 'Windows 2008 Standard x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2443, 'Microsoft Windows Server 2008 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2444, 'Microsoft Windows Storage Server 2012 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2445, 'Windows Server 2003 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2446, 'Windows 2012 R2 Standard 64-Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2447, 'Windows Server 212 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2448, 'Windows Server 2012 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2449, 'Windows Server 2012 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2450, 'Windows Server 2017', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2451, 'Windows Server 2000 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2452, 'Windows Server 2003 Enterprise R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2453, 'Windows Server 2003 SP2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2454, 'Microsoft Windows 2000 Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2455, 'w2k12', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2456, 'WINDOWS 2013', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2457, 'WINDOWS 2016 SE 64 BIT', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2458, 'Windows Server 2008 R2 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2459, 'Microsoft - Windows 2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2460, 'Microsoft Windows Server 2016', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2461, 'Microsoft Windows Server 2000 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2462, 'Windows Server 2012 R12', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2463, 'Window Server 2003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2464, 'WINDOWS SERVER 2008 ENTERPRISE X64 6.0', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2465, 'Windows server 2008R2 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2466, 'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition R2 Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2467, 'MICROSOFT WINDOWS 2008 TPM', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2468, 'Microsoft Windows Server 2012 Standardx64 Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2469, 'MICROSOFT WINDOWS STD 2008', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2470, 'Microsoft(R) Windows(R) Server 2003, Standard Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2471, 'Windows Server 2012 R23', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2472, 'WINDOWS 6.3.9600 Server 2012 R2 Std x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2473, 'Windows 2008 R2 Standard 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2474, 'Windows Server 2008 SP1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2475, 'Windows server 2008 R2 standard Service Pack1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2476, 'MICROSOFT WINDOWS STD 2008 TPM', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2477, 'Microsoft Windows Server 2008 Standard Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2478, 'Windows 2012 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2479, 'MICROSOFT WINDOWS NT 2003 ENT', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2480, 'Windows Server 2012 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2481, 'Windows Server 2016 Standard 64 bit Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2482, 'MICROSOFT WINDOWS 2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2483, 'Windows Server 2003 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2484, 'Windows 2003 Standard5.2.3790', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2485, 'Windows Server 2012 R4', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2486, 'Windows Server 2012 R7', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2487, 'Windows Server 2012 R17', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2488, 'Windows 2012 R', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2489, 'Windows Server 2012 R8', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2490, 'WINDOWS SERVER 2012 R2 DATACENTER', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2491, 'Microsoft Windows Server 2003 R2 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2492, 'Windows 2008 Enterprise 32 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2493, 'MICROSOFT WINDOWS 2008 ENT', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2494, 'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2495, 'Windows 2012 R2 Standard 6.3.9600', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2496, 'Windows 2000 Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2497, 'Windows Server 2012 R20', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2498, 'Windows Server 2000', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2499, 'Windows Server 2003 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2500, 'Windows Server 2008 Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2501, 'Windows 2016 Datacenter', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2502, 'Microsoft(R) Windows(R) Server 2003, Standard Edition Service Pack 2, 32-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2503, 'Microsoft Windows Server 2016 Datacenter', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2504, 'WINDOWS SERVER 2008 R2 STANDARD 6.1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2505, 'Microsoft - Windows Server 2008 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2506, 'Microsoft Windows Server 2012 (64-bit) - Server 2012 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2507, 'Microsoft Windows Server 2016 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2508, 'Windows Server 2008 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2509, 'Windows 2016 Datacenter10.0.14393', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2510, 'Windows Server 2008 64-Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2511, 'windows server 2008 r2 ent', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2512, 'Windows Server 212', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2513, 'windows6.3.9600', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2514, 'Windows 2012 R2 Standard 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2515, 'Microsoft Windows Server 2000 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2516, 'windows6.3.9600 server 2012 r2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2517, 'Windows 2008 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2518, 'Microsoft Microsoft Windows Server 2016 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2519, 'Windows 2003 Server Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2520, 'Windows Server 2012 R16', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2521, 'Window server 2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2522, 'Microsoft Windows Server 2003 Enterprise Edition Version 5.2.3790 [Build 3790]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2523, 'Windows 2003 Server R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2524, 'Windows Server 2012 R21', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2525, 'Microsoft Windows Server 2003 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2526, 'Windows Server 2012 R6', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2527, 'Windows Server 2012 R27', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2528, 'Windows 2008 Standard without Hyper-V6.0.6003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2529, 'WINDOWS SERVER 2012 R2 - Server 2012 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2530, 'Windows 2008 R2 Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2531, 'Microsoft Windows Server 2003 Standard (32-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2532, 'Windows 2012 R2 Datacenter', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2533, 'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition R2 Service Pack 2, 64-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2534, 'Windows Server 2018', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2535, 'Windows 2008 Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2536, 'WINDOWS6.3.9600 Server 2012 R2 DC x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2537, 'Windows 2008 Standard 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2538, 'WINDOWS 6.1.7601 Server 2008 R2 Ent x64 SP 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2539, 'WINDOWS SERVER 2012 R2 DATACENTER 6.3', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2540, 'Microsoft Windows Server 2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2541, 'Windows Server 2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2542, 'Windows server Standard SP2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2543, 'WINDOWS 2003 R2 SERVER ENTERPRISE EDITION', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2544, 'Windows 2000', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2545, 'W2K8R2 Standard 64 BIT', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2546, 'Windows Server 2008 R2 Datacenter', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2547, 'Windows 2008 Standard6.0.6003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2548, 'Windows2008 R2 Enterprise 64bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2549, 'WINDOWS 2012 R2 SERVER STANDARD EDITION X64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2550, 'Windows Server 2000 Professional', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2551, 'Microsoft Windows Server 2008 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2552, 'WINDOWS SERVER 2003 R2 ENTERPRISE 5.2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2553, 'Win2008R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2554, 'Microsoft Windows Server 2003 Web Edition (32-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2555, 'Windows 2008 Standard 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2556, 'Microsoft Windows Server 2008 R2 Enterprise Version 6.1.7601 [Build 7601]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2557, 'Windows Server 2003 Appliance', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2558, 'Windows server 2012 R2 Standared', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2559, 'Windows 2008 ENT R2 (64 bits)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2560, 'Windows Server 2003 (32-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2561, 'Microsoft Windows Server 2003 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2562, 'WIN2008R2 6.1.7601', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2563, 'Microsoft Windows Server 2012 R2 Datacenter', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2564, 'microsoft windows std 2012 tpm', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2565, 'Windows Server 2012 R2 Standardx64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2566, 'microsoft windows 2008', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2567, 'Microsoft Windows Server 2016 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2568, 'Windows 2008 Standard 32 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2569, 'Microsoft Windows 2008 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2570, 'Microsoft Windows 2000 Server Service Pack 4', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2571, 'Microsoft Windows Server 2003 Enterprise x64 Edition Version 5.2.3790 [Build 3790]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2572, 'Microsoft Windows Storage Server 2012 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2573, 'Microsoft Windows Server 2003 Standard x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2574, 'Window2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2575, 'Microsoft Windows NT Server Version 4.0.1381 [Build 1381]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2576, 'Windows Server 2003 Ent', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2577, 'Windows Server 2000 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2578, 'Windows 2008 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2579, 'Microsoft Windows Server 2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2580, 'Microsoft Windows Server 2003 Standard Edition Version 5.2.3790 [Build 3790]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2581, 'Windows Server 2003;', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2582, 'WS03', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2583, 'WINDOWS 6.0.6002 Server 2008 Ent x64 SP 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2584, 'Windows 2008 Enterprise x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2585, 'Microsoft Windows Server 2003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2586, 'Windows Server 2008 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2587, 'Windows Server 2008 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2588, 'windows server 2008 r2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2589, 'Windows 2008 R2 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2590, 'Windows Server 2003 Std 32-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2591, 'Windows 2008 R2 Standard 64bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2592, 'Microsoft Windows Server 2008 (32-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2593, 'MS WINDOWS SERVER 08', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2594, 'Microsoft Windows 2003 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2595, 'Windows Server 2012 R25', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2596, 'MICROSOFT WINDOWS NT 2003 TPM', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2597, 'Win Server 2008', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2598, 'Windows 2003 R2 Standard 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2599, 'WINDOWS 5.2.3790 Server 2003 Ent SP 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2600, 'WIN2014', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2601, 'Windows Server 2012 R19', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2602, 'Microsoft Windows Server 2012 R2 Standard Version 6.3.9600 [Build 9600]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2603, 'Windows Server 2008 R2 Ent 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2604, 'Win 2012 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2605, 'Microsoft Windows Server 2008 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2606, 'WINDOWS 6.3.9600 Server 2012 R2 DC x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2607, 'Windows Server 2012 R24', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2608, 'Win Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2609, 'Windows 2008 Standard R2 x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2610, 'Windows Server 2008 R2 Enterprise x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2611, 'Windows server 2008 Dual processor Intel Xeon x5660 @2.80 GHz 6196 MB memory installed', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2612, 'Windows2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2613, 'Windows 2008 R2 Standard6.1.7601', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2614, 'Windows 2016', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2615, 'Windows 2008 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2616, 'Windows Server 2008 R2 64Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2617, 'Windows Server 2012 R14', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2618, 'Windows Storage Server 2008 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2619, 'Windows Server 2008 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2620, 'Microsoft Windows Server 2003 (32-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2621, 'Windows OS 2008 Server R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2622, 'Microsoft Microsoft Windows Server 2008 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2623, 'Windows Server 28 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2624, 'WINDOWS 2003 SERVER ENTERPRISE EDITION', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2625, 'Microsoft Windows Server 2003 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2626, 'Windows Server 2008 (32-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2627, 'Windows Server 2003 Std 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2628, 'Windows 2012 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2629, 'Wintel', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2630, 'Windows Server 2003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2631, 'Windows Server 2003 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2632, 'Microsoft Windows Server 2012 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2633, 'Windows 2000 Standard Server SP4', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2634, 'WINDOWS6.3.9600 Server 2012 R2 Std x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2635, 'Microsoft Windows 2000 Server Version 5.0.2195 [Build 2195]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2636, 'Microsoft Windows Server 2016 St', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2637, 'WINDOWS SERVER 2008 ENTERPRISE 6.0', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2638, 'Windows Server 2008 R2 Std', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2639, 'Windows 2003 Enterprise5.2.3790', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2640, 'WINDOWS 2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2641, 'Windows 2008 R2 OS', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2642, 'Microsoft Windows Server 2008 R2 Enterprise Service Pack 1, 64-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2643, 'Windows Server 2008 Enterprise x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2644, 'Windows 2003 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2645, 'Windows 2008 R2 Enterprise6.1.7601', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2646, 'Windows 2003 Standard 32 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2647, 'WINDOWS SERVER 2003 APPLIANCE 5.2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2648, 'Windows Server 2003 Std', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2649, 'WS08R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2650, 'Windows Storage Server 2012 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2651, 'WINDOWS SERVER 2003 STANDARD 5.2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2652, 'Windows 2008 Enterprise 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2653, 'Microsoft Windows Server 2012 R2 for Microsoft Windows Server 2012 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2654, 'Windows Server 2000 Advanced', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2655, 'Microsoft Windows Server 2008 R2 Enterprise x64 Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2656, 'WINDOWS 2008 R2 SERVER ENTERPRISE EDITION X64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2657, 'Windows Server 2008 32-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2658, 'Windows Server 2003 Web Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2659, 'WINDOWS SERVER 2012 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2660, 'Microsoft Windows 2012 R2 Server Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2661, 'w2k8r2sp1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2662, 'Microsoft Windows Server 2008 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2663, 'Windows Server 2003 Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2664, 'Microsoft Windows Server 2008 R2 Standa', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2665, 'Win 2003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2666, 'Windows Server 2012 R29', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2667, 'Microsoft - Windows server 2008 - Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2668, 'Microsoft Windows Server 2003 Enterprise x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2669, 'Microsoft(R) Windows(R) Server 2003, Enterprise Edition R2 Service Pack 2, 32-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2670, 'Windows 2012 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2671, 'WINDOWS SERVER 2012 R2 STANDARD 6.3', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2672, 'Windows Server 2008 Enterprise R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2673, 'Microsoft Windows Server 2008 R2 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2674, 'Windows 2008 R2 Standard 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2675, 'Microsoft Windows Server 2008 R2 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2676, 'Windows 2003 Enterprise 32-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2677, 'Microsoft - Microsoft Windows Server 2012 for Microsoft Windows Server 2012 Standard 6.2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2678, 'Windows 2012 Storage R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2679, 'Windows server 2008 Dual processor Intel Xeon x5660 @2.80 GHz 4096 MB memory installed', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2680, 'Microsoft - Windows Server 2012 R2 - 6.3', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2681, 'Windows Server 2012 R5', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2682, 'Microsoft Windows Server 2012 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2683, 'MICROSOFT WINDOWS NT 2003 ENT TPM', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2684, 'Windows 2012 Server R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2685, 'Windows 2016 Standard10.0.14393', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2686, 'Microsoft Microsoft Windows Server 2012 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2687, 'Windows Server 2003 Ent 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2688, 'MICROSOFT WINDOWS 2003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2689, 'WINDOWS 2003 SERVER ENTERPRISE EDITION X64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2690, 'Windows 2012 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2691, 'WINDOWS 2000 ADVANCED SERVER 5.0', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2692, 'Microsoft Windows NT 4.0 Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2693, 'Windows Server2012 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2694, 'Win Server 2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2695, 'Microsoft Windows Server 2008 Enterprise Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2696, 'MICROSOFT WINDOWS STD 2012 TPM', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2697, 'Windows 2003 Enterprise 32 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2698, 'Windows 2008 Enterprise R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2699, 'Windows 2008', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2700, 'Microsoft Microsoft Windows 2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2701, 'WINDOWS 2003 SERVER STANDARD EDITION', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2702, 'windows server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2703, 'Microsoft Windows Server 2008', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2704, 'Microsoft(R) Windows(R) Server 2003 Enterprise x64 Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2705, 'Win Server 2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2706, 'Windows 2016 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2707, 'Microsoft Windows Server 2003 Standard (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2708, 'Microsoft Windows Server 2008 R2 Standard. Service Pack 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2709, 'Windows 2000 Server Service Pack 4', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2710, 'Windows Server 2003 R2 Ent 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2711, 'Windows Server 2012 r2 64bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2712, 'Windows 2008 Enterprise 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2713, 'Microsoft Windows Server 2012 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2714, 'Windows Server 2012 R15', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2715, 'Windows 2003 Standard 5.2.3790 Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2716, 'Windows 2012 Standard6.2.9200', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2717, 'MICROSOFT WINDOWS 2016 TPM', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2718, 'Microsoft Windows Server 2016 or later (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2719, 'Windows Storage Server 2012 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2720, 'Windows 2003 Enterprise', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2721, 'Windows Server 2016 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2722, 'Microsoft Windows Server 2012 R2 Standardx64 Edition', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2723, 'Windows 2008 R2 Enterprise 64-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2724, 'Windows 2003 Server', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2725, 'Windows 2012 R2 Standard6.3.9600', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2726, 'Windows Server Threshold, 64-bit (Build 14393)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2727, 'Windows Server 2012 R28', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2728, 'Windows Server 2012 R13', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2729, 'Microsoft Microsoft Windows Server 2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2730, 'Microsoft Windows Server 2008 R2 Standard Service Pack 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2731, 'Windows Server 2003 32-bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2732, 'Microsoft Windows Server 2008 R2 Enterprise Version 6.1.7600 [Build 7600]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2733, 'Microsoft - Windows server 2003 - Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2734, 'Windows 2008 Standard R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2735, 'MicrosoftWindows Server 2008 R2 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2736, 'windows6.3', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2737, 'Microsoft - Windows Server 2012 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2738, 'Windows 2016 64 Bit', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2739, 'Windows Server 2003 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2740, 'Windows Server NT', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2741, 'Windows Server 2012 Std', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2742, 'Microsoft Windows Server 2008 R2 Standard Version 6.1.7601 [Build 7601]', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2743, 'Windows Server 2012 R18', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2744, 'Windows 2008 Enterprise6.0.6003', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2745, 'Microsoft(R) Windows(R) Server 2003, Standard Edition Service Pack 1, 32-bit version', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2746, 'Windows Server 2012 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2747, 'Windows Server 2019 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2748, 'windows server 2008 R2 SP1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2749, 'Win 2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2750, 'Win2012', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2751, 'Win2012R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2752, 'windows server threshold', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2753, 'win2008', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2754, 'Windows 2003 Standard x64', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2755, 'Microsoft Windows Storage Server 2008 R2 Standard', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2756, 'Windows Server 28', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2757, 'Microsoft Windows Server 2008 Standard Service Pack 2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2758, 'Windows Server 2008 R2 (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2759, 'Windows Server 2008 R2 with Service Pack 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2760, 'Windows Server 2012 R11', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2761, 'Windows Server 2012 R10', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2762, 'Windows Server 2012 R30', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2763, 'WINDOWS 2016 STANDARD EDITION', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2764, 'Windows Server 2012 R22', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2765, 'Windows Server 2003 Standard (64-bit)', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2766, 'WINDOWS SERVER 2008 R2 ENTERPRISE 6.1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2767, 'Microsoft Windows Server 2008 R2 (64-bit) - Server 2008 R2', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2768, 'Microsoft Windows Server 2008 R2 Enterprise Service Pack 1', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2769, 'Windows Server 2008', 6, 452, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2770, '(WingArc) SVF 9.1', 2, 240, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2771, 'WingArc SVF', 2, 240, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2772, 'WinMerge', 2, 241, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2773, 'WinMerge.org - WinMerge 2.14', 2, 241, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2774, 'RARLab - WinRAR 5.31', 2, 242, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2775, 'WinRAR', 2, 242, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2776, 'WinSCP.net - WinSCP 5.11', 2, 243, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2777, 'WinSCP', 2, 243, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2778, 'Wise', 2, 244, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2779, 'Wise Package Studio', 2, 244, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2780, 'Wordpress', 2, 245, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2781, 'XAMPP', 2, 246, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2782, 'Xbase++', 9, 374, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2783, 'Xbase++ v1.9', 9, 374, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2784, 'ZAP BI Application Test Server', 2, 247, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2785, 'ZAP BI Application Stage Server', 2, 247, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2786, 'ZAP BI', 2, 247, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2787, 'ZAP BI Application Server', 2, 247, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2788, 'ZMQ', 2, 248, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2789, 'ZeroMQ', 2, 248, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2790, 'Zerto Vritual Appliance', 2, 249, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2791, 'Zerto Virtual Replication', 2, 249, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2792, 'Fedora', 6, 453, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2793, 'Amazon Linux', 6, 454, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2794, 'Oracle RTD', 8, 289, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2795, 'Oracle Real-Time Decisions (RTD)', 8, 289, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2796, 'Oracle Real-Time Decisions', 8, 289, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2797, 'PowerHA', 2, 250, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2798, 'IBM High Availability Cluster Multiprocessing', 2, 250, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2799, 'IBM PowerHA', 2, 250, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2800, 'IBM PowerHA SystemMirror', 2, 250, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2801, 'Tivoli Netcool/OMNIbus', 2, 251, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2802, 'OMNIbus', 2, 251, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2803, 'Tivoli Netcool', 2, 251, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2804, 'IBM ILOG Views', 2, 252, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2805, 'ILOG Views', 2, 252, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2806, 'IBM ILOG CPLEX', 2, 253, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2807, 'ILOG CPLEX', 2, 253, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2808, 'IBM ILOG Jviews', 2, 254, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2809, 'ILOG Jviews', 2, 254, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2810, 'IBM ILOG Elixir', 2, 255, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2811, 'ILOG Elixir', 2, 255, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2812, 'ILOG Supply Chain Apps', 2, 256, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2813, 'IBM ILOG Supply Chain Apps', 2, 256, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2814, 'ILOG Solver', 2, 257, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2815, 'Websphere ILOG JRules BRMS', 2, 601, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2816, 'ILOG JRules BRMS', 2, 601, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2817, 'Application Lifecycle Management', 1, 511, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2818, 'ALM', 1, 511, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2819, 'Application Lifecycle Management (ALM)', 1, 511, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2820, 'Assembler Language', 1, 512, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2821, 'Assembler', 1, 512, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2822, 'BMS', 1, 513, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2823, 'Batch Management Software (BMS)', 1, 513, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2824, 'Batch Management Software', 1, 513, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2825, 'Business Object Reports', 1, 514, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2826, 'Common Gateway Interface (CGI)', 1, 515, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2827, 'Common Gateway Interface', 1, 515, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2828, 'CGI', 1, 515, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2829, 'Compopent Object Model', 1, 516, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2830, 'COM', 1, 516, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2831, 'Compopent Object Model (COM)', 1, 516, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2832, 'Common Object Request Broker Architecture (CORBA)', 1, 517, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2833, 'Common Object Request Broker Architecture', 1, 517, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2834, 'CORBA', 1, 517, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2835, 'CORBA Interface Definition Language (CORBA IDL)', 1, 518, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2836, 'CORBA Interface Definition Language', 1, 518, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2837, 'CORBA IDL', 1, 518, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2838, 'Data Control Language', 1, 519, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2839, 'DCL', 1, 519, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2840, 'Database', 1, 520, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2841, 'DB', 1, 520, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2842, 'DB (database)', 1, 520, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2843, 'EDI', 1, 521, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2844, 'Electronic Data Interchange', 1, 521, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2845, 'Electronic Data Interchange (EDI)', 1, 521, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2846, 'Web Server', 1, 522, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2847, 'Java-based Document Object Model for XML', 1, 523, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2848, 'Java-based Document Object Model for XML (JDOM)', 1, 523, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2849, 'JDOM', 1, 523, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2850, 'Lightweight Directory Access Protocol', 1, 524, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2851, 'LDAP', 1, 524, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2852, 'Lightweight Directory Access Protocol (LDAP)', 1, 524, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2853, 'Open Database Connectivity (ODBC)', 1, 525, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2854, 'Open Database Connectivity', 1, 525, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2855, 'ODBC', 1, 525, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2856, 'Order Management System (OMS)', 1, 526, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2857, 'Order Management System', 1, 526, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2858, 'OMS', 1, 526, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2859, 'Oracle Web Services', 1, 527, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2860, 'Reporting Services', 5, 473, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2861, 'REST', 1, 529, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2862, 'Representational State Transfer', 1, 529, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2863, 'Representational State Transfer (REST)', 1, 529, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2864, 'Service-Oriented Architecture', 1, 530, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2865, 'Service-Oriented Architecture (SOA)', 1, 530, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2866, 'SOA', 1, 530, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2867, 'Simple Object Access Protocol (SOAP)', 1, 531, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2868, 'SOAP', 1, 531, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2869, 'Simple Object Access Protocol', 1, 531, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2870, 'Sturctured Query Language', 1, 572, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2871, 'SQL', 1, 572, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2872, 'YAML', 1, 533, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2873, 'MVC', 1, 574, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2874, 'Application Server', 1, 535, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2875, 'Cloud', 1, 536, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2876, 'Competency and Quality Assurance Server', 1, 537, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2877, 'Device Provisioning Engines', 1, 538, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2878, 'Device Provisioning Engines (DPE)', 1, 538, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2879, 'DPE', 1, 538, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2880, 'E-business solution', 1, 539, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2881, 'Ebusiness solution', 1, 539, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2882, 'ESB', 1, 540, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2883, 'Enterprise Service Bus', 1, 540, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2884, 'Enterprise Service Bus(ESB)', 1, 540, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2885, 'File Server', 1, 541, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2886, 'General Ledger', 1, 542, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2887, 'HTTP client', 1, 543, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2888, 'HTTP Server', 1, 522, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2889, 'Integrated Safe System of Work', 1, 545, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2890, 'ISSOW', 1, 545, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2891, 'Integrated Safe System of Work (ISSOW)', 1, 545, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2892, 'Internet Exchange Point - Full Stack (ixp-ft)', 1, 546, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2893, 'IMAP', 1, 547, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2894, 'Internet Message Access Protocol', 1, 547, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2895, 'Internet Message Access Protocol (IMAP)', 1, 547, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2896, 'JSON', 1, 548, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2897, 'KVS Application Server', 1, 549, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2898, 'KVS File Server', 1, 550, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2899, 'KVS Proxy Server', 1, 551, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2900, 'mainframe', 1, 552, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2901, 'Manufacturing Execution System', 1, 553, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2902, 'Manufacturing Execution System (MES)', 1, 553, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2903, 'MES', 1, 553, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2904, 'Mobile', 1, 554, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2905, 'NonSQL', 1, 555, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2906, 'SaaS', 1, 556, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2907, 'Storage Area Network', 1, 557, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2908, 'Storage Area Network (SAN)', 1, 557, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2909, 'SAN', 1, 557, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2910, 'Supplier Registration System', 1, 558, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2911, 'Supplier Registration Application Server', 1, 558, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2912, 'Supplier Registration System Application Server', 1, 558, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2913, 'Virtual Appliance', 1, 559, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2914, 'Webtop', 1, 560, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2915, 'Proxy Server', 1, 561, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2916, 'Application/Utility', 1, 562, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2917, 'Utility', 1, 562, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2918, 'SQLite', 2, 258, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2919, 'OpenBSD', 6, 590, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2920, 'z/VSE', 6, 591, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2921, 'Z/Virtual System Environment', 6, 591, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2922, 'VSE', 6, 591, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2923, 'DOS/VSE', 6, 591, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2924, 'Microsoft Disk Operating System', 6, 593, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2925, 'Microsoft DOS', 6, 593, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2926, 'MS DOS', 6, 593, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2927, 'MS-DOS', 6, 593, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2928, 'VME/B', 6, 595, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2929, 'VME', 6, 595, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2930, 'Virtual Machine Environment', 6, 595, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2931, 'VME 2900', 6, 595, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2932, 'OpenVME', 6, 595, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2933, 'DOS/360', 6, 597, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2934, 'Disk Operating System/360', 6, 597, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2935, 'TPF', 6, 598, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2936, 'z/TPF', 6, 598, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2937, 'Transaction Processing Facility', 6, 598, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2938, 'z/VM', 6, 608, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2939, 'Berkeley Software Distribution', 6, 579, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2940, 'BSD', 6, 579, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2941, 'Berkeley System Distribution', 6, 579, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2942, 'BSD Unix', 6, 579, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2943, 'Berkeley Unix', 6, 579, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2944, 'Wildfly', 7, 493, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2946, 'Job Entry Subsystem 3', 2, 1, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2947, 'Job Entry Subsystem', 2, 1, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2948, 'Job Entry Subsystem 2/3', 2, 1, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2949, 'JES2', 2, 1, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2950, 'JES3', 2, 1, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2952, 'Acrobat forms', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2953, 'Adobe Acrobat 3D', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2954, 'Adobe Acrobat Professional', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2955, 'Acrobat Professional', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2956, 'Adobe Acrobat Pro', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2957, 'Acrobat 8', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2958, 'Adobe Acrobat Capture', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2960, 'Acrobat file', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2961, 'Acrobat reader', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2962, 'Adobe Reader X', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2963, 'Acrobat 3D', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2964, 'Adobe Reader LE', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2965, 'Adobe acrobat', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2966, 'Acrobat Pro', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2967, 'Acrobat 7', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2968, 'Adobe Acrobat 9.5.5', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2969, 'Adobe reader', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2970, 'Adobe Acrobat Viewer', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2971, 'Acrobat Exchange', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2972, 'Acrobat document', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2973, 'Acroread', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2974, 'AdobeR Reader', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2975, 'Adobe Acrobat Distiller', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2976, 'Acrobat PDFMaker 10.0 for Word', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2977, 'Adobe Acrobat X', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2978, 'Adobe Acrobat Reader DC', 2, 4, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2979, 'Adobe Reader', 2, 4, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2981, 'Ansible software', 2, 5, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2982, 'Activemq', 2, 6, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2983, 'ActiveMQ', 2, 6, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2984, 'HBase', 2, 7, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2987, 'Kafka Streams', 2, 9, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2988, 'Kafka (software)', 2, 9, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2989, 'Apache kafka', 2, 9, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2991, 'Solr', 2, 11, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2992, 'Subversion (vcs)', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2993, 'Commit access', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2994, 'Svn (vcs)', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2995, 'Subverson', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2996, 'Subversion branch', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2997, 'Svn (software)', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (2999, 'Sub Versioning', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3000, 'Apache subversion', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3001, 'Svn software', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3002, 'Subversion branching', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3003, 'SVN branch', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3004, 'Subversion (program)', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3005, 'Subversive branching', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3006, 'Svn vcs', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3007, 'Subversion (software)', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3008, 'Svn (Unix)', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3009, 'Subversion (Software)', 2, 12, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3010, 'Asterisk operator', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3011, 'Asterisk character', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3012, 'Asterisks', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3013, 'Asterisk (punctuation)', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3014, 'Asterick', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3015, 'Asterisked form', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3016, 'Splat (pronouns)', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3017, 'Heavy asterisk', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3018, 'Asteract', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3019, 'Astrick', 2, 14, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3020, 'Bluebeam Revu', 2, 17, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3021, 'BDE (Borland)', 2, 20, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3022, 'Borland BDE', 2, 20, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3023, 'ODAPI', 2, 20, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3024, 'Eclipse BIRT', 2, 21, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3025, 'BIRT Reports', 2, 21, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3026, 'BIRT Report', 2, 21, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3027, 'Advantage:Gen', 2, 22, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3028, 'Cool:Gen', 2, 22, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3029, 'COOLGen', 2, 22, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3030, 'COOL:Gen', 2, 22, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3031, 'Advantage Gen', 2, 22, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3032, 'Coolgen', 2, 22, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3033, 'Information Engineering Facility', 2, 22, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3035, 'CA Panvalet', 2, 24, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3037, 'TELON', 2, 25, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3038, 'Chef (tool)', 2, 27, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3039, 'Chef-Solo', 2, 27, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3040, 'Chef Community Repository', 2, 27, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3041, 'Chef software', 2, 27, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3042, 'Citrix XenApp', 2, 30, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3044, 'Citrix WinFrame', 2, 30, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3045, 'Winframe', 2, 30, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3046, 'OP3Nvoice', 2, 33, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3047, 'Clarify - Op3nvoice', 2, 33, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3048, 'Laboratory information system', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3049, 'Laboratory Information Management System', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3050, 'Laboratory informatics system', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3051, 'Lims', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3052, 'Laboratory Information Management Systems', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3053, 'Lab information system', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3054, 'Laboratory computer system', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3055, 'Laboratory Information Management Software', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3056, 'Laboratory Information System', 2, 35, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3057, 'Cognos Inc.', 2, 36, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3059, 'Macromedia ColdFusion MX', 2, 37, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3060, 'ColdFusion MX', 2, 37, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3062, 'Adobe cold fusion', 2, 37, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3063, 'ColdFusion Components', 2, 37, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3064, 'Cold Fusion programming language', 2, 37, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3065, 'Abobe coldfusion', 2, 37, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3066, 'ColdFusion programming language', 2, 37, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3067, 'ColdFusion', 2, 37, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3068, 'Macromedia ColdFusion', 2, 37, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3069, 'Network Data Mover', 2, 40, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3072, 'Crystal reports', 2, 42, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3073, 'SAP Crystal Reports', 2, 42, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3074, 'Report application server', 2, 42, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3076, 'Db2', 2, 43, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3078, 'IBM DB2 Express-C', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3079, 'DB2/2', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3080, 'DB2 Express', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3081, 'SQLCA', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3082, 'Ibm viper', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3083, 'DATABASE 2', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3084, 'IBM Db2', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3085, 'Db2 for i', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3086, 'DB2 DWE', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3087, 'DB/2', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3088, 'IBM PureQuery', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3089, 'DB2 Everyplace', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3090, 'PureQuery', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3092, 'Db/2', 2, 43, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3094, 'EMC Documentum', 2, 44, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3095, 'Droopal', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3096, 'Deanspace', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3097, 'Drupal theming', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3098, 'Droople', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3099, 'CivicSpace', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3100, 'Druscal', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3101, 'Drupal Con', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3102, 'DrupalCon', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3103, 'Civic Space', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3104, 'Drupla', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3105, 'Durpal', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3106, 'DeanSpace', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3107, 'Druple', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3108, 'Hack4Dean', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3109, 'Civicspace', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3110, 'Acquia Drupal', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3111, 'Open Atrium', 2, 45, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3112, 'Eclipse sdk', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3113, 'Mylyn', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3114, 'Java Eclipse', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3115, 'Web Tools Platform', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3116, 'Eclipse software', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3117, 'Eclipse SDK', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3118, 'Eclipse Kura', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3119, 'Eclipse Classic', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3120, 'Eclipse ganymede', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3121, 'Eclipse Europa', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3122, 'Eclipse (computing)', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3123, 'Eclipse (platform)', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3124, 'Eclipse IDE', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3125, 'Java eclipse', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3126, 'Yoxos OnDemand', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3127, 'Eclipse java', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3128, 'Yoxos', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3129, 'Eclipse (IDE)', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3130, 'Eclipse (SDK)', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3131, 'Eclipse ide', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3132, 'Eclipse (ide)', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3133, 'Eclipse Galileo', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3134, 'Eclipse platform', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3135, 'Eclipse RCP', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3136, 'Java Emitter Templates', 2, 46, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3137, 'Eclipse ADT', 2, 46, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3140, 'Filemaker', 2, 51, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3141, 'FileMaker II', 2, 51, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3142, 'Filemaker Pro', 2, 51, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3143, 'FileMaker Server', 2, 51, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3144, 'FilemakerPro', 2, 51, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3145, 'Google chrome 5', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3146, 'Google Chrome Beta', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3147, 'Google chrome', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3148, 'Google Chrome 12', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3149, 'Chrome software', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3150, 'Google Chrome 14', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3151, 'Chrome (browser)', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3152, 'Googlechrome', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3153, 'Chrome Canary', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3154, 'Google Chrome extension', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3155, 'Google Chrome browser', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3156, 'Google Chrome for IOS', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3157, 'Chrome extension', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3158, 'Extension (Google Chrome)', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3159, 'Incognito mode', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3160, 'Chrome browser', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3161, 'Google Chrome for Android', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3162, 'Google Chrome Extensions Gallery', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3163, 'Google Chrome 4', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3164, 'GChrome', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3165, 'Google Browser', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3166, 'Chrome google', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3167, 'Chrome (software)', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3168, 'Chrome (Google)', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3169, 'Chrome web browser', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3170, 'Google Chrome 13', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3171, 'Google Chrome 11', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3172, 'Google Chrome Canary', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3173, 'Chrome Extensions', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3174, 'Chromium (engine)', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3175, 'GBrowser', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3176, 'Chrome (web browser)', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3177, 'Google Chrome for iOS', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3178, 'Chrome for Android', 2, 55, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3180, 'Pivotal Greenplum Database', 2, 56, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3181, 'Greenplum database', 2, 56, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3182, 'Hadoop distributed file system', 2, 57, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3183, 'Hadoop Distributed Filesystem', 2, 57, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3184, 'Hadoop YARN', 2, 57, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3185, 'HDFS', 2, 57, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3186, 'Amazon Elastic MapReduce', 2, 57, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3187, 'Hadoop Distributed File System', 2, 57, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3188, 'YARN', 2, 57, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3190, 'NorCroft', 2, 59, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3191, 'Norcroft compiler suite', 2, 59, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3192, 'Norcroft C', 2, 59, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3193, 'Norcroft compiler', 2, 59, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3194, 'Norcroft', 2, 59, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3195, 'Tivoli Endpoint Manager', 2, 62, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3196, 'IBM Endpoint Manager', 2, 62, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3197, 'Datastage', 2, 67, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3198, 'IBM InfoSphere', 2, 67, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3199, 'DataStage', 2, 67, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3200, 'IBM WebSphere DataStage', 2, 67, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3202, 'IBM WebSphere Message Broker', 2, 68, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3204, 'IBM MobileFirst', 2, 72, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3205, 'IBM WebSphere ILOG JRules', 2, 73, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3206, 'Spectrum Scale', 2, 605, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3208, 'General Parallel File System', 2, 605, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3209, 'IBM General Parallel File System', 2, 605, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3210, 'Vesta File System', 2, 605, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3211, 'Adstar Distributed Storage Manager', 2, 604, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3213, 'ADSM', 2, 604, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3214, 'ADSTAR Distributed Storage Manager', 2, 604, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3215, 'IBM Tivoli Storage Manager FastBack', 2, 604, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3216, 'Distributed Storage Manager Client', 2, 604, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3217, 'WebSphere Adapters', 2, 80, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3218, 'MQ Series', 2, 81, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3220, 'IBM Message Queue Interface', 2, 81, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3221, 'Mqseries', 2, 81, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3222, 'IBM WebSphere MQ', 2, 81, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3224, 'WebSphere MQ', 2, 81, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3225, 'MQSeries', 2, 81, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3226, 'Hierarchical sequential access method', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3227, 'IBM IMS', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3228, 'Information Management System', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3229, 'IMS DC', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3230, 'IMS/DC', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3231, 'HSAM (computing)', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3232, 'Information management system', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3233, 'Hierarchical Sequential Access Method', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3234, 'IMS/DB', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3235, 'IMS/TM', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3236, 'IMS system', 2, 84, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3237, 'WiZ', 2, 85, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3238, 'Zip (software)', 2, 85, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3239, 'Info-Zip', 2, 85, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3240, 'InfoZip', 2, 85, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3242, 'Berkeley Ingres QUEL', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3243, 'IngresCorporation', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3244, 'Ingres II', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3245, 'Ingres Database', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3246, 'University Ingres', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3247, 'OpenIngres', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3248, 'CA-Ingres', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3249, 'Ingres database', 2, 88, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3250, 'INGRES', 2, 88, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3252, 'Lotus domino', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3253, 'Notes Release 3.0', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3254, 'Lotus Notes 3.0', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3255, 'Lotus Notes Mail', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3256, 'Lotus Notes 2.1', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3257, 'Lotus Notes Release 3.0', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3258, 'Lotus notes', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3259, 'Eproductivity', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3260, 'Notes 3.0', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3261, 'Lodus notes', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3262, 'Domino XML', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3263, 'Lodus nodes', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3264, 'Notes Release 2.1', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3265, 'Lodus Nodes', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3266, 'IBM Lotus Notes', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3267, 'IBM Lotus Domino', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3268, 'Notes Storage Facility', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3270, 'Dominoblog', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3271, 'Lodus Notes', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3272, 'Lotus Notes Release 2.1', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3273, 'Notes 2.1', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3274, 'IBM iNotes Webmail Redirect', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3275, 'Domino (software)', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3276, 'HLC Domino', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3277, 'HCL Notes', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3278, 'EProductivity', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3279, 'Notes Storage Format', 2, 93, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3281, 'IBM Notes', 2, 93, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3282, 'MaaS 360 (Software)', 2, 94, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3283, 'Malwarebytes'' AntiMalware', 2, 95, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3284, 'Malwarebytes'' Anti-Malware', 2, 95, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3285, 'Malware Bytes', 2, 95, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3287, 'Mark Logic', 2, 97, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3288, 'MarkMail', 2, 97, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3289, 'MarkLogic Corporation', 2, 97, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3290, 'Mark logic', 2, 97, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3292, 'Memory Cache Daemon', 2, 98, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3293, 'Microsoft Access Development', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3294, 'Ms access', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3295, 'Ms Access', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3296, 'Microsoft Access 2002', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3297, 'Access 2002', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3298, 'MS access', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3299, 'Access 97 SR2', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3300, 'Microsoft Access 2007', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3301, 'Access 2', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3302, 'Accdb', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3304, 'MSAccess', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3305, 'Office Access', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3306, 'Microsoft Acces', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3307, 'Access 97', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3308, 'MSACCESS', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3309, 'Microsoft access', 2, 99, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3310, 'Microsoft Office Access', 2, 99, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3311, 'Biztalk', 2, 100, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3312, 'BizTalk', 2, 100, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3313, 'BizTalk Server', 2, 100, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3314, 'Microsoft Biztalk Server', 2, 100, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3315, 'Axapta', 2, 101, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3316, 'En''tegrate', 2, 101, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3317, 'X++', 2, 101, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3318, 'En''tegrate Software', 2, 101, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3319, 'Dynamics AX', 2, 101, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3320, 'MorphX', 2, 101, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3321, 'System Management Server', 2, 102, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3323, 'System center configuration manager', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3324, 'System Centre Configuration Manager', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3325, 'Systems Management Server', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3326, 'System Center Configuration Manager', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3327, 'AssetMetrix', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3328, 'SCCM 2007', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3329, 'MSSMS', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3330, 'Microsoft Systems Management Server', 2, 102, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3331, 'MS excel', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3332, 'Excel (Microsoft)', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3333, 'Excel macro', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3334, 'Microsoft XL', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3335, 'Excel function', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3337, 'Microsoft excel file formats', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3338, 'Microsoft excel', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3339, 'Microsoft(r) Excel(r)', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3340, 'XLW', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3341, 'Ms Excel', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3342, 'XLS files', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3343, 'XLS file', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3344, 'Microsoft Excel XP', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3345, 'Ms excel', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3346, 'Excel Viewer', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3347, 'XLS FILE', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3348, 'Microsoft Excel:mac', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3349, 'Excel spreadsheet', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3350, 'Microsoft Excel 95', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3351, 'Microsoft Excel 2002', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3352, 'Microsoft Excel 2003', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3353, 'Excel 2007', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3354, 'Microsoft Excel Viewer', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3355, 'Microsoft Excel file format', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3356, 'Excel Web App', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3357, 'EXCEL', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3358, 'Xlw', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3359, 'Microsoft Excel 2004', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3360, 'MICROSOFT EXCEL', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3361, 'Excel table', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3362, 'Excel 2003', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3363, 'Excel VBA', 2, 103, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3364, 'Microsoft Office Excel', 2, 103, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3367, 'Office Excel', 2, 103, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3368, 'MS Exchange Server', 2, 104, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3369, 'Exchange email', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3370, 'Exchange 2007', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3371, 'Exchange Online', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3372, 'Microsoft Exchange Client', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3373, 'Exchange Server', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3374, 'Cluster continuos replication', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3375, 'Exchange 2010', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3376, 'Microsoft Exchange 2013', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3377, 'Microsoft Exchange Server 2013', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3378, 'Microsoft Exchange server', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3379, 'LinkAge Software', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3380, 'Exchange Server 2007', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3381, 'Exchange Server 2003', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3382, 'Exchange 2013', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3383, 'MS Exchange 2010 SP2', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3384, 'Exchange Server 2013', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3385, 'Cluster continuous replication', 2, 104, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3386, 'Identity Lifecycle Manager', 2, 105, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3387, 'Microsoft Office Infopath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3388, 'Microsoft infoPath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3389, 'Microsoft Infopath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3390, 'Microsoft infopath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3391, 'Infopath 2007', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3392, 'Office Forms Server', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3393, 'MS InfoPath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3394, 'Infopath Form Services', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3395, 'MS infoPath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3396, 'Ms Infopath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3397, 'Infopath Forms Services', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3399, 'Microsoft InfoPath Filler', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3400, 'InfoPath Forms Services', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3401, 'Forms Server', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3402, 'Infopath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3403, 'Ms infoPath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3404, 'InfoPath Form Services', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3405, 'Infopass', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3406, 'Ms infopath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3407, 'Microsoft Office Forms Server', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3408, 'Office InfoPath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3409, 'MS infopath', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3410, 'InfoPath forms services', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3411, 'Microsoft Office InfoPath 2007', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3412, 'Infopath forms services', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3413, 'Microsoft InfoPath Designer', 2, 106, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3414, 'Microsoft Office InfoPath', 2, 106, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3415, 'XDocs', 2, 106, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3417, 'MSIE', 2, 107, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3418, 'Windows Internet Explorer', 2, 107, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3419, 'MS IE', 2, 107, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3420, 'Internetexplorer', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3421, 'Microsoft IE', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3422, 'Stopie', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3423, 'Internut Exploder', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3424, 'WinInet', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3425, 'Internex', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3426, 'Wininet', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3427, 'Internet Exploder', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3428, 'Iexplorer', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3429, 'Features of internet explorer', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3430, 'WinINET', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3431, 'MicroSoft Internet Explorer', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3432, 'Innerhtml', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3433, 'Iexplore', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3434, 'MSIE (web browser)', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3435, 'Internet explorer', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3436, 'Internet exploiter', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3437, 'Internet Exploiter', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3438, 'MS Internet Explorer', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3439, 'InternetExplorer', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3440, 'M.S.I.E.', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3441, 'IE browser', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3442, 'InnerHTML', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3443, 'StopIE', 2, 107, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3444, 'Microsoft Proxy Server', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3445, 'Threat Management Gateway', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3446, 'Internet Security and Acceleratoin Server', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3447, 'Internet Security and Acceleration Server', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3449, 'Internet Security and Acceleration', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3450, 'MS Proxy Server', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3451, 'ISA server', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3452, 'Forefront Threat Management Gateway', 2, 108, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3454, 'Forefront TMG', 2, 108, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3455, 'Microsoft Internet Security and Acceleration Server', 2, 108, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3456, 'MSMQ', 2, 109, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3457, 'Microsoft Message Queue Server', 2, 109, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3458, 'Microsoft Message Queue', 2, 109, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3459, 'Visual Studio .NET', 2, 111, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3460, 'Microsoft Visual Studio .NET', 2, 111, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3462, 'Vs2010', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3463, 'Visual Studio 97', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3464, 'Microsoft Visual Studio 2008', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3465, 'Data dude', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3466, 'Visual Studio Shell', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3467, 'Microsoft Development Environment', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3468, 'Visual Studio .NET 2003', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3469, 'VS2008', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3470, 'LightSwitch', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3471, 'Visual Studio Team Services', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3472, 'Visual Studio 2017', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3473, 'Microsoft visual studio', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3474, 'Microsoft Visual Studio 2015', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3475, 'Visual Studio Online', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3476, 'Visual Studio 11', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3477, 'DevBiz Business Solutions', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3478, 'Visual Studio .NET 2005', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3479, 'Visual Studio .NET 2002', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3480, 'Visual Studio Test Professional', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3481, 'VS2017', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3482, 'Visual Studio 2019', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3483, 'VS2010', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3484, 'Microsoft Visual Studio Community', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3485, 'Visual Studio.NET 2005', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3486, 'Microsoft Visual Studio debugger', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3487, 'MSDEV', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3488, 'Visual Studio 2013', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3489, 'Visual Studio Application Lifecycle Management', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3490, 'Visual Studio Team Suite', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3491, 'Visual studio', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3492, 'VS6', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3493, 'Microsoft Test professional', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3494, 'Visual Studio 2015', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3495, 'Azure DevOps Services', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3496, 'Visual Studio 2010', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3497, 'Microsoft visual studio 2010', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3498, 'VS2005', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3499, 'Visual Studio.NET', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3500, 'VS 2005', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3501, 'DXCore', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3502, 'Visual Studio debugger', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3503, 'Visual Studio Team Test', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3504, 'MS Visual Studio', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3505, 'RefactorPro', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3506, 'Visual Studio Debugger', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3507, 'VisualStudio', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3508, 'Visual Studio LightSwitch', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3509, 'Microsoft Orcas', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3510, 'Visual Studio ALM', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3511, 'Microsoft Visual Studio 2005', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3512, 'Visual Studio 2005', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3513, 'CodeView and the Visual Studio Debugger', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3514, 'Visual Studio Orcas', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3515, 'Visual Studio 2022', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3516, 'Microsoft Test Professional', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3517, 'Visual Studio 2008', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3518, 'Microsoft Visual Studio Debugger', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3519, 'Vs.net', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3520, 'VS05', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3521, 'Vs 2010', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3522, 'Visual Studio 6.0', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3523, 'Visual Studio Community', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3524, 'VISUAL STUDIO 2008', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3525, 'DevBiz', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3527, 'Visual Studio 2012', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3528, 'VS 2008', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3529, 'Visual Studio Ultimate 2010', 2, 111, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3532, 'Mongo db', 2, 116, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3533, 'Mongodb', 2, 116, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3534, 'Firefox (browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3535, 'Firebird browser', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3536, 'FireBird (browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3537, 'Mozila Firefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3538, 'Firefox minefield', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3539, 'Minefield (trunk build)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3540, 'FireFox (web browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3541, 'Firebird (web browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3542, 'Mozilla Phoenix', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3543, 'Mozilla/browser', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3544, 'Firefox (software)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3545, 'Mozilla firefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3546, 'M/b', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3547, 'Phoenix web browser', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3548, 'Firefox Aurora', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3549, 'Mozilla Firerfox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3550, 'Firebird (browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3551, 'Mozilla''s Firefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3552, 'MineField Browser', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3553, 'Firefox (web browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3554, 'Mozilla phoenix', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3555, 'SpreadFirefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3556, 'FireBird (web browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3557, 'Mozzila Firefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3558, 'FireFox (browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3559, 'Mozilla Minefield', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3560, 'Firefox esr', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3561, 'Mozilla FireFox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3562, 'Mozilla Firefox''s', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3563, 'Mozilla firebird', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3564, 'Mozff', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3565, 'Mozilla firefox esr', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3566, 'Firebird Web Browser', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3567, 'Frefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3568, 'Phoenix (browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3569, 'Spread Firefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3570, 'Forefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3571, 'FireFox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3572, 'Mozillafirefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3573, 'Mozilla Fire Fox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3574, 'Firefox Roadmap', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3575, 'Firefox roadmap', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3576, 'Firebird web browser', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3577, 'Mozilla Firefox (software)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3578, 'Mozilla Firefox ESR', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3579, 'SpreadFireFox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3580, 'Moz firefox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3581, 'Firefox Browser', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3582, 'Firefo', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3583, 'Fire Fox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3584, 'Mozilla FireBird', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3585, 'Mozilla FX', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3586, 'Firefox ESR', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3587, 'Mozilla ff', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3588, 'Phoenix (web browser)', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3589, 'Fire fox', 2, 117, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3590, 'Firefox web browser', 2, 117, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3591, 'Firefox browser', 2, 117, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3592, 'Mozilla Firebird', 2, 117, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3594, 'MS-Office 365', 2, 119, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3598, 'MS-SQL', 2, 581, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3600, 'Sql Server 2000', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3601, 'SQL Server 2017', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3602, 'Sqlcmd', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3603, 'SQL Server 2014 ISO', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3607, 'Microsoft SQL Server 2008 R2', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3608, 'Microsoft SQL server', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3610, 'SQL Server 2014 CAB', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3611, 'SQL Server 2008 R2', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3612, 'Pubs (database)', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3614, 'Microsoft SQL', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3616, 'Microsoft Sql Server', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3617, 'SQL 6.5', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3618, 'Ms sql server', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3620, 'Microsoft sql server', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3621, 'Mssql', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3623, 'SQL 7.0', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3624, 'SQL Server 2019', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3625, 'SQL Server 2005 Compact Edition', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3626, 'SQL Server Compact 3.5', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3627, 'Microsoft SQL Server Compact Edition', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3628, 'SQL Server Compact Edition Database File', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3629, 'Sql mobile', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3630, 'SQL Server Compact Edition', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3631, 'SQL Mobile', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3632, 'SQLCE', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3633, 'SQL Server Mobile', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3634, 'SQLce', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3635, 'SQL Server Compact 2005 Edition', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3636, 'SQL Server Mobile Edition', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3637, 'SQL Server CE', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3638, 'Microsoft SQL Server Mobile Edition', 2, 121, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3639, 'Microsoft SQL Server Compact', 2, 121, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3640, 'SQL CE', 2, 121, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3641, 'My sql', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3642, 'MySQL server', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3643, 'Mysql 5.0', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3644, 'MySQL Fabric', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3645, 'Mysqldump', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3646, 'MySql', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3648, 'MySQL HA', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3649, 'SunSQL', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3650, 'Libmysqld', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3651, 'Mysql-server', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3652, 'Mysql', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3653, 'Mqsql', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3654, 'My Structured Query Language', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3655, 'My SQL', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3656, 'MySql 5', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3657, 'Mysql 5.1', 2, 122, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3658, 'Neo Technology', 2, 123, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3660, 'Nix language', 2, 125, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3661, 'Nix Package Manager', 2, 125, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3662, 'Openldap', 2, 126, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3664, 'PrivateVPN', 2, 128, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3665, 'Openvon', 2, 128, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3666, 'Openvpn', 2, 128, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3667, 'Open VPN', 2, 128, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3668, 'ADF Faces', 2, 130, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3670, 'Oracle HTML DB', 2, 131, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3671, 'Html db', 2, 131, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3672, 'HTML DB', 2, 131, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3674, 'Oracle XML Publisher', 2, 132, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3676, 'Oracle11i', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3677, 'Oracle8i', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3678, 'Oracle (software)', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3679, 'Oracle (database)', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3680, 'Ora92', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3681, 'Oracle 11i', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3682, 'Oracle express', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3683, 'Oracle XE', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3684, 'Oracle (DBMS)', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3685, 'Oracle database', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3686, 'Instantclient', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3687, 'Oracle db', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3689, 'Oracle R Enterprise', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3690, 'Oracle9i', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3691, 'Oracle11g', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3692, 'Oracle DBMS', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3693, 'Oracle8', 2, 134, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3694, 'Oracle RDBMS', 2, 134, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3695, 'Oracle Designer 2000', 2, 135, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3698, 'Oracle Hyperion|Hyperion Planning', 2, 139, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3699, 'Oracle Net', 2, 140, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3700, 'Real application clusters', 2, 141, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3702, 'Oracle soa', 2, 145, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3705, 'Timesten', 2, 147, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3706, 'Smallbase', 2, 147, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3707, 'TimesTen In-Memory Database', 2, 147, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3709, 'Orbix (Software)', 2, 149, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3710, 'Pentaho Data Integration', 2, 150, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3711, 'Ramsetcube', 2, 150, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3712, 'PeopleSoft Enterprise', 2, 151, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3713, 'People Soft', 2, 151, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3714, 'PeopleSoft', 2, 151, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3715, 'PeopleSoft EnterpriseOne', 2, 151, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3716, 'PeopleSoft HRMS', 2, 151, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3717, 'Peoplesoft', 2, 151, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3718, 'Pervasive psql', 2, 153, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3719, 'Actian Zen', 2, 153, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3720, 'Pervasive sql', 2, 153, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3721, 'PKZip', 2, 155, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3722, 'PKSFX', 2, 155, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3723, 'PKUNZIP', 2, 155, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3724, 'SecureZIP', 2, 155, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3725, 'Pkunzip', 2, 155, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3726, 'Pkzip', 2, 155, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3727, 'Metis (modelling)', 2, 156, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3728, 'Metis (software)', 2, 156, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3729, 'PgSQL', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3730, 'PostgreSQL Data Base Management System', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3731, 'Postsql', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3732, 'Postgres95', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3733, 'POSTGRES', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3734, 'Autovacuum', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3735, 'PGSQL', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3736, 'PostSQL', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3737, 'PostGRES', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3738, 'POSTGRES95', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3739, 'Psql (PostgreSQL)', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3740, 'Pgsql', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3741, 'PortugueseSQL', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3742, 'PostegreSQL', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3743, 'PostGRE', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3744, 'PostgresSQL', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3745, 'Postgresql', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3746, 'PostGres', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3747, 'PostgreSql', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3748, 'Postgre sql', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3750, 'Postgre', 2, 157, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3751, 'Postgres', 2, 157, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3753, 'Sybase PowerBuilder', 2, 158, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3755, 'Oracle Primavera', 2, 159, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3756, 'Primavera p6', 2, 159, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3757, 'XER (file format)', 2, 159, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3758, 'Primavera P3', 2, 159, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3761, 'Polytron Version Control System', 2, 163, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3763, 'Rabbit MQ', 2, 165, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3764, 'Rabbitmq', 2, 165, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3765, 'RabbitMq', 2, 165, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3766, 'Rabbit mq', 2, 165, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3767, 'MultiVersion File System', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3768, 'IBM Rational ClearCase', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3769, 'Clear case', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3770, 'IBM Rational MultiVersion File System', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3771, 'Clearcase', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3772, 'Rational MultiVersion File System', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3773, 'Ibm clear case', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3774, 'ClearCase', 2, 166, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3775, 'Rational Business Developer Extension', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3776, 'Rational Service Tester for SOA Quality', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3777, 'Rational Business Developer', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3779, 'IBM Rational SQABasic', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3780, 'SQABasic', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3781, 'IBM Rational Business Developer Extension', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3782, 'Rationale Software', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3783, 'Rational Machines', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3784, 'Rational Application Developer', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3785, 'Rational Team Concert', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3786, 'Rational Engineering Lifecycle Manager', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3787, 'IBM Jazz', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3788, 'IBM Rational Team Concert', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3789, 'Rational Rose RealTime', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3790, 'IBM Rational Business Developer', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3791, 'IBM Rational Software', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3792, 'Rational Software Corporation', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3793, 'Rational Functional Tester', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3794, 'Rational Tau', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3795, 'Rational robot', 2, 167, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3796, 'IBM Rational', 2, 167, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3797, 'Redis (data store)', 2, 168, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3798, 'Redis (dbms)', 2, 168, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3799, 'Redis database format', 2, 168, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3802, 'Rumba criolla', 2, 172, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3803, 'Mysap', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3804, 'SAP enterprise software', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3805, 'SAP Transport management system', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3806, 'Profitability Analysis (SAP)', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3807, 'MySAP', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3808, 'SAP ERP Financials', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3809, 'MySAP ERP', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3810, 'SAP Basis', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3811, 'SAP HCM PA', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3812, 'SAP ECC', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3813, 'MySAP ERP Operations', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3814, 'SAP ERP Human Capital Management', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3815, 'MySAP ERP Financials', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3816, 'SAP Fiori', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3817, 'SAP ERP Operations', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3818, 'SAP ERP Corporate Services', 2, 174, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3819, 'High-performance Analytical Application', 2, 175, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3820, 'SAP DB', 2, 176, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3821, 'SAPDB', 2, 176, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3822, 'SapDB', 2, 176, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3823, 'SAP Netweaver Business Intelligence', 2, 177, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3824, 'SAP NetWeaver Business Intelligence', 2, 177, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3825, 'SAP BW', 2, 177, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3826, 'SAP Business Information Warehouse', 2, 177, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3827, 'Sybase ASA', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3828, 'ASA (SQL Anywhere)', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3829, 'PowerSoft SQL', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3830, 'SAP Adaptive Server Anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3831, 'Sybase asa', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3832, 'PowerSoft Watcom SQL', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3833, 'Sybase Anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3834, 'Sql anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3835, 'Adaptive Server Anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3837, 'PowerSoft SQL Anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3838, 'Sybase SQL Anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3839, 'SAP Sybase Adaptive Server Anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3840, 'SAP Sybase ASA', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3841, 'Watcom SQL', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3842, 'Sybase Adaptive Server Anywhere', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3843, 'SAP ASA', 2, 178, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3844, 'Web Dynpro ABAP', 2, 179, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3845, 'Webdynpro', 2, 179, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3846, 'Dynpro', 2, 179, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3847, 'Sentry Risk Table', 2, 180, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3848, 'Windows Sharepoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3849, 'Microsoft SharePoint Server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3850, 'MOSS 2007', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3851, 'Microsoft Office SharePoint Server 2007', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3852, 'SharePoint 2007', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3853, 'Windows sharepoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3854, 'Microsoft SharePoint 2010', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3855, 'SharePoint 2010', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3856, 'Microsoft SharePoint 2007', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3857, 'Sharepoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3858, 'Share point server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3859, 'SharePoint Foundation', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3860, 'SharePoint services', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3861, 'SharePoint Server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3862, 'Sharepoint portal server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3863, 'Microsoft sharepoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3864, 'Windows SharePoint 2007', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3865, 'Microsoft SharePoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3866, 'Office SharePoint Server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3867, 'Windows SharePoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3868, 'MS Sharepoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3869, 'Windows SharePoint Server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3871, 'Windows SharePoint Services', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3872, 'Share Point', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3873, 'Microsoft Office Sharepoint Server 2007', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3874, 'Microsoft Windows SharePoint Services', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3875, 'Microsoft Office SharePoint Portal Server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3876, 'Microsoft Sharepoint Foundation', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3877, 'SharePoint Portal Server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3878, 'Sharepoint services', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3879, 'Sharepoint Services', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3881, 'Microsoft Sharepoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3882, 'Windows Sharepoint Services 3', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3883, 'Sharepoint server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3884, 'MS SharePoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3885, 'Microsoft Office SharePoint', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3886, 'SharePointCOE', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3887, 'Share point', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3888, 'Sharepoint collaboration', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3889, 'Microsoft SharePoint Foundation', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3890, 'SharePoint Services', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3891, 'SharePoint Resources', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3892, 'Windows Sharepoint Services', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3893, 'Microsoft Office SharePoint Server', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3894, 'Snaglt', 2, 184, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3896, 'IBM Mobile', 2, 185, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3897, 'SonarLint', 2, 186, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3898, 'Sonarqube', 2, 186, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3899, 'Sonar (software quality)', 2, 186, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3902, 'SAP Sybase DB', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3903, 'SAP Sybase SQL Server', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3904, 'SAP Sybase ASE', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3905, 'Sybase Adaptive Server Enterprise', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3906, 'SAP Adaptive Server Enterprise', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3907, 'SAP Sybase Adaptive Server Enterprise (ASE)', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3908, 'Sybase (database)', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3909, 'SAP SQL Server', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3910, 'SAP Sybase', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3911, 'SAP Sybase Adaptive Server Enterprise', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3912, 'Sybase database', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3913, 'ASE (SQL Server)', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3914, 'Sybase Enterprise', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3915, 'Sybase ASE', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3916, 'SAP ASE', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3917, 'Sybase DB', 2, 190, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3918, 'Syncsort', 2, 191, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3919, 'Teradata Geospatial', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3920, 'Teradata FastLoad', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3921, 'Teradata Warehouse Miner', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3922, 'Fastexport', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3923, 'BTEQ', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3924, 'Teradata Parallel Transporter', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3925, 'FastExport', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3926, 'ADAM Software', 2, 215, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3927, 'Tibco Rendezvous', 2, 219, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3928, 'Tivoli Access Manager', 2, 220, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3929, 'Tortoise CVS', 2, 221, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3930, 'TSVN', 2, 222, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3931, 'Tortoisesvn', 2, 222, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3932, 'Tortoise svn', 2, 222, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3933, 'Tortoise SVN', 2, 222, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3934, 'UNIFACE', 2, 225, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3935, 'VisiBroker', 2, 228, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3936, 'Vcenter', 2, 231, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3937, 'IBM WebSphere Commerce', 2, 234, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3940, 'Index Server', 2, 238, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3942, 'Windows indexing service', 2, 238, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3943, 'WinMerge 2011', 2, 241, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3944, 'Winmerge', 2, 241, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3945, 'Winrar', 2, 242, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3946, 'WinRar', 2, 242, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3947, 'RAR5', 2, 242, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3948, 'Rarlab WinRAR', 2, 242, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3949, 'Win RAR', 2, 242, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3950, 'WINSCP', 2, 243, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3951, 'Winscp', 2, 243, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3952, 'Word press', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3953, 'BbPress', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3954, 'Cafelog', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3955, 'WordPress MU', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3956, 'B2\cafelog', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3958, 'B2/cafelog', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3959, 'WordPress 2.1.2', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3960, 'WordCamp', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3961, 'WordPress Foundation', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3962, 'Word Press', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3963, 'The WordPress Foundation', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3964, 'Wordpress foundation', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3965, 'B2 (software)', 2, 245, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3966, 'Xampp', 2, 246, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3967, 'XAMPP Lite', 2, 246, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3968, 'Xamp', 2, 246, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3969, 'Xampp Lite', 2, 246, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3970, 'Apache Friends', 2, 246, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3971, '0MQ', 2, 248, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3973, 'Nanomsg', 2, 248, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3974, 'Zero MQ', 2, 248, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3975, 'ØMQ', 2, 248, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3976, '0mq', 2, 248, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3977, 'Zmq', 2, 248, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3978, 'Zeromq', 2, 248, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3979, 'OMQ', 2, 248, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3981, 'HACMP', 2, 250, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3982, 'High Availability Cluster Multiprocessing', 2, 250, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3985, 'OPL Development Studio', 2, 253, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3986, 'LogicTools', 2, 257, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3987, 'Sqlite', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3988, 'SQL Lite', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3989, 'Sqlite3', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3990, 'SqlLite', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3991, 'SQLLite', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3992, 'SQLite4', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3993, 'SQLlite', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3994, 'SQLite3', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3995, 'SQlite', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3996, 'SQLLite DB', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3997, 'SQLite Manager', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3998, 'Sqllite', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (3999, 'SQLITE', 2, 258, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4000, 'Apache webserver', 8, 259, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4001, 'Apache Server', 8, 259, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4002, 'Apache web server', 8, 259, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4003, 'Apache WWW Server', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4004, 'Apache (server)', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4005, 'Apache (web server)', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4006, 'Apache httpd', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4007, 'Apache server', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4008, 'Apache2', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4009, 'Apache2ctl', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4012, 'Apache Web server', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4013, 'Apache HTTPd', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4014, 'Apache http', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4015, 'Apache HTTPD', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4016, 'Apachectl', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4017, 'Apache http server', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4018, 'Apache HTTP server', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4019, 'Apache (HTTP server)', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4020, 'Apache 1.3', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4021, 'Apache (webserver)', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4022, 'Apache 2.2', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4023, 'Apache Webserver', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4024, 'Apache (computing)', 8, 259, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4025, 'Tomcat Catalina', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4026, 'Apache tomcat', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4027, 'Tomcat Jasper', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4028, 'Tomcat6', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4030, 'Tomcat5', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4031, 'Catalina (Tomcat)', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4032, 'Tomcat Coyote', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4033, 'Tomcat (software)', 8, 260, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4034, 'Jakarta Tomcat', 8, 260, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4036, 'BEA-WebLogic', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4037, 'Bea Weblogic', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4038, 'Oracle Weblogic', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4040, 'BEA AS', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4041, 'BEA WebLogic', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4043, 'BEA Application Server', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4045, 'Oracle WebLogic', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4047, 'Oracle Weblogic Server', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4048, 'WebLogic Application Server', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4049, 'Sun ONE Application Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4050, 'Oracle GlassFish Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4051, 'SJSAS', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4052, 'Java System Application Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4053, 'Glassfish Application Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4054, 'Sun GlassFish Enterprise Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4055, 'Glassfish server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4056, 'Sun Java Application Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4057, 'Sun Java System Application Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4058, 'IPlanet Application Server', 8, 263, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4059, 'Haproxy', 8, 264, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4061, 'Microsoft IIS', 8, 609, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4063, 'Internet Information Server', 8, 609, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4064, 'IIS 7', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4065, 'Microsoft Internet Information Server', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4066, 'IIS Media Services', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4067, 'Microsoft-IIS', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4068, 'MS IIS', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4069, 'IIS7', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4070, 'IIS Media Pack', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4071, 'Microsoft-iis', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4072, 'Microsoft IIS server', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4074, 'IIS server', 8, 609, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4075, 'Red Hat Software', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4076, 'RHTS', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4077, 'RHAT (NASDAQ)', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4078, 'Red Hat Czech', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4079, 'PNAELV', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4080, 'JBoss (company)', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4081, 'RHAT', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4082, 'Redhat.com', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4083, 'Red Hat Test Suite', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4084, 'Ntsysv', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4085, 'FUSE Message Broker', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4086, 'JBOSS', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4087, 'RESTEasy', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4088, 'Red Hat (company)', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4089, 'REDHAT', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4090, 'Red.ht', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4091, 'CloudForms', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4092, 'Red Hat High', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4093, 'Red Hat Enterprise MRG', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4095, 'RED HAT', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4096, 'JBoss Group', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4097, 'Red hat', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4098, 'Red Hat', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4099, 'Red Hat MGR', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4101, 'Red Hat MRG', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4102, 'RESTeasy', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4103, 'Red Hat Inc', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4104, 'Red Hat India', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4105, 'Red Hat Inc.', 8, 268, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4106, 'RedHat', 8, 268, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4111, 'Fuse Message Broker', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4119, 'NASDAQ:RHAT', 8, 268, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4142, 'IBM Domino', 8, 270, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4146, 'Nginx plus', 8, 274, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4147, 'NGINX', 8, 274, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4148, 'Engine X', 8, 274, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4149, 'NGINX Unit', 8, 274, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4150, 'Oracle OC4J', 8, 610, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4152, 'Oracle Application Server 10g', 8, 610, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4153, 'Oracle Imaging and Process Management', 8, 276, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4154, 'Oracle Content Management', 8, 276, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4155, 'WebCenter', 8, 276, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4156, 'Oracle Universal Content Management', 8, 276, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4157, 'Universal Content Management', 8, 276, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4158, 'Oracle WebCenter Imaging', 8, 276, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4159, 'Resin Server', 8, 278, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4160, 'Resin Application Server', 8, 278, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4161, 'Caucho Resin', 8, 278, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4162, 'Quercus (software)', 8, 278, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4163, 'NetWeawer', 8, 279, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4164, 'SAP Netweaver solution', 8, 279, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4165, 'Netweaver', 8, 279, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4166, 'SAP Central Process Scheduling', 8, 279, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4168, 'Apache Spark', 8, 280, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4169, 'Sun Java System Web Server', 8, 281, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4170, 'Sun Java Enterprise System Web Server', 8, 281, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4171, 'IPlanet Web Server 4.1', 8, 281, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4174, 'Netscape FastTrack Server', 8, 281, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4176, 'IPlanet Web Server', 8, 281, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4177, 'Sun-Java-System-Web-Server', 8, 281, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4179, 'WebSphere Application Server V3.0', 8, 284, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4180, 'WebSphere Application Server V5.0', 8, 284, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4181, 'Websphere 6', 8, 284, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4182, 'WAS 6', 8, 284, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4183, 'WebSphere Application Server', 8, 284, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4184, 'WebSphere', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4185, 'WebSphere Application Server V5.1 Business Integration Foundation Edition', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4186, 'WebSphere Application Server V6.0', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4187, 'WebSphere Application Server V5.0 Enterprise Edition', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4188, 'IBM WebSphere Real Time', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4189, 'Websphere', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4190, 'IBM Websphere', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4191, 'WebSphere Application Server V4.0', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4192, 'Websphere Software', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4193, 'IBM WebSphere Information Integration', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4194, 'WebSphere Information Integration', 8, 285, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4196, 'WebSphere Process Server', 8, 287, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4197, 'Integrity NonStop', 4, 293, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4198, 'HP Integrity NonStop', 4, 293, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4199, 'HPE NonStop', 4, 293, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4200, 'Nonstop kernel', 4, 293, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4201, 'NonStop Kernel', 4, 293, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4202, 'NonStop OS', 4, 293, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4203, 'IBM Power System', 4, 295, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4204, 'Lpar2rrd', 4, 295, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4205, 'Power Systems', 4, 295, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4206, 'L5335', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4207, 'Xeon E5-26xx', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4208, 'Dunnington (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4209, 'Cascades (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4210, 'Scalable Memory Interconnect', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4211, 'X7460', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4212, 'Xeon E3-12xx', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4213, 'Xeonx', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4214, 'Woodcrest (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4215, 'Pentium II Xeon', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4216, 'Tigerton (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4217, 'Jasper Forest (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4218, 'XEON', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4219, 'Xeon E7-48xx v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4220, 'Clovertown (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4221, 'Xeon E5', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4222, 'Westmere-EX', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4223, 'Drake (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4224, 'X5650', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4225, 'Xeon E3 v2', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4226, 'Wolfdale-DP (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4227, 'Quad-Core Intel Xeon', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4228, 'Tanner (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4229, 'Scalable memory interconnect', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4230, 'Intel Xeon CPU', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4231, 'Quad-Core Xeon', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4232, 'Intel Xeon E5', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4233, 'Xeon E3 v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4234, 'Dempsey (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4235, 'Xeon Silver', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4236, 'Xeon E7-88xx v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4237, 'Harpertown (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4238, 'Xeon E5 v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4239, 'Intel SMI', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4240, 'Gainestown (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4241, 'Xeon MP', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4242, 'Dual-Core Xeon', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4243, 'Xeon E5-26xx v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4244, 'Intel Xeon Gold', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4245, 'Nancona', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4246, 'Haswell-EP', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4247, 'Intel Xeon Platinum', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4248, 'Sossaman (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4249, 'Xeon E3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4250, 'Xeon E7 v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4251, 'Xeon E7 v2', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4252, 'Intel Woodcrest', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4253, 'E5310', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4254, 'Intel Xeon Bronze', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4255, 'Xeon E5 v2', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4256, 'Pentium III Xeon', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4257, 'Nehalem-ex', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4258, 'Xeon E5-16xx', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4259, 'Intel Xeon Silver', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4260, 'Beckton (microprocessor)', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4261, 'Xeon E5-16xx v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4262, 'Xeon Bronze', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4263, 'Sossaman', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4264, 'Xeon E3-12xx v3', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4265, 'Intel Xeon', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4266, 'Xeon Platinum', 4, 296, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4268, 'Oracle Database Machine', 4, 298, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4269, 'Exadata', 4, 298, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4270, 'Autoit', 9, 299, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4271, 'Autoit script', 9, 299, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4272, 'AutoIt3', 9, 299, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4273, 'AI3', 9, 299, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4274, 'Awk', 9, 300, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4275, 'Nawk', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4276, 'GNU Awk', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4277, 'GAWK', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4278, 'GNU awk', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4279, 'One true AWK', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4280, 'AWK (programming language)', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4281, 'AWK programming language', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4282, 'Awk (language)', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4283, 'Tawk', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4284, 'One True AWK', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4285, 'Gawk (GNU package)', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4286, 'Awk language', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4287, 'One true awk', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4288, 'Awk programming language', 9, 300, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4289, 'BASAIC programming language', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4290, 'Beginner All-Purpose Symbolic', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4291, 'Beginner''s All Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4292, 'Beginners All Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4293, 'Beginner All Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4294, 'Beginner''s All-Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4295, 'Basic programming language', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4296, 'Beginners'' All-Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4297, 'Beginners'' All-Purpose Symbolic', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4298, 'Basic (programming language)', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4299, 'Basic (language)', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4300, 'Basic computer language', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4301, 'Unstructured BASIC', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4302, 'B.A.S.I.C.', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4303, 'ECMA-55', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4304, 'Beginner All-Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4305, 'Compiled BASIC', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4306, 'Structured BASIC', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4307, 'Beginners All-Purpose Symbolic', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4308, 'Beginner''s All-Purpose Symbolic', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4309, 'ROM BASIC programming language', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4310, 'Beginners All-Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4311, 'BASIC language', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4312, 'BASIC (programming language)', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4313, 'Beginners All-purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4314, 'Basic (computer language)', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4315, 'Beginners'' All Purpose Symbolic Instruction Code', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4316, 'ANSI BASIC', 9, 301, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4317, 'BASIC programming language', 9, 301, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4318, 'Beginner''s All-purpose Symbolic Instruction Code', 9, 301, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4319, 'C prog', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4320, 'C programming Language', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4321, 'C-programming', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4322, 'C programming language/Evolution', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4323, 'C (computer language)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4324, 'C (programming langage)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4325, 'C lang', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4326, 'C (lang)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4327, 'C programing language', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4328, 'C (programming)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4329, 'C78 (C version)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4330, 'C programming', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4331, 'C Language', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4332, 'C language', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4333, 'C Programming', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4334, 'C program', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4335, 'C programming language/K and R C', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4336, 'C (language)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4337, '32/16 bit C programming', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4338, 'C (software)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4339, 'C(programming language)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4340, 'C (Programming Language)', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4341, 'Programming language C', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4342, 'Computer language C', 9, 303, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4343, 'C programming language', 9, 303, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4344, 'C# (programming language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4345, 'C++++', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4346, 'Visual C Sharp .Net', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4347, 'Visual C Sharp Express Edition', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4348, 'C♯ (programming language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4349, 'Microsoft Visual C ♯', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4350, 'C Sharp language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4351, 'C# programming language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4352, 'ISO/IEC 23270', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4353, 'C Sharp Programming Language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4354, 'Microsoft Visual C Sharp', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4355, 'C-sharp programming language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4356, 'C ♯ (programming language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4357, 'C hash', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4358, 'C♯ (language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4359, 'C sharp (computing)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4360, 'CS (programming language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4361, 'C sharp (language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4362, 'C Sharp (language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4363, 'ECMA-334', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4364, 'C-hash', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4365, 'C sharp 6.0', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4366, 'C♯ programming language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4367, 'Visual C Sharp', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4368, 'C Sharp 5.0', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4369, 'C-Hash', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4370, 'C sharp programming language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4371, 'ISO 23270', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4372, 'C Sharp Programming language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4373, 'C Sharp (computing)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4374, 'C # (programming language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4375, 'C sharp (programming language)', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4376, 'C hashtag', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4377, 'C Pound', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4378, 'C Sharp programming language', 9, 582, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4379, 'C plus plus', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4380, 'C++ 1.0', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4381, 'C plus plus programming language', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4382, 'ISO/IEC 14882:2003', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4383, 'C++ standard', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4384, 'Standard C++ Foundation', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4385, 'ISO/IEC 14882', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4386, 'Sepples', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4387, 'Cee plus plus', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4388, 'C++ program', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4389, 'C++ (Programming Language)', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4390, 'C+++', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4391, 'C++ syntax', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4392, 'ANSI C++', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4393, 'ISO C++', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4394, 'C++ (programming language)', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4395, 'C++ 2.0', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4396, 'C++ language', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4397, 'Cee Plus Plus', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4398, 'C Plus Plus programming language', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4399, 'Core language', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4400, 'ISO C++ programming language', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4401, 'Cplusplus', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4402, 'C++ programming language', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4403, 'C++98', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4404, 'ISO/IEC 14882:2014', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4405, '++C', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4406, 'CPlusPlus', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4407, 'ISO/IEC 14882:2015', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4408, 'C-plus-plus programming language', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4409, 'C-plus-plus', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4410, 'C Plus Plus', 9, 583, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4411, 'Microsoft C', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4412, 'Visual C++ .NET 2003', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4413, 'Embedded Visual C++', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4414, 'Visual C++ 2002', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4415, 'Visual C++ 5.0', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4416, 'Visual C++ 2010', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4417, 'Visual C++ .NET 2002', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4418, 'Visual C++ 2003', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4419, 'Vc++', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4420, 'MSVC90', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4422, 'MSVC 2005', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4423, 'Embedded visual c plus plus', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4424, 'Visual C++ 6.0', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4425, 'Visual C++ 2.0', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4427, 'Visual C plus plus', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4428, 'Visual C Plus Plus', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4429, 'MSVC80', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4430, 'Visual C++ 4.0', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4431, 'Visual C++ 2012', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4432, 'Visual C++ 4.2', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4433, 'VisualC++', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4434, 'MSVC110', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4435, 'VC++', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4436, 'MSVC120', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4437, 'Microsoft C compiler', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4438, 'MSVC 2010', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4439, 'Microsoft Visual C plus plus', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4440, 'MSVC100', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4441, 'MSVC71', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4442, 'Vc9', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4443, 'MSVC 2013', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4444, 'Visual C++ 1.0', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4445, 'MSVC 2003', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4446, 'Msvc', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4447, 'Visual C++ 2013', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4448, 'Microsoft Visual C Plus Plus', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4449, 'Visual C++ 2005', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4450, 'MSVC 2002', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4451, 'MSVC 2008', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4452, 'MSVC 2012', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4453, 'Visual c', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4454, 'MS Visual C++', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4455, 'Vc6', 9, 306, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4459, 'Cascading Stylesheets', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4460, 'Css1', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4461, 'Cascading Style Sheet', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4462, 'CSS stylesheet', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4463, 'CSS selector', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4464, 'CSS (internet)', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4465, 'Cascading style sheets', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4466, 'CSS1', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4467, 'Css 2.1', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4468, 'Aural Cascading Style Sheets', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4469, 'Css3', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4470, 'CSS 2', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4471, 'CSS2', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4472, 'CSs', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4473, 'CSS 1.0', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4474, 'Text/css', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4475, 'Css 2.0', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4476, 'CSS4', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4477, 'Cascading Style Sheets - CSS', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4478, 'Css 3', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4479, 'Css', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4480, 'Cascading style sheet', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4481, 'CSS 4', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4482, 'XML/XSL skin', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4483, 'CSS styles', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4484, 'CSS style sheets', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4485, 'Cascading Style Sheets 4', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4486, 'CSS styling', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4487, 'CSS 3.0', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4488, 'CSS style', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4489, 'CSS2.1', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4490, 'Cascading stylesheets', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4491, 'Css2', 9, 307, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4492, 'CSS3', 9, 307, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4493, 'Clipper programming language', 9, 308, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4494, 'CA clipper', 9, 308, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4495, 'Clipper prog', 9, 308, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4496, 'CA-Clipper', 9, 308, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4497, 'Clist', 9, 309, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4498, 'CoBoL', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4499, 'COBOL-85', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4500, 'COBOL 20XX', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4501, 'COBOL 85', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4502, 'ISO/IEC 1989', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4503, 'MF-COBOL', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4504, 'O-O COBOL', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4505, 'COBOL programming language', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4506, 'COBOL-74', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4507, 'COBOL 60', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4508, 'ISO 1989', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4509, 'COBOL 74', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4510, 'COBOL74', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4511, 'COBOL-68', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4512, 'OO COBOL', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4513, 'COBOL language', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4514, 'COBOL 1985', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4515, 'Common Ordinary Business-Oriented Language', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4516, 'COBOL 1968', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4517, 'COBOL 2014', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4518, 'Object-oriented COBOL', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4519, 'Common Business Oriented Language', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4520, 'COBOL (programming language)', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4521, 'X3J4', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4522, 'COBOL68', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4523, 'COBOL 1974', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4524, 'COBOL85', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4525, 'OO-COBOL', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4526, 'COBOL-60', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4527, 'COmmon Business-Oriented Language', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4528, 'COBOL 1960', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4529, 'COBOL 2002', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4530, 'RM/COBOL', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4531, 'COBOL 68', 9, 594, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4532, 'Common Business-Oriented Language', 9, 594, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4533, 'Cobol', 9, 594, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4535, 'Cfml', 9, 311, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4536, 'Data Language/1', 9, 312, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4537, 'IBM Data Language One (DL/1)', 9, 312, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4539, 'DL/1', 9, 312, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4540, 'Borland Delphi 2006', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4541, 'Delphi rad', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4542, 'Delphi 2006', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4543, 'Delphi XE2', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4544, 'RAD Studio', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4545, 'Embarcadero RAD Studio', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4546, 'Delphi 2009', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4547, 'Delphi XE', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4548, 'CodeGear Delphi', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4549, 'Delphi (IDE)', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4550, 'Delphi XE4', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4551, 'Delphi XE3', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4552, 'Borland Delphi', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4553, 'Delphi code', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4554, 'Delphi 4', 9, 313, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4555, 'Embarcadero Delphi', 9, 313, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4558, 'Xhtml11', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4559, 'Xhtml strict', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4560, 'XHTML 1.0', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4561, 'XHTML 1.1', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4562, 'Xhtml', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4563, 'Xht', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4564, 'Xhtml 2', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4565, 'EXtensible HyperText Markup Language', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4566, 'XHTML2', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4567, 'X(HTML)', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4568, 'XHTML 2.0', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4569, 'Extensible HyperText Markup Language', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4570, 'XHTML 2', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4571, 'Extensible Hypertext Markup Language', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4572, 'EXtensible Hypertext Markup Language', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4573, '(X)HTML', 9, 316, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4574, 'XML feed', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4575, 'XML feeds', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4576, 'Well-formed XML', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4577, 'Extended markup language', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4578, 'EXtensible Markup Language', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4579, 'Xml:lang', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4580, 'Xml parser', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4581, 'XML tag set', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4582, 'Web3S', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4583, 'Extensible markup language', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4584, 'Xml', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4585, 'Extended Markup Language', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4586, 'Dynamic XML', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4587, 'XML parser', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4588, 'Text/xml', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4590, 'Valid XML document', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4591, 'MS XML', 9, 318, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4592, 'Microsoft XML Core Services', 9, 318, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4593, 'Xsl', 9, 319, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4594, 'Extensible stylesheet language', 9, 319, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4595, 'EXtensible Stylesheet Language', 9, 319, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4596, 'XSL stylesheet', 9, 319, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4597, 'XSL stylesheets', 9, 319, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4599, 'XML template engine', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4600, 'XSL Transformation', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4601, 'XSLT 2.0', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4602, 'Xslt', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4603, 'XSLT processor', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4604, 'XLST', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4605, 'XML template processor', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4606, 'XSL-T', 9, 320, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4607, 'XSL Transformations', 9, 320, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4609, 'Focus (software)', 9, 321, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4610, 'Focus software', 9, 321, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4611, 'FORTRAN', 9, 322, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4612, 'Formula Translation', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4613, 'Fortran 77', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4614, 'FORTRAN II', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4615, 'Formula Translator', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4616, 'FORTRAN 66', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4617, 'FORTRAN programming language', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4618, 'Fortran (programming language)', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4619, 'Fortran 2018', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4620, 'Fortran IV', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4621, 'Fortran 2008', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4622, 'Format (Fortran 66)', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4623, 'Fortran 66', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4624, 'Fortran programming language', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4625, 'FORTRAN77', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4626, 'ECMA-9', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4627, 'Fortran language', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4628, 'FORTRAN IV', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4629, 'Fortran 95', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4630, 'F77', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4631, 'Fortran 2003', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4632, 'FORTRAN 77', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4633, 'Visual Fortran', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4634, 'Fortran 90', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4635, 'FORTRAN (programming language)', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4636, 'FORTRAN 86', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4637, 'Formula translation', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4638, 'F2003', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4639, 'Fort77', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4640, 'Fortran 5 (programming language)', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4641, 'F95', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4642, 'Fortran 8X', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4643, 'Fortran 2015', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4644, 'Fortran-66', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4645, 'FORTRAN I', 9, 322, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4646, 'Go (Programming language)', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4647, 'Gccgo', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4648, 'Go Programming Language', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4649, 'Google go', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4650, 'Go language', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4651, 'Golang', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4652, 'Go google', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4653, 'Go (language)', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4654, 'GoLang', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4655, 'Go lang', 9, 323, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4656, 'Go programming language', 9, 323, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4657, 'Google Go', 9, 323, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4658, 'Graphql', 9, 324, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4660, 'Dynamic Hypertext Markup Language', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4661, 'HTML file', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4662, 'Hypertext markup language', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4664, 'Basic HTML', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4665, 'HTM file', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4666, 'HTML 4.01', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4667, 'ISO/IEC HTML', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4668, 'Hyper text Markup Language', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4670, 'Hyper Text Markup Language', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4671, 'HTML2', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4672, 'HTML 4', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4673, 'HTML 3.2', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4674, 'HTML+', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4675, 'HLMT', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4676, 'ISO/IEC 15445', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4677, 'Hyper text markup language', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4678, 'Html comment', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4679, 'HTML code', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4680, 'HTML strict', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4681, 'HyperText Markup Language', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4682, 'HTML 4.0', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4683, 'Html', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4684, 'Html language', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4685, 'Html code', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4686, 'HTML File Format', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4687, 'HTML syntax', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4688, 'HTML 3', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4689, 'HMTL', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4690, 'Text/html', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4691, 'Html coding', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4692, 'HTML 2', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4693, 'HTML3', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4694, 'Html 4.01', 9, 327, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4696, 'HLASM', 9, 328, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4697, 'IBM High-Level Assembler', 9, 328, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4699, 'AS/400 Control Language', 9, 329, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4700, 'CL Programming', 9, 329, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4701, 'Control Language Programming', 9, 329, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4702, 'CL (OS/400 command interpreter)', 9, 329, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4703, 'AS/400 Command Language', 9, 329, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4704, 'IBM i Control Language', 9, 329, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4705, 'Informix 4GL/SQL', 9, 330, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4707, 'Java programming language', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4708, 'Javax', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4709, 'Java (software)', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4710, 'Java (Programming language)', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4711, 'Javalang', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4712, 'Java Programming', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4713, 'JPD (file format)', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4714, 'Java (programming)', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4715, 'Java (langage)', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4716, 'Java language', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4717, 'Java technology', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4718, 'Flow Java', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4719, 'Java (language)', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4720, 'Java programming', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4721, 'Java (Programming Language)', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4722, 'Java prog', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4723, 'Java code', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4724, 'Java computer language', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4725, 'Java Programing Languge', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4732, 'JavaEE', 9, 333, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4734, 'J2EE', 9, 333, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4735, 'Enterprise Java', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4736, 'Java enterprise', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4737, 'JSR 313', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4738, 'Java EE 5', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4739, 'Java Platform', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4741, 'Java Enterprise Platform', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4742, 'JSR 58', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4743, 'Java 2 Platform Enterprise', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4744, 'Java ee', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4745, 'J2EE 1.4', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4746, 'Jakarta Enterprise Edition', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4747, 'J2EE 1.3', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4748, 'Java 2 Enterprise Edition', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4749, 'J2EE 1.2', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4750, 'JSR 151', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4751, 'JSR 244', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4752, 'J2ee', 9, 333, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4753, 'J2SE', 9, 334, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4754, 'Java 2 Platform Standard Edition', 9, 334, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4755, 'Java SE', 9, 334, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4756, 'JSR 59', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4757, 'Javase', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4758, 'J2se', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4759, 'Java 2 Platform', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4760, 'Java 2 Standard Edition', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4761, 'Java Standard Edition', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4762, 'JavaSE', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4763, 'Java se', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4764, 'JSR 270', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4765, 'Java SE platform', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4766, 'JSR 176', 9, 334, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4767, 'JSR 152', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4768, 'JSP compiler', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4769, 'JSP container', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4770, 'Jave Page', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4771, 'Jakarta Server Pages compiler', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4772, 'Jave Server', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4773, 'Java server pages', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4774, 'Javaserver pages', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4775, 'Jsp2', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4776, 'JSP files', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4777, 'Java Server Page', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4778, 'Java Server Pages', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4779, 'JSP engine', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4780, 'JSPF', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4781, 'JSR 245', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4782, 'JavaServer Pages compiler', 9, 335, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4783, 'JavaServer Page', 9, 335, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4785, 'Scriptlets', 9, 336, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4786, 'JavaScripts', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4787, 'Live-script', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4788, 'JavaScript programming language', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4789, 'Mocha (programming language)', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4790, 'JavaScript rollover', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4791, 'Live-Script', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4792, 'Javascript Console', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4793, 'Server side javascript', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4794, 'Live script', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4795, 'Javascript programming language', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4796, 'JavaScript Forums', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4797, 'JavaScript 1.6', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4799, 'JavaScript language', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4800, 'Escript', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4801, 'JavaScript (programming language)', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4802, 'Client-side JavaScript', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4803, 'Javascript (programming language)', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4804, 'Vanilla JS', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4805, 'SSJS', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4806, 'Javascript 1.7', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4807, 'Java script', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4809, 'JavaScript 1.7', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4810, 'DOM scripting', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4811, 'Vanilla JavaScript', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4812, 'Live Script', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4813, 'CSJS', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4814, 'Server-side JavaScript', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4815, 'Server-Side JavaScript', 9, 589, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4816, 'IBM JCL', 9, 338, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4817, 'Job Control Statements', 9, 338, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4818, 'Job management language', 9, 338, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4819, 'Job entry control language', 9, 338, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4820, 'JECL', 9, 338, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4821, 'Job control language', 9, 338, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4822, 'Jscript', 9, 340, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4823, 'Microsoft JScript', 9, 340, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4824, 'JS script', 9, 340, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4825, 'ActiveXObject', 9, 340, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4826, 'Managed JScript', 9, 340, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4827, 'Lisp computer language', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4828, 'Lisp language', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4829, 'Lisp atom', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4830, 'LISP (programming language)', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4831, 'LISP atom', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4832, 'Lisp (programming)', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4833, 'List Processing', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4834, 'Lisp (language)', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4835, 'MuLISP', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4836, 'LISP', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4837, 'LISP language', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4838, 'Lisp 1.5', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4839, 'LISP programming language', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4840, 'Lisp programming language', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4841, 'LISP 1.5', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4842, 'Lithp (programming language)', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4843, 'Lisp renaissance', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4844, 'LISP (programming)', 9, 341, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4845, 'NPL (Programming language)', 9, 342, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4846, 'NPL programming language', 9, 342, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4848, 'ObjC', 9, 343, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4849, 'Objc', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4850, 'Objective-C 2.0', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4851, 'Objective C++', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4852, 'Objective-C++', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4854, 'Object C', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4855, 'Objective-C (programming language)', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4856, 'Obj-c', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4857, 'ObjC programming language', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4858, 'Objective c', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4859, 'C and Smalltalk', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4860, 'Objective-c', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4861, 'ObjectiveC', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4862, 'Obj C', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4863, 'Objective-C programming language', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4864, 'Obj C programming language', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4865, 'Objective C programming language', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4866, 'Objective C plus plus', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4867, 'Obj-C programming language', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4868, 'Smalltalk and C', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4869, 'Object-C', 9, 343, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4870, 'OpenEdge Advanced Business Language (ABL)', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4871, 'OpenEdge Database', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4873, 'OpenEdge Advance Business Language (ABL)', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4874, 'Progress RDBMS', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4875, 'Progress DBMS', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4876, 'Advanced Business Language', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4877, 'Progress (software)', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4878, 'Progress4GL', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4879, 'Webspeed', 9, 344, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4880, 'Progress 4GL', 9, 344, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4881, 'Pascal-SC', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4882, 'Pascal-P1', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4883, 'Pascal (language)', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4884, 'Pascal-P', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4885, 'Pascal programming language', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4886, 'PASCAL-XSC', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4887, 'Pascal-S', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4888, 'Pascal Programming Language', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4889, 'PASCAL-SC', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4890, 'PASCAL (Programming language)', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4891, 'Pascal-P2', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4892, 'Pascal-P3', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4893, 'Pascal-P system', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4894, 'Pascal-P System', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4895, 'Pascal-F', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4896, 'Pascal (command)', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4897, 'ISO/IEC 10206', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4898, 'Pascal-P5', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4899, 'Pascal language', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4900, 'Pascal-p2', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4901, 'Pascal 86', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4902, 'Pascal-P4', 9, 599, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4903, 'Pascal-XSC', 9, 599, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4904, 'Delphi (language)', 9, 346, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4905, 'Delphi programming language', 9, 346, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4906, 'Delphi (programming language)', 9, 346, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4907, 'Object-Oriented Pascal', 9, 346, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4908, 'Delphi language', 9, 346, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4909, 'Delphi (Computer Language)', 9, 346, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4910, 'Delphi programming', 9, 346, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4911, 'Perl 7', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4912, 'Perl (programming language)', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4913, 'Practical Extraction and Report Language', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4914, 'Perl interpreter', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4915, 'Vanilla Perl', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4916, 'Practical Extraction And Report Language', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4917, 'Ponie', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4918, 'Embedded Perl', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4919, 'Perl language', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4920, 'X-perl', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4921, 'Perl programming language', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4922, 'Swiss army chainsaw', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4923, 'IndigoPerl', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4924, 'Perl code', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4925, 'Swiss-army chainsaw', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4926, 'Perl5', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4927, 'PONIE', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4928, 'PERL', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4929, 'Perl 5', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4930, 'Perl programming', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4931, 'Perl (language)', 9, 585, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4932, 'PerlScript', 9, 348, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4933, 'Active Perl', 9, 348, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4934, 'Activeperl', 9, 348, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4935, 'Perlscript', 9, 348, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4947, 'Perl Golf', 9, 349, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4958, 'Php language', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4959, 'Php (programming language)', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4960, 'Zend Engine 3', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4961, 'Php 5.3', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4962, 'PHP interpreter', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4963, 'PHP (programming language)', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4964, 'Php 4', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4965, 'PHP 5', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4966, 'PHPNG', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4967, 'PHP8', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4968, 'PHP Next Generation', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4969, 'PHP5-FPM', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4970, 'PHP5', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4971, 'PHP4', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4972, 'Php 5.4', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4973, 'Php 5.1', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4974, 'PHP-FPM', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4975, 'Php', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4976, 'PHTML', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4977, 'PHP/FI', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4978, 'Php-fpm', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4979, 'Php6', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4980, 'PHP 6', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4981, 'Php 5.0', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4982, 'PHP3', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4983, 'Php 6.0', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4984, 'Zephir (programming language)', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4985, 'Php1', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4986, 'PHP:Hypertext Preprocessor', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4987, 'Php 3', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4988, 'PHP7', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4989, 'PHP programming', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4990, 'Phtml', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4991, 'Php 5.2', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4992, 'Php5', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4993, 'Php2', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4994, 'Phpng', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4995, 'PHP Hypertext Preprocessor (programming language)', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4996, 'PHP next generation', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4997, 'Php3', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4998, 'PHP6', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (4999, 'PHP programing language', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5000, 'PHP 7', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5001, 'Php 1', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5002, 'Php 2', 9, 586, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5003, 'Hypertext Preprocessor', 9, 586, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5004, 'PHP programming language', 9, 586, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5005, 'PHP: Hypertext Preprocessor', 9, 586, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5006, 'PHP Hypertext Preprocessor', 9, 586, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5007, 'SL/1', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5009, 'Pl/1', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5010, 'PL1 language', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5011, 'PL/I programming language', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5012, 'Visual PL/1', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5013, 'DEC PL/I', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5014, 'PL/I-80', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5015, 'PL/MP', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5016, 'Raincode PL/1', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5017, 'PL/I-86', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5018, 'PLI programming language', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5019, 'PL/I (programming language)', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5020, 'PL1 programming language', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5021, 'PL/MI', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5022, 'PLI-86', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5023, 'VAX PL/I', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5024, 'PL/Ⅰ', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5025, 'RainCode PL/1', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5026, 'PL/1 programming language', 9, 351, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5027, 'StepSqlite', 9, 352, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5028, 'PLSQL', 9, 352, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5029, 'P/SQL', 9, 352, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5031, 'Pro*C++', 9, 353, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5032, 'Pro C', 9, 353, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5033, 'Pro*C/C++', 9, 353, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5034, 'Python scripting language', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5035, 'Python program', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5036, 'PythonLanguage', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5037, 'Python computer language', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5038, 'Python code', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5039, 'Python3', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5040, 'Python (computing)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5041, 'Python programming language', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5042, 'Python programming', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5043, 'Pythonistas', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5044, 'PEP8', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5045, 'Pyston', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5046, 'Python language', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5047, 'Python (lang)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5048, 'Python2', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5049, 'Python3000', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5050, 'Python 3k', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5051, 'Python (language)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5052, 'Coconut (programming language)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5053, 'Python (software)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5054, 'Pythonlang', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5055, 'Python prog', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5056, 'Python Programming', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5057, 'Python Programming Language', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5058, 'Python (scripting language)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5059, 'Pythonista', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5060, 'Python (programming)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5061, 'Python (Programming Language)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5062, 'Python (computer language)', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5063, 'Python 3K', 9, 587, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5064, 'R project', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5065, 'R (programming)', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5066, 'R Shiny', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5067, 'GNU-S', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5068, 'RStat', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5069, 'R programming language', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5070, 'R Statistics', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5071, 'R-stat', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5072, 'R lang', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5073, 'RPro', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5074, 'R code', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5075, 'R-Project', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5076, 'R (computer language)', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5077, 'R Project', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5078, 'R programming', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5079, 'R (program)', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5080, 'R-project', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5081, 'R (software)', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5082, 'R-Stat', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5083, 'Rstat', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5084, 'RGL (software package)', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5085, 'R (language)', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5086, 'Rlang', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5087, 'ParallelR', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5088, 'R Open', 9, 355, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5089, 'GNU R', 9, 355, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5090, 'GNU S', 9, 355, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5091, 'R language', 9, 355, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5092, 'Quercus Personal REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5093, 'Personal Rexx', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5094, 'Personal REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5095, 'REstructured eXtended eXecutor', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5096, 'Enterprise REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5097, 'Rexx programming language', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5098, 'IBM REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5099, 'Restructured Extended Executor', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5100, 'REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5101, 'Kilowatt Portable REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5102, 'Pmrexx', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5103, 'Enterprise Alternatives REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5104, 'Kilowatt Portable Rexx', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5105, 'Restructured extended executor', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5106, 'Quercus Personal Rexx', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5107, 'REXX (programming language)', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5108, 'Portable REXX', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5109, 'Portable Rexx', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5110, 'REXX programming language', 9, 356, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5111, 'Report Program Generator', 9, 357, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5112, 'Report program generator', 9, 357, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5113, 'RPGLE', 9, 357, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5114, 'RPG (programming language)', 9, 357, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5115, 'IBM RPG (programming language)', 9, 357, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5116, 'RPG IV', 9, 357, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5117, 'RPG programming language', 9, 357, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5118, 'Ruby (Programming Language)', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5119, 'Ruby Programming Language', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5120, 'Ruby programming', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5121, 'Ruby Enterprise Edition', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5122, 'Ruby language', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5123, 'Ruby (language)', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5124, 'Ruby (programming language', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5125, 'Ruby (lang)', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5126, 'Ruby lang', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5127, 'Ruby-gnome2', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5128, 'Ruby-language', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5129, 'Ruby (computing)', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5130, 'Ruby programming language', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5131, 'Rubylang', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5132, 'Ruby prog', 9, 588, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5133, 'SAS (Software)', 9, 360, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5134, 'SAS System', 9, 360, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5135, 'SAS (programming language)', 9, 360, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5136, 'SAS/STAT', 9, 360, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5137, 'Interactive Matrix Language', 9, 360, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5138, 'Statistical Analysis System', 9, 360, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5139, 'Scss', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5140, 'Sass CSS', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5141, 'Sass (CSS)', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5142, 'Sass (Stylesheet Language)', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5143, 'Sass (markup language)', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5144, 'SASS (language)', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5145, 'Sass (software)', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5146, 'Libsass', 9, 361, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5147, 'Scala programming language', 9, 362, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5148, 'Scala language', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5149, 'Scala.js (programming language)', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5150, 'ScalaNative', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5151, 'ScalaNative (programming language)', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5152, 'Scala-JS (Programming Language)', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5153, 'Scala-JS', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5154, 'Scala Native', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5155, 'ScalaJS (Programming Language)', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5156, 'Scala (programming language', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5157, 'ScalaJs (programming language)', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5158, 'Scala.js', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5159, 'Scala Native (programming language)', 9, 362, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5160, 'Smalltalk (programming language)', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5161, 'Smalltalk programming language', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5162, 'Smalltak', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5163, 'Smalltalk-80', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5164, 'Smalltalk Programming Language', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5165, 'Smalltalk-72', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5166, 'SmallTalk', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5167, 'Smalltalk/V', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5168, 'Visual Smalltalk', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5169, 'Smalltalk 80', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5170, 'SmallTalk programming language', 9, 363, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5171, 'Swift (Apple programming language)', 9, 364, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5172, 'Swift programming language', 9, 364, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5173, 'Swift language', 9, 364, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5174, 'Apple Swift', 9, 364, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5175, 'SwiftNIO', 9, 364, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5176, 'Swiftlang', 9, 364, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5177, 'Tool Command Language', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5178, 'Safe-Tcl', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5179, 'Tcl (computer language)', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5180, 'Object-oriented programming in Tcl', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5181, 'Tcl (programming language)', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5182, 'Tcl programming language', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5183, 'Tcl/tk', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5184, 'TclTk', 9, 365, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5185, 'Tsql', 9, 366, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5188, 'T-sql', 9, 366, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5190, 'Microsoft TypeScript', 9, 367, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5192, 'Microsoft Visual Basic.NET', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5193, 'VB.Net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5194, 'VB.net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5195, 'Microsoft Visual Basic 2008 Express', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5196, 'VB 2005', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5197, 'VBx', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5198, 'Vb dot net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5199, 'Visual Basic 2005', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5201, 'Visual BASIC .net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5202, 'Visual Basic.NET', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5203, 'Vb.net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5204, 'Visual Basic (.NET Version)', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5205, 'Visual Basic .NET 2003', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5206, 'VB .NET', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5207, 'Visual basic .net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5208, 'Visual Basic.net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5209, 'Visual Basic.Net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5210, 'Microsoft Visual Basic .NET', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5211, 'Visual Basic .net', 9, 368, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5212, 'Vbscript', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5214, 'VBS Script', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5215, 'VBScript (programming language)', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5216, 'VBSCRIPT', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5217, 'VB script', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5218, 'Visual Basic Scripting', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5220, 'Visual Basic Script Edition', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5221, 'Visual Basic Scripting Edition', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5222, 'VBSScript', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5223, 'Visual Basic Script', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5224, 'VbScript', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5225, 'VBScript programming language', 9, 369, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5226, 'Visual Basic 6', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5227, 'Visual basic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5228, 'Microsoft Visual Basic 5.0', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5229, 'Visual basic 6', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5230, 'Microsoft Visual Basic 6.0', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5231, 'Vbasic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5232, 'Microsoft Visual Basic 6', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5234, 'VB4', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5236, 'Classic Visual Basic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5237, 'Microsoft Visual Basic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5238, 'Hummingbird Basic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5239, 'MSVB', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5240, 'VBP', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5241, 'VB3', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5242, 'Visual Basic 6 Portable', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5243, 'Visual Basic programming language', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5244, 'Microsoft Visual BASIC', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5245, 'VBLang', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5246, 'Visual Basic Control', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5247, 'VisualBasic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5248, 'VBDOS 1.0', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5249, 'Virtual Basic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5250, 'Visual BASIC', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5251, 'Visual Basic Classic', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5252, 'Visual Basic 5', 9, 370, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5253, 'Microsoft visual basic for applications', 9, 371, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5254, 'Visual Basic for Applications programming language', 9, 371, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5255, 'Visual basic for applications', 9, 371, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5256, 'Visual Foxpro', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5257, 'Visual Fox pro', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5258, 'Microsoft Visual FoxPro', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5259, 'Microsoft Visual Fox pro', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5260, 'Microsoft Visual Foxpro', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5261, 'Visual FoxPro programming language', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5262, 'Visual Fox Pro', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5263, 'Microsoft Visual Fox Pro', 9, 372, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5265, 'Voice XML', 9, 373, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5266, 'Voicexml', 9, 373, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5268, 'XBase plus plus', 9, 374, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5269, 'Clucene', 12, 375, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5270, 'KinoSearch', 12, 375, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5271, 'Kinosearch', 12, 375, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5272, 'Solr/Lucene', 12, 375, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5274, 'Apache Xerces', 12, 376, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5275, 'Bootstarpping', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5276, 'Boot strap', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5277, 'Bootstrapped', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5278, 'Bootstrap support', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5279, 'Bootstrapping (computing)', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5280, 'Bootstrapper', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5281, 'Boot-strap', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5282, 'Bootstrap (word origin)', 12, 377, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5283, 'Java|Apache Camel', 12, 378, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5284, 'Java|Apache Commons BeanUtils', 12, 379, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5286, 'Velocity apache', 12, 381, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5287, 'Velocity (software)', 12, 381, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5288, 'Jakarta Velocity', 12, 381, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5289, 'Java|EclipseLink', 12, 382, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5292, 'Enterprise Java Beans', 12, 383, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5293, 'Enterprise Beans', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5294, 'Enterprise beans', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5295, 'Enterprise JavaBean', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5296, 'Enterprise Bean', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5297, 'SLSB', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5298, 'Enterprise bean', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5299, 'SFSB', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5300, 'Jakarta Enterprise Bean', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5301, 'Bean-Managed Persistence', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5302, 'Enterprise Java Bean', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5303, 'Java Enterprise Bean', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5304, 'EJB Container', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5305, 'Jakarta Enterprise beans', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5306, 'Jakarta Enterprise bean', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5307, 'JSR 153', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5308, 'JSR 19', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5309, 'EJB container', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5310, 'Ejb', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5311, 'JSR 220', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5312, 'Container-Managed Persistence', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5313, 'Message-driven EJB', 12, 383, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5314, 'JSNI', 12, 385, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5315, 'Hibernate Query Language', 12, 386, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5316, 'Hibernate (Java)', 12, 386, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5317, 'Hibernate OGM', 12, 386, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5318, 'Hibernate (software)', 12, 386, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5319, 'Hibernet', 12, 386, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5320, 'Hibernate Core', 12, 386, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5321, 'Hibernate (java)', 12, 386, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5322, 'Java 2 SDK', 12, 388, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5324, 'Java SDK', 12, 388, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5325, 'J2SDK', 12, 388, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5326, 'Java 2 Software Development Kit', 12, 388, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5327, 'JDK 1.2', 12, 388, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5328, 'Java Development Toolkit', 12, 388, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5329, 'Java jdk', 12, 388, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5330, 'JSR 914', 12, 389, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5331, 'Java messaging service', 12, 389, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5333, 'JNLP', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5334, 'Web Start', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5335, 'Java webstart', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5336, 'Java Network Launching Protocol', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5337, 'JavaWS', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5338, 'Webstart', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5339, 'JSR 56', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5340, 'Javaws', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5341, 'Java web start', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5342, 'Java Webstart', 12, 390, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5343, 'JSR 127', 12, 391, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5344, 'JSR 252', 12, 391, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5345, 'Java Server Faces', 12, 391, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5346, 'Javaserver faces', 12, 391, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5349, 'Jdbc', 12, 392, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5350, 'Java Data Base Connectivity', 12, 392, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5352, 'JRuby programming language', 12, 393, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5353, 'JRuby language', 12, 393, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5354, 'Jruby', 12, 393, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5355, 'Apache Log4net', 12, 394, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5356, 'Log4javascript', 12, 394, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5357, 'Apache log4net', 12, 394, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5358, 'Log4js', 12, 394, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5359, 'Log4Net', 12, 394, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5360, 'Log4c', 12, 394, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5361, 'Log4J', 12, 394, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5362, 'Quartz job scheduler', 12, 395, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5363, 'JRMI', 12, 396, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5364, 'Remote Method Invokation', 12, 396, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5365, 'Java Remote Method Invocation', 12, 396, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5366, 'Rmic', 12, 396, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5368, 'Free-source', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5369, 'Free source', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5370, 'Four Freedoms (software)', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5371, 'Free (software)', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5372, 'Software Libre', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5373, 'Libre software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5374, 'Free-source software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5375, 'Free-libre software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5376, 'Four Freedoms (Free software)', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5377, 'Libre Software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5378, 'Freedom-ware', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5379, '4 software freedoms', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5380, 'Free sofware', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5381, 'Free-software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5382, 'FSF''s "free software" ideal', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5383, 'Free and Open Source Software (FOSS) for development', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5384, 'Freedomware', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5385, 'Free computer software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5386, 'Freed Software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5387, 'Freedom software', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5388, 'Software libre', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5389, 'Free software development', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5390, 'Four Freedoms (free software)', 12, 397, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5391, 'Spring (Java)', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5392, 'Spring framework', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5394, 'Spring beans', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5395, 'Spring (framework)', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5396, 'Spring Boot', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5397, 'Java Spring', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5398, 'Spring Framework (Java)', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5399, 'Springframework', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5400, 'Spring IOC Framework', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5401, 'Spring AOP framework', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5402, 'Spring AOP', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5403, 'The Spring Framework', 12, 398, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5404, 'Java|Spring|Spring Boot', 12, 399, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5405, 'Jakarta Struts', 12, 402, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5406, 'Struts Studio', 12, 402, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5407, 'Struts Framework', 12, 402, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5408, 'Java Struts', 12, 402, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5409, 'Swing (java)', 12, 403, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5410, 'Swing java', 12, 403, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5411, 'Java Swing', 12, 403, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5412, 'Javax.swing', 12, 403, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5413, 'IT Mill Toolkit', 12, 404, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5414, 'Ajax framework', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5415, 'Ajax programming', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5416, 'CAJAX', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5417, 'Ajax scripts', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5418, 'AJAX (programming)', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5419, 'AJAXy', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5420, 'AJAX framework', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5421, 'Ajax desktops', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5422, 'Asynchronous Javascript and XML', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5423, 'Ajax language', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5424, 'Ajax (software)', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5425, 'Asynchronous JavaScript and JSON', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5426, 'Asynchronous JavaScript and XML', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5427, 'AJAX Framework', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5428, 'AJAJ', 12, 405, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5431, 'Angular.js', 12, 406, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5432, 'MVW framework', 12, 406, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5433, 'Scope (AngularJS)', 12, 406, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5434, 'Angularjs', 12, 406, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5435, 'Expressjs', 12, 408, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5436, 'Ext Core', 12, 409, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5437, 'Extjs', 12, 409, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5438, 'Ext (JavaScript library)', 12, 409, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5440, 'Ext (javascript library)', 12, 409, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5441, 'CssQuery', 12, 411, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5442, 'Jquery Library', 12, 411, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5443, 'Jquery', 12, 411, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5444, 'JQueryUI', 12, 412, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5445, 'React.js', 12, 413, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5447, 'Reactjs', 12, 413, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5448, 'Facebook React', 12, 413, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5449, 'React (web framework)', 12, 413, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5450, 'React JS', 12, 413, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5451, 'React Fiber', 12, 413, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5452, 'JavaScript|script.aculo.us', 12, 414, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5453, 'Android operating system', 6, 418, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5454, 'Android OS', 6, 418, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5455, 'Google Android', 6, 418, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5456, 'Android (software stack)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5457, 'Android system', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5458, 'Android (phone)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5459, 'Android (Google)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5460, 'Android phone operating system', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5461, 'Google Android Linux OS', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5462, 'Android (Operating System)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5463, 'Android (mobile device platform)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5464, 'Android Apps', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5465, 'Android Phone', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5466, 'Android cell phone', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5467, 'Honeycomb', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5468, 'Android software', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5469, 'Android google', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5470, 'Android 3.0 Honeycomb', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5471, 'Android platform', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5472, 'Android cellphone', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5473, 'Android device', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5474, 'Android mobile phone', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5475, 'Mobile Android', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5476, 'Android 3.0', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5478, 'Android phone', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5479, 'TaintDroid', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5480, 'Google android', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5481, 'Android (system)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5482, 'Android Open Source Project', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5483, 'Android app', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5484, 'Os android', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5485, 'Android (software)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5486, 'Android application', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5487, 'Android (os)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5488, 'Android.os', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5489, 'Android (OS)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5490, 'Android Device Manager', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5491, 'Android (platform)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5492, 'Android client', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5493, 'IDroid', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5494, 'Android (company)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5495, 'Android-powered device', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5496, 'Android (mobile phone platform)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5497, 'Android Operating System', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5498, 'Android devices', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5499, 'Google''s Android', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5500, 'Android mobile', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5501, 'Android fork', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5502, 'Android (google)', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5503, 'Surfaceflinger', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5504, 'Android os', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5505, 'Android mobile phone platform', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5506, 'Google Android One', 6, 418, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5507, 'B.E.O.S', 6, 419, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5508, 'Be OS', 6, 419, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5509, 'Internetwork Operating System', 6, 420, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5510, 'IOS (Cisco)', 6, 420, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5511, 'CIOSS', 6, 420, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5512, 'Interface Descriptor Block', 6, 420, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5513, 'Google Dash', 6, 421, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5514, 'ECMA Dart', 6, 421, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5515, 'Dart (language)', 6, 421, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5516, 'Dart programming language', 6, 421, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5517, 'Dart language', 6, 421, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5518, 'DartLang', 6, 421, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5519, 'ECMA-408', 6, 421, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5520, 'Google Dart', 6, 421, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5521, 'Fabos', 6, 422, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5522, 'The GNU operating system', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5523, 'GNU/DOS', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5524, 'GNU System', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5525, 'GNU Operating System', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5526, 'The GNU system', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5527, 'GNU OS', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5528, 'GNU system', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5529, 'GNU''s Not Unix', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5530, 'GNU operating system', 6, 423, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5531, 'I5os', 6, 424, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5532, 'IBM OS/400', 6, 424, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5534, 'IBM i5/OS', 6, 424, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5535, 'I on Power', 6, 424, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5536, 'IBM i on Power', 6, 424, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5538, 'I5/OS', 6, 424, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5539, 'IBM I5/OS', 6, 424, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5540, 'I-OS', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5541, 'OS X iPhone', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5542, 'IPhoneOS', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5543, 'IPhone Operating System', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5544, 'IPhone os', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5545, 'Mac OS X (iPhone)', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5546, 'IOS Apple', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5547, 'Ipod touch os', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5548, 'IPod Touch OS', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5549, 'IPhone OS', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5550, 'Apple iPhone OS', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5551, 'OS X Mobile', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5552, 'IOS (Apple Inc.)', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5553, 'Multitasking (iOS)', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5554, 'Apple iOS', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5555, 'Iphone os', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5556, 'IPhone operating system', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5557, 'AppleiOS', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5558, 'IOS (Apple)', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5559, 'IOS (operating system)', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5560, 'Ios (Apple)', 6, 425, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5561, 'Linux (operating system)', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5562, 'LINUX', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5563, 'Linuces', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5564, 'GNU/Linux/X11', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5565, 'LinuX', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5566, 'Linux-based GNU system', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5567, 'Gnu/Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5568, 'Linux+GNU', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5569, 'Linux desktop', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5570, 'Lienucks', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5571, 'GNU-Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5572, 'Linux/GNU', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5573, 'Desktop GNU/Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5574, 'Desktop Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5575, 'Linux Powered System', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5576, 'Linux/gnu', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5577, 'Linux server', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5578, 'GNU-linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5579, 'GNU/Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5580, 'Linux box', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5581, 'GNULinux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5582, 'Lynux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5583, 'Linux OS', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5584, 'Linices', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5585, 'Linux-based GNU systems', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5586, 'GNU/Linux/X', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5587, 'Desktop linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5588, 'GNU–Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5589, 'Gnu/linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5590, 'Linux on the desktop', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5591, 'GNU+Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5592, 'GNU Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5593, 'Linux (GNU/Linux)', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5594, 'Lineux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5595, 'Linux/X11', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5596, 'Linix', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5597, 'Linux operating system', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5598, 'Linux/X', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5599, 'BlackRhino GNU/Linux', 6, 576, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5600, 'Centos', 6, 427, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5601, 'CentOs', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5602, 'Centos7', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5603, 'Centos Stream', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5604, 'CentOS Linux', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5605, 'Community Enterprise Operating System', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5606, 'CAOS Linux', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5607, 'Cent OS', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5608, 'CentOS Stream', 6, 427, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5609, 'CheckPoint INSPECT Code', 6, 428, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5610, 'VPN-1', 6, 428, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5611, 'FireWall-1', 6, 428, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5612, 'VPN-1 Power', 6, 428, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5613, 'FireWall-1/VPN-1', 6, 428, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5615, 'Debian GNU/Linux', 6, 429, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5616, 'Debian Sid', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5617, 'Debian GNU Hurd', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5618, 'Debian Unstable', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5619, 'Debian GNU/kFreeBSD', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5620, 'Debian/sid', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5621, 'Debian GNU/FreeBSD', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5622, 'Debian Live', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5623, 'Embedded Debian', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5624, 'Debian Project', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5625, 'Debian stable', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5626, 'Kfreebsd-i386', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5627, 'Debian Multimedia Project', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5628, 'Debian repository', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5629, 'Debian GNU', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5630, 'Sid (Debian)', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5631, 'Debian LTS', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5632, 'GNU/Debian', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5633, 'Kfreebsd-amd64', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5634, 'Debian gnu/kfreebsd', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5635, 'Debian OS', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5636, 'Embedian', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5637, 'KFreeBSD', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5638, 'Debian Manifesto', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5639, 'Debian Hurd', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5640, 'Debian GNU/Hurd', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5641, 'Debian (operating system)', 6, 429, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5643, 'Juniper JUNOS', 6, 430, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5644, 'Juniper OS', 6, 430, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5645, 'JUNOS', 6, 430, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5646, 'Juniper Junos', 6, 430, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5647, 'Junos SDK', 6, 430, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5648, 'Junos', 6, 430, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5649, 'OpenSuSE', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5650, 'SUSE Linux Professional', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5651, 'OpenSUSE 11', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5652, 'OpenSUSE Linux', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5653, 'Factory (openSUSE)', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5654, 'Factory (software)', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5655, 'OpenSuSe', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5656, 'Tumbleweed (software)', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5657, 'OpenSUSE Tumbleweed', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5658, 'Open SUSE', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5660, 'Tumbleweed (operating system)', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5661, 'OPENSUSE', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5662, 'SUSEWatcher', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5663, 'Opensuse', 6, 431, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5664, 'Unbreakable Enterprise Kernel', 6, 432, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5665, 'Oracle Unbreakable Enterprise Kernel', 6, 432, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5666, 'Unbreakable Linux', 6, 432, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5667, 'Oracle linux', 6, 432, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5668, 'Unbreakable Linux Network', 6, 432, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5669, 'Red Hat Compatible Kernel', 6, 432, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5670, 'Oracle Unbreakable Linux', 6, 432, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5674, 'Red Hat Global Desktop', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5675, 'RedHat enterprise linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5676, 'Red hat enterprise linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5677, 'RedHat Enterprise Linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5678, 'Redhat Enterprise Linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5679, 'Redhat enterprise linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5680, 'Rhel', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5681, 'Red hat enterprise', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5682, 'Red Hat enterprise linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5683, 'Rhel4', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5684, 'Red Hat Global Desktop Linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5685, 'Red Hat Enterprise Linux (RHEL)', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5686, 'Red hat Enterprise Linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5687, 'Red Hat Enterprise Linux 3', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5688, 'Enterprise Linux', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5689, 'RedPatch', 6, 434, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5690, 'SUSE LINUX Enterprise Server', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5691, 'SuSE SLES', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5692, 'SLES (software)', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5693, 'SuSE Linux Enterprise Server', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5694, 'SUSE Linux Enterprise', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5695, 'SLES (operating system)', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5696, 'SuSE Enterprise Linux', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5697, 'SUSE SLES', 6, 435, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5698, 'Ubunt', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5699, 'Ubuntu (GNU/Linux distribution)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5700, 'Ubuntu Server Edition', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5701, 'Ubuntu Light', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5702, 'Ubuntu (linux)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5703, 'Ubuntu (Operating system)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5704, 'Ubuntulinux', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5705, 'Uboonto Linux', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5706, 'Easyubuntu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5707, 'Ubuntu (os)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5708, 'Ubuntu LTS', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5709, 'Linux ubuntu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5710, 'Ubuntu (software)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5711, 'Ubuntu desktop', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5712, 'Ubuntu (OS)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5713, 'Ubuntu (Operating System)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5714, 'Ubuntu operating system', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5715, 'Ubufox', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5716, 'Ubunto Linux', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5717, 'Ubuntu (O.S.)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5718, 'Ubuntu Business Desktop Remix', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5719, 'Ubuntu GNU/Linux', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5720, 'Ubuntu os', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5721, 'Ubuntu Server', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5722, 'Ubuntu (distribution)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5723, 'Ubuntu (operating system)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5724, 'Ubanto', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5725, 'Unbuntu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5726, 'Uboonto', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5727, 'Ubuntu Linux (operating system based on Debian)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5728, 'EasyUbuntu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5729, 'Ubuntu Linux os', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5730, 'Portable Ubuntu for Windows', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5731, 'Ubuntu distro', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5732, 'Ubuntu server', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5733, 'Ubuntu distribution', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5734, 'Ubuntu linux os', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5735, 'Ubuntu (Linux)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5736, 'Ubuntu (Linux distribution)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5737, 'Ubutnu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5738, 'Ubunut', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5739, 'Ubuntu Desktop', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5740, 'Ubuntu Linux Server Edition', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5741, 'Ubuntu Universe', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5742, 'Unbutu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5743, 'Ubuntu Foundation', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5744, 'Linux Ubuntu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5745, 'Universe ubuntu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5746, 'Ubuntu operatng system', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5747, 'Ubuntu (linux distribution)', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5748, 'Ubununtu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5749, 'Ubuntu Linux distribution', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5750, 'Easy Ubuntu', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5751, 'Ubunto', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5752, 'Ubuntu Enterprise Cloud', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5753, 'ShipIt', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5754, 'Ubuntu linux', 6, 436, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5755, 'Ubuntu Linux operating system', 6, 436, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5757, 'Ubuntu OS', 6, 436, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5758, 'Ubuntu Project', 6, 436, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5759, 'Ubuntu GNU/linux', 6, 436, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5760, 'Linux on zSeries', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5761, 'LinuxONE', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5762, 'ZLinux', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5763, 'Linux for zSeries', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5764, 'Linux on System z9', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5765, 'Linux on mainframe', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5766, 'S390x', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5767, 'Linux/390', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5768, 'IBM LinuxONE', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5769, 'Linux for mainframe', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5770, 'Linux on z Systems', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5771, 'Linux on System z', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5772, 'Linux on Z Systems', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5773, 'Linux for mainframes', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5774, 'Linux on zseries', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5775, 'Linux on mainframes', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5776, 'Mainframe Linux', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5777, 'Linux on z', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5778, 'Z/Linux', 6, 437, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5779, 'Apple OS X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5780, 'Marklar project', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5781, 'OS/X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5782, 'Max os x', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5783, 'Mac OS X 10', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5784, 'OS-X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5785, 'Mac os 10', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5786, 'Mac osx', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5787, 'MacOS X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5788, 'Macintosh OSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5789, 'Macos', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5790, 'Mac OSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5791, 'MacOSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5792, 'Macosx', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5793, 'Apple Macintosh OSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5794, 'Mac OS/OS X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5795, 'Macintosh OS-X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5796, 'Os x', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5797, 'Mac OS-X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5798, 'MacOS/X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5799, 'Mac Os X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5800, 'MAC OS X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5801, 'MacintoshOSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5802, 'Apple Macintosh OS X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5803, 'Os ten', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5804, 'Mac OS/X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5805, 'Osx', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5806, 'IBSD', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5807, 'Apple macOS', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5808, 'OSx', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5809, 'Mac os ten', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5810, 'OS X (operating system)', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5811, 'MacOs', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5812, 'Apple Mac OSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5813, 'Macos x', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5814, 'MAC OSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5815, 'Apple OSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5816, 'Apple Mac OS X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5817, 'Macintosh OS X', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5818, 'MOSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5819, 'Mac os x', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5820, 'Apple MacOSX', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5821, 'MacOS 10', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5822, 'Apple os x', 6, 438, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5823, 'OSX', 6, 438, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5824, 'Mac OS 10', 6, 438, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5825, 'Mac OS X', 6, 438, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5826, 'OS X', 6, 438, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5827, 'MSP (operating system)', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5828, 'MVS/ESA', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5829, 'OS/MVS', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5830, 'MVS Operating System', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5831, 'Data Facility Product', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5832, 'MVS/XA', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5833, 'MVS/370', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5834, 'Fujitsu MSP', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5835, 'OS/VS2 (MVS)', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5836, 'Hitachi VOS3', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5837, 'MVS/SP', 6, 577, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5838, 'Multiple Virtual Storage', 6, 577, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5839, 'MVS|OS/390', 6, 440, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5840, 'ZOS', 6, 441, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5841, 'IBM z/OS', 6, 441, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5842, 'Virtual Memory System', 6, 442, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5843, 'VAX/VMS', 6, 442, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5844, 'Open vms', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5845, 'VMS operating system', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5846, 'OpenVMS 7.2', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5847, 'DECwindows', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5848, 'VMS (operating system)', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5849, 'VAX-VMS', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5850, 'DEC VMS', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5851, 'DECWindows', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5852, 'Vax/vms', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5853, 'Open VMS', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5854, 'Openvms', 6, 442, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5855, 'OS/2 Warp', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5856, 'Win-OS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5857, 'DOS/286 (OS/2)', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5858, 'NEWDOS (OS/2)', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5859, 'Microsoft Betriebssystem/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5860, 'Os2 warp', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5861, 'OS/2 Warp 3', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5862, 'OS/2 Warp 3J', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5863, 'Warp 3', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5864, 'IBM BS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5865, 'BS/2 1.1', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5866, 'Os2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5867, 'OS/2 1.21', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5868, 'BS/2 1.3', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5869, 'Advanced DOS', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5870, 'OS2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5871, 'BS/2 1.0', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5872, 'WINOS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5873, 'OS/2 Warp 4.5', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5874, 'IBM OS2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5875, 'OS/2 Special Edition for Windows', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5876, 'OS/2 2.1', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5877, 'OS/2 Warp 4', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5878, 'OS/2 1.3', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5879, 'WinOS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5880, 'OS/2 1.0', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5881, 'Warp Server', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5882, 'Microsoft OS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5883, 'WIN-OS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5884, 'OS/2 Warp Connect', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5885, 'Microsoft Operating System/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5886, 'IBM OS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5887, 'OS/2 for Windows', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5888, 'OS/2 2.0', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5889, 'IBM Operating System/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5890, 'OS 2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5891, 'Betriebssystem/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5892, 'DOS 5 (OS/2)', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5893, 'Microsoft BS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5894, 'IBM Betriebssystem/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5895, 'DOS 286 (OS/2)', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5896, 'OS/2 API', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5897, 'OS/2 1.1', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5898, 'BS/2 1.2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5899, 'Os/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5900, 'BS/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5901, 'CP/DOS', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5902, 'ADOS (OS/2)', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5903, 'OS/2 1.2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5904, '0S/2', 6, 443, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5905, 'Operating System/2', 6, 443, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5906, 'Unixes', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5907, 'UNIX operating system', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5908, 'UNIX systems', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5909, 'Unix operating system', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5910, 'Truly Unix', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5911, 'UNIX system', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5912, 'Unix box', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5913, 'Unix system', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5914, 'Traditional Unix', 6, 578, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5915, 'UNIX', 6, 578, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5916, 'Advanced IBM UNIX', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5917, 'IBM-RT/AIX', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5918, 'IBM AIX (operating system)', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5919, 'Object Data Manager', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5920, 'AIX (operating system)', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5921, 'Aix os', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5922, 'IBM System AIX', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5923, 'Ibm lum', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5924, 'AIX for Apple Network Server', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5925, 'IBM AIX/370', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5926, 'Advanced Interactive eXecutive', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5927, 'AIX/RT', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5928, 'AIX/370', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5929, 'AIXv3', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5930, 'IBM370/AIX', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5931, 'IBM AIX/PS2', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5932, 'VM/IX', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5933, 'IX/370', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5934, 'AIX for ANS', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5935, 'IBM AIX/RT', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5936, 'AIX Operating System', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5937, 'AIX operating system', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5938, 'AIX for Apple Network Servers', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5939, 'IBM AIX/390', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5940, 'AIX/PS2', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5941, 'AIX/390', 6, 445, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5943, 'BSD operating system', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5944, 'Berkeley software distribution', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5945, '4.4BSD-Lite', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5946, 'Vmunix', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5947, 'BSD Unices', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5948, 'HPBSD', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5949, '4.4BSD-Encumbered', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5950, 'Berkeley UNIX', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5951, 'Berkley Software Distribution', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5952, 'Net/1', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5953, 'Berkeley UNIX 4.3BSD', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5954, 'BSD-based', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5955, 'Bsdgames', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5956, 'Net/2', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5957, 'Bsd', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5958, '*BSD', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5960, 'BSD (operating system)', 6, 579, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5962, 'BSD UNIX', 6, 579, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5965, 'TrustedBSD', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5966, 'Freebsd', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5967, 'FBSD', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5968, 'Free BSD', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5969, 'FreeBSD 8', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5970, 'NanoBSD', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5971, 'Linuxulator', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5972, 'FreeBSD Project', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5973, 'FREEBSD', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5974, 'FreeBSD kernel', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5975, 'FreeBSD 5.0', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5976, 'Free bsd', 6, 447, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5978, 'Sun os', 6, 448, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5979, 'SunOS Unix', 6, 448, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5980, 'Sunos', 6, 448, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5981, 'SunOS 4.1', 6, 448, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5982, 'Sun OS', 6, 448, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5984, 'Hewlett Packard Unix', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5985, 'HP/UX', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5986, 'Hewlett-Packard UniX', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5987, 'Hewlett Packard-Unix', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5988, 'Hpux', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5989, 'Hewlett-Packard Unix', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5991, 'Hewlett-Packard UNIX', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5992, 'Hewlett Packard UniX', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5993, 'Hewlett Packard UNIX', 6, 449, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5995, 'MS Windows', 6, 580, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5997, 'Apptimum', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5998, 'Windows Operating System', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (5999, 'Windows OS', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6000, 'Windows 365', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6001, 'Windows the operating system', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6002, 'Windows (Operating System)', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6003, 'WINDOWS', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6004, 'Windows (OS)', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6005, 'Microsoft windows', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6006, 'MS-Windows', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6007, 'Windows operating system', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6009, 'Mswin', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6010, 'Microsoft windows os', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6011, 'MICROSOFT WINDOWS', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6012, 'Widnows', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6013, 'Windwos', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6014, 'Windows (operating system)', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6015, 'MSWindows', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6016, 'Alliance OS', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6017, 'Windows®', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6019, 'Ms windows', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6020, 'Windows os', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6021, 'MsWindows', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6022, 'Windows (Operating system)', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6023, '32-bit Windows', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6024, 'Microsoft windows operating system', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6025, 'Windows Microsoft', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6026, 'Freedows OS', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6027, 'MSWin', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6028, 'Windows computers', 6, 580, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6042, 'Windows PC', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6052, 'PC Windows', 6, 451, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6063, 'Windows Storage Server', 6, 452, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6064, 'Microsoft Windows Server', 6, 452, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6065, 'Windows Web Edition', 6, 452, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6066, 'Windows server', 6, 452, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6067, 'Windows Server 200x', 6, 452, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6068, 'Windows Server 2022', 6, 452, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6069, 'Microsoft Windows server', 6, 452, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6070, 'Fedora Rawhide', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6071, 'Linux fedora', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6072, 'Fedora (OS)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6073, 'Fedora AOS', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6074, 'Fedora Extras', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6075, 'Fedora (GNU/Linux distribution)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6076, 'Fedora Core Linux', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6077, 'Fedora Workstation', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6078, 'Fedora OS', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6079, 'Fedora (linux distribution)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6080, 'COPR (Fedora)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6081, 'Rawhide (operating system)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6082, 'Fedora linux', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6083, 'Fedora Robotics', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6084, 'Cool Other Package Repositories', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6085, 'Fedora Linux', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6086, 'Fedomatix', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6087, 'Fedora (Operating System)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6088, 'Rawhide (software)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6089, 'Eeedora', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6090, 'Fedora operating system', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6091, 'Fedora (software)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6092, 'Fedora Core', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6093, 'Fedora Cloud', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6094, 'Rawhide (computing)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6095, 'Fedora IoT', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6096, 'Fedora Linux Swap', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6097, 'Fedora (Linux)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6098, 'Fedora Modular Server', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6099, 'Fedora (Linux distribution)', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6100, 'Fedora CoreOS', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6101, 'Fedora 10', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6102, 'Fedora Silverblue', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6103, 'Fedora Atomic Host', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6104, 'Fedora spin', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6105, 'Fedora Server', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6106, 'EPEL', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6107, 'Fedora LXQt', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6108, 'Fedora core', 6, 453, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6109, 'Linux|Amazon Linux', 6, 454, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6111, 'Microsoft Exchange Server|Veeam Explorer', 5, 464, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6112, 'Data Transformation Service', 5, 466, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6113, 'DTS package', 5, 466, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6114, 'DTS Package', 5, 466, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6115, 'Data transformation service', 5, 466, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6116, 'DTS Packages', 5, 466, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6117, 'DTS Tasks', 5, 466, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6118, 'OLAP Services', 5, 468, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6119, 'ADOMD.NET', 5, 468, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6121, 'SSIS package', 5, 470, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6122, 'SSMS', 5, 471, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6123, 'SSMSE', 5, 471, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6124, 'Management studio', 5, 471, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6127, 'SQL Reporting Services', 5, 473, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6128, 'Sql server reporting services', 5, 473, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6129, 'Spatial Data Option', 5, 475, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6130, 'GeoRaster', 5, 475, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6131, 'Oracle Spatial', 5, 475, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6133, 'Sqlplus', 5, 478, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6135, 'Run-time library', 7, 482, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6136, '.NET Framework|log4net', 7, 483, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6137, 'Windows Communications Foundation', 7, 485, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6138, 'Indigo Application Server', 7, 485, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6139, 'Windows communication foundation', 7, 485, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6141, 'Windows Communication Framework', 7, 485, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6142, 'Indigo (messaging system)', 7, 485, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6143, 'Microsoft Indigo', 7, 485, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6144, 'WF4', 7, 486, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6145, 'Workflow Foundation', 7, 486, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6146, 'Windows Overflow Foundation', 7, 486, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6147, 'Windows.Forms', 7, 487, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6148, 'Winforms', 7, 487, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6149, 'Windows Forms control', 7, 487, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6150, 'WindowsForms', 7, 487, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6151, 'Windows Forms application', 7, 487, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6153, 'ActiveX Data Object', 7, 488, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6154, 'Active X Data Objects', 7, 488, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6155, 'Msado', 7, 488, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6156, 'Jboss seam', 7, 492, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6157, 'JBoss SEAM', 7, 492, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6158, 'Seam framework', 7, 492, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6159, 'JBoss application server', 7, 493, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6161, 'JBoss AS', 7, 493, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6162, 'Jbossas', 7, 493, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6163, 'Jboss as', 7, 493, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6164, 'Jboss', 7, 493, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6165, 'JBossWS', 7, 493, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6168, 'ABAP Objects', 7, 496, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6169, 'SAP ABAP', 7, 496, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6170, 'Abap Objects', 7, 496, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6171, 'ABAP/4', 7, 496, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6172, 'Abap IV', 7, 496, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6173, 'Abap', 7, 496, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6174, '.NET SDK', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6175, 'Dot NET Framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6176, 'Microsoft net framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6177, 'Net Framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6178, 'Dotnet framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6179, 'Netfx', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6180, 'Dot Net Framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6181, 'Dot net framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6182, '.NET Enterprise Server', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6183, '.NET framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6184, 'NetFX', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6185, 'Microsoft .NET framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6186, 'Microsoft''s .NET Framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6187, '.NET Server', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6188, '.Net Framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6190, '.NET Services', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6191, '.NET platform', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6192, '.Net (programming language)', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6193, 'Microsoft .NET Framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6194, '.net framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6195, 'NET Framework', 10, 497, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6196, 'Active Directory Services', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6197, 'Likewise Open', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6198, 'Active directory object', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6199, 'AD/LDS', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6200, 'Active Directory Schema', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6201, 'AD DS', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6202, 'Microsoft Active Directory', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6203, 'NT Directory Service', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6204, 'Active Directory Site', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6205, 'ActiveDirectory', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6206, 'Active directory authentication module', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6207, 'Active Directory Domain Services', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6208, 'Active directory objects', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6209, 'Active directory', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6210, 'Micorsoft Active Directory', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6211, 'Active Directory Service Interfaces', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6212, 'Active Directory Service', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6213, 'Active Directory Directory Services', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6214, 'Microsoft Active Direcory', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6215, 'Domain tree', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6216, 'Active Directory Application Mode', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6217, 'AD LDS', 10, 498, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6218, 'ASP programming language', 9, 592, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6220, 'ASP3', 9, 592, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6221, 'Apache::ASP', 9, 592, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6222, 'Active server pages', 9, 592, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6224, 'Asp Apache', 9, 592, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6225, 'Active X', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6226, 'ActiveX Control', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6227, 'Activex', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6228, 'ActiveX client', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6229, 'ActiveX Object', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6230, 'ActiveX control', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6231, 'ActiveX component', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6232, 'MFC ActiveX Control', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6233, 'Active x', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6234, 'ActiveX server', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6235, 'Active-x', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6236, 'Activex control', 10, 500, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6237, 'Apache Cordoba', 10, 501, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6238, 'Apache Callback', 10, 501, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6239, 'Customer Information Control System', 10, 502, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6240, 'CICS Transaction Server', 10, 502, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6241, 'Docker software', 10, 503, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6242, 'Docker (Linux container engine)', 10, 503, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6243, 'Libcontainer', 10, 503, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6244, 'Dockerfile', 10, 503, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6245, 'Docker Toolbox', 10, 503, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6246, 'Shockwave Flash', 10, 504, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6247, 'UIRA', 10, 504, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6248, 'Flash MX', 10, 504, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6249, 'Flash CS3', 10, 504, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6250, 'Futuresplash', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6251, 'Adobe Flash CS4', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6252, 'Flash 8', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6253, 'Flash mx 2004', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6254, 'Flash (software)', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6255, 'FutureSplash', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6256, 'Macromedia Flash Remoting', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6257, 'Macromedia flash', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6258, 'Flash programming', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6259, 'Adobe Flash animation', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6260, 'Flash 6', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6261, 'Adobe flash', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6262, 'Adobe Flash Platform', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6263, 'Macromedia Flash Professional 9', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6264, 'F4L', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6265, 'Flash components', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6266, 'Flash 10', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6267, 'F4l', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6268, 'Flash 9', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6269, 'Qflash', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6270, 'Flash mx', 10, 504, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6273, 'NodeJs', 10, 507, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6274, 'Node js', 10, 507, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6275, 'Node.JS', 10, 507, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6277, 'Iojs', 10, 507, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6278, 'Io.js', 10, 507, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6279, 'NodeJS', 10, 507, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6280, 'Action Web Service', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6281, 'Rubyonrails', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6282, 'Ruby on Яails', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6283, 'Ruby on rails', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6284, 'Action Mailer', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6285, 'Ruby on Iaails', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6286, 'Rails framework', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6287, 'Ruby on Rails (web framework)', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6288, 'Ruby On Rails', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6289, 'Ruby-on-rails', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6290, 'Ruby with rails', 10, 508, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6293, 'Application management', 1, 511, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6294, 'Application life-cycle management', 1, 511, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6295, 'Integrated application lifecycle management', 1, 511, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6296, 'Software Lifecycle Management', 1, 511, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6297, 'Assembly Language', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6298, 'Assembler (computer programming)', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6299, 'Meta-assembler', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6300, 'Op code mnemonic', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6301, 'Cross-assembler', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6302, 'Assembly languages', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6303, 'Programming language/assembly', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6304, 'Assembly language assembler', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6305, 'Two-pass assembler', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6306, 'Cross assembler', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6307, 'Assembly code', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6308, 'Assembler code', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6309, 'Assembler language', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6310, 'Assembler program', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6311, 'Assembly language macros', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6312, 'Mnemonics (assembler)', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6313, 'ARM Assembly Language Programming', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6314, 'Extended mnemonics', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6315, 'Mnemonics (assembly language)', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6316, 'Symbolic machine code', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6317, 'Assembly programming language', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6318, 'Assembly Programming System', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6319, 'Assembler (programming language)', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6320, 'Symbolic Machine Code', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6321, 'Mnemonic (assembly language)', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6322, 'Macro assembler', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6323, 'Assembler (computing)', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6324, 'Assembly file', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6325, 'Mnemonic (assembler)', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6326, 'Assember language', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6327, 'Assembler for an assembly language', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6328, 'Assembler programming', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6329, 'Macroassembler', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6330, 'Assembler directive', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6331, 'Assembly programming', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6332, 'Opcode mnemonics', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6333, 'Assembly time', 1, 512, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6335, 'Cgi script', 1, 515, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6336, 'CGI script', 1, 515, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6337, 'Common gateway interface', 1, 515, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6340, 'Interface ID', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6341, 'ActiveX application', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6342, 'COM/ActiveX', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6343, 'Multi Threaded Apartment', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6344, 'COM object', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6345, 'Neutral Apartment', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6346, 'COM server', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6347, 'Component object model', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6348, 'Single-Threaded Apartment', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6349, 'ActiveX script', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6350, 'Single Threaded Apartment', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6351, 'COM and OLE', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6352, 'Microsoft Component Object Model', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6353, 'Single-threaded apartment', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6355, 'Apartment model', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6356, 'Multi-Threaded Apartment', 1, 516, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6358, 'Portable Object Adapter', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6359, 'Object Management Architecture', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6360, 'Portable interceptors', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6361, 'OMG IDL', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6362, 'Common object request broker architecture', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6363, 'VMCID', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6364, 'Incarnation (CORBA)', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6366, 'Corbaloc', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6367, 'CORBA Component Model', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6368, 'Servant (CORBA)', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6369, 'Corba', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6370, 'CORBA architecture', 1, 517, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6373, 'DDBMS', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6374, 'Enterprise database management', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6375, 'Distributed data base', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6376, 'Database management system', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6377, 'Database Management', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6378, 'Database query', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6379, 'DBMSs', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6380, 'Research database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6381, 'Database management software', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6382, 'Database (computing)', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6383, 'Distributed Database Management System', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6384, 'Database instance', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6385, 'Database management program', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6386, 'DataBase', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6387, 'Library database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6388, 'Database system', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6389, 'Database management systems', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6390, 'Database/Applications', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6391, 'Data Base', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6392, 'Distributed database management system', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6393, 'Database Management System', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6394, 'Database manager', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6395, 'Database programming', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6396, 'Database software', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6397, 'Public database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6398, 'Distributed databases', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6399, 'Dbms', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6400, 'Forensic database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6401, 'Data base management system', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6402, 'Databases', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6403, 'Electronic data processing database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6404, 'Database management', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6405, 'Computer database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6406, 'Data-base', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6407, 'Data bases', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6408, 'DBMS', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6409, 'Computer Databases', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6410, 'Database System', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6411, 'Database development', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6412, 'Numeric database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6413, 'DB file', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6414, 'Scientific database', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6415, 'Database Manager', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6416, 'Database systems', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6417, 'Database information system', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6418, 'Data base', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6419, 'D-base', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6420, 'Database backend', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6421, 'General-purpose DBMS', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6422, 'Public databases', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6423, 'Db management', 1, 520, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6424, 'EDI Translation Software', 1, 521, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6426, 'ANSI ASC X.12', 1, 521, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6427, 'X.12', 1, 521, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6428, 'Web-servers', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6429, 'Web Servers', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6430, 'Webserver', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6432, 'Www server', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6433, 'Web-server', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6434, 'HTTP web server', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6436, 'Web servers', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6437, 'WWW server', 1, 522, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6438, 'HTTP server', 1, 522, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6439, 'Jdom', 1, 523, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6440, 'Java object model', 1, 523, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6441, 'JSR 102', 1, 523, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6442, 'Java Document Object Model', 1, 523, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6443, 'Ldap', 1, 524, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6444, 'Eldap', 1, 524, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6445, 'LDAPS', 1, 524, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6447, 'Database driver', 1, 525, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6448, 'ODBC driver', 1, 525, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6449, 'ODBC Driver', 1, 525, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6450, 'Open DataBase Connectivity', 1, 525, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6451, 'OBDC', 1, 525, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6452, 'Odbc', 1, 525, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6453, 'Open database connectivity', 1, 525, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6456, 'Order management', 1, 526, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6459, 'REST API', 1, 529, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6462, 'REST Architecture', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6463, 'REST-SST', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6464, 'RESTful web service', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6465, 'REST interface', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6466, 'RESTFul', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6467, 'RESTfully', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6468, 'Rest interface', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6469, 'Restful interface', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6470, 'RESTful API', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6471, 'Restful web service', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6472, 'Restful', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6473, 'Restful application', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6474, 'RESTful', 1, 529, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6475, 'SOA Lifecycle', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6476, 'SOA environment', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6477, 'Service Oriented Architecture', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6478, 'Endpoint computing', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6479, 'Service orientated architecture', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6480, 'Soba (computing)', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6481, 'Broker (service-oriented architecture)', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6483, 'Service-oriented business application', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6484, 'Service Oriented Computing', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6485, 'Service-oriented Architecture', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6486, 'Service-oriented architectures', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6487, 'Service oriented architecture', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6488, 'Service Orientated Architecture', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6489, 'Service-orientated architecture', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6490, 'Service-Orientated Architecture', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6491, 'Service Oriented Architectures', 1, 530, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6493, 'SOAP request', 1, 531, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6494, 'SOAP (protocol)', 1, 531, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6495, 'Soap service', 1, 531, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6496, 'Structured Query Language', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6497, 'SQL script', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6498, 'ANSI SQL', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6499, 'SQL Servers', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6500, 'Procedural SQL', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6501, 'Structured query language', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6502, 'SQL language', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6503, 'Distributed SQL processing', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6504, 'SQL programming language', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6505, 'Transaction Control Language', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6506, 'SEQUEL', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6507, 'SQL (programming language)', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6508, 'SQL database', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6509, 'Structure Query Language', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6510, 'Sql', 1, 572, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6511, 'Yaml', 1, 533, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6512, 'Yet Another Markup Language', 1, 533, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6513, 'YAML Ain''t Markup Language', 1, 533, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6514, 'Model', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6515, 'Model-view', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6516, 'Model view controller triad', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6517, 'controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6518, 'view', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6519, 'Model-template-view', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6520, 'Model–View–Controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6521, 'Model View Controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6522, 'MVC controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6523, 'View (MVC)', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6524, 'Model-View-Controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6525, 'Controller (MVC)', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6526, 'MVC Design Pattern', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6527, 'MVC architecture', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6528, 'Model-view controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6529, 'Model-Template-View', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6530, 'MVC Pattern', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6531, 'Model-view-controller design pattern', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6532, 'Model-View-Controller paradigm', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6533, 'Model view controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6534, 'Model/View/Controller', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6535, 'MVC view', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6536, 'MVC model', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6537, 'Model (MVC)', 1, 574, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6538, 'Model-view-controller', 1, 574, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6539, 'Application server computing', 1, 535, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6541, 'Mobile App Server', 1, 535, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6542, 'Application servers', 1, 535, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6543, 'Enterprise application server', 1, 535, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6544, 'Java application server', 1, 535, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6545, 'Appserver', 1, 535, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6546, 'App server', 1, 535, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6547, 'Web application server', 1, 535, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6548, 'Cloud hosting', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6549, 'Cloud architecture', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6550, 'Cloud service', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6551, 'IoT Cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6552, 'Cloud-hosted', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6553, 'Cloud vendor', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6554, 'Cloud Provider Interface', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6555, 'Cloud transformation', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6556, 'XaaS', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6557, 'Cloud computing platform', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6558, 'Cloud computing vendor', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6559, 'Cloud Computing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6560, 'Cloud-based', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6561, 'Cloud provider', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6562, 'Could computing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6563, 'Cloud computing provider', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6564, 'Computing cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6565, 'Computing in the cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6566, 'Communication as a service', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6567, 'Cloud infrastructure', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6568, 'Hybrid cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6569, 'Private cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6570, 'Cloud Technology', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6571, 'Cloud client', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6572, 'Cloud vendors', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6573, 'Cloud networking', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6574, 'Cloud Hosting', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6575, 'Remote computing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6576, 'Private Cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6577, 'Computing-in-the-cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6578, 'Cloud hardware', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6579, 'Cloud computer', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6580, 'Cloud technology', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6581, 'Public Cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6582, 'Cloud processing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6583, 'Burst computing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6584, 'Member Only Cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6585, 'Content Marketing Cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6586, 'Cloud computing user', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6587, 'Cloud Applications', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6588, 'Online software', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6589, 'Cloud Software', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6590, 'Cloud services provider', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6591, 'Computer cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6592, 'Cloud-computing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6593, 'Cloud distribution', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6594, 'Public cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6595, 'Cloud services', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6596, 'Cloud-based computing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6597, 'Cloud Service', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6598, 'Cloudware', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6599, 'EaaS', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6600, 'Cloud service provider', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6601, 'Cloud software', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6602, 'Cloud user', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6603, 'Cloud (computing)', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6604, 'Cross-Platform Hybrid Cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6605, 'Cloud Infrastructure', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6606, 'Cloud (computers)', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6607, 'Hybrid Cloud', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6608, 'Cloud standards', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6609, 'Cloud users', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6610, 'Cloud clients', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6611, 'Cloud computing platforms', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6612, 'Enterprise Cloud Computing', 1, 536, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6613, 'Dynamic Provisioning Environment', 1, 538, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6615, 'Workgroup File server', 1, 541, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6616, 'Fileserver', 1, 541, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6617, 'File host', 1, 541, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6618, 'Storage server', 1, 541, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6620, 'Workgroup file server', 1, 541, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6621, 'File Server Solution', 1, 541, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6622, 'Nominal ledgers', 1, 542, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6624, 'Generalledger', 1, 542, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6625, 'General ledgers', 1, 542, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6626, 'Nominal ledger', 1, 542, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6635, 'HTTP daemon', 1, 522, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6641, 'IXP', 1, 546, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6642, 'Internet Exchange', 1, 546, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6643, 'Internet exchange', 1, 546, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6644, 'Internet Exchange Point', 1, 546, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6645, 'IMAP server', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6646, 'DIMAP', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6647, 'Interactive Mail Access Protocol', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6648, 'IMAP4', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6649, 'IMAP3', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6650, 'Imapd', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6651, 'IMAPv4', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6652, 'Imaps', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6653, 'IMAPS', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6654, 'Internet message access protocol', 1, 547, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6656, 'Javascript Object Notation', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6657, 'Json', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6658, 'JSONNP', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6659, 'Internet JSON', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6660, 'JSON Schema', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6661, 'JSON5', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6662, 'I-JSON', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6663, 'HJSON', 1, 548, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6664, 'JavaScript Object Notation', 1, 548, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6665, 'Mainframe computers', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6666, 'Mainframe', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6667, 'Main frame', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6668, 'Big-iron', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6669, 'MainFrame', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6670, 'Mainframe computing', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6671, 'Mainframe Computer', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6672, 'Main frame computer', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6673, 'Mainframes', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6674, 'Big iron (computing)', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6675, 'Main Frame Computer', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6676, 'Main-frame', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6677, 'Mainframe server', 1, 552, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6679, 'Manufacturing execution systems', 1, 553, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6680, 'Manufacturing Execution Systems', 1, 553, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6682, 'Software as a secure service', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6683, 'Saasworld', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6684, 'Software as service', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6685, 'SasS', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6686, 'Software-As-A-Service', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6687, 'Software-as-a-service', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6688, 'OpenSaaS', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6689, 'Software plus services', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6690, 'Software-as-a-Service', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6691, 'Software As A Service', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6692, 'Software as a Service', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6693, 'Software as a sevice', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6694, 'Cloud application', 1, 556, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6695, 'SaaSS', 1, 556, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6697, 'Storage area networks', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6698, 'Storage Area Networks', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6699, 'Storage network', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6700, 'Distributed storage area networks', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6702, 'Sanoip', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6703, 'SANoIP', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6704, 'Storage area networking', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6705, 'San server', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6706, 'SAN (computing)', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6707, 'Storage Area Network(SAN)', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6708, 'Centralized storage area networks', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6709, 'Storage layer', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6711, 'Storage networking', 1, 557, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6712, 'Online desktop', 1, 560, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6713, 'WebTop', 1, 560, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6714, 'Cloud desktop', 1, 560, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6716, 'Web Desktop', 1, 560, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6717, 'Anonymous Surfing', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6718, 'Proxy IP address', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6719, 'Application layer proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6720, 'Caching proxy server', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6721, 'Translation proxy server', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6722, 'Internet proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6723, 'Anonymous server', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6724, 'Anonymous Web surfing', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6725, 'Proxyserver', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6726, 'Web Proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6727, 'Proxy Bouncing', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6728, 'Proxifier', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6729, 'Http proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6730, 'Proxy chaining', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6731, 'Suffix proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6732, 'Anonymity network', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6733, 'Application-layer proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6734, 'CGI proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6735, 'HTTP proxy server', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6736, 'Free proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6737, 'Proxy Website', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6738, 'Intercepting proxy server', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6739, 'HTTPS Proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6740, 'Proxy chain', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6741, 'Proxy IP', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6742, 'Proxy gateway', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6743, 'Web proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6745, 'Web proxies', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6746, 'Proxy servers', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6747, 'Proxy bypass', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6748, 'Anonymous proxy server', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6749, 'Bypass (computing)', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6750, 'Residential proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6751, 'Transparent proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6752, 'Myspace proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6753, 'Split proxies', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6754, 'Forward proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6755, 'P roxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6756, 'HTTP proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6757, 'Proxy Sites', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6758, 'SSL Proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6759, 'Anonymous Web proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6760, 'Server proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6761, 'Tproxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6762, 'Circumventor', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6763, 'Caching proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6764, 'Secure & Anonymous Internet Surfing', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6765, 'HTTP proxying', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6766, 'Proxy filter', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6767, 'Anonymous web proxy', 1, 561, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6768, 'Utility (computer science)', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6769, 'Software utility', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6770, 'Utility program', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6771, 'Utility (software)', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6772, 'Software utilities', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6773, 'Utility Programs', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6774, 'Utility (computing)', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6775, 'Utility Software', 1, 562, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6776, 'NetScaler', 3, 563, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6777, 'Netscaler', 3, 563, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6778, 'Oracle virtual machine', 3, 567, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6780, 'ESX Server', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6781, 'VMware ESXi Server', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6782, 'VMware ESX Server 2.0', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6783, 'VMWare ESX Server', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6784, 'ESX Server 3i', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6785, 'VMware ESX Server 3.0', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6786, 'VMware ESX', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6787, 'VMware ESXi (software)', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6790, 'VMware ESX Server', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6791, 'ESXI', 3, 568, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6793, 'VMware GSX Server', 3, 569, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6794, 'GSX Server', 3, 569, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6795, 'VMWare Server', 3, 569, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6811, 'Structured Programming Facility', 2, 223, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6812, 'System Productivity Facility', 2, 223, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6813, 'Program Development Facility', 2, 223, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6814, 'Interactive System Productivity Facility', 2, 223, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (6974, 'Data Source Views', 2, 581, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7032, 'ISO 14882', 9, 583, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7050, 'Java Language Specification', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7057, 'Java language specification', 9, 584, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7119, 'OpenRsync', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7120, 'Openbsd', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7121, 'OpenCVS', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7122, 'Opencvs', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7123, 'Open bsd', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7124, 'OpenBSD project', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7125, 'Open BSD', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7126, 'OpenBSD Project', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7127, 'Obsd', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7128, 'Openrsync', 6, 590, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7129, 'VSE/SP', 6, 591, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7130, 'Z/VSE (operating system)', 6, 591, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7131, 'VSE/ESA', 6, 591, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7132, 'Z/VSE', 6, 591, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7140, 'ASP Hints', 9, 592, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7143, 'MSDOS', 6, 593, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7146, 'MS-DOS 1.51', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7147, 'Microsoft Arabic MS-DOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7148, 'HP MS-DOS 3.22R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7149, 'MS-DOS 3.31', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7150, 'MS-DOS 5.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7151, 'MS-DOS 3.3a', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7152, 'MS-DOS 3.3A', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7153, 'Ms-dos', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7154, 'TI MS-DOS 2.12', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7155, 'MS-DOS 3.30', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7156, 'MS-DOS 1.52', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7157, 'Ms-Dos', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7158, 'TeleVideo Personal Computer DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7159, 'MSN-DOS Prompt', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7160, 'MS-DOS 2.5', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7161, 'AST Premium Exec DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7162, 'Texas Instruments MS-DOS 2.12', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7163, 'MS-DOS 1.50', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7164, 'MS-DOS 1.20', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7165, 'Altos MS-DOS 2.11', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7166, 'Microsoft Hebrew MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7167, 'MS-DOS 3.22R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7168, 'MS-DOS 3.4', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7169, 'MSdos', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7170, 'HDOS (Microsoft)', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7171, 'MS-DOS 3.21R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7172, 'Microsoft MS-DOS 3.30A', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7173, 'Compaq MS-DOS 3.31', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7174, 'TeleVideo PC DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7175, 'AST Premium Exec MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7176, 'NCR-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7177, 'MS-DOS 7.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7178, 'Microsoft ADOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7179, 'MS-DOS 1.23', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7180, 'Hebrew MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7181, 'MS-DOS 2.25', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7182, 'MS-DOS 3.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7183, 'ADOS 5.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7184, 'Microsoft HDOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7185, 'MS-DOS 2.12', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7186, 'MS-DOS 2.11', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7187, 'MS-DOS Mobile', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7188, 'MS-DOS 2.10', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7189, 'Microsoft HDOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7190, 'MS-DOS 1.27', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7191, 'MS-DOS 5.01', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7192, 'MS-DOS 1.11', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7193, 'MS-DOS 8.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7194, 'Tandy MS-DOS 2.11R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7195, 'MS-DOS 6.x', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7196, 'MS-DOS 2.05', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7197, 'MS-DOS 3.30+', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7198, 'MS-DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7199, 'HDOS (MS-DOS)', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7200, 'MS/DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7201, 'MS-DOS 1.1', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7202, 'MS-DOS 2.50', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7203, 'Microsoft Arabic MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7204, 'MS-DOS 3.1', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7205, 'MS-DOS 1.14', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7206, 'MS-DOS 2.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7207, 'MS-DOS 3.3R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7208, 'TeleVideo Personal Computer DOS 2.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7209, 'ADOS (Microsoft)', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7210, 'MS-DOS 3.40', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7211, 'MS-DOS 2.13', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7212, 'TeleVideo PC DOS 2.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7213, 'Microsoft Arabic MS-DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7214, 'AST Premium Exec MS-DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7215, 'Access DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7216, 'MS-DOS 3.30a', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7217, 'MS-DOS 2.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7218, 'PC MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7219, 'MS-DOS 3.30A', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7220, 'TI MS-DOS 3.30R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7221, 'MS-DOS 6', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7222, 'MS-DOS 5', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7223, 'Microsoft MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7224, 'MS-DOS 1.2', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7225, 'MS-DOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7226, 'ADOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7227, 'Texas Instruments MS-DOS 3.3R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7228, 'AST MS-DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7229, 'Microsoft HDOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7230, 'TI MS-DOS 3.3R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7231, 'MS-DOS 4.00 (IBM-developed)', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7232, 'MS-DOS 1.22', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7233, 'MS-DOS 1.53', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7234, 'ADOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7235, 'MS-ROMDOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7236, 'MS-DOS 3.25', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7237, 'Hebrew MS-DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7238, 'MS-DOS 1.40', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7239, 'MS-DOS 3.30R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7240, 'AST Premium Exec DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7241, 'Texas Instruments MS-DOS 3.30R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7242, 'MS-DOS 1.25', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7243, 'MS-DOS 2.01', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7244, 'MS-DOS 1.26', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7245, 'MS-DOS 1.41', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7246, 'MS-DOS 1.29', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7247, 'TeleVideo Personal Computer DOS 2.11', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7248, 'MS-DOS 6.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7249, 'Microsoft MS-DOS 3.30a', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7250, 'TeleVideo PC DOS 2.11', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7251, 'SB-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7252, 'Microsoft Hebrew MS-DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7253, 'HDOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7254, 'Hewlett-Packard MS-DOS 3.22R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7255, 'MS-DOS 5.00A', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7256, 'MS-DOS 6.22', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7257, 'Microsoft ADOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7258, 'MS-DOS 3.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7259, 'MS-DOS 2.2', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7260, 'Hebrew MS-DOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7261, 'MS-DOS 1', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7262, 'COMPAQ-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7263, 'MS-DOS 3.21', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7264, 'MS-DOS 3.2', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7265, 'Microsoft MS-DOS 3.3A', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7266, 'MS-DOS 3.22', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7267, 'MS-DOS 6.21', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7268, 'MS-DOS 3.20', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7269, 'Microsoft ADOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7270, 'MS-DOS 1.30', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7271, 'MS-DOS 7.10', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7272, 'MS-DOS 3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7273, 'MS-DOS 4.01', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7274, 'Altos MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7275, 'Microsoft Hebrew MS-DOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7276, 'Arabic MS-DOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7277, 'MsDOS', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7278, 'MS-DOS 1.28', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7279, 'MS-DOS 2.20', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7280, 'MS-DOS 1.13', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7281, 'MS-DOS 1.24', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7282, 'HDOS 5.00', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7283, 'ADOS (MS-DOS)', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7284, 'MS-DOS 1.21', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7285, 'MS-DOS 2', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7286, 'HDOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7287, 'MS DOS Mobile', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7288, 'MS-DOS 6.2', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7289, 'MS-DOS 6.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7290, 'MS-DOS 2.11R', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7291, 'MS-DOS 1.12', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7292, 'MS-DOS 6.20', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7293, 'Arabic MS-DOS 3.3', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7294, 'Arabic MS-DOS 5.0', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7295, 'MS-DOS 4.0 (IBM-developed)', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7296, 'Microsoft MS-DOS 3.3a', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7297, 'MS-DOS 1.54', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7298, 'MS-DOS 3.10', 6, 593, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7335, 'XML comment', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7339, 'XML Specification', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7342, 'XML vocabulary', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7345, 'XML document', 9, 596, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7356, 'DOS/VS', 6, 597, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7357, 'IBM TOS/360', 6, 597, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7359, 'Tape Operating System', 6, 597, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7360, 'TOS/360', 6, 597, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7361, 'SSX/VSE', 6, 597, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7362, 'Z/TPF', 6, 598, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7363, 'TPF/ESA', 6, 598, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7394, 'T3Server', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7395, 'DbKona', 8, 600, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7401, 'Netbsd', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7402, 'NETBSD', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7403, 'Nbsd', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7404, 'The NetBSD Foundation', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7405, 'NBSD', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7406, 'Net bsd', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7407, 'Net BSD', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7408, 'NetBSD kernel', 6, 602, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7438, 'Web part packager', 2, 603, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7466, 'Arbor Software', 2, 607, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7486, 'credstash', 2, 612, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7487, 'Snyk', 2, 613, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7488, 'Akka', 2, 614, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7489, 'Akka (software)', 2, 614, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7490, 'Akka (toolkit)', 2, 614, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7491, 'Varnish', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7492, 'Varnish (Software)', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7493, 'Varinish (Software)', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7494, 'Varnish cache', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7495, 'Varnishd', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7496, 'Varnish cache server', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7497, 'Varnish-cache.org', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7498, 'Varnish (software)', 8, 615, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7499, 'Datadog', 10, 616, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7500, 'API', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7501, 'Application-programming interface', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7502, 'Application Programming Interfaces', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7503, 'Application-level interaction', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7504, 'Application Program Interface', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7505, 'Api', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7506, 'API documentation', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7507, 'API Documentation', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7508, 'Application Programming Interface (API)', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7509, 'Application program interface', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7510, 'Applications programming interface', 1, 617, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7512, 'Hazelcast', 10, 618, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7513, 'Nuxeo', 10, 620, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7514, 'ArangoDB', 2, 621, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7515, 'AQL (ArangoDB Query Language)', 2, 621, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7516, 'AvocadoDB', 2, 621, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7517, 'Eclipse Che', 2, 622, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7518, 'Codenvy', 2, 622, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7519, 'Amazon S3', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7520, 'Amazon Simple Storage Service', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7521, 'Simple Storage Service', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7522, 'S3.amazonaws.com', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7523, 'Amazon-s3', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7524, 'AWS S3', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7525, 'Applications that use S3 API', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7526, 'User:Leoinspace/Applications that use S3 API', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7527, 'Amazon S3 server', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7528, 'Amazon s3', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7530, 'S3', 2, 623, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7531, 'ClickHouse', 2, 624, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7532, 'Clickhouse', 2, 624, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7533, 'MinIO', 2, 625, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7534, 'Minio', 2, 625, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7535, 'Elasticsearch', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7536, 'Compass Project', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7537, 'ElasticSearch', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7538, 'Shay Banon', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7539, 'Logstash', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7540, 'Elastic search', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7541, 'Elastic Search', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7542, 'Elasticsearch BV', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7543, 'Elastic stack', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7544, 'ELK stack', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7545, 'es', 2, 626, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7546, 'XtraDB', 2, 627, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7547, 'Xtradb', 2, 627, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7548, 'Xtra DB', 2, 627, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7549, 'Percona XtraDB', 2, 627, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7550, 'Keycloak', 2, 628, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7551, 'JBoss SSO', 2, 628, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7552, 'PicketLink (software)', 2, 628, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7553, 'Grafana', 2, 629, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7554, 'Mattermost', 10, 630, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7555, 'Mattermost.com', 10, 630, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7556, 'Cloud IAM', 2, 632, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7557, 'Knative', 10, 633, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7558, 'Apache Cassandra', 2, 634, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7559, 'Apache cassandra', 2, 634, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7560, 'Cassandra (database)', 2, 634, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7561, 'Cassandra (software)', 2, 634, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7562, 'Cassandra software', 2, 634, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7563, 'Cassandra', 2, 634, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7564, 'Kubeflow', 10, 635, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7565, 'Qiskit', 2, 636, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7566, 'QISKit', 2, 636, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7567, 'Microsoft Azure', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7568, 'Windows Strata', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7569, 'Windows Cloud', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7570, 'Windows azure', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7571, 'Windows Azure Fabric Controller', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7572, 'Microsoft Windows Azure', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7573, 'Azure Services Platform', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7574, 'Windows Azure', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7575, 'Azure machine learning studio', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7576, 'Microsoft azure', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7577, 'Ethereum Blockchain as a Service', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7579, 'Azure', 2, 637, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7580, 'Strimzi', 10, 638, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7581, 'Sematext', 10, 639, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7582, 'Eclipse Ditto', 2, 641, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7583, 'Zadara', 2, 643, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7584, 'Zadara Storage', 2, 643, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7585, 'Istio', 2, 644, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7586, 'Vault', 2, 645, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7587, 'Vault overseer', 2, 645, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7588, 'Vault (disambiguation)', 2, 645, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7589, 'Vaults', 2, 645, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7590, 'Vault (software)', 2, 645, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7591, 'HashiCorp Vault', 2, 645, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7592, 'Apache Druid', 2, 646, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7593, 'Druid (open-source data store)', 2, 646, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7594, 'etcd', 2, 647, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7595, 'Traefik', 8, 648, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7596, 'IBM Cloud', 2, 649, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7597, 'Bluemix', 2, 649, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7598, 'IBM Bluemix', 2, 649, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7599, 'OpenWhisk', 2, 649, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7600, 'CockroachDB', 2, 651, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7601, 'Cockroach DB', 2, 651, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7602, 'User:Remote50/sandbox', 2, 651, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7603, 'Cockroachlabs', 2, 651, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7604, 'Cockroach Labs', 2, 651, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7605, 'Jaeger', 10, 652, NULL); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7606, 'NATURAL', 9, 653, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7607, 'NPL', 9, 653, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7608, 'Natural Programming Language', 9, 653, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7609, 'ACUCOBOL-GT', 9, 654, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7610, 'ACUCOBOL', 9, 654, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7611, 'AcuCOBOL', 9, 654, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7612, 'Ada', 9, 655, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7613, 'MIL-STD-1815', 9, 655, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7614, 'ISO/IEC 8652', 9, 655, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7615, 'Ada 95', 9, 655, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7616, 'Ada 83', 9, 655, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7617, 'Ada 80', 9, 655, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7618, 'Ada 2012', 9, 655, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7619, 'Adaptable DAta BAse System', 2, 656, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7620, 'ADABAS', 2, 656, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7621, 'Adabas database', 2, 656, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7622, 'Application Development System Online', 9, 657, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7623, 'ADS/O', 9, 657, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7624, 'ADS', 9, 657, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7625, 'ADS/Online', 9, 657, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7626, 'Ansible', 2, 5, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7627, 'Ansible Software', 2, 5, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7628, 'batch', 9, 659, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7629, 'BAT file', 9, 659, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7630, 'batch file', 9, 659, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7631, 'Windows PowerShell', 9, 660, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7632, 'PowerShell Core', 9, 660, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7633, 'PS', 9, 660, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7634, 'Power Shell', 9, 660, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7635, 'Monal Shell', 9, 660, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7636, 'Microsoft Shell', 9, 660, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7637, 'MSH', 9, 660, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7638, 'COM+', 9, 661, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7639, 'Microsoft Component Services', 9, 661, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7640, 'COM Services', 9, 661, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7641, 'DataFlex', 9, 662, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7642, 'Dataflex', 9, 662, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7643, 'Visual DataFlex', 9, 662, 'redirects_transclusions'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7644, 'DDS', 9, 663, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7645, 'Data distribution service', 9, 663, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7646, 'Forte 4GL', 9, 664, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7647, 'Forte', 9, 664, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7648, 'FoxPro', 9, 665, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7649, 'Foxpro', 9, 665, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7650, 'FoxPro 2', 9, 665, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7651, 'FoxPro 26', 9, 665, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7652, 'FoxPro 2.6', 9, 665, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7653, 'FPU26', 9, 665, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7654, 'IBM DB2 Purescale', 2, 666, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7655, 'DB2 Purescale', 2, 666, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7656, 'IDMS DB', 2, 667, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7657, 'IDMS Database', 2, 667, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7658, 'IDMS/DB Database', 2, 667, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7659, 'IDMS/DB DML', 9, 668, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7660, 'IDMS/DB Data Manipulation Language', 9, 668, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7661, 'IDMS DML', 9, 668, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7662, 'Jaguar', 8, 669, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7663, 'EAServer', 8, 670, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7664, 'Enterprise Application Server', 8, 670, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7665, 'Sybase Enterprise Application Server', 8, 670, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7668, 'Cassandra SGBD', 2, 634, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7669, 'Netezza', 4, 672, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7670, 'IBM Netezza', 4, 672, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7674, 'OpenEdge Advanced Business Language', 9, 344, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7676, 'Open Rapid Object Application Development', 9, 674, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7677, 'Oracle Reports', 2, 675, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7678, 'Oracle RPT', 2, 675, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7679, 'Oracle Reports 1', 2, 675, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7680, 'Oracle Reports 2.0', 2, 675, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7681, 'Oracle Reports 2.5', 2, 675, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7682, 'Oracle Reports 6i', 2, 675, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7683, 'Oracle Reports 9i', 2, 675, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7684, 'Oracle Reports 10g', 2, 675, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7685, 'SAP Replication Server', 2, 676, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7686, 'content tracker', 2, 677, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7687, 'Git', 2, 677, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7688, 'the stupid content tracker', 2, 677, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7689, 'gitlab', 2, 678, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7690, 'Virtual Storage Access Method', 2, 679, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7691, 'VSAM', 2, 679, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7692, 'BMS Map', 9, 689, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7693, 'Basic Mapping Supprt', 9, 689, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7695, 'DB400', 2, 690, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7696, 'DB/400', 2, 690, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7697, 'Integrated Language Environment', 9, 691, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7698, 'ILE', 9, 691, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7699, 'indexed sequential access method', 2, 693, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7700, 'ISAM', 2, 693, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7701, 'IBM ISAM', 2, 693, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7702, 'Oracle RDS', 2, 694, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7703, 'RDS Oracle DB', 2, 694, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7704, 'Oracle RDS Database', 2, 694, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7705, 'SAP IQ', 2, 695, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7706, 'Sybase IQ', 2, 695, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7707, 'SAP Sybase IQ', 2, 695, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7708, 'z/Linux', 2, 437, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7709, 'Linux on IBM Z', 2, 437, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7710, 'Integrated Data Store (IDS)', 2, 692, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7711, 'IDS', 2, 692, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7712, 'IDS/I', 2, 692, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7713, 'Springboot', 12, 399, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7714, 'Apache Maven', 2, 697, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7715, 'Maven', 2, 697, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7716, 'BAL', 9, 698, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7717, 'Basic Assembler Language', 9, 698, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7718, 'Basic Assembly Language', 9, 698, 'also_known_as'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7719, 'IBM Basic assembly language', 9, 698, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7720, 'COM plus', 9, 661, 'others'); +INSERT INTO entity_mentions (id, entity_mention_name, entity_type_id, entity_id, source) VALUES (7721, 'COM+ Events', 9, 661, 'others'); + +-- Table: entity_relations CREATE TABLE entity_relations ( id integer PRIMARY KEY AUTOINCREMENT, entity_parent_type_id integer NOT NULL, @@ -7766,1343 +7851,4825 @@ CREATE TABLE entity_relations ( FOREIGN KEY (entity_parent_id) REFERENCES entities (id), FOREIGN KEY (entity_child_id) REFERENCES entities (id) ); -INSERT INTO entity_relations VALUES(1,6,580,10,497,''); -INSERT INTO entity_relations VALUES(2,6,580,10,498,''); -INSERT INTO entity_relations VALUES(3,6,580,10,592,''); -INSERT INTO entity_relations VALUES(4,6,580,10,500,''); -INSERT INTO entity_relations VALUES(5,6,418,10,501,''); -INSERT INTO entity_relations VALUES(6,6,425,10,501,''); -INSERT INTO entity_relations VALUES(7,6,438,10,501,''); -INSERT INTO entity_relations VALUES(8,6,580,10,501,''); -INSERT INTO entity_relations VALUES(9,6,441,10,502,''); -INSERT INTO entity_relations VALUES(10,6,591,10,502,''); -INSERT INTO entity_relations VALUES(11,6,576,10,503,''); -INSERT INTO entity_relations VALUES(12,6,438,10,503,''); -INSERT INTO entity_relations VALUES(13,6,580,10,503,''); -INSERT INTO entity_relations VALUES(14,6,418,10,504,''); -INSERT INTO entity_relations VALUES(15,6,425,10,504,''); -INSERT INTO entity_relations VALUES(16,6,576,10,504,''); -INSERT INTO entity_relations VALUES(17,6,438,10,504,''); -INSERT INTO entity_relations VALUES(18,6,448,10,504,''); -INSERT INTO entity_relations VALUES(19,6,580,10,504,''); -INSERT INTO entity_relations VALUES(20,6,580,10,505,''); -INSERT INTO entity_relations VALUES(22,6,576,10,507,''); -INSERT INTO entity_relations VALUES(23,6,438,10,507,''); -INSERT INTO entity_relations VALUES(24,6,445,10,507,''); -INSERT INTO entity_relations VALUES(25,6,447,10,507,''); -INSERT INTO entity_relations VALUES(26,6,590,10,507,''); -INSERT INTO entity_relations VALUES(27,6,580,10,507,''); -INSERT INTO entity_relations VALUES(28,6,576,10,508,''); -INSERT INTO entity_relations VALUES(29,6,438,10,508,''); -INSERT INTO entity_relations VALUES(30,6,580,10,508,''); -INSERT INTO entity_relations VALUES(32,8,609,7,490,''); -INSERT INTO entity_relations VALUES(33,8,609,7,489,''); -INSERT INTO entity_relations VALUES(34,8,609,7,491,''); -INSERT INTO entity_relations VALUES(35,8,268,7,492,''); -INSERT INTO entity_relations VALUES(36,8,610,7,494,''); -INSERT INTO entity_relations VALUES(37,8,276,7,495,''); -INSERT INTO entity_relations VALUES(38,8,279,7,496,''); -INSERT INTO entity_relations VALUES(39,10,497,7,482,''); -INSERT INTO entity_relations VALUES(40,10,497,7,483,''); -INSERT INTO entity_relations VALUES(41,10,497,7,484,''); -INSERT INTO entity_relations VALUES(42,10,497,7,485,''); -INSERT INTO entity_relations VALUES(43,10,497,7,486,''); -INSERT INTO entity_relations VALUES(44,10,497,7,487,''); -INSERT INTO entity_relations VALUES(45,10,500,7,488,''); -INSERT INTO entity_relations VALUES(46,2,33,5,455,''); -INSERT INTO entity_relations VALUES(47,2,46,5,456,''); -INSERT INTO entity_relations VALUES(48,2,62,5,457,''); -INSERT INTO entity_relations VALUES(49,2,68,5,458,''); -INSERT INTO entity_relations VALUES(50,2,606,5,459,''); -INSERT INTO entity_relations VALUES(51,2,604,5,460,''); -INSERT INTO entity_relations VALUES(52,2,604,5,461,''); -INSERT INTO entity_relations VALUES(53,2,604,5,462,''); -INSERT INTO entity_relations VALUES(54,2,604,5,463,''); -INSERT INTO entity_relations VALUES(55,2,104,5,464,''); -INSERT INTO entity_relations VALUES(56,2,581,5,466,''); -INSERT INTO entity_relations VALUES(57,2,581,5,467,''); -INSERT INTO entity_relations VALUES(58,2,581,5,468,''); -INSERT INTO entity_relations VALUES(59,2,581,5,469,''); -INSERT INTO entity_relations VALUES(60,2,581,5,470,''); -INSERT INTO entity_relations VALUES(61,2,581,5,471,''); -INSERT INTO entity_relations VALUES(62,2,581,5,473,''); -INSERT INTO entity_relations VALUES(63,2,581,5,465,''); -INSERT INTO entity_relations VALUES(64,2,581,5,472,''); -INSERT INTO entity_relations VALUES(65,2,134,5,474,''); -INSERT INTO entity_relations VALUES(66,2,134,5,475,''); -INSERT INTO entity_relations VALUES(67,2,134,5,478,''); -INSERT INTO entity_relations VALUES(68,2,174,5,476,''); -INSERT INTO entity_relations VALUES(69,2,174,5,477,''); -INSERT INTO entity_relations VALUES(70,2,190,5,479,''); -INSERT INTO entity_relations VALUES(71,2,190,5,480,''); -INSERT INTO entity_relations VALUES(72,2,217,5,481,''); -INSERT INTO entity_relations VALUES(73,9,582,12,375,''); -INSERT INTO entity_relations VALUES(74,9,583,12,375,''); -INSERT INTO entity_relations VALUES(75,9,584,12,375,''); -INSERT INTO entity_relations VALUES(76,9,346,12,375,''); -INSERT INTO entity_relations VALUES(77,9,585,12,375,''); -INSERT INTO entity_relations VALUES(78,9,586,12,375,''); -INSERT INTO entity_relations VALUES(79,9,587,12,375,''); -INSERT INTO entity_relations VALUES(80,9,588,12,375,''); -INSERT INTO entity_relations VALUES(81,9,583,12,376,''); -INSERT INTO entity_relations VALUES(82,9,584,12,376,''); -INSERT INTO entity_relations VALUES(83,9,585,12,376,''); -INSERT INTO entity_relations VALUES(84,9,307,12,377,''); -INSERT INTO entity_relations VALUES(85,9,584,12,378,''); -INSERT INTO entity_relations VALUES(86,9,584,12,379,''); -INSERT INTO entity_relations VALUES(87,9,584,12,380,''); -INSERT INTO entity_relations VALUES(88,9,584,12,381,''); -INSERT INTO entity_relations VALUES(89,9,584,12,382,''); -INSERT INTO entity_relations VALUES(90,9,584,12,383,''); -INSERT INTO entity_relations VALUES(91,9,584,12,384,''); -INSERT INTO entity_relations VALUES(92,9,584,12,385,''); -INSERT INTO entity_relations VALUES(93,9,584,12,386,''); -INSERT INTO entity_relations VALUES(94,9,584,12,387,''); -INSERT INTO entity_relations VALUES(95,9,584,12,388,''); -INSERT INTO entity_relations VALUES(96,9,584,12,389,''); -INSERT INTO entity_relations VALUES(97,9,584,12,390,''); -INSERT INTO entity_relations VALUES(98,9,584,12,391,''); -INSERT INTO entity_relations VALUES(99,9,584,12,392,''); -INSERT INTO entity_relations VALUES(100,9,584,12,393,''); -INSERT INTO entity_relations VALUES(101,9,584,12,394,''); -INSERT INTO entity_relations VALUES(102,9,584,12,395,''); -INSERT INTO entity_relations VALUES(103,9,584,12,396,''); -INSERT INTO entity_relations VALUES(104,9,584,12,397,''); -INSERT INTO entity_relations VALUES(105,9,584,12,398,''); -INSERT INTO entity_relations VALUES(106,9,584,12,399,''); -INSERT INTO entity_relations VALUES(107,9,584,12,400,''); -INSERT INTO entity_relations VALUES(108,9,584,12,401,''); -INSERT INTO entity_relations VALUES(109,9,584,12,402,''); -INSERT INTO entity_relations VALUES(110,9,584,12,403,''); -INSERT INTO entity_relations VALUES(111,9,584,12,404,''); -INSERT INTO entity_relations VALUES(112,9,589,12,405,''); -INSERT INTO entity_relations VALUES(113,9,589,12,406,''); -INSERT INTO entity_relations VALUES(114,9,589,12,407,''); -INSERT INTO entity_relations VALUES(115,9,589,12,408,''); -INSERT INTO entity_relations VALUES(116,9,589,12,409,''); -INSERT INTO entity_relations VALUES(117,9,589,12,410,''); -INSERT INTO entity_relations VALUES(118,9,589,12,411,''); -INSERT INTO entity_relations VALUES(119,9,589,12,412,''); -INSERT INTO entity_relations VALUES(120,9,589,12,413,''); -INSERT INTO entity_relations VALUES(121,9,589,12,414,''); -INSERT INTO entity_relations VALUES(122,9,589,12,415,''); -INSERT INTO entity_relations VALUES(123,9,311,12,416,''); -INSERT INTO entity_relations VALUES(124,9,584,12,416,''); -INSERT INTO entity_relations VALUES(125,9,589,12,416,''); -INSERT INTO entity_relations VALUES(126,9,586,12,416,''); -INSERT INTO entity_relations VALUES(127,9,587,12,416,''); -INSERT INTO entity_relations VALUES(128,9,585,12,417,''); -INSERT INTO entity_relations VALUES(129,6,580,9,299,''); -INSERT INTO entity_relations VALUES(130,6,576,9,300,''); -INSERT INTO entity_relations VALUES(131,6,578,9,300,''); -INSERT INTO entity_relations VALUES(133,6,580,9,302,''); -INSERT INTO entity_relations VALUES(135,6,580,9,582,''); -INSERT INTO entity_relations VALUES(138,6,593,9,308,''); -INSERT INTO entity_relations VALUES(139,6,577,9,309,''); -INSERT INTO entity_relations VALUES(140,6,441,9,594,''); -INSERT INTO entity_relations VALUES(141,6,442,9,594,''); -INSERT INTO entity_relations VALUES(142,6,578,9,594,''); -INSERT INTO entity_relations VALUES(143,6,576,9,594,''); -INSERT INTO entity_relations VALUES(144,6,595,9,594,''); -INSERT INTO entity_relations VALUES(145,6,580,9,594,''); -INSERT INTO entity_relations VALUES(146,6,591,9,594,''); -INSERT INTO entity_relations VALUES(147,6,580,9,311,''); -INSERT INTO entity_relations VALUES(149,6,418,9,313,''); -INSERT INTO entity_relations VALUES(150,6,425,9,313,''); -INSERT INTO entity_relations VALUES(151,6,576,9,313,''); -INSERT INTO entity_relations VALUES(152,6,438,9,313,''); -INSERT INTO entity_relations VALUES(153,6,580,9,313,''); -INSERT INTO entity_relations VALUES(154,6,576,9,314,''); -INSERT INTO entity_relations VALUES(155,6,441,9,314,''); -INSERT INTO entity_relations VALUES(156,6,578,9,314,''); -INSERT INTO entity_relations VALUES(157,6,580,9,314,''); -INSERT INTO entity_relations VALUES(158,6,608,9,314,''); -INSERT INTO entity_relations VALUES(159,6,591,9,314,''); -INSERT INTO entity_relations VALUES(165,6,597,9,321,''); -INSERT INTO entity_relations VALUES(166,6,577,9,321,''); -INSERT INTO entity_relations VALUES(167,6,442,9,321,''); -INSERT INTO entity_relations VALUES(168,6,443,9,321,''); -INSERT INTO entity_relations VALUES(169,6,578,9,321,''); -INSERT INTO entity_relations VALUES(170,6,608,9,321,''); -INSERT INTO entity_relations VALUES(172,6,576,9,323,''); -INSERT INTO entity_relations VALUES(173,6,438,9,323,''); -INSERT INTO entity_relations VALUES(174,6,579,9,323,''); -INSERT INTO entity_relations VALUES(175,6,580,9,323,''); -INSERT INTO entity_relations VALUES(180,6,441,9,328,''); -INSERT INTO entity_relations VALUES(181,6,598,9,328,''); -INSERT INTO entity_relations VALUES(182,6,608,9,328,''); -INSERT INTO entity_relations VALUES(183,6,591,9,328,''); -INSERT INTO entity_relations VALUES(184,6,424,9,329,''); -INSERT INTO entity_relations VALUES(188,6,597,9,338,''); -INSERT INTO entity_relations VALUES(189,6,577,9,338,''); -INSERT INTO entity_relations VALUES(190,6,591,9,338,''); -INSERT INTO entity_relations VALUES(191,6,576,9,339,''); -INSERT INTO entity_relations VALUES(192,6,578,9,339,''); -INSERT INTO entity_relations VALUES(193,6,580,9,339,''); -INSERT INTO entity_relations VALUES(194,6,580,9,340,''); -INSERT INTO entity_relations VALUES(196,6,431,9,342,''); -INSERT INTO entity_relations VALUES(197,6,442,9,342,''); -INSERT INTO entity_relations VALUES(198,6,445,9,342,''); -INSERT INTO entity_relations VALUES(199,6,448,9,342,''); -INSERT INTO entity_relations VALUES(200,6,449,9,342,''); -INSERT INTO entity_relations VALUES(201,6,580,9,342,''); -INSERT INTO entity_relations VALUES(205,6,576,9,585,''); -INSERT INTO entity_relations VALUES(206,6,438,9,585,''); -INSERT INTO entity_relations VALUES(207,6,578,9,585,''); -INSERT INTO entity_relations VALUES(208,6,580,9,585,''); -INSERT INTO entity_relations VALUES(209,6,576,9,586,''); -INSERT INTO entity_relations VALUES(210,6,438,9,586,''); -INSERT INTO entity_relations VALUES(211,6,578,9,586,''); -INSERT INTO entity_relations VALUES(212,6,580,9,586,''); -INSERT INTO entity_relations VALUES(213,6,577,9,351,''); -INSERT INTO entity_relations VALUES(214,6,445,9,351,''); -INSERT INTO entity_relations VALUES(215,6,580,9,351,''); -INSERT INTO entity_relations VALUES(216,6,608,9,351,''); -INSERT INTO entity_relations VALUES(221,6,424,9,356,''); -INSERT INTO entity_relations VALUES(222,6,577,9,356,''); -INSERT INTO entity_relations VALUES(223,6,443,9,356,''); -INSERT INTO entity_relations VALUES(224,6,445,9,356,''); -INSERT INTO entity_relations VALUES(225,6,608,9,356,''); -INSERT INTO entity_relations VALUES(226,6,591,9,356,''); -INSERT INTO entity_relations VALUES(227,6,424,9,357,''); -INSERT INTO entity_relations VALUES(228,6,441,9,357,''); -INSERT INTO entity_relations VALUES(229,6,442,9,357,''); -INSERT INTO entity_relations VALUES(230,6,580,9,357,''); -INSERT INTO entity_relations VALUES(231,6,591,9,357,''); -INSERT INTO entity_relations VALUES(236,6,576,9,362,''); -INSERT INTO entity_relations VALUES(237,6,438,9,362,''); -INSERT INTO entity_relations VALUES(238,6,578,9,362,''); -INSERT INTO entity_relations VALUES(239,6,580,9,362,''); -INSERT INTO entity_relations VALUES(240,6,576,9,363,''); -INSERT INTO entity_relations VALUES(241,6,438,9,363,''); -INSERT INTO entity_relations VALUES(242,6,578,9,363,''); -INSERT INTO entity_relations VALUES(243,6,580,9,363,''); -INSERT INTO entity_relations VALUES(244,6,576,9,364,''); -INSERT INTO entity_relations VALUES(245,6,438,9,364,''); -INSERT INTO entity_relations VALUES(246,6,441,9,364,''); -INSERT INTO entity_relations VALUES(247,6,447,9,364,''); -INSERT INTO entity_relations VALUES(248,6,580,9,364,''); -INSERT INTO entity_relations VALUES(249,6,576,9,365,''); -INSERT INTO entity_relations VALUES(250,6,438,9,365,''); -INSERT INTO entity_relations VALUES(251,6,578,9,365,''); -INSERT INTO entity_relations VALUES(252,6,580,9,365,''); -INSERT INTO entity_relations VALUES(255,6,418,9,368,''); -INSERT INTO entity_relations VALUES(256,6,425,9,368,''); -INSERT INTO entity_relations VALUES(257,6,576,9,368,''); -INSERT INTO entity_relations VALUES(258,6,438,9,368,''); -INSERT INTO entity_relations VALUES(259,6,578,9,368,''); -INSERT INTO entity_relations VALUES(260,6,579,9,368,''); -INSERT INTO entity_relations VALUES(261,6,580,9,368,''); -INSERT INTO entity_relations VALUES(262,6,580,9,369,''); -INSERT INTO entity_relations VALUES(263,6,593,9,370,''); -INSERT INTO entity_relations VALUES(264,6,580,9,370,''); -INSERT INTO entity_relations VALUES(265,6,438,9,371,''); -INSERT INTO entity_relations VALUES(266,6,580,9,371,''); -INSERT INTO entity_relations VALUES(267,6,580,9,372,''); -INSERT INTO entity_relations VALUES(269,6,580,9,374,''); -INSERT INTO entity_relations VALUES(270,6,576,8,259,''); -INSERT INTO entity_relations VALUES(271,6,445,8,259,''); -INSERT INTO entity_relations VALUES(272,6,448,8,259,''); -INSERT INTO entity_relations VALUES(273,6,449,8,259,''); -INSERT INTO entity_relations VALUES(274,6,580,8,259,''); -INSERT INTO entity_relations VALUES(275,6,434,8,260,''); -INSERT INTO entity_relations VALUES(276,6,436,8,260,''); -INSERT INTO entity_relations VALUES(277,6,448,8,260,''); -INSERT INTO entity_relations VALUES(278,6,580,8,260,''); -INSERT INTO entity_relations VALUES(279,6,576,8,260,''); -INSERT INTO entity_relations VALUES(280,6,578,8,260,''); -INSERT INTO entity_relations VALUES(281,6,438,8,260,''); -INSERT INTO entity_relations VALUES(282,6,576,8,261,''); -INSERT INTO entity_relations VALUES(283,6,580,8,261,''); -INSERT INTO entity_relations VALUES(284,6,432,8,600,''); -INSERT INTO entity_relations VALUES(285,6,434,8,600,''); -INSERT INTO entity_relations VALUES(286,6,435,8,600,''); -INSERT INTO entity_relations VALUES(287,6,445,8,600,''); -INSERT INTO entity_relations VALUES(288,6,448,8,600,''); -INSERT INTO entity_relations VALUES(289,6,449,8,600,''); -INSERT INTO entity_relations VALUES(290,6,580,8,600,''); -INSERT INTO entity_relations VALUES(291,6,434,8,263,''); -INSERT INTO entity_relations VALUES(292,6,435,8,263,''); -INSERT INTO entity_relations VALUES(293,6,436,8,263,''); -INSERT INTO entity_relations VALUES(294,6,438,8,263,''); -INSERT INTO entity_relations VALUES(295,6,445,8,263,''); -INSERT INTO entity_relations VALUES(296,6,448,8,263,''); -INSERT INTO entity_relations VALUES(297,6,580,8,263,''); -INSERT INTO entity_relations VALUES(298,6,576,8,264,''); -INSERT INTO entity_relations VALUES(299,6,438,8,264,''); -INSERT INTO entity_relations VALUES(300,6,445,8,264,''); -INSERT INTO entity_relations VALUES(301,6,447,8,264,''); -INSERT INTO entity_relations VALUES(302,6,590,8,264,''); -INSERT INTO entity_relations VALUES(303,6,448,8,264,''); -INSERT INTO entity_relations VALUES(304,6,580,8,609,''); -INSERT INTO entity_relations VALUES(305,6,576,8,268,''); -INSERT INTO entity_relations VALUES(306,6,434,8,268,''); -INSERT INTO entity_relations VALUES(307,6,578,8,268,''); -INSERT INTO entity_relations VALUES(308,6,448,8,268,''); -INSERT INTO entity_relations VALUES(309,6,580,8,268,''); -INSERT INTO entity_relations VALUES(310,6,580,8,268,''); -INSERT INTO entity_relations VALUES(311,6,425,8,269,''); -INSERT INTO entity_relations VALUES(312,6,576,8,269,''); -INSERT INTO entity_relations VALUES(313,6,438,8,269,''); -INSERT INTO entity_relations VALUES(314,6,576,8,270,''); -INSERT INTO entity_relations VALUES(315,6,438,8,270,''); -INSERT INTO entity_relations VALUES(316,6,580,8,270,''); -INSERT INTO entity_relations VALUES(317,6,576,8,271,''); -INSERT INTO entity_relations VALUES(318,6,438,8,271,''); -INSERT INTO entity_relations VALUES(319,6,578,8,271,''); -INSERT INTO entity_relations VALUES(320,6,580,8,271,''); -INSERT INTO entity_relations VALUES(321,6,448,8,272,''); -INSERT INTO entity_relations VALUES(322,6,580,8,272,''); -INSERT INTO entity_relations VALUES(323,6,576,8,273,''); -INSERT INTO entity_relations VALUES(324,6,445,8,273,''); -INSERT INTO entity_relations VALUES(325,6,448,8,273,''); -INSERT INTO entity_relations VALUES(326,6,449,8,273,''); -INSERT INTO entity_relations VALUES(327,6,580,8,273,''); -INSERT INTO entity_relations VALUES(328,6,576,8,274,''); -INSERT INTO entity_relations VALUES(329,6,438,8,274,''); -INSERT INTO entity_relations VALUES(330,6,445,8,274,''); -INSERT INTO entity_relations VALUES(331,6,579,8,274,''); -INSERT INTO entity_relations VALUES(332,6,449,8,274,''); -INSERT INTO entity_relations VALUES(333,6,580,8,274,''); -INSERT INTO entity_relations VALUES(334,6,580,8,610,''); -INSERT INTO entity_relations VALUES(335,6,432,8,610,''); -INSERT INTO entity_relations VALUES(336,6,434,8,610,''); -INSERT INTO entity_relations VALUES(337,6,435,8,610,''); -INSERT INTO entity_relations VALUES(338,6,438,8,610,''); -INSERT INTO entity_relations VALUES(339,6,445,8,610,''); -INSERT INTO entity_relations VALUES(340,6,448,8,610,''); -INSERT INTO entity_relations VALUES(341,6,449,8,610,''); -INSERT INTO entity_relations VALUES(342,6,432,8,276,''); -INSERT INTO entity_relations VALUES(343,6,434,8,276,''); -INSERT INTO entity_relations VALUES(344,6,435,8,276,''); -INSERT INTO entity_relations VALUES(345,6,445,8,276,''); -INSERT INTO entity_relations VALUES(346,6,448,8,276,''); -INSERT INTO entity_relations VALUES(347,6,449,8,276,''); -INSERT INTO entity_relations VALUES(348,6,580,8,276,''); -INSERT INTO entity_relations VALUES(349,6,576,8,278,''); -INSERT INTO entity_relations VALUES(350,6,438,8,278,''); -INSERT INTO entity_relations VALUES(351,6,578,8,278,''); -INSERT INTO entity_relations VALUES(352,6,580,8,278,''); -INSERT INTO entity_relations VALUES(353,6,576,8,280,''); -INSERT INTO entity_relations VALUES(354,6,438,8,280,''); -INSERT INTO entity_relations VALUES(355,6,580,8,280,''); -INSERT INTO entity_relations VALUES(356,6,580,8,282,''); -INSERT INTO entity_relations VALUES(357,6,432,8,600,''); -INSERT INTO entity_relations VALUES(358,6,434,8,600,''); -INSERT INTO entity_relations VALUES(359,6,435,8,600,''); -INSERT INTO entity_relations VALUES(360,6,445,8,600,''); -INSERT INTO entity_relations VALUES(361,6,448,8,600,''); -INSERT INTO entity_relations VALUES(362,6,449,8,600,''); -INSERT INTO entity_relations VALUES(363,6,580,8,600,''); -INSERT INTO entity_relations VALUES(364,6,424,8,283,''); -INSERT INTO entity_relations VALUES(365,6,576,8,283,''); -INSERT INTO entity_relations VALUES(366,6,445,8,283,''); -INSERT INTO entity_relations VALUES(367,6,448,8,283,''); -INSERT INTO entity_relations VALUES(368,6,449,8,283,''); -INSERT INTO entity_relations VALUES(369,6,580,8,283,''); -INSERT INTO entity_relations VALUES(370,6,424,8,284,''); -INSERT INTO entity_relations VALUES(371,6,576,8,284,''); -INSERT INTO entity_relations VALUES(372,6,441,8,284,''); -INSERT INTO entity_relations VALUES(373,6,445,8,284,''); -INSERT INTO entity_relations VALUES(374,6,448,8,284,''); -INSERT INTO entity_relations VALUES(375,6,449,8,284,''); -INSERT INTO entity_relations VALUES(376,6,580,8,284,''); -INSERT INTO entity_relations VALUES(377,6,580,8,285,''); -INSERT INTO entity_relations VALUES(378,6,424,8,285,''); -INSERT INTO entity_relations VALUES(379,6,576,8,285,''); -INSERT INTO entity_relations VALUES(380,6,441,8,285,''); -INSERT INTO entity_relations VALUES(381,6,445,8,285,''); -INSERT INTO entity_relations VALUES(382,6,448,8,285,''); -INSERT INTO entity_relations VALUES(383,6,449,8,285,''); -INSERT INTO entity_relations VALUES(384,6,580,8,285,''); -INSERT INTO entity_relations VALUES(385,6,424,8,286,''); -INSERT INTO entity_relations VALUES(386,6,576,8,286,''); -INSERT INTO entity_relations VALUES(387,6,441,8,286,''); -INSERT INTO entity_relations VALUES(388,6,445,8,286,''); -INSERT INTO entity_relations VALUES(389,6,448,8,286,''); -INSERT INTO entity_relations VALUES(390,6,449,8,286,''); -INSERT INTO entity_relations VALUES(391,6,580,8,286,''); -INSERT INTO entity_relations VALUES(392,6,424,8,287,''); -INSERT INTO entity_relations VALUES(393,6,576,8,287,''); -INSERT INTO entity_relations VALUES(394,6,441,8,287,''); -INSERT INTO entity_relations VALUES(395,6,445,8,287,''); -INSERT INTO entity_relations VALUES(396,6,448,8,287,''); -INSERT INTO entity_relations VALUES(397,6,449,8,287,''); -INSERT INTO entity_relations VALUES(398,6,580,8,287,''); -INSERT INTO entity_relations VALUES(399,6,445,8,265,''); -INSERT INTO entity_relations VALUES(400,6,449,8,265,''); -INSERT INTO entity_relations VALUES(401,6,576,8,265,''); -INSERT INTO entity_relations VALUES(402,6,448,8,265,''); -INSERT INTO entity_relations VALUES(403,6,580,8,265,''); -INSERT INTO entity_relations VALUES(404,6,424,8,265,''); -INSERT INTO entity_relations VALUES(405,6,441,8,265,''); -INSERT INTO entity_relations VALUES(406,6,434,8,277,''); -INSERT INTO entity_relations VALUES(407,6,432,8,277,''); -INSERT INTO entity_relations VALUES(408,6,427,8,277,''); -INSERT INTO entity_relations VALUES(409,6,435,8,277,''); -INSERT INTO entity_relations VALUES(410,6,436,8,277,''); -INSERT INTO entity_relations VALUES(411,6,448,8,277,''); -INSERT INTO entity_relations VALUES(412,6,580,8,277,''); -INSERT INTO entity_relations VALUES(413,6,438,8,277,''); -INSERT INTO entity_relations VALUES(414,6,445,8,279,''); -INSERT INTO entity_relations VALUES(415,6,449,8,279,''); -INSERT INTO entity_relations VALUES(416,6,576,8,279,''); -INSERT INTO entity_relations VALUES(417,6,448,8,279,''); -INSERT INTO entity_relations VALUES(418,6,580,8,281,''); -INSERT INTO entity_relations VALUES(419,6,445,8,281,''); -INSERT INTO entity_relations VALUES(420,6,449,8,281,''); -INSERT INTO entity_relations VALUES(421,6,445,8,281,''); -INSERT INTO entity_relations VALUES(422,6,449,8,281,''); -INSERT INTO entity_relations VALUES(423,6,580,8,281,''); -INSERT INTO entity_relations VALUES(424,6,448,8,281,''); -INSERT INTO entity_relations VALUES(425,6,434,8,281,''); -INSERT INTO entity_relations VALUES(426,6,576,8,268,''); -INSERT INTO entity_relations VALUES(427,6,580,8,268,''); -INSERT INTO entity_relations VALUES(428,6,578,8,268,''); -INSERT INTO entity_relations VALUES(429,6,441,2,1,''); -INSERT INTO entity_relations VALUES(431,6,576,2,5,''); -INSERT INTO entity_relations VALUES(432,6,438,2,5,''); -INSERT INTO entity_relations VALUES(433,6,578,2,5,''); -INSERT INTO entity_relations VALUES(434,6,580,2,5,''); -INSERT INTO entity_relations VALUES(435,6,576,2,6,''); -INSERT INTO entity_relations VALUES(436,6,438,2,6,''); -INSERT INTO entity_relations VALUES(437,6,578,2,6,''); -INSERT INTO entity_relations VALUES(438,6,580,2,6,''); -INSERT INTO entity_relations VALUES(439,6,576,2,8,''); -INSERT INTO entity_relations VALUES(440,6,438,2,8,''); -INSERT INTO entity_relations VALUES(441,6,578,2,8,''); -INSERT INTO entity_relations VALUES(442,6,580,2,8,''); -INSERT INTO entity_relations VALUES(443,6,576,2,9,''); -INSERT INTO entity_relations VALUES(444,6,438,2,9,''); -INSERT INTO entity_relations VALUES(445,6,580,2,9,''); -INSERT INTO entity_relations VALUES(446,6,578,2,9,''); -INSERT INTO entity_relations VALUES(447,6,576,2,10,''); -INSERT INTO entity_relations VALUES(448,6,438,2,10,''); -INSERT INTO entity_relations VALUES(449,6,578,2,10,''); -INSERT INTO entity_relations VALUES(450,6,580,2,10,''); -INSERT INTO entity_relations VALUES(451,6,576,2,11,''); -INSERT INTO entity_relations VALUES(452,6,438,2,11,''); -INSERT INTO entity_relations VALUES(453,6,580,2,11,''); -INSERT INTO entity_relations VALUES(454,6,419,2,12,''); -INSERT INTO entity_relations VALUES(455,6,427,2,12,''); -INSERT INTO entity_relations VALUES(456,6,429,2,12,''); -INSERT INTO entity_relations VALUES(457,6,431,2,12,''); -INSERT INTO entity_relations VALUES(458,6,434,2,12,''); -INSERT INTO entity_relations VALUES(459,6,435,2,12,''); -INSERT INTO entity_relations VALUES(460,6,436,2,12,''); -INSERT INTO entity_relations VALUES(461,6,438,2,12,''); -INSERT INTO entity_relations VALUES(462,6,443,2,12,''); -INSERT INTO entity_relations VALUES(463,6,579,2,12,''); -INSERT INTO entity_relations VALUES(464,6,449,2,12,''); -INSERT INTO entity_relations VALUES(465,6,580,2,12,''); -INSERT INTO entity_relations VALUES(467,6,576,2,14,''); -INSERT INTO entity_relations VALUES(468,6,438,2,14,''); -INSERT INTO entity_relations VALUES(469,6,579,2,14,''); -INSERT INTO entity_relations VALUES(470,6,580,2,14,''); -INSERT INTO entity_relations VALUES(471,6,427,2,15,''); -INSERT INTO entity_relations VALUES(472,6,434,2,15,''); -INSERT INTO entity_relations VALUES(473,6,580,2,15,''); -INSERT INTO entity_relations VALUES(474,6,576,2,16,''); -INSERT INTO entity_relations VALUES(475,6,445,2,16,''); -INSERT INTO entity_relations VALUES(476,6,448,2,16,''); -INSERT INTO entity_relations VALUES(477,6,449,2,16,''); -INSERT INTO entity_relations VALUES(478,6,580,2,16,''); -INSERT INTO entity_relations VALUES(479,6,576,2,19,''); -INSERT INTO entity_relations VALUES(480,6,445,2,19,''); -INSERT INTO entity_relations VALUES(481,6,448,2,19,''); -INSERT INTO entity_relations VALUES(482,6,449,2,19,''); -INSERT INTO entity_relations VALUES(483,6,580,2,19,''); -INSERT INTO entity_relations VALUES(484,6,427,2,21,''); -INSERT INTO entity_relations VALUES(485,6,431,2,21,''); -INSERT INTO entity_relations VALUES(486,6,432,2,21,''); -INSERT INTO entity_relations VALUES(487,6,434,2,21,''); -INSERT INTO entity_relations VALUES(488,6,435,2,21,''); -INSERT INTO entity_relations VALUES(489,6,580,2,21,''); -INSERT INTO entity_relations VALUES(490,6,576,2,23,''); -INSERT INTO entity_relations VALUES(491,6,445,2,23,''); -INSERT INTO entity_relations VALUES(492,6,448,2,23,''); -INSERT INTO entity_relations VALUES(493,6,580,2,23,''); -INSERT INTO entity_relations VALUES(494,6,424,2,25,''); -INSERT INTO entity_relations VALUES(495,6,593,2,25,''); -INSERT INTO entity_relations VALUES(496,6,577,2,25,''); -INSERT INTO entity_relations VALUES(497,6,443,2,25,''); -INSERT INTO entity_relations VALUES(498,6,578,2,25,''); -INSERT INTO entity_relations VALUES(499,6,580,2,25,''); -INSERT INTO entity_relations VALUES(500,6,591,2,25,''); -INSERT INTO entity_relations VALUES(502,6,427,2,27,''); -INSERT INTO entity_relations VALUES(503,6,429,2,27,''); -INSERT INTO entity_relations VALUES(504,6,432,2,27,''); -INSERT INTO entity_relations VALUES(505,6,434,2,27,''); -INSERT INTO entity_relations VALUES(506,6,435,2,27,''); -INSERT INTO entity_relations VALUES(507,6,436,2,27,''); -INSERT INTO entity_relations VALUES(508,6,438,2,27,''); -INSERT INTO entity_relations VALUES(509,6,445,2,27,''); -INSERT INTO entity_relations VALUES(510,6,447,2,27,''); -INSERT INTO entity_relations VALUES(511,6,448,2,27,''); -INSERT INTO entity_relations VALUES(512,6,580,2,27,''); -INSERT INTO entity_relations VALUES(513,6,448,2,29,''); -INSERT INTO entity_relations VALUES(514,6,580,2,29,''); -INSERT INTO entity_relations VALUES(515,6,576,2,31,''); -INSERT INTO entity_relations VALUES(516,6,580,2,32,''); -INSERT INTO entity_relations VALUES(517,6,576,2,32,''); -INSERT INTO entity_relations VALUES(519,6,418,2,36,''); -INSERT INTO entity_relations VALUES(520,6,425,2,36,''); -INSERT INTO entity_relations VALUES(521,6,434,2,36,''); -INSERT INTO entity_relations VALUES(522,6,435,2,36,''); -INSERT INTO entity_relations VALUES(523,6,436,2,36,''); -INSERT INTO entity_relations VALUES(524,6,445,2,36,''); -INSERT INTO entity_relations VALUES(525,6,448,2,36,''); -INSERT INTO entity_relations VALUES(526,6,580,2,36,''); -INSERT INTO entity_relations VALUES(527,6,427,2,37,''); -INSERT INTO entity_relations VALUES(528,6,434,2,37,''); -INSERT INTO entity_relations VALUES(529,6,435,2,37,''); -INSERT INTO entity_relations VALUES(530,6,436,2,37,''); -INSERT INTO entity_relations VALUES(531,6,438,2,37,''); -INSERT INTO entity_relations VALUES(532,6,580,2,37,''); -INSERT INTO entity_relations VALUES(534,6,580,2,39,''); -INSERT INTO entity_relations VALUES(535,6,434,2,40,''); -INSERT INTO entity_relations VALUES(536,6,435,2,40,''); -INSERT INTO entity_relations VALUES(537,6,441,2,40,''); -INSERT INTO entity_relations VALUES(538,6,445,2,40,''); -INSERT INTO entity_relations VALUES(539,6,448,2,40,''); -INSERT INTO entity_relations VALUES(540,6,449,2,40,''); -INSERT INTO entity_relations VALUES(541,6,580,2,40,''); -INSERT INTO entity_relations VALUES(542,6,580,2,41,''); -INSERT INTO entity_relations VALUES(543,6,580,2,42,''); -INSERT INTO entity_relations VALUES(544,6,576,2,43,''); -INSERT INTO entity_relations VALUES(545,6,438,2,43,''); -INSERT INTO entity_relations VALUES(546,6,445,2,43,''); -INSERT INTO entity_relations VALUES(547,6,580,2,43,''); -INSERT INTO entity_relations VALUES(548,6,576,2,44,''); -INSERT INTO entity_relations VALUES(549,6,578,2,44,''); -INSERT INTO entity_relations VALUES(550,6,580,2,44,''); -INSERT INTO entity_relations VALUES(551,6,576,2,45,''); -INSERT INTO entity_relations VALUES(552,6,438,2,45,''); -INSERT INTO entity_relations VALUES(553,6,578,2,45,''); -INSERT INTO entity_relations VALUES(554,6,580,2,45,''); -INSERT INTO entity_relations VALUES(555,6,576,2,46,''); -INSERT INTO entity_relations VALUES(556,6,438,2,46,''); -INSERT INTO entity_relations VALUES(557,6,448,2,46,''); -INSERT INTO entity_relations VALUES(558,6,580,2,46,''); -INSERT INTO entity_relations VALUES(559,6,427,2,47,''); -INSERT INTO entity_relations VALUES(560,6,429,2,47,''); -INSERT INTO entity_relations VALUES(561,6,431,2,47,''); -INSERT INTO entity_relations VALUES(562,6,432,2,47,''); -INSERT INTO entity_relations VALUES(563,6,434,2,47,''); -INSERT INTO entity_relations VALUES(564,6,435,2,47,''); -INSERT INTO entity_relations VALUES(565,6,436,2,47,''); -INSERT INTO entity_relations VALUES(566,6,580,2,47,''); -INSERT INTO entity_relations VALUES(568,6,425,2,51,''); -INSERT INTO entity_relations VALUES(569,6,438,2,51,''); -INSERT INTO entity_relations VALUES(570,6,580,2,51,''); -INSERT INTO entity_relations VALUES(571,6,418,2,54,''); -INSERT INTO entity_relations VALUES(572,6,425,2,54,''); -INSERT INTO entity_relations VALUES(573,6,438,2,54,''); -INSERT INTO entity_relations VALUES(574,6,580,2,54,''); -INSERT INTO entity_relations VALUES(575,6,427,2,57,''); -INSERT INTO entity_relations VALUES(576,6,429,2,57,''); -INSERT INTO entity_relations VALUES(577,6,432,2,57,''); -INSERT INTO entity_relations VALUES(578,6,434,2,57,''); -INSERT INTO entity_relations VALUES(579,6,435,2,57,''); -INSERT INTO entity_relations VALUES(580,6,436,2,57,''); -INSERT INTO entity_relations VALUES(581,6,580,2,57,''); -INSERT INTO entity_relations VALUES(582,6,449,2,58,''); -INSERT INTO entity_relations VALUES(583,6,449,2,59,''); -INSERT INTO entity_relations VALUES(584,6,434,2,60,''); -INSERT INTO entity_relations VALUES(585,6,435,2,60,''); -INSERT INTO entity_relations VALUES(586,6,447,2,60,''); -INSERT INTO entity_relations VALUES(587,6,448,2,60,''); -INSERT INTO entity_relations VALUES(588,6,580,2,60,''); -INSERT INTO entity_relations VALUES(590,6,434,2,65,''); -INSERT INTO entity_relations VALUES(591,6,435,2,65,''); -INSERT INTO entity_relations VALUES(592,6,437,2,65,''); -INSERT INTO entity_relations VALUES(593,6,445,2,65,''); -INSERT INTO entity_relations VALUES(594,6,448,2,65,''); -INSERT INTO entity_relations VALUES(595,6,449,2,65,''); -INSERT INTO entity_relations VALUES(596,6,580,2,65,''); -INSERT INTO entity_relations VALUES(597,6,576,2,66,''); -INSERT INTO entity_relations VALUES(598,6,445,2,66,''); -INSERT INTO entity_relations VALUES(599,6,448,2,66,''); -INSERT INTO entity_relations VALUES(600,6,449,2,66,''); -INSERT INTO entity_relations VALUES(601,6,580,2,66,''); -INSERT INTO entity_relations VALUES(602,6,576,2,67,''); -INSERT INTO entity_relations VALUES(603,6,445,2,67,''); -INSERT INTO entity_relations VALUES(604,6,580,2,67,''); -INSERT INTO entity_relations VALUES(605,6,576,2,68,''); -INSERT INTO entity_relations VALUES(606,6,441,2,68,''); -INSERT INTO entity_relations VALUES(607,6,445,2,68,''); -INSERT INTO entity_relations VALUES(608,6,448,2,68,''); -INSERT INTO entity_relations VALUES(609,6,449,2,68,''); -INSERT INTO entity_relations VALUES(610,6,580,2,68,''); -INSERT INTO entity_relations VALUES(611,6,580,2,71,''); -INSERT INTO entity_relations VALUES(612,6,418,2,72,''); -INSERT INTO entity_relations VALUES(613,6,425,2,72,''); -INSERT INTO entity_relations VALUES(614,6,576,2,72,''); -INSERT INTO entity_relations VALUES(615,6,438,2,72,''); -INSERT INTO entity_relations VALUES(616,6,445,2,72,''); -INSERT INTO entity_relations VALUES(617,6,448,2,72,''); -INSERT INTO entity_relations VALUES(618,6,449,2,72,''); -INSERT INTO entity_relations VALUES(619,6,580,2,72,''); -INSERT INTO entity_relations VALUES(620,6,424,2,79,''); -INSERT INTO entity_relations VALUES(621,6,576,2,79,''); -INSERT INTO entity_relations VALUES(622,6,445,2,79,''); -INSERT INTO entity_relations VALUES(623,6,448,2,79,''); -INSERT INTO entity_relations VALUES(624,6,449,2,79,''); -INSERT INTO entity_relations VALUES(625,6,580,2,79,''); -INSERT INTO entity_relations VALUES(626,6,424,2,81,''); -INSERT INTO entity_relations VALUES(627,6,576,2,81,''); -INSERT INTO entity_relations VALUES(628,6,441,2,81,''); -INSERT INTO entity_relations VALUES(629,6,445,2,81,''); -INSERT INTO entity_relations VALUES(630,6,448,2,81,''); -INSERT INTO entity_relations VALUES(631,6,449,2,81,''); -INSERT INTO entity_relations VALUES(632,6,580,2,81,''); -INSERT INTO entity_relations VALUES(633,6,591,2,81,''); -INSERT INTO entity_relations VALUES(634,6,434,2,82,''); -INSERT INTO entity_relations VALUES(635,6,435,2,82,''); -INSERT INTO entity_relations VALUES(636,6,445,2,82,''); -INSERT INTO entity_relations VALUES(637,6,580,2,82,''); -INSERT INTO entity_relations VALUES(638,6,576,2,83,''); -INSERT INTO entity_relations VALUES(639,6,441,2,83,''); -INSERT INTO entity_relations VALUES(640,6,445,2,83,''); -INSERT INTO entity_relations VALUES(641,6,448,2,83,''); -INSERT INTO entity_relations VALUES(642,6,449,2,83,''); -INSERT INTO entity_relations VALUES(643,6,580,2,83,''); -INSERT INTO entity_relations VALUES(644,6,576,2,601,''); -INSERT INTO entity_relations VALUES(645,6,441,2,601,''); -INSERT INTO entity_relations VALUES(646,6,445,2,601,''); -INSERT INTO entity_relations VALUES(647,6,448,2,601,''); -INSERT INTO entity_relations VALUES(648,6,449,2,601,''); -INSERT INTO entity_relations VALUES(649,6,580,2,601,''); -INSERT INTO entity_relations VALUES(650,6,441,2,84,''); -INSERT INTO entity_relations VALUES(651,6,576,2,86,''); -INSERT INTO entity_relations VALUES(652,6,580,2,86,''); -INSERT INTO entity_relations VALUES(653,6,434,2,87,''); -INSERT INTO entity_relations VALUES(654,6,435,2,87,''); -INSERT INTO entity_relations VALUES(655,6,445,2,87,''); -INSERT INTO entity_relations VALUES(656,6,448,2,87,''); -INSERT INTO entity_relations VALUES(657,6,580,2,87,''); -INSERT INTO entity_relations VALUES(658,6,576,2,88,''); -INSERT INTO entity_relations VALUES(659,6,442,2,88,''); -INSERT INTO entity_relations VALUES(660,6,445,2,88,''); -INSERT INTO entity_relations VALUES(661,6,448,2,88,''); -INSERT INTO entity_relations VALUES(662,6,449,2,88,''); -INSERT INTO entity_relations VALUES(663,6,580,2,88,''); -INSERT INTO entity_relations VALUES(664,6,427,2,90,''); -INSERT INTO entity_relations VALUES(665,6,429,2,90,''); -INSERT INTO entity_relations VALUES(666,6,453,2,90,''); -INSERT INTO entity_relations VALUES(667,6,431,2,90,''); -INSERT INTO entity_relations VALUES(668,6,434,2,90,''); -INSERT INTO entity_relations VALUES(669,6,436,2,90,''); -INSERT INTO entity_relations VALUES(670,6,438,2,90,''); -INSERT INTO entity_relations VALUES(671,6,447,2,90,''); -INSERT INTO entity_relations VALUES(672,6,590,2,90,''); -INSERT INTO entity_relations VALUES(673,6,580,2,90,''); -INSERT INTO entity_relations VALUES(674,6,576,2,93,''); -INSERT INTO entity_relations VALUES(675,6,438,2,93,''); -INSERT INTO entity_relations VALUES(676,6,580,2,93,''); -INSERT INTO entity_relations VALUES(677,6,418,2,94,''); -INSERT INTO entity_relations VALUES(678,6,425,2,94,''); -INSERT INTO entity_relations VALUES(679,6,438,2,94,''); -INSERT INTO entity_relations VALUES(680,6,580,2,94,''); -INSERT INTO entity_relations VALUES(681,6,580,2,96,''); -INSERT INTO entity_relations VALUES(682,6,580,2,99,''); -INSERT INTO entity_relations VALUES(683,6,580,2,100,''); -INSERT INTO entity_relations VALUES(684,6,580,2,101,''); -INSERT INTO entity_relations VALUES(685,6,580,2,102,''); -INSERT INTO entity_relations VALUES(686,6,580,2,104,''); -INSERT INTO entity_relations VALUES(687,6,580,2,106,''); -INSERT INTO entity_relations VALUES(688,6,580,2,109,''); -INSERT INTO entity_relations VALUES(689,6,580,2,112,''); -INSERT INTO entity_relations VALUES(690,6,580,2,113,''); -INSERT INTO entity_relations VALUES(691,6,580,2,114,''); -INSERT INTO entity_relations VALUES(692,6,576,2,115,''); -INSERT INTO entity_relations VALUES(693,6,438,2,115,''); -INSERT INTO entity_relations VALUES(694,6,580,2,115,''); -INSERT INTO entity_relations VALUES(695,6,576,2,116,''); -INSERT INTO entity_relations VALUES(696,6,438,2,116,''); -INSERT INTO entity_relations VALUES(697,6,447,2,116,''); -INSERT INTO entity_relations VALUES(698,6,448,2,116,''); -INSERT INTO entity_relations VALUES(699,6,580,2,116,''); -INSERT INTO entity_relations VALUES(700,6,424,2,118,''); -INSERT INTO entity_relations VALUES(701,6,576,2,118,''); -INSERT INTO entity_relations VALUES(702,6,441,2,118,''); -INSERT INTO entity_relations VALUES(703,6,445,2,118,''); -INSERT INTO entity_relations VALUES(704,6,448,2,118,''); -INSERT INTO entity_relations VALUES(705,6,449,2,118,''); -INSERT INTO entity_relations VALUES(706,6,580,2,118,''); -INSERT INTO entity_relations VALUES(707,6,576,2,581,''); -INSERT INTO entity_relations VALUES(708,6,580,2,581,''); -INSERT INTO entity_relations VALUES(709,6,578,2,581,''); -INSERT INTO entity_relations VALUES(710,6,580,2,121,''); -INSERT INTO entity_relations VALUES(711,6,576,2,122,''); -INSERT INTO entity_relations VALUES(712,6,438,2,122,''); -INSERT INTO entity_relations VALUES(713,6,445,2,122,''); -INSERT INTO entity_relations VALUES(714,6,447,2,122,''); -INSERT INTO entity_relations VALUES(715,6,448,2,122,''); -INSERT INTO entity_relations VALUES(716,6,449,2,122,''); -INSERT INTO entity_relations VALUES(717,6,580,2,122,''); -INSERT INTO entity_relations VALUES(718,6,427,2,123,''); -INSERT INTO entity_relations VALUES(719,6,429,2,123,''); -INSERT INTO entity_relations VALUES(720,6,453,2,123,''); -INSERT INTO entity_relations VALUES(721,6,434,2,123,''); -INSERT INTO entity_relations VALUES(722,6,435,2,123,''); -INSERT INTO entity_relations VALUES(723,6,436,2,123,''); -INSERT INTO entity_relations VALUES(724,6,438,2,123,''); -INSERT INTO entity_relations VALUES(725,6,580,2,123,''); -INSERT INTO entity_relations VALUES(727,6,576,2,125,''); -INSERT INTO entity_relations VALUES(728,6,438,2,125,''); -INSERT INTO entity_relations VALUES(729,6,418,2,126,''); -INSERT INTO entity_relations VALUES(730,6,438,2,126,''); -INSERT INTO entity_relations VALUES(731,6,441,2,126,''); -INSERT INTO entity_relations VALUES(732,6,445,2,126,''); -INSERT INTO entity_relations VALUES(733,6,579,2,126,''); -INSERT INTO entity_relations VALUES(734,6,448,2,126,''); -INSERT INTO entity_relations VALUES(735,6,449,2,126,''); -INSERT INTO entity_relations VALUES(736,6,580,2,126,''); -INSERT INTO entity_relations VALUES(738,6,576,2,128,''); -INSERT INTO entity_relations VALUES(739,6,438,2,128,''); -INSERT INTO entity_relations VALUES(740,6,447,2,128,''); -INSERT INTO entity_relations VALUES(741,6,602,2,128,''); -INSERT INTO entity_relations VALUES(742,6,590,2,128,''); -INSERT INTO entity_relations VALUES(743,6,448,2,128,''); -INSERT INTO entity_relations VALUES(744,6,580,2,128,''); -INSERT INTO entity_relations VALUES(746,6,432,2,130,''); -INSERT INTO entity_relations VALUES(747,6,434,2,130,''); -INSERT INTO entity_relations VALUES(748,6,435,2,130,''); -INSERT INTO entity_relations VALUES(749,6,438,2,130,''); -INSERT INTO entity_relations VALUES(750,6,580,2,130,''); -INSERT INTO entity_relations VALUES(751,6,576,2,131,''); -INSERT INTO entity_relations VALUES(752,6,445,2,131,''); -INSERT INTO entity_relations VALUES(753,6,448,2,131,''); -INSERT INTO entity_relations VALUES(754,6,449,2,131,''); -INSERT INTO entity_relations VALUES(755,6,580,2,131,''); -INSERT INTO entity_relations VALUES(756,6,432,2,132,''); -INSERT INTO entity_relations VALUES(757,6,434,2,132,''); -INSERT INTO entity_relations VALUES(758,6,435,2,132,''); -INSERT INTO entity_relations VALUES(759,6,580,2,132,''); -INSERT INTO entity_relations VALUES(760,6,432,2,133,''); -INSERT INTO entity_relations VALUES(761,6,434,2,133,''); -INSERT INTO entity_relations VALUES(762,6,435,2,133,''); -INSERT INTO entity_relations VALUES(763,6,445,2,133,''); -INSERT INTO entity_relations VALUES(764,6,448,2,133,''); -INSERT INTO entity_relations VALUES(765,6,449,2,133,''); -INSERT INTO entity_relations VALUES(766,6,580,2,133,''); -INSERT INTO entity_relations VALUES(767,6,432,2,134,''); -INSERT INTO entity_relations VALUES(768,6,434,2,134,''); -INSERT INTO entity_relations VALUES(769,6,445,2,134,''); -INSERT INTO entity_relations VALUES(770,6,448,2,134,''); -INSERT INTO entity_relations VALUES(771,6,449,2,134,''); -INSERT INTO entity_relations VALUES(772,6,580,2,134,''); -INSERT INTO entity_relations VALUES(773,6,424,2,134,''); -INSERT INTO entity_relations VALUES(774,6,441,2,134,''); -INSERT INTO entity_relations VALUES(776,6,576,2,136,''); -INSERT INTO entity_relations VALUES(777,6,445,2,136,''); -INSERT INTO entity_relations VALUES(778,6,448,2,136,''); -INSERT INTO entity_relations VALUES(779,6,449,2,136,''); -INSERT INTO entity_relations VALUES(780,6,580,2,136,''); -INSERT INTO entity_relations VALUES(781,6,432,2,137,''); -INSERT INTO entity_relations VALUES(782,6,434,2,137,''); -INSERT INTO entity_relations VALUES(783,6,435,2,137,''); -INSERT INTO entity_relations VALUES(784,6,445,2,137,''); -INSERT INTO entity_relations VALUES(785,6,448,2,137,''); -INSERT INTO entity_relations VALUES(786,6,449,2,137,''); -INSERT INTO entity_relations VALUES(787,6,580,2,137,''); -INSERT INTO entity_relations VALUES(790,6,432,2,143,''); -INSERT INTO entity_relations VALUES(791,6,434,2,143,''); -INSERT INTO entity_relations VALUES(792,6,435,2,143,''); -INSERT INTO entity_relations VALUES(793,6,445,2,143,''); -INSERT INTO entity_relations VALUES(794,6,448,2,143,''); -INSERT INTO entity_relations VALUES(795,6,449,2,143,''); -INSERT INTO entity_relations VALUES(796,6,580,2,143,''); -INSERT INTO entity_relations VALUES(797,6,432,2,147,''); -INSERT INTO entity_relations VALUES(798,6,434,2,147,''); -INSERT INTO entity_relations VALUES(799,6,435,2,147,''); -INSERT INTO entity_relations VALUES(800,6,438,2,147,''); -INSERT INTO entity_relations VALUES(801,6,445,2,147,''); -INSERT INTO entity_relations VALUES(802,6,448,2,147,''); -INSERT INTO entity_relations VALUES(803,6,580,2,147,''); -INSERT INTO entity_relations VALUES(804,6,432,2,148,''); -INSERT INTO entity_relations VALUES(805,6,434,2,148,''); -INSERT INTO entity_relations VALUES(806,6,445,2,148,''); -INSERT INTO entity_relations VALUES(807,6,448,2,148,''); -INSERT INTO entity_relations VALUES(808,6,449,2,148,''); -INSERT INTO entity_relations VALUES(809,6,580,2,148,''); -INSERT INTO entity_relations VALUES(810,6,577,2,149,''); -INSERT INTO entity_relations VALUES(811,6,443,2,149,''); -INSERT INTO entity_relations VALUES(812,6,445,2,149,''); -INSERT INTO entity_relations VALUES(813,6,448,2,149,''); -INSERT INTO entity_relations VALUES(814,6,449,2,149,''); -INSERT INTO entity_relations VALUES(815,6,580,2,149,''); -INSERT INTO entity_relations VALUES(816,6,576,2,150,''); -INSERT INTO entity_relations VALUES(817,6,438,2,150,''); -INSERT INTO entity_relations VALUES(818,6,580,2,150,''); -INSERT INTO entity_relations VALUES(821,6,576,2,157,''); -INSERT INTO entity_relations VALUES(822,6,438,2,157,''); -INSERT INTO entity_relations VALUES(823,6,447,2,157,''); -INSERT INTO entity_relations VALUES(824,6,590,2,157,''); -INSERT INTO entity_relations VALUES(825,6,580,2,157,''); -INSERT INTO entity_relations VALUES(826,6,580,2,158,''); -INSERT INTO entity_relations VALUES(827,6,576,2,160,''); -INSERT INTO entity_relations VALUES(828,6,448,2,160,''); -INSERT INTO entity_relations VALUES(829,6,580,2,160,''); -INSERT INTO entity_relations VALUES(830,6,434,2,163,''); -INSERT INTO entity_relations VALUES(831,6,445,2,163,''); -INSERT INTO entity_relations VALUES(832,6,448,2,163,''); -INSERT INTO entity_relations VALUES(833,6,580,2,163,''); -INSERT INTO entity_relations VALUES(834,6,576,2,165,''); -INSERT INTO entity_relations VALUES(835,6,438,2,165,''); -INSERT INTO entity_relations VALUES(836,6,447,2,165,''); -INSERT INTO entity_relations VALUES(837,6,448,2,165,''); -INSERT INTO entity_relations VALUES(838,6,580,2,165,''); -INSERT INTO entity_relations VALUES(839,6,454,2,168,''); -INSERT INTO entity_relations VALUES(840,6,427,2,168,''); -INSERT INTO entity_relations VALUES(841,6,432,2,168,''); -INSERT INTO entity_relations VALUES(842,6,434,2,168,''); -INSERT INTO entity_relations VALUES(843,6,427,2,169,''); -INSERT INTO entity_relations VALUES(844,6,434,2,169,''); -INSERT INTO entity_relations VALUES(845,6,435,2,169,''); -INSERT INTO entity_relations VALUES(846,6,448,2,169,''); -INSERT INTO entity_relations VALUES(847,6,580,2,169,''); -INSERT INTO entity_relations VALUES(848,6,576,2,170,''); -INSERT INTO entity_relations VALUES(849,6,438,2,170,''); -INSERT INTO entity_relations VALUES(850,6,579,2,170,''); -INSERT INTO entity_relations VALUES(851,6,448,2,170,''); -INSERT INTO entity_relations VALUES(852,6,580,2,171,''); -INSERT INTO entity_relations VALUES(853,6,580,2,172,''); -INSERT INTO entity_relations VALUES(854,6,580,2,173,''); -INSERT INTO entity_relations VALUES(857,6,580,2,603,''); -INSERT INTO entity_relations VALUES(858,6,432,2,182,''); -INSERT INTO entity_relations VALUES(859,6,434,2,182,''); -INSERT INTO entity_relations VALUES(860,6,435,2,182,''); -INSERT INTO entity_relations VALUES(861,6,445,2,182,''); -INSERT INTO entity_relations VALUES(862,6,448,2,182,''); -INSERT INTO entity_relations VALUES(863,6,449,2,182,''); -INSERT INTO entity_relations VALUES(864,6,580,2,182,''); -INSERT INTO entity_relations VALUES(865,6,580,2,183,''); -INSERT INTO entity_relations VALUES(866,6,576,2,188,''); -INSERT INTO entity_relations VALUES(867,6,438,2,188,''); -INSERT INTO entity_relations VALUES(868,6,445,2,188,''); -INSERT INTO entity_relations VALUES(869,6,447,2,188,''); -INSERT INTO entity_relations VALUES(870,6,448,2,188,''); -INSERT INTO entity_relations VALUES(871,6,580,2,188,''); -INSERT INTO entity_relations VALUES(872,6,580,2,189,''); -INSERT INTO entity_relations VALUES(874,6,441,2,191,''); -INSERT INTO entity_relations VALUES(875,6,435,2,215,''); -INSERT INTO entity_relations VALUES(876,6,580,2,216,''); -INSERT INTO entity_relations VALUES(877,6,434,2,217,''); -INSERT INTO entity_relations VALUES(878,6,435,2,217,''); -INSERT INTO entity_relations VALUES(879,6,445,2,217,''); -INSERT INTO entity_relations VALUES(880,6,448,2,217,''); -INSERT INTO entity_relations VALUES(881,6,449,2,217,''); -INSERT INTO entity_relations VALUES(882,6,580,2,217,''); -INSERT INTO entity_relations VALUES(884,6,424,2,219,''); -INSERT INTO entity_relations VALUES(885,6,434,2,219,''); -INSERT INTO entity_relations VALUES(886,6,435,2,219,''); -INSERT INTO entity_relations VALUES(887,6,438,2,219,''); -INSERT INTO entity_relations VALUES(888,6,442,2,219,''); -INSERT INTO entity_relations VALUES(889,6,445,2,219,''); -INSERT INTO entity_relations VALUES(890,6,448,2,219,''); -INSERT INTO entity_relations VALUES(891,6,449,2,219,''); -INSERT INTO entity_relations VALUES(892,6,580,2,219,''); -INSERT INTO entity_relations VALUES(893,6,434,2,220,''); -INSERT INTO entity_relations VALUES(894,6,435,2,220,''); -INSERT INTO entity_relations VALUES(895,6,437,2,220,''); -INSERT INTO entity_relations VALUES(896,6,445,2,220,''); -INSERT INTO entity_relations VALUES(897,6,448,2,220,''); -INSERT INTO entity_relations VALUES(898,6,580,2,220,''); -INSERT INTO entity_relations VALUES(899,6,441,2,223,''); -INSERT INTO entity_relations VALUES(900,6,441,2,224,''); -INSERT INTO entity_relations VALUES(901,6,580,2,226,''); -INSERT INTO entity_relations VALUES(902,6,424,2,227,''); -INSERT INTO entity_relations VALUES(903,6,434,2,227,''); -INSERT INTO entity_relations VALUES(904,6,435,2,227,''); -INSERT INTO entity_relations VALUES(905,6,445,2,227,''); -INSERT INTO entity_relations VALUES(906,6,434,2,228,''); -INSERT INTO entity_relations VALUES(907,6,435,2,228,''); -INSERT INTO entity_relations VALUES(908,6,445,2,228,''); -INSERT INTO entity_relations VALUES(909,6,448,2,228,''); -INSERT INTO entity_relations VALUES(910,6,449,2,228,''); -INSERT INTO entity_relations VALUES(911,6,580,2,228,''); -INSERT INTO entity_relations VALUES(912,6,580,2,228,''); -INSERT INTO entity_relations VALUES(913,6,424,2,232,''); -INSERT INTO entity_relations VALUES(914,6,434,2,232,''); -INSERT INTO entity_relations VALUES(915,6,437,2,232,''); -INSERT INTO entity_relations VALUES(916,6,445,2,232,''); -INSERT INTO entity_relations VALUES(917,6,448,2,232,''); -INSERT INTO entity_relations VALUES(918,6,449,2,232,''); -INSERT INTO entity_relations VALUES(919,6,580,2,232,''); -INSERT INTO entity_relations VALUES(920,6,432,2,233,''); -INSERT INTO entity_relations VALUES(921,6,434,2,233,''); -INSERT INTO entity_relations VALUES(922,6,435,2,233,''); -INSERT INTO entity_relations VALUES(923,6,445,2,233,''); -INSERT INTO entity_relations VALUES(924,6,448,2,233,''); -INSERT INTO entity_relations VALUES(925,6,449,2,233,''); -INSERT INTO entity_relations VALUES(926,6,580,2,233,''); -INSERT INTO entity_relations VALUES(927,6,576,2,235,''); -INSERT INTO entity_relations VALUES(928,6,441,2,235,''); -INSERT INTO entity_relations VALUES(929,6,445,2,235,''); -INSERT INTO entity_relations VALUES(930,6,448,2,235,''); -INSERT INTO entity_relations VALUES(931,6,449,2,235,''); -INSERT INTO entity_relations VALUES(932,6,580,2,235,''); -INSERT INTO entity_relations VALUES(933,6,576,2,236,''); -INSERT INTO entity_relations VALUES(934,6,578,2,236,''); -INSERT INTO entity_relations VALUES(935,6,580,2,236,''); -INSERT INTO entity_relations VALUES(936,6,580,2,237,''); -INSERT INTO entity_relations VALUES(937,6,580,2,244,''); -INSERT INTO entity_relations VALUES(938,6,576,2,245,''); -INSERT INTO entity_relations VALUES(939,6,578,2,245,''); -INSERT INTO entity_relations VALUES(940,6,580,2,245,''); -INSERT INTO entity_relations VALUES(941,6,576,2,246,''); -INSERT INTO entity_relations VALUES(942,6,438,2,246,''); -INSERT INTO entity_relations VALUES(943,6,580,2,246,''); -INSERT INTO entity_relations VALUES(944,6,427,2,248,''); -INSERT INTO entity_relations VALUES(945,6,429,2,248,''); -INSERT INTO entity_relations VALUES(946,6,453,2,248,''); -INSERT INTO entity_relations VALUES(947,6,434,2,248,''); -INSERT INTO entity_relations VALUES(948,6,435,2,248,''); -INSERT INTO entity_relations VALUES(949,6,436,2,248,''); -INSERT INTO entity_relations VALUES(950,6,438,2,248,''); -INSERT INTO entity_relations VALUES(951,6,580,2,248,''); -INSERT INTO entity_relations VALUES(952,6,441,2,2,''); -INSERT INTO entity_relations VALUES(953,6,578,2,2,''); -INSERT INTO entity_relations VALUES(954,6,576,2,2,''); -INSERT INTO entity_relations VALUES(955,6,580,2,2,''); -INSERT INTO entity_relations VALUES(956,6,580,2,4,''); -INSERT INTO entity_relations VALUES(957,6,438,2,4,''); -INSERT INTO entity_relations VALUES(958,6,418,2,4,''); -INSERT INTO entity_relations VALUES(959,6,425,2,4,''); -INSERT INTO entity_relations VALUES(960,6,576,2,4,''); -INSERT INTO entity_relations VALUES(961,6,448,2,4,''); -INSERT INTO entity_relations VALUES(962,6,449,2,4,''); -INSERT INTO entity_relations VALUES(963,6,445,2,4,''); -INSERT INTO entity_relations VALUES(965,6,580,2,17,''); -INSERT INTO entity_relations VALUES(966,6,454,2,18,''); -INSERT INTO entity_relations VALUES(967,6,427,2,18,''); -INSERT INTO entity_relations VALUES(968,6,445,2,18,''); -INSERT INTO entity_relations VALUES(969,6,580,2,18,''); -INSERT INTO entity_relations VALUES(970,6,432,2,18,''); -INSERT INTO entity_relations VALUES(971,6,448,2,18,''); -INSERT INTO entity_relations VALUES(972,6,434,2,18,''); -INSERT INTO entity_relations VALUES(973,6,435,2,18,''); -INSERT INTO entity_relations VALUES(974,6,580,2,20,''); -INSERT INTO entity_relations VALUES(975,6,449,2,22,''); -INSERT INTO entity_relations VALUES(976,6,445,2,22,''); -INSERT INTO entity_relations VALUES(977,6,448,2,22,''); -INSERT INTO entity_relations VALUES(978,6,576,2,22,''); -INSERT INTO entity_relations VALUES(979,6,441,2,24,''); -INSERT INTO entity_relations VALUES(980,6,591,2,24,''); -INSERT INTO entity_relations VALUES(981,6,580,2,193,''); -INSERT INTO entity_relations VALUES(982,6,580,2,213,''); -INSERT INTO entity_relations VALUES(983,6,438,2,213,''); -INSERT INTO entity_relations VALUES(984,6,576,2,213,''); -INSERT INTO entity_relations VALUES(985,6,445,2,604,''); -INSERT INTO entity_relations VALUES(986,6,449,2,604,''); -INSERT INTO entity_relations VALUES(987,6,576,2,604,''); -INSERT INTO entity_relations VALUES(988,6,448,2,604,''); -INSERT INTO entity_relations VALUES(989,6,580,2,604,''); -INSERT INTO entity_relations VALUES(990,6,580,2,103,''); -INSERT INTO entity_relations VALUES(991,6,438,2,103,''); -INSERT INTO entity_relations VALUES(992,6,418,2,103,''); -INSERT INTO entity_relations VALUES(993,6,425,2,103,''); -INSERT INTO entity_relations VALUES(994,6,434,2,77,''); -INSERT INTO entity_relations VALUES(995,6,435,2,77,''); -INSERT INTO entity_relations VALUES(996,6,580,2,77,''); -INSERT INTO entity_relations VALUES(997,6,580,2,77,''); -INSERT INTO entity_relations VALUES(998,6,576,2,77,''); -INSERT INTO entity_relations VALUES(999,6,578,2,77,''); -INSERT INTO entity_relations VALUES(1000,6,580,2,77,''); -INSERT INTO entity_relations VALUES(1001,6,418,2,117,''); -INSERT INTO entity_relations VALUES(1002,6,576,2,117,''); -INSERT INTO entity_relations VALUES(1003,6,438,2,117,''); -INSERT INTO entity_relations VALUES(1004,6,425,2,117,''); -INSERT INTO entity_relations VALUES(1005,6,580,2,117,''); -INSERT INTO entity_relations VALUES(1006,6,447,2,117,''); -INSERT INTO entity_relations VALUES(1007,6,602,2,117,''); -INSERT INTO entity_relations VALUES(1008,6,590,2,117,''); -INSERT INTO entity_relations VALUES(1009,6,448,2,117,''); -INSERT INTO entity_relations VALUES(1010,6,418,2,119,''); -INSERT INTO entity_relations VALUES(1011,6,425,2,119,''); -INSERT INTO entity_relations VALUES(1012,6,438,2,119,''); -INSERT INTO entity_relations VALUES(1013,6,580,2,119,''); -INSERT INTO entity_relations VALUES(1014,6,580,2,121,''); -INSERT INTO entity_relations VALUES(1015,6,580,2,30,''); -INSERT INTO entity_relations VALUES(1016,6,424,2,43,''); -INSERT INTO entity_relations VALUES(1017,6,418,2,55,''); -INSERT INTO entity_relations VALUES(1018,6,425,2,55,''); -INSERT INTO entity_relations VALUES(1019,6,576,2,55,''); -INSERT INTO entity_relations VALUES(1020,6,580,2,55,''); -INSERT INTO entity_relations VALUES(1021,6,438,2,55,''); -INSERT INTO entity_relations VALUES(1022,6,434,2,56,''); -INSERT INTO entity_relations VALUES(1023,6,427,2,56,''); -INSERT INTO entity_relations VALUES(1024,6,436,2,56,''); -INSERT INTO entity_relations VALUES(1025,6,445,2,63,''); -INSERT INTO entity_relations VALUES(1026,6,576,2,63,''); -INSERT INTO entity_relations VALUES(1027,6,448,2,63,''); -INSERT INTO entity_relations VALUES(1028,6,580,2,63,''); -INSERT INTO entity_relations VALUES(1029,6,418,2,28,''); -INSERT INTO entity_relations VALUES(1030,6,425,2,28,''); -INSERT INTO entity_relations VALUES(1031,6,434,2,28,''); -INSERT INTO entity_relations VALUES(1032,6,438,2,28,''); -INSERT INTO entity_relations VALUES(1033,6,580,2,28,''); -INSERT INTO entity_relations VALUES(1034,6,434,2,34,''); -INSERT INTO entity_relations VALUES(1035,6,427,2,34,''); -INSERT INTO entity_relations VALUES(1036,6,580,2,34,''); -INSERT INTO entity_relations VALUES(1037,6,438,2,34,''); -INSERT INTO entity_relations VALUES(1038,6,580,2,48,''); -INSERT INTO entity_relations VALUES(1039,6,580,2,49,''); -INSERT INTO entity_relations VALUES(1040,6,580,2,52,''); -INSERT INTO entity_relations VALUES(1041,6,445,2,52,''); -INSERT INTO entity_relations VALUES(1042,6,454,2,52,''); -INSERT INTO entity_relations VALUES(1043,6,427,2,52,''); -INSERT INTO entity_relations VALUES(1044,6,429,2,52,''); -INSERT INTO entity_relations VALUES(1045,6,580,2,53,''); -INSERT INTO entity_relations VALUES(1046,6,580,2,62,''); -INSERT INTO entity_relations VALUES(1047,6,576,2,62,''); -INSERT INTO entity_relations VALUES(1048,6,448,2,62,''); -INSERT INTO entity_relations VALUES(1049,6,445,2,62,''); -INSERT INTO entity_relations VALUES(1050,6,438,2,62,''); -INSERT INTO entity_relations VALUES(1051,6,418,2,62,''); -INSERT INTO entity_relations VALUES(1052,6,425,2,62,''); -INSERT INTO entity_relations VALUES(1053,6,445,2,64,''); -INSERT INTO entity_relations VALUES(1054,6,576,2,64,''); -INSERT INTO entity_relations VALUES(1055,6,448,2,64,''); -INSERT INTO entity_relations VALUES(1056,6,580,2,64,''); -INSERT INTO entity_relations VALUES(1057,6,445,2,69,''); -INSERT INTO entity_relations VALUES(1058,6,449,2,69,''); -INSERT INTO entity_relations VALUES(1059,6,424,2,69,''); -INSERT INTO entity_relations VALUES(1060,6,576,2,69,''); -INSERT INTO entity_relations VALUES(1061,6,448,2,69,''); -INSERT INTO entity_relations VALUES(1062,6,580,2,69,''); -INSERT INTO entity_relations VALUES(1063,6,445,2,70,''); -INSERT INTO entity_relations VALUES(1064,6,576,2,70,''); -INSERT INTO entity_relations VALUES(1065,6,580,2,70,''); -INSERT INTO entity_relations VALUES(1066,6,445,2,73,''); -INSERT INTO entity_relations VALUES(1067,6,576,2,73,''); -INSERT INTO entity_relations VALUES(1068,6,580,2,73,''); -INSERT INTO entity_relations VALUES(1069,6,441,2,73,''); -INSERT INTO entity_relations VALUES(1070,6,445,2,605,''); -INSERT INTO entity_relations VALUES(1071,6,576,2,605,''); -INSERT INTO entity_relations VALUES(1072,6,580,2,605,''); -INSERT INTO entity_relations VALUES(1073,6,580,2,606,''); -INSERT INTO entity_relations VALUES(1074,6,576,2,606,''); -INSERT INTO entity_relations VALUES(1075,6,445,2,606,''); -INSERT INTO entity_relations VALUES(1076,6,448,2,606,''); -INSERT INTO entity_relations VALUES(1077,6,449,2,606,''); -INSERT INTO entity_relations VALUES(1078,6,445,2,76,''); -INSERT INTO entity_relations VALUES(1079,6,434,2,76,''); -INSERT INTO entity_relations VALUES(1080,6,435,2,76,''); -INSERT INTO entity_relations VALUES(1081,6,448,2,76,''); -INSERT INTO entity_relations VALUES(1082,6,580,2,76,''); -INSERT INTO entity_relations VALUES(1083,6,445,2,80,''); -INSERT INTO entity_relations VALUES(1084,6,449,2,80,''); -INSERT INTO entity_relations VALUES(1085,6,576,2,80,''); -INSERT INTO entity_relations VALUES(1086,6,448,2,80,''); -INSERT INTO entity_relations VALUES(1087,6,580,2,80,''); -INSERT INTO entity_relations VALUES(1088,6,441,2,80,''); -INSERT INTO entity_relations VALUES(1089,6,438,2,85,''); -INSERT INTO entity_relations VALUES(1090,6,580,2,85,''); -INSERT INTO entity_relations VALUES(1091,6,577,2,91,''); -INSERT INTO entity_relations VALUES(1092,6,438,2,92,''); -INSERT INTO entity_relations VALUES(1093,6,580,2,92,''); -INSERT INTO entity_relations VALUES(1094,6,580,2,95,''); -INSERT INTO entity_relations VALUES(1095,6,438,2,95,''); -INSERT INTO entity_relations VALUES(1096,6,418,2,95,''); -INSERT INTO entity_relations VALUES(1097,6,425,2,95,''); -INSERT INTO entity_relations VALUES(1098,6,580,2,97,''); -INSERT INTO entity_relations VALUES(1099,6,448,2,97,''); -INSERT INTO entity_relations VALUES(1100,6,434,2,97,''); -INSERT INTO entity_relations VALUES(1101,6,435,2,97,''); -INSERT INTO entity_relations VALUES(1102,6,427,2,97,''); -INSERT INTO entity_relations VALUES(1103,6,454,2,97,''); -INSERT INTO entity_relations VALUES(1104,6,438,2,97,''); -INSERT INTO entity_relations VALUES(1105,6,576,2,98,''); -INSERT INTO entity_relations VALUES(1106,6,438,2,98,''); -INSERT INTO entity_relations VALUES(1107,6,580,2,98,''); -INSERT INTO entity_relations VALUES(1108,6,580,2,105,''); -INSERT INTO entity_relations VALUES(1109,6,580,2,107,''); -INSERT INTO entity_relations VALUES(1110,6,438,2,107,''); -INSERT INTO entity_relations VALUES(1111,6,448,2,107,''); -INSERT INTO entity_relations VALUES(1112,6,449,2,107,''); -INSERT INTO entity_relations VALUES(1113,6,580,2,108,''); -INSERT INTO entity_relations VALUES(1114,6,580,2,110,''); -INSERT INTO entity_relations VALUES(1115,6,576,2,110,''); -INSERT INTO entity_relations VALUES(1116,6,438,2,110,''); -INSERT INTO entity_relations VALUES(1117,6,580,2,111,''); -INSERT INTO entity_relations VALUES(1118,6,438,2,111,''); -INSERT INTO entity_relations VALUES(1119,6,580,2,607,''); -INSERT INTO entity_relations VALUES(1120,6,576,2,607,''); -INSERT INTO entity_relations VALUES(1121,6,448,2,607,''); -INSERT INTO entity_relations VALUES(1122,6,449,2,607,''); -INSERT INTO entity_relations VALUES(1123,6,445,2,607,''); -INSERT INTO entity_relations VALUES(1124,6,435,2,142,''); -INSERT INTO entity_relations VALUES(1125,6,580,2,144,''); -INSERT INTO entity_relations VALUES(1126,6,580,2,145,''); -INSERT INTO entity_relations VALUES(1127,6,432,2,145,''); -INSERT INTO entity_relations VALUES(1128,6,434,2,145,''); -INSERT INTO entity_relations VALUES(1129,6,435,2,145,''); -INSERT INTO entity_relations VALUES(1130,6,580,2,146,''); -INSERT INTO entity_relations VALUES(1131,6,434,2,146,''); -INSERT INTO entity_relations VALUES(1132,6,435,2,146,''); -INSERT INTO entity_relations VALUES(1133,6,436,2,146,''); -INSERT INTO entity_relations VALUES(1134,6,432,2,146,''); -INSERT INTO entity_relations VALUES(1135,6,580,2,153,''); -INSERT INTO entity_relations VALUES(1136,6,434,2,153,''); -INSERT INTO entity_relations VALUES(1137,6,435,2,153,''); -INSERT INTO entity_relations VALUES(1138,6,580,2,154,''); -INSERT INTO entity_relations VALUES(1139,6,593,2,155,''); -INSERT INTO entity_relations VALUES(1140,6,443,2,155,''); -INSERT INTO entity_relations VALUES(1141,6,580,2,155,''); -INSERT INTO entity_relations VALUES(1142,6,580,2,156,''); -INSERT INTO entity_relations VALUES(1143,6,438,2,156,''); -INSERT INTO entity_relations VALUES(1144,6,580,2,159,''); -INSERT INTO entity_relations VALUES(1145,6,438,2,159,''); -INSERT INTO entity_relations VALUES(1146,6,425,2,159,''); -INSERT INTO entity_relations VALUES(1147,6,418,2,159,''); -INSERT INTO entity_relations VALUES(1148,6,580,2,161,''); -INSERT INTO entity_relations VALUES(1149,6,580,2,162,''); -INSERT INTO entity_relations VALUES(1150,6,580,2,164,''); -INSERT INTO entity_relations VALUES(1151,6,445,2,166,''); -INSERT INTO entity_relations VALUES(1152,6,449,2,166,''); -INSERT INTO entity_relations VALUES(1153,6,576,2,166,''); -INSERT INTO entity_relations VALUES(1154,6,441,2,166,''); -INSERT INTO entity_relations VALUES(1155,6,438,2,166,''); -INSERT INTO entity_relations VALUES(1156,6,448,2,166,''); -INSERT INTO entity_relations VALUES(1157,6,580,2,166,''); -INSERT INTO entity_relations VALUES(1158,6,445,2,167,''); -INSERT INTO entity_relations VALUES(1159,6,449,2,167,''); -INSERT INTO entity_relations VALUES(1160,6,576,2,167,''); -INSERT INTO entity_relations VALUES(1161,6,448,2,167,''); -INSERT INTO entity_relations VALUES(1162,6,580,2,167,''); -INSERT INTO entity_relations VALUES(1163,6,580,2,174,''); -INSERT INTO entity_relations VALUES(1164,6,434,2,174,''); -INSERT INTO entity_relations VALUES(1165,6,435,2,174,''); -INSERT INTO entity_relations VALUES(1166,6,449,2,174,''); -INSERT INTO entity_relations VALUES(1167,6,445,2,174,''); -INSERT INTO entity_relations VALUES(1168,6,448,2,174,''); -INSERT INTO entity_relations VALUES(1169,6,434,2,175,''); -INSERT INTO entity_relations VALUES(1170,6,435,2,175,''); -INSERT INTO entity_relations VALUES(1171,6,445,2,176,''); -INSERT INTO entity_relations VALUES(1172,6,449,2,176,''); -INSERT INTO entity_relations VALUES(1173,6,434,2,176,''); -INSERT INTO entity_relations VALUES(1174,6,435,2,176,''); -INSERT INTO entity_relations VALUES(1175,6,448,2,176,''); -INSERT INTO entity_relations VALUES(1176,6,580,2,176,''); -INSERT INTO entity_relations VALUES(1177,6,434,2,177,''); -INSERT INTO entity_relations VALUES(1178,6,435,2,177,''); -INSERT INTO entity_relations VALUES(1179,6,580,2,177,''); -INSERT INTO entity_relations VALUES(1180,6,580,2,178,''); -INSERT INTO entity_relations VALUES(1181,6,438,2,178,''); -INSERT INTO entity_relations VALUES(1182,6,576,2,178,''); -INSERT INTO entity_relations VALUES(1183,6,445,2,178,''); -INSERT INTO entity_relations VALUES(1184,6,449,2,178,''); -INSERT INTO entity_relations VALUES(1185,6,448,2,178,''); -INSERT INTO entity_relations VALUES(1186,6,438,2,184,''); -INSERT INTO entity_relations VALUES(1187,6,580,2,184,''); -INSERT INTO entity_relations VALUES(1188,6,445,2,185,''); -INSERT INTO entity_relations VALUES(1189,6,434,2,185,''); -INSERT INTO entity_relations VALUES(1190,6,435,2,185,''); -INSERT INTO entity_relations VALUES(1191,6,437,2,185,''); -INSERT INTO entity_relations VALUES(1192,6,448,2,185,''); -INSERT INTO entity_relations VALUES(1193,6,580,2,185,''); -INSERT INTO entity_relations VALUES(1195,6,580,2,187,''); -INSERT INTO entity_relations VALUES(1196,6,580,2,214,''); -INSERT INTO entity_relations VALUES(1197,6,580,2,221,''); -INSERT INTO entity_relations VALUES(1198,6,580,2,222,''); -INSERT INTO entity_relations VALUES(1199,6,580,2,225,''); -INSERT INTO entity_relations VALUES(1200,6,442,2,225,''); -INSERT INTO entity_relations VALUES(1201,6,424,2,225,''); -INSERT INTO entity_relations VALUES(1202,6,441,2,225,''); -INSERT INTO entity_relations VALUES(1203,6,578,2,225,''); -INSERT INTO entity_relations VALUES(1205,6,580,2,230,''); -INSERT INTO entity_relations VALUES(1206,6,434,2,230,''); -INSERT INTO entity_relations VALUES(1207,6,435,2,230,''); -INSERT INTO entity_relations VALUES(1208,6,436,2,230,''); -INSERT INTO entity_relations VALUES(1209,6,438,2,230,''); -INSERT INTO entity_relations VALUES(1210,6,448,2,230,''); -INSERT INTO entity_relations VALUES(1211,6,580,2,231,''); -INSERT INTO entity_relations VALUES(1212,6,427,2,231,''); -INSERT INTO entity_relations VALUES(1213,6,434,2,231,''); -INSERT INTO entity_relations VALUES(1214,6,435,2,231,''); -INSERT INTO entity_relations VALUES(1215,6,436,2,231,''); -INSERT INTO entity_relations VALUES(1216,6,445,2,234,''); -INSERT INTO entity_relations VALUES(1217,6,437,2,234,''); -INSERT INTO entity_relations VALUES(1218,6,434,2,234,''); -INSERT INTO entity_relations VALUES(1219,6,435,2,234,''); -INSERT INTO entity_relations VALUES(1220,6,448,2,234,''); -INSERT INTO entity_relations VALUES(1221,6,580,2,234,''); -INSERT INTO entity_relations VALUES(1222,6,424,2,234,''); -INSERT INTO entity_relations VALUES(1223,6,580,2,238,''); -INSERT INTO entity_relations VALUES(1224,6,580,2,239,''); -INSERT INTO entity_relations VALUES(1225,6,580,2,240,''); -INSERT INTO entity_relations VALUES(1226,6,580,2,241,''); -INSERT INTO entity_relations VALUES(1227,6,580,2,242,''); -INSERT INTO entity_relations VALUES(1228,6,580,2,243,''); -INSERT INTO entity_relations VALUES(1229,6,580,2,247,''); -INSERT INTO entity_relations VALUES(1230,6,580,2,249,''); -INSERT INTO entity_relations VALUES(1231,6,434,2,249,''); -INSERT INTO entity_relations VALUES(1232,6,435,2,249,''); -INSERT INTO entity_relations VALUES(1233,6,427,2,249,''); -INSERT INTO entity_relations VALUES(1234,6,436,2,249,''); -INSERT INTO entity_relations VALUES(1235,6,432,2,249,''); -INSERT INTO entity_relations VALUES(1236,6,441,2,43,''); -INSERT INTO entity_relations VALUES(1237,6,576,2,224,''); -INSERT INTO entity_relations VALUES(1238,6,580,2,224,''); -INSERT INTO entity_relations VALUES(1239,6,576,8,289,''); -INSERT INTO entity_relations VALUES(1240,6,580,8,289,''); -INSERT INTO entity_relations VALUES(1241,6,578,8,289,''); -INSERT INTO entity_relations VALUES(1242,6,445,2,250,''); -INSERT INTO entity_relations VALUES(1243,6,424,2,250,''); -INSERT INTO entity_relations VALUES(1244,6,576,2,250,''); -INSERT INTO entity_relations VALUES(1245,6,445,2,251,''); -INSERT INTO entity_relations VALUES(1246,6,576,2,251,''); -INSERT INTO entity_relations VALUES(1247,6,580,2,252,''); -INSERT INTO entity_relations VALUES(1248,6,576,2,252,''); -INSERT INTO entity_relations VALUES(1249,6,580,2,253,''); -INSERT INTO entity_relations VALUES(1250,6,576,2,253,''); -INSERT INTO entity_relations VALUES(1251,6,580,2,254,''); -INSERT INTO entity_relations VALUES(1252,6,576,2,254,''); -INSERT INTO entity_relations VALUES(1253,6,580,2,255,''); -INSERT INTO entity_relations VALUES(1254,6,576,2,255,''); -INSERT INTO entity_relations VALUES(1255,6,580,2,256,''); -INSERT INTO entity_relations VALUES(1256,6,576,2,256,''); -INSERT INTO entity_relations VALUES(1257,6,580,2,257,''); -INSERT INTO entity_relations VALUES(1258,6,576,2,257,''); -INSERT INTO entity_relations VALUES(1259,6,580,2,258,''); -INSERT INTO entity_relations VALUES(1260,6,576,2,258,''); -INSERT INTO entity_relations VALUES(1261,6,576,2,322,''); -INSERT INTO entity_relations VALUES(1262,6,576,10,611,''); -INSERT INTO entity_relations VALUES(1263,6,576,2,612,''); -INSERT INTO entity_relations VALUES(1264,6,576,2,613,''); -INSERT INTO entity_relations VALUES(1265,6,576,2,614,''); -INSERT INTO entity_relations VALUES(1266,6,576,8,615,''); -INSERT INTO entity_relations VALUES(1267,6,576,10,616,''); -INSERT INTO entity_relations VALUES(1268,6,576,10,618,''); -INSERT INTO entity_relations VALUES(1269,6,576,2,619,''); -INSERT INTO entity_relations VALUES(1270,6,576,10,620,''); -INSERT INTO entity_relations VALUES(1271,6,576,2,621,''); -INSERT INTO entity_relations VALUES(1272,6,576,2,622,''); -INSERT INTO entity_relations VALUES(1273,6,576,2,623,''); -INSERT INTO entity_relations VALUES(1274,6,576,2,624,''); -INSERT INTO entity_relations VALUES(1275,6,576,2,625,''); -INSERT INTO entity_relations VALUES(1276,6,576,2,626,''); -INSERT INTO entity_relations VALUES(1277,6,576,2,627,''); -INSERT INTO entity_relations VALUES(1278,6,576,2,628,''); -INSERT INTO entity_relations VALUES(1279,6,576,2,629,''); -INSERT INTO entity_relations VALUES(1280,6,576,10,630,''); -INSERT INTO entity_relations VALUES(1281,6,576,2,631,''); -INSERT INTO entity_relations VALUES(1282,6,576,2,632,''); -INSERT INTO entity_relations VALUES(1283,6,576,10,633,''); -INSERT INTO entity_relations VALUES(1284,6,576,2,634,''); -INSERT INTO entity_relations VALUES(1285,6,576,10,635,''); -INSERT INTO entity_relations VALUES(1286,6,576,2,636,''); -INSERT INTO entity_relations VALUES(1287,6,576,2,637,''); -INSERT INTO entity_relations VALUES(1288,6,576,10,638,''); -INSERT INTO entity_relations VALUES(1289,6,576,10,639,''); -INSERT INTO entity_relations VALUES(1290,6,576,2,640,''); -INSERT INTO entity_relations VALUES(1291,6,576,2,641,''); -INSERT INTO entity_relations VALUES(1292,6,576,2,642,''); -INSERT INTO entity_relations VALUES(1293,6,576,2,643,''); -INSERT INTO entity_relations VALUES(1294,6,576,2,644,''); -INSERT INTO entity_relations VALUES(1295,6,576,2,645,''); -INSERT INTO entity_relations VALUES(1296,6,576,2,646,''); -INSERT INTO entity_relations VALUES(1297,6,576,2,647,''); -INSERT INTO entity_relations VALUES(1298,6,576,8,648,''); -INSERT INTO entity_relations VALUES(1299,6,576,2,649,''); -INSERT INTO entity_relations VALUES(1300,6,576,2,650,''); -INSERT INTO entity_relations VALUES(1301,6,576,2,651,''); -INSERT INTO entity_relations VALUES(1302,6,576,10,652,''); -INSERT INTO entity_relations VALUES(1303,6,580,9,660,''); -INSERT INTO entity_relations VALUES(1304,6,576,9,660,''); -INSERT INTO entity_relations VALUES(1305,6,438,9,660,''); -INSERT INTO entity_relations VALUES(1306,6,441,9,653,''); -INSERT INTO entity_relations VALUES(1307,6,437,9,653,''); -INSERT INTO entity_relations VALUES(1308,6,591,9,653,''); -INSERT INTO entity_relations VALUES(1309,6,580,9,654,''); -INSERT INTO entity_relations VALUES(1310,6,576,9,654,''); -INSERT INTO entity_relations VALUES(1311,6,578,9,654,''); -INSERT INTO entity_relations VALUES(1312,6,576,9,655,''); -INSERT INTO entity_relations VALUES(1313,6,576,2,656,''); -INSERT INTO entity_relations VALUES(1314,6,580,2,656,''); -INSERT INTO entity_relations VALUES(1315,6,578,2,656,''); -INSERT INTO entity_relations VALUES(1316,6,441,9,657,''); -INSERT INTO entity_relations VALUES(1317,6,576,2,5,''); -INSERT INTO entity_relations VALUES(1318,6,580,2,5,''); -INSERT INTO entity_relations VALUES(1319,6,578,2,5,''); -INSERT INTO entity_relations VALUES(1320,6,438,2,5,''); -INSERT INTO entity_relations VALUES(1321,6,593,9,659,''); -INSERT INTO entity_relations VALUES(1322,6,443,9,659,''); -INSERT INTO entity_relations VALUES(1323,6,580,9,659,''); -INSERT INTO entity_relations VALUES(1324,6,580,10,661,''); -INSERT INTO entity_relations VALUES(1325,6,443,9,662,''); -INSERT INTO entity_relations VALUES(1326,6,578,9,662,''); -INSERT INTO entity_relations VALUES(1327,6,593,9,662,''); -INSERT INTO entity_relations VALUES(1328,6,580,9,662,''); -INSERT INTO entity_relations VALUES(1329,6,580,9,663,''); -INSERT INTO entity_relations VALUES(1330,6,576,9,663,''); -INSERT INTO entity_relations VALUES(1331,6,580,9,664,''); -INSERT INTO entity_relations VALUES(1332,6,442,9,664,''); -INSERT INTO entity_relations VALUES(1333,6,578,9,664,''); -INSERT INTO entity_relations VALUES(1334,6,593,9,665,''); -INSERT INTO entity_relations VALUES(1335,6,580,9,665,''); -INSERT INTO entity_relations VALUES(1336,6,438,9,665,''); -INSERT INTO entity_relations VALUES(1337,6,578,9,665,''); -INSERT INTO entity_relations VALUES(1338,6,576,9,665,''); -INSERT INTO entity_relations VALUES(1339,6,576,2,666,''); -INSERT INTO entity_relations VALUES(1340,6,580,2,666,''); -INSERT INTO entity_relations VALUES(1341,6,578,2,666,''); -INSERT INTO entity_relations VALUES(1342,6,577,2,667,''); -INSERT INTO entity_relations VALUES(1343,6,577,2,668,''); -INSERT INTO entity_relations VALUES(1344,6,576,8,669,''); -INSERT INTO entity_relations VALUES(1345,6,580,8,669,''); -INSERT INTO entity_relations VALUES(1346,6,449,8,669,''); -INSERT INTO entity_relations VALUES(1347,6,576,8,670,''); -INSERT INTO entity_relations VALUES(1348,6,580,8,670,''); -INSERT INTO entity_relations VALUES(1349,6,449,8,670,''); -INSERT INTO entity_relations VALUES(1350,6,576,2,634,''); -INSERT INTO entity_relations VALUES(1351,6,576,4,672,''); -INSERT INTO entity_relations VALUES(1352,6,578,9,344,''); -INSERT INTO entity_relations VALUES(1353,6,580,9,344,''); -INSERT INTO entity_relations VALUES(1354,6,580,2,674,''); -INSERT INTO entity_relations VALUES(1355,6,576,2,674,''); -INSERT INTO entity_relations VALUES(1356,6,578,2,674,''); -INSERT INTO entity_relations VALUES(1357,6,580,2,675,''); -INSERT INTO entity_relations VALUES(1358,6,578,2,675,''); -INSERT INTO entity_relations VALUES(1359,6,576,2,676,''); -INSERT INTO entity_relations VALUES(1360,6,578,2,676,''); -INSERT INTO entity_relations VALUES(1361,6,578,2,677,''); -INSERT INTO entity_relations VALUES(1362,6,576,2,677,''); -INSERT INTO entity_relations VALUES(1363,6,580,2,677,''); -INSERT INTO entity_relations VALUES(1364,6,438,2,677,''); -INSERT INTO entity_relations VALUES(1365,6,576,2,678,''); -INSERT INTO entity_relations VALUES(1366,6,577,2,679,''); -INSERT INTO entity_relations VALUES(1367,6,577,9,689,''); -INSERT INTO entity_relations VALUES(1368,6,424,2,690,''); -INSERT INTO entity_relations VALUES(1369,6,424,2,691,''); -INSERT INTO entity_relations VALUES(1370,6,577,2,693,''); -INSERT INTO entity_relations VALUES(1371,6,576,2,695,''); -INSERT INTO entity_relations VALUES(1372,6,578,2,695,''); -INSERT INTO entity_relations VALUES(1373,6,580,2,695,''); -INSERT INTO entity_relations VALUES(1374,6,576,2,694,''); -INSERT INTO entity_relations VALUES(1375,6,578,2,694,''); -INSERT INTO entity_relations VALUES(1376,9,584,2,697,''); -INSERT INTO entity_relations VALUES(1377,6,576,2,697,''); -INSERT INTO entity_relations VALUES(1378,6,580,2,697,''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1, 6, 580, 10, 497, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (2, 6, 580, 10, 498, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (3, 6, 580, 10, 592, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (4, 6, 580, 10, 500, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (5, 6, 418, 10, 501, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (6, 6, 425, 10, 501, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (7, 6, 438, 10, 501, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (8, 6, 580, 10, 501, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (9, 6, 441, 10, 502, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (10, 6, 591, 10, 502, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (11, 6, 576, 10, 503, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (12, 6, 438, 10, 503, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (13, 6, 580, 10, 503, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (14, 6, 418, 10, 504, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (15, 6, 425, 10, 504, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (16, 6, 576, 10, 504, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (17, 6, 438, 10, 504, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (18, 6, 448, 10, 504, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (19, 6, 580, 10, 504, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (20, 6, 580, 10, 505, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (22, 6, 576, 10, 507, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (23, 6, 438, 10, 507, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (24, 6, 445, 10, 507, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (25, 6, 447, 10, 507, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (26, 6, 590, 10, 507, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (27, 6, 580, 10, 507, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (28, 6, 576, 10, 508, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (29, 6, 438, 10, 508, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (30, 6, 580, 10, 508, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (32, 8, 609, 7, 490, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (33, 8, 609, 7, 489, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (34, 8, 609, 7, 491, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (35, 8, 268, 7, 492, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (36, 8, 610, 7, 494, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (37, 8, 276, 7, 495, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (38, 8, 279, 7, 496, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (39, 10, 497, 7, 482, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (40, 10, 497, 7, 483, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (41, 10, 497, 7, 484, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (42, 10, 497, 7, 485, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (43, 10, 497, 7, 486, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (44, 10, 497, 7, 487, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (45, 10, 500, 7, 488, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (46, 2, 33, 5, 455, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (47, 2, 46, 5, 456, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (48, 2, 62, 5, 457, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (49, 2, 68, 5, 458, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (50, 2, 606, 5, 459, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (51, 2, 604, 5, 460, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (52, 2, 604, 5, 461, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (53, 2, 604, 5, 462, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (54, 2, 604, 5, 463, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (55, 2, 104, 5, 464, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (56, 2, 581, 5, 466, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (57, 2, 581, 5, 467, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (58, 2, 581, 5, 468, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (59, 2, 581, 5, 469, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (60, 2, 581, 5, 470, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (61, 2, 581, 5, 471, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (62, 2, 581, 5, 473, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (63, 2, 581, 5, 465, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (64, 2, 581, 5, 472, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (65, 2, 134, 5, 474, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (66, 2, 134, 5, 475, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (67, 2, 134, 5, 478, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (68, 2, 174, 5, 476, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (69, 2, 174, 5, 477, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (70, 2, 190, 5, 479, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (71, 2, 190, 5, 480, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (72, 2, 217, 5, 481, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (73, 9, 582, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (74, 9, 583, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (75, 9, 584, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (76, 9, 346, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (77, 9, 585, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (78, 9, 586, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (79, 9, 587, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (80, 9, 588, 12, 375, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (81, 9, 583, 12, 376, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (82, 9, 584, 12, 376, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (83, 9, 585, 12, 376, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (84, 9, 307, 12, 377, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (85, 9, 584, 12, 378, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (86, 9, 584, 12, 379, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (87, 9, 584, 12, 380, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (88, 9, 584, 12, 381, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (89, 9, 584, 12, 382, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (90, 9, 584, 12, 383, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (91, 9, 584, 12, 384, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (92, 9, 584, 12, 385, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (93, 9, 584, 12, 386, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (94, 9, 584, 12, 387, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (95, 9, 584, 12, 388, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (96, 9, 584, 12, 389, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (97, 9, 584, 12, 390, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (98, 9, 584, 12, 391, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (99, 9, 584, 12, 392, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (100, 9, 584, 12, 393, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (101, 9, 584, 12, 394, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (102, 9, 584, 12, 395, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (103, 9, 584, 12, 396, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (104, 9, 584, 12, 397, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (105, 9, 584, 12, 398, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (106, 9, 584, 12, 399, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (107, 9, 584, 12, 400, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (108, 9, 584, 12, 401, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (109, 9, 584, 12, 402, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (110, 9, 584, 12, 403, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (111, 9, 584, 12, 404, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (112, 9, 589, 12, 405, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (113, 9, 589, 12, 406, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (114, 9, 589, 12, 407, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (115, 9, 589, 12, 408, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (116, 9, 589, 12, 409, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (117, 9, 589, 12, 410, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (118, 9, 589, 12, 411, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (119, 9, 589, 12, 412, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (120, 9, 589, 12, 413, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (121, 9, 589, 12, 414, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (122, 9, 589, 12, 415, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (123, 9, 311, 12, 416, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (124, 9, 584, 12, 416, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (125, 9, 589, 12, 416, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (126, 9, 586, 12, 416, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (127, 9, 587, 12, 416, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (128, 9, 585, 12, 417, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (129, 6, 580, 9, 299, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (130, 6, 576, 9, 300, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (131, 6, 578, 9, 300, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (133, 6, 580, 9, 302, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (135, 6, 580, 9, 582, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (138, 6, 593, 9, 308, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (139, 6, 577, 9, 309, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (140, 6, 441, 9, 594, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (141, 6, 442, 9, 594, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (142, 6, 578, 9, 594, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (143, 6, 576, 9, 594, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (144, 6, 595, 9, 594, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (145, 6, 580, 9, 594, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (146, 6, 591, 9, 594, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (147, 6, 580, 9, 311, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (149, 6, 418, 9, 313, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (150, 6, 425, 9, 313, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (151, 6, 576, 9, 313, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (152, 6, 438, 9, 313, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (153, 6, 580, 9, 313, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (154, 6, 576, 9, 314, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (155, 6, 441, 9, 314, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (156, 6, 578, 9, 314, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (157, 6, 580, 9, 314, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (158, 6, 608, 9, 314, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (159, 6, 591, 9, 314, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (165, 6, 597, 9, 321, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (166, 6, 577, 9, 321, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (167, 6, 442, 9, 321, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (168, 6, 443, 9, 321, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (169, 6, 578, 9, 321, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (170, 6, 608, 9, 321, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (172, 6, 576, 9, 323, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (173, 6, 438, 9, 323, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (174, 6, 579, 9, 323, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (175, 6, 580, 9, 323, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (180, 6, 441, 9, 328, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (181, 6, 598, 9, 328, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (182, 6, 608, 9, 328, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (183, 6, 591, 9, 328, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (184, 6, 424, 9, 329, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (188, 6, 597, 9, 338, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (189, 6, 577, 9, 338, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (190, 6, 591, 9, 338, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (191, 6, 576, 9, 339, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (192, 6, 578, 9, 339, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (193, 6, 580, 9, 339, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (194, 6, 580, 9, 340, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (196, 6, 431, 9, 342, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (197, 6, 442, 9, 342, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (198, 6, 445, 9, 342, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (199, 6, 448, 9, 342, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (200, 6, 449, 9, 342, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (201, 6, 580, 9, 342, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (205, 6, 576, 9, 585, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (206, 6, 438, 9, 585, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (207, 6, 578, 9, 585, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (208, 6, 580, 9, 585, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (209, 6, 576, 9, 586, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (210, 6, 438, 9, 586, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (211, 6, 578, 9, 586, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (212, 6, 580, 9, 586, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (213, 6, 577, 9, 351, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (214, 6, 445, 9, 351, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (215, 6, 580, 9, 351, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (216, 6, 608, 9, 351, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (221, 6, 424, 9, 356, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (222, 6, 577, 9, 356, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (223, 6, 443, 9, 356, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (224, 6, 445, 9, 356, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (225, 6, 608, 9, 356, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (226, 6, 591, 9, 356, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (227, 6, 424, 9, 357, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (228, 6, 441, 9, 357, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (229, 6, 442, 9, 357, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (230, 6, 580, 9, 357, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (231, 6, 591, 9, 357, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (236, 6, 576, 9, 362, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (237, 6, 438, 9, 362, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (238, 6, 578, 9, 362, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (239, 6, 580, 9, 362, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (240, 6, 576, 9, 363, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (241, 6, 438, 9, 363, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (242, 6, 578, 9, 363, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (243, 6, 580, 9, 363, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (244, 6, 576, 9, 364, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (245, 6, 438, 9, 364, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (246, 6, 441, 9, 364, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (247, 6, 447, 9, 364, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (248, 6, 580, 9, 364, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (249, 6, 576, 9, 365, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (250, 6, 438, 9, 365, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (251, 6, 578, 9, 365, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (252, 6, 580, 9, 365, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (255, 6, 418, 9, 368, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (256, 6, 425, 9, 368, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (257, 6, 576, 9, 368, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (258, 6, 438, 9, 368, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (259, 6, 578, 9, 368, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (260, 6, 579, 9, 368, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (261, 6, 580, 9, 368, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (262, 6, 580, 9, 369, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (263, 6, 593, 9, 370, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (264, 6, 580, 9, 370, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (265, 6, 438, 9, 371, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (266, 6, 580, 9, 371, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (267, 6, 580, 9, 372, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (269, 6, 580, 9, 374, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (270, 6, 576, 8, 259, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (271, 6, 445, 8, 259, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (272, 6, 448, 8, 259, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (273, 6, 449, 8, 259, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (274, 6, 580, 8, 259, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (275, 6, 434, 8, 260, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (276, 6, 436, 8, 260, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (277, 6, 448, 8, 260, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (278, 6, 580, 8, 260, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (279, 6, 576, 8, 260, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (280, 6, 578, 8, 260, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (281, 6, 438, 8, 260, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (282, 6, 576, 8, 261, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (283, 6, 580, 8, 261, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (284, 6, 432, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (285, 6, 434, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (286, 6, 435, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (287, 6, 445, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (288, 6, 448, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (289, 6, 449, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (290, 6, 580, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (291, 6, 434, 8, 263, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (292, 6, 435, 8, 263, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (293, 6, 436, 8, 263, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (294, 6, 438, 8, 263, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (295, 6, 445, 8, 263, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (296, 6, 448, 8, 263, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (297, 6, 580, 8, 263, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (298, 6, 576, 8, 264, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (299, 6, 438, 8, 264, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (300, 6, 445, 8, 264, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (301, 6, 447, 8, 264, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (302, 6, 590, 8, 264, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (303, 6, 448, 8, 264, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (304, 6, 580, 8, 609, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (305, 6, 576, 8, 268, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (306, 6, 434, 8, 268, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (307, 6, 578, 8, 268, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (308, 6, 448, 8, 268, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (309, 6, 580, 8, 268, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (310, 6, 580, 8, 268, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (311, 6, 425, 8, 269, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (312, 6, 576, 8, 269, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (313, 6, 438, 8, 269, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (314, 6, 576, 8, 270, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (315, 6, 438, 8, 270, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (316, 6, 580, 8, 270, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (317, 6, 576, 8, 271, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (318, 6, 438, 8, 271, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (319, 6, 578, 8, 271, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (320, 6, 580, 8, 271, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (321, 6, 448, 8, 272, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (322, 6, 580, 8, 272, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (323, 6, 576, 8, 273, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (324, 6, 445, 8, 273, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (325, 6, 448, 8, 273, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (326, 6, 449, 8, 273, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (327, 6, 580, 8, 273, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (328, 6, 576, 8, 274, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (329, 6, 438, 8, 274, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (330, 6, 445, 8, 274, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (331, 6, 579, 8, 274, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (332, 6, 449, 8, 274, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (333, 6, 580, 8, 274, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (334, 6, 580, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (335, 6, 432, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (336, 6, 434, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (337, 6, 435, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (338, 6, 438, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (339, 6, 445, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (340, 6, 448, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (341, 6, 449, 8, 610, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (342, 6, 432, 8, 276, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (343, 6, 434, 8, 276, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (344, 6, 435, 8, 276, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (345, 6, 445, 8, 276, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (346, 6, 448, 8, 276, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (347, 6, 449, 8, 276, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (348, 6, 580, 8, 276, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (349, 6, 576, 8, 278, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (350, 6, 438, 8, 278, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (351, 6, 578, 8, 278, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (352, 6, 580, 8, 278, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (353, 6, 576, 8, 280, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (354, 6, 438, 8, 280, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (355, 6, 580, 8, 280, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (356, 6, 580, 8, 282, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (357, 6, 432, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (358, 6, 434, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (359, 6, 435, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (360, 6, 445, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (361, 6, 448, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (362, 6, 449, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (363, 6, 580, 8, 600, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (364, 6, 424, 8, 283, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (365, 6, 576, 8, 283, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (366, 6, 445, 8, 283, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (367, 6, 448, 8, 283, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (368, 6, 449, 8, 283, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (369, 6, 580, 8, 283, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (370, 6, 424, 8, 284, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (371, 6, 576, 8, 284, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (372, 6, 441, 8, 284, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (373, 6, 445, 8, 284, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (374, 6, 448, 8, 284, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (375, 6, 449, 8, 284, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (376, 6, 580, 8, 284, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (377, 6, 580, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (378, 6, 424, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (379, 6, 576, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (380, 6, 441, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (381, 6, 445, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (382, 6, 448, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (383, 6, 449, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (384, 6, 580, 8, 285, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (385, 6, 424, 8, 286, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (386, 6, 576, 8, 286, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (387, 6, 441, 8, 286, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (388, 6, 445, 8, 286, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (389, 6, 448, 8, 286, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (390, 6, 449, 8, 286, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (391, 6, 580, 8, 286, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (392, 6, 424, 8, 287, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (393, 6, 576, 8, 287, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (394, 6, 441, 8, 287, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (395, 6, 445, 8, 287, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (396, 6, 448, 8, 287, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (397, 6, 449, 8, 287, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (398, 6, 580, 8, 287, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (399, 6, 445, 8, 265, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (400, 6, 449, 8, 265, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (401, 6, 576, 8, 265, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (402, 6, 448, 8, 265, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (403, 6, 580, 8, 265, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (404, 6, 424, 8, 265, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (405, 6, 441, 8, 265, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (406, 6, 434, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (407, 6, 432, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (408, 6, 427, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (409, 6, 435, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (410, 6, 436, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (411, 6, 448, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (412, 6, 580, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (413, 6, 438, 8, 277, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (414, 6, 445, 8, 279, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (415, 6, 449, 8, 279, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (416, 6, 576, 8, 279, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (417, 6, 448, 8, 279, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (418, 6, 580, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (419, 6, 445, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (420, 6, 449, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (421, 6, 445, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (422, 6, 449, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (423, 6, 580, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (424, 6, 448, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (425, 6, 434, 8, 281, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (426, 6, 576, 8, 268, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (427, 6, 580, 8, 268, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (428, 6, 578, 8, 268, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (429, 6, 441, 2, 1, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (431, 6, 576, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (432, 6, 438, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (433, 6, 578, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (434, 6, 580, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (435, 6, 576, 2, 6, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (436, 6, 438, 2, 6, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (437, 6, 578, 2, 6, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (438, 6, 580, 2, 6, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (439, 6, 576, 2, 8, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (440, 6, 438, 2, 8, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (441, 6, 578, 2, 8, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (442, 6, 580, 2, 8, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (443, 6, 576, 2, 9, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (444, 6, 438, 2, 9, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (445, 6, 580, 2, 9, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (446, 6, 578, 2, 9, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (447, 6, 576, 2, 10, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (448, 6, 438, 2, 10, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (449, 6, 578, 2, 10, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (450, 6, 580, 2, 10, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (451, 6, 576, 2, 11, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (452, 6, 438, 2, 11, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (453, 6, 580, 2, 11, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (454, 6, 419, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (455, 6, 427, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (456, 6, 429, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (457, 6, 431, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (458, 6, 434, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (459, 6, 435, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (460, 6, 436, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (461, 6, 438, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (462, 6, 443, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (463, 6, 579, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (464, 6, 449, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (465, 6, 580, 2, 12, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (467, 6, 576, 2, 14, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (468, 6, 438, 2, 14, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (469, 6, 579, 2, 14, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (470, 6, 580, 2, 14, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (471, 6, 427, 2, 15, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (472, 6, 434, 2, 15, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (473, 6, 580, 2, 15, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (474, 6, 576, 2, 16, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (475, 6, 445, 2, 16, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (476, 6, 448, 2, 16, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (477, 6, 449, 2, 16, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (478, 6, 580, 2, 16, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (479, 6, 576, 2, 19, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (480, 6, 445, 2, 19, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (481, 6, 448, 2, 19, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (482, 6, 449, 2, 19, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (483, 6, 580, 2, 19, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (484, 6, 427, 2, 21, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (485, 6, 431, 2, 21, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (486, 6, 432, 2, 21, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (487, 6, 434, 2, 21, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (488, 6, 435, 2, 21, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (489, 6, 580, 2, 21, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (490, 6, 576, 2, 23, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (491, 6, 445, 2, 23, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (492, 6, 448, 2, 23, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (493, 6, 580, 2, 23, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (494, 6, 424, 2, 25, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (495, 6, 593, 2, 25, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (496, 6, 577, 2, 25, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (497, 6, 443, 2, 25, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (498, 6, 578, 2, 25, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (499, 6, 580, 2, 25, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (500, 6, 591, 2, 25, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (502, 6, 427, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (503, 6, 429, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (504, 6, 432, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (505, 6, 434, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (506, 6, 435, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (507, 6, 436, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (508, 6, 438, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (509, 6, 445, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (510, 6, 447, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (511, 6, 448, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (512, 6, 580, 2, 27, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (513, 6, 448, 2, 29, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (514, 6, 580, 2, 29, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (515, 6, 576, 2, 31, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (516, 6, 580, 2, 32, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (517, 6, 576, 2, 32, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (519, 6, 418, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (520, 6, 425, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (521, 6, 434, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (522, 6, 435, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (523, 6, 436, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (524, 6, 445, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (525, 6, 448, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (526, 6, 580, 2, 36, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (527, 6, 427, 2, 37, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (528, 6, 434, 2, 37, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (529, 6, 435, 2, 37, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (530, 6, 436, 2, 37, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (531, 6, 438, 2, 37, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (532, 6, 580, 2, 37, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (534, 6, 580, 2, 39, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (535, 6, 434, 2, 40, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (536, 6, 435, 2, 40, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (537, 6, 441, 2, 40, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (538, 6, 445, 2, 40, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (539, 6, 448, 2, 40, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (540, 6, 449, 2, 40, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (541, 6, 580, 2, 40, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (542, 6, 580, 2, 41, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (543, 6, 580, 2, 42, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (544, 6, 576, 2, 43, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (545, 6, 438, 2, 43, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (546, 6, 445, 2, 43, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (547, 6, 580, 2, 43, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (548, 6, 576, 2, 44, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (549, 6, 578, 2, 44, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (550, 6, 580, 2, 44, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (551, 6, 576, 2, 45, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (552, 6, 438, 2, 45, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (553, 6, 578, 2, 45, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (554, 6, 580, 2, 45, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (555, 6, 576, 2, 46, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (556, 6, 438, 2, 46, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (557, 6, 448, 2, 46, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (558, 6, 580, 2, 46, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (559, 6, 427, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (560, 6, 429, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (561, 6, 431, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (562, 6, 432, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (563, 6, 434, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (564, 6, 435, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (565, 6, 436, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (566, 6, 580, 2, 47, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (568, 6, 425, 2, 51, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (569, 6, 438, 2, 51, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (570, 6, 580, 2, 51, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (571, 6, 418, 2, 54, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (572, 6, 425, 2, 54, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (573, 6, 438, 2, 54, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (574, 6, 580, 2, 54, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (575, 6, 427, 2, 57, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (576, 6, 429, 2, 57, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (577, 6, 432, 2, 57, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (578, 6, 434, 2, 57, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (579, 6, 435, 2, 57, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (580, 6, 436, 2, 57, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (581, 6, 580, 2, 57, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (582, 6, 449, 2, 58, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (583, 6, 449, 2, 59, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (584, 6, 434, 2, 60, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (585, 6, 435, 2, 60, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (586, 6, 447, 2, 60, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (587, 6, 448, 2, 60, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (588, 6, 580, 2, 60, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (590, 6, 434, 2, 65, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (591, 6, 435, 2, 65, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (592, 6, 437, 2, 65, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (593, 6, 445, 2, 65, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (594, 6, 448, 2, 65, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (595, 6, 449, 2, 65, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (596, 6, 580, 2, 65, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (597, 6, 576, 2, 66, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (598, 6, 445, 2, 66, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (599, 6, 448, 2, 66, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (600, 6, 449, 2, 66, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (601, 6, 580, 2, 66, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (602, 6, 576, 2, 67, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (603, 6, 445, 2, 67, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (604, 6, 580, 2, 67, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (605, 6, 576, 2, 68, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (606, 6, 441, 2, 68, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (607, 6, 445, 2, 68, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (608, 6, 448, 2, 68, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (609, 6, 449, 2, 68, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (610, 6, 580, 2, 68, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (611, 6, 580, 2, 71, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (612, 6, 418, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (613, 6, 425, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (614, 6, 576, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (615, 6, 438, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (616, 6, 445, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (617, 6, 448, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (618, 6, 449, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (619, 6, 580, 2, 72, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (620, 6, 424, 2, 79, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (621, 6, 576, 2, 79, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (622, 6, 445, 2, 79, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (623, 6, 448, 2, 79, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (624, 6, 449, 2, 79, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (625, 6, 580, 2, 79, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (626, 6, 424, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (627, 6, 576, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (628, 6, 441, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (629, 6, 445, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (630, 6, 448, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (631, 6, 449, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (632, 6, 580, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (633, 6, 591, 2, 81, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (634, 6, 434, 2, 82, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (635, 6, 435, 2, 82, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (636, 6, 445, 2, 82, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (637, 6, 580, 2, 82, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (638, 6, 576, 2, 83, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (639, 6, 441, 2, 83, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (640, 6, 445, 2, 83, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (641, 6, 448, 2, 83, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (642, 6, 449, 2, 83, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (643, 6, 580, 2, 83, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (644, 6, 576, 2, 601, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (645, 6, 441, 2, 601, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (646, 6, 445, 2, 601, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (647, 6, 448, 2, 601, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (648, 6, 449, 2, 601, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (649, 6, 580, 2, 601, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (650, 6, 441, 2, 84, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (651, 6, 576, 2, 86, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (652, 6, 580, 2, 86, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (653, 6, 434, 2, 87, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (654, 6, 435, 2, 87, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (655, 6, 445, 2, 87, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (656, 6, 448, 2, 87, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (657, 6, 580, 2, 87, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (658, 6, 576, 2, 88, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (659, 6, 442, 2, 88, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (660, 6, 445, 2, 88, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (661, 6, 448, 2, 88, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (662, 6, 449, 2, 88, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (663, 6, 580, 2, 88, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (664, 6, 427, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (665, 6, 429, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (666, 6, 453, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (667, 6, 431, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (668, 6, 434, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (669, 6, 436, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (670, 6, 438, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (671, 6, 447, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (672, 6, 590, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (673, 6, 580, 2, 90, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (674, 6, 576, 2, 93, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (675, 6, 438, 2, 93, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (676, 6, 580, 2, 93, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (677, 6, 418, 2, 94, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (678, 6, 425, 2, 94, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (679, 6, 438, 2, 94, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (680, 6, 580, 2, 94, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (681, 6, 580, 2, 96, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (682, 6, 580, 2, 99, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (683, 6, 580, 2, 100, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (684, 6, 580, 2, 101, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (685, 6, 580, 2, 102, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (686, 6, 580, 2, 104, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (687, 6, 580, 2, 106, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (688, 6, 580, 2, 109, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (689, 6, 580, 2, 112, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (690, 6, 580, 2, 113, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (691, 6, 580, 2, 114, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (692, 6, 576, 2, 115, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (693, 6, 438, 2, 115, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (694, 6, 580, 2, 115, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (695, 6, 576, 2, 116, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (696, 6, 438, 2, 116, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (697, 6, 447, 2, 116, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (698, 6, 448, 2, 116, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (699, 6, 580, 2, 116, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (700, 6, 424, 2, 118, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (701, 6, 576, 2, 118, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (702, 6, 441, 2, 118, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (703, 6, 445, 2, 118, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (704, 6, 448, 2, 118, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (705, 6, 449, 2, 118, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (706, 6, 580, 2, 118, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (707, 6, 576, 2, 581, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (708, 6, 580, 2, 581, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (709, 6, 578, 2, 581, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (710, 6, 580, 2, 121, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (711, 6, 576, 2, 122, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (712, 6, 438, 2, 122, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (713, 6, 445, 2, 122, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (714, 6, 447, 2, 122, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (715, 6, 448, 2, 122, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (716, 6, 449, 2, 122, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (717, 6, 580, 2, 122, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (718, 6, 427, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (719, 6, 429, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (720, 6, 453, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (721, 6, 434, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (722, 6, 435, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (723, 6, 436, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (724, 6, 438, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (725, 6, 580, 2, 123, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (727, 6, 576, 2, 125, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (728, 6, 438, 2, 125, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (729, 6, 418, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (730, 6, 438, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (731, 6, 441, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (732, 6, 445, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (733, 6, 579, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (734, 6, 448, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (735, 6, 449, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (736, 6, 580, 2, 126, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (738, 6, 576, 2, 128, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (739, 6, 438, 2, 128, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (740, 6, 447, 2, 128, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (741, 6, 602, 2, 128, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (742, 6, 590, 2, 128, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (743, 6, 448, 2, 128, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (744, 6, 580, 2, 128, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (746, 6, 432, 2, 130, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (747, 6, 434, 2, 130, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (748, 6, 435, 2, 130, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (749, 6, 438, 2, 130, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (750, 6, 580, 2, 130, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (751, 6, 576, 2, 131, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (752, 6, 445, 2, 131, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (753, 6, 448, 2, 131, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (754, 6, 449, 2, 131, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (755, 6, 580, 2, 131, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (756, 6, 432, 2, 132, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (757, 6, 434, 2, 132, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (758, 6, 435, 2, 132, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (759, 6, 580, 2, 132, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (760, 6, 432, 2, 133, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (761, 6, 434, 2, 133, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (762, 6, 435, 2, 133, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (763, 6, 445, 2, 133, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (764, 6, 448, 2, 133, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (765, 6, 449, 2, 133, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (766, 6, 580, 2, 133, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (767, 6, 432, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (768, 6, 434, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (769, 6, 445, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (770, 6, 448, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (771, 6, 449, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (772, 6, 580, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (773, 6, 424, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (774, 6, 441, 2, 134, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (776, 6, 576, 2, 136, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (777, 6, 445, 2, 136, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (778, 6, 448, 2, 136, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (779, 6, 449, 2, 136, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (780, 6, 580, 2, 136, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (781, 6, 432, 2, 137, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (782, 6, 434, 2, 137, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (783, 6, 435, 2, 137, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (784, 6, 445, 2, 137, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (785, 6, 448, 2, 137, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (786, 6, 449, 2, 137, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (787, 6, 580, 2, 137, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (790, 6, 432, 2, 143, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (791, 6, 434, 2, 143, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (792, 6, 435, 2, 143, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (793, 6, 445, 2, 143, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (794, 6, 448, 2, 143, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (795, 6, 449, 2, 143, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (796, 6, 580, 2, 143, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (797, 6, 432, 2, 147, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (798, 6, 434, 2, 147, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (799, 6, 435, 2, 147, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (800, 6, 438, 2, 147, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (801, 6, 445, 2, 147, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (802, 6, 448, 2, 147, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (803, 6, 580, 2, 147, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (804, 6, 432, 2, 148, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (805, 6, 434, 2, 148, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (806, 6, 445, 2, 148, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (807, 6, 448, 2, 148, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (808, 6, 449, 2, 148, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (809, 6, 580, 2, 148, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (810, 6, 577, 2, 149, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (811, 6, 443, 2, 149, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (812, 6, 445, 2, 149, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (813, 6, 448, 2, 149, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (814, 6, 449, 2, 149, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (815, 6, 580, 2, 149, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (816, 6, 576, 2, 150, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (817, 6, 438, 2, 150, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (818, 6, 580, 2, 150, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (821, 6, 576, 2, 157, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (822, 6, 438, 2, 157, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (823, 6, 447, 2, 157, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (824, 6, 590, 2, 157, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (825, 6, 580, 2, 157, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (826, 6, 580, 2, 158, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (827, 6, 576, 2, 160, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (828, 6, 448, 2, 160, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (829, 6, 580, 2, 160, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (830, 6, 434, 2, 163, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (831, 6, 445, 2, 163, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (832, 6, 448, 2, 163, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (833, 6, 580, 2, 163, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (834, 6, 576, 2, 165, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (835, 6, 438, 2, 165, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (836, 6, 447, 2, 165, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (837, 6, 448, 2, 165, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (838, 6, 580, 2, 165, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (839, 6, 454, 2, 168, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (840, 6, 427, 2, 168, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (841, 6, 432, 2, 168, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (842, 6, 434, 2, 168, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (843, 6, 427, 2, 169, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (844, 6, 434, 2, 169, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (845, 6, 435, 2, 169, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (846, 6, 448, 2, 169, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (847, 6, 580, 2, 169, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (848, 6, 576, 2, 170, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (849, 6, 438, 2, 170, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (850, 6, 579, 2, 170, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (851, 6, 448, 2, 170, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (852, 6, 580, 2, 171, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (853, 6, 580, 2, 172, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (854, 6, 580, 2, 173, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (857, 6, 580, 2, 603, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (858, 6, 432, 2, 182, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (859, 6, 434, 2, 182, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (860, 6, 435, 2, 182, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (861, 6, 445, 2, 182, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (862, 6, 448, 2, 182, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (863, 6, 449, 2, 182, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (864, 6, 580, 2, 182, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (865, 6, 580, 2, 183, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (866, 6, 576, 2, 188, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (867, 6, 438, 2, 188, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (868, 6, 445, 2, 188, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (869, 6, 447, 2, 188, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (870, 6, 448, 2, 188, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (871, 6, 580, 2, 188, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (872, 6, 580, 2, 189, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (874, 6, 441, 2, 191, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (875, 6, 435, 2, 215, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (876, 6, 580, 2, 216, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (877, 6, 434, 2, 217, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (878, 6, 435, 2, 217, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (879, 6, 445, 2, 217, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (880, 6, 448, 2, 217, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (881, 6, 449, 2, 217, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (882, 6, 580, 2, 217, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (884, 6, 424, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (885, 6, 434, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (886, 6, 435, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (887, 6, 438, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (888, 6, 442, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (889, 6, 445, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (890, 6, 448, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (891, 6, 449, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (892, 6, 580, 2, 219, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (893, 6, 434, 2, 220, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (894, 6, 435, 2, 220, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (895, 6, 437, 2, 220, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (896, 6, 445, 2, 220, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (897, 6, 448, 2, 220, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (898, 6, 580, 2, 220, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (899, 6, 441, 2, 223, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (900, 6, 441, 2, 224, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (901, 6, 580, 2, 226, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (902, 6, 424, 2, 227, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (903, 6, 434, 2, 227, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (904, 6, 435, 2, 227, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (905, 6, 445, 2, 227, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (906, 6, 434, 2, 228, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (907, 6, 435, 2, 228, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (908, 6, 445, 2, 228, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (909, 6, 448, 2, 228, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (910, 6, 449, 2, 228, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (911, 6, 580, 2, 228, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (912, 6, 580, 2, 228, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (913, 6, 424, 2, 232, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (914, 6, 434, 2, 232, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (915, 6, 437, 2, 232, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (916, 6, 445, 2, 232, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (917, 6, 448, 2, 232, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (918, 6, 449, 2, 232, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (919, 6, 580, 2, 232, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (920, 6, 432, 2, 233, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (921, 6, 434, 2, 233, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (922, 6, 435, 2, 233, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (923, 6, 445, 2, 233, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (924, 6, 448, 2, 233, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (925, 6, 449, 2, 233, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (926, 6, 580, 2, 233, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (927, 6, 576, 2, 235, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (928, 6, 441, 2, 235, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (929, 6, 445, 2, 235, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (930, 6, 448, 2, 235, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (931, 6, 449, 2, 235, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (932, 6, 580, 2, 235, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (933, 6, 576, 2, 236, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (934, 6, 578, 2, 236, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (935, 6, 580, 2, 236, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (936, 6, 580, 2, 237, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (937, 6, 580, 2, 244, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (938, 6, 576, 2, 245, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (939, 6, 578, 2, 245, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (940, 6, 580, 2, 245, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (941, 6, 576, 2, 246, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (942, 6, 438, 2, 246, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (943, 6, 580, 2, 246, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (944, 6, 427, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (945, 6, 429, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (946, 6, 453, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (947, 6, 434, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (948, 6, 435, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (949, 6, 436, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (950, 6, 438, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (951, 6, 580, 2, 248, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (952, 6, 441, 2, 2, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (953, 6, 578, 2, 2, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (954, 6, 576, 2, 2, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (955, 6, 580, 2, 2, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (956, 6, 580, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (957, 6, 438, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (958, 6, 418, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (959, 6, 425, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (960, 6, 576, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (961, 6, 448, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (962, 6, 449, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (963, 6, 445, 2, 4, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (965, 6, 580, 2, 17, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (966, 6, 454, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (967, 6, 427, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (968, 6, 445, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (969, 6, 580, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (970, 6, 432, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (971, 6, 448, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (972, 6, 434, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (973, 6, 435, 2, 18, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (974, 6, 580, 2, 20, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (975, 6, 449, 2, 22, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (976, 6, 445, 2, 22, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (977, 6, 448, 2, 22, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (978, 6, 576, 2, 22, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (979, 6, 441, 2, 24, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (980, 6, 591, 2, 24, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (981, 6, 580, 2, 193, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (982, 6, 580, 2, 213, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (983, 6, 438, 2, 213, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (984, 6, 576, 2, 213, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (985, 6, 445, 2, 604, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (986, 6, 449, 2, 604, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (987, 6, 576, 2, 604, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (988, 6, 448, 2, 604, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (989, 6, 580, 2, 604, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (990, 6, 580, 2, 103, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (991, 6, 438, 2, 103, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (992, 6, 418, 2, 103, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (993, 6, 425, 2, 103, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (994, 6, 434, 2, 77, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (995, 6, 435, 2, 77, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (996, 6, 580, 2, 77, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (997, 6, 580, 2, 77, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (998, 6, 576, 2, 77, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (999, 6, 578, 2, 77, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1000, 6, 580, 2, 77, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1001, 6, 418, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1002, 6, 576, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1003, 6, 438, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1004, 6, 425, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1005, 6, 580, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1006, 6, 447, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1007, 6, 602, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1008, 6, 590, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1009, 6, 448, 2, 117, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1010, 6, 418, 2, 119, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1011, 6, 425, 2, 119, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1012, 6, 438, 2, 119, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1013, 6, 580, 2, 119, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1014, 6, 580, 2, 121, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1015, 6, 580, 2, 30, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1016, 6, 424, 2, 43, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1017, 6, 418, 2, 55, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1018, 6, 425, 2, 55, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1019, 6, 576, 2, 55, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1020, 6, 580, 2, 55, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1021, 6, 438, 2, 55, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1022, 6, 434, 2, 56, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1023, 6, 427, 2, 56, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1024, 6, 436, 2, 56, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1025, 6, 445, 2, 63, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1026, 6, 576, 2, 63, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1027, 6, 448, 2, 63, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1028, 6, 580, 2, 63, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1029, 6, 418, 2, 28, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1030, 6, 425, 2, 28, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1031, 6, 434, 2, 28, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1032, 6, 438, 2, 28, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1033, 6, 580, 2, 28, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1034, 6, 434, 2, 34, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1035, 6, 427, 2, 34, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1036, 6, 580, 2, 34, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1037, 6, 438, 2, 34, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1038, 6, 580, 2, 48, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1039, 6, 580, 2, 49, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1040, 6, 580, 2, 52, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1041, 6, 445, 2, 52, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1042, 6, 454, 2, 52, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1043, 6, 427, 2, 52, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1044, 6, 429, 2, 52, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1045, 6, 580, 2, 53, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1046, 6, 580, 2, 62, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1047, 6, 576, 2, 62, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1048, 6, 448, 2, 62, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1049, 6, 445, 2, 62, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1050, 6, 438, 2, 62, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1051, 6, 418, 2, 62, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1052, 6, 425, 2, 62, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1053, 6, 445, 2, 64, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1054, 6, 576, 2, 64, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1055, 6, 448, 2, 64, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1056, 6, 580, 2, 64, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1057, 6, 445, 2, 69, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1058, 6, 449, 2, 69, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1059, 6, 424, 2, 69, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1060, 6, 576, 2, 69, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1061, 6, 448, 2, 69, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1062, 6, 580, 2, 69, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1063, 6, 445, 2, 70, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1064, 6, 576, 2, 70, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1065, 6, 580, 2, 70, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1066, 6, 445, 2, 73, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1067, 6, 576, 2, 73, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1068, 6, 580, 2, 73, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1069, 6, 441, 2, 73, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1070, 6, 445, 2, 605, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1071, 6, 576, 2, 605, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1072, 6, 580, 2, 605, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1073, 6, 580, 2, 606, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1074, 6, 576, 2, 606, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1075, 6, 445, 2, 606, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1076, 6, 448, 2, 606, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1077, 6, 449, 2, 606, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1078, 6, 445, 2, 76, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1079, 6, 434, 2, 76, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1080, 6, 435, 2, 76, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1081, 6, 448, 2, 76, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1082, 6, 580, 2, 76, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1083, 6, 445, 2, 80, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1084, 6, 449, 2, 80, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1085, 6, 576, 2, 80, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1086, 6, 448, 2, 80, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1087, 6, 580, 2, 80, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1088, 6, 441, 2, 80, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1089, 6, 438, 2, 85, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1090, 6, 580, 2, 85, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1091, 6, 577, 2, 91, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1092, 6, 438, 2, 92, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1093, 6, 580, 2, 92, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1094, 6, 580, 2, 95, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1095, 6, 438, 2, 95, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1096, 6, 418, 2, 95, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1097, 6, 425, 2, 95, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1098, 6, 580, 2, 97, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1099, 6, 448, 2, 97, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1100, 6, 434, 2, 97, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1101, 6, 435, 2, 97, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1102, 6, 427, 2, 97, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1103, 6, 454, 2, 97, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1104, 6, 438, 2, 97, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1105, 6, 576, 2, 98, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1106, 6, 438, 2, 98, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1107, 6, 580, 2, 98, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1108, 6, 580, 2, 105, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1109, 6, 580, 2, 107, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1110, 6, 438, 2, 107, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1111, 6, 448, 2, 107, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1112, 6, 449, 2, 107, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1113, 6, 580, 2, 108, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1114, 6, 580, 2, 110, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1115, 6, 576, 2, 110, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1116, 6, 438, 2, 110, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1117, 6, 580, 2, 111, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1118, 6, 438, 2, 111, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1119, 6, 580, 2, 607, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1120, 6, 576, 2, 607, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1121, 6, 448, 2, 607, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1122, 6, 449, 2, 607, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1123, 6, 445, 2, 607, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1124, 6, 435, 2, 142, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1125, 6, 580, 2, 144, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1126, 6, 580, 2, 145, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1127, 6, 432, 2, 145, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1128, 6, 434, 2, 145, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1129, 6, 435, 2, 145, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1130, 6, 580, 2, 146, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1131, 6, 434, 2, 146, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1132, 6, 435, 2, 146, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1133, 6, 436, 2, 146, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1134, 6, 432, 2, 146, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1135, 6, 580, 2, 153, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1136, 6, 434, 2, 153, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1137, 6, 435, 2, 153, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1138, 6, 580, 2, 154, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1139, 6, 593, 2, 155, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1140, 6, 443, 2, 155, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1141, 6, 580, 2, 155, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1142, 6, 580, 2, 156, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1143, 6, 438, 2, 156, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1144, 6, 580, 2, 159, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1145, 6, 438, 2, 159, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1146, 6, 425, 2, 159, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1147, 6, 418, 2, 159, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1148, 6, 580, 2, 161, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1149, 6, 580, 2, 162, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1150, 6, 580, 2, 164, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1151, 6, 445, 2, 166, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1152, 6, 449, 2, 166, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1153, 6, 576, 2, 166, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1154, 6, 441, 2, 166, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1155, 6, 438, 2, 166, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1156, 6, 448, 2, 166, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1157, 6, 580, 2, 166, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1158, 6, 445, 2, 167, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1159, 6, 449, 2, 167, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1160, 6, 576, 2, 167, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1161, 6, 448, 2, 167, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1162, 6, 580, 2, 167, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1163, 6, 580, 2, 174, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1164, 6, 434, 2, 174, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1165, 6, 435, 2, 174, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1166, 6, 449, 2, 174, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1167, 6, 445, 2, 174, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1168, 6, 448, 2, 174, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1169, 6, 434, 2, 175, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1170, 6, 435, 2, 175, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1171, 6, 445, 2, 176, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1172, 6, 449, 2, 176, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1173, 6, 434, 2, 176, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1174, 6, 435, 2, 176, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1175, 6, 448, 2, 176, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1176, 6, 580, 2, 176, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1177, 6, 434, 2, 177, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1178, 6, 435, 2, 177, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1179, 6, 580, 2, 177, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1180, 6, 580, 2, 178, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1181, 6, 438, 2, 178, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1182, 6, 576, 2, 178, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1183, 6, 445, 2, 178, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1184, 6, 449, 2, 178, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1185, 6, 448, 2, 178, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1186, 6, 438, 2, 184, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1187, 6, 580, 2, 184, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1188, 6, 445, 2, 185, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1189, 6, 434, 2, 185, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1190, 6, 435, 2, 185, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1191, 6, 437, 2, 185, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1192, 6, 448, 2, 185, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1193, 6, 580, 2, 185, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1195, 6, 580, 2, 187, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1196, 6, 580, 2, 214, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1197, 6, 580, 2, 221, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1198, 6, 580, 2, 222, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1199, 6, 580, 2, 225, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1200, 6, 442, 2, 225, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1201, 6, 424, 2, 225, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1202, 6, 441, 2, 225, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1203, 6, 578, 2, 225, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1205, 6, 580, 2, 230, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1206, 6, 434, 2, 230, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1207, 6, 435, 2, 230, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1208, 6, 436, 2, 230, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1209, 6, 438, 2, 230, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1210, 6, 448, 2, 230, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1211, 6, 580, 2, 231, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1212, 6, 427, 2, 231, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1213, 6, 434, 2, 231, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1214, 6, 435, 2, 231, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1215, 6, 436, 2, 231, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1216, 6, 445, 2, 234, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1217, 6, 437, 2, 234, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1218, 6, 434, 2, 234, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1219, 6, 435, 2, 234, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1220, 6, 448, 2, 234, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1221, 6, 580, 2, 234, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1222, 6, 424, 2, 234, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1223, 6, 580, 2, 238, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1224, 6, 580, 2, 239, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1225, 6, 580, 2, 240, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1226, 6, 580, 2, 241, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1227, 6, 580, 2, 242, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1228, 6, 580, 2, 243, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1229, 6, 580, 2, 247, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1230, 6, 580, 2, 249, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1231, 6, 434, 2, 249, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1232, 6, 435, 2, 249, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1233, 6, 427, 2, 249, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1234, 6, 436, 2, 249, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1235, 6, 432, 2, 249, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1236, 6, 441, 2, 43, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1237, 6, 576, 2, 224, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1238, 6, 580, 2, 224, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1239, 6, 576, 8, 289, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1240, 6, 580, 8, 289, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1241, 6, 578, 8, 289, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1242, 6, 445, 2, 250, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1243, 6, 424, 2, 250, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1244, 6, 576, 2, 250, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1245, 6, 445, 2, 251, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1246, 6, 576, 2, 251, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1247, 6, 580, 2, 252, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1248, 6, 576, 2, 252, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1249, 6, 580, 2, 253, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1250, 6, 576, 2, 253, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1251, 6, 580, 2, 254, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1252, 6, 576, 2, 254, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1253, 6, 580, 2, 255, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1254, 6, 576, 2, 255, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1255, 6, 580, 2, 256, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1256, 6, 576, 2, 256, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1257, 6, 580, 2, 257, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1258, 6, 576, 2, 257, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1259, 6, 580, 2, 258, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1260, 6, 576, 2, 258, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1261, 6, 576, 2, 322, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1262, 6, 576, 10, 611, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1263, 6, 576, 2, 612, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1264, 6, 576, 2, 613, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1265, 6, 576, 2, 614, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1266, 6, 576, 8, 615, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1267, 6, 576, 10, 616, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1268, 6, 576, 10, 618, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1269, 6, 576, 2, 619, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1270, 6, 576, 10, 620, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1271, 6, 576, 2, 621, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1272, 6, 576, 2, 622, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1273, 6, 576, 2, 623, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1274, 6, 576, 2, 624, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1275, 6, 576, 2, 625, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1276, 6, 576, 2, 626, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1277, 6, 576, 2, 627, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1278, 6, 576, 2, 628, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1279, 6, 576, 2, 629, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1280, 6, 576, 10, 630, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1281, 6, 576, 2, 631, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1282, 6, 576, 2, 632, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1283, 6, 576, 10, 633, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1284, 6, 576, 2, 634, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1285, 6, 576, 10, 635, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1286, 6, 576, 2, 636, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1287, 6, 576, 2, 637, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1288, 6, 576, 10, 638, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1289, 6, 576, 10, 639, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1290, 6, 576, 2, 640, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1291, 6, 576, 2, 641, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1292, 6, 576, 2, 642, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1293, 6, 576, 2, 643, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1294, 6, 576, 2, 644, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1295, 6, 576, 2, 645, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1296, 6, 576, 2, 646, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1297, 6, 576, 2, 647, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1298, 6, 576, 8, 648, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1299, 6, 576, 2, 649, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1300, 6, 576, 2, 650, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1301, 6, 576, 2, 651, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1302, 6, 576, 10, 652, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1303, 6, 580, 9, 660, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1304, 6, 576, 9, 660, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1305, 6, 438, 9, 660, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1306, 6, 441, 9, 653, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1307, 6, 437, 9, 653, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1308, 6, 591, 9, 653, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1309, 6, 580, 9, 654, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1310, 6, 576, 9, 654, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1311, 6, 578, 9, 654, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1312, 6, 576, 9, 655, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1313, 6, 576, 2, 656, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1314, 6, 580, 2, 656, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1315, 6, 578, 2, 656, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1316, 6, 441, 9, 657, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1317, 6, 576, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1318, 6, 580, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1319, 6, 578, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1320, 6, 438, 2, 5, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1321, 6, 593, 9, 659, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1322, 6, 443, 9, 659, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1323, 6, 580, 9, 659, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1324, 6, 580, 10, 661, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1325, 6, 443, 9, 662, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1326, 6, 578, 9, 662, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1327, 6, 593, 9, 662, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1328, 6, 580, 9, 662, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1329, 6, 580, 9, 663, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1330, 6, 576, 9, 663, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1331, 6, 580, 9, 664, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1332, 6, 442, 9, 664, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1333, 6, 578, 9, 664, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1334, 6, 593, 9, 665, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1335, 6, 580, 9, 665, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1336, 6, 438, 9, 665, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1337, 6, 578, 9, 665, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1338, 6, 576, 9, 665, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1339, 6, 576, 2, 666, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1340, 6, 580, 2, 666, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1341, 6, 578, 2, 666, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1342, 6, 577, 2, 667, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1343, 6, 577, 2, 668, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1344, 6, 576, 8, 669, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1345, 6, 580, 8, 669, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1346, 6, 449, 8, 669, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1347, 6, 576, 8, 670, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1348, 6, 580, 8, 670, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1349, 6, 449, 8, 670, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1350, 6, 576, 2, 634, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1351, 6, 576, 4, 672, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1352, 6, 578, 9, 344, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1353, 6, 580, 9, 344, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1354, 6, 580, 2, 674, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1355, 6, 576, 2, 674, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1356, 6, 578, 2, 674, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1357, 6, 580, 2, 675, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1358, 6, 578, 2, 675, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1359, 6, 576, 2, 676, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1360, 6, 578, 2, 676, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1361, 6, 578, 2, 677, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1362, 6, 576, 2, 677, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1363, 6, 580, 2, 677, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1364, 6, 438, 2, 677, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1365, 6, 576, 2, 678, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1366, 6, 577, 2, 679, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1367, 6, 577, 9, 689, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1368, 6, 424, 2, 690, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1369, 6, 424, 2, 691, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1370, 6, 577, 2, 693, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1371, 6, 576, 2, 695, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1372, 6, 578, 2, 695, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1373, 6, 580, 2, 695, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1374, 6, 576, 2, 694, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1375, 6, 578, 2, 694, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1376, 9, 584, 2, 697, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1377, 6, 576, 2, 697, ''); +INSERT INTO entity_relations (id, entity_parent_type_id, entity_parent_id, entity_child_type_id, entity_child_id, COTS) VALUES (1378, 6, 580, 2, 697, ''); + +-- Table: entity_types CREATE TABLE entity_types ( id integer PRIMARY KEY AUTOINCREMENT, entity_type_name text NOT NULL ); -INSERT INTO entity_types VALUES(1,'Technology'); -INSERT INTO entity_types VALUES(2,'App'); -INSERT INTO entity_types VALUES(3,'VM'); -INSERT INTO entity_types VALUES(4,'HW'); -INSERT INTO entity_types VALUES(5,'Plugin'); -INSERT INTO entity_types VALUES(6,'OS'); -INSERT INTO entity_types VALUES(7,'Runlib'); -INSERT INTO entity_types VALUES(8,'App Server'); -INSERT INTO entity_types VALUES(9,'Lang'); -INSERT INTO entity_types VALUES(10,'Runtime'); -INSERT INTO entity_types VALUES(11,'Storage'); -INSERT INTO entity_types VALUES(12,'Lib'); +INSERT INTO entity_types (id, entity_type_name) VALUES (1, 'Technology'); +INSERT INTO entity_types (id, entity_type_name) VALUES (2, 'App'); +INSERT INTO entity_types (id, entity_type_name) VALUES (3, 'VM'); +INSERT INTO entity_types (id, entity_type_name) VALUES (4, 'HW'); +INSERT INTO entity_types (id, entity_type_name) VALUES (5, 'Plugin'); +INSERT INTO entity_types (id, entity_type_name) VALUES (6, 'OS'); +INSERT INTO entity_types (id, entity_type_name) VALUES (7, 'Runlib'); +INSERT INTO entity_types (id, entity_type_name) VALUES (8, 'App Server'); +INSERT INTO entity_types (id, entity_type_name) VALUES (9, 'Lang'); +INSERT INTO entity_types (id, entity_type_name) VALUES (10, 'Runtime'); +INSERT INTO entity_types (id, entity_type_name) VALUES (11, 'Storage'); +INSERT INTO entity_types (id, entity_type_name) VALUES (12, 'Lib'); + +-- Table: entity_versions +CREATE TABLE entity_versions ( + id integer PRIMARY KEY AUTOINCREMENT, + entity_id integer NOT NULL, + version text, + release_date date, + end_date date, + FOREIGN KEY (entity_id) REFERENCES entities (id) + ); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1, 497, '1', '01/15/2002', '07/14/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2, 497, '1.1', '04/09/2003', '10/08/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3, 497, '2', '10/27/2005', '07/12/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (4, 497, '3', '11/06/2006', '07/12/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (5, 497, '3.5', '11/19/2007', '10/10/2028'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (6, 497, '4', '04/12/2010', '01/12/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (7, 497, '4.5', '08/15/2012', '01/12/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (8, 497, '4.5.1', '10/17/2013', '01/12/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (9, 497, '4.5.2', '05/05/2014', '04/26/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (10, 497, '4.6', '07/20/2015', '04/26/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (11, 497, '4.6.1', '11/30/2015', '04/26/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (12, 497, '4.6.2', '08/02/2016', '04/26/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (13, 497, '4.7', '04/05/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (14, 497, '4.7.1', '10/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (15, 497, '4.7.2', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (16, 497, '4.8', '09/04/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (17, 498, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (18, 592, '1', '12/01/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (19, 592, '2', '09/01/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (20, 592, '3', '11/01/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (21, 500, ' ', '01/01/1996', '08/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (22, 501, '6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (23, 501, '7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (24, 501, '8', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (25, 501, '9', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (26, 501, '10.0.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (27, 502, '5.6', '06/01/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (28, 502, '5.5', '12/01/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (29, 502, '5.4', '06/01/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (30, 502, '5.3', '12/01/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (31, 502, '5.2', '12/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (32, 502, '5.1', '12/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (33, 502, '4.2', '12/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (34, 502, '4.1', '12/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (35, 502, '3.2', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (36, 502, '3.1', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (37, 502, '2.2', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (38, 502, '2.1', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (39, 503, '20.10.8', '08/03/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (40, 503, '20.10.7', '06/02/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (41, 503, '20.10.6', '04/12/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (42, 503, '20.10.5', '03/02/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (43, 503, '20.10.4', '04/26/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (44, 503, '20.10.3', '02/01/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (45, 503, '20.10.2', '01/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (46, 503, '20.10.1', '12/14/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (47, 503, '20.10.0', '12/08/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (48, 504, '2', '12/31/1997', '12/31/1998'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (49, 504, '3', '12/31/1997', '12/31/1998'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (50, 504, '7.0.14.0', '12/31/1997', '12/31/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (51, 504, '9.0.289.0', '12/31/1998', '12/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (52, 504, '10.3.183.90', '12/31/1999', '12/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (53, 504, '11.1.102.55', '12/31/1999', '12/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (54, 504, '32.0.0.465', '12/31/2001', '12/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (55, 504, '5.0.41.0', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (56, 504, '32.0.0.465', '12/31/2014', '12/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (57, 504, '29.0.0.171', '12/31/2013', '12/31/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (58, 504, '22.0.0.209', '12/31/2009', '12/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (59, 504, '10.3.183.90', '12/31/2007', '12/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (60, 504, '10.1.102.64', '12/31/2005', '12/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (61, 504, '9.0.289.0', '12/31/2001', '12/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (62, 504, '7.0.14.0', '12/31/1997', '12/31/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (63, 504, '3', '12/31/1997', '12/31/1998'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (64, 504, '4.0r12', '12/31/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (65, 504, '32.0.0.465', '12/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (66, 504, '4.0r12', '12/31/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (67, 504, '4.0r12', '12/31/2004', '12/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (68, 504, '11.2.202.223', '12/31/2004', '12/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (69, 504, '10.3.183.90', '12/31/2004', '12/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (70, 505, '1', '12/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (71, 505, '2.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (72, 506, 'JDK Beta', '01/01/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (73, 506, '1.0', '01/01/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (74, 506, '1.1', '02/01/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (75, 506, '1.2', '12/01/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (76, 506, '1.3', '05/01/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (77, 506, '1.4', '02/01/2002', '08/31/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (78, 506, '5.0', '09/01/2004', '11/30/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (79, 506, '6', '12/01/2006', '04/30/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (80, 506, '7', '07/01/2011', '04/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (81, 506, '8', '03/01/2014', '12/31/2026'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (82, 506, '9', '09/01/2017', '03/31/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (83, 506, '10', '03/01/2018', '09/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (84, 506, '11', '09/01/2018', '12/31/2026'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (85, 506, '12', '03/31/2019', '09/30/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (86, 506, '13', '09/01/2019', '03/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (87, 506, '14', '03/01/2020', '09/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (88, 506, '15', '09/01/2020', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (89, 506, '16', '03/01/2021', '09/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (90, 506, '17', '09/30/2021', '12/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (91, 506, '18', '03/01/2022', '09/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (92, 506, '19', '09/01/2022', '03/31/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (93, 506, '20', '03/01/2023', '09/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (94, 506, '21', '09/01/2023', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (95, 507, '0.10', '03/01/2013', '10/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (96, 507, '0.12', '02/06/2015', '12/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (97, 507, '4', '09/08/2015', '04/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (98, 507, '5', '10/29/2015', '06/30/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (99, 507, '6', '04/26/2016', '04/30/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (100, 507, '7', '10/25/2016', '06/30/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (101, 507, '8', '05/30/2017', '12/31/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (102, 507, '9', '10/01/2017', '06/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (103, 507, '10', '04/24/2018', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (104, 507, '11', '10/23/2018', '06/01/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (105, 507, '12', '04/23/2019', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (106, 507, '13', '10/22/2019', '06/01/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (107, 507, '14', '04/21/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (108, 507, '15', '10/20/2020', '06/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (109, 507, '16', '04/20/2021', '04/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (110, 507, '17', '10/19/2021', '06/01/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (111, 507, '18', '04/19/2022', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (112, 508, '1', '12/13/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (113, 508, '1.2', '01/19/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (114, 508, '2', '12/07/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (115, 508, '2.1', '06/01/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (116, 508, '2.2', '11/21/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (117, 508, '2.3', '03/16/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (118, 508, '3', '08/29/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (119, 508, '3.1', '08/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (120, 508, '3.2', '01/20/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (121, 508, '4', '06/25/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (122, 508, '4.1', '04/08/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (123, 508, '4.2', '12/19/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (124, 508, '5', '06/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (125, 508, '5.1', '05/10/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (126, 508, '5.2', '04/09/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (127, 508, '6', '08/16/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (128, 508, '6.1', '12/09/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (129, 508, '7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (130, 509, '53.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (131, 263, '1', '12/16/2001', '12/30/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (132, 264, '1.1', '03/10/2002', '01/29/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (133, 264, '1.2', '11/09/2003', '08/06/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (134, 264, '1.3', '06/29/2006', '03/14/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (135, 264, '1.4', '02/26/2010', '02/08/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (136, 264, '1.5', '06/19/2014', '01/10/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (137, 264, '1.6', '10/13/2015', '12/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (138, 264, '1.7', '11/25/2016', '12/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (139, 264, '1.8', '11/26/2017', '12/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (140, 264, '1.9', '12/19/2018', '06/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (141, 264, '2', '06/16/2019', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (142, 264, '2.1', '11/25/2019', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (143, 264, '2.2', '07/07/2020', '06/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (144, 264, '2.3', '11/05/2020', '03/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (145, 264, '2.4', '05/14/2021', '06/30/2026'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (146, 264, '2.5', '11/01/2021', '03/31/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (147, 259, '1.3', '06/06/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (148, 259, '2', '04/06/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (149, 259, '2.2', '12/01/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (150, 259, '2.4', '02/21/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (151, 609, '1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (152, 609, '2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (153, 609, '3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (154, 609, '4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (155, 609, '5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (156, 609, '5.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (157, 609, '6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (158, 609, '7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (159, 609, '7.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (160, 609, '8', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (161, 609, '8.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (162, 609, '10', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (163, 274, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (164, 260, '3.3', '03/09/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (165, 260, '4.1', '06/25/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (166, 260, '5.5', '10/10/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (167, 260, '6.0', '04/07/2017', '12/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (168, 260, '7.0', '04/26/2021', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (169, 260, '8.0', '07/05/2018', '06/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (170, 260, '8.5', '09/13/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (171, 260, '9.0', '09/10/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (172, 260, '10.0', '09/10/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (173, 260, '10.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (174, 285, '8.5', '06/15/2012', '06/24/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (175, 280, '0.5', '10/07/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (176, 280, '0.6', '02/07/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (177, 280, '0.7', '07/16/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (178, 280, '0.8', '12/19/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (179, 280, '0.9', '07/23/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (180, 280, '1.0', '08/05/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (181, 280, '1.1', '11/26/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (182, 280, '1.2', '04/17/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (183, 280, '1.3', '04/17/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (184, 280, '1.4', '07/15/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (185, 280, '1.5', '11/09/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (186, 280, '1.6', '11/07/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (187, 280, '2.0', '11/14/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (188, 280, '2.1', '06/26/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (189, 280, '2.2', '01/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (190, 280, '2.3', '09/09/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (191, 280, '2.4', '05/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (192, 280, '3.0', '01/06/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (193, 280, '3.1', '01/06/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (194, 278, '3.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (195, 278, '4.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (196, 265, '6.0.1', '04/15/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (197, 265, '6.0.2', '07/29/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (198, 265, '6.1.0', '07/21/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (199, 265, '7.0.0', '03/15/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (200, 265, '8.0.0', '06/17/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (201, 265, '8.5.0', '06/15/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (202, 265, '9.0.0', '03/11/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (203, 269, '2.6', '02/09/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (204, 269, '2.9.1', '04/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (205, 286, '4.1', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (206, 286, '5', '07/01/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (207, 286, '6', '04/01/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (208, 286, '6.1', '03/01/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (209, 286, '6.1.5', '11/01/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (210, 286, '7', '09/01/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (211, 286, '8', '05/01/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (212, 286, '8.5', '06/01/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (213, 286, '9', '12/01/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (214, 286, '9.5', '07/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (215, 284, '9', '03/26/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (216, 284, '8.5.5', '02/15/2021', '06/24/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (217, 284, '8.5', '06/15/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (218, 284, '8', '06/17/2011', '04/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (219, 284, '7', '08/17/2008', '04/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (220, 284, '6.1', '06/30/2006', '09/30/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (221, 284, '6', '12/31/2004', '09/30/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (222, 284, '5.1', '01/16/2004', '09/30/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (223, 284, '5', '01/03/2003', '09/30/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (224, 284, '4', '08/15/2001', '04/30/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (225, 284, '3.5', '08/31/2000', '11/30/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (226, 268, '7.1.1', '03/09/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (227, 268, '7.1.0', '02/16/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (228, 268, '7.0.2', '09/22/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (229, 268, '7.0.1', '08/17/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (230, 268, '7.0.0', '07/12/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (231, 268, '6.1.0', '08/16/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (232, 268, '6.0.0', '12/22/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (233, 268, '5.1.0', '05/23/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (234, 268, '5.0.0', '12/05/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (235, 268, '4.2.3', '07/18/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (236, 268, '4.2.2', '10/22/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (237, 268, '4.2.1', '07/16/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (238, 268, '4.2.0', '05/11/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (239, 268, '4.0.5', '10/18/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (240, 268, '4.0.4', '05/15/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (241, 268, '4.0.3', '10/24/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (242, 268, '4.0.2', '05/02/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (243, 268, '4.0.1', '02/16/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (244, 268, '4.0.0', '09/20/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (245, 268, '3.2.8', '03/02/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (246, 268, '3.2.7', '01/28/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (247, 268, '3.2.6', '10/14/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (248, 268, '3.2.5', '06/25/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (249, 268, '3.2.4', '06/04/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (250, 268, '3.2.3', '11/30/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (251, 268, '3.2.2', '10/18/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (252, 268, '3.2.1', '06/02/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (253, 268, '3.0.8', '06/06/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (254, 268, '3.0.7', '04/08/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (255, 268, '3.0.6', '01/26/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (256, 268, '3.0.5', '01/13/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (257, 268, '3.0.4', '11/02/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (258, 268, '3.0.3', '09/29/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (259, 268, '3.0.2', '08/26/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (260, 268, '3.0.1', '08/05/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (261, 268, '3.0.0', '05/29/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (262, 493, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (263, 271, '4.5', '01/29/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (264, 271, '5', '04/07/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (265, 137, '2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (266, 137, '2.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (267, 137, '3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (268, 137, '4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (269, 137, '4.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (270, 137, '5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (271, 137, '6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (272, 137, '6i', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (273, 137, '9i', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (274, 137, '10g', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (275, 137, '10gR2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (276, 137, '11g', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (277, 137, '11gR2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (278, 137, '12c', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (279, 46, '3', '06/21/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (280, 46, '3.1', '06/28/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (281, 46, '3.2', '06/30/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (282, 46, '3.3', '06/29/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (283, 46, '3.4', '06/25/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (284, 46, '3.5', '06/24/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (285, 46, '3.6', '06/23/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (286, 46, '3.7', '06/22/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (287, 46, '3.8', '06/27/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (288, 46, '4.2', '06/27/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (289, 46, '4.3', '06/26/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (290, 46, '4.4', '06/25/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (291, 46, '4.5', '06/24/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (292, 46, '4.6', '06/22/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (293, 46, '4.7', '06/28/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (294, 46, '4.8', '06/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (295, 46, '4.9', '09/19/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (296, 46, '4.1', '12/19/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (297, 46, '4.11', '03/20/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (298, 46, '4.12', '06/19/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (299, 46, '4.13', '09/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (300, 46, '4.14', '12/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (301, 46, '4.15', '03/18/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (302, 46, '4.16', '06/17/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (303, 46, '4.17', '09/16/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (304, 46, '4.18', '12/16/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (305, 46, '4.19', '03/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (306, 46, '4.2', '06/16/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (307, 46, '4.21', '09/15/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (308, 46, '4.22', '12/08/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (309, 176, '7.6', '12/31/2006', '12/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (310, 176, '7.7', '12/31/2008', '12/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (311, 176, '7.8', '12/31/2010', '12/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (312, 176, '7.9', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (313, 70, '7.6.1.2', '07/24/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (314, 70, '7.6.0.10', '12/14/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (315, 70, '7.5.0.11', '10/28/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (316, 70, '7.1.1.13', '06/27/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (317, 70, '6.2.8', '06/10/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (318, 70, '6.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (319, 70, '5.2.9.1', '07/03/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (320, 70, '4.1.1 ', '06/28/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (321, 135, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (322, 141, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (323, 134, '2.3', '12/31/1979', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (324, 134, '3.1.3', '12/31/1983', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (325, 134, '4.1.4.0', '12/31/1984', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (326, 134, '5.0.22', '12/31/1985', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (327, 134, '6.0.17', '12/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (328, 134, '6.2.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (329, 134, '7.0.12', '06/30/1992', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (330, 134, '7.1.0', '05/31/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (331, 134, '7.2.0', '05/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (332, 134, '7.3.0', '02/28/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (333, 134, '8.0.3', '06/30/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (334, 134, '8.1.5.0', '12/31/1998', '08/31/2000'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (335, 134, '9.0.1.0', '12/31/2001', '12/31/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (336, 134, '9.2.0.1', '12/31/2002', '04/30/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (337, 134, '10.1.0.2', '12/31/2003', '02/28/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (338, 134, '10.2.0.1', '07/31/2005', '04/30/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (339, 134, '11.1.0.6', '09/30/2007', '09/30/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (340, 134, '11.2.0.1', '09/30/2009', '08/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (341, 134, '12.1.0.1', '07/31/2013', '07/31/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (342, 134, '12.2.0.1', '09/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (343, 134, '12.2.0.2', '02/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (344, 134, '12.2.0.3', '02/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (345, 134, '21.1', '12/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (346, 182, '1', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (347, 182, '2', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (348, 182, '3', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (349, 182, '98', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (350, 182, '99', '12/31/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (351, 182, '6', '12/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (352, 182, '7', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (353, 182, '7.5', '12/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (354, 182, '7.7', '12/31/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (355, 182, '7.8', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (356, 182, '8', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (357, 182, '8.1', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (358, 182, '8.2', '12/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (359, 182, '15', '05/11/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (360, 182, '16', '04/29/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (361, 182, '17', '07/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (362, 182, '18', '01/23/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (363, 182, '19', '01/21/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (364, 182, '20', '01/21/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (365, 126, '1', '08/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (366, 126, '1.1', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (367, 126, '1.2', '02/28/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (368, 126, '2', '08/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (369, 126, '2.1', '06/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (370, 126, '2.2', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (371, 126, '2.3', '06/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (372, 126, '2.4', '10/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (373, 126, '2.5', '04/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (374, 77, '1.1', '08/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (375, 77, '2.1', '04/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (376, 77, '2.2', '05/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (377, 77, '3.1', '07/12/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (378, 77, '3.2', '12/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (379, 77, '4.1', '01/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (380, 77, '4.2', '02/28/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (381, 77, '5.1', '01/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (382, 77, '6.1', '10/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (383, 77, '6.2', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (384, 77, '6.3', '08/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (385, 23, '10.7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (386, 45, '8.3', '04/05/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (387, 45, '8.2', '10/05/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (388, 45, '8.1', '04/20/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (389, 45, '8', '11/19/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (390, 45, '7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (391, 45, '6', '02/13/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (392, 45, '5', '01/15/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (393, 45, '4', '06/15/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (394, 45, '3', '09/15/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (395, 45, '2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (396, 45, '1', '01/15/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (397, 220, '4.4', '12/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (398, 220, '4.5.1', '09/30/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (399, 220, '4.6', '07/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (400, 220, '5', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (401, 220, '5.1', '06/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (402, 90, '2.285', '03/23/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (403, 90, '2.286', '03/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (404, 90, '2.287', '04/07/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (405, 90, '2.288', '04/11/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (406, 90, '2.289', '04/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (407, 90, '2.29', '04/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (408, 90, '2.291', '05/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (409, 90, '2.292', '05/11/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (410, 90, '2.293', '05/12/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (411, 90, '2.294', '05/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (412, 90, '2.295', '05/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (413, 90, '2.296', '06/01/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (414, 90, '2.297', '06/08/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (415, 90, '2.298', '06/15/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (416, 90, '2.299', '06/22/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (417, 90, '2.3', '06/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (418, 90, '2.301', '07/06/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (419, 90, '2.302', '07/13/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (420, 90, '2.303', '07/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (421, 90, '2.304', '07/27/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (422, 90, '2.305', '08/03/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (423, 90, '2.306', '08/10/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (424, 90, '2.307', '08/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (425, 90, '2.308', '08/24/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (426, 90, '2.309', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (427, 90, '2.31', '09/07/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (428, 90, '2.311', '09/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (429, 90, '2.312', '09/14/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (430, 90, '2.313', '09/21/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (431, 90, '2.314', '09/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (432, 97, '10', '05/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (433, 97, '9', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (434, 97, '8', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (435, 97, '7', '12/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (436, 97, '6', '12/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (437, 97, '5', '12/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (438, 97, '4.2', '12/31/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (439, 97, '4.1', '12/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (440, 97, '4', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (441, 97, '3.2', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (442, 97, '3.1', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (443, 97, '3', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (444, 97, '2', '12/31/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (445, 97, '1', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (446, 98, '1.6.12', '09/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (447, 98, '1.6.11', '09/27/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (448, 98, '1.6.10', '07/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (449, 98, '1.6.9', '11/20/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (450, 98, '1.6.8', '10/26/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (451, 98, '1.6.7', '09/04/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (452, 98, '1.6.6', '05/12/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (453, 98, '1.6.5', '04/13/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (454, 98, '1.6.4', '04/12/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (455, 98, '1.6.3', '03/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (456, 98, '1.6.2', '03/23/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (457, 98, '1.6.1', '03/16/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (458, 98, '1.6.0', '03/08/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (459, 98, '1.5.22', '02/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (460, 98, '1.5.21', '01/21/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (461, 98, '1.5.20', '11/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (462, 98, '1.5.19', '09/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (463, 98, '1.5.18', '09/17/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (464, 98, '1.5.17', '08/29/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (465, 98, '1.5.16', '05/24/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (466, 98, '1.5.15', '05/20/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (467, 98, '1.5.14', '04/27/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (468, 98, '1.5.13', '04/15/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (469, 98, '1.5.12', '11/03/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (470, 98, '1.5.11', '10/10/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (471, 98, '1.5.10', '08/10/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (472, 98, '1.5.9', '07/07/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (473, 98, '1.5.8', '05/25/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (474, 98, '1.5.7', '03/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (475, 98, '1.5.6', '02/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (476, 98, '1.5.5', '02/12/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (477, 98, '1.5.4', '12/20/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (478, 98, '1.5.3', '11/04/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (479, 98, '1.5.2', '09/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (480, 98, '1.5.1', '08/24/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (481, 98, '1.5.0', '07/21/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (482, 98, '1.4.39', '07/04/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (483, 98, '1.4.38', '06/24/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (484, 98, '1.4.37', '06/04/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (485, 98, '1.4.36', '03/19/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (486, 98, '1.4.35', '02/26/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (487, 98, '1.4.34', '01/07/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (488, 98, '1.4.33', '10/31/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (489, 98, '1.4.32', '10/12/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (490, 98, '1.4.31', '08/19/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (491, 98, '1.4.30', '08/11/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (492, 98, '1.4.29', '07/13/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (493, 98, '1.4.28', '07/01/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (494, 98, '1.4.27', '06/24/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (495, 98, '1.4.26', '06/17/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (496, 98, '1.4.25', '11/19/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (497, 98, '1.4.24', '04/24/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (498, 98, '1.4.23', '04/19/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (499, 98, '1.4.22', '12/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (500, 98, '1.4.21', '10/12/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (501, 98, '1.4.20', '05/11/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (502, 98, '1.4.19', '05/01/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (503, 98, '1.4.18', '04/17/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (504, 98, '1.4.17', '12/20/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (505, 98, '1.4.16', '12/09/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (506, 98, '1.4.15', '09/03/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (507, 98, '1.4.14', '07/30/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (508, 98, '1.4.13', '02/02/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (509, 98, '1.4.12', '02/01/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (510, 98, '1.4.11', '01/16/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (511, 98, '1.4.10', '11/09/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (512, 98, '1.4.9', '10/18/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (513, 98, '1.4.8', '10/04/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (514, 98, '1.4.7', '08/16/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (515, 98, '1.4.6', '07/15/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (516, 98, '1.4.5', '04/03/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (517, 98, '1.4.4', '11/26/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (518, 98, '1.4.3', '11/07/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (519, 98, '1.4.2', '10/11/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (520, 98, '1.4.1', '08/29/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (521, 98, '1.4.0', '07/09/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (522, 581, '1', '12/31/1989', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (523, 581, '1.1', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (524, 581, '4.2A', '12/31/1992', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (525, 581, '4.2B', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (526, 581, '4.21', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (527, 581, '6', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (528, 581, '6.5', '12/31/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (529, 581, '7', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (530, 581, '8', '12/31/2000', '04/08/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (531, 581, '9', '01/14/2006', '04/12/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (532, 581, '10', '11/06/2008', '07/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (533, 581, '10.25', '07/02/1905', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (534, 581, '10.5', '07/20/2010', '07/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (535, 581, '11', '05/20/2012', '07/11/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (536, 581, '12', '06/05/2014', '07/09/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (537, 581, '13', '06/01/2016', '07/13/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (538, 581, '14', '09/29/2017', '10/11/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (539, 581, '15', '11/04/2019', '01/07/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (540, 116, '4.4', '12/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (541, 116, '4.2', '12/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (542, 116, '4', '12/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (543, 116, '3.6', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (544, 116, '3.4', '12/31/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (545, 116, '3.2', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (546, 116, '3', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (547, 116, '2.6', '12/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (548, 122, '3.19', '12/31/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (549, 122, '3.2', '01/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (550, 122, '3.21', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (551, 122, '3.22', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (552, 122, '3.23', '06/30/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (553, 122, '4', '08/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (554, 122, '4.1', '06/30/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (555, 122, '5', '03/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (556, 122, '5.1', '11/27/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (557, 122, '5.5', '12/31/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (558, 122, '6', '05/22/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (559, 122, '5.6', '02/28/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (560, 122, '5.7', '10/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (561, 122, '8', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (562, 123, '4.3.5', '09/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (563, 123, '4.3.4', '09/22/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (564, 123, '4.3.3', '08/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (565, 123, '4.3.2', '07/01/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (566, 123, '4.3.1', '06/21/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (567, 123, '4.2.11', '09/06/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (568, 123, '4.2.10', '08/23/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (569, 123, '4.2.9', '07/02/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (570, 123, '4.2.8', '06/18/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (571, 123, '4.2.7', '05/27/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (572, 123, '4.2.6', '05/05/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (573, 245, '0.7', '05/27/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (574, 245, '1', '01/03/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (575, 245, '1.2', '05/22/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (576, 245, '1.5', '02/17/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (577, 245, '2', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (578, 245, '2.1', '01/22/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (579, 245, '2.2', '05/16/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (580, 245, '2.3', '09/24/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (581, 245, '2.5', '03/29/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (582, 245, '2.6', '07/15/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (583, 245, '2.7', '12/11/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (584, 245, '2.8', '06/10/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (585, 245, '2.9', '12/19/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (586, 245, '3', '06/17/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (587, 245, '3.1', '02/23/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (588, 245, '3.2', '07/04/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (589, 245, '3.3', '12/12/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (590, 245, '3.4', '06/13/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (591, 245, '3.5', '12/11/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (592, 245, '3.6', '08/01/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (593, 245, '3.7', '10/24/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (594, 245, '3.8', '12/12/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (595, 245, '3.9', '04/16/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (596, 245, '4', '09/04/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (597, 245, '4.1', '12/18/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (598, 245, '4.2', '04/23/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (599, 245, '4.3', '08/18/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (600, 245, '4.4', '12/08/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (601, 245, '4.5', '04/12/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (602, 245, '4.6', '08/16/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (603, 245, '4.7', '12/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (604, 245, '4.8', '06/08/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (605, 245, '4.9', '11/16/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (606, 245, '5', '12/06/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (607, 245, '5.1', '02/21/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (608, 245, '5.2', '05/07/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (609, 245, '5.3', '11/12/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (610, 245, '5.4', '03/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (611, 245, '5.5', '08/11/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (612, 245, '5.6', '12/08/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (613, 245, '5.7', '03/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (614, 245, '5.8', '07/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (615, 258, '3.37.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (616, 258, '3.36.0', '06/18/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (617, 258, '3.35.5', '04/19/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (618, 258, '3.35.4', '04/02/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (619, 258, '3.35.3', '03/26/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (620, 258, '3.35.2', '03/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (621, 258, '3.35.1', '03/15/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (622, 258, '3.35.0', '03/12/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (623, 258, '3.34.1', '01/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (624, 258, '3.34.0', '12/01/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (625, 258, '3.33.0', '08/14/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (626, 258, '3.32.3', '06/18/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (627, 258, '3.32.2', '06/04/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (628, 258, '3.32.1', '05/25/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (629, 258, '3.32.0', '05/22/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (630, 258, '3.31.1', '01/27/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (631, 258, '3.31.0', '01/22/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (632, 258, '3.30.1', '10/10/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (633, 258, '3.30.0', '10/04/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (634, 258, '3.29.0', '07/10/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (635, 258, '3.28.0', '04/16/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (636, 258, '3.27.2', '02/25/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (637, 258, '3.27.1', '02/08/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (638, 258, '3.27.0', '02/07/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (639, 258, '3.26.0', '12/01/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (640, 258, '3.25.3', '11/05/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (641, 258, '3.25.2', '09/25/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (642, 258, '3.25.1', '09/18/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (643, 258, '3.25.0', '09/15/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (644, 258, '3.24.0', '06/04/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (645, 258, '3.23.1', '04/10/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (646, 258, '3.23.0', '04/02/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (647, 258, '3.22.0', '01/22/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (648, 258, '3.21.0', '10/24/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (649, 258, '3.20.1', '08/24/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (650, 258, '3.20.0', '08/01/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (651, 258, '3.18.2', '06/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (652, 258, '3.18.1', '06/16/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (653, 258, '3.19.3', '06/08/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (654, 258, '3.19.2', '05/25/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (655, 258, '3.19.1', '05/24/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (656, 258, '3.19.0', '05/22/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (657, 258, '3.18.0', '03/28/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (658, 258, '3.17.0', '02/13/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (659, 258, '3.16.2', '01/06/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (660, 258, '3.16.1', '01/03/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (661, 258, '3.16.0', '01/02/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (662, 258, '3.15.2', '11/28/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (663, 258, '3.15.1', '11/04/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (664, 258, '3.15.0', '10/14/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (665, 258, '3.14.2', '09/12/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (666, 258, '3.14.1', '08/11/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (667, 258, '3.14', '08/08/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (668, 258, '3.13.0', '05/18/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (669, 258, '3.12.2', '04/18/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (670, 258, '3.12.1', '04/08/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (671, 258, '3.9.3', '03/31/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (672, 258, '3.12.0', '03/29/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (673, 258, '3.11.1', '03/03/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (674, 258, '3.11.0', '02/15/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (675, 258, '3.10.2', '01/20/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (676, 258, '3.10.1', '01/14/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (677, 258, '3.10.0', '01/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (678, 258, '3.9.2', '11/02/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (679, 258, '3.9.1', '10/16/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (680, 258, '3.9.0', '10/14/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (681, 258, '3.8.11.1', '07/29/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (682, 258, '3.8.11', '07/27/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (683, 258, '3.8.10.2', '05/20/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (684, 258, '3.8.10.1', '05/09/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (685, 258, '3.8.10', '05/07/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (686, 258, '3.8.9', '04/08/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (687, 258, '3.8.8.3', '02/25/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (688, 258, '3.8.8.2', '01/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (689, 258, '3.8.8.1', '01/20/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (690, 258, '3.8.8', '01/16/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (691, 258, '3.8.7.4', '12/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (692, 258, '3.8.7.3', '12/05/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (693, 258, '3.8.7.2', '11/18/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (694, 258, '3.8.7.1', '10/29/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (695, 258, '3.8.6.1', '10/22/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (696, 258, '3.8.7', '10/17/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (697, 258, '3.8.6', '08/15/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (698, 258, '3.8.5', '06/04/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (699, 258, '3.8.4.3', '04/03/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (700, 258, '3.8.4.2', '03/26/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (701, 258, '3.8.4.1', '03/11/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (702, 258, '3.8.4', '03/10/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (703, 258, '3.8.3.1', '02/11/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (704, 258, '3.8.3', '02/03/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (705, 258, '3.8.2', '12/06/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (706, 258, '3.8.1', '10/17/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (707, 258, '3.8.0.2', '09/03/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (708, 258, '3.8.0.1', '08/29/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (709, 258, '3.8.0', '08/26/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (710, 258, '3.7.17', '05/20/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (711, 258, '3.7.16.2', '04/12/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (712, 258, '3.7.16.1', '03/29/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (713, 258, '3.7.16', '03/18/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (714, 258, '3.7.15.2', '01/09/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (715, 258, '3.7.15.1', '12/19/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (716, 258, '3.7.15', '12/12/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (717, 258, '3.7.14.1', '10/04/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (718, 258, '3.7.14', '09/03/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (719, 258, '3.7.13', '06/11/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (720, 258, '3.7.12.1', '05/22/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (721, 258, '3.7.12', '05/14/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (722, 258, '3.7.12', '05/14/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (723, 258, '3.7.12', '05/14/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (724, 258, '3.7.11', '03/20/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (725, 258, '3.7.10', '01/16/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (726, 258, '3.7.9', '11/01/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (727, 258, '3.7.8', '09/19/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (728, 258, '3.7.7.1', '06/28/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (729, 258, '3.7.7', '06/23/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (730, 258, '3.7.6.3', '05/19/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (731, 258, '3.7.6.2', '04/17/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (732, 258, '3.7.6.1', '04/13/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (733, 258, '3.7.6', '04/12/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (734, 258, '3.7.5', '02/01/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (735, 258, '3.7.4', '12/07/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (736, 258, '3.7.3', '10/08/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (737, 258, '3.7.2', '08/24/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (738, 258, '3.7.1', '08/23/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (739, 258, '3.7.0.1', '08/04/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (740, 258, '3.7.0', '07/21/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (741, 258, '3.6.23.1', '03/26/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (742, 258, '3.6.23', '03/09/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (743, 258, '3.6.22', '01/06/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (744, 258, '3.6.21', '12/07/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (745, 258, '3.6.20', '11/04/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (746, 258, '3.6.16.1', '10/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (747, 258, '3.6.19', '10/14/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (748, 258, '3.6.18', '09/11/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (749, 258, '3.6.17', '08/10/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (750, 258, '3.6.16', '06/27/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (751, 258, '3.6.15', '06/15/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (752, 258, '3.6.14.2', '05/25/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (753, 258, '3.6.14.1', '05/19/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (754, 258, '3.6.14', '05/07/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (755, 258, '3.6.13', '04/13/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (756, 258, '3.6.12', '03/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (757, 258, '3.6.11', '02/18/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (758, 258, '3.6.10', '01/15/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (759, 258, '3.6.9', '01/14/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (760, 258, '3.6.8', '01/12/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (761, 258, '3.6.7', '12/16/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (762, 258, '3.6.6.2', '11/26/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (763, 258, '3.6.6.1', '11/22/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (764, 258, '3.6.6', '11/19/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (765, 258, '3.6.5', '11/12/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (766, 258, '3.6.4', '10/15/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (767, 258, '3.6.3', '09/22/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (768, 258, '3.6.2', '08/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (769, 258, '3.6.1', '08/06/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (770, 258, '3.6.0', '07/16/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (771, 258, '3.5.9', '05/14/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (772, 258, '3.5.8', '04/16/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (773, 258, '3.5.7', '03/17/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (774, 258, '3.5.6', '02/06/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (775, 258, '3.5.5', '01/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (776, 258, '3.5.4', '12/14/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (777, 258, '3.5.3', '11/27/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (778, 258, '3.5.2', '11/05/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (779, 258, '3.5.1', '10/04/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (780, 258, '3.5.0', '09/04/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (781, 258, '3.4.2', '08/13/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (782, 258, '3.4.1', '07/20/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (783, 258, '3.4.0', '06/18/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (784, 258, '3.3.17', '04/25/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (785, 258, '3.3.16', '04/18/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (786, 258, '3.3.15', '04/09/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (787, 258, '3.3.14', '04/02/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (788, 258, '3.3.13', '02/13/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (789, 258, '3.3.12', '01/27/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (790, 258, '3.3.11', '01/22/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (791, 258, '3.3.10', '01/10/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (792, 258, '3.3.9', '01/04/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (793, 258, '3.3.8', '10/09/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (794, 258, '3.3.7', '08/12/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (795, 258, '3.3.6', '06/06/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (796, 258, '3.3.5', '04/05/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (797, 258, '3.3.4', '02/11/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (798, 258, '3.3.3', '01/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (799, 258, '3.3.2', '01/24/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (800, 258, '3.3.1', '01/16/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (801, 258, '3.3.0', '01/11/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (802, 258, '2.8.17', '12/19/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (803, 258, '3.2.8', '12/19/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (804, 258, '3.2.7', '09/24/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (805, 258, '3.2.6', '09/17/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (806, 258, '3.2.5', '08/27/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (807, 258, '3.2.4', '08/24/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (808, 258, '3.2.3', '08/21/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (809, 258, '3.2.2', '06/12/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (810, 258, '3.2.1', '03/29/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (811, 258, '3.2.0', '03/21/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (812, 258, '3.1.6', '03/17/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (813, 258, '3.1.5', '03/11/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (814, 258, '3.1.4', '03/11/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (815, 258, '3.1.3.1', '02/28/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (816, 258, '3.1.3', '02/20/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (817, 258, '3.1.2', '02/15/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (818, 258, '2.8.16', '02/15/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (819, 258, '3.1.1', '02/01/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (820, 258, '3.1.0', '01/21/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (821, 258, '3.0.8', '10/12/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (822, 258, '3.0.7', '09/18/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (823, 258, '3.0.6', '09/02/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (824, 258, '3.0.5', '08/29/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (825, 258, '3.0.4', '08/09/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (826, 258, '3.0.3', '07/22/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (827, 258, '2.8.15', '07/22/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (828, 258, '3.0.2', '06/30/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (829, 258, '3.0.1', '06/22/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (830, 258, '3.0.0', '06/18/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (831, 258, '2.8.14', '06/09/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (832, 258, '2.8.13', '03/08/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (833, 258, '2.8.12', '02/08/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (834, 258, '2.8.11', '01/14/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (835, 258, '2.8.10', '01/14/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (836, 258, '2.8.9', '01/06/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (837, 258, '2.8.8', '12/18/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (838, 258, '2.8.7', '12/04/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (839, 258, '2.8.6', '08/22/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (840, 258, '2.8.5', '07/22/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (841, 258, '2.8.4', '06/29/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (842, 258, '2.8.3', '06/04/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (843, 258, '2.8.2', '05/17/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (844, 258, '2.8.1', '05/17/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (845, 258, '2.8.0', '02/16/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (846, 258, '2.7.6', '01/25/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (847, 258, '2.7.5', '12/28/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (848, 258, '2.7.4', '12/17/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (849, 258, '2.7.3', '10/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (850, 258, '2.7.2', '09/25/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (851, 258, '2.7.1', '08/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (852, 258, '2.7.0', '08/25/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (853, 258, '2.6.3', '08/13/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (854, 258, '2.6.2', '07/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (855, 258, '2.6.1', '07/19/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (856, 258, '2.6.0', '07/18/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (857, 258, '2.5.6', '07/07/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (858, 258, '2.5.5', '07/06/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (859, 258, '2.5.4', '07/01/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (860, 258, '2.5.3', '06/25/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (861, 258, '2.5.2', '06/25/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (862, 258, '2.5.1', '06/19/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (863, 258, '2.5.0', '06/17/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (864, 258, '2.4.12', '05/10/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (865, 258, '2.4.11', '05/08/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (866, 258, '2.4.10', '05/03/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (867, 258, '2.4.9', '04/22/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (868, 258, '2.4.8', '04/20/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (869, 258, '2.4.7', '04/12/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (870, 258, '2.4.6', '04/02/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (871, 258, '2.4.5', '04/02/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (872, 258, '2.4.4', '03/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (873, 258, '2.4.3', '03/23/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (874, 258, '2.4.2', '03/20/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (875, 258, '2.4.1', '03/13/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (876, 258, '2.4.1', '03/13/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (877, 258, '2.4.0', '03/11/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (878, 258, '2.3.3', '02/19/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (879, 258, '2.3.2', '02/14/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (880, 258, '2.3.1', '02/13/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (881, 258, '2.3.0', '02/03/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (882, 258, '2.2.5', '01/28/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (883, 258, '2.2.4', '01/22/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (884, 258, '2.2.3', '01/16/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (885, 258, '2.2.2', '01/14/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (886, 258, '2.2.1', '01/09/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (887, 258, '2.2.0', '12/22/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (888, 258, '2.1.7', '12/15/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (889, 258, '2.1.6', '12/14/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (890, 258, '2.1.5', '12/06/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (891, 258, '2.1.4', '12/05/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (892, 258, '2.1.3', '11/24/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (893, 258, '2.1.2', '11/23/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (894, 258, '2.1.1', '11/13/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (895, 258, '2.1.0', '11/12/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (896, 258, '2.0.8', '11/04/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (897, 258, '2.0.7', '10/22/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (898, 258, '2.0.6', '10/19/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (899, 258, '2.0.5', '10/15/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (900, 258, '2.0.4', '10/13/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (901, 258, '2.0.3', '10/13/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (902, 258, '2.0.2', '10/09/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (903, 258, '2.0.1', '10/02/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (904, 258, '2.0.0', '09/28/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (905, 258, '1.0.32', '07/23/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (906, 258, '1.0.31', '04/15/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (907, 258, '1.0.30', '04/06/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (908, 258, '1.0.29', '04/05/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (909, 258, '1.0.28', '04/04/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (910, 258, '1.0.27', '03/20/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (911, 258, '1.0.26', '03/20/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (912, 258, '1.0.25', '03/15/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (913, 258, '1.0.24', '03/14/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (914, 258, '1.0.23', '02/20/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (915, 258, '1.0.22', '02/19/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (916, 258, '1.0.21', '02/19/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (917, 258, '1.0.20', '02/11/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (918, 258, '1.0.19', '02/06/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (919, 258, '1.0.18', '01/04/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (920, 258, '1.0.17', '12/10/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (921, 258, '1.0.16', '11/28/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (922, 258, '1.0.15', '10/23/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (923, 258, '1.0.14', '10/19/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (924, 258, '1.0.13', '10/19/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (925, 258, '1.0.12', '10/17/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (926, 258, '1.0.10', '10/11/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (927, 258, '1.0.9', '10/09/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (928, 258, '1.0.8', '09/30/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (929, 258, '1.0.5', '09/14/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (930, 258, '1.0.4', '08/28/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (931, 258, '1.0.3', '08/22/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (932, 258, '1.0.1', '08/18/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (933, 258, '1', '08/17/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (934, 14, '18', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (935, 14, '17', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (936, 14, '16', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (937, 14, '13', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (938, 14, '1.2', '11/21/2005', '11/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (939, 14, '1.4', '12/23/2006', '04/21/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (940, 14, '1.6.0', '10/01/2008', '10/01/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (941, 14, '1.6.1', '04/27/2009', '04/27/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (942, 14, '1.6.2', '12/18/2009', '04/21/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (943, 14, '1.8', '10/21/2010', '10/21/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (944, 14, '10', '12/15/2011', '12/15/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (945, 14, '11', '10/25/2012', '10/25/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (946, 14, '12', '12/20/2013', '12/20/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (947, 14, '13', '10/24/2014', '10/24/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (948, 14, '14', '10/01/2015', '10/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (949, 14, '15', '10/01/2016', '10/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (950, 5, '1', '02/20/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (951, 5, '4.6.0', '09/21/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (952, 319, '1', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (953, 319, '3', '06/08/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (954, 131, '21.1', '05/12/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (955, 131, '20.2', '10/21/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (956, 131, '20.1', '04/23/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (957, 131, '19.2', '11/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (958, 131, '19.1', '03/21/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (959, 131, '18.2', '09/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (960, 131, '18.1', '05/24/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (961, 131, '5.1.4', '12/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (962, 131, '5.1', '12/21/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (963, 19, '9.1.04', '12/05/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (964, 19, '9.1.03', '06/09/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (965, 19, '9.1.02', '12/05/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (966, 19, '9.1.01', '06/23/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (967, 19, '9.1.00', '12/22/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (968, 170, '1.1', '02/21/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (969, 170, '1.4', '07/10/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (970, 170, '2', '09/02/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (971, 170, '2.1', '04/16/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (972, 170, '2.2', '11/17/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (973, 170, '2.2.5', '04/26/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (974, 8, '2.3.8', '01/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (975, 8, '2.3.7', '04/18/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (976, 8, '3.1.2', '08/26/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (977, 8, '2.3.6', '08/23/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (978, 8, '2.3.5', '05/14/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (979, 8, '2.3.4', '11/07/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (980, 8, '3.1.1', '11/01/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (981, 8, '3.1.0', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (982, 8, '3.0.0', '05/21/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (983, 8, '2.3.3', '04/03/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (984, 8, '2.3.2', '11/18/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (985, 8, '2.3.1', '08/24/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (986, 8, '2.2.0', '07/25/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (987, 8, '2.3.0', '07/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (988, 8, '1.2.2', '04/07/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (989, 8, '2.1.1', '12/08/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (990, 8, '2.1.0', '06/20/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (991, 8, '2.0.1', '05/25/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (992, 8, '2.0.0', '02/15/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (993, 8, '1.2.1', '06/27/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (994, 8, '1.1.1', '05/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (995, 8, '1.0.1', '05/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (996, 8, '0.14.0', '11/12/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (997, 8, '0.13.0', '04/21/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (998, 8, '0.12.0', '10/15/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (999, 8, '0.11.0', '05/15/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1000, 8, '0.10.0', '01/11/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1001, 175, '1', '07/02/1905', '06/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1002, 175, '2', '06/26/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1003, 180, '2.1.0', '07/06/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1004, 180, '2.0.1', '07/06/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1005, 180, '1.8.0', '07/06/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1006, 180, '1.7.1', '07/06/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1007, 180, '1.7.0', '10/04/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1008, 180, '1.6.0', '04/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1009, 180, '1.5.1', '04/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1010, 180, '1.4.0', '04/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1011, 180, '1.3.0', '04/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1012, 180, '1.2.0', '04/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1013, 186, '9.1', '07/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1014, 186, '9', '06/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1015, 186, '8.9', '05/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1016, 168, '6.2.4', '08/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1017, 168, '6.0.20', '04/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1018, 168, '6.0.12', '01/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1019, 168, '6.0.8', '09/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1020, 168, '6', '05/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1021, 168, '5.6.0', '04/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1022, 168, '5.5', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1023, 168, '5.4.14', '02/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1024, 168, '5.4.10', '12/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1025, 168, '5.4.6', '07/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1026, 168, '5.4.4', '06/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1027, 168, '5.4.2', '04/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1028, 168, '5.4', '12/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1029, 168, '5.2.2', '08/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1030, 168, '5.2', '07/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1031, 168, '5.0.2', '06/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1032, 168, '5', '03/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1033, 168, '4.5', '05/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1034, 168, '4.4', '12/31/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1035, 168, '4.3', '08/02/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1036, 168, '4.2.1', '10/18/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1037, 168, '4', '06/18/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1038, 165, '3.9.7', '09/24/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1039, 165, '3.8.23', '09/24/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1040, 165, '3.9.6', '09/16/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1041, 165, '3.9.5', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1042, 165, '3.8.22', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1043, 165, '3.9.4', '08/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1044, 165, '3.9.3', '08/12/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1045, 165, '3.8.21', '08/12/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1046, 165, '3.9.2', '08/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1047, 165, '3.8.20', '08/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1048, 165, '3.9.1', '07/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1049, 165, '3.9.0', '07/23/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1050, 165, '3.8.19', '07/05/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1051, 165, '3.8.18', '06/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1052, 165, '3.8.17', '06/08/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1053, 165, '3.8.16', '05/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1054, 165, '3.8.15', '05/03/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1055, 165, '3.8.14', '03/02/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1056, 165, '3.8.13', '02/27/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1057, 165, '3.8.12', '02/16/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1058, 165, '3.8.11', '01/22/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1059, 165, '3.8.10', '01/19/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1060, 165, '3.8.9', '09/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1061, 165, '3.8.8', '09/03/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1062, 165, '3.8.7', '08/17/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1063, 165, '3.7.28', '08/17/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1064, 165, '3.8.6', '08/04/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1065, 165, '3.7.27', '07/25/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1066, 165, '3.8.5', '06/15/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1067, 165, '3.8.4', '05/25/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1068, 165, '3.7.26', '05/04/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1069, 165, '3.7.25', '04/09/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1070, 165, '3.8.3', '03/10/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1071, 165, '3.7.24', '02/13/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1072, 165, '3.7.23', '12/05/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1073, 165, '3.8.2', '12/02/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1074, 165, '3.7.22', '11/27/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1075, 165, '3.8.1', '10/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1076, 165, '3.7.21', '10/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1077, 165, '3.7.20', '10/25/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1078, 165, '3.7.19', '10/02/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1079, 165, '3.8.0', '10/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1080, 165, '3.7.18', '09/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1081, 165, '3.7.17', '07/29/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1082, 165, '3.7.16', '07/08/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1083, 165, '3.7.15', '05/20/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1084, 165, '3.7.14', '03/29/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1085, 165, '3.7.13', '03/08/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1086, 165, '3.7.12', '02/15/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1087, 165, '3.7.11', '01/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1088, 165, '3.7.10', '01/07/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1089, 165, '3.7.9', '11/16/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1090, 165, '3.7.8', '09/20/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1091, 165, '3.7.7', '07/05/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1092, 165, '3.7.6', '06/13/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1093, 165, '3.6.16', '06/13/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1094, 165, '3.7.5', '05/09/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1095, 165, '3.7.4', '03/08/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1096, 165, '3.7.3', '01/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1097, 165, '3.6.15', '01/17/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1098, 165, '3.7.2', '12/23/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1099, 165, '3.7.1', '12/21/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1100, 165, '3.7.0', '11/29/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1101, 165, '3.6.14', '11/07/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1102, 165, '3.6.13', '11/06/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1103, 165, '3.6.12', '09/11/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1104, 165, '3.6.11', '08/16/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1105, 165, '3.6.10', '05/25/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1106, 165, '3.6.9', '03/29/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1107, 165, '3.6.8', '03/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1108, 165, '3.6.7', '03/15/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1109, 165, '3.6.6', '11/21/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1110, 165, '3.5.8', '11/21/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1111, 165, '3.6.5', '08/05/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1112, 165, '3.6.4', '07/29/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1113, 165, '3.6.3', '07/06/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1114, 165, '3.6.2', '05/19/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1115, 165, '3.6.1', '03/01/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1116, 165, '3.6.0', '12/22/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1117, 165, '3.5.7', '12/15/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1118, 165, '3.5.6', '10/07/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1119, 165, '3.5.5', '09/24/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1120, 165, '3.5.4', '07/22/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1121, 165, '3.5.3', '05/22/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1122, 165, '3.5.2', '05/12/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1123, 165, '3.5.1', '04/03/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1124, 165, '3.5.0', '03/11/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1125, 165, '3.4.4', '02/11/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1126, 165, '3.4.3', '01/07/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1127, 165, '3.4.2', '11/26/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1128, 165, '3.4.1', '10/29/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1129, 165, '3.4.0', '10/21/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1130, 165, '3.3.5', '08/11/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1131, 165, '3.3.4', '06/24/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1132, 165, '3.3.3', '06/17/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1133, 165, '3.3.2', '06/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1134, 165, '3.3.1', '04/29/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1135, 165, '3.3.0', '04/02/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1136, 165, '3.2.4', '03/04/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1137, 165, '3.2.3', '01/23/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1138, 165, '3.2.2', '12/11/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1139, 165, '3.2.1', '11/07/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1140, 165, '3.2.0', '10/23/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1141, 165, '3.1.5', '08/15/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1142, 165, '3.1.4', '08/07/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1143, 165, '3.1.3', '06/26/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1144, 165, '3.1.2', '06/24/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1145, 165, '3.1.1', '05/21/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1146, 165, '3.1.0', '05/01/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1147, 165, '3.0.4', '03/12/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1148, 165, '3.0.3', '03/06/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1149, 165, '3.0.2', '01/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1150, 165, '3.0.1', '12/11/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1151, 165, '3.0.0', '11/19/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1152, 165, '2.8.7', '09/27/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1153, 165, '2.8.6', '08/22/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1154, 165, '2.8.5', '08/02/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1155, 165, '2.8.4', '06/22/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1156, 165, '2.8.3', '06/21/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1157, 165, '2.8.2', '04/30/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1158, 165, '2.8.1', '03/22/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1159, 165, '2.8.0', '03/19/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1160, 165, '2.7.1', '12/20/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1161, 165, '2.7.0', '11/09/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1162, 165, '2.6.1', '09/12/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1163, 165, '2.6.0', '08/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1164, 165, '2.5.1', '06/27/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1165, 165, '2.5.0', '06/14/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1166, 165, '2.4.1', '04/07/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1167, 165, '2.4.0', '03/23/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1168, 165, '2.3.1', '02/03/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1169, 165, '2.3.0', '02/02/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1170, 165, '2.2.0', '11/30/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1171, 165, '2.1.1', '10/20/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1172, 165, '2.1.0', '09/15/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1173, 165, '2.0.0', '08/25/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1174, 165, '1.8.1', '07/15/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1175, 165, '1.8.0', '06/16/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1176, 165, '1.7.2', '02/16/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1177, 165, '1.7.1', '01/25/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1178, 165, '1.7.0', '10/07/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1179, 165, '1.6.0', '06/17/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1180, 165, '1.5.5', '05/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1181, 165, '1.5.4', '04/06/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1182, 165, '1.5.3', '02/24/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1183, 165, '1.5.1', '01/21/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1184, 165, '1.5.0', '12/18/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1185, 165, '1.4.0', '07/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1186, 165, '1.3.0', '04/01/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1187, 165, '1.2.0', '09/27/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1188, 165, '1.1.1', '08/29/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1189, 165, '1.1.0', '08/01/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1190, 165, '1.0.0', '02/08/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1191, 9, '3.0.0', '09/21/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1192, 9, '2.8.1', '09/18/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1193, 9, '2.8.0', '04/19/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1194, 9, '2.7.1', '05/10/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1195, 9, '2.7.0', '12/21/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1196, 9, '2.6.2', '04/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1197, 9, '2.6.1', '01/07/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1198, 9, '2.6.0', '08/03/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1199, 9, '2.5.1', '08/10/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1200, 9, '2.5.0', '04/15/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1201, 9, '2.4.1', '03/12/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1202, 9, '2.4.0', '12/16/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1203, 9, '2.3.1', '08/24/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1204, 9, '2.3.0', '06/25/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1205, 9, '2.2.2', '12/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1206, 9, '2.2.1', '06/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1207, 9, '2.2.0', '03/22/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1208, 9, '2.1.1', '02/15/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1209, 9, '2.1.0', '11/20/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1210, 9, '2.0.1', '11/09/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1211, 9, '2.0.0', '06/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1212, 9, '1.1.1', '07/19/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1213, 9, '1.1.0', '03/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1214, 9, '1.0.2', '07/08/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1215, 9, '1.0.1', '03/05/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1216, 9, '1.0.0', '11/01/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1217, 9, '0.11.0', '06/28/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1218, 9, '0.10.0', '05/22/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1219, 9, '0.9.0', '11/23/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1220, 9, '0.8.0', '03/12/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1221, 9, '0.7.0', '01/04/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1222, 157, '6', '01/29/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1223, 157, '6.1', '06/08/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1224, 157, '6.2', '10/02/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1225, 157, '6.3', '03/01/1998', '03/01/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1226, 157, '6.4', '10/30/1998', '10/30/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1227, 157, '6.5', '06/09/1999', '06/09/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1228, 157, '7', '05/08/2000', '05/08/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1229, 157, '7.1', '04/13/2001', '04/13/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1230, 157, '7.2', '02/04/2002', '02/04/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1231, 157, '7.3', '11/27/2002', '11/27/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1232, 157, '7.4', '11/17/2003', '10/01/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1233, 157, '8', '01/19/2005', '10/01/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1234, 157, '8.1', '11/08/2005', '11/08/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1235, 157, '8.2', '12/05/2006', '12/05/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1236, 157, '8.3', '02/04/2008', '02/07/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1237, 157, '8.4', '07/01/2009', '07/24/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1238, 157, '9', '09/20/2010', '10/08/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1239, 157, '9.1', '09/12/2011', '10/27/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1240, 157, '9.2', '09/10/2012', '11/09/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1241, 157, '9.3', '09/09/2013', '11/08/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1242, 157, '9.4', '12/18/2014', '02/13/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1243, 157, '9.5', '01/07/2016', '02/11/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1244, 157, '9.6', '09/29/2016', '11/11/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1245, 157, '10', '10/05/2017', '11/10/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1246, 157, '11', '10/18/2018', '11/09/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1247, 157, '12', '10/03/2019', '11/14/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1248, 157, '13', '09/24/2020', '11/13/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1249, 157, '14', '09/30/2021', '11/12/2026'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1250, 21, '1.0', '03/01/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1251, 21, '1', '06/06/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1252, 21, '1.0.1', '07/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1253, 21, '2', '01/23/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1254, 21, '2.0.1', '02/22/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1255, 21, '2.1', '06/28/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1256, 21, '2.0.2', '08/04/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1257, 21, '2.1.1', '09/26/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1258, 21, '2.1.2', '02/27/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1259, 21, '2.1.3', '07/05/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1260, 21, '2.2', '06/28/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1261, 21, '2.2.1', '10/02/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1262, 21, '2.2.1.1', '11/01/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1263, 21, '2.2.2', '02/27/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1264, 21, '2.3', '06/25/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1265, 21, '2.3.1', '09/24/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1266, 21, '2.3.2', '02/25/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1267, 21, '2.5', '06/24/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1268, 21, '2.5.1', '09/25/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1269, 21, '2.5.2', '02/28/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1270, 21, '2.6', '06/24/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1271, 21, '2.6.1', '09/17/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1272, 21, '2.6.2', '02/25/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1273, 21, '3.7', '06/22/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1274, 21, '3.7.1', '09/23/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1275, 21, '3.7.2', '02/24/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1276, 21, '4.2.0', '06/27/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1277, 21, '4.2.1', '09/28/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1278, 21, '4.2.2', '02/22/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1279, 21, '4.3', '06/26/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1280, 21, '4.3.1', '09/27/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1281, 21, '4.3.2', '02/28/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1282, 21, '4.4.0', '06/25/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1283, 21, '4.4.1', '09/26/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1284, 21, '4.4.2', '02/27/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1285, 21, '4.5.0', '06/24/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1286, 21, '4.6.0', '06/22/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1287, 21, '4.7.0', '06/28/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1288, 21, '4.8.0', '06/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1289, 21, '4.9.0', '06/16/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1290, 55, '94', '09/21/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1291, 55, '93', '08/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1292, 55, '92', '06/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1293, 55, '91', '05/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1294, 55, '90', '04/14/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1295, 55, '89', '03/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1296, 55, '88', '01/19/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1297, 55, '87', '11/17/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1298, 55, '86', '10/06/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1299, 55, '85', '08/25/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1300, 55, '84', '07/14/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1301, 55, '83', '05/19/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1302, 55, '81', '04/07/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1303, 55, '80', '02/04/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1304, 55, '79', '12/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1305, 55, '78', '10/22/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1306, 55, '77', '09/10/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1307, 55, '76', '06/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1308, 55, '75', '06/04/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1309, 55, '74', '04/23/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1310, 55, '73', '03/12/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1311, 55, '72', '01/29/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1312, 55, '71', '12/04/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1313, 55, '70', '10/16/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1314, 55, '69', '09/04/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1315, 55, '68', '07/24/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1316, 55, '67', '05/29/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1317, 55, '66', '04/17/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1318, 55, '65', '03/06/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1319, 55, '64', '01/23/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1320, 55, '63', '12/05/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1321, 55, '62', '10/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1322, 55, '61', '09/05/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1323, 55, '60', '07/25/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1324, 55, '59', '05/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1325, 55, '58', '04/18/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1326, 55, '57', '03/07/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1327, 150, '9.3', '12/31/2022', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1328, 150, '9.2', '08/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1329, 150, '9.1', '10/31/2020', '08/01/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1330, 150, '9.0', '02/28/2020', '10/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1331, 150, '8.3', '07/31/2019', '07/01/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1332, 150, '8.2', '11/30/2018', '02/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1333, 150, '8.1', '05/31/2018', '02/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1334, 150, '8.0', '11/30/2017', '02/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1335, 150, '7.1', '04/30/2017', '02/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1336, 27, '20210923171324', '09/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1337, 27, '20210907035717', '10/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1338, 27, '20210824134201', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1339, 27, '20210813114337', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1340, 27, '20210727104144', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1341, 27, '20210720135142', '07/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1342, 27, '20210713164523', '07/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1343, 27, '20210629161835', '07/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1344, 27, '20210616033549', '06/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1345, 27, '20210601124849', '06/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1346, 27, '20210526024943', '05/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1347, 27, '20210518074441', '05/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1348, 27, '20210504084406', '05/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1349, 27, '20210420090302', '04/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1350, 27, '20210406040048', '04/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1351, 27, '20210324172345', '03/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1352, 27, '20210309093358', '03/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1353, 27, '20210219171521', '03/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1354, 27, '20210129162733', '02/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1355, 27, '20210125155346', '01/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1356, 27, '20210112001354', '01/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1357, 27, '20201230192246', '01/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1358, 27, '20201127104018', '12/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1359, 27, '20201106153948', '11/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1360, 27, '20201020140427', '11/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1361, 27, '20201012185603', '10/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1362, 27, '20201005173827', '10/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1363, 27, '20200922182722', '09/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1364, 27, '20200908235050', '09/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1365, 27, '20200831163517', '09/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1366, 27, '20200816214709', '08/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1367, 27, '20200811175306', '08/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1368, 27, '20200807155122', '08/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1369, 27, '20200728181447', '07/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1370, 27, '20200707173044', '07/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1371, 27, '20200701215317', '07/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1372, 27, '20200617215626', '06/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1373, 27, '20200610173731', '06/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1374, 27, '20200603114954', '06/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1375, 27, '20200529133631', '06/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1376, 27, '20200520145933', '05/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1377, 27, '20200513205422', '05/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1378, 27, '20200506172513', '05/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1379, 27, '20200429153636', '05/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1380, 27, '20200420162758', '04/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1381, 27, '20200416222158', '04/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1382, 27, '20200408145843', '04/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1383, 27, '20200325163209', '03/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1384, 27, '20200316122114', '03/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1385, 27, '20200310163217', '03/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1386, 27, '20200303183409', '03/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1387, 27, '20200220011437', '02/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1388, 27, '20200131232134', '02/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1389, 27, '20200127203438', '02/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1390, 27, '20200123225613', '01/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1391, 27, '20200115001116', '01/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1392, 27, '20191211163405', '12/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1393, 27, '20191129172405', '12/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1394, 27, '20191104205453', '11/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1395, 27, '20191030224959', '11/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1396, 27, '20191024135531', '10/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1397, 27, '20191015190829', '10/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1398, 27, '20191007115919', '10/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1399, 27, '20191001203421', '10/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1400, 27, '20190904132002', '09/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1401, 27, '20190827222442', '09/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1402, 27, '20190820163418', '08/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1403, 27, '20190813170406', '08/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1404, 27, '20190806202030', '08/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1405, 27, '20190729085402', '08/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1406, 27, '20190722200451', '07/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1407, 27, '20190717161024', '07/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1408, 27, '20190711110747', '07/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1409, 27, '20190628200755', '07/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1410, 27, '20190617144820', '06/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1411, 27, '20190610211245', '06/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1412, 27, '20190605190944', '06/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1413, 27, '20190513175357', '05/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1414, 27, '20190506101326', '05/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1415, 27, '20190501153509', '05/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1416, 27, '20190422213145', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1417, 27, '20190415203801', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1418, 27, '20190410001346', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1419, 27, '20190325233053', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1420, 27, '20190304193624', '03/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1421, 27, '20190225235742', '03/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1422, 27, '20190207004055', '02/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1423, 27, '20190131011635', '02/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1424, 27, '20190124232144', '01/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1425, 27, '20190116225739', '01/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1426, 27, '20181212095204', '12/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1427, 27, '20181203095916', '12/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1428, 27, '20181126154627', '12/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1429, 27, '20181118185209', '11/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1430, 27, '20181112131523', '11/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1431, 27, '20181029174254', '11/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1432, 27, '20181020020209', '10/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1433, 27, '20181015112149', '10/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1434, 27, '20181011135231', '10/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1435, 27, '20181001090525', '10/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1436, 27, '20180920223835', '09/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1437, 27, '20180912124609', '09/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1438, 27, '20180831173550', '09/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1439, 27, '20180827132056', '08/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1440, 27, '20180817182829', '08/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1441, 27, '20180810152540', '08/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1442, 27, '20180807052402', '08/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1443, 27, '20180806202947', '08/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1444, 27, '20180803154514', '08/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1445, 27, '20180802181335', '08/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1446, 27, '20180728222031', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1447, 27, '20180720170058', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1448, 27, '20180717131009', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1449, 27, '20180714142423', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1450, 27, '20180706210448', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1451, 27, '20180629132035', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1452, 27, '20180621090851', '06/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1453, 27, '20180615105327', '06/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1454, 27, '20180608102534', '06/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1455, 27, '20180604124326', '06/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1456, 27, '20180519154949', '05/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1457, 27, '20180514204156', '05/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1458, 27, '20180504185246', '05/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1459, 27, '20180501212258', '05/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1460, 27, '20180430173459', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1461, 27, '20180424200344', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1462, 27, '20180424150704', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1463, 27, '20180420141712', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1464, 27, '20180416135645', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1465, 27, '20180406143035', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1466, 27, '20180403044658', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1467, 27, '20180326145220', '03/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1468, 27, '20180322085330', '03/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1469, 27, '20180319150121', '03/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1470, 249, '5', '11/15/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1471, 249, '4.5', '03/07/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1472, 249, '4', '05/05/2015', '05/08/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1473, 249, '3.5', '05/27/2014', '09/30/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1474, 249, '3.1', '12/19/2013', '06/10/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1475, 249, '3', '07/17/2013', '06/10/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1476, 249, '2', '12/16/2012', '06/10/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1477, 308, '5', '06/12/1905', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1478, 308, '5.01', '04/15/1991', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1479, 308, '5.2', '02/15/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1480, 308, '5.2a', '03/15/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1481, 308, '5.2b', '06/25/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1482, 308, '5.2c', '08/06/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1483, 308, '5.2d', '03/25/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1484, 308, '5.2e', '02/07/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1485, 308, '5.3', '06/26/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1486, 308, '5.3a', '05/20/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1487, 308, '5.3b', '05/20/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1488, 230, '10', '06/21/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1489, 230, '10.1', '03/20/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1490, 230, '10.2', '01/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1491, 230, '10.3', '08/23/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1492, 230, '11', '04/02/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1493, 230, '11.1', '05/07/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1494, 230, '11.2', '08/29/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1495, 230, '11.3', '06/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1496, 246, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1497, 3, '6', '05/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1498, 178, '3', '12/31/1992', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1499, 178, '4', '12/31/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1500, 178, '5', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1501, 178, '6', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1502, 178, '6.0.2', '12/31/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1503, 178, '7', '12/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1504, 178, '8', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1505, 178, '9', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1506, 178, '10', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1507, 178, '11', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1508, 178, '12', '12/31/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1509, 178, '16', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1510, 178, '17', '12/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1511, 232, '8.2.04', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1512, 10, '5', '02/21/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1513, 10, '6', '05/22/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1514, 10, '7', '05/22/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1515, 365, '8.1', '04/30/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1516, 365, '8.2', '08/18/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1517, 365, '8.3', '02/10/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1518, 365, '8.4', '09/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1519, 365, '8.5', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1520, 365, '8.6', '12/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1521, 365, '7.6', '10/16/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1522, 365, '7.5', '04/21/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1523, 365, '7.4', '07/01/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1524, 145, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1525, 7, '2.3.4', '01/22/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1526, 7, '2.4.2', '03/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1527, 7, '1.4.13', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1528, 7, '1.6.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1529, 7, '1.7.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1530, 7, '2.2.7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1531, 7, '2.3.6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1532, 7, '2.4.6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1533, 7, '3.0.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1534, 60, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1535, 12, '1.14.1', '02/10/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1536, 12, '1.10.7', '02/10/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1537, 12, '1.14.0', '05/27/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1538, 12, '1.13.0', '10/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1539, 12, '1.12.2', '07/24/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1540, 12, '1.10.6', '07/24/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1541, 12, '1.9.12', '07/24/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1542, 12, '1.12.0', '04/24/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1543, 12, '1.11.1', '01/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1544, 12, '1.10.4', '01/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1545, 12, '1.9.10', '01/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1546, 12, '1.11.0', '10/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1547, 12, '1.10.3', '10/10/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1548, 12, '1.10.2', '07/20/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1549, 12, '1.9.9', '07/20/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1550, 12, '1.10.0', '04/12/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1551, 12, '1.9.7', '08/10/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1552, 12, '1.8.19', '08/10/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1553, 12, '1.8.18', '07/07/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1554, 12, '1.9.6', '07/06/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1555, 12, '1.9.5', '11/29/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1556, 12, '1.8.17', '11/29/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1557, 12, '1.9.4', '04/28/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1558, 12, '1.8.16', '04/28/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1559, 12, '1.9.3', '09/15/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1560, 12, '1.8.15', '09/15/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1561, 12, '1.9.2', '09/23/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1562, 12, '1.9.1', '09/02/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1563, 12, '1.7.22', '08/14/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1564, 12, '1.9.0', '08/05/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1565, 12, '1.8.14', '08/05/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1566, 12, '1.7.21', '08/05/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1567, 12, '1.8.13', '03/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1568, 12, '1.7.20', '03/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1569, 12, '1.8.11', '12/15/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1570, 12, '1.7.19', '12/15/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1571, 12, '1.8.10', '08/11/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1572, 12, '1.7.18', '08/11/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1573, 12, '1.7.17', '05/19/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1574, 12, '1.8.9', '05/14/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1575, 12, '1.7.16', '02/26/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1576, 12, '1.8.8', '02/20/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1577, 12, '1.8.5', '11/25/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1578, 12, '1.7.14', '11/25/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1579, 12, '1.8.4', '10/29/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1580, 12, '1.8.3', '08/30/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1581, 12, '1.7.13', '08/30/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1582, 12, '1.8.1', '07/24/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1583, 12, '1.7.11', '07/24/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1584, 12, '1.8.0', '06/18/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1585, 12, '1.7.10', '05/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1586, 12, '1.6.23', '05/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1587, 12, '1.7.9', '04/04/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1588, 12, '1.6.21', '04/04/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1589, 12, '1.6.20', '01/08/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1590, 12, '1.7.8', '12/20/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1591, 12, '1.7.7', '10/09/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1592, 12, '1.6.19', '09/21/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1593, 12, '1.7.6', '08/15/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1594, 12, '1.7.5', '05/17/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1595, 12, '1.7.4', '03/08/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1596, 12, '1.7.3', '02/13/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1597, 12, '1.7.2', '12/05/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1598, 12, '1.7.1', '10/23/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1599, 12, '1.7.0', '10/11/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1600, 12, '1.6.18', '04/12/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1601, 12, '1.6.17', '06/01/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1602, 12, '1.6.16', '03/03/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1603, 12, '1.5.9', '12/22/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1604, 12, '1.6.15', '11/24/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1605, 12, '1.6.13', '10/01/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1606, 12, '1.6.12', '06/21/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1607, 12, '1.6.11', '04/16/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1608, 12, '1.6.9', '01/25/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1609, 12, '1.6.6', '10/22/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1610, 12, '1.6.5', '08/22/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1611, 12, '1.6.4', '08/06/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1612, 12, '1.6.3', '06/22/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1613, 12, '1.6.2', '05/11/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1614, 12, '1.6.1', '04/09/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1615, 12, '1.6.0', '03/20/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1616, 12, '1.5.7', '08/06/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1617, 12, '1.5.6', '02/26/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1618, 12, '1.5.5', '12/22/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1619, 12, '1.5.4', '10/24/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1620, 12, '1.5.3', '10/10/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1621, 12, '1.5.2', '08/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1622, 12, '1.5.1', '07/26/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1623, 12, '1.5.0', '06/19/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1624, 12, '1.4.6', '12/20/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1625, 12, '1.4.5', '08/28/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1626, 12, '1.4.4', '06/08/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1627, 12, '1.4.3', '01/25/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1628, 12, '1.4.2', '11/07/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1629, 12, '1.4.0', '09/10/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1630, 12, '1.3.2', '05/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1631, 12, '1.3.1', '04/03/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1632, 12, '1.3.0', '01/03/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1633, 12, '1.2.3', '08/25/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1634, 12, '1.2.1', '07/05/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1635, 12, '1.2.0', '05/23/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1636, 12, '1.1.4', '04/01/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1637, 12, '1.1.3', '01/14/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1638, 12, '1.1.2', '12/20/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1639, 12, '1.1.1', '10/22/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1640, 12, '1.0.9', '10/13/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1641, 12, '1.1.0', '09/29/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1642, 12, '1.0.8', '09/22/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1643, 12, '1.0.7', '09/17/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1644, 12, '1.0.6', '07/19/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1645, 12, '1.0.5', '06/10/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1646, 12, '1.0.4', '05/21/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1647, 12, '1.0.3', '05/19/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1648, 12, '1.0.2', '04/19/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1649, 12, '1.0.1', '03/12/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1650, 12, '1.0.0', '02/23/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1651, 12, '0.37', '01/25/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1652, 12, '0.36', '01/13/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1653, 12, '0.35.1', '12/20/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1654, 12, '0.35', '12/19/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1655, 12, '0.34', '12/03/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1656, 12, '0.33.1', '11/18/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1657, 12, '0.33', '11/13/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1658, 12, '0.32.1', '10/23/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1659, 12, '0.31', '10/07/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1660, 12, '0.30', '09/24/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1661, 12, '0.29', '09/05/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1662, 12, '0.28.2', '09/02/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1663, 12, '0.28.1', '08/28/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1664, 12, '0.28', '08/27/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1665, 12, '0.27', '08/10/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1666, 12, '0.26', '07/23/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1667, 12, '0.25', '07/10/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1668, 12, '0.24.2', '06/18/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1669, 12, '0.24.1', '06/16/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1670, 12, '0.24', '06/15/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1671, 12, '0.23', '05/17/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1672, 12, '0.22.2', '05/13/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1673, 12, '0.22.1', '05/09/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1674, 12, '0.22', '05/07/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1675, 12, '0.21', '04/15/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1676, 12, '0.20.1', '03/26/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1677, 12, '0.20', '03/20/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1678, 12, '0.19.1', '03/12/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1679, 12, '0.19', '03/10/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1680, 12, '0.18.1', '02/26/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1681, 12, '0.18', '02/19/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1682, 12, '0.17.1', '01/22/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1683, 12, '0.17', '01/20/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1684, 12, '0.16.1', '01/06/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1685, 12, '0.16', '12/03/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1686, 12, '0.15', '11/07/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1687, 12, '0.14.5', '10/29/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1688, 12, '0.14.4', '10/29/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1689, 12, '0.14.3', '09/20/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1690, 12, '0.14.2', '08/22/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1691, 12, '0.14.1', '08/09/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1692, 12, '0.13.2', '06/28/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1693, 12, '0.13.1', '06/20/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1694, 12, '0.13.0', '06/10/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1695, 12, '0.12', '05/03/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1696, 12, '0.11', '04/12/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1697, 12, '0.10', '03/08/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1698, 12, '0.9', '02/18/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1699, 12, '0.8', '01/14/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1700, 12, '0.7', '12/03/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1701, 422, '9', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1702, 422, '8', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1703, 422, '7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1704, 422, '6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1705, 422, '5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1706, 422, '4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1707, 422, '3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1708, 422, '2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1709, 43, '11.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1710, 43, '11.1', ' ', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1711, 43, '10.5', ' ', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1712, 43, '10.1', ' ', '09/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1713, 43, '9.8', ' ', '04/30/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1714, 43, '9.7', ' ', '09/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1715, 43, '9.5', ' ', '04/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1716, 43, '9.1', ' ', '04/30/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1717, 43, '8.1', ' ', '04/30/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1718, 68, '10', '03/27/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1719, 68, '9', '06/28/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1720, 330, '12.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1721, 330, '14.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1722, 81, '9.2', '07/23/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1723, 81, '9.1', '07/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1724, 81, 'IBM MQ on IBM Cloud', '03/13/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1725, 81, 'IBM MQ for HPE Nonstop 8.0', '06/23/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1726, 81, '9.0', '06/02/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1727, 81, '8.0', '05/23/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1728, 81, '7.5', '06/15/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1729, 81, '7.1', '11/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1730, 81, '7.0', '06/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1731, 81, '7.0', '05/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1732, 81, '6.0', '06/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1733, 81, 'WebSphere MQ 6.0 (Distributed, iSeries)', '05/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1734, 81, '5.3', '06/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1735, 81, 'WebSphere MQ 5.3 (Distributed, iSeries)', '11/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1736, 81, 'MQSeries 5.2 (Distributed)', '12/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1737, 81, '5.2', '11/30/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1738, 81, '5.1', '08/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1739, 81, '2.1', '02/28/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1740, 81, '5.1', '06/30/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1741, 81, '4.2', '02/28/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1742, 81, '5.0', '10/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1743, 81, '1.2', '08/29/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1744, 81, '1.1.4,', '06/30/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1745, 81, '2.2', '07/31/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1746, 81, '2.0', '06/30/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1747, 81, '2.2', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1748, 81, '1.1.3', '05/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1749, 81, '2.0', '02/28/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1750, 81, '3', '12/31/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1751, 81, '3.0', '07/01/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1752, 81, '1.1.2', '06/01/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1753, 81, '2.3', '04/30/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1754, 81, '1.1.1', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1755, 127, '9.5.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1756, 169, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1757, 36, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1758, 225, '3', '12/31/1986', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1759, 225, '4', '12/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1760, 225, '5', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1761, 225, '6', '12/31/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1762, 225, '7', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1763, 225, '8', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1764, 225, '9', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1765, 225, '9.4', '12/31/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1766, 225, '9.5', '12/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1767, 225, '9.6', '12/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1768, 225, '9.7', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1769, 225, '10', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1770, 225, '10.4', '12/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1771, 219, '8.5.0', '12/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1772, 128, '2.5.0', '10/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1773, 128, '2.5.1', '10/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1774, 128, '2.5.2', '10/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1775, 128, '2.5.3', '10/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1776, 128, '2.4.0', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1777, 128, '2.4.1', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1778, 128, '2.4.2', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1779, 128, '2.4.3', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1780, 128, '2.4.4', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1781, 128, '2.4.5', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1782, 128, '2.4.6', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1783, 128, '2.4.7', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1784, 128, '2.4.8', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1785, 128, '2.4.9', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1786, 128, '2.4.10', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1787, 128, '2.4.11', '12/26/2016', '05/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1788, 128, '2.3.0', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1789, 128, '2.3.1', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1790, 128, '2.3.2', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1791, 128, '2.3.3', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1792, 128, '2.3.4', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1793, 128, '2.3.5', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1794, 128, '2.3.6', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1795, 128, '2.3.7', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1796, 128, '2.3.8', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1797, 128, '2.3.9', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1798, 128, '2.3.10', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1799, 128, '2.3.11', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1800, 128, '2.3.12', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1801, 128, '2.3.13', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1802, 128, '2.3.14', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1803, 128, '2.3.15', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1804, 128, '2.3.16', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1805, 128, '2.3.17', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1806, 128, '2.3.18', '02/28/2013', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1807, 128, '2.2.0', '04/21/2011', '11/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1808, 128, '2.2.1', '04/21/2011', '11/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1809, 128, '2.2.2', '04/21/2011', '11/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1810, 128, '2.2.3', '04/21/2011', '11/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1811, 128, '2.1.0', '12/11/2009', '11/30/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1812, 128, '2.1.1', '12/11/2009', '11/30/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1813, 128, '2.1.2', '12/11/2009', '11/30/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1814, 128, '2.1.3', '12/11/2009', '11/30/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1815, 128, '2.1.4', '12/11/2009', '11/30/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1816, 215, '15', '03/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1817, 215, '16', '11/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1818, 117, '1', '11/09/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1819, 117, '1.5', '11/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1820, 117, '2', '10/24/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1821, 117, '3', '06/17/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1822, 117, '3.5', '06/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1823, 117, '3.6', '01/21/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1824, 117, '4', '10/13/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1825, 146, '1', '03/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1826, 146, '1.1', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1827, 146, '1.2.1', '08/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1828, 146, '1.5', '04/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1829, 146, '1.5.1', '06/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1830, 146, '1.5.3', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1831, 146, '1.5.4', '03/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1832, 146, '1.5.5', '07/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1833, 146, '2.1', '12/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1834, 146, '3', '03/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1835, 146, '3.1', '02/28/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1836, 146, '3.2', '08/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1837, 146, '4', '12/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1838, 146, '4.0.1', '02/28/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1839, 146, '4.0.2', '05/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1840, 146, '4.0.3', '09/30/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1841, 146, '4.1.1', '06/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1842, 146, '4.1.2', '10/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1843, 146, '4.1.3', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1844, 146, '4.1.5', '09/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1845, 146, '4.2.0', '04/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1846, 146, '17.2', '07/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1847, 146, '17.4', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1848, 146, '18.1', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1849, 146, '18.2', '07/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1850, 146, '18.3', '10/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1851, 146, '18.4', '01/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1852, 146, '19.1', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1853, 146, '19.2', '08/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1854, 146, '19.4', '12/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1855, 146, '20.2', '06/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1856, 146, '20.4', '01/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1857, 146, '20.4.1', '02/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1858, 146, '21.2', '08/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1859, 241, '2.16.0', '11/23/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1860, 241, '2.15.2', '01/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1861, 241, '2.14.0', '02/02/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1862, 241, '2.13.20', '10/20/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1863, 241, '2.12.0', '03/05/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1864, 241, '2.11.1', '07/11/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1865, 241, '2.9.1', '04/23/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1866, 241, '2.8', '03/04/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1867, 241, '2.7.1', '11/16/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1868, 241, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1869, 115, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1870, 86, ' ', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1871, 4, '1', '06/15/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1872, 4, '2', '09/01/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1873, 4, '3', '11/01/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1874, 4, '4', '04/01/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1875, 4, '5', '05/01/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1876, 4, '6', '07/01/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1877, 4, '7', '12/28/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1878, 4, '8', '11/03/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1879, 4, '9', '06/02/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1880, 4, '10', '11/15/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1881, 4, '11', '10/15/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1882, 4, '2015', '04/06/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1883, 4, '2017', '06/06/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1884, 4, '2020', '06/01/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1885, 101, '1.5', '12/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1886, 101, '2012', '09/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1887, 101, '7 ', '02/28/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1888, 101, '7.0.4.17', '05/27/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1889, 88, '2.8', '09/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1890, 88, '2.81', '10/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1891, 125, '20.03', '03/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1892, 125, '21.05', '05/31/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1893, 234, '8.6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1894, 234, '8.5.1', '05/22/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1895, 231, '7.0.0', '04/02/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1896, 231, '6.7', '04/17/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1897, 231, '6.5', '11/15/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1898, 231, '6', '03/12/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1899, 231, '5.5', '09/22/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1900, 231, '5', '08/24/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1901, 56, '5', '09/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1902, 56, '6', '09/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1903, 57, '1', '04/30/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1904, 57, '2.7.7', '05/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1905, 57, '2.8.5', '09/15/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1906, 57, '2.9.2', '11/09/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1907, 57, '2.10.1', '09/21/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1908, 57, '3.1.4', '08/03/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1909, 57, '3.2.2', '01/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1910, 57, '3.3.1', '06/15/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1911, 124, '3.29.1', '12/24/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1912, 124, '3.29', '12/04/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1913, 124, '3.28.1', '10/19/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1914, 124, '3.28', '10/01/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1915, 124, '3.27', '09/03/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1916, 124, '3.26.1', '08/12/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1917, 124, '3.26', '08/10/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1918, 124, '3.25.1', '07/29/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1919, 124, '3.25', '07/13/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1920, 124, '3.24', '06/08/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1921, 124, '3.23', '05/05/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1922, 124, '3.22.1', '04/16/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1923, 124, '3.22.0', '03/27/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1924, 124, '3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1925, 188, '6', '10/01/2013', '10/22/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1926, 188, '6.1', '05/06/2014', '10/22/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1927, 188, '6.2', '10/07/2014', '10/22/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1928, 188, '6.3', '09/22/2015', '10/22/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1929, 188, '6.4', '04/05/2016', '10/22/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1930, 188, '6.5', '09/27/2016', '10/22/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1931, 188, '6.6', '05/02/2017', '01/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1932, 188, '7', '09/26/2017', '01/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1933, 188, '7.1', '04/24/2018', '10/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1934, 188, '7.2', '10/02/2018', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1935, 188, '7.3', '06/04/2019', '10/22/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1936, 188, '8', '10/22/2019', '10/22/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1937, 188, '8.1', '10/19/2020', '10/19/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1938, 188, '8.2', '05/12/2021', '05/12/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1939, 151, '7', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1940, 151, '7.5', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1941, 151, '9', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1942, 151, '9.1', '12/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1943, 151, '9.2', '12/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1944, 84, '12.1.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1945, 84, '13.1.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1946, 84, '14.1.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1947, 84, '15.1.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1948, 84, '15.2.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1949, 603, '2013', '08/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1950, 603, '2016', '04/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1951, 603, '2019', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1952, 193, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1953, 6, '5.16.3', '08/17/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1954, 6, '5.16.2', '04/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1955, 6, '5.16.1', '01/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1956, 6, '5.16.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1957, 6, '5.15.15', '04/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1958, 6, '5.15.14', '12/09/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1959, 6, '5.15.13', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1960, 6, '5.15.12', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1961, 6, '5.15.11', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1962, 6, '5.15.10', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1963, 6, '5.15.9', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1964, 6, '5.15.8', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1965, 6, '5.15.7', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1966, 6, '5.15.6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1967, 6, '5.15.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1968, 6, '5.15.4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1969, 6, '5.15.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1970, 6, '5.15.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1971, 6, '5.15.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1972, 6, '5.15.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1973, 6, '5.14.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1974, 6, '5.14.4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1975, 6, '5.14.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1976, 6, '5.14.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1977, 6, '5.14.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1978, 6, '5.14.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1979, 6, '5.13.4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1980, 6, '5.13.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1981, 6, '5.13.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1982, 6, '5.13.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1983, 6, '5.13.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1984, 6, '5.12.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1985, 6, '5.12.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1986, 6, '5.12.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1987, 6, '5.11.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1988, 6, '5.11.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1989, 6, '5.11.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1990, 6, '5.11.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1991, 6, '5.10.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1992, 6, '5.10.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1993, 6, '5.10.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1994, 6, '5.9.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1995, 6, '5.9.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1996, 6, '5.8.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1997, 6, '5.7.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1998, 6, '5.6.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (1999, 6, '5.5.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2000, 6, '5.5.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2001, 6, '5.4.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2002, 6, '5.4.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2003, 6, '5.4.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2004, 6, '5.4.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2005, 6, '5.3.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2006, 6, '5.3.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2007, 6, '5.3.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2008, 6, '5.2.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2009, 6, '5.1.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2010, 6, '5.0.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2011, 240, '10', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2012, 240, '9.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2013, 248, '0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2014, 248, '1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2015, 248, '2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2016, 248, '3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2017, 248, '4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2018, 79, '9.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2019, 79, '9.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2020, 79, '8.6', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2021, 83, '8.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2022, 83, '8.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2023, 83, '9', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2024, 83, '10', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2025, 157, '14', '09/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2026, 157, '13', '09/24/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2027, 157, '12', '10/03/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2028, 157, '11', '10/18/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2029, 157, '10', '10/05/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2030, 157, '9.6', '09/29/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2031, 157, '9.5', '01/07/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2032, 157, '9.4', '12/18/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2033, 157, '9.3', '09/09/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2034, 157, '9.2', '09/10/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2035, 157, '9.1', '09/12/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2036, 157, '9', '09/20/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2037, 157, '8.4', '07/01/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2038, 157, '8.3', '02/04/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2039, 157, '8.2', '12/05/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2040, 157, '8.1', '11/08/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2041, 157, '8', '01/19/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2042, 157, '7.4', '11/17/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2043, 157, '7.3', '11/27/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2044, 157, '7.2', '02/04/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2045, 157, '7.1', '04/13/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2046, 157, '7', '05/08/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2047, 157, '6.5', '06/09/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2048, 157, '6.4', '10/30/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2049, 157, '6.3', '03/01/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2050, 11, '1', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2051, 11, '1.3', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2052, 11, '1.4', '12/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2053, 11, '4', '10/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2054, 11, '5', '10/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2055, 11, '6', '04/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2056, 11, '7', '09/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2057, 11, '8', '03/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2058, 73, '08.10.05', '12/18/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2059, 73, '08.10.02', '06/19/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2060, 73, '08.10.00', '12/07/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2061, 73, '08.09.02', '03/23/2018', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2062, 73, '08.09.01', '11/10/2017', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2063, 73, '08.09.00', '03/03/2017', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2064, 73, '08.08.01', '07/19/2016', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2065, 73, '08.08.00', '11/27/2015', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2066, 73, '08.07.01', '05/15/2015', '04/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2067, 73, '08.07.00', '12/05/2014', '04/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2068, 73, '08.06.00', '06/06/2014', '09/30/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2069, 73, '08.05.01', '11/29/2013', '09/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2070, 73, '08.05.00', '06/07/2013', '09/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2071, 73, '08.00.01', '12/30/2012', '09/30/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2072, 73, '08.00.00', '06/08/2012', '09/30/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2073, 73, '07.05.00', '11/18/2011', '04/30/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2074, 73, '07.01.00', '10/15/2010', '09/30/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2075, 176, '7.6', '12/31/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2076, 176, '7.7', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2077, 176, '7.8', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2078, 176, '7.9', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2079, 581, '1.0', '12/31/1989', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2080, 581, '1.1', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2081, 581, '4.2A', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2082, 581, '4.2B', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2083, 581, '4.21', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2084, 581, '6', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2085, 581, '6.5', '12/31/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2086, 581, '7', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2087, 581, '8', '12/31/2000', '04/08/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2088, 581, '9', '01/14/2006', '04/12/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2089, 581, '10', '11/06/2008', '07/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2090, 581, '10.25', '12/31/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2091, 581, '10.5', '07/20/2010', '07/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2092, 581, '11', '05/20/2012', '07/11/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2093, 581, '12', '06/05/2014', '07/09/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2094, 581, '13', '06/01/2016', '07/13/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2095, 581, '14', '09/29/2017', '10/11/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2096, 581, '15', '11/04/2019', '01/07/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2097, 121, '1.0', '10/26/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2098, 121, '2.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2099, 121, '3.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2100, 121, '3.1', '02/19/2007', '04/12/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2101, 121, '3.5', '02/19/2008', '04/10/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2102, 121, '4.0', '04/13/2011', '07/13/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2103, 31, ' ', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2104, 190, '3', '12/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2105, 190, '4', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2106, 190, '4.2', '12/31/1991', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2107, 190, '4.8', '12/31/1992', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2108, 190, '4.9', '12/31/1992', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2109, 190, '4.9.1', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2110, 190, '4.9.2', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2111, 190, '11', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2112, 190, '11.5', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2113, 190, '11.9', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2114, 190, '11.9.2', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2115, 190, '12', '12/31/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2116, 190, '12.5', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2117, 190, '12.5.0.1', '12/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2118, 190, '12.5.0.3', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2119, 190, '12.5.2', '12/31/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2120, 190, '12.5.3', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2121, 190, '12.5.4', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2122, 190, '15', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2123, 190, '15.0.1', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2124, 190, '15.0.2', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2125, 190, '15.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2126, 190, '16', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2127, 436, '12.04.5', '07/08/2014', '04/28/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2128, 436, '12.04.5', '07/08/2014', '04/28/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2129, 436, '12.04.5', '07/08/2014', '04/28/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2130, 436, '14.04.6', '03/07/2019', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2131, 436, '14.04.6', '03/07/2019', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2132, 436, '14.04.6', '03/07/2019', '04/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2133, 436, '16.04.7', '08/18/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2134, 436, '16.04.7', '08/18/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2135, 436, '16.04.7', '08/18/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2136, 436, '16.04.7', '08/18/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2137, 436, '18.04.5', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2138, 436, '18.04.5', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2139, 436, '18.04.5', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2140, 436, '18.04.5', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2141, 436, '20.04.1', '08/06/2020', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2142, 436, '20.04.1', '08/06/2020', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2143, 436, '20.04.1', '08/06/2020', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2144, 436, '20.04.1', '08/06/2020', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2145, 436, '20.10', '10/22/2020', '07/22/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2146, 436, '20.10', '10/22/2020', '07/22/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2147, 436, '4.1', '10/26/2004', '04/30/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2148, 436, '5.04', '04/08/2005', '10/31/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2149, 436, '5.1', '10/12/2005', '04/13/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2150, 436, '6.06.0', '06/01/2006', '07/14/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2151, 436, '6.06.1', '08/10/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2152, 436, '6.06.2', '01/21/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2153, 436, '6.1', '10/26/2006', '04/26/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2154, 436, '7.04', '04/19/2007', '10/19/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2155, 436, '7.1', '10/18/2007', '04/18/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2156, 436, '8.04.0', '04/24/2008', '05/12/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2157, 436, '8.04.1', '07/03/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2158, 436, '8.04.2', '01/22/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2159, 436, '8.04.3', '07/16/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2160, 436, '8.04.4', '01/28/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2161, 436, '8.1', '10/30/2008', '04/30/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2162, 436, '9.04', '04/23/2009', '10/23/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2163, 436, '9.1', '08/23/2013', '04/30/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2164, 436, '10.04.0', '10/21/2015', '05/09/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2165, 436, '10.04.1', '10/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2166, 436, '10.04.2', '10/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2167, 436, '10.04.3', '10/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2168, 436, '10.04.4', '10/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2169, 436, '10.1', '08/23/2013', '04/10/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2170, 436, '11.04', '08/23/2013', '10/28/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2171, 436, '11.1', '08/23/2013', '05/09/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2172, 436, '12.04.0', '04/27/2018', '04/28/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2173, 436, '12.04.1', '04/27/2018', '04/28/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2174, 436, '12.04.2', '04/27/2018', '08/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2175, 436, '12.04.3', '04/27/2018', '08/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2176, 436, '12.04.4', '04/27/2018', '08/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2177, 436, '12.1', '04/22/2016', '05/16/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2178, 436, '13.04', '04/22/2016', '01/27/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2179, 436, '13.1', '04/22/2016', '07/17/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2180, 436, '14.04.0', '03/07/2019', '04/30/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2181, 436, '14.04.1', '03/07/2019', '04/30/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2182, 436, '14.04.2', '03/07/2019', '08/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2183, 436, '14.04.3', '03/07/2019', '08/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2184, 436, '14.04.4', '03/07/2019', '08/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2185, 436, '14.04.5', '03/07/2019', '04/30/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2186, 436, '14.1', '04/22/2016', '07/23/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2187, 436, '15.04', '04/28/2016', '02/04/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2188, 436, '15.1', '08/04/2016', '07/28/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2189, 436, '16.04.0', '08/13/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2190, 436, '16.04.1', '08/13/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2191, 436, '16.04.2', '08/13/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2192, 436, '16.04.3', '08/13/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2193, 436, '16.04.4', '08/13/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2194, 436, '16.04.5', '08/13/2020', '04/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2195, 436, '16.1', '07/21/2017', '07/20/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2196, 436, '17.04', '02/07/2018', '01/13/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2197, 436, '17.1', '08/02/2018', '07/19/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2198, 436, '18.04.0', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2199, 436, '18.04.1', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2200, 436, '18.04.2', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2201, 436, '18.04.3', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2202, 436, '18.04.4', '08/13/2020', '04/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2203, 436, '18.1', '08/08/2019', '07/18/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2204, 436, '19.04', '08/18/2020', '04/18/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2205, 436, '19.1', '08/21/2020', '10/17/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2206, 436, '20.04.0', '02/11/2021', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2207, 436, '20.04.1', '02/11/2021', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2208, 436, '20.04', '02/11/2021', '04/30/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2209, 436, '20.1', '10/22/2020', '01/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2210, 434, '8.3', '11/03/2020', '05/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2211, 434, '8.2', '04/28/2020', '05/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2212, 434, '8.1', '11/05/2019', '05/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2213, 434, '8', '05/07/2019', '05/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2214, 434, '7.9', '09/29/2020', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2215, 434, '7.8', '03/31/2020', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2216, 434, '7.7', '08/06/2019', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2217, 434, '7.6', '10/30/2018', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2218, 434, '7.5', '04/10/2018', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2219, 434, '7.4', '07/31/2017', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2220, 434, '7.3', '11/03/2016', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2221, 434, '7.2', '11/19/2015', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2222, 434, '7.1', '03/05/2015', '06/30/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2223, 434, '7.0', '06/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2224, 434, '7.0', '12/11/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2225, 434, '6.10', '06/19/2018', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2226, 434, '6.9', '03/21/2017', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2227, 434, '6.8', '05/10/2016', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2228, 434, '6.7', '07/22/2015', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2229, 434, '6.6', '10/14/2014', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2230, 434, '6.5', '11/21/2013', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2231, 434, '6.4', '02/21/2013', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2232, 434, '6.3', '06/20/2012', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2233, 434, '6.2', '12/06/2011', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2234, 434, '6.1', '05/19/2011', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2235, 434, '6.0', '11/09/2010', '11/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2236, 434, '5.11', '09/16/2014', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2237, 434, '5.10', '10/01/2013', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2238, 434, '5.9', '01/07/2013', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2239, 434, '5.8', '02/20/2012', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2240, 434, '5.7', '07/21/2011', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2241, 434, '5.6', '01/13/2011', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2242, 434, '5.5', '03/30/2010', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2243, 434, '5.4', '09/02/2009', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2244, 434, '5.3', '01/20/2009', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2245, 434, '5.2', '05/21/2008', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2246, 434, '5.1', '11/07/2007', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2247, 434, '5.0', '03/15/2007', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2248, 434, '4.9', '02/16/2011', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2249, 434, '4.8', '05/19/2009', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2250, 434, '4.7', '07/29/2008', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2251, 434, '4.6', '11/15/2007', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2252, 434, '4.5', '05/01/2007', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2253, 434, '4.4', '08/10/2006', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2254, 434, '4.3', '03/12/2006', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2255, 434, '4.2', '10/05/2005', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2256, 434, '4.1', '06/08/2005', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2257, 434, '4', '02/15/2005', '02/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2258, 434, '3.9', '06/20/2007', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2259, 434, '3.8', '07/20/2006', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2260, 434, '3.7', '03/17/2006', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2261, 434, '3.6', '09/28/2005', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2262, 434, '3.5', '05/18/2005', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2263, 434, '3.4', '12/12/2004', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2264, 434, '3.3', '09/03/2004', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2265, 434, '3.2', '05/12/2004', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2266, 434, '3.1', '01/16/2004', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2267, 434, '3', '10/22/2003', '10/21/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2268, 434, '2.1.7', '04/28/2005', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2269, 434, '2.1.6', '12/13/2004', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2270, 434, '2.1.5', '08/18/2004', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2271, 434, '2.1.4', '04/21/2004', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2272, 434, '2.1.3', '12/19/2004', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2273, 434, '2.1.2', '03/29/2003', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2274, 434, '2.1.1', '02/14/2003', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2275, 434, '2.1', '03/23/2002', '05/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2276, 429, '0.9', '08/01/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2277, 429, '0.91', '01/01/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2278, 429, '0.93R5', '03/01/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2279, 429, '0.93R6', '11/01/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2280, 429, '1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2281, 429, '1.1', '06/17/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2282, 429, '1.2', '12/12/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2283, 429, '1.3', '06/05/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2284, 429, '2.0', '07/24/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2285, 429, '2.1', '03/09/1999', '09/30/2000'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2286, 429, '2.2', '08/15/2000', '06/30/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2287, 429, '3.0', '07/19/2002', '06/30/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2288, 429, '3.1', '06/06/2005', '03/31/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2289, 429, '4.0', '04/08/2007', '02/15/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2290, 429, '5.0', '02/14/2009', '02/06/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2291, 429, '6.0', '02/06/2011', '05/31/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2292, 429, '7', '05/04/2013', '04/26/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2293, 429, '8', '04/26/2015', '06/30/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2294, 429, '9', '06/17/2017', '01/31/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2295, 429, '10', '07/06/2019', '01/31/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2296, 429, '11', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2297, 429, '12', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2298, 429, '13', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2299, 427, '2.1', '08/19/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2300, 427, '3.1', '07/31/2005', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2301, 427, '3.3', '03/17/2005', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2302, 427, '3.4', '03/01/2005', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2303, 427, '3.5', '07/28/2005', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2304, 427, '3.6', '04/04/2006', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2305, 427, '3.7', '05/06/2006', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2306, 427, '3.8', '04/20/2012', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2307, 427, '3.9', '04/20/2012', '10/31/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2308, 427, '4', '06/23/2005', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2309, 427, '4.0', '09/15/2005', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2310, 427, '4.1', '10/19/2005', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2311, 427, '4.2', '11/04/2006', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2312, 427, '4.2.0', '10/23/2005', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2313, 427, '4.3', '08/27/2006', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2314, 427, '4.4', '11/01/2006', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2315, 427, '4.5', '12/08/2007', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2316, 427, '4.6', '09/18/2008', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2317, 427, '4.7', '02/14/2010', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2318, 427, '4.8', '04/20/2012', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2319, 427, '4.9', '04/20/2012', '02/29/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2320, 427, '5', '04/11/2007', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2321, 427, '5.1', '11/27/2007', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2322, 427, '5.2', '06/18/2008', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2323, 427, '5.3', '02/14/2010', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2324, 427, '5.4', '06/25/2010', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2325, 427, '5.5', '05/14/2010', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2326, 427, '5.6', '08/12/2011', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2327, 427, '5.7', '09/13/2011', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2328, 427, '5.8', '02/27/2012', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2329, 427, '5.9', '01/12/2013', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2330, 427, '5.1', '10/07/2014', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2331, 427, '5.11', '09/27/2014', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2332, 427, '6', '12/19/2011', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2333, 427, '6.1', '12/08/2011', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2334, 427, '6.2', '12/19/2011', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2335, 427, '6.3', '07/09/2012', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2336, 427, '6.4', '06/20/2013', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2337, 427, '6.5', '12/21/2013', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2338, 427, '6.6', '07/31/2015', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2339, 427, '6.7', '01/21/2016', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2340, 427, '6.8', '05/24/2016', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2341, 427, '6.9', '04/04/2017', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2342, 427, '6.1', '07/02/2018', '05/10/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2343, 427, '7.0.1406', '04/07/2015', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2344, 427, '7.1.1503', '11/13/2015', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2345, 427, '7.2.1511', '05/18/2016', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2346, 427, '7.3.1611', '02/20/2017', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2347, 427, '7.4.1708', '02/26/2018', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2348, 427, '7.5.1804', '05/09/2018', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2349, 427, '7.6.1810', '12/02/2018', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2350, 427, '7.7.1908', '09/15/2019', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2351, 427, '7.8.2003', '06/17/2020', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2352, 427, '7.9.2009', '01/18/2021', '08/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2353, 427, '8.0', '03/10/2021', '05/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2354, 427, '8.0.1905', '09/09/2020', '05/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2355, 427, '8.1.1911', '10/21/2020', '05/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2356, 427, '8.2.2004', '01/15/2021', '05/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2357, 427, '8.3.2011', '02/22/2021', '05/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2358, 453, '1', '11/05/2003', '09/20/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2359, 453, '2', '05/18/2004', '04/11/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2360, 453, '3', '11/08/2004', '01/16/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2361, 453, '4', '06/13/2005', '08/07/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2362, 453, '5', '03/20/2006', '07/02/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2363, 453, '6', '10/24/2006', '12/07/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2364, 453, '7', '05/31/2007', '06/13/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2365, 453, '8', '11/08/2007', '01/07/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2366, 453, '9', '05/13/2008', '07/10/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2367, 453, '10', '11/25/2008', '12/17/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2368, 453, '11', '06/09/2009', '06/25/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2369, 453, '12', '11/17/2009', '12/02/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2370, 453, '13', '05/25/2010', '06/24/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2371, 453, '14', '11/02/2010', '12/09/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2372, 453, '15', '05/24/2011', '06/26/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2373, 453, '16', '11/08/2011', '02/12/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2374, 453, '17', '05/29/2012', '07/30/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2375, 453, '18', '01/15/2013', '01/14/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2376, 453, '19', '07/02/2013', '01/06/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2377, 453, '20', '12/17/2013', '06/23/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2378, 453, '21', '12/09/2014', '01/12/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2379, 453, '22', '05/26/2015', '07/19/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2380, 453, '23', '11/03/2015', '12/20/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2381, 453, '24', '06/21/2016', '08/08/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2382, 453, '25', '11/22/2016', '12/12/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2383, 453, '26', '07/11/2017', '05/29/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2384, 453, '27', '11/14/2017', '11/30/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2385, 453, '28', '05/01/2018', '05/28/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2386, 453, '29', '10/30/2018', '11/26/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2387, 453, '30', '05/07/2019', '05/26/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2388, 453, '31', '10/29/2019', '11/24/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2389, 453, '32', '04/28/2020', '05/25/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2390, 453, '33', '10/27/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2391, 453, '34', '04/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2392, 453, '35', '10/19/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2393, 432, '4.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2394, 432, '4.6', '12/10/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2395, 432, '4.7', '08/05/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2396, 432, '4.8', '05/26/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2397, 432, '4.9', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2398, 432, '5', '06/26/2007', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2399, 432, '5.1', '11/26/2007', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2400, 432, '5.2', '06/02/2008', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2401, 432, '5.3', '01/28/2009', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2402, 432, '5.4', '09/09/2009', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2403, 432, '5.5', '04/07/2010', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2404, 432, '5.6', '01/22/2011', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2405, 432, '5.7', '08/16/2011', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2406, 432, '5.8', '03/02/2012', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2407, 432, '5.9', '01/16/2013', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2408, 432, '5.1', '10/08/2013', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2409, 432, '5.11', '09/23/2014', '03/31/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2410, 432, '6', '02/11/2011', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2411, 432, '6.1', '06/01/2011', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2412, 432, '6.2', '12/15/2011', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2413, 432, '6.3', '06/28/2012', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2414, 432, '6.4', '02/28/2013', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2415, 432, '6.5', '11/27/2013', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2416, 432, '6.6', '10/21/2014', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2417, 432, '6.7', '07/31/2015', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2418, 432, ' ', '03/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2419, 432, '6.8', '05/16/2016', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2420, 432, '6.9', '03/28/2017', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2421, 432, '6.1', '07/02/2018', '03/31/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2422, 432, '7', '07/23/2014', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2423, 432, '7.1', '03/12/2015', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2424, 432, '7.2', '11/25/2015', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2425, 432, '7.3', '11/10/2016', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2426, 432, '7.4', '08/08/2017', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2427, 432, '7.5', '04/17/2018', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2428, 432, '7.6', '11/07/2018', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2429, 432, '7.7', '08/15/2019', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2430, 432, '7.8', '04/08/2020', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2431, 432, '7.9', '10/07/2020', '07/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2432, 432, '8', '07/18/2019', '07/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2433, 432, '8.1', '11/15/2019', '07/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2434, 432, '8.2', '05/06/2020', '07/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2435, 432, '8.3', '11/13/2020', '07/31/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2436, 454, '2011.09', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2437, 454, '2012.03.3', '06/27/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2438, 454, '2012.09.1', '02/19/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2439, 454, '2013.03', '05/13/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2440, 454, '2013.03.1', '05/13/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2441, 454, '2013.09.1', '11/11/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2442, 454, '2013.09.2', '12/12/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2443, 454, '2014.03.1', '04/14/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2444, 454, '2014.03.2', '06/16/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2445, 454, '2014.09.1', '10/14/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2446, 454, '2014.09.2', '01/29/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2447, 454, '2015.03.1', '08/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2448, 454, '2015.09.2', '02/16/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2449, 454, '2016.03.1', '05/04/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2450, 454, '2016.03.2', '06/09/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2451, 454, '2016.03.3', '06/28/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2452, 454, '2016.09.1', '12/22/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2453, 454, '2017.03', '06/19/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2454, 454, '2017.09', '11/06/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2455, 454, '2018.03', '05/14/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2456, 431, '10.2', '12/07/2006', '11/30/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2457, 431, '10.3', '10/04/2007', '10/31/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2458, 431, '11', '06/19/2008', '07/26/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2459, 431, '11.1', '12/18/2008', '01/14/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2460, 431, '11.2', '11/12/2009', '05/12/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2461, 431, '11.3', '07/15/2010', '01/20/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2462, 431, '11.4', '03/10/2011', '11/05/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2463, 431, '12.1', '11/16/2011', '05/15/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2464, 431, '12.2', '09/05/2012', '01/15/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2465, 431, '12.3', '03/13/2013', '01/29/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2466, 431, '13.1', '11/19/2013', '02/03/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2467, 431, '13.2', '11/04/2014', '01/17/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2468, 431, '42.1', '11/04/2015', '05/17/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2469, 431, '42.2', '11/16/2016', '01/26/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2470, 431, '42.3', '07/26/2017', '07/01/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2471, 431, '15', '05/25/2018', '12/03/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2472, 431, '15.1', '05/22/2019', '02/02/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2473, 431, '15.2', '07/02/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2474, 431, '15.3', '07/07/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2475, 435, 'SuSE Linux Enterprise Server S/390', '10/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2476, 435, 'Sparc', '04/01/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2477, 435, 'IAs32', '04/01/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2478, 435, '7', '10/13/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2479, 435, '8', '10/01/2002', '12/20/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2480, 435, '8 SP1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2481, 435, '8 SP2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2482, 435, '8 SP2a', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2483, 435, '8 SP3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2484, 435, '8 SP4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2485, 435, '9', '08/03/2004', '08/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2486, 435, '9 SP1', '01/19/2005', '08/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2487, 435, '9 SP2', '07/07/2005', '08/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2488, 435, '9 SP3', '12/22/2005', '08/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2489, 435, '9 SP4', '12/12/2007', '08/31/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2490, 435, '10', '06/17/2006', '07/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2491, 435, '10 SP1', '06/18/2007', '07/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2492, 435, '10 SP2', '05/19/2008', '07/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2493, 435, '10 SP3', '10/12/2009', '07/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2494, 435, '10 SP4', '04/12/2011', '07/31/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2495, 435, '11', '03/24/2009', '03/31/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2496, 435, '11 SP1', '06/02/2010', '03/31/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2497, 435, '11 SP2', '02/15/2012', '03/31/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2498, 435, '11 SP3', '07/01/2013', '03/31/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2499, 435, '11 SP4', '07/16/2015', '03/31/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2500, 435, '12', '10/27/2014', '08/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2501, 435, '12 SP1', '01/12/2016', '08/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2502, 435, '12 SP2', '11/11/2016', '08/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2503, 435, '12 SP3', '09/07/2017', '08/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2504, 435, '12 SP4', '12/11/2018', '08/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2505, 435, '12 SP5', '12/09/2019', '08/31/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2506, 435, '15', '07/16/2018', '07/31/2028'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2507, 435, '15 SP1', '06/24/2019', '07/31/2028'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2508, 435, '15 SP2', '07/21/2020', '07/31/2028'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2509, 430, '20.4', '12/25/2020', '06/25/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2510, 430, '20.3', '09/29/2020', '03/29/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2511, 430, '20.2', '06/30/2020', '12/30/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2512, 430, '20.1', '03/27/2020', '09/27/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2513, 430, '19.4', '12/26/2019', '06/26/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2514, 430, '19.3', '09/26/2019', '03/26/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2515, 430, '19.2', '06/26/2019', '12/26/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2516, 430, '19.1', '03/27/2019', '09/27/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2517, 430, '18.4', '12/22/2018', '06/22/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2518, 430, '18.3', '09/26/2018', '03/26/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2519, 430, '18.2', '06/29/2018', '12/29/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2520, 430, '18.1', '03/28/2018', '09/28/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2521, 430, '17.4', '12/21/2017', '06/21/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2522, 430, '17.3', '08/25/2017', '02/25/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2523, 430, '17.2', '06/06/2017', '12/06/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2524, 430, '17.1', '03/03/2017', '09/03/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2525, 430, '16.2', '11/29/2016', '05/29/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2526, 430, '16.1', '07/28/2016', '01/28/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2527, 430, '15.1X53', '06/05/2015', '12/05/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2528, 430, '15.1X49', '06/30/2015', '06/30/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2529, 430, '15.1', '06/05/2015', '12/05/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2530, 430, '14.2', '11/05/2014', '05/05/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2531, 430, '14.1X53', '09/26/2014', '06/30/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2532, 430, '14.1', '06/13/2014', '06/13/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2533, 430, '13.3', '01/22/2014', '07/22/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2534, 430, '13.2X52', '07/06/2014', '06/30/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2535, 430, '13.2X51', '11/22/2013', '06/30/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2536, 430, '13.2X50', '06/28/2013', '12/28/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2537, 430, '13.2', '08/29/2013', '02/29/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2538, 430, '13.1X50', '07/25/2013', '12/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2539, 430, '13.1', '03/15/2013', '09/15/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2540, 430, '12.3X54', '07/18/2014', '07/18/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2541, 430, '12.3X52', '08/23/2013', '02/23/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2542, 430, '12.3X51', '03/15/2013', '09/15/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2543, 430, '12.3X50', '12/08/2012', '07/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2544, 430, '12.3X48', '03/06/2015', '06/30/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2545, 430, '12.3', '01/31/2013', '07/31/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2546, 430, '12.2X50', '07/05/2012', '07/31/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2547, 430, '12.2', '09/05/2012', '03/05/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2548, 430, '12.1X49', '04/19/2012', '10/19/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2549, 430, '12.1X48', '01/28/2013', '06/30/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2550, 430, '12.1X47', '08/18/2014', '02/18/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2551, 430, '12.1X46', '12/30/2013', '06/30/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2552, 430, '12.1X45', '07/17/2013', '01/17/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2553, 430, '12.1X44', '01/18/2013', '07/18/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2554, 430, '12.1', '03/28/2012', '09/28/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2555, 430, '11.4', '12/21/2011', '06/21/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2556, 430, '11.3', '08/15/2011', '03/15/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2557, 430, '11.2', '08/03/2011', '02/15/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2558, 430, '11.1', '03/29/2011', '05/15/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2559, 430, '10.41', '12/08/2010', '06/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2560, 430, '10.3', '08/15/2010', '12/21/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2561, 430, '10.2', '05/28/2010', '11/15/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2562, 430, '10.1', '02/15/2010', '05/15/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2563, 430, '10.0', '11/04/2009', '05/15/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2564, 430, '9.6', '08/06/2009', '11/06/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2565, 430, '9.5', '04/14/2009', '08/15/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2566, 430, '9.4', '02/11/2009', '05/11/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2567, 430, '9.3', '11/14/2008', '05/15/2012'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2568, 430, '9.2', '08/12/2008', '11/12/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2569, 430, '9.1', '04/28/2008', '07/28/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2570, 430, '9.0', '02/15/2008', '05/15/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2571, 430, '8.5', '11/16/2007', '05/16/2011'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2572, 430, '8.4', '08/09/2007', '11/09/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2573, 430, '8.3', '04/18/2007', '07/18/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2574, 430, '8.2', '02/15/2007', '05/15/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2575, 430, '8.11', '11/06/2006', '05/06/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2576, 430, '8.0', '08/15/2006', '11/15/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2577, 430, '7.6', '05/15/2006', '08/15/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2578, 430, '7.5', '02/08/2006', '05/08/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2579, 430, '7.4', '11/15/2005', '02/15/2007'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2580, 430, '7.3', '08/16/2005', '11/16/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2581, 430, '7.2', '05/14/2005', '08/14/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2582, 430, '7.1', '02/14/2005', '05/14/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2583, 430, '7.0', '11/15/2004', '02/15/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2584, 430, '6.4', '08/12/2004', '11/12/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2585, 430, '6.3', '05/15/2004', '08/15/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2586, 430, '6.2', '02/15/2004', '05/15/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2587, 430, '6.1', '11/15/2003', '02/15/2005'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2588, 430, '6.0', '08/15/2003', '11/15/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2589, 430, '5.7', '05/15/2003', '08/15/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2590, 430, '5.6', '02/15/2003', '05/15/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2591, 430, '5.5', '11/15/2002', '02/15/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2592, 430, '5.4', '08/12/2002', '11/15/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2593, 430, '5.3', '05/12/2002', '08/15/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2594, 430, '5.2', '02/12/2002', '05/15/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2595, 430, '5.1', '11/07/2001', '02/15/2003'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2596, 430, '5.0', '08/17/2001', '11/15/2002'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2597, 430, '4.4', '04/30/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2598, 430, '4.3', '01/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2599, 430, '4.2', '10/16/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2600, 430, '4.1', '08/15/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2601, 430, '4.0', '03/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2602, 433, '1', '06/16/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2603, 433, '2', '10/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2604, 433, '3', '02/07/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2605, 433, '4', '03/05/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2606, 322, '1', '10/01/1956', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2607, 322, '2', '12/31/1958', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2608, 322, '3', '12/31/1958', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2609, 322, '4', '12/31/1961', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2610, 322, '5.0', '12/31/1968', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2611, 322, '5.1', '12/31/1980', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2612, 322, '6', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2613, 322, '66', '12/31/1966', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2614, 322, '77', '12/31/1978', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2615, 322, '90', '12/31/1991', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2616, 322, '95', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2617, 322, '2003', '12/31/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2618, 322, '2008', '09/01/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2619, 322, '2018', '11/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2620, 589, 'ES1', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2621, 589, 'ES2', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2622, 589, 'ES3', '12/31/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2623, 589, 'ES4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2624, 589, 'ES5', '12/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2625, 589, 'ES6', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2626, 343, '1', '12/31/1981', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2627, 343, '2', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2628, 599, 'pascal', '12/31/2070', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2629, 599, 'Object pascal', '12/31/1985', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2630, 599, 'extended pascal', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2631, 599, 'Free pascal', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2632, 599, 'smalltalk80', '12/31/1980', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2633, 363, 'ANSI smalltalk', '12/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2634, 363, 'Ambrai smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2635, 363, 'Dolphin smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2636, 363, 'GNU smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2637, 363, 'LSWsvision smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2638, 363, 'Little smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2639, 363, 'Resilient embedded smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2640, 363, 'Object studio smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2641, 363, 'Pocket smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2642, 363, 'Public Domain smalltalk (PDST)', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2643, 363, 'Slate smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2644, 363, 'Smalltalk Express', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2645, 363, 'smalltalk MT', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2646, 363, 'smalltalk X', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2647, 363, 'Squat smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2648, 363, 'Squeak smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2649, 363, 'Strong smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2650, 363, 'Susie smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2651, 363, 'Talks2 smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2652, 363, 'VisualWorks smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2653, 363, 'VisualAge smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2654, 363, 'Vmx Quicknet smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2655, 363, 'Zoku smalltalk', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2656, 324, '0.1.1', '07/02/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2657, 324, '0.2.0', '07/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2658, 324, '0.3.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2659, 324, '0.4.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2660, 324, '0.5.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2661, 324, '0.6.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2662, 324, '0.7.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2663, 324, '0.8.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2664, 324, '0.9.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2665, 324, '0.10.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2666, 324, '0.11.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2667, 324, '0.12.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2668, 324, '0.13.0', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2669, 324, '14', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2670, 324, '14.1', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2671, 324, '14.2', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2672, 324, '14.3', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2673, 324, '14.4', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2674, 324, '14.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2675, 324, '15', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2676, 360, '72', '01/31/1972', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2677, 360, '76', '07/31/1976', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2678, 360, '79.5', '04/30/1981', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2679, 360, '82.4', '01/31/1983', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2680, 360, '4.06', '03/31/1984', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2681, 360, '5.03', '07/31/1986', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2682, 360, '6.01', '01/31/1985', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2683, 360, '6.03', '03/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2684, 360, '6.06', '03/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2685, 360, '6.07', '04/30/1991', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2686, 360, '6.08', '03/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2687, 360, '6.09', '10/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2688, 360, '6.1', '10/31/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2689, 360, '6.11', '10/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2690, 360, '6.12', '11/30/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2691, 360, '7', '10/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2692, 360, '8', '11/30/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2693, 360, '8.1', '07/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2694, 360, '8.2', '03/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2695, 360, '9', '10/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2696, 360, '9.1', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2697, 360, '9.1.3', '08/31/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2698, 360, '9.2', '03/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2699, 360, '9.2M2', '04/30/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2700, 360, '9.3', '07/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2701, 360, '9.3M2', '08/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2702, 360, '9.4', '07/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2703, 360, '9.4M1', '12/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2704, 360, '9.4M2', '08/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2705, 360, '9.4M3', '07/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2706, 360, '9.4M4', '11/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2707, 360, '9.4M5', '09/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2708, 360, '9.4M6', '11/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2709, 360, '9.4M7', '08/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2710, 367, '0.8', '10/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2711, 367, '0.9', '06/18/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2712, 367, '1', '04/12/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2713, 367, '1.1', '10/06/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2714, 367, '1.3', '11/12/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2715, 367, '1.4', '01/20/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2716, 367, '1.5', '07/20/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2717, 367, '1.6', '09/16/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2718, 367, '1.7', '11/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2719, 367, '1.8', '02/22/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2720, 367, '2', '09/22/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2721, 367, '2.1', '11/08/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2722, 367, '2.2', '02/22/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2723, 367, '2.3', '04/27/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2724, 367, '2.4', '06/27/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2725, 367, '2.5', '08/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2726, 367, '2.6', '10/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2727, 367, '2.7', '01/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2728, 367, '2.8', '03/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2729, 367, '2.9', '05/14/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2730, 367, '3', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2731, 367, '3.1', '09/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2732, 367, '3.2', '11/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2733, 367, '3.3', '01/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2734, 367, '3.4', '03/29/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2735, 367, '3.5', '05/29/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2736, 367, '3.6', '08/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2737, 367, '3.7', '11/05/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2738, 367, '3.8', '02/20/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2739, 367, '3.9', '05/12/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2740, 367, '4', '08/20/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2741, 367, '4.1', '11/19/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2742, 367, '4.2', '02/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2743, 367, '4.3', '05/26/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2744, 367, '4.4', '08/26/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2745, 584, 'JDK Beta', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2746, 584, '1.0', '01/01/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2747, 584, '1.1', '02/01/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2748, 584, '1.2', '12/01/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2749, 584, '1.3', '05/01/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2750, 584, '1.4', '02/01/2002', '10/01/2008'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2751, 584, '5.0', '09/01/2004', '11/01/2009'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2752, 584, '6', '12/01/2006', '04/01/2013'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2753, 584, '7', '07/01/2011', '04/01/2015'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2754, 584, '8', '03/01/2014', '12/01/1930'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2755, 584, '9', '09/01/2017', '03/01/2018'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2756, 584, '10', '03/01/2018', '09/01/2026'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2757, 584, '11', '09/01/2018', '10/01/2024'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2758, 584, '12', '03/01/2019', '09/01/2019'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2759, 584, '13', '09/01/2019', '03/01/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2760, 584, '14', '03/01/2020', '09/01/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2761, 584, '15', '09/01/2020', '03/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2762, 584, '16', '03/01/2021', '09/01/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2763, 584, '17', '09/01/2021', '09/01/2029'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2764, 584, '18', '03/01/2022', '09/01/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2765, 584, '19', '09/01/2022', '03/01/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2766, 584, '20', '03/01/2023', '01/09/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2767, 584, '21', '09/01/2023', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2768, 585, '1', '12/18/1987', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2769, 585, '4', '12/31/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2770, 585, '5', '10/17/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2771, 585, '5.001', '03/13/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2772, 585, '5.002', '02/29/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2773, 585, '5.003', '06/25/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2774, 585, '5.004', '05/15/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2775, 585, '5.005', '07/22/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2776, 585, '5.6', '03/22/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2777, 585, '5.8', '07/18/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2778, 585, '5.10.0', '12/18/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2779, 585, '5.11', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2780, 585, '5.12', '04/12/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2781, 585, '5.12.3', '01/21/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2782, 585, '5.12.4', '06/20/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2783, 585, '5.12.5', '11/10/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2784, 585, '5.14', '05/14/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2785, 585, '5.16', '05/20/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2786, 585, '5.18', '05/18/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2787, 585, '5.20.0', '05/27/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2788, 368, '7.0', '12/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2789, 368, '7.1', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2790, 368, '8.0', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2791, 368, '9.0', '11/19/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2792, 368, '10.0', '04/01/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2793, 368, '11.0', '12/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2794, 368, '12.0', '12/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2795, 368, '14.0', '12/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2796, 368, '15.0', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2797, 368, '16.0', '12/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2798, 315, '1', '09/01/1987', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2799, 315, '2', '04/01/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2800, 315, '3', '10/01/1991', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2801, 315, '4', '01/01/1993', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2802, 315, '5', '03/01/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2803, 315, '5.45.5', '02/04/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2804, 364, '1.0', '09/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2805, 364, '1.1', '10/22/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2806, 364, '1.2', '04/08/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2807, 364, '2.0', '09/21/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2808, 364, '2.1', '10/20/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2809, 364, '2.2', '03/21/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2810, 364, '2.2.1', '05/03/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2811, 364, '3.0', '09/13/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2812, 364, '3.0.1', '10/28/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2813, 364, '3.0.2', '12/13/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2814, 364, '3.1', '03/27/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2815, 364, '3.1.1', '04/21/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2816, 364, '4.0', '09/19/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2817, 364, '4.0.2', '11/01/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2818, 364, '4.0.3', '12/05/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2819, 364, '4.1', '03/29/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2820, 364, '4.1.1', '05/04/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2821, 364, '4.1.2', '05/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2822, 364, '4.1.3', '07/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2823, 364, '4.2', '09/17/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2824, 364, '4.2.1', '10/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2825, 364, '4.2.2', '02/04/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2826, 364, '4.2.3', '02/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2827, 364, '4.2.4', '03/29/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2828, 364, '5.0', '03/25/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2829, 364, '5.0.1', '04/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2830, 364, '5.0.2', '07/15/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2831, 364, '5.0.3', '08/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2832, 364, '5.1', '09/10/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2833, 364, '5.1.1', '10/11/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2834, 364, '5.1.2', '11/07/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2835, 364, '5.1.3', '12/13/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2836, 364, '5.1.4', '01/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2837, 364, '5.1.5', '03/09/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2838, 364, '5.2', '03/24/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2839, 364, '5.2.1', '03/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2840, 364, '5.2.2', '04/15/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2841, 364, '5.2.3', '04/29/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2842, 364, '5.2.4', '05/20/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2843, 364, '5.2.5', '08/05/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2844, 364, '5.3', '09/16/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2845, 364, '5.3.1', '11/13/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2846, 364, '5.3.2', '12/15/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2847, 364, '5.3.3', '01/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2848, 364, '5.4', '04/26/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2849, 364, '5.4.1', '05/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2850, 364, '5.4.2', '06/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2851, 364, '5.4.3', '09/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2852, 364, '5.5', '09/20/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2853, 341, 'ACL2', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2854, 341, 'Arc', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2855, 341, 'AutoLISP', '12/31/1986', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2856, 341, 'BBN LISP', '12/31/2066', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2857, 341, 'Chez Scheme', '12/31/1985', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2858, 341, 'Chicken', '12/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2859, 341, 'Clojure', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2860, 341, 'ANSI Common Lisp', '12/31/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2861, 341, 'Common Lisp', '12/31/1984', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2862, 341, 'Dylan', '12/31/1992', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2863, 341, 'Emacs Lisp', '12/31/1976', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2864, 341, 'EuLisp', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2865, 341, 'Franz Lisp', '12/31/1980', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2866, 341, 'Game Oriented Assembly Lisp (GOAL)', '12/31/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2867, 341, 'Hy', '12/31/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2868, 341, 'Ikarus', '12/31/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2869, 341, 'Interlisp', '12/31/2067', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2870, 341, 'ISLISP', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2871, 341, 'Le Lisp', '12/31/1981', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2872, 341, 'Lisp Flavored Erlang (LFE)', '12/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2873, 341, 'Lisp Machine Lisp', '12/31/1984', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2874, 341, 'Maclisp', '12/31/2066', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2875, 341, 'MultiLisp', '12/31/1980', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2876, 341, 'NIL', '12/31/2070', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2877, 341, 'OpenLisp', '12/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2878, 341, 'Owl Lisp', '12/31/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2879, 341, 'PicoLisp', '12/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2880, 341, 'Portable Standard Lisp', '12/31/1980', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2881, 341, 'Racket', '12/31/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2882, 341, 'Scheme', '12/31/2070', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2883, 341, 'Scheme In One Defun (SIOD)', '12/31/1988', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2884, 341, 'SKILL', '12/31/1990', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2885, 341, 'TXR Lisp', '12/31/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2886, 587, '3.10.0', '10/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2887, 587, '3.9.7', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2888, 587, '3.9.6', '06/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2889, 587, '3.9.5', '05/03/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2890, 587, '3.9.4', '04/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2891, 587, '3.9.3', '04/02/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2892, 587, '3.9.2', '02/19/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2893, 587, '3.9.1', '12/08/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2894, 587, '3.9.0', '10/05/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2895, 587, '3.8.12', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2896, 587, '3.8.11', '06/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2897, 587, '3.8.10', '05/03/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2898, 587, '3.8.9', '04/02/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2899, 587, '3.8.8', '02/19/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2900, 587, '3.8.7', '12/21/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2901, 587, '3.8.6', '09/23/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2902, 587, '3.8.5', '07/20/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2903, 587, '3.8.4', '07/13/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2904, 587, '3.8.3', '05/13/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2905, 587, '3.8.2', '02/24/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2906, 587, '3.8.1', '12/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2907, 587, '3.8.0', '10/14/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2908, 587, '3.7.12', '09/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2909, 587, '3.7.11', '06/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2910, 587, '3.7.10', '02/15/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2911, 587, '3.7.9', '08/17/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2912, 587, '3.7.8', '06/27/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2913, 587, '3.7.7', '03/10/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2914, 587, '3.7.6', '12/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2915, 587, '3.7.5', '10/15/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2916, 587, '3.7.4', '07/08/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2917, 587, '3.7.3', '03/25/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2918, 587, '3.7.2', '12/24/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2919, 587, '3.7.1', '10/20/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2920, 587, '3.7.0', '06/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2921, 587, '3.6.15', '09/04/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2922, 587, '3.6.14', '06/28/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2923, 587, '3.6.13', '02/15/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2924, 587, '3.6.12', '08/17/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2925, 587, '3.6.11', '06/27/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2926, 587, '3.6.10', '12/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2927, 587, '3.6.9', '07/02/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2928, 587, '3.6.8', '12/24/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2929, 587, '3.6.7', '10/20/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2930, 587, '3.6.6', '06/27/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2931, 587, '3.6.5', '03/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2932, 587, '3.6.4', '12/19/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2933, 587, '3.6.3', '10/03/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2934, 587, '3.6.2', '07/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2935, 587, '3.6.1', '03/21/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2936, 587, '3.6.0', '12/23/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2937, 587, '3.5.10', '09/05/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2938, 587, '3.5.8', '11/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2939, 587, '3.5.7', '03/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2940, 587, '3.5.6', '08/08/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2941, 587, '3.5.5', '02/04/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2942, 587, '3.5.4', '07/25/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2943, 587, '3.5.3', '01/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2944, 587, '3.5.2', '06/27/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2945, 587, '3.5.1', '12/07/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2946, 587, '3.5.0', '09/13/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2947, 587, '3.4.10', '03/18/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2948, 587, '3.4.9', '08/08/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2949, 587, '3.4.8', '02/04/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2950, 587, '3.4.7', '07/25/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2951, 587, '3.4.6', '01/17/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2952, 587, '3.4.5', '06/26/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2953, 587, '3.4.4', '12/06/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2954, 587, '3.4.3', '02/25/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2955, 587, '3.4.2', '10/04/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2956, 587, '3.4.1', '05/18/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2957, 587, '3.4.0', '03/16/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2958, 587, '3.3.7', '09/19/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2959, 587, '3.3.6', '10/12/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2960, 587, '3.3.5', '03/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2961, 587, '3.3.4', '02/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2962, 587, '3.3.3', '11/17/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2963, 587, '3.3.2', '05/15/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2964, 587, '3.3.1', '04/07/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2965, 587, '3.3.0', '09/29/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2966, 587, '3.2.6', '10/11/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2967, 587, '3.2.5', '05/15/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2968, 587, '3.2.4', '04/07/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2969, 587, '3.2.3', '04/10/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2970, 587, '3.2.2', '09/04/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2971, 587, '3.2.1', '07/10/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2972, 587, '3.2', '02/20/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2973, 587, '3.1.5', '04/09/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2974, 587, '3.1.4', '06/11/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2975, 587, '3.1.3', '11/27/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2976, 587, '3.1.2', '03/21/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2977, 587, '3.1.1', '08/17/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2978, 587, '3.1', '06/27/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2979, 587, '3.0.1', '02/13/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2980, 587, '3', '12/03/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2981, 587, '2.7.18', '04/20/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2982, 587, '2.7.17', '10/19/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2983, 587, '2.7.16', '03/02/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2984, 587, '2.7.15', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2985, 587, '2.7.14', '09/16/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2986, 587, '2.7.13', '12/17/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2987, 587, '2.7.12', '06/26/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2988, 587, '2.7.11', '12/05/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2989, 587, '2.7.10', '05/23/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2990, 587, '2.7.9', '12/10/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2991, 587, '2.7.8', '07/01/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2992, 587, '2.7.7', '05/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2993, 587, '2.7.6', '11/10/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2994, 587, '2.7.5', '05/15/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2995, 587, '2.7.4', '04/06/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2996, 587, '2.7.3', '04/09/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2997, 587, '2.7.2', '06/11/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2998, 587, '2.7.1', '11/27/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (2999, 587, '2.7', '07/04/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3000, 587, '2.6.9', '10/29/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3001, 587, '2.6.8', '04/10/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3002, 587, '2.6.7', '06/03/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3003, 587, '2.6.6', '08/24/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3004, 587, '2.6.5', '03/19/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3005, 587, '2.6.4', '10/25/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3006, 587, '2.6.3', '10/02/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3007, 587, '2.6.2', '04/14/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3008, 587, '2.6.1', '12/04/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3009, 587, '2.6', '10/01/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3010, 587, '2.5.4', '12/23/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3011, 587, '2.5.3', '12/19/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3012, 587, '2.5.2', '02/21/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3013, 587, '2.5.1', '04/18/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3014, 587, '2.5', '09/19/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3015, 587, '2.4.4', '10/18/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3016, 587, '2.4.3', '03/29/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3017, 587, '2.4.2', '09/28/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3018, 587, '2.4.1', '03/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3019, 587, '2.4', '11/30/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3020, 587, '2.3.5', '02/08/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3021, 587, '2.3.4', '05/27/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3022, 587, '2.3.3', '12/19/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3023, 587, '2.3.2', '10/03/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3024, 587, '2.3.1', '09/23/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3025, 587, '2.3', '07/29/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3026, 587, '2.2.3', '05/30/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3027, 587, '2.2.2', '10/14/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3028, 587, '2.2.1', '04/10/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3029, 587, '2.2.0', '03/29/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3030, 587, '2.2', '12/21/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3031, 587, '2.1.3', '04/08/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3032, 587, '2.1.2', '01/16/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3033, 587, '2.1.1', '07/20/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3034, 587, '2.1', '04/15/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3035, 587, '2.0.1', '06/22/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3036, 587, '2', '10/16/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3037, 587, '1.6', '09/05/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3038, 587, '1.5.2p2', '03/22/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3039, 587, '1.5.2p1', '07/06/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3040, 587, '1.5.2', '04/30/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3041, 587, '1.5.1p1', '08/06/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3042, 587, '1.5.1', '04/14/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3043, 587, '1.5', '02/17/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3044, 587, '1.4', '10/25/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3045, 587, '1', '01/01/1994', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3046, 355, '4.1.1', '08/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3047, 355, '4.1.0', '05/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3048, 355, '4.0.5', '03/30/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3049, 355, '4.0.4', '02/28/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3050, 355, '4.0.3', '10/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3051, 355, '4.0.2', '06/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3052, 355, '4.0.1', '06/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3053, 355, '4.0.0', '04/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3054, 355, '3.6.3', '02/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3055, 355, '3.6.2', '12/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3056, 355, '3.6.1', '07/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3057, 355, '3.6.0', '04/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3058, 355, '3.5.3', '03/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3059, 355, '3.5.2', '12/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3060, 355, '3.5.1', '07/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3061, 355, '3.5.0', '04/30/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3062, 355, '3.4.4', '03/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3063, 355, '3.4.3', '11/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3064, 355, '3.4.2', '09/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3065, 355, '3.4.1', '06/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3066, 355, '3.4.0', '04/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3067, 355, '3.3.3', '03/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3068, 355, '3.3.2', '10/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3069, 355, '3.3.1', '06/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3070, 355, '3.3.0', '04/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3071, 355, '3.2.5', '04/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3072, 355, '3.2.4', '03/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3073, 355, '3.2.3', '12/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3074, 355, '3.2.2', '08/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3075, 355, '3.2.1', '06/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3076, 355, '3.2.0', '04/30/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3077, 355, '3.1.3', '03/30/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3078, 355, '3.1.2', '10/30/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3079, 355, '3.1.1', '07/30/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3080, 355, '3.1.0', '04/30/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3081, 355, '3.0.3', '03/30/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3082, 355, '3.0.2', '09/30/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3083, 355, '3.0.1', '05/30/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3084, 355, '3.0.0', '04/30/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3085, 355, '2.15.3', '03/30/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3086, 355, '2.15.2', '10/30/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3087, 355, '2.15.1', '06/30/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3088, 355, '2.15.0', '03/30/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3089, 355, '2.14.2', '02/28/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3090, 355, '2.14.1', '12/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3091, 355, '2.14.0', '11/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3092, 355, '2.13.2', '09/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3093, 355, '2.13.1', '07/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3094, 355, '2.13.0', '04/30/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3095, 355, '2.12.2', '02/28/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3096, 355, '2.12.1', '12/30/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3097, 355, '2.12.0', '10/30/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3098, 355, '2.11.1', '05/30/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3099, 355, '2.11.0', '04/30/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3100, 355, '2.10.1', '12/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3101, 355, '2.10.0', '10/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3102, 355, '2.9.2', '08/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3103, 355, '2.9.1', '06/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3104, 355, '2.9.0', '04/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3105, 355, '2.8.1', '12/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3106, 355, '2.8.0', '10/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3107, 355, '2.7.2', '08/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3108, 355, '2.7.1', '06/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3109, 355, '2.7.0', '04/30/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3110, 355, '2.6.2', '02/28/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3111, 355, '2.6.1', '11/30/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3112, 355, '2.6.0', '10/30/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3113, 355, '2.5.1', '07/30/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3114, 355, '2.5.0', '04/30/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3115, 355, '2.4.1', '12/30/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3116, 355, '2.4.0', '10/30/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3117, 355, '2.3.1', '06/30/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3118, 355, '2.3.0', '04/30/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3119, 355, '2.2.1', '12/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3120, 355, '2.2.0', '10/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3121, 355, '2.1.1', '06/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3122, 355, '2.1.0', '04/30/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3123, 355, '2.0.1', '11/30/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3124, 355, '2.0.0', '10/30/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3125, 355, '1.9.1', '06/30/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3126, 355, '1.8.1', '11/30/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3127, 355, '1.7.1', '06/30/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3128, 355, '1.6.2', '01/30/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3129, 355, '1.5.1', '06/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3130, 355, '1.4.1', '01/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3131, 355, '1.3.1', '09/30/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3132, 355, '1.2.2', '03/30/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3133, 355, '1.0.0', '02/28/2000', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3134, 588, '3.0.2', '07/07/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3135, 588, '2.7.4', '07/07/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3136, 588, '2.6.8', '07/07/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3137, 588, '3.0.1', '04/05/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3138, 588, '2.7.3', '04/05/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3139, 588, '2.6.7', '04/05/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3140, 588, '2.5.9', '04/05/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3141, 588, '3.0.0', '12/25/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3142, 588, '3.0.0src1', '12/20/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3143, 588, '3.0.0spreview2', '12/08/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3144, 588, '2.7.2', '10/02/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3145, 588, '3.0.0spreview1', '09/25/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3146, 588, '2.7.1', '03/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3147, 588, '2.6.6', '03/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3148, 588, '2.5.8', '03/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3149, 588, '2.4.10', '03/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3150, 588, '2.7.0', '12/25/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3151, 588, '2.7.0src2', '12/21/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3152, 588, '2.7.0src1', '12/17/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3153, 588, '2.7.0spreview3', '11/23/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3154, 588, '2.7.0spreview2', '10/22/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3155, 588, '2.4.9', '10/02/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3156, 588, '2.6.5', '10/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3157, 588, '2.5.7', '10/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3158, 588, '2.4.8', '10/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3159, 588, '2.6.4', '08/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3160, 588, '2.5.6', '08/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3161, 588, '2.4.7', '08/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3162, 588, '2.7.0spreview1', '05/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3163, 588, '2.6.3', '04/17/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3164, 588, '2.4.6', '04/01/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3165, 588, '2.5.5', '03/15/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3166, 588, '2.6.2', '03/13/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3167, 588, '2.5.4', '03/13/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3168, 588, '2.6.1', '01/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3169, 588, '2.6.0', '12/25/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3170, 588, '2.6.0src2', '12/15/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3171, 588, '2.6.0src1', '12/06/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3172, 588, '2.6.0spreview3', '11/06/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3173, 588, '2.5.3', '10/18/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3174, 588, '2.5.2', '10/17/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3175, 588, '2.4.5', '10/17/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3176, 588, '2.3.8', '10/17/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3177, 588, '2.6.0spreview2', '05/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3178, 588, '2.5.1', '03/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3179, 588, '2.4.4', '03/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3180, 588, '2.3.7', '03/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3181, 588, '2.2.10', '03/28/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3182, 588, '2.6.0spreview1', '02/24/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3183, 588, '2.5.0', '12/25/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3184, 588, '2.5.0src1', '12/14/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3185, 588, '2.4.3', '12/14/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3186, 588, '2.3.6', '12/14/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3187, 588, '2.2.9', '12/14/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3188, 588, '2.5.0spreview1', '10/10/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3189, 588, '2.4.2', '09/14/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3190, 588, '2.3.5', '09/14/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3191, 588, '2.2.8', '09/14/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3192, 588, '2.3.4', '03/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3193, 588, '2.2.7', '03/28/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3194, 588, '2.4.1', '03/22/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3195, 588, '2.4.0', '12/25/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3196, 588, '2.4.0src1', '12/12/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3197, 588, '2.3.3', '11/21/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3198, 588, '2.3.2', '11/15/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3199, 588, '2.2.6', '11/15/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3200, 588, '2.4.0spreview3', '11/09/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3201, 588, '2.4.0spreview2', '09/08/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3202, 588, '2.4.0spreview1', '06/20/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3203, 588, '2.3.1', '04/26/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3204, 588, '2.2.5', '04/26/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3205, 588, '2.1.10', '04/01/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3206, 588, '2.1.9', '03/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3207, 588, '2.3.0', '12/25/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3208, 588, '2.2.4', '12/16/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3209, 588, '2.1.8', '12/16/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3210, 588, '2.0.0sp648', '12/16/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3211, 588, '2.3.0spreview2', '12/11/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3212, 588, '2.3.0spreview1', '11/11/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3213, 588, '2.2.3', '08/18/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3214, 588, '2.1.7', '08/18/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3215, 588, '2.0.0sp647', '08/18/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3216, 588, '2.2.2', '04/13/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3217, 588, '2.1.6', '04/13/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3218, 588, '2.0.0sp645', '04/13/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3219, 588, '2.2.1', '03/03/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3220, 588, '2.0.0sp643', '02/25/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3221, 588, '2.2.0', '12/25/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3222, 588, '2.2.0src1', '12/18/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3223, 588, '2.2.0spreview2', '11/28/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3224, 588, '2.1.5', '11/13/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3225, 588, '2.0.0sp598', '11/13/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3226, 588, '1.9.3sp551', '11/13/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3227, 588, '2.1.4', '10/27/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3228, 588, '2.0.0sp594', '10/27/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3229, 588, '1.9.3sp550', '10/27/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3230, 588, '2.1.3', '09/19/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3231, 588, '2.0.0sp576', '09/19/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3232, 588, '2.2.0spreview1', '09/18/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3233, 588, '1.9.2sp330', '08/19/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3234, 588, '1.9.3sp547', '05/16/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3235, 588, '2.1.2', '05/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3236, 588, '2.0.0sp481', '05/09/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3237, 588, '2.1.1', '02/24/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3238, 588, '2.0.0sp451', '02/24/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3239, 588, '1.9.3sp545', '02/24/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3240, 588, '2.1.0', '12/25/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3241, 588, '2.1.0src1', '12/20/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3242, 588, '2.1.0spreview2', '11/22/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3243, 588, '2.0.0sp353', '11/22/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3244, 588, '1.9.3sp484', '11/22/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3245, 588, '2.1.0spreview1', '09/23/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3246, 588, '2.0.0sp247', '06/27/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3247, 588, '1.9.3sp448', '06/27/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3248, 588, '1.8.7sp374', '06/27/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3249, 588, '2.0.0sp195', '05/14/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3250, 588, '1.9.3sp429', '05/14/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3251, 588, '2.0.0', '02/24/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3252, 588, '1.9.3sp392', '02/22/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3253, 588, '2.0.0src2', '02/08/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3254, 588, '1.9.3sp385', '02/06/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3255, 588, '1.9.3sp374', '01/17/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3256, 588, '1.9.3sp362', '12/25/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3257, 588, '1.9.3sp327', '11/09/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3258, 588, '1.9.3sp286', '10/12/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3259, 588, '1.8.7sp370', '06/29/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3260, 588, '1.9.2sp320', '04/21/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3261, 588, '1.9.3sp194', '04/20/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3262, 588, '1.9.3sp125', '02/16/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3263, 588, '1.9.3', '10/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3264, 588, '1.9.3src1', '09/24/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3265, 588, '1.9.3spreview1', '08/01/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3266, 588, '1.9.2sp290', '07/15/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3267, 588, '1.8.7sp352', '07/02/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3268, 588, '1.9.2sp136', '12/25/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3269, 588, '1.8.7sp330', '12/25/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3270, 588, '1.9.2', '08/18/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3271, 588, '1.9.1sp430', '08/16/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3272, 588, '1.8.7sp302', '08/16/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3273, 588, '1.9.2src2', '07/11/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3274, 588, '1.9.2src1', '07/02/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3275, 588, '1.9.1sp429', '07/02/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3276, 588, '1.8.7sp299', '06/23/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3277, 588, '1.8.7sp248', '12/25/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3278, 588, '1.9.1sp376', '12/07/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3279, 588, '1.9.2spreview1', '07/20/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3280, 588, '1.9.1sp243', '07/20/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3281, 588, '1.9.1sp129', '05/12/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3282, 588, '1.8.7sp160', '04/18/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3283, 588, '1.8.6sp368', '04/18/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3284, 588, '1.9.1', '01/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3285, 588, '1.9.1spreview1', '10/28/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3286, 588, '1.8.7sp72', '08/11/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3287, 588, '1.8.6sp287', '08/11/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3288, 588, '1.8.7', '05/31/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3289, 588, '1.9.0', '12/25/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3290, 588, '1.8.6', '03/12/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3291, 588, '1.8.5', '08/29/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3292, 588, '1.8.4', '12/24/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3293, 588, '1.8.4spreview2', '12/14/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3294, 588, '1.8.3', '09/21/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3295, 588, '1.8.2', '12/26/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3296, 588, '1.8.2spreview4', '12/22/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3297, 588, '1.8.2spreview3', '11/08/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3298, 588, '1.8.2spreview2', '07/30/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3299, 588, '1.8.2spreview1', '07/21/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3300, 588, '1.8.0', '08/04/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3301, 588, '1.6.7', '03/01/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3302, 323, '1', '03/28/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3303, 323, '1.1', '05/13/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3304, 323, '1.2', '12/01/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3305, 323, '1.3', '06/18/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3306, 323, '1.4', '12/10/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3307, 323, '1.5', '08/19/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3308, 323, '1.6', '02/17/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3309, 323, '1.7', '08/15/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3310, 323, '1.8', '02/16/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3311, 323, '1.9', '08/24/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3312, 323, '1.10', '02/16/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3313, 323, '1.11', '08/24/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3314, 323, '1.12.1', '02/25/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3315, 323, '1.13.1', '09/03/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3316, 323, '1.14', '02/25/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3317, 323, '1.15', '08/11/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3318, 323, '1.16', '02/16/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3319, 323, '1.17', '08/16/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3320, 325, '1', '01/02/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3321, 325, '1.2', '12/07/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3322, 325, '1.5', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3323, 325, '2', '07/02/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3324, 325, '3', '02/07/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3325, 325, '4.0', '09/01/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3326, 333, '1.2', '12/12/1999', '05/22/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3327, 333, '1.3', '09/24/2001', '06/28/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3328, 333, '1.4', '11/11/2003', '08/29/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3329, 333, '5', '05/11/2006', '08/11/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3330, 333, '6', '12/10/2009', '12/19/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3331, 333, '7', '05/28/2013', '04/30/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3332, 333, '8', '08/31/2017', '06/23/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3333, 333, '9', '11/22/2020', '12/10/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3334, 333, '9.1', '05/25/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3335, 583, '98', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3336, 583, '03', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3337, 583, '11', '12/31/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3338, 583, '14', '12/31/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3339, 583, '17', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3340, 583, '20', '12/31/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3341, 344, 'progress 4gl', '12/31/1981', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3342, 344, '10.1', '12/31/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3343, 586, '3.0.0', '08/20/2020', '08/20/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3344, 586, '4', '05/22/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3345, 586, '4.1', '12/10/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3346, 586, '4.2', '04/22/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3347, 586, '4.3', '12/27/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3348, 586, '4.4', '07/11/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3349, 586, '5', '07/13/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3350, 586, '5.1', '11/24/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3351, 586, '5.2', '11/02/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3352, 586, '5.3', '06/30/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3353, 586, '5.4', '03/01/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3354, 586, '5.5', '06/20/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3355, 586, '5.6', '08/28/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3356, 586, '7', '12/03/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3357, 586, '7.1', '12/01/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3358, 586, '7.2', '11/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3359, 586, '7.3', '12/06/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3360, 586, '7.4', '11/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3361, 586, '8', '11/26/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3362, 311, '3', '06/30/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3363, 311, '4', '11/30/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3364, 311, '4.5', '11/30/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3365, 311, '5', '06/30/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3366, 311, '6', '06/30/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3367, 311, '7', '02/07/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3368, 311, '8', '06/30/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3369, 311, '9', '10/05/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3370, 311, '10', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3371, 311, '11', '04/29/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3372, 311, '2016', '02/16/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3373, 311, '2018', '07/12/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3374, 311, '2021', '11/11/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3375, 362, '1.0.0', '12/08/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3376, 362, '1.1.0', '02/19/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3377, 362, '1.1.1', '03/23/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3378, 362, '1.2.0', '06/09/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3379, 362, '1.3.0', '09/16/2004', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3380, 362, '1.4.0', '06/20/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3381, 362, '2', '03/12/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3382, 362, '2.1.0', '03/17/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3383, 362, '2.1.8', '08/23/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3384, 362, '2.3.0', '11/23/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3385, 362, '2.4.0', '03/09/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3386, 362, '2.5.0', '05/02/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3387, 362, '2.6.0', '07/27/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3388, 362, '2.7.0', '02/07/2008', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3389, 362, '2.8.0', '07/14/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3390, 362, '2.9.0', '05/12/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3391, 362, '2.1', '01/04/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3392, 313, '1', '12/31/1995', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3393, 313, '2', '12/31/1996', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3394, 313, '3', '12/31/1997', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3395, 313, '4', '12/31/1998', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3396, 313, '5', '12/31/1999', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3397, 313, '6', '12/31/2001', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3398, 313, '7', '08/31/2002', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3399, 313, '8', '12/31/2003', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3400, 313, '2005', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3401, 313, '2006', '12/31/2005', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3402, 313, 'Turbo', '09/06/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3403, 313, 'Transfer', '02/08/2006', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3404, 313, '2007', '03/16/2007', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3405, 313, '2009', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3406, 313, '2010', '08/25/2009', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3407, 313, 'XE', '08/30/2010', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3408, 313, 'XE1', '01/27/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3409, 313, 'XE2', '09/01/2011', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3410, 313, 'XE3', '09/01/2012', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3411, 313, 'XE4', '04/22/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3412, 313, 'XE5', '09/12/2013', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3413, 313, 'XE6', '04/15/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3414, 313, 'XE7', '09/02/2014', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3415, 313, 'XE8', '04/07/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3416, 313, '10', '08/31/2015', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3417, 313, '10.1', '04/20/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3418, 313, '10.1.1', '09/30/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3419, 313, '10.1.2', '12/31/2016', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3420, 313, '10.2', '03/22/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3421, 313, '10.2.1', '08/30/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3422, 313, '10.2.2', '12/31/2017', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3423, 313, '10.2.3', '03/31/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3424, 313, '10.3', '11/21/2018', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3425, 313, '10.3.1', '02/28/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3426, 313, '10.3.2', '07/31/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3427, 313, '10.3.3', '11/30/2019', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3428, 313, '10.4', '05/26/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3429, 313, '10.4.1', '09/30/2020', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3430, 313, '10.4.2', '02/24/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3431, 313, '11', '09/09/2021', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3432, 594, '60', '05/29/1959', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3433, 594, '65', '12/31/1965', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3434, 594, '74', '12/31/1974', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3435, 594, '85', '12/31/1985', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3436, 594, '2002', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3437, 594, '2014', ' ', ' '); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3438, 580, '1.01', '11/20/1985', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3439, 580, '1.02', '05/14/1986', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3440, 580, '1.03', '08/21/1986', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3441, 580, '1.04', '04/10/1987', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3442, 580, '2.01', '12/09/1987', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3443, 580, '2.03', '12/09/1987', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3444, 580, '2.1', '05/27/1988', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3445, 580, '2.11', '03/13/1989', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3446, 580, '3', '05/22/1990', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3447, 580, '3.1', '04/06/1992', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3448, 580, ' NT 3.1', '07/27/1993', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3449, 580, '3.11', '11/08/1993', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3450, 580, '3.2', '11/22/1993', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3451, 580, 'NT 3.5', '09/21/1994', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3452, 580, 'NT 3.51', '08/24/1995', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3453, 580, '95', '08/24/1996', '12/31/2001'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3454, 580, 'NT 4.0', '06/25/1998', '06/30/2004'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3455, 580, '98', '05/05/1999', '07/11/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3456, 580, '2000', '02/17/2000', '07/13/2010'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3457, 580, 'Me', '09/14/2000', '07/11/2006'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3458, 580, 'XP', '10/25/2001', '04/08/2014'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3459, 580, 'Vista', '01/30/2007', '04/11/2017'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3460, 580, '7', '10/22/2009', '01/14/2020'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3461, 580, '8', '10/26/2012', '01/12/2016'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3462, 580, '8.1', '10/17/2013', '01/10/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3463, 580, '10', '07/29/2015', '10/14/2025'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3464, 580, '11', '10/05/2021', '10/10/2023'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3465, 697, '3.8.5', '03/05/2022', ''); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3466, 697, '3.8.4', '11/12/2021', '03/05/2022'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3467, 697, '3.8.3', '09/27/2021', '11/12/2021'); +INSERT INTO entity_versions (id, entity_id, version, release_date, end_date) VALUES (3468, 697, '3.8.1', '04/04/2021', '09/27/2021'); + +-- Table: openshift_baseos_images CREATE TABLE openshift_baseos_images ( id integer PRIMARY KEY AUTOINCREMENT, container_name text NOT NULL, @@ -9113,7 +12680,9 @@ CREATE TABLE openshift_baseos_images ( DockerImageType text, FOREIGN KEY (OS) REFERENCES entity_types (id) ); -INSERT INTO openshift_baseos_images VALUES(1,'Red Hat Enterprise Linux',434,'https://catalog.redhat.com/software/containers/rhel7/57ea8cee9c624c035f96f3af','','',''); +INSERT INTO openshift_baseos_images (id, container_name, OS, OpenShift_Correspondent_Image_URL, Notes, OpenShiftStatus, DockerImageType) VALUES (1, 'Red Hat Enterprise Linux', 434, 'https://catalog.redhat.com/software/containers/rhel7/57ea8cee9c624c035f96f3af', '', '', ''); + +-- Table: openshift_images CREATE TABLE openshift_images ( id integer PRIMARY KEY AUTOINCREMENT, container_name text NOT NULL, @@ -9136,59 +12705,139 @@ CREATE TABLE openshift_images ( FOREIGN KEY (runlib) REFERENCES entity_types (id), FOREIGN KEY (runtime) REFERENCES entity_types (id) ); -INSERT INTO openshift_images VALUES(1,'IBM Maximo Asset Management',434,NULL,NULL,70,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/ema-maximo-integration/5d79b41f3d73db51b9ba7ea7','App'); -INSERT INTO openshift_images VALUES(2,'OpenLDAP',434,NULL,NULL,126,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/netcool-openldap-16/5d1a1e94702c56364a5d4101','App'); -INSERT INTO openshift_images VALUES(3,'gcc',576,583,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/gcc-toolset-10-toolchain/5ea311fd5a13466876a077ca','Lang'); -INSERT INTO openshift_images VALUES(4,'golang_Linux',434,323,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/go-toolset/5b9c810add19c70b45cbd666','Lang(OS specific)'); -INSERT INTO openshift_images VALUES(5,'haproxy',434,NULL,NULL,NULL,264,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/openshift4/ose-haproxy-router/5cd9b367bed8bd5717d4fdaa','App Server'); -INSERT INTO openshift_images VALUES(6,'httpd',434,NULL,NULL,NULL,259,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhscl/httpd-24-rhel7/57ea8d049c624c035f96f42e','App Server'); -INSERT INTO openshift_images VALUES(7,'jenkins',434,NULL,NULL,90,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/openshift3/jenkins-2-rhel7/581d2f4500e5d05639b6517b','App'); -INSERT INTO openshift_images VALUES(8,'MarkLogic',434,NULL,NULL,97,NULL,NULL,NULL,NULL,'https://access.redhat.com/containers/#/docker.io/store/marklogicdb/marklogic-server','App'); -INSERT INTO openshift_images VALUES(9,'memcached',434,NULL,NULL,98,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhacm2/memcached-rhel8/5f523955ee8349144fa8634a','App'); -INSERT INTO openshift_images VALUES(10,'Java SE JRE_Linux',434,NULL,NULL,NULL,NULL,NULL,NULL,506,'https://catalog.redhat.com/software/containers/ubi8/openjdk-11/5dd6a4b45a13461646f677f4','Runtime(OS specific)'); -INSERT INTO openshift_images VALUES(11,'Microsoft SQL Server',434,NULL,NULL,581,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/mssql/rhel/server/5ba50865f5a0de06555a2ee7','App'); -INSERT INTO openshift_images VALUES(12,'Mongo_Linux',434,NULL,NULL,116,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rh-marketplace/mongodb-enterprise-advanced-ibm-bundle/5f84ce93ecb524508951386d','App(OS specific)'); -INSERT INTO openshift_images VALUES(13,'mysql',434,NULL,NULL,122,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/mysql-80/5ba0ad4cdd19c70b45cbf48c','App'); -INSERT INTO openshift_images VALUES(14,'nginx',434,NULL,NULL,NULL,274,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/nginx-118/5f521a46e05bbcd88f128b64','App Server'); -INSERT INTO openshift_images VALUES(15,'node',576,NULL,NULL,NULL,NULL,NULL,NULL,507,'https://catalog.redhat.com/software/containers/rhel8/nodejs-14/5ed76a59d70cc50e69c2f891','Runtime'); -INSERT INTO openshift_images VALUES(16,'php',576,586,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ubi8/php-74/5f521244e05bbcd88f128b63','Lang'); -INSERT INTO openshift_images VALUES(17,'Python_Linux',434,587,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhscl/python-27-rhel7/57ea8d049c624c035f96f430','Lang(OS specific)'); -INSERT INTO openshift_images VALUES(18,'rabbitmq',576,NULL,NULL,165,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/jfrog/xray-rabbitmq/5ec6ef9eecb5246c0903f401','App'); -INSERT INTO openshift_images VALUES(19,'redis_Linux',434,NULL,NULL,168,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/redis-5/5c401b0cbed8bd75a2c4c287','App(OS specific)'); -INSERT INTO openshift_images VALUES(20,'ruby',434,588,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/ruby-26/5d3ffc6a5a13461f5fb862e6','Lang'); -INSERT INTO openshift_images VALUES(21,'swift',434,364,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhosp-beta/openstack-swift-base/5cdcbbcbdd19c778293be49f','Lang'); -INSERT INTO openshift_images VALUES(22,'tomcat',434,584,NULL,NULL,260,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3','App Server'); -INSERT INTO openshift_images VALUES(23,'websphere-liberty',434,584,NULL,NULL,285,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/websphere-liberty/5d0298c9f5a0de52d547adf7','App Server'); -INSERT INTO openshift_images VALUES(24,'ansible',434,NULL,NULL,5,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/openshift3/ose-ansible-service-broker/5989580dbed8bd284e93201e','App'); -INSERT INTO openshift_images VALUES(25,'hive',434,NULL,NULL,8,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/openshift4/ose-metering-hive/5d96f106d70cc50ebeaadb53','App'); -INSERT INTO openshift_images VALUES(26,'kafka',429,NULL,NULL,9,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/kafka2/5e8208a8ac3db903708fe0a5','App'); -INSERT INTO openshift_images VALUES(27,'postgresql',429,NULL,NULL,157,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/postgresql-12/5db133bd5a13461646df330b','App'); -INSERT INTO openshift_images VALUES(28,'spark',429,NULL,NULL,NULL,280,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/sdu-spark/5d695066d095e36f9d387421','App Server'); -INSERT INTO openshift_images VALUES(29,'vmware-tools',436,NULL,NULL,230,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel7/open-vm-tools/58ee4f6e4b339a32b5fb7bae','App'); -INSERT INTO openshift_images VALUES(30,'fabric-ca',576,NULL,NULL,422,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/ca-base/5d09538bf5a0de52d548efd3','App'); -INSERT INTO openshift_images VALUES(31,'db2',576,NULL,NULL,43,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/ibm-db2z-ui/5d8bd4bf69aea310b5373e17','App'); -INSERT INTO openshift_images VALUES(32,'mq',576,NULL,NULL,81,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/ibm-mqadvanced-server/5bacf2bf4841f1065681eb5f','App'); -INSERT INTO openshift_images VALUES(33,'websphere-traditional',434,584,NULL,NULL,284,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/r/ibmcom/websphere-traditional/5d77b2e4702c566f4cbf438b','App Server'); -INSERT INTO openshift_images VALUES(34,'base',576,NULL,NULL,NULL,268,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3','App Server'); -INSERT INTO openshift_images VALUES(35,'wildfly',576,NULL,NULL,NULL,493,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3','App Server'); -INSERT INTO openshift_images VALUES(36,'nginx-proxy',576,NULL,NULL,NULL,274,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/anaconda/nginx-proxy/5ea3014becb5246c0903c5da','App Server'); -INSERT INTO openshift_images VALUES(37,'javascript-node.js',576,589,NULL,NULL,NULL,NULL,NULL,507,'https://catalog.redhat.com/software/containers/rhel8/nodejs-12/5d3fff06d70cc5521d0009c2','Runtime'); -INSERT INTO openshift_images VALUES(38,'objectivec-gcc',576,343,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhel8/gcc-toolset-10-perftools/5ea31291dd19c778961bf8da','Lang'); -INSERT INTO openshift_images VALUES(39,'nginx-ingress',576,NULL,NULL,88,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/nginx/nginx-ingress-operator/5e7ce1b8ecb5246c09fe03c7','App'); -INSERT INTO openshift_images VALUES(40,'node-red-docker',576,NULL,NULL,236,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm-edge/node-red/5ecf8c35ecb5246c0903fb58','App'); -INSERT INTO openshift_images VALUES(41,'sas',576,360,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/sas-base/5e2b5c69ac3db9037062d878','Lang'); -INSERT INTO openshift_images VALUES(42,'activemq',576,NULL,NULL,6,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/tremolosecurity/activemq/5cbbc19e293738790b2fc3d2','App'); -INSERT INTO openshift_images VALUES(43,'hadoop-docker',576,NULL,NULL,57,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/openshift4/ose-metering-hadoop/5d963124bed8bd2245d85da3','App'); -INSERT INTO openshift_images VALUES(44,'nexus3',576,NULL,NULL,124,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/sonatype/nexus-repository-manager/594c281c1fbe9847af657690','App'); -INSERT INTO openshift_images VALUES(45,'splunk',576,NULL,NULL,188,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/layers/splunk/splunk/7.3-redhat/images/sha256-55050c2097d994abc0e6d1c9f7fd0f0c2fb5f4019a9b1e094ffdf33a70a/5e162fab69aea316427f7947','App'); -INSERT INTO openshift_images VALUES(46,'IBM Transformation Extender',576,NULL,NULL,83,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibmcom/ibm-itx-rs-operator/5f9c27ddac3db90370a213a4','App'); -INSERT INTO openshift_images VALUES(47,'openjdk_Linux',576,584,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ubi8/openjdk-11/5dd6a4b45a13461646f677f4','Lang(OS specific)'); -INSERT INTO openshift_images VALUES(48,'perl',576,585,NULL,NULL,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ubi8/perl-526/5c83998abed8bd28d0e74c0f','Lang'); -INSERT INTO openshift_images VALUES(49,'postgres',576,NULL,NULL,157,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/rhscl/postgresql-13-rhel7/60af640142119b927780b520','App'); -INSERT INTO openshift_images VALUES(50,'solr',576,NULL,NULL,11,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/cp/cpd/solr-ubi/5db082ea69aea35a1c141026','App'); -INSERT INTO openshift_images VALUES(51,'odm',576,NULL,NULL,73,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ibm/odm-dbserver/5d80f766702c566f4cbf46e6','App'); -INSERT INTO openshift_images VALUES(52,'Apache Cassandra',434,NULL,NULL,634,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/datastax/cassandra/5ee857c969aea31642b67910','App'); -INSERT INTO openshift_images VALUES(53,'Ansible Tower',434,NULL,NULL,5,NULL,NULL,NULL,NULL,'https://catalog.redhat.com/software/containers/ansible-tower-38/ansible-tower-rhel7/5fa1c5d968d8b9a71232b1f7','App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (1, 'IBM Maximo Asset Management', 434, NULL, NULL, 70, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/ema-maximo-integration/5d79b41f3d73db51b9ba7ea7', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (2, 'OpenLDAP', 434, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/netcool-openldap-16/5d1a1e94702c56364a5d4101', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (3, 'gcc', 576, 583, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/gcc-toolset-10-toolchain/5ea311fd5a13466876a077ca', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (4, 'golang_Linux', 434, 323, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/go-toolset/5b9c810add19c70b45cbd666', 'Lang(OS specific)'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (5, 'haproxy', 434, NULL, NULL, NULL, 264, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/openshift4/ose-haproxy-router/5cd9b367bed8bd5717d4fdaa', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (6, 'httpd', 434, NULL, NULL, NULL, 259, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhscl/httpd-24-rhel7/57ea8d049c624c035f96f42e', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (7, 'jenkins', 434, NULL, NULL, 90, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/openshift3/jenkins-2-rhel7/581d2f4500e5d05639b6517b', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (8, 'MarkLogic', 434, NULL, NULL, 97, NULL, NULL, NULL, NULL, 'https://access.redhat.com/containers/#/docker.io/store/marklogicdb/marklogic-server', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (9, 'memcached', 434, NULL, NULL, 98, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhacm2/memcached-rhel8/5f523955ee8349144fa8634a', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (10, 'Java SE JRE_Linux', 434, NULL, NULL, NULL, NULL, NULL, NULL, 506, 'https://catalog.redhat.com/software/containers/ubi8/openjdk-11/5dd6a4b45a13461646f677f4', 'Runtime(OS specific)'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (11, 'Microsoft SQL Server', 434, NULL, NULL, 581, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/mssql/rhel/server/5ba50865f5a0de06555a2ee7', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (12, 'Mongo_Linux', 434, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rh-marketplace/mongodb-enterprise-advanced-ibm-bundle/5f84ce93ecb524508951386d', 'App(OS specific)'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (13, 'mysql', 434, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/mysql-80/5ba0ad4cdd19c70b45cbf48c', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (14, 'nginx', 434, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/nginx-118/5f521a46e05bbcd88f128b64', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (15, 'node', 576, NULL, NULL, NULL, NULL, NULL, NULL, 507, 'https://catalog.redhat.com/software/containers/rhel8/nodejs-14/5ed76a59d70cc50e69c2f891', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (16, 'php', 576, 586, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ubi8/php-74/5f521244e05bbcd88f128b63', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (17, 'Python_Linux', 434, 587, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhscl/python-27-rhel7/57ea8d049c624c035f96f430', 'Lang(OS specific)'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (18, 'rabbitmq', 576, NULL, NULL, 165, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/jfrog/xray-rabbitmq/5ec6ef9eecb5246c0903f401', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (19, 'redis_Linux', 434, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/redis-5/5c401b0cbed8bd75a2c4c287', 'App(OS specific)'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (20, 'ruby', 434, 588, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/ruby-26/5d3ffc6a5a13461f5fb862e6', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (21, 'swift', 434, 364, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhosp-beta/openstack-swift-base/5cdcbbcbdd19c778293be49f', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (22, 'tomcat', 434, 584, NULL, NULL, 260, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (23, 'websphere-liberty', 434, 584, NULL, NULL, 285, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/websphere-liberty/5d0298c9f5a0de52d547adf7', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (24, 'ansible', 434, NULL, NULL, 5, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/openshift3/ose-ansible-service-broker/5989580dbed8bd284e93201e', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (25, 'hive', 434, NULL, NULL, 8, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/openshift4/ose-metering-hive/5d96f106d70cc50ebeaadb53', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (26, 'kafka', 429, NULL, NULL, 9, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/kafka2/5e8208a8ac3db903708fe0a5', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (27, 'postgresql', 429, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/postgresql-12/5db133bd5a13461646df330b', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (28, 'spark', 429, NULL, NULL, NULL, 280, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/sdu-spark/5d695066d095e36f9d387421', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (29, 'vmware-tools', 436, NULL, NULL, 230, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel7/open-vm-tools/58ee4f6e4b339a32b5fb7bae', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (30, 'fabric-ca', 576, NULL, NULL, 422, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/ca-base/5d09538bf5a0de52d548efd3', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (31, 'db2', 576, NULL, NULL, 43, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/ibm-db2z-ui/5d8bd4bf69aea310b5373e17', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (32, 'mq', 576, NULL, NULL, 81, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/ibm-mqadvanced-server/5bacf2bf4841f1065681eb5f', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (33, 'websphere-traditional', 434, 584, NULL, NULL, 284, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/r/ibmcom/websphere-traditional/5d77b2e4702c566f4cbf438b', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (34, 'base', 576, NULL, NULL, NULL, 268, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (35, 'wildfly', 576, NULL, NULL, NULL, 493, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/jboss-webserver-5/webserver55-openj9-11-tomcat9-openshift-rhel8/6047a5df6280a414853ec5f3', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (36, 'nginx-proxy', 576, NULL, NULL, NULL, 274, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/anaconda/nginx-proxy/5ea3014becb5246c0903c5da', 'App Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (37, 'javascript-node.js', 576, 589, NULL, NULL, NULL, NULL, NULL, 507, 'https://catalog.redhat.com/software/containers/rhel8/nodejs-12/5d3fff06d70cc5521d0009c2', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (38, 'objectivec-gcc', 576, 343, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhel8/gcc-toolset-10-perftools/5ea31291dd19c778961bf8da', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (39, 'nginx-ingress', 576, NULL, NULL, 88, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/nginx/nginx-ingress-operator/5e7ce1b8ecb5246c09fe03c7', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (40, 'node-red-docker', 576, NULL, NULL, 236, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm-edge/node-red/5ecf8c35ecb5246c0903fb58', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (41, 'sas', 576, 360, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/sas-base/5e2b5c69ac3db9037062d878', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (42, 'activemq', 576, NULL, NULL, 6, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/tremolosecurity/activemq/5cbbc19e293738790b2fc3d2', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (43, 'hadoop-docker', 576, NULL, NULL, 57, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/openshift4/ose-metering-hadoop/5d963124bed8bd2245d85da3', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (44, 'nexus3', 576, NULL, NULL, 124, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/sonatype/nexus-repository-manager/594c281c1fbe9847af657690', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (45, 'splunk', 576, NULL, NULL, 188, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/layers/splunk/splunk/7.3-redhat/images/sha256-55050c2097d994abc0e6d1c9f7fd0f0c2fb5f4019a9b1e094ffdf33a70a/5e162fab69aea316427f7947', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (46, 'IBM Transformation Extender', 576, NULL, NULL, 83, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibmcom/ibm-itx-rs-operator/5f9c27ddac3db90370a213a4', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (47, 'openjdk_Linux', 576, 584, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ubi8/openjdk-11/5dd6a4b45a13461646f677f4', 'Lang(OS specific)'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (48, 'perl', 576, 585, NULL, NULL, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ubi8/perl-526/5c83998abed8bd28d0e74c0f', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (49, 'postgres', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/rhscl/postgresql-13-rhel7/60af640142119b927780b520', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (50, 'solr', 576, NULL, NULL, 11, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/cp/cpd/solr-ubi/5db082ea69aea35a1c141026', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (51, 'odm', 576, NULL, NULL, 73, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ibm/odm-dbserver/5d80f766702c566f4cbf46e6', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (52, 'Apache Cassandra', 434, NULL, NULL, 634, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/datastax/cassandra/5ee857c969aea31642b67910', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (53, 'Ansible Tower', 434, NULL, NULL, 5, NULL, NULL, NULL, NULL, 'https://catalog.redhat.com/software/containers/ansible-tower-38/ansible-tower-rhel7/5fa1c5d968d8b9a71232b1f7', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (54, 'asterisk', 576, NULL, NULL, 14, NULL, NULL, NULL, NULL, 'https://quay.io/repository/citybaseinc/asterisk', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (55, 'drupal', 576, NULL, NULL, 45, NULL, NULL, NULL, NULL, 'https://quay.io/repository/official-images/drupal', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (56, 'elastic', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, 'https://quay.io/repository/kmamgain/elastic', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (57, 'genymotion', 576, NULL, NULL, 54, NULL, NULL, NULL, NULL, 'https://quay.io/repository/alaska/genymotion', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (58, 'hadoop', 576, NULL, NULL, 57, NULL, NULL, NULL, NULL, 'https://quay.io/repository/iguazio/hadoop', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (59, 'neo4j', 576, NULL, NULL, 123, NULL, NULL, NULL, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/neo4j', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (60, 'openldap', 576, NULL, NULL, 126, NULL, NULL, NULL, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/openldap', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (61, 'openvpn', 576, NULL, NULL, 128, NULL, NULL, NULL, NULL, 'https://quay.io/repository/kubermatic/openvpn', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (62, 'pentaho', 576, NULL, NULL, 150, NULL, NULL, NULL, NULL, 'https://quay.io/repository/hasni/pentaho', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (63, 'redis', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sameersbn/redis', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (64, 'remedy', 576, NULL, NULL, 169, NULL, NULL, NULL, NULL, 'https://quay.io/repository/amosnl/remedy', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (65, 'riak', 576, NULL, NULL, 170, NULL, NULL, NULL, NULL, 'https://quay.io/repository/dotabuff/riak', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (66, 'sentry', 576, NULL, NULL, 180, NULL, NULL, NULL, NULL, 'https://quay.io/repository/app-sre/sentry', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (67, 'sonarqube', 576, NULL, NULL, 186, NULL, NULL, NULL, NULL, 'https://quay.io/repository/gpte-devops-automation/sonarqube', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (68, 'whois', 576, NULL, NULL, 212, NULL, NULL, NULL, NULL, 'https://quay.io/repository/westonsteimel/whois', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (69, 'tableau', 576, NULL, NULL, 213, NULL, NULL, NULL, NULL, 'https://quay.io/repository/growthstack/tableau', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (70, 'wordpress', 576, NULL, NULL, 245, NULL, NULL, NULL, NULL, 'https://quay.io/repository/redhattraining/wordpress', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (71, 'sqlite', 576, NULL, NULL, 258, NULL, NULL, NULL, NULL, 'https://quay.io/repository/fale/sqlite', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (72, 'glassfish', 576, NULL, NULL, NULL, 263, NULL, NULL, NULL, 'https://quay.io/repository/mohamedf0/glassfish', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (73, 'lucee', 576, NULL, NULL, NULL, 271, NULL, NULL, NULL, 'https://quay.io/repository/daemonite/lucee', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (74, 'awk', 576, 300, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/shenglai/awk', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (75, 'basic', 576, 301, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/biocontainers/basic', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (76, 'expect', 576, 315, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/baseimage/expect', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (77, 'focus', 576, 321, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/biocontainers/focus', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (78, 'fortran', 576, 322, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/eriktrent/fortran', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (79, 'graphql', 576, 324, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/wasmoffload/graphql', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (80, 'groovy', 576, 325, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/official-images/groovy', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (81, 'jcl', 576, 338, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/jclaret/jcl', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (82, 'scala', 576, 362, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/azavea/scala', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (83, 'typescript', 576, 367, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/ellerbrock/typescript', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (84, 'log4j', 576, NULL, 394, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/crozzy/log4j', 'Lib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (85, 'struts', 576, NULL, 402, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/arifulhuq/struts', 'Lib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (86, 'angularjs', 576, NULL, 406, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/amaljose/angularjs', 'Lib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (87, 'react', 576, NULL, 413, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/profects/react', 'Lib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (88, 'android', 418, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/bitriseio/android', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (89, 'dart', 421, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/biocontainers/dart', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (90, 'centos', 427, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/centos/centos', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (91, 'debian', 429, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/official-images/debian', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (92, 'opensuse', 431, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/wstein/opensuse', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (93, 'ubuntu', 436, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/libpod/ubuntu', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (94, 'freebsd', 447, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/uchida/freebsd', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (95, 'fedora', 453, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/fedora/fedora', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (96, 'ado', 576, NULL, NULL, NULL, NULL, NULL, 488, NULL, 'https://quay.io/repository/scottlezberg/ado', 'Runlib'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (97, 'flash', 576, NULL, NULL, NULL, NULL, NULL, NULL, 504, 'https://quay.io/repository/biocontainers/flash', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (98, 'windows', 580, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/mhallin/windows', 'OS'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (99, 'java', 576, 584, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/tamr/java', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (100, 'python', 576, 587, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/56401deb-7290-4d8b-8731-baf6d8b5d27d/python', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (101, 'instana', 576, NULL, NULL, NULL, NULL, NULL, NULL, 611, 'https://quay.io/repository/yaoyao/instana', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (102, 'credstash', 576, NULL, NULL, 612, NULL, NULL, NULL, NULL, 'https://quay.io/repository/safesoftware/credstash', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (103, 'snyk', 576, NULL, NULL, 613, NULL, NULL, NULL, NULL, 'https://quay.io/repository/exd_infra_plts_cip/snyk', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (104, 'akka', 576, NULL, NULL, 614, NULL, NULL, NULL, NULL, 'https://quay.io/repository/j0zi/akka', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (105, 'varnish', 576, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'https://quay.io/repository/api-platform/varnish', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (106, 'datadog', 576, NULL, NULL, NULL, NULL, NULL, NULL, 616, 'https://quay.io/repository/blondie/datadog', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (107, 'hazelcast', 576, NULL, NULL, NULL, NULL, NULL, NULL, 618, 'https://quay.io/repository/hazelcast_cloud/hazelcast', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (108, 'infinispan', 576, NULL, NULL, 619, NULL, NULL, NULL, NULL, 'https://quay.io/repository/operatorhubio/infinispan', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (109, 'nuxeo', 576, NULL, NULL, NULL, NULL, NULL, NULL, 620, 'https://quay.io/repository/swsmirror/nuxeo', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (110, 'arangodb', 576, NULL, NULL, 621, NULL, NULL, NULL, NULL, 'https://quay.io/repository/swsmirror/arangodb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (111, 'clickhouse', 576, NULL, NULL, 624, NULL, NULL, NULL, NULL, 'https://quay.io/repository/operatorhubio/clickhouse', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (112, 'minio', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'https://quay.io/repository/minio/minio', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (113, 'elasticsearch', 576, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'https://quay.io/repository/fluentd_elasticsearch/elasticsearch', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (114, 'keycloak', 576, NULL, NULL, 628, NULL, NULL, NULL, NULL, 'https://quay.io/repository/keycloak/keycloak', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (115, 'grafana', 576, NULL, NULL, 629, NULL, NULL, NULL, NULL, 'https://quay.io/repository/tamr/grafana', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (116, 'mattermost', 576, NULL, NULL, NULL, NULL, NULL, NULL, 630, 'https://quay.io/repository/jostone/mattermost', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (117, 'synapse', 576, NULL, NULL, 631, NULL, NULL, NULL, NULL, 'https://quay.io/repository/dockernohub/synapse', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (118, 'kubeflow', 576, NULL, NULL, NULL, NULL, NULL, NULL, 635, 'https://quay.io/repository/operatorhubio/kubeflow', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (119, 'sematext', 576, NULL, NULL, NULL, NULL, NULL, NULL, 639, 'https://quay.io/repository/operatorhubio/sematext', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (120, 'mariadb', 576, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'https://quay.io/repository/startx/mariadb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (121, 'istio', 576, NULL, NULL, 644, NULL, NULL, NULL, NULL, 'https://quay.io/repository/aspenmesh/istio', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (122, 'vault', 576, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'https://quay.io/repository/cybozu/vault', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (123, 'etcd', 576, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'https://quay.io/repository/coreos/etcd', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (124, 'traefik', 576, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'https://quay.io/repository/widen/traefik', 'App_Server'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (125, 'yugabytedb', 576, NULL, NULL, 650, NULL, NULL, NULL, NULL, 'https://quay.io/repository/marco_antonioni/yugabytedb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (126, 'cockroachdb', 576, NULL, NULL, 651, NULL, NULL, NULL, NULL, 'https://quay.io/repository/helmoperators/cockroachdb', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (127, 'jaeger', 576, NULL, NULL, NULL, NULL, NULL, NULL, 652, 'https://quay.io/repository/operatorhubio/jaeger', 'Runtime'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (128, 'powershell', 576, 660, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/powerdock/powershell', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (129, 'dds', 576, 663, NULL, NULL, NULL, NULL, NULL, NULL, 'https://quay.io/repository/havoc/dds', 'Lang'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (130, 'git', 576, NULL, NULL, 677, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sisense/git', 'App'); +INSERT INTO openshift_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, OpenShift_Correspondent_Image_URL, DockerImageType) VALUES (131, 'gitlab', 576, NULL, NULL, 678, NULL, NULL, NULL, NULL, 'https://quay.io/repository/sameersbn/gitlab', 'App'); + +-- Table: operator_images CREATE TABLE operator_images ( id integer PRIMARY KEY AUTOINCREMENT, container_name text NOT NULL, @@ -9211,3591 +12860,182 @@ CREATE TABLE operator_images ( FOREIGN KEY (runlib) REFERENCES entities (id), FOREIGN KEY (runtime) REFERENCES entities (id) ); -INSERT INTO operator_images VALUES(1,'Apache Spark Operator',576,584,NULL,280,NULL,NULL,NULL,NULL,'quay.io/radanalyticsio/spark-operator:1.0.2','https://github.com/radanalyticsio/spark-operator'); -INSERT INTO operator_images VALUES(2,'Banzai Cloud Kafka Operator',576,323,NULL,9,NULL,NULL,NULL,NULL,'banzaicloud/kafka-operator:0.3.1','https://github.com/banzaicloud/kafka-operator/tree/master'); -INSERT INTO operator_images VALUES(3,'Camel K Operator',576,323,NULL,378,NULL,NULL,NULL,NULL,'docker.io/apache/camel-k:1.3.0','https://github.com/apache/camel-k'); -INSERT INTO operator_images VALUES(4,'GrdsCloud MySQL for Kubernetes',576,NULL,NULL,122,NULL,NULL,NULL,NULL,'grds/mysql-operator:1.0.0','https://github.com/GrdsCloud'); -INSERT INTO operator_images VALUES(5,'Hive for Red Hat OpenShift',576,323,NULL,8,NULL,NULL,NULL,NULL,'quay.io/openshift-hive/hive:v1.0.17','https://github.com/openshift/hive'); -INSERT INTO operator_images VALUES(6,'IBM Spectrum Scale CSI Plugin Operator',576,323,NULL,605,NULL,NULL,NULL,NULL,'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0','https://github.com/IBM/ibm-spectrum-scale-csi/'); -INSERT INTO operator_images VALUES(7,'Jenkins Operator',576,323,NULL,90,NULL,NULL,NULL,NULL,'virtuslab/jenkins-operator:v0.3.0','https://github.com/jenkinsci/kubernetes-operator'); -INSERT INTO operator_images VALUES(8,'Postgresql Operator',576,NULL,NULL,157,NULL,NULL,NULL,NULL,'quay.io/deekshah86/postgresql-operator','https://github.com/janepelladinesh/postgresql-operator'); -INSERT INTO operator_images VALUES(9,'Redis Operator',576,323,NULL,168,NULL,NULL,NULL,NULL,'quay.io/opstree/redis-operator:v0.3.0','https://github.com/ot-container-kit/redis-operator'); -INSERT INTO operator_images VALUES(10,'WildFly',576,323,NULL,493,NULL,NULL,NULL,NULL,'quay.io/wildfly/wildfly-operator:0.3.0','https://github.com/wildfly/wildfly-operator'); -INSERT INTO operator_images VALUES(11,'MongoDB Enterprise Operator',576,NULL,NULL,116,NULL,NULL,NULL,NULL,'quay.io/mongodb/mongodb-enterprise-operator:1.12.0','https://github.com/mongodb/mongodb-enterprise-kubernetes'); -INSERT INTO operator_images VALUES(12,'Apache Spark Operator',576,NULL,NULL,280,NULL,NULL,NULL,NULL,'quay.io/radanalyticsio/spark-operator:1.0.2','https://github.com/radanalyticsio/spark-operator'); -INSERT INTO operator_images VALUES(13,'Banzai Cloud Kafka Operator',576,NULL,NULL,9,NULL,NULL,NULL,NULL,'banzaicloud/kafka-operator:0.3.1','https://github.com/banzaicloud/kafka-operator/tree/master'); -INSERT INTO operator_images VALUES(14,'Camel K Operator',576,NULL,NULL,378,NULL,NULL,NULL,NULL,'docker.io/apache/camel-k:1.3.0','https://github.com/apache/camel-k'); -INSERT INTO operator_images VALUES(15,'GrdsCloud MySQL for Kubernetes',576,NULL,NULL,122,NULL,NULL,NULL,NULL,'grds/mysql-operator:1.0.0','https://github.com/GrdsCloud'); -INSERT INTO operator_images VALUES(16,'Hive for Red Hat OpenShift',576,NULL,NULL,8,NULL,NULL,NULL,NULL,'quay.io/openshift-hive/hive:v1.0.17','https://github.com/openshift/hive'); -INSERT INTO operator_images VALUES(17,'IBM Spectrum Scale CSI Plugin Operator',576,NULL,NULL,605,NULL,NULL,NULL,NULL,'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0','https://github.com/IBM/ibm-spectrum-scale-csi/'); -INSERT INTO operator_images VALUES(18,'Jenkins Operator',576,NULL,NULL,90,NULL,NULL,NULL,NULL,'virtuslab/jenkins-operator:v0.3.0','https://github.com/jenkinsci/kubernetes-operator'); -INSERT INTO operator_images VALUES(19,'Postgresql Operator',576,NULL,NULL,157,NULL,NULL,NULL,NULL,'quay.io/deekshah86/postgresql-operator','https://github.com/janepelladinesh/postgresql-operator'); -INSERT INTO operator_images VALUES(20,'Redis Operator',576,NULL,NULL,168,NULL,NULL,NULL,NULL,'quay.io/opstree/redis-operator:v0.3.0','https://github.com/ot-container-kit/redis-operator'); -INSERT INTO operator_images VALUES(21,'WildFly',576,NULL,NULL,493,NULL,NULL,NULL,NULL,'quay.io/wildfly/wildfly-operator:0.3.0','https://github.com/wildfly/wildfly-operator'); -INSERT INTO operator_images VALUES(22,'MongoDB Enterprise Operator',576,NULL,NULL,116,NULL,NULL,NULL,NULL,'quay.io/mongodb/mongodb-enterprise-operator:1.12.0','https://github.com/mongodb/mongodb-enterprise-kubernetes'); -INSERT INTO operator_images VALUES(23,'Instana Agent Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,611,'instana/instana-agent-operator:0.3.7','https://github.com/instana/instana-agent-operator'); -INSERT INTO operator_images VALUES(24,'credstash-operator',576,NULL,NULL,612,NULL,NULL,NULL,NULL,'quay.io/ouzi/credstash-operator:v1.13.0','https://github.com/ouzi-dev/credstash-operator'); -INSERT INTO operator_images VALUES(25,'Snyk Operator',576,NULL,NULL,613,NULL,NULL,NULL,NULL,'docker.io/snyk/kubernetes-operator:1.59.3','https://github.com/snyk/kubernetes-monitor'); -INSERT INTO operator_images VALUES(26,'Akka Cluster Operator',576,NULL,NULL,614,NULL,NULL,NULL,NULL,'lightbend-docker-registry.bintray.io/lightbend/akkacluster-operator:v1.0.0','https://github.com/lightbend/akka-cluster-operator'); -INSERT INTO operator_images VALUES(27,'Varnish Operator',576,NULL,NULL,NULL,615,NULL,NULL,NULL,'ibmcom/varnish-operator:0.27.2','https://github.com/IBM/varnish-operator'); -INSERT INTO operator_images VALUES(28,'Datadog Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,616,'datadog/operator:0.3.0','https://github.com/DataDog/datadog-operator'); -INSERT INTO operator_images VALUES(29,'Hazelcast Enterprise Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,618,'hazelcast/hazelcast-enterprise-operator:0.3.7','https://github.com/hazelcast/hazelcast-operator'); -INSERT INTO operator_images VALUES(30,'infinispan',576,NULL,NULL,619,NULL,NULL,NULL,NULL,'docker.io/jboss/infinispan-operator:0.3.0','https://github.com/infinispan/infinispan-operator'); -INSERT INTO operator_images VALUES(31,'Nuxeo Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,620,'docker.io/appzygy/nuxeo-operator:0.7.1','https://github.com/aceeric/nuxeo-operator'); -INSERT INTO operator_images VALUES(32,'ArangoDB',576,NULL,NULL,621,NULL,NULL,NULL,NULL,'arangodb/kube-arangodb:1.0.2','https://github.com/arangodb/kube-arangodb'); -INSERT INTO operator_images VALUES(33,'Eclipse Che',576,NULL,NULL,622,NULL,NULL,NULL,NULL,'quay.io/eclipse/che-operator@sha256:ea3641202e11ad00bd639b59809b6f4a6508f2c143d260b1683a9f36d74ed54f','https://github.com/eclipse-che/che-operator'); -INSERT INTO operator_images VALUES(34,'AWS S3 Operator',576,NULL,NULL,623,NULL,NULL,NULL,NULL,'quay.io/screeley44/aws-s3-provisioner:v1.0.0','https://github.com/yard-turkey/aws-s3-provisioner'); -INSERT INTO operator_images VALUES(35,'Altinity ClickHouse Operator',576,NULL,NULL,624,NULL,NULL,NULL,NULL,'altinity/clickhouse-operator:0.9.9','https://github.com/altinity/clickhouse-operator'); -INSERT INTO operator_images VALUES(36,'MinIO Operator',576,NULL,NULL,625,NULL,NULL,NULL,NULL,'minio/k8s-operator:1.0.3','https://github.com/minio/minio-operator'); -INSERT INTO operator_images VALUES(37,'Elastic Cloud on Kubernetes',576,NULL,NULL,626,NULL,NULL,NULL,NULL,'docker.elastic.co/eck/eck-operator:1.0.0-beta1','https://github.com/elastic/cloud-on-k8s'); -INSERT INTO operator_images VALUES(38,'Percona XtraDB Cluster Operator',576,NULL,NULL,627,NULL,NULL,NULL,NULL,'percona/percona-xtradb-cluster-operator:1.7.0','https://github.com/percona/percona-xtradb-cluster-operator'); -INSERT INTO operator_images VALUES(39,'Keycloak Operator',576,NULL,NULL,628,NULL,NULL,NULL,NULL,'quay.io/keycloak/keycloak-operator:9.0.2','https://github.com/keycloak/keycloak-operator'); -INSERT INTO operator_images VALUES(40,'Grafana Operator',576,NULL,NULL,629,NULL,NULL,NULL,NULL,'quay.io/integreatly/grafana-operator:v3.10.1','https://github.com/integr8ly/grafana-operator'); -INSERT INTO operator_images VALUES(41,'Mattermost Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,630,'docker.io/mattermost/mattermost-operator:v0.5.0','https://github.com/mattermost/mattermost-operator'); -INSERT INTO operator_images VALUES(42,'synapse-helm',576,NULL,NULL,631,NULL,NULL,NULL,NULL,'quay.io/mgoerens/synapse-helm:v0.0.11','https://github.com/opdev/synapse-helm'); -INSERT INTO operator_images VALUES(43,'IBM Cloud IAM Operator',576,NULL,NULL,632,NULL,NULL,NULL,NULL,'cloudoperators/ibmcloud-iam-operator:0.1.0','https://github.com/IBM/ibmcloud-iam-operator'); -INSERT INTO operator_images VALUES(44,'Knative Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,633,'gcr.io/knative-releases/knative.dev/operator/cmd/operator:v0.20.0','https://github.com/knative/operator'); -INSERT INTO operator_images VALUES(45,'Cassandra',576,NULL,NULL,634,NULL,NULL,NULL,NULL,'gcr.io/cassandra-operator/cassandra-operator:v2.0.0','https://github.com/instaclustr/cassandra-operator'); -INSERT INTO operator_images VALUES(46,'Kubeflow',576,NULL,NULL,NULL,NULL,NULL,NULL,635,'aipipeline/kubeflow-operator:v1.0.0','https://github.com/kubeflow/kfctl'); -INSERT INTO operator_images VALUES(47,'Openshift Qiskit Operator',576,NULL,NULL,636,NULL,NULL,NULL,NULL,'https://hub.docker.com/repository/docker/singhp11/openshift-qiskit-operator','https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/openshift-qiskit-operator'); -INSERT INTO operator_images VALUES(48,'Azure Service Operator',576,NULL,NULL,637,NULL,NULL,NULL,NULL,'mcr.microsoft.com/k8s/azureserviceoperator:1.0.27207','https://github.com/Azure/azure-service-operator'); -INSERT INTO operator_images VALUES(49,'Strimzi',576,NULL,NULL,NULL,NULL,NULL,NULL,638,'docker.io/strimzi/operator@sha256:62218aee7553b31db1f65bc30b3c6b6595c2fd631b2e1792e24e554a47080aa6','https://github.com/strimzi/strimzi-kafka-operator'); -INSERT INTO operator_images VALUES(50,'Sematext Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,639,'docker.io/sematext/sematext-operator:1.0.33','https://github.com/sematext/sematext-operator'); -INSERT INTO operator_images VALUES(51,'Eclipse Hawkbit',576,NULL,NULL,640,NULL,NULL,NULL,NULL,'docker.io/ctron/hawkbit-operator:0.1.4','https://github.com/ctron/hawkbit-operator'); -INSERT INTO operator_images VALUES(52,'Eclipse Ditto',576,NULL,NULL,641,NULL,NULL,NULL,NULL,'docker.io/ctron/ditto-operator:0.1.0','https://github.com/ctron/ditto-operator'); -INSERT INTO operator_images VALUES(53,'Mariadb Operator',576,NULL,NULL,642,NULL,NULL,NULL,NULL,'quay.io/manojdhanorkar/mariadb-operator:v0.0.1','https://github.com/abalki001/mariadb-operator'); -INSERT INTO operator_images VALUES(54,'Zadara Operator',576,NULL,NULL,643,NULL,NULL,NULL,NULL,'zadara/zoperator:0.3.6','https://github.com/zadarastorage/zadara-operator'); -INSERT INTO operator_images VALUES(55,'Istio',576,NULL,NULL,644,NULL,NULL,NULL,NULL,'banzaicloud/istio-operator:0.1.6','https://github.com/banzaicloud/istio-operator/tree/release-1.1'); -INSERT INTO operator_images VALUES(56,'Vault Helm',576,NULL,NULL,645,NULL,NULL,NULL,NULL,'quay.io/brejohns/vault-helm:0.0.1','https://github.com/SDBrett/vault-helm'); -INSERT INTO operator_images VALUES(57,'druid-operator',576,NULL,NULL,646,NULL,NULL,NULL,NULL,'druidio/druid-operator:0.0.6','https://github.com/druid-io/druid-operator'); -INSERT INTO operator_images VALUES(58,'etcd',576,NULL,NULL,647,NULL,NULL,NULL,NULL,'quay.io/coreos/etcd-operator@sha256:66a37fd61a06a43969854ee6d3e21087a98b93838e284a6086b13917f96b0d9b','https://github.com/coreos/etcd-operator'); -INSERT INTO operator_images VALUES(59,'Traefikee Operator',576,NULL,NULL,NULL,648,NULL,NULL,NULL,'containous/traefikee-operator:v0.3.0','https://github.com/containous/traefikee-operator'); -INSERT INTO operator_images VALUES(60,'IBM Cloud Operator',576,NULL,NULL,649,NULL,NULL,NULL,NULL,'cloudoperators/ibmcloud-operator:0.1.10','https://github.com/IBM/cloud-operators'); -INSERT INTO operator_images VALUES(61,'Yugabyte Operator',576,NULL,NULL,650,NULL,NULL,NULL,NULL,'quay.io/yugabyte/yugabytedb-operator','https://github.com/yugabyte/yugabyte-operator'); -INSERT INTO operator_images VALUES(62,'CockroachDB',576,NULL,NULL,651,NULL,NULL,NULL,NULL,'quay.io/helmoperators/cockroachdb:v3.0.7','https://github.com/dmesser/cockroachdb-operator'); -INSERT INTO operator_images VALUES(63,'Community Jaeger Operator',576,NULL,NULL,NULL,NULL,NULL,NULL,652,'docker.io/jaegertracing/jaeger-operator:1.11.1','https://github.com/jaegertracing/jaeger-operator'); -CREATE TABLE docker_environment_variables( - id integer NOT NULL PRIMARY KEY AUTOINCREMENT, - Environment_Variables text, - Container_Name text, - Required text, - Default_Values text, - FOREIGN KEY (Container_Name) REFERENCES docker_images (id) - ); -INSERT INTO docker_environment_variables VALUES(1,'DB2INSTANCE','db2','Y',''); -INSERT INTO docker_environment_variables VALUES(2,'DB2INST1_PASSWORD','db2','Y',''); -INSERT INTO docker_environment_variables VALUES(3,'DBNAME','db2','Y',''); -INSERT INTO docker_environment_variables VALUES(4,'BLU','db2','N','True'); -INSERT INTO docker_environment_variables VALUES(5,'ENABLE_ORACLE_COMPATIBILITY','db2','',''); -INSERT INTO docker_environment_variables VALUES(6,'SAMPLEDB','db2','',''); -INSERT INTO docker_environment_variables VALUES(7,'PERSISTENT_HOME','db2','',''); -INSERT INTO docker_environment_variables VALUES(8,'HADR_ENABLED','db2','',''); -INSERT INTO docker_environment_variables VALUES(9,'ETCD_ENDPOINT','db2','',''); -INSERT INTO docker_environment_variables VALUES(10,'ETCD_USERNAME','db2','',''); -INSERT INTO docker_environment_variables VALUES(11,'ETCD_PASSWORD','db2','',''); -INSERT INTO docker_environment_variables VALUES(12,'TEXT_SEARCH','db2','N',''); -INSERT INTO docker_environment_variables VALUES(13,'ARCHIVE_LOGS','db2','N','True'); -INSERT INTO docker_environment_variables VALUES(14,'AUTOCONFIG','db2','N','True'); -INSERT INTO docker_environment_variables VALUES(15,'MYSQL_HOST','mysql','',''); -INSERT INTO docker_environment_variables VALUES(16,'MYSQL_ROOT_PASSWORD','mysql','',''); -INSERT INTO docker_environment_variables VALUES(17,'MYSQL_DATABASE','mysql','',''); -INSERT INTO docker_environment_variables VALUES(18,'MYSQL_USER','mysql','',''); -INSERT INTO docker_environment_variables VALUES(19,'MYSQL_PASSWORD','mysql','',''); -INSERT INTO docker_environment_variables VALUES(20,'MYSQL_ALLOW_EMPTY_PASSWORD','mysql','',''); -INSERT INTO docker_environment_variables VALUES(21,'MYSQL_RANDOM_ROOT_PASSWORD','mysql','',''); -INSERT INTO docker_environment_variables VALUES(22,'MYSQL_ONETIME_PASSWORD','mysql','',''); -INSERT INTO docker_environment_variables VALUES(23,'MYSQL_INITDB_SKIP_TZINFO','mysql','',''); -INSERT INTO docker_environment_variables VALUES(24,'CATALINA_BASE','tomcat','',''); -INSERT INTO docker_environment_variables VALUES(25,'CATALINA_HOME','tomcat','',''); -INSERT INTO docker_environment_variables VALUES(26,'CATALINA_TMPDIR','tomcat','',''); -INSERT INTO docker_environment_variables VALUES(27,'JRE_HOME','tomcat','',''); -INSERT INTO docker_environment_variables VALUES(28,'CLASSPATH','tomcat','',''); -CREATE TABLE entity_versions ( - id integer PRIMARY KEY AUTOINCREMENT, - entity_id integer NOT NULL, - version text, - release_date date, - end_date date, - FOREIGN KEY (entity_id) REFERENCES entities (id) - ); -INSERT INTO entity_versions VALUES(1,497,'1','01/15/2002','07/14/2009'); -INSERT INTO entity_versions VALUES(2,497,'1.1','04/09/2003','10/08/2013'); -INSERT INTO entity_versions VALUES(3,497,'2','10/27/2005','07/12/2011'); -INSERT INTO entity_versions VALUES(4,497,'3','11/06/2006','07/12/2011'); -INSERT INTO entity_versions VALUES(5,497,'3.5','11/19/2007','10/10/2028'); -INSERT INTO entity_versions VALUES(6,497,'4','04/12/2010','01/12/2016'); -INSERT INTO entity_versions VALUES(7,497,'4.5','08/15/2012','01/12/2016'); -INSERT INTO entity_versions VALUES(8,497,'4.5.1','10/17/2013','01/12/2016'); -INSERT INTO entity_versions VALUES(9,497,'4.5.2','05/05/2014','04/26/2022'); -INSERT INTO entity_versions VALUES(10,497,'4.6','07/20/2015','04/26/2022'); -INSERT INTO entity_versions VALUES(11,497,'4.6.1','11/30/2015','04/26/2022'); -INSERT INTO entity_versions VALUES(12,497,'4.6.2','08/02/2016','04/26/2022'); -INSERT INTO entity_versions VALUES(13,497,'4.7','04/05/2017',' '); -INSERT INTO entity_versions VALUES(14,497,'4.7.1','10/17/2017',' '); -INSERT INTO entity_versions VALUES(15,497,'4.7.2','04/30/2018',' '); -INSERT INTO entity_versions VALUES(16,497,'4.8','09/04/2019',' '); -INSERT INTO entity_versions VALUES(17,498,' ',' ',' '); -INSERT INTO entity_versions VALUES(18,592,'1','12/01/1996',' '); -INSERT INTO entity_versions VALUES(19,592,'2','09/01/1997',' '); -INSERT INTO entity_versions VALUES(20,592,'3','11/01/2000',' '); -INSERT INTO entity_versions VALUES(21,500,' ','01/01/1996','08/31/2020'); -INSERT INTO entity_versions VALUES(22,501,'6',' ',' '); -INSERT INTO entity_versions VALUES(23,501,'7',' ',' '); -INSERT INTO entity_versions VALUES(24,501,'8',' ',' '); -INSERT INTO entity_versions VALUES(25,501,'9',' ',' '); -INSERT INTO entity_versions VALUES(26,501,'10.0.0',' ',' '); -INSERT INTO entity_versions VALUES(27,502,'5.6','06/01/2020',' '); -INSERT INTO entity_versions VALUES(28,502,'5.5','12/01/2018',' '); -INSERT INTO entity_versions VALUES(29,502,'5.4','06/01/2017',' '); -INSERT INTO entity_versions VALUES(30,502,'5.3','12/01/2015',' '); -INSERT INTO entity_versions VALUES(31,502,'5.2','12/31/2014',' '); -INSERT INTO entity_versions VALUES(32,502,'5.1','12/31/2012',' '); -INSERT INTO entity_versions VALUES(33,502,'4.2','12/31/2011',' '); -INSERT INTO entity_versions VALUES(34,502,'4.1','12/31/2009',' '); -INSERT INTO entity_versions VALUES(35,502,'3.2','12/31/2007',' '); -INSERT INTO entity_versions VALUES(36,502,'3.1','12/31/2005',' '); -INSERT INTO entity_versions VALUES(37,502,'2.2','12/31/2003',' '); -INSERT INTO entity_versions VALUES(38,502,'2.1','12/31/2001',' '); -INSERT INTO entity_versions VALUES(39,503,'20.10.8','08/03/2021',' '); -INSERT INTO entity_versions VALUES(40,503,'20.10.7','06/02/2021',' '); -INSERT INTO entity_versions VALUES(41,503,'20.10.6','04/12/2021',' '); -INSERT INTO entity_versions VALUES(42,503,'20.10.5','03/02/2021',' '); -INSERT INTO entity_versions VALUES(43,503,'20.10.4','04/26/2021',' '); -INSERT INTO entity_versions VALUES(44,503,'20.10.3','02/01/2021',' '); -INSERT INTO entity_versions VALUES(45,503,'20.10.2','01/04/2021',' '); -INSERT INTO entity_versions VALUES(46,503,'20.10.1','12/14/2020',' '); -INSERT INTO entity_versions VALUES(47,503,'20.10.0','12/08/2020',' '); -INSERT INTO entity_versions VALUES(48,504,'2','12/31/1997','12/31/1998'); -INSERT INTO entity_versions VALUES(49,504,'3','12/31/1997','12/31/1998'); -INSERT INTO entity_versions VALUES(50,504,'7.0.14.0','12/31/1997','12/31/2005'); -INSERT INTO entity_versions VALUES(51,504,'9.0.289.0','12/31/1998','12/31/2011'); -INSERT INTO entity_versions VALUES(52,504,'10.3.183.90','12/31/1999','12/31/2013'); -INSERT INTO entity_versions VALUES(53,504,'11.1.102.55','12/31/1999','12/31/2013'); -INSERT INTO entity_versions VALUES(54,504,'32.0.0.465','12/31/2001','12/31/2020'); -INSERT INTO entity_versions VALUES(55,504,'5.0.41.0','12/31/1997',' '); -INSERT INTO entity_versions VALUES(56,504,'32.0.0.465','12/31/2014','12/31/2020'); -INSERT INTO entity_versions VALUES(57,504,'29.0.0.171','12/31/2013','12/31/2018'); -INSERT INTO entity_versions VALUES(58,504,'22.0.0.209','12/31/2009','12/31/2016'); -INSERT INTO entity_versions VALUES(59,504,'10.3.183.90','12/31/2007','12/31/2013'); -INSERT INTO entity_versions VALUES(60,504,'10.1.102.64','12/31/2005','12/31/2011'); -INSERT INTO entity_versions VALUES(61,504,'9.0.289.0','12/31/2001','12/31/2011'); -INSERT INTO entity_versions VALUES(62,504,'7.0.14.0','12/31/1997','12/31/2005'); -INSERT INTO entity_versions VALUES(63,504,'3','12/31/1997','12/31/1998'); -INSERT INTO entity_versions VALUES(64,504,'4.0r12','12/31/1999',' '); -INSERT INTO entity_versions VALUES(65,504,'32.0.0.465','12/31/2020',' '); -INSERT INTO entity_versions VALUES(66,504,'4.0r12','12/31/1999',' '); -INSERT INTO entity_versions VALUES(67,504,'4.0r12','12/31/2004','12/31/2013'); -INSERT INTO entity_versions VALUES(68,504,'11.2.202.223','12/31/2004','12/31/2013'); -INSERT INTO entity_versions VALUES(69,504,'10.3.183.90','12/31/2004','12/31/2013'); -INSERT INTO entity_versions VALUES(70,505,'1','12/31/2002',' '); -INSERT INTO entity_versions VALUES(71,505,'2.3',' ',' '); -INSERT INTO entity_versions VALUES(72,506,'JDK Beta','01/01/1995',' '); -INSERT INTO entity_versions VALUES(73,506,'1.0','01/01/1996',' '); -INSERT INTO entity_versions VALUES(74,506,'1.1','02/01/1997',' '); -INSERT INTO entity_versions VALUES(75,506,'1.2','12/01/1998',' '); -INSERT INTO entity_versions VALUES(76,506,'1.3','05/01/2000',' '); -INSERT INTO entity_versions VALUES(77,506,'1.4','02/01/2002','08/31/2008'); -INSERT INTO entity_versions VALUES(78,506,'5.0','09/01/2004','11/30/2009'); -INSERT INTO entity_versions VALUES(79,506,'6','12/01/2006','04/30/2013'); -INSERT INTO entity_versions VALUES(80,506,'7','07/01/2011','04/30/2015'); -INSERT INTO entity_versions VALUES(81,506,'8','03/01/2014','12/31/2026'); -INSERT INTO entity_versions VALUES(82,506,'9','09/01/2017','03/31/2018'); -INSERT INTO entity_versions VALUES(83,506,'10','03/01/2018','09/30/2018'); -INSERT INTO entity_versions VALUES(84,506,'11','09/01/2018','12/31/2026'); -INSERT INTO entity_versions VALUES(85,506,'12','03/31/2019','09/30/2019'); -INSERT INTO entity_versions VALUES(86,506,'13','09/01/2019','03/31/2020'); -INSERT INTO entity_versions VALUES(87,506,'14','03/01/2020','09/30/2020'); -INSERT INTO entity_versions VALUES(88,506,'15','09/01/2020','03/31/2021'); -INSERT INTO entity_versions VALUES(89,506,'16','03/01/2021','09/30/2021'); -INSERT INTO entity_versions VALUES(90,506,'17','09/30/2021','12/31/2029'); -INSERT INTO entity_versions VALUES(91,506,'18','03/01/2022','09/30/2022'); -INSERT INTO entity_versions VALUES(92,506,'19','09/01/2022','03/31/2023'); -INSERT INTO entity_versions VALUES(93,506,'20','03/01/2023','09/30/2023'); -INSERT INTO entity_versions VALUES(94,506,'21','09/01/2023',' '); -INSERT INTO entity_versions VALUES(95,507,'0.10','03/01/2013','10/31/2016'); -INSERT INTO entity_versions VALUES(96,507,'0.12','02/06/2015','12/31/2016'); -INSERT INTO entity_versions VALUES(97,507,'4','09/08/2015','04/30/2018'); -INSERT INTO entity_versions VALUES(98,507,'5','10/29/2015','06/30/2016'); -INSERT INTO entity_versions VALUES(99,507,'6','04/26/2016','04/30/2019'); -INSERT INTO entity_versions VALUES(100,507,'7','10/25/2016','06/30/2017'); -INSERT INTO entity_versions VALUES(101,507,'8','05/30/2017','12/31/2019'); -INSERT INTO entity_versions VALUES(102,507,'9','10/01/2017','06/30/2018'); -INSERT INTO entity_versions VALUES(103,507,'10','04/24/2018','04/30/2021'); -INSERT INTO entity_versions VALUES(104,507,'11','10/23/2018','06/01/2019'); -INSERT INTO entity_versions VALUES(105,507,'12','04/23/2019','04/30/2022'); -INSERT INTO entity_versions VALUES(106,507,'13','10/22/2019','06/01/2020'); -INSERT INTO entity_versions VALUES(107,507,'14','04/21/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(108,507,'15','10/20/2020','06/01/2021'); -INSERT INTO entity_versions VALUES(109,507,'16','04/20/2021','04/30/2024'); -INSERT INTO entity_versions VALUES(110,507,'17','10/19/2021','06/01/2022'); -INSERT INTO entity_versions VALUES(111,507,'18','04/19/2022','04/30/2025'); -INSERT INTO entity_versions VALUES(112,508,'1','12/13/2005',' '); -INSERT INTO entity_versions VALUES(113,508,'1.2','01/19/2007',' '); -INSERT INTO entity_versions VALUES(114,508,'2','12/07/2007',' '); -INSERT INTO entity_versions VALUES(115,508,'2.1','06/01/2008',' '); -INSERT INTO entity_versions VALUES(116,508,'2.2','11/21/2008',' '); -INSERT INTO entity_versions VALUES(117,508,'2.3','03/16/2009',' '); -INSERT INTO entity_versions VALUES(118,508,'3','08/29/2010',' '); -INSERT INTO entity_versions VALUES(119,508,'3.1','08/31/2011',' '); -INSERT INTO entity_versions VALUES(120,508,'3.2','01/20/2012',' '); -INSERT INTO entity_versions VALUES(121,508,'4','06/25/2013',' '); -INSERT INTO entity_versions VALUES(122,508,'4.1','04/08/2014',' '); -INSERT INTO entity_versions VALUES(123,508,'4.2','12/19/2014',' '); -INSERT INTO entity_versions VALUES(124,508,'5','06/30/2016',' '); -INSERT INTO entity_versions VALUES(125,508,'5.1','05/10/2017',' '); -INSERT INTO entity_versions VALUES(126,508,'5.2','04/09/2018',' '); -INSERT INTO entity_versions VALUES(127,508,'6','08/16/2019',' '); -INSERT INTO entity_versions VALUES(128,508,'6.1','12/09/2020',' '); -INSERT INTO entity_versions VALUES(129,508,'7',' ',' '); -INSERT INTO entity_versions VALUES(130,509,'53.0',' ',' '); -INSERT INTO entity_versions VALUES(131,263,'1','12/16/2001','12/30/2001'); -INSERT INTO entity_versions VALUES(132,264,'1.1','03/10/2002','01/29/2006'); -INSERT INTO entity_versions VALUES(133,264,'1.2','11/09/2003','08/06/2011'); -INSERT INTO entity_versions VALUES(134,264,'1.3','06/29/2006','03/14/2016'); -INSERT INTO entity_versions VALUES(135,264,'1.4','02/26/2010','02/08/2018'); -INSERT INTO entity_versions VALUES(136,264,'1.5','06/19/2014','01/10/2020'); -INSERT INTO entity_versions VALUES(137,264,'1.6','10/13/2015','12/31/2020'); -INSERT INTO entity_versions VALUES(138,264,'1.7','11/25/2016','12/31/2021'); -INSERT INTO entity_versions VALUES(139,264,'1.8','11/26/2017','12/31/2022'); -INSERT INTO entity_versions VALUES(140,264,'1.9','12/19/2018','06/30/2020'); -INSERT INTO entity_versions VALUES(141,264,'2','06/16/2019','06/30/2024'); -INSERT INTO entity_versions VALUES(142,264,'2.1','11/25/2019','03/31/2021'); -INSERT INTO entity_versions VALUES(143,264,'2.2','07/07/2020','06/30/2025'); -INSERT INTO entity_versions VALUES(144,264,'2.3','11/05/2020','03/31/2022'); -INSERT INTO entity_versions VALUES(145,264,'2.4','05/14/2021','06/30/2026'); -INSERT INTO entity_versions VALUES(146,264,'2.5','11/01/2021','03/31/2023'); -INSERT INTO entity_versions VALUES(147,259,'1.3','06/06/1998',' '); -INSERT INTO entity_versions VALUES(148,259,'2','04/06/2002',' '); -INSERT INTO entity_versions VALUES(149,259,'2.2','12/01/2005',' '); -INSERT INTO entity_versions VALUES(150,259,'2.4','02/21/2012',' '); -INSERT INTO entity_versions VALUES(151,609,'1',' ',' '); -INSERT INTO entity_versions VALUES(152,609,'2',' ',' '); -INSERT INTO entity_versions VALUES(153,609,'3',' ',' '); -INSERT INTO entity_versions VALUES(154,609,'4',' ',' '); -INSERT INTO entity_versions VALUES(155,609,'5',' ',' '); -INSERT INTO entity_versions VALUES(156,609,'5.1',' ',' '); -INSERT INTO entity_versions VALUES(157,609,'6',' ',' '); -INSERT INTO entity_versions VALUES(158,609,'7',' ',' '); -INSERT INTO entity_versions VALUES(159,609,'7.5',' ',' '); -INSERT INTO entity_versions VALUES(160,609,'8',' ',' '); -INSERT INTO entity_versions VALUES(161,609,'8.5',' ',' '); -INSERT INTO entity_versions VALUES(162,609,'10',' ',' '); -INSERT INTO entity_versions VALUES(163,274,' ',' ',' '); -INSERT INTO entity_versions VALUES(164,260,'3.3','03/09/2004',' '); -INSERT INTO entity_versions VALUES(165,260,'4.1','06/25/2009',' '); -INSERT INTO entity_versions VALUES(166,260,'5.5','10/10/2012',' '); -INSERT INTO entity_versions VALUES(167,260,'6.0','04/07/2017','12/31/2016'); -INSERT INTO entity_versions VALUES(168,260,'7.0','04/26/2021','03/31/2021'); -INSERT INTO entity_versions VALUES(169,260,'8.0','07/05/2018','06/30/2018'); -INSERT INTO entity_versions VALUES(170,260,'8.5','09/13/2021',' '); -INSERT INTO entity_versions VALUES(171,260,'9.0','09/10/2021',' '); -INSERT INTO entity_versions VALUES(172,260,'10.0','09/10/2021',' '); -INSERT INTO entity_versions VALUES(173,260,'10.1',' ',' '); -INSERT INTO entity_versions VALUES(174,285,'8.5','06/15/2012','06/24/2016'); -INSERT INTO entity_versions VALUES(175,280,'0.5','10/07/2012',' '); -INSERT INTO entity_versions VALUES(176,280,'0.6','02/07/2013',' '); -INSERT INTO entity_versions VALUES(177,280,'0.7','07/16/2013',' '); -INSERT INTO entity_versions VALUES(178,280,'0.8','12/19/2013',' '); -INSERT INTO entity_versions VALUES(179,280,'0.9','07/23/2014',' '); -INSERT INTO entity_versions VALUES(180,280,'1.0','08/05/2014',' '); -INSERT INTO entity_versions VALUES(181,280,'1.1','11/26/2014',' '); -INSERT INTO entity_versions VALUES(182,280,'1.2','04/17/2015',' '); -INSERT INTO entity_versions VALUES(183,280,'1.3','04/17/2015',' '); -INSERT INTO entity_versions VALUES(184,280,'1.4','07/15/2015',' '); -INSERT INTO entity_versions VALUES(185,280,'1.5','11/09/2015',' '); -INSERT INTO entity_versions VALUES(186,280,'1.6','11/07/2016',' '); -INSERT INTO entity_versions VALUES(187,280,'2.0','11/14/2016',' '); -INSERT INTO entity_versions VALUES(188,280,'2.1','06/26/2018',' '); -INSERT INTO entity_versions VALUES(189,280,'2.2','01/11/2019',' '); -INSERT INTO entity_versions VALUES(190,280,'2.3','09/09/2019',' '); -INSERT INTO entity_versions VALUES(191,280,'2.4','05/17/2021',' '); -INSERT INTO entity_versions VALUES(192,280,'3.0','01/06/2021',' '); -INSERT INTO entity_versions VALUES(193,280,'3.1','01/06/2021',' '); -INSERT INTO entity_versions VALUES(194,278,'3.1',' ',' '); -INSERT INTO entity_versions VALUES(195,278,'4.0',' ',' '); -INSERT INTO entity_versions VALUES(196,265,'6.0.1','04/15/2005',' '); -INSERT INTO entity_versions VALUES(197,265,'6.0.2','07/29/2005',' '); -INSERT INTO entity_versions VALUES(198,265,'6.1.0','07/21/2006',' '); -INSERT INTO entity_versions VALUES(199,265,'7.0.0','03/15/2009',' '); -INSERT INTO entity_versions VALUES(200,265,'8.0.0','06/17/2011',' '); -INSERT INTO entity_versions VALUES(201,265,'8.5.0','06/15/2012',' '); -INSERT INTO entity_versions VALUES(202,265,'9.0.0','03/11/2016',' '); -INSERT INTO entity_versions VALUES(203,269,'2.6','02/09/2016',' '); -INSERT INTO entity_versions VALUES(204,269,'2.9.1','04/11/2019',' '); -INSERT INTO entity_versions VALUES(205,286,'4.1','12/31/2001',' '); -INSERT INTO entity_versions VALUES(206,286,'5','07/01/2002',' '); -INSERT INTO entity_versions VALUES(207,286,'6','04/01/2006',' '); -INSERT INTO entity_versions VALUES(208,286,'6.1','03/01/2009',' '); -INSERT INTO entity_versions VALUES(209,286,'6.1.5','11/01/2009',' '); -INSERT INTO entity_versions VALUES(210,286,'7','09/01/2010',' '); -INSERT INTO entity_versions VALUES(211,286,'8','05/01/2012',' '); -INSERT INTO entity_versions VALUES(212,286,'8.5','06/01/2014',' '); -INSERT INTO entity_versions VALUES(213,286,'9','12/01/2016',' '); -INSERT INTO entity_versions VALUES(214,286,'9.5','07/01/2019',' '); -INSERT INTO entity_versions VALUES(215,284,'9','03/26/2021',' '); -INSERT INTO entity_versions VALUES(216,284,'8.5.5','02/15/2021','06/24/2016'); -INSERT INTO entity_versions VALUES(217,284,'8.5','06/15/2012',' '); -INSERT INTO entity_versions VALUES(218,284,'8','06/17/2011','04/30/2018'); -INSERT INTO entity_versions VALUES(219,284,'7','08/17/2008','04/30/2018'); -INSERT INTO entity_versions VALUES(220,284,'6.1','06/30/2006','09/30/2013'); -INSERT INTO entity_versions VALUES(221,284,'6','12/31/2004','09/30/2010'); -INSERT INTO entity_versions VALUES(222,284,'5.1','01/16/2004','09/30/2008'); -INSERT INTO entity_versions VALUES(223,284,'5','01/03/2003','09/30/2006'); -INSERT INTO entity_versions VALUES(224,284,'4','08/15/2001','04/30/2005'); -INSERT INTO entity_versions VALUES(225,284,'3.5','08/31/2000','11/30/2003'); -INSERT INTO entity_versions VALUES(226,268,'7.1.1','03/09/2012',' '); -INSERT INTO entity_versions VALUES(227,268,'7.1.0','02/16/2012',' '); -INSERT INTO entity_versions VALUES(228,268,'7.0.2','09/22/2011',' '); -INSERT INTO entity_versions VALUES(229,268,'7.0.1','08/17/2011',' '); -INSERT INTO entity_versions VALUES(230,268,'7.0.0','07/12/2011',' '); -INSERT INTO entity_versions VALUES(231,268,'6.1.0','08/16/2011',' '); -INSERT INTO entity_versions VALUES(232,268,'6.0.0','12/22/2010',' '); -INSERT INTO entity_versions VALUES(233,268,'5.1.0','05/23/2009',' '); -INSERT INTO entity_versions VALUES(234,268,'5.0.0','12/05/2008',' '); -INSERT INTO entity_versions VALUES(235,268,'4.2.3','07/18/2008',' '); -INSERT INTO entity_versions VALUES(236,268,'4.2.2','10/22/2007',' '); -INSERT INTO entity_versions VALUES(237,268,'4.2.1','07/16/2006',' '); -INSERT INTO entity_versions VALUES(238,268,'4.2.0','05/11/2007',' '); -INSERT INTO entity_versions VALUES(239,268,'4.0.5','10/18/2006',' '); -INSERT INTO entity_versions VALUES(240,268,'4.0.4','05/15/2006',' '); -INSERT INTO entity_versions VALUES(241,268,'4.0.3','10/24/2005',' '); -INSERT INTO entity_versions VALUES(242,268,'4.0.2','05/02/2005',' '); -INSERT INTO entity_versions VALUES(243,268,'4.0.1','02/16/2005',' '); -INSERT INTO entity_versions VALUES(244,268,'4.0.0','09/20/2004',' '); -INSERT INTO entity_versions VALUES(245,268,'3.2.8','03/02/2006',' '); -INSERT INTO entity_versions VALUES(246,268,'3.2.7','01/28/2005',' '); -INSERT INTO entity_versions VALUES(247,268,'3.2.6','10/14/2004',' '); -INSERT INTO entity_versions VALUES(248,268,'3.2.5','06/25/2004',' '); -INSERT INTO entity_versions VALUES(249,268,'3.2.4','06/04/2004',' '); -INSERT INTO entity_versions VALUES(250,268,'3.2.3','11/30/2003',' '); -INSERT INTO entity_versions VALUES(251,268,'3.2.2','10/18/2003',' '); -INSERT INTO entity_versions VALUES(252,268,'3.2.1','06/02/2003',' '); -INSERT INTO entity_versions VALUES(253,268,'3.0.8','06/06/2003',' '); -INSERT INTO entity_versions VALUES(254,268,'3.0.7','04/08/2003',' '); -INSERT INTO entity_versions VALUES(255,268,'3.0.6','01/26/2003',' '); -INSERT INTO entity_versions VALUES(256,268,'3.0.5','01/13/2003',' '); -INSERT INTO entity_versions VALUES(257,268,'3.0.4','11/02/2002',' '); -INSERT INTO entity_versions VALUES(258,268,'3.0.3','09/29/2002',' '); -INSERT INTO entity_versions VALUES(259,268,'3.0.2','08/26/2002',' '); -INSERT INTO entity_versions VALUES(260,268,'3.0.1','08/05/2002',' '); -INSERT INTO entity_versions VALUES(261,268,'3.0.0','05/29/2002',' '); -INSERT INTO entity_versions VALUES(262,493,' ',' ',' '); -INSERT INTO entity_versions VALUES(263,271,'4.5','01/29/2015',' '); -INSERT INTO entity_versions VALUES(264,271,'5','04/07/2015',' '); -INSERT INTO entity_versions VALUES(265,137,'2',' ',' '); -INSERT INTO entity_versions VALUES(266,137,'2.3',' ',' '); -INSERT INTO entity_versions VALUES(267,137,'3',' ',' '); -INSERT INTO entity_versions VALUES(268,137,'4',' ',' '); -INSERT INTO entity_versions VALUES(269,137,'4.5',' ',' '); -INSERT INTO entity_versions VALUES(270,137,'5',' ',' '); -INSERT INTO entity_versions VALUES(271,137,'6',' ',' '); -INSERT INTO entity_versions VALUES(272,137,'6i',' ',' '); -INSERT INTO entity_versions VALUES(273,137,'9i',' ',' '); -INSERT INTO entity_versions VALUES(274,137,'10g',' ',' '); -INSERT INTO entity_versions VALUES(275,137,'10gR2',' ',' '); -INSERT INTO entity_versions VALUES(276,137,'11g',' ',' '); -INSERT INTO entity_versions VALUES(277,137,'11gR2',' ',' '); -INSERT INTO entity_versions VALUES(278,137,'12c',' ',' '); -INSERT INTO entity_versions VALUES(279,46,'3','06/21/2004',' '); -INSERT INTO entity_versions VALUES(280,46,'3.1','06/28/2005',' '); -INSERT INTO entity_versions VALUES(281,46,'3.2','06/30/2006',' '); -INSERT INTO entity_versions VALUES(282,46,'3.3','06/29/2007',' '); -INSERT INTO entity_versions VALUES(283,46,'3.4','06/25/2008',' '); -INSERT INTO entity_versions VALUES(284,46,'3.5','06/24/2009',' '); -INSERT INTO entity_versions VALUES(285,46,'3.6','06/23/2010',' '); -INSERT INTO entity_versions VALUES(286,46,'3.7','06/22/2011',' '); -INSERT INTO entity_versions VALUES(287,46,'3.8','06/27/2012',' '); -INSERT INTO entity_versions VALUES(288,46,'4.2','06/27/2012',' '); -INSERT INTO entity_versions VALUES(289,46,'4.3','06/26/2013',' '); -INSERT INTO entity_versions VALUES(290,46,'4.4','06/25/2014',' '); -INSERT INTO entity_versions VALUES(291,46,'4.5','06/24/2015',' '); -INSERT INTO entity_versions VALUES(292,46,'4.6','06/22/2016',' '); -INSERT INTO entity_versions VALUES(293,46,'4.7','06/28/2017',' '); -INSERT INTO entity_versions VALUES(294,46,'4.8','06/27/2018',' '); -INSERT INTO entity_versions VALUES(295,46,'4.9','09/19/2018',' '); -INSERT INTO entity_versions VALUES(296,46,'4.1','12/19/2018',' '); -INSERT INTO entity_versions VALUES(297,46,'4.11','03/20/2019',' '); -INSERT INTO entity_versions VALUES(298,46,'4.12','06/19/2019',' '); -INSERT INTO entity_versions VALUES(299,46,'4.13','09/18/2019',' '); -INSERT INTO entity_versions VALUES(300,46,'4.14','12/18/2019',' '); -INSERT INTO entity_versions VALUES(301,46,'4.15','03/18/2020',' '); -INSERT INTO entity_versions VALUES(302,46,'4.16','06/17/2020',' '); -INSERT INTO entity_versions VALUES(303,46,'4.17','09/16/2020',' '); -INSERT INTO entity_versions VALUES(304,46,'4.18','12/16/2020',' '); -INSERT INTO entity_versions VALUES(305,46,'4.19','03/17/2021',' '); -INSERT INTO entity_versions VALUES(306,46,'4.2','06/16/2021',' '); -INSERT INTO entity_versions VALUES(307,46,'4.21','09/15/2021',' '); -INSERT INTO entity_versions VALUES(308,46,'4.22','12/08/2021',' '); -INSERT INTO entity_versions VALUES(309,176,'7.6','12/31/2006','12/31/2016'); -INSERT INTO entity_versions VALUES(310,176,'7.7','12/31/2008','12/31/2017'); -INSERT INTO entity_versions VALUES(311,176,'7.8','12/31/2010','12/31/2017'); -INSERT INTO entity_versions VALUES(312,176,'7.9',' ',' '); -INSERT INTO entity_versions VALUES(313,70,'7.6.1.2','07/24/2020',' '); -INSERT INTO entity_versions VALUES(314,70,'7.6.0.10','12/14/2018',' '); -INSERT INTO entity_versions VALUES(315,70,'7.5.0.11','10/28/2016',' '); -INSERT INTO entity_versions VALUES(316,70,'7.1.1.13','06/27/2014',' '); -INSERT INTO entity_versions VALUES(317,70,'6.2.8','06/10/2011',' '); -INSERT INTO entity_versions VALUES(318,70,'6.1',' ',' '); -INSERT INTO entity_versions VALUES(319,70,'5.2.9.1','07/03/2009',' '); -INSERT INTO entity_versions VALUES(320,70,'4.1.1 ','06/28/2007',' '); -INSERT INTO entity_versions VALUES(321,135,' ',' ',' '); -INSERT INTO entity_versions VALUES(322,141,' ',' ',' '); -INSERT INTO entity_versions VALUES(323,134,'2.3','12/31/1979',' '); -INSERT INTO entity_versions VALUES(324,134,'3.1.3','12/31/1983',' '); -INSERT INTO entity_versions VALUES(325,134,'4.1.4.0','12/31/1984',' '); -INSERT INTO entity_versions VALUES(326,134,'5.0.22','12/31/1985',' '); -INSERT INTO entity_versions VALUES(327,134,'6.0.17','12/31/1988',' '); -INSERT INTO entity_versions VALUES(328,134,'6.2.0',' ',' '); -INSERT INTO entity_versions VALUES(329,134,'7.0.12','06/30/1992',' '); -INSERT INTO entity_versions VALUES(330,134,'7.1.0','05/31/1994',' '); -INSERT INTO entity_versions VALUES(331,134,'7.2.0','05/31/1995',' '); -INSERT INTO entity_versions VALUES(332,134,'7.3.0','02/28/1996',' '); -INSERT INTO entity_versions VALUES(333,134,'8.0.3','06/30/1997',' '); -INSERT INTO entity_versions VALUES(334,134,'8.1.5.0','12/31/1998','08/31/2000'); -INSERT INTO entity_versions VALUES(335,134,'9.0.1.0','12/31/2001','12/31/2003'); -INSERT INTO entity_versions VALUES(336,134,'9.2.0.1','12/31/2002','04/30/2007'); -INSERT INTO entity_versions VALUES(337,134,'10.1.0.2','12/31/2003','02/28/2006'); -INSERT INTO entity_versions VALUES(338,134,'10.2.0.1','07/31/2005','04/30/2010'); -INSERT INTO entity_versions VALUES(339,134,'11.1.0.6','09/30/2007','09/30/2008'); -INSERT INTO entity_versions VALUES(340,134,'11.2.0.1','09/30/2009','08/31/2013'); -INSERT INTO entity_versions VALUES(341,134,'12.1.0.1','07/31/2013','07/31/2014'); -INSERT INTO entity_versions VALUES(342,134,'12.2.0.1','09/30/2016',' '); -INSERT INTO entity_versions VALUES(343,134,'12.2.0.2','02/28/2018',' '); -INSERT INTO entity_versions VALUES(344,134,'12.2.0.3','02/28/2019',' '); -INSERT INTO entity_versions VALUES(345,134,'21.1','12/31/2020',' '); -INSERT INTO entity_versions VALUES(346,182,'1','12/31/1993',' '); -INSERT INTO entity_versions VALUES(347,182,'2','12/31/1995',' '); -INSERT INTO entity_versions VALUES(348,182,'3','12/31/1997',' '); -INSERT INTO entity_versions VALUES(349,182,'98','12/31/1998',' '); -INSERT INTO entity_versions VALUES(350,182,'99','12/31/1999',' '); -INSERT INTO entity_versions VALUES(351,182,'6','12/31/2000',' '); -INSERT INTO entity_versions VALUES(352,182,'7','12/31/2001',' '); -INSERT INTO entity_versions VALUES(353,182,'7.5','12/31/2002',' '); -INSERT INTO entity_versions VALUES(354,182,'7.7','12/31/2004',' '); -INSERT INTO entity_versions VALUES(355,182,'7.8','12/31/2005',' '); -INSERT INTO entity_versions VALUES(356,182,'8','12/31/2007',' '); -INSERT INTO entity_versions VALUES(357,182,'8.1','12/31/2008',' '); -INSERT INTO entity_versions VALUES(358,182,'8.2','12/31/2011',' '); -INSERT INTO entity_versions VALUES(359,182,'15','05/11/2015',' '); -INSERT INTO entity_versions VALUES(360,182,'16','04/29/2016',' '); -INSERT INTO entity_versions VALUES(361,182,'17','07/31/2017',' '); -INSERT INTO entity_versions VALUES(362,182,'18','01/23/2018',' '); -INSERT INTO entity_versions VALUES(363,182,'19','01/21/2019',' '); -INSERT INTO entity_versions VALUES(364,182,'20','01/21/2020',' '); -INSERT INTO entity_versions VALUES(365,126,'1','08/31/1998',' '); -INSERT INTO entity_versions VALUES(366,126,'1.1','12/31/1998',' '); -INSERT INTO entity_versions VALUES(367,126,'1.2','02/28/1999',' '); -INSERT INTO entity_versions VALUES(368,126,'2','08/31/2000',' '); -INSERT INTO entity_versions VALUES(369,126,'2.1','06/30/2002',' '); -INSERT INTO entity_versions VALUES(370,126,'2.2','12/31/2003',' '); -INSERT INTO entity_versions VALUES(371,126,'2.3','06/30/2005',' '); -INSERT INTO entity_versions VALUES(372,126,'2.4','10/31/2007',' '); -INSERT INTO entity_versions VALUES(373,126,'2.5','04/30/2021',' '); -INSERT INTO entity_versions VALUES(374,77,'1.1','08/31/2009',' '); -INSERT INTO entity_versions VALUES(375,77,'2.1','04/30/2011',' '); -INSERT INTO entity_versions VALUES(376,77,'2.2','05/31/2011',' '); -INSERT INTO entity_versions VALUES(377,77,'3.1','07/12/2021',' '); -INSERT INTO entity_versions VALUES(378,77,'3.2','12/31/2012',' '); -INSERT INTO entity_versions VALUES(379,77,'4.1','01/31/2014',' '); -INSERT INTO entity_versions VALUES(380,77,'4.2','02/28/2014',' '); -INSERT INTO entity_versions VALUES(381,77,'5.1','01/31/2015',' '); -INSERT INTO entity_versions VALUES(382,77,'6.1','10/31/2017',' '); -INSERT INTO entity_versions VALUES(383,77,'6.2','04/30/2019',' '); -INSERT INTO entity_versions VALUES(384,77,'6.3','08/30/2019',' '); -INSERT INTO entity_versions VALUES(385,23,'10.7',' ',' '); -INSERT INTO entity_versions VALUES(386,45,'8.3','04/05/2017',' '); -INSERT INTO entity_versions VALUES(387,45,'8.2','10/05/2016',' '); -INSERT INTO entity_versions VALUES(388,45,'8.1','04/20/2016',' '); -INSERT INTO entity_versions VALUES(389,45,'8','11/19/2015',' '); -INSERT INTO entity_versions VALUES(390,45,'7',' ',' '); -INSERT INTO entity_versions VALUES(391,45,'6','02/13/2008',' '); -INSERT INTO entity_versions VALUES(392,45,'5','01/15/2007',' '); -INSERT INTO entity_versions VALUES(393,45,'4','06/15/2002',' '); -INSERT INTO entity_versions VALUES(394,45,'3','09/15/2001',' '); -INSERT INTO entity_versions VALUES(395,45,'2',' ',' '); -INSERT INTO entity_versions VALUES(396,45,'1','01/15/2001',' '); -INSERT INTO entity_versions VALUES(397,220,'4.4','12/31/2002',' '); -INSERT INTO entity_versions VALUES(398,220,'4.5.1','09/30/2003',' '); -INSERT INTO entity_versions VALUES(399,220,'4.6','07/31/2005',' '); -INSERT INTO entity_versions VALUES(400,220,'5','12/31/2007',' '); -INSERT INTO entity_versions VALUES(401,220,'5.1','06/30/2009',' '); -INSERT INTO entity_versions VALUES(402,90,'2.285','03/23/2021',' '); -INSERT INTO entity_versions VALUES(403,90,'2.286','03/30/2021',' '); -INSERT INTO entity_versions VALUES(404,90,'2.287','04/07/2021',' '); -INSERT INTO entity_versions VALUES(405,90,'2.288','04/11/2021',' '); -INSERT INTO entity_versions VALUES(406,90,'2.289','04/20/2021',' '); -INSERT INTO entity_versions VALUES(407,90,'2.29','04/28/2021',' '); -INSERT INTO entity_versions VALUES(408,90,'2.291','05/04/2021',' '); -INSERT INTO entity_versions VALUES(409,90,'2.292','05/11/2021',' '); -INSERT INTO entity_versions VALUES(410,90,'2.293','05/12/2021',' '); -INSERT INTO entity_versions VALUES(411,90,'2.294','05/25/2021',' '); -INSERT INTO entity_versions VALUES(412,90,'2.295','05/25/2021',' '); -INSERT INTO entity_versions VALUES(413,90,'2.296','06/01/2021',' '); -INSERT INTO entity_versions VALUES(414,90,'2.297','06/08/2021',' '); -INSERT INTO entity_versions VALUES(415,90,'2.298','06/15/2021',' '); -INSERT INTO entity_versions VALUES(416,90,'2.299','06/22/2021',' '); -INSERT INTO entity_versions VALUES(417,90,'2.3','06/30/2021',' '); -INSERT INTO entity_versions VALUES(418,90,'2.301','07/06/2021',' '); -INSERT INTO entity_versions VALUES(419,90,'2.302','07/13/2021',' '); -INSERT INTO entity_versions VALUES(420,90,'2.303','07/20/2021',' '); -INSERT INTO entity_versions VALUES(421,90,'2.304','07/27/2021',' '); -INSERT INTO entity_versions VALUES(422,90,'2.305','08/03/2021',' '); -INSERT INTO entity_versions VALUES(423,90,'2.306','08/10/2021',' '); -INSERT INTO entity_versions VALUES(424,90,'2.307','08/17/2021',' '); -INSERT INTO entity_versions VALUES(425,90,'2.308','08/24/2021',' '); -INSERT INTO entity_versions VALUES(426,90,'2.309','08/30/2021',' '); -INSERT INTO entity_versions VALUES(427,90,'2.31','09/07/2021',' '); -INSERT INTO entity_versions VALUES(428,90,'2.311','09/09/2021',' '); -INSERT INTO entity_versions VALUES(429,90,'2.312','09/14/2021',' '); -INSERT INTO entity_versions VALUES(430,90,'2.313','09/21/2021',' '); -INSERT INTO entity_versions VALUES(431,90,'2.314','09/28/2021',' '); -INSERT INTO entity_versions VALUES(432,97,'10','05/31/2019',' '); -INSERT INTO entity_versions VALUES(433,97,'9','12/31/2017',' '); -INSERT INTO entity_versions VALUES(434,97,'8','12/31/2015',' '); -INSERT INTO entity_versions VALUES(435,97,'7','12/31/2013',' '); -INSERT INTO entity_versions VALUES(436,97,'6','12/31/2012',' '); -INSERT INTO entity_versions VALUES(437,97,'5','12/31/2011',' '); -INSERT INTO entity_versions VALUES(438,97,'4.2','12/31/2010',' '); -INSERT INTO entity_versions VALUES(439,97,'4.1','12/31/2009',' '); -INSERT INTO entity_versions VALUES(440,97,'4','12/31/2008',' '); -INSERT INTO entity_versions VALUES(441,97,'3.2','12/31/2007',' '); -INSERT INTO entity_versions VALUES(442,97,'3.1','12/31/2006',' '); -INSERT INTO entity_versions VALUES(443,97,'3','12/31/2005',' '); -INSERT INTO entity_versions VALUES(444,97,'2','12/31/2004',' '); -INSERT INTO entity_versions VALUES(445,97,'1','12/31/2001',' '); -INSERT INTO entity_versions VALUES(446,98,'1.6.12','09/28/2021',' '); -INSERT INTO entity_versions VALUES(447,98,'1.6.11','09/27/2021',' '); -INSERT INTO entity_versions VALUES(448,98,'1.6.10','07/25/2021',' '); -INSERT INTO entity_versions VALUES(449,98,'1.6.9','11/20/2020',' '); -INSERT INTO entity_versions VALUES(450,98,'1.6.8','10/26/2020',' '); -INSERT INTO entity_versions VALUES(451,98,'1.6.7','09/04/2020',' '); -INSERT INTO entity_versions VALUES(452,98,'1.6.6','05/12/2020',' '); -INSERT INTO entity_versions VALUES(453,98,'1.6.5','04/13/2020',' '); -INSERT INTO entity_versions VALUES(454,98,'1.6.4','04/12/2020',' '); -INSERT INTO entity_versions VALUES(455,98,'1.6.3','03/28/2020',' '); -INSERT INTO entity_versions VALUES(456,98,'1.6.2','03/23/2020',' '); -INSERT INTO entity_versions VALUES(457,98,'1.6.1','03/16/2020',' '); -INSERT INTO entity_versions VALUES(458,98,'1.6.0','03/08/2020',' '); -INSERT INTO entity_versions VALUES(459,98,'1.5.22','02/28/2020',' '); -INSERT INTO entity_versions VALUES(460,98,'1.5.21','01/21/2020',' '); -INSERT INTO entity_versions VALUES(461,98,'1.5.20','11/11/2019',' '); -INSERT INTO entity_versions VALUES(462,98,'1.5.19','09/30/2019',' '); -INSERT INTO entity_versions VALUES(463,98,'1.5.18','09/17/2019',' '); -INSERT INTO entity_versions VALUES(464,98,'1.5.17','08/29/2019',' '); -INSERT INTO entity_versions VALUES(465,98,'1.5.16','05/24/2019',' '); -INSERT INTO entity_versions VALUES(466,98,'1.5.15','05/20/2019',' '); -INSERT INTO entity_versions VALUES(467,98,'1.5.14','04/27/2019',' '); -INSERT INTO entity_versions VALUES(468,98,'1.5.13','04/15/2019',' '); -INSERT INTO entity_versions VALUES(469,98,'1.5.12','11/03/2018',' '); -INSERT INTO entity_versions VALUES(470,98,'1.5.11','10/10/2018',' '); -INSERT INTO entity_versions VALUES(471,98,'1.5.10','08/10/2018',' '); -INSERT INTO entity_versions VALUES(472,98,'1.5.9','07/07/2018',' '); -INSERT INTO entity_versions VALUES(473,98,'1.5.8','05/25/2018',' '); -INSERT INTO entity_versions VALUES(474,98,'1.5.7','03/28/2018',' '); -INSERT INTO entity_versions VALUES(475,98,'1.5.6','02/27/2018',' '); -INSERT INTO entity_versions VALUES(476,98,'1.5.5','02/12/2018',' '); -INSERT INTO entity_versions VALUES(477,98,'1.5.4','12/20/2017',' '); -INSERT INTO entity_versions VALUES(478,98,'1.5.3','11/04/2017',' '); -INSERT INTO entity_versions VALUES(479,98,'1.5.2','09/30/2017',' '); -INSERT INTO entity_versions VALUES(480,98,'1.5.1','08/24/2017',' '); -INSERT INTO entity_versions VALUES(481,98,'1.5.0','07/21/2017',' '); -INSERT INTO entity_versions VALUES(482,98,'1.4.39','07/04/2017',' '); -INSERT INTO entity_versions VALUES(483,98,'1.4.38','06/24/2017',' '); -INSERT INTO entity_versions VALUES(484,98,'1.4.37','06/04/2017',' '); -INSERT INTO entity_versions VALUES(485,98,'1.4.36','03/19/2017',' '); -INSERT INTO entity_versions VALUES(486,98,'1.4.35','02/26/2017',' '); -INSERT INTO entity_versions VALUES(487,98,'1.4.34','01/07/2017',' '); -INSERT INTO entity_versions VALUES(488,98,'1.4.33','10/31/2016',' '); -INSERT INTO entity_versions VALUES(489,98,'1.4.32','10/12/2016',' '); -INSERT INTO entity_versions VALUES(490,98,'1.4.31','08/19/2016',' '); -INSERT INTO entity_versions VALUES(491,98,'1.4.30','08/11/2016',' '); -INSERT INTO entity_versions VALUES(492,98,'1.4.29','07/13/2016',' '); -INSERT INTO entity_versions VALUES(493,98,'1.4.28','07/01/2016',' '); -INSERT INTO entity_versions VALUES(494,98,'1.4.27','06/24/2016',' '); -INSERT INTO entity_versions VALUES(495,98,'1.4.26','06/17/2016',' '); -INSERT INTO entity_versions VALUES(496,98,'1.4.25','11/19/2015',' '); -INSERT INTO entity_versions VALUES(497,98,'1.4.24','04/24/2015',' '); -INSERT INTO entity_versions VALUES(498,98,'1.4.23','04/19/2015',' '); -INSERT INTO entity_versions VALUES(499,98,'1.4.22','12/31/2014',' '); -INSERT INTO entity_versions VALUES(500,98,'1.4.21','10/12/2014',' '); -INSERT INTO entity_versions VALUES(501,98,'1.4.20','05/11/2014',' '); -INSERT INTO entity_versions VALUES(502,98,'1.4.19','05/01/2014',' '); -INSERT INTO entity_versions VALUES(503,98,'1.4.18','04/17/2014',' '); -INSERT INTO entity_versions VALUES(504,98,'1.4.17','12/20/2013',' '); -INSERT INTO entity_versions VALUES(505,98,'1.4.16','12/09/2013',' '); -INSERT INTO entity_versions VALUES(506,98,'1.4.15','09/03/2012',' '); -INSERT INTO entity_versions VALUES(507,98,'1.4.14','07/30/2012',' '); -INSERT INTO entity_versions VALUES(508,98,'1.4.13','02/02/2012',' '); -INSERT INTO entity_versions VALUES(509,98,'1.4.12','02/01/2012',' '); -INSERT INTO entity_versions VALUES(510,98,'1.4.11','01/16/2012',' '); -INSERT INTO entity_versions VALUES(511,98,'1.4.10','11/09/2011',' '); -INSERT INTO entity_versions VALUES(512,98,'1.4.9','10/18/2011',' '); -INSERT INTO entity_versions VALUES(513,98,'1.4.8','10/04/2011',' '); -INSERT INTO entity_versions VALUES(514,98,'1.4.7','08/16/2011',' '); -INSERT INTO entity_versions VALUES(515,98,'1.4.6','07/15/2011',' '); -INSERT INTO entity_versions VALUES(516,98,'1.4.5','04/03/2010',' '); -INSERT INTO entity_versions VALUES(517,98,'1.4.4','11/26/2009',' '); -INSERT INTO entity_versions VALUES(518,98,'1.4.3','11/07/2009',' '); -INSERT INTO entity_versions VALUES(519,98,'1.4.2','10/11/2009',' '); -INSERT INTO entity_versions VALUES(520,98,'1.4.1','08/29/2009',' '); -INSERT INTO entity_versions VALUES(521,98,'1.4.0','07/09/2009',' '); -INSERT INTO entity_versions VALUES(522,581,'1','12/31/1989',' '); -INSERT INTO entity_versions VALUES(523,581,'1.1','12/31/1990',' '); -INSERT INTO entity_versions VALUES(524,581,'4.2A','12/31/1992',' '); -INSERT INTO entity_versions VALUES(525,581,'4.2B','12/31/1993',' '); -INSERT INTO entity_versions VALUES(526,581,'4.21','12/31/1993',' '); -INSERT INTO entity_versions VALUES(527,581,'6','12/31/1995',' '); -INSERT INTO entity_versions VALUES(528,581,'6.5','12/31/1996',' '); -INSERT INTO entity_versions VALUES(529,581,'7','12/31/1998',' '); -INSERT INTO entity_versions VALUES(530,581,'8','12/31/2000','04/08/2008'); -INSERT INTO entity_versions VALUES(531,581,'9','01/14/2006','04/12/2011'); -INSERT INTO entity_versions VALUES(532,581,'10','11/06/2008','07/08/2014'); -INSERT INTO entity_versions VALUES(533,581,'10.25','07/02/1905',' '); -INSERT INTO entity_versions VALUES(534,581,'10.5','07/20/2010','07/08/2014'); -INSERT INTO entity_versions VALUES(535,581,'11','05/20/2012','07/11/2017'); -INSERT INTO entity_versions VALUES(536,581,'12','06/05/2014','07/09/2019'); -INSERT INTO entity_versions VALUES(537,581,'13','06/01/2016','07/13/2021'); -INSERT INTO entity_versions VALUES(538,581,'14','09/29/2017','10/11/2022'); -INSERT INTO entity_versions VALUES(539,581,'15','11/04/2019','01/07/2025'); -INSERT INTO entity_versions VALUES(540,116,'4.4','12/31/2020',' '); -INSERT INTO entity_versions VALUES(541,116,'4.2','12/31/2019',' '); -INSERT INTO entity_versions VALUES(542,116,'4','12/31/2018',' '); -INSERT INTO entity_versions VALUES(543,116,'3.6','12/31/2017',' '); -INSERT INTO entity_versions VALUES(544,116,'3.4','12/31/2016',' '); -INSERT INTO entity_versions VALUES(545,116,'3.2','12/31/2015',' '); -INSERT INTO entity_versions VALUES(546,116,'3','12/31/2015',' '); -INSERT INTO entity_versions VALUES(547,116,'2.6','12/31/2014',' '); -INSERT INTO entity_versions VALUES(548,122,'3.19','12/31/1996',' '); -INSERT INTO entity_versions VALUES(549,122,'3.2','01/31/1997',' '); -INSERT INTO entity_versions VALUES(550,122,'3.21','12/31/1998',' '); -INSERT INTO entity_versions VALUES(551,122,'3.22','12/31/1998',' '); -INSERT INTO entity_versions VALUES(552,122,'3.23','06/30/2000',' '); -INSERT INTO entity_versions VALUES(553,122,'4','08/30/2002',' '); -INSERT INTO entity_versions VALUES(554,122,'4.1','06/30/2004',' '); -INSERT INTO entity_versions VALUES(555,122,'5','03/31/2005',' '); -INSERT INTO entity_versions VALUES(556,122,'5.1','11/27/2008',' '); -INSERT INTO entity_versions VALUES(557,122,'5.5','12/31/2010',' '); -INSERT INTO entity_versions VALUES(558,122,'6','05/22/2009',' '); -INSERT INTO entity_versions VALUES(559,122,'5.6','02/28/2013',' '); -INSERT INTO entity_versions VALUES(560,122,'5.7','10/31/2015',' '); -INSERT INTO entity_versions VALUES(561,122,'8','04/30/2018',' '); -INSERT INTO entity_versions VALUES(562,123,'4.3.5','09/30/2021',' '); -INSERT INTO entity_versions VALUES(563,123,'4.3.4','09/22/2021',' '); -INSERT INTO entity_versions VALUES(564,123,'4.3.3','08/09/2021',' '); -INSERT INTO entity_versions VALUES(565,123,'4.3.2','07/01/2021',' '); -INSERT INTO entity_versions VALUES(566,123,'4.3.1','06/21/2021',' '); -INSERT INTO entity_versions VALUES(567,123,'4.2.11','09/06/2021',' '); -INSERT INTO entity_versions VALUES(568,123,'4.2.10','08/23/2020',' '); -INSERT INTO entity_versions VALUES(569,123,'4.2.9','07/02/2021',' '); -INSERT INTO entity_versions VALUES(570,123,'4.2.8','06/18/2021',' '); -INSERT INTO entity_versions VALUES(571,123,'4.2.7','05/27/2021',' '); -INSERT INTO entity_versions VALUES(572,123,'4.2.6','05/05/2021',' '); -INSERT INTO entity_versions VALUES(573,245,'0.7','05/27/2003',' '); -INSERT INTO entity_versions VALUES(574,245,'1','01/03/2004',' '); -INSERT INTO entity_versions VALUES(575,245,'1.2','05/22/2004',' '); -INSERT INTO entity_versions VALUES(576,245,'1.5','02/17/2005',' '); -INSERT INTO entity_versions VALUES(577,245,'2','12/31/2005',' '); -INSERT INTO entity_versions VALUES(578,245,'2.1','01/22/2007',' '); -INSERT INTO entity_versions VALUES(579,245,'2.2','05/16/2007',' '); -INSERT INTO entity_versions VALUES(580,245,'2.3','09/24/2007',' '); -INSERT INTO entity_versions VALUES(581,245,'2.5','03/29/2008',' '); -INSERT INTO entity_versions VALUES(582,245,'2.6','07/15/2008',' '); -INSERT INTO entity_versions VALUES(583,245,'2.7','12/11/2008',' '); -INSERT INTO entity_versions VALUES(584,245,'2.8','06/10/2009',' '); -INSERT INTO entity_versions VALUES(585,245,'2.9','12/19/2009',' '); -INSERT INTO entity_versions VALUES(586,245,'3','06/17/2010',' '); -INSERT INTO entity_versions VALUES(587,245,'3.1','02/23/2011',' '); -INSERT INTO entity_versions VALUES(588,245,'3.2','07/04/2011',' '); -INSERT INTO entity_versions VALUES(589,245,'3.3','12/12/2011',' '); -INSERT INTO entity_versions VALUES(590,245,'3.4','06/13/2012',' '); -INSERT INTO entity_versions VALUES(591,245,'3.5','12/11/2012',' '); -INSERT INTO entity_versions VALUES(592,245,'3.6','08/01/2013',' '); -INSERT INTO entity_versions VALUES(593,245,'3.7','10/24/2013',' '); -INSERT INTO entity_versions VALUES(594,245,'3.8','12/12/2013',' '); -INSERT INTO entity_versions VALUES(595,245,'3.9','04/16/2014',' '); -INSERT INTO entity_versions VALUES(596,245,'4','09/04/2014',' '); -INSERT INTO entity_versions VALUES(597,245,'4.1','12/18/2014',' '); -INSERT INTO entity_versions VALUES(598,245,'4.2','04/23/2015',' '); -INSERT INTO entity_versions VALUES(599,245,'4.3','08/18/2015',' '); -INSERT INTO entity_versions VALUES(600,245,'4.4','12/08/2015',' '); -INSERT INTO entity_versions VALUES(601,245,'4.5','04/12/2016',' '); -INSERT INTO entity_versions VALUES(602,245,'4.6','08/16/2016',' '); -INSERT INTO entity_versions VALUES(603,245,'4.7','12/06/2016',' '); -INSERT INTO entity_versions VALUES(604,245,'4.8','06/08/2017',' '); -INSERT INTO entity_versions VALUES(605,245,'4.9','11/16/2017',' '); -INSERT INTO entity_versions VALUES(606,245,'5','12/06/2018',' '); -INSERT INTO entity_versions VALUES(607,245,'5.1','02/21/2019',' '); -INSERT INTO entity_versions VALUES(608,245,'5.2','05/07/2019',' '); -INSERT INTO entity_versions VALUES(609,245,'5.3','11/12/2019',' '); -INSERT INTO entity_versions VALUES(610,245,'5.4','03/31/2020',' '); -INSERT INTO entity_versions VALUES(611,245,'5.5','08/11/2020',' '); -INSERT INTO entity_versions VALUES(612,245,'5.6','12/08/2020',' '); -INSERT INTO entity_versions VALUES(613,245,'5.7','03/09/2021',' '); -INSERT INTO entity_versions VALUES(614,245,'5.8','07/20/2021',' '); -INSERT INTO entity_versions VALUES(615,258,'3.37.0',' ',' '); -INSERT INTO entity_versions VALUES(616,258,'3.36.0','06/18/2021',' '); -INSERT INTO entity_versions VALUES(617,258,'3.35.5','04/19/2021',' '); -INSERT INTO entity_versions VALUES(618,258,'3.35.4','04/02/2021',' '); -INSERT INTO entity_versions VALUES(619,258,'3.35.3','03/26/2021',' '); -INSERT INTO entity_versions VALUES(620,258,'3.35.2','03/17/2021',' '); -INSERT INTO entity_versions VALUES(621,258,'3.35.1','03/15/2021',' '); -INSERT INTO entity_versions VALUES(622,258,'3.35.0','03/12/2021',' '); -INSERT INTO entity_versions VALUES(623,258,'3.34.1','01/20/2021',' '); -INSERT INTO entity_versions VALUES(624,258,'3.34.0','12/01/2020',' '); -INSERT INTO entity_versions VALUES(625,258,'3.33.0','08/14/2020',' '); -INSERT INTO entity_versions VALUES(626,258,'3.32.3','06/18/2020',' '); -INSERT INTO entity_versions VALUES(627,258,'3.32.2','06/04/2020',' '); -INSERT INTO entity_versions VALUES(628,258,'3.32.1','05/25/2020',' '); -INSERT INTO entity_versions VALUES(629,258,'3.32.0','05/22/2020',' '); -INSERT INTO entity_versions VALUES(630,258,'3.31.1','01/27/2020',' '); -INSERT INTO entity_versions VALUES(631,258,'3.31.0','01/22/2020',' '); -INSERT INTO entity_versions VALUES(632,258,'3.30.1','10/10/2019',' '); -INSERT INTO entity_versions VALUES(633,258,'3.30.0','10/04/2019',' '); -INSERT INTO entity_versions VALUES(634,258,'3.29.0','07/10/2019',' '); -INSERT INTO entity_versions VALUES(635,258,'3.28.0','04/16/2019',' '); -INSERT INTO entity_versions VALUES(636,258,'3.27.2','02/25/2019',' '); -INSERT INTO entity_versions VALUES(637,258,'3.27.1','02/08/2019',' '); -INSERT INTO entity_versions VALUES(638,258,'3.27.0','02/07/2019',' '); -INSERT INTO entity_versions VALUES(639,258,'3.26.0','12/01/2018',' '); -INSERT INTO entity_versions VALUES(640,258,'3.25.3','11/05/2018',' '); -INSERT INTO entity_versions VALUES(641,258,'3.25.2','09/25/2018',' '); -INSERT INTO entity_versions VALUES(642,258,'3.25.1','09/18/2018',' '); -INSERT INTO entity_versions VALUES(643,258,'3.25.0','09/15/2018',' '); -INSERT INTO entity_versions VALUES(644,258,'3.24.0','06/04/2018',' '); -INSERT INTO entity_versions VALUES(645,258,'3.23.1','04/10/2018',' '); -INSERT INTO entity_versions VALUES(646,258,'3.23.0','04/02/2018',' '); -INSERT INTO entity_versions VALUES(647,258,'3.22.0','01/22/2018',' '); -INSERT INTO entity_versions VALUES(648,258,'3.21.0','10/24/2017',' '); -INSERT INTO entity_versions VALUES(649,258,'3.20.1','08/24/2017',' '); -INSERT INTO entity_versions VALUES(650,258,'3.20.0','08/01/2017',' '); -INSERT INTO entity_versions VALUES(651,258,'3.18.2','06/17/2017',' '); -INSERT INTO entity_versions VALUES(652,258,'3.18.1','06/16/2017',' '); -INSERT INTO entity_versions VALUES(653,258,'3.19.3','06/08/2017',' '); -INSERT INTO entity_versions VALUES(654,258,'3.19.2','05/25/2017',' '); -INSERT INTO entity_versions VALUES(655,258,'3.19.1','05/24/2017',' '); -INSERT INTO entity_versions VALUES(656,258,'3.19.0','05/22/2017',' '); -INSERT INTO entity_versions VALUES(657,258,'3.18.0','03/28/2017',' '); -INSERT INTO entity_versions VALUES(658,258,'3.17.0','02/13/2017',' '); -INSERT INTO entity_versions VALUES(659,258,'3.16.2','01/06/2017',' '); -INSERT INTO entity_versions VALUES(660,258,'3.16.1','01/03/2017',' '); -INSERT INTO entity_versions VALUES(661,258,'3.16.0','01/02/2017',' '); -INSERT INTO entity_versions VALUES(662,258,'3.15.2','11/28/2016',' '); -INSERT INTO entity_versions VALUES(663,258,'3.15.1','11/04/2016',' '); -INSERT INTO entity_versions VALUES(664,258,'3.15.0','10/14/2016',' '); -INSERT INTO entity_versions VALUES(665,258,'3.14.2','09/12/2016',' '); -INSERT INTO entity_versions VALUES(666,258,'3.14.1','08/11/2016',' '); -INSERT INTO entity_versions VALUES(667,258,'3.14','08/08/2016',' '); -INSERT INTO entity_versions VALUES(668,258,'3.13.0','05/18/2016',' '); -INSERT INTO entity_versions VALUES(669,258,'3.12.2','04/18/2016',' '); -INSERT INTO entity_versions VALUES(670,258,'3.12.1','04/08/2016',' '); -INSERT INTO entity_versions VALUES(671,258,'3.9.3','03/31/2016',' '); -INSERT INTO entity_versions VALUES(672,258,'3.12.0','03/29/2016',' '); -INSERT INTO entity_versions VALUES(673,258,'3.11.1','03/03/2016',' '); -INSERT INTO entity_versions VALUES(674,258,'3.11.0','02/15/2016',' '); -INSERT INTO entity_versions VALUES(675,258,'3.10.2','01/20/2016',' '); -INSERT INTO entity_versions VALUES(676,258,'3.10.1','01/14/2016',' '); -INSERT INTO entity_versions VALUES(677,258,'3.10.0','01/06/2016',' '); -INSERT INTO entity_versions VALUES(678,258,'3.9.2','11/02/2015',' '); -INSERT INTO entity_versions VALUES(679,258,'3.9.1','10/16/2015',' '); -INSERT INTO entity_versions VALUES(680,258,'3.9.0','10/14/2015',' '); -INSERT INTO entity_versions VALUES(681,258,'3.8.11.1','07/29/2015',' '); -INSERT INTO entity_versions VALUES(682,258,'3.8.11','07/27/2015',' '); -INSERT INTO entity_versions VALUES(683,258,'3.8.10.2','05/20/2015',' '); -INSERT INTO entity_versions VALUES(684,258,'3.8.10.1','05/09/2015',' '); -INSERT INTO entity_versions VALUES(685,258,'3.8.10','05/07/2015',' '); -INSERT INTO entity_versions VALUES(686,258,'3.8.9','04/08/2015',' '); -INSERT INTO entity_versions VALUES(687,258,'3.8.8.3','02/25/2015',' '); -INSERT INTO entity_versions VALUES(688,258,'3.8.8.2','01/30/2015',' '); -INSERT INTO entity_versions VALUES(689,258,'3.8.8.1','01/20/2015',' '); -INSERT INTO entity_versions VALUES(690,258,'3.8.8','01/16/2015',' '); -INSERT INTO entity_versions VALUES(691,258,'3.8.7.4','12/09/2014',' '); -INSERT INTO entity_versions VALUES(692,258,'3.8.7.3','12/05/2014',' '); -INSERT INTO entity_versions VALUES(693,258,'3.8.7.2','11/18/2014',' '); -INSERT INTO entity_versions VALUES(694,258,'3.8.7.1','10/29/2014',' '); -INSERT INTO entity_versions VALUES(695,258,'3.8.6.1','10/22/2014',' '); -INSERT INTO entity_versions VALUES(696,258,'3.8.7','10/17/2014',' '); -INSERT INTO entity_versions VALUES(697,258,'3.8.6','08/15/2014',' '); -INSERT INTO entity_versions VALUES(698,258,'3.8.5','06/04/2014',' '); -INSERT INTO entity_versions VALUES(699,258,'3.8.4.3','04/03/2014',' '); -INSERT INTO entity_versions VALUES(700,258,'3.8.4.2','03/26/2014',' '); -INSERT INTO entity_versions VALUES(701,258,'3.8.4.1','03/11/2014',' '); -INSERT INTO entity_versions VALUES(702,258,'3.8.4','03/10/2014',' '); -INSERT INTO entity_versions VALUES(703,258,'3.8.3.1','02/11/2014',' '); -INSERT INTO entity_versions VALUES(704,258,'3.8.3','02/03/2014',' '); -INSERT INTO entity_versions VALUES(705,258,'3.8.2','12/06/2013',' '); -INSERT INTO entity_versions VALUES(706,258,'3.8.1','10/17/2013',' '); -INSERT INTO entity_versions VALUES(707,258,'3.8.0.2','09/03/2013',' '); -INSERT INTO entity_versions VALUES(708,258,'3.8.0.1','08/29/2013',' '); -INSERT INTO entity_versions VALUES(709,258,'3.8.0','08/26/2013',' '); -INSERT INTO entity_versions VALUES(710,258,'3.7.17','05/20/2013',' '); -INSERT INTO entity_versions VALUES(711,258,'3.7.16.2','04/12/2013',' '); -INSERT INTO entity_versions VALUES(712,258,'3.7.16.1','03/29/2013',' '); -INSERT INTO entity_versions VALUES(713,258,'3.7.16','03/18/2013',' '); -INSERT INTO entity_versions VALUES(714,258,'3.7.15.2','01/09/2013',' '); -INSERT INTO entity_versions VALUES(715,258,'3.7.15.1','12/19/2012',' '); -INSERT INTO entity_versions VALUES(716,258,'3.7.15','12/12/2012',' '); -INSERT INTO entity_versions VALUES(717,258,'3.7.14.1','10/04/2012',' '); -INSERT INTO entity_versions VALUES(718,258,'3.7.14','09/03/2012',' '); -INSERT INTO entity_versions VALUES(719,258,'3.7.13','06/11/2012',' '); -INSERT INTO entity_versions VALUES(720,258,'3.7.12.1','05/22/2012',' '); -INSERT INTO entity_versions VALUES(721,258,'3.7.12','05/14/2012',' '); -INSERT INTO entity_versions VALUES(722,258,'3.7.12','05/14/2012',' '); -INSERT INTO entity_versions VALUES(723,258,'3.7.12','05/14/2012',' '); -INSERT INTO entity_versions VALUES(724,258,'3.7.11','03/20/2012',' '); -INSERT INTO entity_versions VALUES(725,258,'3.7.10','01/16/2012',' '); -INSERT INTO entity_versions VALUES(726,258,'3.7.9','11/01/2011',' '); -INSERT INTO entity_versions VALUES(727,258,'3.7.8','09/19/2011',' '); -INSERT INTO entity_versions VALUES(728,258,'3.7.7.1','06/28/2011',' '); -INSERT INTO entity_versions VALUES(729,258,'3.7.7','06/23/2011',' '); -INSERT INTO entity_versions VALUES(730,258,'3.7.6.3','05/19/2011',' '); -INSERT INTO entity_versions VALUES(731,258,'3.7.6.2','04/17/2011',' '); -INSERT INTO entity_versions VALUES(732,258,'3.7.6.1','04/13/2011',' '); -INSERT INTO entity_versions VALUES(733,258,'3.7.6','04/12/2011',' '); -INSERT INTO entity_versions VALUES(734,258,'3.7.5','02/01/2011',' '); -INSERT INTO entity_versions VALUES(735,258,'3.7.4','12/07/2010',' '); -INSERT INTO entity_versions VALUES(736,258,'3.7.3','10/08/2010',' '); -INSERT INTO entity_versions VALUES(737,258,'3.7.2','08/24/2010',' '); -INSERT INTO entity_versions VALUES(738,258,'3.7.1','08/23/2010',' '); -INSERT INTO entity_versions VALUES(739,258,'3.7.0.1','08/04/2010',' '); -INSERT INTO entity_versions VALUES(740,258,'3.7.0','07/21/2010',' '); -INSERT INTO entity_versions VALUES(741,258,'3.6.23.1','03/26/2010',' '); -INSERT INTO entity_versions VALUES(742,258,'3.6.23','03/09/2010',' '); -INSERT INTO entity_versions VALUES(743,258,'3.6.22','01/06/2010',' '); -INSERT INTO entity_versions VALUES(744,258,'3.6.21','12/07/2009',' '); -INSERT INTO entity_versions VALUES(745,258,'3.6.20','11/04/2009',' '); -INSERT INTO entity_versions VALUES(746,258,'3.6.16.1','10/30/2009',' '); -INSERT INTO entity_versions VALUES(747,258,'3.6.19','10/14/2009',' '); -INSERT INTO entity_versions VALUES(748,258,'3.6.18','09/11/2009',' '); -INSERT INTO entity_versions VALUES(749,258,'3.6.17','08/10/2009',' '); -INSERT INTO entity_versions VALUES(750,258,'3.6.16','06/27/2009',' '); -INSERT INTO entity_versions VALUES(751,258,'3.6.15','06/15/2009',' '); -INSERT INTO entity_versions VALUES(752,258,'3.6.14.2','05/25/2009',' '); -INSERT INTO entity_versions VALUES(753,258,'3.6.14.1','05/19/2009',' '); -INSERT INTO entity_versions VALUES(754,258,'3.6.14','05/07/2009',' '); -INSERT INTO entity_versions VALUES(755,258,'3.6.13','04/13/2009',' '); -INSERT INTO entity_versions VALUES(756,258,'3.6.12','03/31/2009',' '); -INSERT INTO entity_versions VALUES(757,258,'3.6.11','02/18/2009',' '); -INSERT INTO entity_versions VALUES(758,258,'3.6.10','01/15/2009',' '); -INSERT INTO entity_versions VALUES(759,258,'3.6.9','01/14/2009',' '); -INSERT INTO entity_versions VALUES(760,258,'3.6.8','01/12/2009',' '); -INSERT INTO entity_versions VALUES(761,258,'3.6.7','12/16/2008',' '); -INSERT INTO entity_versions VALUES(762,258,'3.6.6.2','11/26/2008',' '); -INSERT INTO entity_versions VALUES(763,258,'3.6.6.1','11/22/2008',' '); -INSERT INTO entity_versions VALUES(764,258,'3.6.6','11/19/2008',' '); -INSERT INTO entity_versions VALUES(765,258,'3.6.5','11/12/2008',' '); -INSERT INTO entity_versions VALUES(766,258,'3.6.4','10/15/2008',' '); -INSERT INTO entity_versions VALUES(767,258,'3.6.3','09/22/2008',' '); -INSERT INTO entity_versions VALUES(768,258,'3.6.2','08/30/2008',' '); -INSERT INTO entity_versions VALUES(769,258,'3.6.1','08/06/2008',' '); -INSERT INTO entity_versions VALUES(770,258,'3.6.0','07/16/2008',' '); -INSERT INTO entity_versions VALUES(771,258,'3.5.9','05/14/2008',' '); -INSERT INTO entity_versions VALUES(772,258,'3.5.8','04/16/2008',' '); -INSERT INTO entity_versions VALUES(773,258,'3.5.7','03/17/2008',' '); -INSERT INTO entity_versions VALUES(774,258,'3.5.6','02/06/2008',' '); -INSERT INTO entity_versions VALUES(775,258,'3.5.5','01/31/2008',' '); -INSERT INTO entity_versions VALUES(776,258,'3.5.4','12/14/2007',' '); -INSERT INTO entity_versions VALUES(777,258,'3.5.3','11/27/2007',' '); -INSERT INTO entity_versions VALUES(778,258,'3.5.2','11/05/2007',' '); -INSERT INTO entity_versions VALUES(779,258,'3.5.1','10/04/2007',' '); -INSERT INTO entity_versions VALUES(780,258,'3.5.0','09/04/2007',' '); -INSERT INTO entity_versions VALUES(781,258,'3.4.2','08/13/2007',' '); -INSERT INTO entity_versions VALUES(782,258,'3.4.1','07/20/2007',' '); -INSERT INTO entity_versions VALUES(783,258,'3.4.0','06/18/2007',' '); -INSERT INTO entity_versions VALUES(784,258,'3.3.17','04/25/2007',' '); -INSERT INTO entity_versions VALUES(785,258,'3.3.16','04/18/2007',' '); -INSERT INTO entity_versions VALUES(786,258,'3.3.15','04/09/2007',' '); -INSERT INTO entity_versions VALUES(787,258,'3.3.14','04/02/2007',' '); -INSERT INTO entity_versions VALUES(788,258,'3.3.13','02/13/2007',' '); -INSERT INTO entity_versions VALUES(789,258,'3.3.12','01/27/2007',' '); -INSERT INTO entity_versions VALUES(790,258,'3.3.11','01/22/2007',' '); -INSERT INTO entity_versions VALUES(791,258,'3.3.10','01/10/2007',' '); -INSERT INTO entity_versions VALUES(792,258,'3.3.9','01/04/2007',' '); -INSERT INTO entity_versions VALUES(793,258,'3.3.8','10/09/2006',' '); -INSERT INTO entity_versions VALUES(794,258,'3.3.7','08/12/2006',' '); -INSERT INTO entity_versions VALUES(795,258,'3.3.6','06/06/2006',' '); -INSERT INTO entity_versions VALUES(796,258,'3.3.5','04/05/2006',' '); -INSERT INTO entity_versions VALUES(797,258,'3.3.4','02/11/2006',' '); -INSERT INTO entity_versions VALUES(798,258,'3.3.3','01/31/2006',' '); -INSERT INTO entity_versions VALUES(799,258,'3.3.2','01/24/2006',' '); -INSERT INTO entity_versions VALUES(800,258,'3.3.1','01/16/2006',' '); -INSERT INTO entity_versions VALUES(801,258,'3.3.0','01/11/2006',' '); -INSERT INTO entity_versions VALUES(802,258,'2.8.17','12/19/2005',' '); -INSERT INTO entity_versions VALUES(803,258,'3.2.8','12/19/2005',' '); -INSERT INTO entity_versions VALUES(804,258,'3.2.7','09/24/2005',' '); -INSERT INTO entity_versions VALUES(805,258,'3.2.6','09/17/2005',' '); -INSERT INTO entity_versions VALUES(806,258,'3.2.5','08/27/2005',' '); -INSERT INTO entity_versions VALUES(807,258,'3.2.4','08/24/2005',' '); -INSERT INTO entity_versions VALUES(808,258,'3.2.3','08/21/2005',' '); -INSERT INTO entity_versions VALUES(809,258,'3.2.2','06/12/2005',' '); -INSERT INTO entity_versions VALUES(810,258,'3.2.1','03/29/2005',' '); -INSERT INTO entity_versions VALUES(811,258,'3.2.0','03/21/2005',' '); -INSERT INTO entity_versions VALUES(812,258,'3.1.6','03/17/2005',' '); -INSERT INTO entity_versions VALUES(813,258,'3.1.5','03/11/2005',' '); -INSERT INTO entity_versions VALUES(814,258,'3.1.4','03/11/2005',' '); -INSERT INTO entity_versions VALUES(815,258,'3.1.3.1','02/28/2005',' '); -INSERT INTO entity_versions VALUES(816,258,'3.1.3','02/20/2005',' '); -INSERT INTO entity_versions VALUES(817,258,'3.1.2','02/15/2005',' '); -INSERT INTO entity_versions VALUES(818,258,'2.8.16','02/15/2005',' '); -INSERT INTO entity_versions VALUES(819,258,'3.1.1','02/01/2005',' '); -INSERT INTO entity_versions VALUES(820,258,'3.1.0','01/21/2005',' '); -INSERT INTO entity_versions VALUES(821,258,'3.0.8','10/12/2004',' '); -INSERT INTO entity_versions VALUES(822,258,'3.0.7','09/18/2004',' '); -INSERT INTO entity_versions VALUES(823,258,'3.0.6','09/02/2004',' '); -INSERT INTO entity_versions VALUES(824,258,'3.0.5','08/29/2004',' '); -INSERT INTO entity_versions VALUES(825,258,'3.0.4','08/09/2004',' '); -INSERT INTO entity_versions VALUES(826,258,'3.0.3','07/22/2004',' '); -INSERT INTO entity_versions VALUES(827,258,'2.8.15','07/22/2004',' '); -INSERT INTO entity_versions VALUES(828,258,'3.0.2','06/30/2004',' '); -INSERT INTO entity_versions VALUES(829,258,'3.0.1','06/22/2004',' '); -INSERT INTO entity_versions VALUES(830,258,'3.0.0','06/18/2004',' '); -INSERT INTO entity_versions VALUES(831,258,'2.8.14','06/09/2004',' '); -INSERT INTO entity_versions VALUES(832,258,'2.8.13','03/08/2004',' '); -INSERT INTO entity_versions VALUES(833,258,'2.8.12','02/08/2004',' '); -INSERT INTO entity_versions VALUES(834,258,'2.8.11','01/14/2004',' '); -INSERT INTO entity_versions VALUES(835,258,'2.8.10','01/14/2004',' '); -INSERT INTO entity_versions VALUES(836,258,'2.8.9','01/06/2004',' '); -INSERT INTO entity_versions VALUES(837,258,'2.8.8','12/18/2003',' '); -INSERT INTO entity_versions VALUES(838,258,'2.8.7','12/04/2003',' '); -INSERT INTO entity_versions VALUES(839,258,'2.8.6','08/22/2003',' '); -INSERT INTO entity_versions VALUES(840,258,'2.8.5','07/22/2003',' '); -INSERT INTO entity_versions VALUES(841,258,'2.8.4','06/29/2003',' '); -INSERT INTO entity_versions VALUES(842,258,'2.8.3','06/04/2003',' '); -INSERT INTO entity_versions VALUES(843,258,'2.8.2','05/17/2003',' '); -INSERT INTO entity_versions VALUES(844,258,'2.8.1','05/17/2003',' '); -INSERT INTO entity_versions VALUES(845,258,'2.8.0','02/16/2003',' '); -INSERT INTO entity_versions VALUES(846,258,'2.7.6','01/25/2003',' '); -INSERT INTO entity_versions VALUES(847,258,'2.7.5','12/28/2002',' '); -INSERT INTO entity_versions VALUES(848,258,'2.7.4','12/17/2002',' '); -INSERT INTO entity_versions VALUES(849,258,'2.7.3','10/31/2002',' '); -INSERT INTO entity_versions VALUES(850,258,'2.7.2','09/25/2002',' '); -INSERT INTO entity_versions VALUES(851,258,'2.7.1','08/31/2002',' '); -INSERT INTO entity_versions VALUES(852,258,'2.7.0','08/25/2002',' '); -INSERT INTO entity_versions VALUES(853,258,'2.6.3','08/13/2002',' '); -INSERT INTO entity_versions VALUES(854,258,'2.6.2','07/31/2002',' '); -INSERT INTO entity_versions VALUES(855,258,'2.6.1','07/19/2002',' '); -INSERT INTO entity_versions VALUES(856,258,'2.6.0','07/18/2002',' '); -INSERT INTO entity_versions VALUES(857,258,'2.5.6','07/07/2002',' '); -INSERT INTO entity_versions VALUES(858,258,'2.5.5','07/06/2002',' '); -INSERT INTO entity_versions VALUES(859,258,'2.5.4','07/01/2002',' '); -INSERT INTO entity_versions VALUES(860,258,'2.5.3','06/25/2002',' '); -INSERT INTO entity_versions VALUES(861,258,'2.5.2','06/25/2002',' '); -INSERT INTO entity_versions VALUES(862,258,'2.5.1','06/19/2002',' '); -INSERT INTO entity_versions VALUES(863,258,'2.5.0','06/17/2002',' '); -INSERT INTO entity_versions VALUES(864,258,'2.4.12','05/10/2002',' '); -INSERT INTO entity_versions VALUES(865,258,'2.4.11','05/08/2002',' '); -INSERT INTO entity_versions VALUES(866,258,'2.4.10','05/03/2002',' '); -INSERT INTO entity_versions VALUES(867,258,'2.4.9','04/22/2002',' '); -INSERT INTO entity_versions VALUES(868,258,'2.4.8','04/20/2002',' '); -INSERT INTO entity_versions VALUES(869,258,'2.4.7','04/12/2002',' '); -INSERT INTO entity_versions VALUES(870,258,'2.4.6','04/02/2002',' '); -INSERT INTO entity_versions VALUES(871,258,'2.4.5','04/02/2002',' '); -INSERT INTO entity_versions VALUES(872,258,'2.4.4','03/30/2002',' '); -INSERT INTO entity_versions VALUES(873,258,'2.4.3','03/23/2002',' '); -INSERT INTO entity_versions VALUES(874,258,'2.4.2','03/20/2002',' '); -INSERT INTO entity_versions VALUES(875,258,'2.4.1','03/13/2002',' '); -INSERT INTO entity_versions VALUES(876,258,'2.4.1','03/13/2002',' '); -INSERT INTO entity_versions VALUES(877,258,'2.4.0','03/11/2002',' '); -INSERT INTO entity_versions VALUES(878,258,'2.3.3','02/19/2002',' '); -INSERT INTO entity_versions VALUES(879,258,'2.3.2','02/14/2002',' '); -INSERT INTO entity_versions VALUES(880,258,'2.3.1','02/13/2002',' '); -INSERT INTO entity_versions VALUES(881,258,'2.3.0','02/03/2002',' '); -INSERT INTO entity_versions VALUES(882,258,'2.2.5','01/28/2002',' '); -INSERT INTO entity_versions VALUES(883,258,'2.2.4','01/22/2002',' '); -INSERT INTO entity_versions VALUES(884,258,'2.2.3','01/16/2002',' '); -INSERT INTO entity_versions VALUES(885,258,'2.2.2','01/14/2002',' '); -INSERT INTO entity_versions VALUES(886,258,'2.2.1','01/09/2002',' '); -INSERT INTO entity_versions VALUES(887,258,'2.2.0','12/22/2001',' '); -INSERT INTO entity_versions VALUES(888,258,'2.1.7','12/15/2001',' '); -INSERT INTO entity_versions VALUES(889,258,'2.1.6','12/14/2001',' '); -INSERT INTO entity_versions VALUES(890,258,'2.1.5','12/06/2001',' '); -INSERT INTO entity_versions VALUES(891,258,'2.1.4','12/05/2001',' '); -INSERT INTO entity_versions VALUES(892,258,'2.1.3','11/24/2001',' '); -INSERT INTO entity_versions VALUES(893,258,'2.1.2','11/23/2001',' '); -INSERT INTO entity_versions VALUES(894,258,'2.1.1','11/13/2001',' '); -INSERT INTO entity_versions VALUES(895,258,'2.1.0','11/12/2001',' '); -INSERT INTO entity_versions VALUES(896,258,'2.0.8','11/04/2001',' '); -INSERT INTO entity_versions VALUES(897,258,'2.0.7','10/22/2001',' '); -INSERT INTO entity_versions VALUES(898,258,'2.0.6','10/19/2001',' '); -INSERT INTO entity_versions VALUES(899,258,'2.0.5','10/15/2001',' '); -INSERT INTO entity_versions VALUES(900,258,'2.0.4','10/13/2001',' '); -INSERT INTO entity_versions VALUES(901,258,'2.0.3','10/13/2001',' '); -INSERT INTO entity_versions VALUES(902,258,'2.0.2','10/09/2001',' '); -INSERT INTO entity_versions VALUES(903,258,'2.0.1','10/02/2001',' '); -INSERT INTO entity_versions VALUES(904,258,'2.0.0','09/28/2001',' '); -INSERT INTO entity_versions VALUES(905,258,'1.0.32','07/23/2001',' '); -INSERT INTO entity_versions VALUES(906,258,'1.0.31','04/15/2001',' '); -INSERT INTO entity_versions VALUES(907,258,'1.0.30','04/06/2001',' '); -INSERT INTO entity_versions VALUES(908,258,'1.0.29','04/05/2001',' '); -INSERT INTO entity_versions VALUES(909,258,'1.0.28','04/04/2001',' '); -INSERT INTO entity_versions VALUES(910,258,'1.0.27','03/20/2001',' '); -INSERT INTO entity_versions VALUES(911,258,'1.0.26','03/20/2001',' '); -INSERT INTO entity_versions VALUES(912,258,'1.0.25','03/15/2001',' '); -INSERT INTO entity_versions VALUES(913,258,'1.0.24','03/14/2001',' '); -INSERT INTO entity_versions VALUES(914,258,'1.0.23','02/20/2001',' '); -INSERT INTO entity_versions VALUES(915,258,'1.0.22','02/19/2001',' '); -INSERT INTO entity_versions VALUES(916,258,'1.0.21','02/19/2001',' '); -INSERT INTO entity_versions VALUES(917,258,'1.0.20','02/11/2001',' '); -INSERT INTO entity_versions VALUES(918,258,'1.0.19','02/06/2001',' '); -INSERT INTO entity_versions VALUES(919,258,'1.0.18','01/04/2001',' '); -INSERT INTO entity_versions VALUES(920,258,'1.0.17','12/10/2000',' '); -INSERT INTO entity_versions VALUES(921,258,'1.0.16','11/28/2000',' '); -INSERT INTO entity_versions VALUES(922,258,'1.0.15','10/23/2000',' '); -INSERT INTO entity_versions VALUES(923,258,'1.0.14','10/19/2000',' '); -INSERT INTO entity_versions VALUES(924,258,'1.0.13','10/19/2000',' '); -INSERT INTO entity_versions VALUES(925,258,'1.0.12','10/17/2000',' '); -INSERT INTO entity_versions VALUES(926,258,'1.0.10','10/11/2000',' '); -INSERT INTO entity_versions VALUES(927,258,'1.0.9','10/09/2000',' '); -INSERT INTO entity_versions VALUES(928,258,'1.0.8','09/30/2000',' '); -INSERT INTO entity_versions VALUES(929,258,'1.0.5','09/14/2000',' '); -INSERT INTO entity_versions VALUES(930,258,'1.0.4','08/28/2000',' '); -INSERT INTO entity_versions VALUES(931,258,'1.0.3','08/22/2000',' '); -INSERT INTO entity_versions VALUES(932,258,'1.0.1','08/18/2000',' '); -INSERT INTO entity_versions VALUES(933,258,'1','08/17/2000',' '); -INSERT INTO entity_versions VALUES(934,14,'18',' ',' '); -INSERT INTO entity_versions VALUES(935,14,'17',' ',' '); -INSERT INTO entity_versions VALUES(936,14,'16',' ',' '); -INSERT INTO entity_versions VALUES(937,14,'13',' ',' '); -INSERT INTO entity_versions VALUES(938,14,'1.2','11/21/2005','11/21/2010'); -INSERT INTO entity_versions VALUES(939,14,'1.4','12/23/2006','04/21/2012'); -INSERT INTO entity_versions VALUES(940,14,'1.6.0','10/01/2008','10/01/2010'); -INSERT INTO entity_versions VALUES(941,14,'1.6.1','04/27/2009','04/27/2011'); -INSERT INTO entity_versions VALUES(942,14,'1.6.2','12/18/2009','04/21/2012'); -INSERT INTO entity_versions VALUES(943,14,'1.8','10/21/2010','10/21/2015'); -INSERT INTO entity_versions VALUES(944,14,'10','12/15/2011','12/15/2013'); -INSERT INTO entity_versions VALUES(945,14,'11','10/25/2012','10/25/2017'); -INSERT INTO entity_versions VALUES(946,14,'12','12/20/2013','12/20/2015'); -INSERT INTO entity_versions VALUES(947,14,'13','10/24/2014','10/24/2019'); -INSERT INTO entity_versions VALUES(948,14,'14','10/01/2015','10/31/2017'); -INSERT INTO entity_versions VALUES(949,14,'15','10/01/2016','10/31/2021'); -INSERT INTO entity_versions VALUES(950,5,'1','02/20/2012',' '); -INSERT INTO entity_versions VALUES(951,5,'4.6.0','09/21/2021',' '); -INSERT INTO entity_versions VALUES(952,319,'1','12/31/1998',' '); -INSERT INTO entity_versions VALUES(953,319,'3','06/08/2017',' '); -INSERT INTO entity_versions VALUES(954,131,'21.1','05/12/2021',' '); -INSERT INTO entity_versions VALUES(955,131,'20.2','10/21/2020',' '); -INSERT INTO entity_versions VALUES(956,131,'20.1','04/23/2020',' '); -INSERT INTO entity_versions VALUES(957,131,'19.2','11/01/2019',' '); -INSERT INTO entity_versions VALUES(958,131,'19.1','03/21/2019',' '); -INSERT INTO entity_versions VALUES(959,131,'18.2','09/28/2018',' '); -INSERT INTO entity_versions VALUES(960,131,'18.1','05/24/2018',' '); -INSERT INTO entity_versions VALUES(961,131,'5.1.4','12/17/2017',' '); -INSERT INTO entity_versions VALUES(962,131,'5.1','12/21/2016',' '); -INSERT INTO entity_versions VALUES(963,19,'9.1.04','12/05/2017',' '); -INSERT INTO entity_versions VALUES(964,19,'9.1.03','06/09/2017',' '); -INSERT INTO entity_versions VALUES(965,19,'9.1.02','12/05/2016',' '); -INSERT INTO entity_versions VALUES(966,19,'9.1.01','06/23/2016',' '); -INSERT INTO entity_versions VALUES(967,19,'9.1.00','12/22/2015',' '); -INSERT INTO entity_versions VALUES(968,170,'1.1','02/21/2012',' '); -INSERT INTO entity_versions VALUES(969,170,'1.4','07/10/2013',' '); -INSERT INTO entity_versions VALUES(970,170,'2','09/02/2014',' '); -INSERT INTO entity_versions VALUES(971,170,'2.1','04/16/2015',' '); -INSERT INTO entity_versions VALUES(972,170,'2.2','11/17/2016',' '); -INSERT INTO entity_versions VALUES(973,170,'2.2.5','04/26/2018',' '); -INSERT INTO entity_versions VALUES(974,8,'2.3.8','01/17/2021',' '); -INSERT INTO entity_versions VALUES(975,8,'2.3.7','04/18/2020',' '); -INSERT INTO entity_versions VALUES(976,8,'3.1.2','08/26/2019',' '); -INSERT INTO entity_versions VALUES(977,8,'2.3.6','08/23/2019',' '); -INSERT INTO entity_versions VALUES(978,8,'2.3.5','05/14/2019',' '); -INSERT INTO entity_versions VALUES(979,8,'2.3.4','11/07/2018',' '); -INSERT INTO entity_versions VALUES(980,8,'3.1.1','11/01/2018',' '); -INSERT INTO entity_versions VALUES(981,8,'3.1.0','07/30/2018',' '); -INSERT INTO entity_versions VALUES(982,8,'3.0.0','05/21/2018',' '); -INSERT INTO entity_versions VALUES(983,8,'2.3.3','04/03/2018',' '); -INSERT INTO entity_versions VALUES(984,8,'2.3.2','11/18/2017',' '); -INSERT INTO entity_versions VALUES(985,8,'2.3.1','08/24/2017',' '); -INSERT INTO entity_versions VALUES(986,8,'2.2.0','07/25/2017',' '); -INSERT INTO entity_versions VALUES(987,8,'2.3.0','07/17/2017',' '); -INSERT INTO entity_versions VALUES(988,8,'1.2.2','04/07/2017',' '); -INSERT INTO entity_versions VALUES(989,8,'2.1.1','12/08/2016',' '); -INSERT INTO entity_versions VALUES(990,8,'2.1.0','06/20/2016',' '); -INSERT INTO entity_versions VALUES(991,8,'2.0.1','05/25/2016',' '); -INSERT INTO entity_versions VALUES(992,8,'2.0.0','02/15/2016',' '); -INSERT INTO entity_versions VALUES(993,8,'1.2.1','06/27/2015',' '); -INSERT INTO entity_versions VALUES(994,8,'1.1.1','05/21/2015',' '); -INSERT INTO entity_versions VALUES(995,8,'1.0.1','05/21/2015',' '); -INSERT INTO entity_versions VALUES(996,8,'0.14.0','11/12/2014',' '); -INSERT INTO entity_versions VALUES(997,8,'0.13.0','04/21/2014',' '); -INSERT INTO entity_versions VALUES(998,8,'0.12.0','10/15/2013',' '); -INSERT INTO entity_versions VALUES(999,8,'0.11.0','05/15/2013',' '); -INSERT INTO entity_versions VALUES(1000,8,'0.10.0','01/11/2013',' '); -INSERT INTO entity_versions VALUES(1001,175,'1','07/02/1905','06/01/2021'); -INSERT INTO entity_versions VALUES(1002,175,'2','06/26/2020',' '); -INSERT INTO entity_versions VALUES(1003,180,'2.1.0','07/06/2020',' '); -INSERT INTO entity_versions VALUES(1004,180,'2.0.1','07/06/2020',' '); -INSERT INTO entity_versions VALUES(1005,180,'1.8.0','07/06/2020',' '); -INSERT INTO entity_versions VALUES(1006,180,'1.7.1','07/06/2020',' '); -INSERT INTO entity_versions VALUES(1007,180,'1.7.0','10/04/2017',' '); -INSERT INTO entity_versions VALUES(1008,180,'1.6.0','04/06/2016',' '); -INSERT INTO entity_versions VALUES(1009,180,'1.5.1','04/06/2016',' '); -INSERT INTO entity_versions VALUES(1010,180,'1.4.0','04/06/2016',' '); -INSERT INTO entity_versions VALUES(1011,180,'1.3.0','04/06/2016',' '); -INSERT INTO entity_versions VALUES(1012,180,'1.2.0','04/06/2016',' '); -INSERT INTO entity_versions VALUES(1013,186,'9.1','07/31/2021',' '); -INSERT INTO entity_versions VALUES(1014,186,'9','06/30/2021',' '); -INSERT INTO entity_versions VALUES(1015,186,'8.9','05/04/2021',' '); -INSERT INTO entity_versions VALUES(1016,168,'6.2.4','08/31/2021',' '); -INSERT INTO entity_versions VALUES(1017,168,'6.0.20','04/30/2021',' '); -INSERT INTO entity_versions VALUES(1018,168,'6.0.12','01/31/2021',' '); -INSERT INTO entity_versions VALUES(1019,168,'6.0.8','09/30/2020',' '); -INSERT INTO entity_versions VALUES(1020,168,'6','05/31/2020',' '); -INSERT INTO entity_versions VALUES(1021,168,'5.6.0','04/30/2020',' '); -INSERT INTO entity_versions VALUES(1022,168,'5.5','04/30/2019',' '); -INSERT INTO entity_versions VALUES(1023,168,'5.4.14','02/28/2020',' '); -INSERT INTO entity_versions VALUES(1024,168,'5.4.10','12/31/2019',' '); -INSERT INTO entity_versions VALUES(1025,168,'5.4.6','07/31/2019',' '); -INSERT INTO entity_versions VALUES(1026,168,'5.4.4','06/30/2019',' '); -INSERT INTO entity_versions VALUES(1027,168,'5.4.2','04/28/2019',' '); -INSERT INTO entity_versions VALUES(1028,168,'5.4','12/31/2018',' '); -INSERT INTO entity_versions VALUES(1029,168,'5.2.2','08/31/2018',' '); -INSERT INTO entity_versions VALUES(1030,168,'5.2','07/31/2018',' '); -INSERT INTO entity_versions VALUES(1031,168,'5.0.2','06/30/2018',' '); -INSERT INTO entity_versions VALUES(1032,168,'5','03/31/2018',' '); -INSERT INTO entity_versions VALUES(1033,168,'4.5','05/31/2017',' '); -INSERT INTO entity_versions VALUES(1034,168,'4.4','12/31/2016',' '); -INSERT INTO entity_versions VALUES(1035,168,'4.3','08/02/2016',' '); -INSERT INTO entity_versions VALUES(1036,168,'4.2.1','10/18/2015',' '); -INSERT INTO entity_versions VALUES(1037,168,'4','06/18/2015',' '); -INSERT INTO entity_versions VALUES(1038,165,'3.9.7','09/24/2021',' '); -INSERT INTO entity_versions VALUES(1039,165,'3.8.23','09/24/2021',' '); -INSERT INTO entity_versions VALUES(1040,165,'3.9.6','09/16/2021',' '); -INSERT INTO entity_versions VALUES(1041,165,'3.9.5','08/30/2021',' '); -INSERT INTO entity_versions VALUES(1042,165,'3.8.22','08/30/2021',' '); -INSERT INTO entity_versions VALUES(1043,165,'3.9.4','08/17/2021',' '); -INSERT INTO entity_versions VALUES(1044,165,'3.9.3','08/12/2021',' '); -INSERT INTO entity_versions VALUES(1045,165,'3.8.21','08/12/2021',' '); -INSERT INTO entity_versions VALUES(1046,165,'3.9.2','08/09/2021',' '); -INSERT INTO entity_versions VALUES(1047,165,'3.8.20','08/09/2021',' '); -INSERT INTO entity_versions VALUES(1048,165,'3.9.1','07/30/2021',' '); -INSERT INTO entity_versions VALUES(1049,165,'3.9.0','07/23/2021',' '); -INSERT INTO entity_versions VALUES(1050,165,'3.8.19','07/05/2021',' '); -INSERT INTO entity_versions VALUES(1051,165,'3.8.18','06/25/2021',' '); -INSERT INTO entity_versions VALUES(1052,165,'3.8.17','06/08/2021',' '); -INSERT INTO entity_versions VALUES(1053,165,'3.8.16','05/04/2021',' '); -INSERT INTO entity_versions VALUES(1054,165,'3.8.15','05/03/2021',' '); -INSERT INTO entity_versions VALUES(1055,165,'3.8.14','03/02/2021',' '); -INSERT INTO entity_versions VALUES(1056,165,'3.8.13','02/27/2021',' '); -INSERT INTO entity_versions VALUES(1057,165,'3.8.12','02/16/2021',' '); -INSERT INTO entity_versions VALUES(1058,165,'3.8.11','01/22/2021',' '); -INSERT INTO entity_versions VALUES(1059,165,'3.8.10','01/19/2021',' '); -INSERT INTO entity_versions VALUES(1060,165,'3.8.9','09/28/2020',' '); -INSERT INTO entity_versions VALUES(1061,165,'3.8.8','09/03/2020',' '); -INSERT INTO entity_versions VALUES(1062,165,'3.8.7','08/17/2020',' '); -INSERT INTO entity_versions VALUES(1063,165,'3.7.28','08/17/2020',' '); -INSERT INTO entity_versions VALUES(1064,165,'3.8.6','08/04/2020',' '); -INSERT INTO entity_versions VALUES(1065,165,'3.7.27','07/25/2020',' '); -INSERT INTO entity_versions VALUES(1066,165,'3.8.5','06/15/2020',' '); -INSERT INTO entity_versions VALUES(1067,165,'3.8.4','05/25/2020',' '); -INSERT INTO entity_versions VALUES(1068,165,'3.7.26','05/04/2020',' '); -INSERT INTO entity_versions VALUES(1069,165,'3.7.25','04/09/2020',' '); -INSERT INTO entity_versions VALUES(1070,165,'3.8.3','03/10/2020',' '); -INSERT INTO entity_versions VALUES(1071,165,'3.7.24','02/13/2020',' '); -INSERT INTO entity_versions VALUES(1072,165,'3.7.23','12/05/2019',' '); -INSERT INTO entity_versions VALUES(1073,165,'3.8.2','12/02/2019',' '); -INSERT INTO entity_versions VALUES(1074,165,'3.7.22','11/27/2019',' '); -INSERT INTO entity_versions VALUES(1075,165,'3.8.1','10/31/2019',' '); -INSERT INTO entity_versions VALUES(1076,165,'3.7.21','10/31/2019',' '); -INSERT INTO entity_versions VALUES(1077,165,'3.7.20','10/25/2019',' '); -INSERT INTO entity_versions VALUES(1078,165,'3.7.19','10/02/2019',' '); -INSERT INTO entity_versions VALUES(1079,165,'3.8.0','10/01/2019',' '); -INSERT INTO entity_versions VALUES(1080,165,'3.7.18','09/18/2019',' '); -INSERT INTO entity_versions VALUES(1081,165,'3.7.17','07/29/2019',' '); -INSERT INTO entity_versions VALUES(1082,165,'3.7.16','07/08/2019',' '); -INSERT INTO entity_versions VALUES(1083,165,'3.7.15','05/20/2019',' '); -INSERT INTO entity_versions VALUES(1084,165,'3.7.14','03/29/2019',' '); -INSERT INTO entity_versions VALUES(1085,165,'3.7.13','03/08/2019',' '); -INSERT INTO entity_versions VALUES(1086,165,'3.7.12','02/15/2019',' '); -INSERT INTO entity_versions VALUES(1087,165,'3.7.11','01/31/2019',' '); -INSERT INTO entity_versions VALUES(1088,165,'3.7.10','01/07/2019',' '); -INSERT INTO entity_versions VALUES(1089,165,'3.7.9','11/16/2018',' '); -INSERT INTO entity_versions VALUES(1090,165,'3.7.8','09/20/2018',' '); -INSERT INTO entity_versions VALUES(1091,165,'3.7.7','07/05/2018',' '); -INSERT INTO entity_versions VALUES(1092,165,'3.7.6','06/13/2018',' '); -INSERT INTO entity_versions VALUES(1093,165,'3.6.16','06/13/2018',' '); -INSERT INTO entity_versions VALUES(1094,165,'3.7.5','05/09/2018',' '); -INSERT INTO entity_versions VALUES(1095,165,'3.7.4','03/08/2018',' '); -INSERT INTO entity_versions VALUES(1096,165,'3.7.3','01/30/2018',' '); -INSERT INTO entity_versions VALUES(1097,165,'3.6.15','01/17/2018',' '); -INSERT INTO entity_versions VALUES(1098,165,'3.7.2','12/23/2017',' '); -INSERT INTO entity_versions VALUES(1099,165,'3.7.1','12/21/2017',' '); -INSERT INTO entity_versions VALUES(1100,165,'3.7.0','11/29/2017',' '); -INSERT INTO entity_versions VALUES(1101,165,'3.6.14','11/07/2017',' '); -INSERT INTO entity_versions VALUES(1102,165,'3.6.13','11/06/2017',' '); -INSERT INTO entity_versions VALUES(1103,165,'3.6.12','09/11/2017',' '); -INSERT INTO entity_versions VALUES(1104,165,'3.6.11','08/16/2017',' '); -INSERT INTO entity_versions VALUES(1105,165,'3.6.10','05/25/2017',' '); -INSERT INTO entity_versions VALUES(1106,165,'3.6.9','03/29/2017',' '); -INSERT INTO entity_versions VALUES(1107,165,'3.6.8','03/17/2017',' '); -INSERT INTO entity_versions VALUES(1108,165,'3.6.7','03/15/2017',' '); -INSERT INTO entity_versions VALUES(1109,165,'3.6.6','11/21/2016',' '); -INSERT INTO entity_versions VALUES(1110,165,'3.5.8','11/21/2016',' '); -INSERT INTO entity_versions VALUES(1111,165,'3.6.5','08/05/2016',' '); -INSERT INTO entity_versions VALUES(1112,165,'3.6.4','07/29/2016',' '); -INSERT INTO entity_versions VALUES(1113,165,'3.6.3','07/06/2016',' '); -INSERT INTO entity_versions VALUES(1114,165,'3.6.2','05/19/2016',' '); -INSERT INTO entity_versions VALUES(1115,165,'3.6.1','03/01/2016',' '); -INSERT INTO entity_versions VALUES(1116,165,'3.6.0','12/22/2015',' '); -INSERT INTO entity_versions VALUES(1117,165,'3.5.7','12/15/2015',' '); -INSERT INTO entity_versions VALUES(1118,165,'3.5.6','10/07/2015',' '); -INSERT INTO entity_versions VALUES(1119,165,'3.5.5','09/24/2015',' '); -INSERT INTO entity_versions VALUES(1120,165,'3.5.4','07/22/2015',' '); -INSERT INTO entity_versions VALUES(1121,165,'3.5.3','05/22/2015',' '); -INSERT INTO entity_versions VALUES(1122,165,'3.5.2','05/12/2015',' '); -INSERT INTO entity_versions VALUES(1123,165,'3.5.1','04/03/2015',' '); -INSERT INTO entity_versions VALUES(1124,165,'3.5.0','03/11/2015',' '); -INSERT INTO entity_versions VALUES(1125,165,'3.4.4','02/11/2015',' '); -INSERT INTO entity_versions VALUES(1126,165,'3.4.3','01/07/2015',' '); -INSERT INTO entity_versions VALUES(1127,165,'3.4.2','11/26/2014',' '); -INSERT INTO entity_versions VALUES(1128,165,'3.4.1','10/29/2014',' '); -INSERT INTO entity_versions VALUES(1129,165,'3.4.0','10/21/2014',' '); -INSERT INTO entity_versions VALUES(1130,165,'3.3.5','08/11/2014',' '); -INSERT INTO entity_versions VALUES(1131,165,'3.3.4','06/24/2014',' '); -INSERT INTO entity_versions VALUES(1132,165,'3.3.3','06/17/2014',' '); -INSERT INTO entity_versions VALUES(1133,165,'3.3.2','06/09/2014',' '); -INSERT INTO entity_versions VALUES(1134,165,'3.3.1','04/29/2014',' '); -INSERT INTO entity_versions VALUES(1135,165,'3.3.0','04/02/2014',' '); -INSERT INTO entity_versions VALUES(1136,165,'3.2.4','03/04/2014',' '); -INSERT INTO entity_versions VALUES(1137,165,'3.2.3','01/23/2014',' '); -INSERT INTO entity_versions VALUES(1138,165,'3.2.2','12/11/2013',' '); -INSERT INTO entity_versions VALUES(1139,165,'3.2.1','11/07/2013',' '); -INSERT INTO entity_versions VALUES(1140,165,'3.2.0','10/23/2013',' '); -INSERT INTO entity_versions VALUES(1141,165,'3.1.5','08/15/2013',' '); -INSERT INTO entity_versions VALUES(1142,165,'3.1.4','08/07/2013',' '); -INSERT INTO entity_versions VALUES(1143,165,'3.1.3','06/26/2013',' '); -INSERT INTO entity_versions VALUES(1144,165,'3.1.2','06/24/2013',' '); -INSERT INTO entity_versions VALUES(1145,165,'3.1.1','05/21/2013',' '); -INSERT INTO entity_versions VALUES(1146,165,'3.1.0','05/01/2013',' '); -INSERT INTO entity_versions VALUES(1147,165,'3.0.4','03/12/2013',' '); -INSERT INTO entity_versions VALUES(1148,165,'3.0.3','03/06/2013',' '); -INSERT INTO entity_versions VALUES(1149,165,'3.0.2','01/31/2013',' '); -INSERT INTO entity_versions VALUES(1150,165,'3.0.1','12/11/2012',' '); -INSERT INTO entity_versions VALUES(1151,165,'3.0.0','11/19/2012',' '); -INSERT INTO entity_versions VALUES(1152,165,'2.8.7','09/27/2012',' '); -INSERT INTO entity_versions VALUES(1153,165,'2.8.6','08/22/2012',' '); -INSERT INTO entity_versions VALUES(1154,165,'2.8.5','08/02/2012',' '); -INSERT INTO entity_versions VALUES(1155,165,'2.8.4','06/22/2012',' '); -INSERT INTO entity_versions VALUES(1156,165,'2.8.3','06/21/2012',' '); -INSERT INTO entity_versions VALUES(1157,165,'2.8.2','04/30/2012',' '); -INSERT INTO entity_versions VALUES(1158,165,'2.8.1','03/22/2012',' '); -INSERT INTO entity_versions VALUES(1159,165,'2.8.0','03/19/2012',' '); -INSERT INTO entity_versions VALUES(1160,165,'2.7.1','12/20/2011',' '); -INSERT INTO entity_versions VALUES(1161,165,'2.7.0','11/09/2011',' '); -INSERT INTO entity_versions VALUES(1162,165,'2.6.1','09/12/2011',' '); -INSERT INTO entity_versions VALUES(1163,165,'2.6.0','08/31/2011',' '); -INSERT INTO entity_versions VALUES(1164,165,'2.5.1','06/27/2011',' '); -INSERT INTO entity_versions VALUES(1165,165,'2.5.0','06/14/2011',' '); -INSERT INTO entity_versions VALUES(1166,165,'2.4.1','04/07/2011',' '); -INSERT INTO entity_versions VALUES(1167,165,'2.4.0','03/23/2011',' '); -INSERT INTO entity_versions VALUES(1168,165,'2.3.1','02/03/2011',' '); -INSERT INTO entity_versions VALUES(1169,165,'2.3.0','02/02/2011',' '); -INSERT INTO entity_versions VALUES(1170,165,'2.2.0','11/30/2010',' '); -INSERT INTO entity_versions VALUES(1171,165,'2.1.1','10/20/2010',' '); -INSERT INTO entity_versions VALUES(1172,165,'2.1.0','09/15/2010',' '); -INSERT INTO entity_versions VALUES(1173,165,'2.0.0','08/25/2010',' '); -INSERT INTO entity_versions VALUES(1174,165,'1.8.1','07/15/2010',' '); -INSERT INTO entity_versions VALUES(1175,165,'1.8.0','06/16/2010',' '); -INSERT INTO entity_versions VALUES(1176,165,'1.7.2','02/16/2010',' '); -INSERT INTO entity_versions VALUES(1177,165,'1.7.1','01/25/2010',' '); -INSERT INTO entity_versions VALUES(1178,165,'1.7.0','10/07/2009',' '); -INSERT INTO entity_versions VALUES(1179,165,'1.6.0','06/17/2009',' '); -INSERT INTO entity_versions VALUES(1180,165,'1.5.5','05/30/2009',' '); -INSERT INTO entity_versions VALUES(1181,165,'1.5.4','04/06/2009',' '); -INSERT INTO entity_versions VALUES(1182,165,'1.5.3','02/24/2009',' '); -INSERT INTO entity_versions VALUES(1183,165,'1.5.1','01/21/2009',' '); -INSERT INTO entity_versions VALUES(1184,165,'1.5.0','12/18/2008',' '); -INSERT INTO entity_versions VALUES(1185,165,'1.4.0','07/30/2008',' '); -INSERT INTO entity_versions VALUES(1186,165,'1.3.0','04/01/2008',' '); -INSERT INTO entity_versions VALUES(1187,165,'1.2.0','09/27/2007',' '); -INSERT INTO entity_versions VALUES(1188,165,'1.1.1','08/29/2007',' '); -INSERT INTO entity_versions VALUES(1189,165,'1.1.0','08/01/2007',' '); -INSERT INTO entity_versions VALUES(1190,165,'1.0.0','02/08/2007',' '); -INSERT INTO entity_versions VALUES(1191,9,'3.0.0','09/21/2021',' '); -INSERT INTO entity_versions VALUES(1192,9,'2.8.1','09/18/2021',' '); -INSERT INTO entity_versions VALUES(1193,9,'2.8.0','04/19/2021',' '); -INSERT INTO entity_versions VALUES(1194,9,'2.7.1','05/10/2020',' '); -INSERT INTO entity_versions VALUES(1195,9,'2.7.0','12/21/2020',' '); -INSERT INTO entity_versions VALUES(1196,9,'2.6.2','04/20/2021',' '); -INSERT INTO entity_versions VALUES(1197,9,'2.6.1','01/07/2021',' '); -INSERT INTO entity_versions VALUES(1198,9,'2.6.0','08/03/2020',' '); -INSERT INTO entity_versions VALUES(1199,9,'2.5.1','08/10/2020',' '); -INSERT INTO entity_versions VALUES(1200,9,'2.5.0','04/15/2020',' '); -INSERT INTO entity_versions VALUES(1201,9,'2.4.1','03/12/2020',' '); -INSERT INTO entity_versions VALUES(1202,9,'2.4.0','12/16/2019',' '); -INSERT INTO entity_versions VALUES(1203,9,'2.3.1','08/24/2019',' '); -INSERT INTO entity_versions VALUES(1204,9,'2.3.0','06/25/2019',' '); -INSERT INTO entity_versions VALUES(1205,9,'2.2.2','12/01/2019',' '); -INSERT INTO entity_versions VALUES(1206,9,'2.2.1','06/01/2019',' '); -INSERT INTO entity_versions VALUES(1207,9,'2.2.0','03/22/2019',' '); -INSERT INTO entity_versions VALUES(1208,9,'2.1.1','02/15/2019',' '); -INSERT INTO entity_versions VALUES(1209,9,'2.1.0','11/20/2018',' '); -INSERT INTO entity_versions VALUES(1210,9,'2.0.1','11/09/2018',' '); -INSERT INTO entity_versions VALUES(1211,9,'2.0.0','06/30/2018',' '); -INSERT INTO entity_versions VALUES(1212,9,'1.1.1','07/19/2018',' '); -INSERT INTO entity_versions VALUES(1213,9,'1.1.0','03/28/2018',' '); -INSERT INTO entity_versions VALUES(1214,9,'1.0.2','07/08/2018',' '); -INSERT INTO entity_versions VALUES(1215,9,'1.0.1','03/05/2018',' '); -INSERT INTO entity_versions VALUES(1216,9,'1.0.0','11/01/2017',' '); -INSERT INTO entity_versions VALUES(1217,9,'0.11.0','06/28/2017',' '); -INSERT INTO entity_versions VALUES(1218,9,'0.10.0','05/22/2016',' '); -INSERT INTO entity_versions VALUES(1219,9,'0.9.0','11/23/2015',' '); -INSERT INTO entity_versions VALUES(1220,9,'0.8.0','03/12/2014',' '); -INSERT INTO entity_versions VALUES(1221,9,'0.7.0','01/04/2012',' '); -INSERT INTO entity_versions VALUES(1222,157,'6','01/29/1997',' '); -INSERT INTO entity_versions VALUES(1223,157,'6.1','06/08/1997',' '); -INSERT INTO entity_versions VALUES(1224,157,'6.2','10/02/1997',' '); -INSERT INTO entity_versions VALUES(1225,157,'6.3','03/01/1998','03/01/2003'); -INSERT INTO entity_versions VALUES(1226,157,'6.4','10/30/1998','10/30/2003'); -INSERT INTO entity_versions VALUES(1227,157,'6.5','06/09/1999','06/09/2004'); -INSERT INTO entity_versions VALUES(1228,157,'7','05/08/2000','05/08/2004'); -INSERT INTO entity_versions VALUES(1229,157,'7.1','04/13/2001','04/13/2006'); -INSERT INTO entity_versions VALUES(1230,157,'7.2','02/04/2002','02/04/2007'); -INSERT INTO entity_versions VALUES(1231,157,'7.3','11/27/2002','11/27/2007'); -INSERT INTO entity_versions VALUES(1232,157,'7.4','11/17/2003','10/01/2010'); -INSERT INTO entity_versions VALUES(1233,157,'8','01/19/2005','10/01/2010'); -INSERT INTO entity_versions VALUES(1234,157,'8.1','11/08/2005','11/08/2010'); -INSERT INTO entity_versions VALUES(1235,157,'8.2','12/05/2006','12/05/2011'); -INSERT INTO entity_versions VALUES(1236,157,'8.3','02/04/2008','02/07/2013'); -INSERT INTO entity_versions VALUES(1237,157,'8.4','07/01/2009','07/24/2014'); -INSERT INTO entity_versions VALUES(1238,157,'9','09/20/2010','10/08/2015'); -INSERT INTO entity_versions VALUES(1239,157,'9.1','09/12/2011','10/27/2016'); -INSERT INTO entity_versions VALUES(1240,157,'9.2','09/10/2012','11/09/2017'); -INSERT INTO entity_versions VALUES(1241,157,'9.3','09/09/2013','11/08/2018'); -INSERT INTO entity_versions VALUES(1242,157,'9.4','12/18/2014','02/13/2020'); -INSERT INTO entity_versions VALUES(1243,157,'9.5','01/07/2016','02/11/2021'); -INSERT INTO entity_versions VALUES(1244,157,'9.6','09/29/2016','11/11/2021'); -INSERT INTO entity_versions VALUES(1245,157,'10','10/05/2017','11/10/2022'); -INSERT INTO entity_versions VALUES(1246,157,'11','10/18/2018','11/09/2023'); -INSERT INTO entity_versions VALUES(1247,157,'12','10/03/2019','11/14/2024'); -INSERT INTO entity_versions VALUES(1248,157,'13','09/24/2020','11/13/2025'); -INSERT INTO entity_versions VALUES(1249,157,'14','09/30/2021','11/12/2026'); -INSERT INTO entity_versions VALUES(1250,21,'1.0','03/01/2005',' '); -INSERT INTO entity_versions VALUES(1251,21,'1','06/06/2005',' '); -INSERT INTO entity_versions VALUES(1252,21,'1.0.1','07/31/2005',' '); -INSERT INTO entity_versions VALUES(1253,21,'2','01/23/2006',' '); -INSERT INTO entity_versions VALUES(1254,21,'2.0.1','02/22/2006',' '); -INSERT INTO entity_versions VALUES(1255,21,'2.1','06/28/2006',' '); -INSERT INTO entity_versions VALUES(1256,21,'2.0.2','08/04/2006',' '); -INSERT INTO entity_versions VALUES(1257,21,'2.1.1','09/26/2006',' '); -INSERT INTO entity_versions VALUES(1258,21,'2.1.2','02/27/2007',' '); -INSERT INTO entity_versions VALUES(1259,21,'2.1.3','07/05/2007',' '); -INSERT INTO entity_versions VALUES(1260,21,'2.2','06/28/2007',' '); -INSERT INTO entity_versions VALUES(1261,21,'2.2.1','10/02/2007',' '); -INSERT INTO entity_versions VALUES(1262,21,'2.2.1.1','11/01/2007',' '); -INSERT INTO entity_versions VALUES(1263,21,'2.2.2','02/27/2008',' '); -INSERT INTO entity_versions VALUES(1264,21,'2.3','06/25/2008',' '); -INSERT INTO entity_versions VALUES(1265,21,'2.3.1','09/24/2008',' '); -INSERT INTO entity_versions VALUES(1266,21,'2.3.2','02/25/2009',' '); -INSERT INTO entity_versions VALUES(1267,21,'2.5','06/24/2009',' '); -INSERT INTO entity_versions VALUES(1268,21,'2.5.1','09/25/2009',' '); -INSERT INTO entity_versions VALUES(1269,21,'2.5.2','02/28/2010',' '); -INSERT INTO entity_versions VALUES(1270,21,'2.6','06/24/2010',' '); -INSERT INTO entity_versions VALUES(1271,21,'2.6.1','09/17/2010',' '); -INSERT INTO entity_versions VALUES(1272,21,'2.6.2','02/25/2011',' '); -INSERT INTO entity_versions VALUES(1273,21,'3.7','06/22/2011',' '); -INSERT INTO entity_versions VALUES(1274,21,'3.7.1','09/23/2011',' '); -INSERT INTO entity_versions VALUES(1275,21,'3.7.2','02/24/2012',' '); -INSERT INTO entity_versions VALUES(1276,21,'4.2.0','06/27/2012',' '); -INSERT INTO entity_versions VALUES(1277,21,'4.2.1','09/28/2012',' '); -INSERT INTO entity_versions VALUES(1278,21,'4.2.2','02/22/2013',' '); -INSERT INTO entity_versions VALUES(1279,21,'4.3','06/26/2013',' '); -INSERT INTO entity_versions VALUES(1280,21,'4.3.1','09/27/2013',' '); -INSERT INTO entity_versions VALUES(1281,21,'4.3.2','02/28/2014',' '); -INSERT INTO entity_versions VALUES(1282,21,'4.4.0','06/25/2014',' '); -INSERT INTO entity_versions VALUES(1283,21,'4.4.1','09/26/2014',' '); -INSERT INTO entity_versions VALUES(1284,21,'4.4.2','02/27/2015',' '); -INSERT INTO entity_versions VALUES(1285,21,'4.5.0','06/24/2015',' '); -INSERT INTO entity_versions VALUES(1286,21,'4.6.0','06/22/2016',' '); -INSERT INTO entity_versions VALUES(1287,21,'4.7.0','06/28/2017',' '); -INSERT INTO entity_versions VALUES(1288,21,'4.8.0','06/27/2018',' '); -INSERT INTO entity_versions VALUES(1289,21,'4.9.0','06/16/2021',' '); -INSERT INTO entity_versions VALUES(1290,55,'94','09/21/2021',' '); -INSERT INTO entity_versions VALUES(1291,55,'93','08/31/2021',' '); -INSERT INTO entity_versions VALUES(1292,55,'92','06/20/2021',' '); -INSERT INTO entity_versions VALUES(1293,55,'91','05/25/2021',' '); -INSERT INTO entity_versions VALUES(1294,55,'90','04/14/2021',' '); -INSERT INTO entity_versions VALUES(1295,55,'89','03/09/2021',' '); -INSERT INTO entity_versions VALUES(1296,55,'88','01/19/2021',' '); -INSERT INTO entity_versions VALUES(1297,55,'87','11/17/2020',' '); -INSERT INTO entity_versions VALUES(1298,55,'86','10/06/2020',' '); -INSERT INTO entity_versions VALUES(1299,55,'85','08/25/2020',' '); -INSERT INTO entity_versions VALUES(1300,55,'84','07/14/2020',' '); -INSERT INTO entity_versions VALUES(1301,55,'83','05/19/2020',' '); -INSERT INTO entity_versions VALUES(1302,55,'81','04/07/2020',' '); -INSERT INTO entity_versions VALUES(1303,55,'80','02/04/2020',' '); -INSERT INTO entity_versions VALUES(1304,55,'79','12/11/2019',' '); -INSERT INTO entity_versions VALUES(1305,55,'78','10/22/2019',' '); -INSERT INTO entity_versions VALUES(1306,55,'77','09/10/2019',' '); -INSERT INTO entity_versions VALUES(1307,55,'76','06/30/2019',' '); -INSERT INTO entity_versions VALUES(1308,55,'75','06/04/2019',' '); -INSERT INTO entity_versions VALUES(1309,55,'74','04/23/2019',' '); -INSERT INTO entity_versions VALUES(1310,55,'73','03/12/2019',' '); -INSERT INTO entity_versions VALUES(1311,55,'72','01/29/2019',' '); -INSERT INTO entity_versions VALUES(1312,55,'71','12/04/2018',' '); -INSERT INTO entity_versions VALUES(1313,55,'70','10/16/2018',' '); -INSERT INTO entity_versions VALUES(1314,55,'69','09/04/2018',' '); -INSERT INTO entity_versions VALUES(1315,55,'68','07/24/2018',' '); -INSERT INTO entity_versions VALUES(1316,55,'67','05/29/2018',' '); -INSERT INTO entity_versions VALUES(1317,55,'66','04/17/2018',' '); -INSERT INTO entity_versions VALUES(1318,55,'65','03/06/2018',' '); -INSERT INTO entity_versions VALUES(1319,55,'64','01/23/2018',' '); -INSERT INTO entity_versions VALUES(1320,55,'63','12/05/2017',' '); -INSERT INTO entity_versions VALUES(1321,55,'62','10/17/2017',' '); -INSERT INTO entity_versions VALUES(1322,55,'61','09/05/2017',' '); -INSERT INTO entity_versions VALUES(1323,55,'60','07/25/2017',' '); -INSERT INTO entity_versions VALUES(1324,55,'59','05/30/2017',' '); -INSERT INTO entity_versions VALUES(1325,55,'58','04/18/2017',' '); -INSERT INTO entity_versions VALUES(1326,55,'57','03/07/2017',' '); -INSERT INTO entity_versions VALUES(1327,150,'9.3','12/31/2022',' '); -INSERT INTO entity_versions VALUES(1328,150,'9.2','08/31/2021',' '); -INSERT INTO entity_versions VALUES(1329,150,'9.1','10/31/2020','08/01/2022'); -INSERT INTO entity_versions VALUES(1330,150,'9.0','02/28/2020','10/01/2021'); -INSERT INTO entity_versions VALUES(1331,150,'8.3','07/31/2019','07/01/2023'); -INSERT INTO entity_versions VALUES(1332,150,'8.2','11/30/2018','02/01/2021'); -INSERT INTO entity_versions VALUES(1333,150,'8.1','05/31/2018','02/01/2021'); -INSERT INTO entity_versions VALUES(1334,150,'8.0','11/30/2017','02/01/2021'); -INSERT INTO entity_versions VALUES(1335,150,'7.1','04/30/2017','02/01/2021'); -INSERT INTO entity_versions VALUES(1336,27,'20210923171324','09/30/2021',' '); -INSERT INTO entity_versions VALUES(1337,27,'20210907035717','10/30/2021',' '); -INSERT INTO entity_versions VALUES(1338,27,'20210824134201','08/30/2021',' '); -INSERT INTO entity_versions VALUES(1339,27,'20210813114337','08/30/2021',' '); -INSERT INTO entity_versions VALUES(1340,27,'20210727104144','08/30/2021',' '); -INSERT INTO entity_versions VALUES(1341,27,'20210720135142','07/30/2021',' '); -INSERT INTO entity_versions VALUES(1342,27,'20210713164523','07/30/2021',' '); -INSERT INTO entity_versions VALUES(1343,27,'20210629161835','07/30/2021',' '); -INSERT INTO entity_versions VALUES(1344,27,'20210616033549','06/30/2021',' '); -INSERT INTO entity_versions VALUES(1345,27,'20210601124849','06/30/2021',' '); -INSERT INTO entity_versions VALUES(1346,27,'20210526024943','05/30/2021',' '); -INSERT INTO entity_versions VALUES(1347,27,'20210518074441','05/30/2021',' '); -INSERT INTO entity_versions VALUES(1348,27,'20210504084406','05/30/2021',' '); -INSERT INTO entity_versions VALUES(1349,27,'20210420090302','04/30/2021',' '); -INSERT INTO entity_versions VALUES(1350,27,'20210406040048','04/30/2021',' '); -INSERT INTO entity_versions VALUES(1351,27,'20210324172345','03/30/2021',' '); -INSERT INTO entity_versions VALUES(1352,27,'20210309093358','03/30/2021',' '); -INSERT INTO entity_versions VALUES(1353,27,'20210219171521','03/30/2021',' '); -INSERT INTO entity_versions VALUES(1354,27,'20210129162733','02/28/2021',' '); -INSERT INTO entity_versions VALUES(1355,27,'20210125155346','01/30/2021',' '); -INSERT INTO entity_versions VALUES(1356,27,'20210112001354','01/30/2021',' '); -INSERT INTO entity_versions VALUES(1357,27,'20201230192246','01/30/2021',' '); -INSERT INTO entity_versions VALUES(1358,27,'20201127104018','12/30/2020',' '); -INSERT INTO entity_versions VALUES(1359,27,'20201106153948','11/30/2020',' '); -INSERT INTO entity_versions VALUES(1360,27,'20201020140427','11/30/2020',' '); -INSERT INTO entity_versions VALUES(1361,27,'20201012185603','10/30/2020',' '); -INSERT INTO entity_versions VALUES(1362,27,'20201005173827','10/30/2020',' '); -INSERT INTO entity_versions VALUES(1363,27,'20200922182722','09/30/2020',' '); -INSERT INTO entity_versions VALUES(1364,27,'20200908235050','09/30/2020',' '); -INSERT INTO entity_versions VALUES(1365,27,'20200831163517','09/30/2020',' '); -INSERT INTO entity_versions VALUES(1366,27,'20200816214709','08/30/2020',' '); -INSERT INTO entity_versions VALUES(1367,27,'20200811175306','08/30/2020',' '); -INSERT INTO entity_versions VALUES(1368,27,'20200807155122','08/30/2020',' '); -INSERT INTO entity_versions VALUES(1369,27,'20200728181447','07/30/2020',' '); -INSERT INTO entity_versions VALUES(1370,27,'20200707173044','07/30/2020',' '); -INSERT INTO entity_versions VALUES(1371,27,'20200701215317','07/30/2020',' '); -INSERT INTO entity_versions VALUES(1372,27,'20200617215626','06/30/2020',' '); -INSERT INTO entity_versions VALUES(1373,27,'20200610173731','06/30/2020',' '); -INSERT INTO entity_versions VALUES(1374,27,'20200603114954','06/30/2020',' '); -INSERT INTO entity_versions VALUES(1375,27,'20200529133631','06/30/2020',' '); -INSERT INTO entity_versions VALUES(1376,27,'20200520145933','05/30/2020',' '); -INSERT INTO entity_versions VALUES(1377,27,'20200513205422','05/30/2020',' '); -INSERT INTO entity_versions VALUES(1378,27,'20200506172513','05/30/2020',' '); -INSERT INTO entity_versions VALUES(1379,27,'20200429153636','05/30/2020',' '); -INSERT INTO entity_versions VALUES(1380,27,'20200420162758','04/30/2020',' '); -INSERT INTO entity_versions VALUES(1381,27,'20200416222158','04/30/2020',' '); -INSERT INTO entity_versions VALUES(1382,27,'20200408145843','04/30/2020',' '); -INSERT INTO entity_versions VALUES(1383,27,'20200325163209','03/30/2020',' '); -INSERT INTO entity_versions VALUES(1384,27,'20200316122114','03/30/2020',' '); -INSERT INTO entity_versions VALUES(1385,27,'20200310163217','03/30/2020',' '); -INSERT INTO entity_versions VALUES(1386,27,'20200303183409','03/30/2020',' '); -INSERT INTO entity_versions VALUES(1387,27,'20200220011437','02/28/2020',' '); -INSERT INTO entity_versions VALUES(1388,27,'20200131232134','02/28/2020',' '); -INSERT INTO entity_versions VALUES(1389,27,'20200127203438','02/28/2020',' '); -INSERT INTO entity_versions VALUES(1390,27,'20200123225613','01/30/2020',' '); -INSERT INTO entity_versions VALUES(1391,27,'20200115001116','01/30/2020',' '); -INSERT INTO entity_versions VALUES(1392,27,'20191211163405','12/30/2019',' '); -INSERT INTO entity_versions VALUES(1393,27,'20191129172405','12/30/2019',' '); -INSERT INTO entity_versions VALUES(1394,27,'20191104205453','11/30/2019',' '); -INSERT INTO entity_versions VALUES(1395,27,'20191030224959','11/30/2019',' '); -INSERT INTO entity_versions VALUES(1396,27,'20191024135531','10/30/2019',' '); -INSERT INTO entity_versions VALUES(1397,27,'20191015190829','10/30/2019',' '); -INSERT INTO entity_versions VALUES(1398,27,'20191007115919','10/30/2019',' '); -INSERT INTO entity_versions VALUES(1399,27,'20191001203421','10/30/2019',' '); -INSERT INTO entity_versions VALUES(1400,27,'20190904132002','09/30/2019',' '); -INSERT INTO entity_versions VALUES(1401,27,'20190827222442','09/30/2019',' '); -INSERT INTO entity_versions VALUES(1402,27,'20190820163418','08/30/2019',' '); -INSERT INTO entity_versions VALUES(1403,27,'20190813170406','08/30/2019',' '); -INSERT INTO entity_versions VALUES(1404,27,'20190806202030','08/30/2019',' '); -INSERT INTO entity_versions VALUES(1405,27,'20190729085402','08/30/2019',' '); -INSERT INTO entity_versions VALUES(1406,27,'20190722200451','07/30/2019',' '); -INSERT INTO entity_versions VALUES(1407,27,'20190717161024','07/30/2019',' '); -INSERT INTO entity_versions VALUES(1408,27,'20190711110747','07/30/2019',' '); -INSERT INTO entity_versions VALUES(1409,27,'20190628200755','07/30/2019',' '); -INSERT INTO entity_versions VALUES(1410,27,'20190617144820','06/30/2019',' '); -INSERT INTO entity_versions VALUES(1411,27,'20190610211245','06/30/2019',' '); -INSERT INTO entity_versions VALUES(1412,27,'20190605190944','06/30/2019',' '); -INSERT INTO entity_versions VALUES(1413,27,'20190513175357','05/30/2019',' '); -INSERT INTO entity_versions VALUES(1414,27,'20190506101326','05/30/2019',' '); -INSERT INTO entity_versions VALUES(1415,27,'20190501153509','05/30/2019',' '); -INSERT INTO entity_versions VALUES(1416,27,'20190422213145','04/30/2019',' '); -INSERT INTO entity_versions VALUES(1417,27,'20190415203801','04/30/2019',' '); -INSERT INTO entity_versions VALUES(1418,27,'20190410001346','04/30/2019',' '); -INSERT INTO entity_versions VALUES(1419,27,'20190325233053','04/30/2019',' '); -INSERT INTO entity_versions VALUES(1420,27,'20190304193624','03/30/2019',' '); -INSERT INTO entity_versions VALUES(1421,27,'20190225235742','03/30/2019',' '); -INSERT INTO entity_versions VALUES(1422,27,'20190207004055','02/28/2019',' '); -INSERT INTO entity_versions VALUES(1423,27,'20190131011635','02/28/2019',' '); -INSERT INTO entity_versions VALUES(1424,27,'20190124232144','01/30/2019',' '); -INSERT INTO entity_versions VALUES(1425,27,'20190116225739','01/30/2019',' '); -INSERT INTO entity_versions VALUES(1426,27,'20181212095204','12/30/2018',' '); -INSERT INTO entity_versions VALUES(1427,27,'20181203095916','12/30/2018',' '); -INSERT INTO entity_versions VALUES(1428,27,'20181126154627','12/30/2018',' '); -INSERT INTO entity_versions VALUES(1429,27,'20181118185209','11/30/2018',' '); -INSERT INTO entity_versions VALUES(1430,27,'20181112131523','11/30/2018',' '); -INSERT INTO entity_versions VALUES(1431,27,'20181029174254','11/30/2018',' '); -INSERT INTO entity_versions VALUES(1432,27,'20181020020209','10/30/2018',' '); -INSERT INTO entity_versions VALUES(1433,27,'20181015112149','10/30/2018',' '); -INSERT INTO entity_versions VALUES(1434,27,'20181011135231','10/30/2018',' '); -INSERT INTO entity_versions VALUES(1435,27,'20181001090525','10/30/2018',' '); -INSERT INTO entity_versions VALUES(1436,27,'20180920223835','09/30/2018',' '); -INSERT INTO entity_versions VALUES(1437,27,'20180912124609','09/30/2018',' '); -INSERT INTO entity_versions VALUES(1438,27,'20180831173550','09/30/2018',' '); -INSERT INTO entity_versions VALUES(1439,27,'20180827132056','08/30/2018',' '); -INSERT INTO entity_versions VALUES(1440,27,'20180817182829','08/30/2018',' '); -INSERT INTO entity_versions VALUES(1441,27,'20180810152540','08/30/2018',' '); -INSERT INTO entity_versions VALUES(1442,27,'20180807052402','08/30/2018',' '); -INSERT INTO entity_versions VALUES(1443,27,'20180806202947','08/30/2018',' '); -INSERT INTO entity_versions VALUES(1444,27,'20180803154514','08/30/2018',' '); -INSERT INTO entity_versions VALUES(1445,27,'20180802181335','08/30/2018',' '); -INSERT INTO entity_versions VALUES(1446,27,'20180728222031','07/30/2018',' '); -INSERT INTO entity_versions VALUES(1447,27,'20180720170058','07/30/2018',' '); -INSERT INTO entity_versions VALUES(1448,27,'20180717131009','07/30/2018',' '); -INSERT INTO entity_versions VALUES(1449,27,'20180714142423','07/30/2018',' '); -INSERT INTO entity_versions VALUES(1450,27,'20180706210448','07/30/2018',' '); -INSERT INTO entity_versions VALUES(1451,27,'20180629132035','07/30/2018',' '); -INSERT INTO entity_versions VALUES(1452,27,'20180621090851','06/30/2018',' '); -INSERT INTO entity_versions VALUES(1453,27,'20180615105327','06/30/2018',' '); -INSERT INTO entity_versions VALUES(1454,27,'20180608102534','06/30/2018',' '); -INSERT INTO entity_versions VALUES(1455,27,'20180604124326','06/30/2018',' '); -INSERT INTO entity_versions VALUES(1456,27,'20180519154949','05/30/2018',' '); -INSERT INTO entity_versions VALUES(1457,27,'20180514204156','05/30/2018',' '); -INSERT INTO entity_versions VALUES(1458,27,'20180504185246','05/30/2018',' '); -INSERT INTO entity_versions VALUES(1459,27,'20180501212258','05/30/2018',' '); -INSERT INTO entity_versions VALUES(1460,27,'20180430173459','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1461,27,'20180424200344','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1462,27,'20180424150704','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1463,27,'20180420141712','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1464,27,'20180416135645','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1465,27,'20180406143035','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1466,27,'20180403044658','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1467,27,'20180326145220','03/30/2018',' '); -INSERT INTO entity_versions VALUES(1468,27,'20180322085330','03/30/2018',' '); -INSERT INTO entity_versions VALUES(1469,27,'20180319150121','03/30/2018',' '); -INSERT INTO entity_versions VALUES(1470,249,'5','11/15/2016',' '); -INSERT INTO entity_versions VALUES(1471,249,'4.5','03/07/2016',' '); -INSERT INTO entity_versions VALUES(1472,249,'4','05/05/2015','05/08/2017'); -INSERT INTO entity_versions VALUES(1473,249,'3.5','05/27/2014','09/30/2016'); -INSERT INTO entity_versions VALUES(1474,249,'3.1','12/19/2013','06/10/2016'); -INSERT INTO entity_versions VALUES(1475,249,'3','07/17/2013','06/10/2016'); -INSERT INTO entity_versions VALUES(1476,249,'2','12/16/2012','06/10/2016'); -INSERT INTO entity_versions VALUES(1477,308,'5','06/12/1905',' '); -INSERT INTO entity_versions VALUES(1478,308,'5.01','04/15/1991',' '); -INSERT INTO entity_versions VALUES(1479,308,'5.2','02/15/1993',' '); -INSERT INTO entity_versions VALUES(1480,308,'5.2a','03/15/1993',' '); -INSERT INTO entity_versions VALUES(1481,308,'5.2b','06/25/1993',' '); -INSERT INTO entity_versions VALUES(1482,308,'5.2c','08/06/1993',' '); -INSERT INTO entity_versions VALUES(1483,308,'5.2d','03/25/1994',' '); -INSERT INTO entity_versions VALUES(1484,308,'5.2e','02/07/1995',' '); -INSERT INTO entity_versions VALUES(1485,308,'5.3','06/26/1995',' '); -INSERT INTO entity_versions VALUES(1486,308,'5.3a','05/20/1996',' '); -INSERT INTO entity_versions VALUES(1487,308,'5.3b','05/20/1997',' '); -INSERT INTO entity_versions VALUES(1488,230,'10','06/21/2017',' '); -INSERT INTO entity_versions VALUES(1489,230,'10.1','03/20/2019',' '); -INSERT INTO entity_versions VALUES(1490,230,'10.2','01/30/2019',' '); -INSERT INTO entity_versions VALUES(1491,230,'10.3','08/23/2019',' '); -INSERT INTO entity_versions VALUES(1492,230,'11','04/02/2020',' '); -INSERT INTO entity_versions VALUES(1493,230,'11.1','05/07/2020',' '); -INSERT INTO entity_versions VALUES(1494,230,'11.2','08/29/2020',' '); -INSERT INTO entity_versions VALUES(1495,230,'11.3','06/17/2021',' '); -INSERT INTO entity_versions VALUES(1496,246,' ',' ',' '); -INSERT INTO entity_versions VALUES(1497,3,'6','05/31/2017',' '); -INSERT INTO entity_versions VALUES(1498,178,'3','12/31/1992',' '); -INSERT INTO entity_versions VALUES(1499,178,'4','12/31/1994',' '); -INSERT INTO entity_versions VALUES(1500,178,'5','12/31/1995',' '); -INSERT INTO entity_versions VALUES(1501,178,'6','12/31/1998',' '); -INSERT INTO entity_versions VALUES(1502,178,'6.0.2','12/31/1999',' '); -INSERT INTO entity_versions VALUES(1503,178,'7','12/31/2000',' '); -INSERT INTO entity_versions VALUES(1504,178,'8','12/31/2001',' '); -INSERT INTO entity_versions VALUES(1505,178,'9','12/31/2003',' '); -INSERT INTO entity_versions VALUES(1506,178,'10','12/31/2006',' '); -INSERT INTO entity_versions VALUES(1507,178,'11','12/31/2008',' '); -INSERT INTO entity_versions VALUES(1508,178,'12','12/31/2010',' '); -INSERT INTO entity_versions VALUES(1509,178,'16','12/31/2015',' '); -INSERT INTO entity_versions VALUES(1510,178,'17','12/31/2021',' '); -INSERT INTO entity_versions VALUES(1511,232,'8.2.04',' ',' '); -INSERT INTO entity_versions VALUES(1512,10,'5','02/21/2017',' '); -INSERT INTO entity_versions VALUES(1513,10,'6','05/22/2017',' '); -INSERT INTO entity_versions VALUES(1514,10,'7','05/22/2017',' '); -INSERT INTO entity_versions VALUES(1515,365,'8.1','04/30/1999',' '); -INSERT INTO entity_versions VALUES(1516,365,'8.2','08/18/1999',' '); -INSERT INTO entity_versions VALUES(1517,365,'8.3','02/10/2000',' '); -INSERT INTO entity_versions VALUES(1518,365,'8.4','09/30/2002',' '); -INSERT INTO entity_versions VALUES(1519,365,'8.5','12/31/2007',' '); -INSERT INTO entity_versions VALUES(1520,365,'8.6','12/31/2012',' '); -INSERT INTO entity_versions VALUES(1521,365,'7.6','10/16/1996',' '); -INSERT INTO entity_versions VALUES(1522,365,'7.5','04/21/1996',' '); -INSERT INTO entity_versions VALUES(1523,365,'7.4','07/01/1995',' '); -INSERT INTO entity_versions VALUES(1524,145,' ',' ',' '); -INSERT INTO entity_versions VALUES(1525,7,'2.3.4','01/22/2021',' '); -INSERT INTO entity_versions VALUES(1526,7,'2.4.2','03/17/2021',' '); -INSERT INTO entity_versions VALUES(1527,7,'1.4.13',' ',' '); -INSERT INTO entity_versions VALUES(1528,7,'1.6.0',' ',' '); -INSERT INTO entity_versions VALUES(1529,7,'1.7.1',' ',' '); -INSERT INTO entity_versions VALUES(1530,7,'2.2.7',' ',' '); -INSERT INTO entity_versions VALUES(1531,7,'2.3.6',' ',' '); -INSERT INTO entity_versions VALUES(1532,7,'2.4.6',' ',' '); -INSERT INTO entity_versions VALUES(1533,7,'3.0.0',' ',' '); -INSERT INTO entity_versions VALUES(1534,60,' ',' ',' '); -INSERT INTO entity_versions VALUES(1535,12,'1.14.1','02/10/2021',' '); -INSERT INTO entity_versions VALUES(1536,12,'1.10.7','02/10/2021',' '); -INSERT INTO entity_versions VALUES(1537,12,'1.14.0','05/27/2020',' '); -INSERT INTO entity_versions VALUES(1538,12,'1.13.0','10/30/2019',' '); -INSERT INTO entity_versions VALUES(1539,12,'1.12.2','07/24/2019',' '); -INSERT INTO entity_versions VALUES(1540,12,'1.10.6','07/24/2019',' '); -INSERT INTO entity_versions VALUES(1541,12,'1.9.12','07/24/2019',' '); -INSERT INTO entity_versions VALUES(1542,12,'1.12.0','04/24/2019',' '); -INSERT INTO entity_versions VALUES(1543,12,'1.11.1','01/11/2019',' '); -INSERT INTO entity_versions VALUES(1544,12,'1.10.4','01/11/2019',' '); -INSERT INTO entity_versions VALUES(1545,12,'1.9.10','01/11/2019',' '); -INSERT INTO entity_versions VALUES(1546,12,'1.11.0','10/30/2018',' '); -INSERT INTO entity_versions VALUES(1547,12,'1.10.3','10/10/2018',' '); -INSERT INTO entity_versions VALUES(1548,12,'1.10.2','07/20/2018',' '); -INSERT INTO entity_versions VALUES(1549,12,'1.9.9','07/20/2018',' '); -INSERT INTO entity_versions VALUES(1550,12,'1.10.0','04/12/2018',' '); -INSERT INTO entity_versions VALUES(1551,12,'1.9.7','08/10/2017',' '); -INSERT INTO entity_versions VALUES(1552,12,'1.8.19','08/10/2017',' '); -INSERT INTO entity_versions VALUES(1553,12,'1.8.18','07/07/2017',' '); -INSERT INTO entity_versions VALUES(1554,12,'1.9.6','07/06/2017',' '); -INSERT INTO entity_versions VALUES(1555,12,'1.9.5','11/29/2016',' '); -INSERT INTO entity_versions VALUES(1556,12,'1.8.17','11/29/2016',' '); -INSERT INTO entity_versions VALUES(1557,12,'1.9.4','04/28/2016',' '); -INSERT INTO entity_versions VALUES(1558,12,'1.8.16','04/28/2016',' '); -INSERT INTO entity_versions VALUES(1559,12,'1.9.3','09/15/2015',' '); -INSERT INTO entity_versions VALUES(1560,12,'1.8.15','09/15/2015',' '); -INSERT INTO entity_versions VALUES(1561,12,'1.9.2','09/23/2015',' '); -INSERT INTO entity_versions VALUES(1562,12,'1.9.1','09/02/2015',' '); -INSERT INTO entity_versions VALUES(1563,12,'1.7.22','08/14/2015',' '); -INSERT INTO entity_versions VALUES(1564,12,'1.9.0','08/05/2015',' '); -INSERT INTO entity_versions VALUES(1565,12,'1.8.14','08/05/2015',' '); -INSERT INTO entity_versions VALUES(1566,12,'1.7.21','08/05/2015',' '); -INSERT INTO entity_versions VALUES(1567,12,'1.8.13','03/31/2015',' '); -INSERT INTO entity_versions VALUES(1568,12,'1.7.20','03/31/2015',' '); -INSERT INTO entity_versions VALUES(1569,12,'1.8.11','12/15/2014',' '); -INSERT INTO entity_versions VALUES(1570,12,'1.7.19','12/15/2014',' '); -INSERT INTO entity_versions VALUES(1571,12,'1.8.10','08/11/2014',' '); -INSERT INTO entity_versions VALUES(1572,12,'1.7.18','08/11/2014',' '); -INSERT INTO entity_versions VALUES(1573,12,'1.7.17','05/19/2014',' '); -INSERT INTO entity_versions VALUES(1574,12,'1.8.9','05/14/2014',' '); -INSERT INTO entity_versions VALUES(1575,12,'1.7.16','02/26/2014',' '); -INSERT INTO entity_versions VALUES(1576,12,'1.8.8','02/20/2014',' '); -INSERT INTO entity_versions VALUES(1577,12,'1.8.5','11/25/2013',' '); -INSERT INTO entity_versions VALUES(1578,12,'1.7.14','11/25/2013',' '); -INSERT INTO entity_versions VALUES(1579,12,'1.8.4','10/29/2013',' '); -INSERT INTO entity_versions VALUES(1580,12,'1.8.3','08/30/2013',' '); -INSERT INTO entity_versions VALUES(1581,12,'1.7.13','08/30/2013',' '); -INSERT INTO entity_versions VALUES(1582,12,'1.8.1','07/24/2013',' '); -INSERT INTO entity_versions VALUES(1583,12,'1.7.11','07/24/2013',' '); -INSERT INTO entity_versions VALUES(1584,12,'1.8.0','06/18/2013',' '); -INSERT INTO entity_versions VALUES(1585,12,'1.7.10','05/31/2013',' '); -INSERT INTO entity_versions VALUES(1586,12,'1.6.23','05/31/2013',' '); -INSERT INTO entity_versions VALUES(1587,12,'1.7.9','04/04/2013',' '); -INSERT INTO entity_versions VALUES(1588,12,'1.6.21','04/04/2013',' '); -INSERT INTO entity_versions VALUES(1589,12,'1.6.20','01/08/2013',' '); -INSERT INTO entity_versions VALUES(1590,12,'1.7.8','12/20/2012',' '); -INSERT INTO entity_versions VALUES(1591,12,'1.7.7','10/09/2012',' '); -INSERT INTO entity_versions VALUES(1592,12,'1.6.19','09/21/2012',' '); -INSERT INTO entity_versions VALUES(1593,12,'1.7.6','08/15/2012',' '); -INSERT INTO entity_versions VALUES(1594,12,'1.7.5','05/17/2012',' '); -INSERT INTO entity_versions VALUES(1595,12,'1.7.4','03/08/2012',' '); -INSERT INTO entity_versions VALUES(1596,12,'1.7.3','02/13/2012',' '); -INSERT INTO entity_versions VALUES(1597,12,'1.7.2','12/05/2011',' '); -INSERT INTO entity_versions VALUES(1598,12,'1.7.1','10/23/2011',' '); -INSERT INTO entity_versions VALUES(1599,12,'1.7.0','10/11/2011',' '); -INSERT INTO entity_versions VALUES(1600,12,'1.6.18','04/12/2012',' '); -INSERT INTO entity_versions VALUES(1601,12,'1.6.17','06/01/2011',' '); -INSERT INTO entity_versions VALUES(1602,12,'1.6.16','03/03/2011',' '); -INSERT INTO entity_versions VALUES(1603,12,'1.5.9','12/22/2010',' '); -INSERT INTO entity_versions VALUES(1604,12,'1.6.15','11/24/2010',' '); -INSERT INTO entity_versions VALUES(1605,12,'1.6.13','10/01/2010',' '); -INSERT INTO entity_versions VALUES(1606,12,'1.6.12','06/21/2010',' '); -INSERT INTO entity_versions VALUES(1607,12,'1.6.11','04/16/2010',' '); -INSERT INTO entity_versions VALUES(1608,12,'1.6.9','01/25/2010',' '); -INSERT INTO entity_versions VALUES(1609,12,'1.6.6','10/22/2009',' '); -INSERT INTO entity_versions VALUES(1610,12,'1.6.5','08/22/2009',' '); -INSERT INTO entity_versions VALUES(1611,12,'1.6.4','08/06/2009',' '); -INSERT INTO entity_versions VALUES(1612,12,'1.6.3','06/22/2009',' '); -INSERT INTO entity_versions VALUES(1613,12,'1.6.2','05/11/2009',' '); -INSERT INTO entity_versions VALUES(1614,12,'1.6.1','04/09/2009',' '); -INSERT INTO entity_versions VALUES(1615,12,'1.6.0','03/20/2009',' '); -INSERT INTO entity_versions VALUES(1616,12,'1.5.7','08/06/2009',' '); -INSERT INTO entity_versions VALUES(1617,12,'1.5.6','02/26/2009',' '); -INSERT INTO entity_versions VALUES(1618,12,'1.5.5','12/22/2008',' '); -INSERT INTO entity_versions VALUES(1619,12,'1.5.4','10/24/2008',' '); -INSERT INTO entity_versions VALUES(1620,12,'1.5.3','10/10/2008',' '); -INSERT INTO entity_versions VALUES(1621,12,'1.5.2','08/30/2008',' '); -INSERT INTO entity_versions VALUES(1622,12,'1.5.1','07/26/2008',' '); -INSERT INTO entity_versions VALUES(1623,12,'1.5.0','06/19/2008',' '); -INSERT INTO entity_versions VALUES(1624,12,'1.4.6','12/20/2007',' '); -INSERT INTO entity_versions VALUES(1625,12,'1.4.5','08/28/2007',' '); -INSERT INTO entity_versions VALUES(1626,12,'1.4.4','06/08/2007',' '); -INSERT INTO entity_versions VALUES(1627,12,'1.4.3','01/25/2007',' '); -INSERT INTO entity_versions VALUES(1628,12,'1.4.2','11/07/2006',' '); -INSERT INTO entity_versions VALUES(1629,12,'1.4.0','09/10/2006',' '); -INSERT INTO entity_versions VALUES(1630,12,'1.3.2','05/31/2006',' '); -INSERT INTO entity_versions VALUES(1631,12,'1.3.1','04/03/2006',' '); -INSERT INTO entity_versions VALUES(1632,12,'1.3.0','01/03/2006',' '); -INSERT INTO entity_versions VALUES(1633,12,'1.2.3','08/25/2005',' '); -INSERT INTO entity_versions VALUES(1634,12,'1.2.1','07/05/2005',' '); -INSERT INTO entity_versions VALUES(1635,12,'1.2.0','05/23/2005',' '); -INSERT INTO entity_versions VALUES(1636,12,'1.1.4','04/01/2005',' '); -INSERT INTO entity_versions VALUES(1637,12,'1.1.3','01/14/2005',' '); -INSERT INTO entity_versions VALUES(1638,12,'1.1.2','12/20/2004',' '); -INSERT INTO entity_versions VALUES(1639,12,'1.1.1','10/22/2004',' '); -INSERT INTO entity_versions VALUES(1640,12,'1.0.9','10/13/2004',' '); -INSERT INTO entity_versions VALUES(1641,12,'1.1.0','09/29/2004',' '); -INSERT INTO entity_versions VALUES(1642,12,'1.0.8','09/22/2004',' '); -INSERT INTO entity_versions VALUES(1643,12,'1.0.7','09/17/2004',' '); -INSERT INTO entity_versions VALUES(1644,12,'1.0.6','07/19/2004',' '); -INSERT INTO entity_versions VALUES(1645,12,'1.0.5','06/10/2004',' '); -INSERT INTO entity_versions VALUES(1646,12,'1.0.4','05/21/2004',' '); -INSERT INTO entity_versions VALUES(1647,12,'1.0.3','05/19/2004',' '); -INSERT INTO entity_versions VALUES(1648,12,'1.0.2','04/19/2004',' '); -INSERT INTO entity_versions VALUES(1649,12,'1.0.1','03/12/2004',' '); -INSERT INTO entity_versions VALUES(1650,12,'1.0.0','02/23/2004',' '); -INSERT INTO entity_versions VALUES(1651,12,'0.37','01/25/2004',' '); -INSERT INTO entity_versions VALUES(1652,12,'0.36','01/13/2004',' '); -INSERT INTO entity_versions VALUES(1653,12,'0.35.1','12/20/2003',' '); -INSERT INTO entity_versions VALUES(1654,12,'0.35','12/19/2003',' '); -INSERT INTO entity_versions VALUES(1655,12,'0.34','12/03/2003',' '); -INSERT INTO entity_versions VALUES(1656,12,'0.33.1','11/18/2003',' '); -INSERT INTO entity_versions VALUES(1657,12,'0.33','11/13/2003',' '); -INSERT INTO entity_versions VALUES(1658,12,'0.32.1','10/23/2003',' '); -INSERT INTO entity_versions VALUES(1659,12,'0.31','10/07/2003',' '); -INSERT INTO entity_versions VALUES(1660,12,'0.30','09/24/2003',' '); -INSERT INTO entity_versions VALUES(1661,12,'0.29','09/05/2003',' '); -INSERT INTO entity_versions VALUES(1662,12,'0.28.2','09/02/2003',' '); -INSERT INTO entity_versions VALUES(1663,12,'0.28.1','08/28/2003',' '); -INSERT INTO entity_versions VALUES(1664,12,'0.28','08/27/2003',' '); -INSERT INTO entity_versions VALUES(1665,12,'0.27','08/10/2003',' '); -INSERT INTO entity_versions VALUES(1666,12,'0.26','07/23/2003',' '); -INSERT INTO entity_versions VALUES(1667,12,'0.25','07/10/2003',' '); -INSERT INTO entity_versions VALUES(1668,12,'0.24.2','06/18/2003',' '); -INSERT INTO entity_versions VALUES(1669,12,'0.24.1','06/16/2003',' '); -INSERT INTO entity_versions VALUES(1670,12,'0.24','06/15/2003',' '); -INSERT INTO entity_versions VALUES(1671,12,'0.23','05/17/2003',' '); -INSERT INTO entity_versions VALUES(1672,12,'0.22.2','05/13/2003',' '); -INSERT INTO entity_versions VALUES(1673,12,'0.22.1','05/09/2003',' '); -INSERT INTO entity_versions VALUES(1674,12,'0.22','05/07/2003',' '); -INSERT INTO entity_versions VALUES(1675,12,'0.21','04/15/2003',' '); -INSERT INTO entity_versions VALUES(1676,12,'0.20.1','03/26/2003',' '); -INSERT INTO entity_versions VALUES(1677,12,'0.20','03/20/2003',' '); -INSERT INTO entity_versions VALUES(1678,12,'0.19.1','03/12/2003',' '); -INSERT INTO entity_versions VALUES(1679,12,'0.19','03/10/2003',' '); -INSERT INTO entity_versions VALUES(1680,12,'0.18.1','02/26/2003',' '); -INSERT INTO entity_versions VALUES(1681,12,'0.18','02/19/2003',' '); -INSERT INTO entity_versions VALUES(1682,12,'0.17.1','01/22/2003',' '); -INSERT INTO entity_versions VALUES(1683,12,'0.17','01/20/2003',' '); -INSERT INTO entity_versions VALUES(1684,12,'0.16.1','01/06/2003',' '); -INSERT INTO entity_versions VALUES(1685,12,'0.16','12/03/2002',' '); -INSERT INTO entity_versions VALUES(1686,12,'0.15','11/07/2002',' '); -INSERT INTO entity_versions VALUES(1687,12,'0.14.5','10/29/2002',' '); -INSERT INTO entity_versions VALUES(1688,12,'0.14.4','10/29/2002',' '); -INSERT INTO entity_versions VALUES(1689,12,'0.14.3','09/20/2002',' '); -INSERT INTO entity_versions VALUES(1690,12,'0.14.2','08/22/2002',' '); -INSERT INTO entity_versions VALUES(1691,12,'0.14.1','08/09/2002',' '); -INSERT INTO entity_versions VALUES(1692,12,'0.13.2','06/28/2002',' '); -INSERT INTO entity_versions VALUES(1693,12,'0.13.1','06/20/2002',' '); -INSERT INTO entity_versions VALUES(1694,12,'0.13.0','06/10/2002',' '); -INSERT INTO entity_versions VALUES(1695,12,'0.12','05/03/2002',' '); -INSERT INTO entity_versions VALUES(1696,12,'0.11','04/12/2002',' '); -INSERT INTO entity_versions VALUES(1697,12,'0.10','03/08/2002',' '); -INSERT INTO entity_versions VALUES(1698,12,'0.9','02/18/2002',' '); -INSERT INTO entity_versions VALUES(1699,12,'0.8','01/14/2002',' '); -INSERT INTO entity_versions VALUES(1700,12,'0.7','12/03/2001',' '); -INSERT INTO entity_versions VALUES(1701,422,'9',' ',' '); -INSERT INTO entity_versions VALUES(1702,422,'8',' ',' '); -INSERT INTO entity_versions VALUES(1703,422,'7',' ',' '); -INSERT INTO entity_versions VALUES(1704,422,'6',' ',' '); -INSERT INTO entity_versions VALUES(1705,422,'5',' ',' '); -INSERT INTO entity_versions VALUES(1706,422,'4',' ',' '); -INSERT INTO entity_versions VALUES(1707,422,'3',' ',' '); -INSERT INTO entity_versions VALUES(1708,422,'2',' ',' '); -INSERT INTO entity_versions VALUES(1709,43,'11.5',' ',' '); -INSERT INTO entity_versions VALUES(1710,43,'11.1',' ','04/30/2022'); -INSERT INTO entity_versions VALUES(1711,43,'10.5',' ','04/30/2023'); -INSERT INTO entity_versions VALUES(1712,43,'10.1',' ','09/30/2020'); -INSERT INTO entity_versions VALUES(1713,43,'9.8',' ','04/30/2016'); -INSERT INTO entity_versions VALUES(1714,43,'9.7',' ','09/30/2020'); -INSERT INTO entity_versions VALUES(1715,43,'9.5',' ','04/30/2015'); -INSERT INTO entity_versions VALUES(1716,43,'9.1',' ','04/30/2012'); -INSERT INTO entity_versions VALUES(1717,43,'8.1',' ','04/30/2009'); -INSERT INTO entity_versions VALUES(1718,68,'10','03/27/2015',' '); -INSERT INTO entity_versions VALUES(1719,68,'9','06/28/2013',' '); -INSERT INTO entity_versions VALUES(1720,330,'12.1',' ',' '); -INSERT INTO entity_versions VALUES(1721,330,'14.1',' ',' '); -INSERT INTO entity_versions VALUES(1722,81,'9.2','07/23/2020',' '); -INSERT INTO entity_versions VALUES(1723,81,'9.1','07/27/2018',' '); -INSERT INTO entity_versions VALUES(1724,81,'IBM MQ on IBM Cloud','03/13/2018',' '); -INSERT INTO entity_versions VALUES(1725,81,'IBM MQ for HPE Nonstop 8.0','06/23/2017',' '); -INSERT INTO entity_versions VALUES(1726,81,'9.0','06/02/2016',' '); -INSERT INTO entity_versions VALUES(1727,81,'8.0','05/23/2014',' '); -INSERT INTO entity_versions VALUES(1728,81,'7.5','06/15/2012',' '); -INSERT INTO entity_versions VALUES(1729,81,'7.1','11/30/2011',' '); -INSERT INTO entity_versions VALUES(1730,81,'7.0','06/30/2008',' '); -INSERT INTO entity_versions VALUES(1731,81,'7.0','05/31/2008',' '); -INSERT INTO entity_versions VALUES(1732,81,'6.0','06/30/2005',' '); -INSERT INTO entity_versions VALUES(1733,81,'WebSphere MQ 6.0 (Distributed, iSeries)','05/31/2005',' '); -INSERT INTO entity_versions VALUES(1734,81,'5.3','06/30/2002',' '); -INSERT INTO entity_versions VALUES(1735,81,'WebSphere MQ 5.3 (Distributed, iSeries)','11/30/2002',' '); -INSERT INTO entity_versions VALUES(1736,81,'MQSeries 5.2 (Distributed)','12/31/2000',' '); -INSERT INTO entity_versions VALUES(1737,81,'5.2','11/30/2000',' '); -INSERT INTO entity_versions VALUES(1738,81,'5.1','08/31/2000',' '); -INSERT INTO entity_versions VALUES(1739,81,'2.1','02/28/1999',' '); -INSERT INTO entity_versions VALUES(1740,81,'5.1','06/30/1999',' '); -INSERT INTO entity_versions VALUES(1741,81,'4.2','02/28/1998',' '); -INSERT INTO entity_versions VALUES(1742,81,'5.0','10/31/1997',' '); -INSERT INTO entity_versions VALUES(1743,81,'1.2','08/29/1997',' '); -INSERT INTO entity_versions VALUES(1744,81,'1.1.4,','06/30/1996',' '); -INSERT INTO entity_versions VALUES(1745,81,'2.2','07/31/1996',' '); -INSERT INTO entity_versions VALUES(1746,81,'2.0','06/30/1996',' '); -INSERT INTO entity_versions VALUES(1747,81,'2.2','12/31/1995',' '); -INSERT INTO entity_versions VALUES(1748,81,'1.1.3','05/31/1995',' '); -INSERT INTO entity_versions VALUES(1749,81,'2.0','02/28/1995',' '); -INSERT INTO entity_versions VALUES(1750,81,'3','12/31/1994',' '); -INSERT INTO entity_versions VALUES(1751,81,'3.0','07/01/1994',' '); -INSERT INTO entity_versions VALUES(1752,81,'1.1.2','06/01/1994',' '); -INSERT INTO entity_versions VALUES(1753,81,'2.3','04/30/1994',' '); -INSERT INTO entity_versions VALUES(1754,81,'1.1.1','12/31/1993',' '); -INSERT INTO entity_versions VALUES(1755,127,'9.5.3',' ',' '); -INSERT INTO entity_versions VALUES(1756,169,' ',' ',' '); -INSERT INTO entity_versions VALUES(1757,36,' ',' ',' '); -INSERT INTO entity_versions VALUES(1758,225,'3','12/31/1986',' '); -INSERT INTO entity_versions VALUES(1759,225,'4','12/31/1988',' '); -INSERT INTO entity_versions VALUES(1760,225,'5','12/31/1990',' '); -INSERT INTO entity_versions VALUES(1761,225,'6','12/31/1994',' '); -INSERT INTO entity_versions VALUES(1762,225,'7','12/31/1997',' '); -INSERT INTO entity_versions VALUES(1763,225,'8','12/31/2001',' '); -INSERT INTO entity_versions VALUES(1764,225,'9','12/31/2006',' '); -INSERT INTO entity_versions VALUES(1765,225,'9.4','12/31/2010',' '); -INSERT INTO entity_versions VALUES(1766,225,'9.5','12/31/2011',' '); -INSERT INTO entity_versions VALUES(1767,225,'9.6','12/31/2012',' '); -INSERT INTO entity_versions VALUES(1768,225,'9.7','12/31/2015',' '); -INSERT INTO entity_versions VALUES(1769,225,'10','12/31/2015',' '); -INSERT INTO entity_versions VALUES(1770,225,'10.4','12/31/2021',' '); -INSERT INTO entity_versions VALUES(1771,219,'8.5.0','12/31/2019',' '); -INSERT INTO entity_versions VALUES(1772,128,'2.5.0','10/31/2020',' '); -INSERT INTO entity_versions VALUES(1773,128,'2.5.1','10/31/2020',' '); -INSERT INTO entity_versions VALUES(1774,128,'2.5.2','10/31/2020',' '); -INSERT INTO entity_versions VALUES(1775,128,'2.5.3','10/31/2020',' '); -INSERT INTO entity_versions VALUES(1776,128,'2.4.0','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1777,128,'2.4.1','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1778,128,'2.4.2','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1779,128,'2.4.3','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1780,128,'2.4.4','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1781,128,'2.4.5','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1782,128,'2.4.6','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1783,128,'2.4.7','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1784,128,'2.4.8','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1785,128,'2.4.9','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1786,128,'2.4.10','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1787,128,'2.4.11','12/26/2016','05/31/2022'); -INSERT INTO entity_versions VALUES(1788,128,'2.3.0','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1789,128,'2.3.1','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1790,128,'2.3.2','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1791,128,'2.3.3','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1792,128,'2.3.4','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1793,128,'2.3.5','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1794,128,'2.3.6','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1795,128,'2.3.7','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1796,128,'2.3.8','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1797,128,'2.3.9','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1798,128,'2.3.10','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1799,128,'2.3.11','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1800,128,'2.3.12','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1801,128,'2.3.13','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1802,128,'2.3.14','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1803,128,'2.3.15','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1804,128,'2.3.16','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1805,128,'2.3.17','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1806,128,'2.3.18','02/28/2013','06/30/2021'); -INSERT INTO entity_versions VALUES(1807,128,'2.2.0','04/21/2011','11/30/2015'); -INSERT INTO entity_versions VALUES(1808,128,'2.2.1','04/21/2011','11/30/2015'); -INSERT INTO entity_versions VALUES(1809,128,'2.2.2','04/21/2011','11/30/2015'); -INSERT INTO entity_versions VALUES(1810,128,'2.2.3','04/21/2011','11/30/2015'); -INSERT INTO entity_versions VALUES(1811,128,'2.1.0','12/11/2009','11/30/2011'); -INSERT INTO entity_versions VALUES(1812,128,'2.1.1','12/11/2009','11/30/2011'); -INSERT INTO entity_versions VALUES(1813,128,'2.1.2','12/11/2009','11/30/2011'); -INSERT INTO entity_versions VALUES(1814,128,'2.1.3','12/11/2009','11/30/2011'); -INSERT INTO entity_versions VALUES(1815,128,'2.1.4','12/11/2009','11/30/2011'); -INSERT INTO entity_versions VALUES(1816,215,'15','03/31/2014',' '); -INSERT INTO entity_versions VALUES(1817,215,'16','11/30/2016',' '); -INSERT INTO entity_versions VALUES(1818,117,'1','11/09/2006',' '); -INSERT INTO entity_versions VALUES(1819,117,'1.5','11/30/2005',' '); -INSERT INTO entity_versions VALUES(1820,117,'2','10/24/2006',' '); -INSERT INTO entity_versions VALUES(1821,117,'3','06/17/2008',' '); -INSERT INTO entity_versions VALUES(1822,117,'3.5','06/30/2009',' '); -INSERT INTO entity_versions VALUES(1823,117,'3.6','01/21/2010',' '); -INSERT INTO entity_versions VALUES(1824,117,'4','10/13/2006',' '); -INSERT INTO entity_versions VALUES(1825,146,'1','03/31/2006',' '); -INSERT INTO entity_versions VALUES(1826,146,'1.1','12/31/2006',' '); -INSERT INTO entity_versions VALUES(1827,146,'1.2.1','08/31/2007',' '); -INSERT INTO entity_versions VALUES(1828,146,'1.5','04/30/2008',' '); -INSERT INTO entity_versions VALUES(1829,146,'1.5.1','06/30/2008',' '); -INSERT INTO entity_versions VALUES(1830,146,'1.5.3','12/31/2008',' '); -INSERT INTO entity_versions VALUES(1831,146,'1.5.4','03/31/2009',' '); -INSERT INTO entity_versions VALUES(1832,146,'1.5.5','07/31/2009',' '); -INSERT INTO entity_versions VALUES(1833,146,'2.1','12/31/2009',' '); -INSERT INTO entity_versions VALUES(1834,146,'3','03/31/2011',' '); -INSERT INTO entity_versions VALUES(1835,146,'3.1','02/28/2012',' '); -INSERT INTO entity_versions VALUES(1836,146,'3.2','08/31/2012',' '); -INSERT INTO entity_versions VALUES(1837,146,'4','12/31/2013',' '); -INSERT INTO entity_versions VALUES(1838,146,'4.0.1','02/28/2014',' '); -INSERT INTO entity_versions VALUES(1839,146,'4.0.2','05/31/2014',' '); -INSERT INTO entity_versions VALUES(1840,146,'4.0.3','09/30/2014',' '); -INSERT INTO entity_versions VALUES(1841,146,'4.1.1','06/30/2015',' '); -INSERT INTO entity_versions VALUES(1842,146,'4.1.2','10/31/2015',' '); -INSERT INTO entity_versions VALUES(1843,146,'4.1.3','12/31/2015',' '); -INSERT INTO entity_versions VALUES(1844,146,'4.1.5','09/30/2016',' '); -INSERT INTO entity_versions VALUES(1845,146,'4.2.0','04/30/2017',' '); -INSERT INTO entity_versions VALUES(1846,146,'17.2','07/31/2017',' '); -INSERT INTO entity_versions VALUES(1847,146,'17.4','12/31/2017',' '); -INSERT INTO entity_versions VALUES(1848,146,'18.1','04/30/2018',' '); -INSERT INTO entity_versions VALUES(1849,146,'18.2','07/31/2018',' '); -INSERT INTO entity_versions VALUES(1850,146,'18.3','10/31/2018',' '); -INSERT INTO entity_versions VALUES(1851,146,'18.4','01/31/2019',' '); -INSERT INTO entity_versions VALUES(1852,146,'19.1','04/30/2019',' '); -INSERT INTO entity_versions VALUES(1853,146,'19.2','08/31/2019',' '); -INSERT INTO entity_versions VALUES(1854,146,'19.4','12/31/2019',' '); -INSERT INTO entity_versions VALUES(1855,146,'20.2','06/30/2020',' '); -INSERT INTO entity_versions VALUES(1856,146,'20.4','01/31/2021',' '); -INSERT INTO entity_versions VALUES(1857,146,'20.4.1','02/28/2021',' '); -INSERT INTO entity_versions VALUES(1858,146,'21.2','08/31/2021',' '); -INSERT INTO entity_versions VALUES(1859,241,'2.16.0','11/23/2018',' '); -INSERT INTO entity_versions VALUES(1860,241,'2.15.2','01/28/2018',' '); -INSERT INTO entity_versions VALUES(1861,241,'2.14.0','02/02/2013',' '); -INSERT INTO entity_versions VALUES(1862,241,'2.13.20','10/20/2013',' '); -INSERT INTO entity_versions VALUES(1863,241,'2.12.0','03/05/2009',' '); -INSERT INTO entity_versions VALUES(1864,241,'2.11.1','07/11/2008',' '); -INSERT INTO entity_versions VALUES(1865,241,'2.9.1','04/23/2008',' '); -INSERT INTO entity_versions VALUES(1866,241,'2.8','03/04/2008',' '); -INSERT INTO entity_versions VALUES(1867,241,'2.7.1','11/16/2006',' '); -INSERT INTO entity_versions VALUES(1868,241,' ',' ',' '); -INSERT INTO entity_versions VALUES(1869,115,' ',' ',' '); -INSERT INTO entity_versions VALUES(1870,86,' ','12/31/2008',' '); -INSERT INTO entity_versions VALUES(1871,4,'1','06/15/1993',' '); -INSERT INTO entity_versions VALUES(1872,4,'2','09/01/1994',' '); -INSERT INTO entity_versions VALUES(1873,4,'3','11/01/1996',' '); -INSERT INTO entity_versions VALUES(1874,4,'4','04/01/1999',' '); -INSERT INTO entity_versions VALUES(1875,4,'5','05/01/2001',' '); -INSERT INTO entity_versions VALUES(1876,4,'6','07/01/2003',' '); -INSERT INTO entity_versions VALUES(1877,4,'7','12/28/2004',' '); -INSERT INTO entity_versions VALUES(1878,4,'8','11/03/2006',' '); -INSERT INTO entity_versions VALUES(1879,4,'9','06/02/2008',' '); -INSERT INTO entity_versions VALUES(1880,4,'10','11/15/2010',' '); -INSERT INTO entity_versions VALUES(1881,4,'11','10/15/2012',' '); -INSERT INTO entity_versions VALUES(1882,4,'2015','04/06/2015',' '); -INSERT INTO entity_versions VALUES(1883,4,'2017','06/06/2017',' '); -INSERT INTO entity_versions VALUES(1884,4,'2020','06/01/2020',' '); -INSERT INTO entity_versions VALUES(1885,101,'1.5','12/31/2000',' '); -INSERT INTO entity_versions VALUES(1886,101,'2012','09/30/2011',' '); -INSERT INTO entity_versions VALUES(1887,101,'7 ','02/28/2016',' '); -INSERT INTO entity_versions VALUES(1888,101,'7.0.4.17','05/27/2016',' '); -INSERT INTO entity_versions VALUES(1889,88,'2.8','09/30/2020',' '); -INSERT INTO entity_versions VALUES(1890,88,'2.81','10/31/2020',' '); -INSERT INTO entity_versions VALUES(1891,125,'20.03','03/31/2020',' '); -INSERT INTO entity_versions VALUES(1892,125,'21.05','05/31/2021',' '); -INSERT INTO entity_versions VALUES(1893,234,'8.6',' ',' '); -INSERT INTO entity_versions VALUES(1894,234,'8.5.1','05/22/2020',' '); -INSERT INTO entity_versions VALUES(1895,231,'7.0.0','04/02/2020',' '); -INSERT INTO entity_versions VALUES(1896,231,'6.7','04/17/2018',' '); -INSERT INTO entity_versions VALUES(1897,231,'6.5','11/15/2016',' '); -INSERT INTO entity_versions VALUES(1898,231,'6','03/12/2015',' '); -INSERT INTO entity_versions VALUES(1899,231,'5.5','09/22/2013',' '); -INSERT INTO entity_versions VALUES(1900,231,'5','08/24/2011',' '); -INSERT INTO entity_versions VALUES(1901,56,'5','09/30/2017',' '); -INSERT INTO entity_versions VALUES(1902,56,'6','09/30/2019',' '); -INSERT INTO entity_versions VALUES(1903,57,'1','04/30/2006',' '); -INSERT INTO entity_versions VALUES(1904,57,'2.7.7','05/31/2018',' '); -INSERT INTO entity_versions VALUES(1905,57,'2.8.5','09/15/2018',' '); -INSERT INTO entity_versions VALUES(1906,57,'2.9.2','11/09/2018',' '); -INSERT INTO entity_versions VALUES(1907,57,'2.10.1','09/21/2020',' '); -INSERT INTO entity_versions VALUES(1908,57,'3.1.4','08/03/2020',' '); -INSERT INTO entity_versions VALUES(1909,57,'3.2.2','01/09/2021',' '); -INSERT INTO entity_versions VALUES(1910,57,'3.3.1','06/15/2021',' '); -INSERT INTO entity_versions VALUES(1911,124,'3.29.1','12/24/2020',' '); -INSERT INTO entity_versions VALUES(1912,124,'3.29','12/04/2020',' '); -INSERT INTO entity_versions VALUES(1913,124,'3.28.1','10/19/2020',' '); -INSERT INTO entity_versions VALUES(1914,124,'3.28','10/01/2020',' '); -INSERT INTO entity_versions VALUES(1915,124,'3.27','09/03/2020',' '); -INSERT INTO entity_versions VALUES(1916,124,'3.26.1','08/12/2020',' '); -INSERT INTO entity_versions VALUES(1917,124,'3.26','08/10/2020',' '); -INSERT INTO entity_versions VALUES(1918,124,'3.25.1','07/29/2020',' '); -INSERT INTO entity_versions VALUES(1919,124,'3.25','07/13/2020',' '); -INSERT INTO entity_versions VALUES(1920,124,'3.24','06/08/2020',' '); -INSERT INTO entity_versions VALUES(1921,124,'3.23','05/05/2020',' '); -INSERT INTO entity_versions VALUES(1922,124,'3.22.1','04/16/2020',' '); -INSERT INTO entity_versions VALUES(1923,124,'3.22.0','03/27/2020',' '); -INSERT INTO entity_versions VALUES(1924,124,'3',' ',' '); -INSERT INTO entity_versions VALUES(1925,188,'6','10/01/2013','10/22/2019'); -INSERT INTO entity_versions VALUES(1926,188,'6.1','05/06/2014','10/22/2019'); -INSERT INTO entity_versions VALUES(1927,188,'6.2','10/07/2014','10/22/2019'); -INSERT INTO entity_versions VALUES(1928,188,'6.3','09/22/2015','10/22/2019'); -INSERT INTO entity_versions VALUES(1929,188,'6.4','04/05/2016','10/22/2019'); -INSERT INTO entity_versions VALUES(1930,188,'6.5','09/27/2016','10/22/2019'); -INSERT INTO entity_versions VALUES(1931,188,'6.6','05/02/2017','01/31/2020'); -INSERT INTO entity_versions VALUES(1932,188,'7','09/26/2017','01/31/2020'); -INSERT INTO entity_versions VALUES(1933,188,'7.1','04/24/2018','10/31/2020'); -INSERT INTO entity_versions VALUES(1934,188,'7.2','10/02/2018','04/30/2021'); -INSERT INTO entity_versions VALUES(1935,188,'7.3','06/04/2019','10/22/2021'); -INSERT INTO entity_versions VALUES(1936,188,'8','10/22/2019','10/22/2021'); -INSERT INTO entity_versions VALUES(1937,188,'8.1','10/19/2020','10/19/2022'); -INSERT INTO entity_versions VALUES(1938,188,'8.2','05/12/2021','05/12/2023'); -INSERT INTO entity_versions VALUES(1939,151,'7','12/31/1997',' '); -INSERT INTO entity_versions VALUES(1940,151,'7.5','12/31/1998',' '); -INSERT INTO entity_versions VALUES(1941,151,'9','12/31/2006',' '); -INSERT INTO entity_versions VALUES(1942,151,'9.1','12/31/2009',' '); -INSERT INTO entity_versions VALUES(1943,151,'9.2','12/31/2013',' '); -INSERT INTO entity_versions VALUES(1944,84,'12.1.0',' ',' '); -INSERT INTO entity_versions VALUES(1945,84,'13.1.0',' ',' '); -INSERT INTO entity_versions VALUES(1946,84,'14.1.0',' ',' '); -INSERT INTO entity_versions VALUES(1947,84,'15.1.0',' ',' '); -INSERT INTO entity_versions VALUES(1948,84,'15.2.0',' ',' '); -INSERT INTO entity_versions VALUES(1949,603,'2013','08/31/2013',' '); -INSERT INTO entity_versions VALUES(1950,603,'2016','04/30/2016',' '); -INSERT INTO entity_versions VALUES(1951,603,'2019',' ',' '); -INSERT INTO entity_versions VALUES(1952,193,' ',' ',' '); -INSERT INTO entity_versions VALUES(1953,6,'5.16.3','08/17/2021',' '); -INSERT INTO entity_versions VALUES(1954,6,'5.16.2','04/28/2021',' '); -INSERT INTO entity_versions VALUES(1955,6,'5.16.1','01/20/2021',' '); -INSERT INTO entity_versions VALUES(1956,6,'5.16.0',' ',' '); -INSERT INTO entity_versions VALUES(1957,6,'5.15.15','04/28/2021',' '); -INSERT INTO entity_versions VALUES(1958,6,'5.15.14','12/09/2020',' '); -INSERT INTO entity_versions VALUES(1959,6,'5.15.13',' ',' '); -INSERT INTO entity_versions VALUES(1960,6,'5.15.12',' ',' '); -INSERT INTO entity_versions VALUES(1961,6,'5.15.11',' ',' '); -INSERT INTO entity_versions VALUES(1962,6,'5.15.10',' ',' '); -INSERT INTO entity_versions VALUES(1963,6,'5.15.9',' ',' '); -INSERT INTO entity_versions VALUES(1964,6,'5.15.8',' ',' '); -INSERT INTO entity_versions VALUES(1965,6,'5.15.7',' ',' '); -INSERT INTO entity_versions VALUES(1966,6,'5.15.6',' ',' '); -INSERT INTO entity_versions VALUES(1967,6,'5.15.5',' ',' '); -INSERT INTO entity_versions VALUES(1968,6,'5.15.4',' ',' '); -INSERT INTO entity_versions VALUES(1969,6,'5.15.3',' ',' '); -INSERT INTO entity_versions VALUES(1970,6,'5.15.2',' ',' '); -INSERT INTO entity_versions VALUES(1971,6,'5.15.1',' ',' '); -INSERT INTO entity_versions VALUES(1972,6,'5.15.0',' ',' '); -INSERT INTO entity_versions VALUES(1973,6,'5.14.5',' ',' '); -INSERT INTO entity_versions VALUES(1974,6,'5.14.4',' ',' '); -INSERT INTO entity_versions VALUES(1975,6,'5.14.3',' ',' '); -INSERT INTO entity_versions VALUES(1976,6,'5.14.2',' ',' '); -INSERT INTO entity_versions VALUES(1977,6,'5.14.1',' ',' '); -INSERT INTO entity_versions VALUES(1978,6,'5.14.0',' ',' '); -INSERT INTO entity_versions VALUES(1979,6,'5.13.4',' ',' '); -INSERT INTO entity_versions VALUES(1980,6,'5.13.3',' ',' '); -INSERT INTO entity_versions VALUES(1981,6,'5.13.2',' ',' '); -INSERT INTO entity_versions VALUES(1982,6,'5.13.1',' ',' '); -INSERT INTO entity_versions VALUES(1983,6,'5.13.0',' ',' '); -INSERT INTO entity_versions VALUES(1984,6,'5.12.2',' ',' '); -INSERT INTO entity_versions VALUES(1985,6,'5.12.1',' ',' '); -INSERT INTO entity_versions VALUES(1986,6,'5.12.0',' ',' '); -INSERT INTO entity_versions VALUES(1987,6,'5.11.3',' ',' '); -INSERT INTO entity_versions VALUES(1988,6,'5.11.2',' ',' '); -INSERT INTO entity_versions VALUES(1989,6,'5.11.1',' ',' '); -INSERT INTO entity_versions VALUES(1990,6,'5.11.0',' ',' '); -INSERT INTO entity_versions VALUES(1991,6,'5.10.2',' ',' '); -INSERT INTO entity_versions VALUES(1992,6,'5.10.1',' ',' '); -INSERT INTO entity_versions VALUES(1993,6,'5.10.0',' ',' '); -INSERT INTO entity_versions VALUES(1994,6,'5.9.1',' ',' '); -INSERT INTO entity_versions VALUES(1995,6,'5.9.0',' ',' '); -INSERT INTO entity_versions VALUES(1996,6,'5.8.0',' ',' '); -INSERT INTO entity_versions VALUES(1997,6,'5.7.0',' ',' '); -INSERT INTO entity_versions VALUES(1998,6,'5.6.0',' ',' '); -INSERT INTO entity_versions VALUES(1999,6,'5.5.1',' ',' '); -INSERT INTO entity_versions VALUES(2000,6,'5.5.0',' ',' '); -INSERT INTO entity_versions VALUES(2001,6,'5.4.3',' ',' '); -INSERT INTO entity_versions VALUES(2002,6,'5.4.2',' ',' '); -INSERT INTO entity_versions VALUES(2003,6,'5.4.1',' ',' '); -INSERT INTO entity_versions VALUES(2004,6,'5.4.0',' ',' '); -INSERT INTO entity_versions VALUES(2005,6,'5.3.2',' ',' '); -INSERT INTO entity_versions VALUES(2006,6,'5.3.1',' ',' '); -INSERT INTO entity_versions VALUES(2007,6,'5.3.0',' ',' '); -INSERT INTO entity_versions VALUES(2008,6,'5.2.0',' ',' '); -INSERT INTO entity_versions VALUES(2009,6,'5.1.0',' ',' '); -INSERT INTO entity_versions VALUES(2010,6,'5.0.0',' ',' '); -INSERT INTO entity_versions VALUES(2011,240,'10',' ',' '); -INSERT INTO entity_versions VALUES(2012,240,'9.2',' ',' '); -INSERT INTO entity_versions VALUES(2013,248,'0',' ',' '); -INSERT INTO entity_versions VALUES(2014,248,'1',' ',' '); -INSERT INTO entity_versions VALUES(2015,248,'2',' ',' '); -INSERT INTO entity_versions VALUES(2016,248,'3',' ',' '); -INSERT INTO entity_versions VALUES(2017,248,'4',' ',' '); -INSERT INTO entity_versions VALUES(2018,79,'9.2',' ',' '); -INSERT INTO entity_versions VALUES(2019,79,'9.1',' ',' '); -INSERT INTO entity_versions VALUES(2020,79,'8.6',' ',' '); -INSERT INTO entity_versions VALUES(2021,83,'8.2',' ',' '); -INSERT INTO entity_versions VALUES(2022,83,'8.3',' ',' '); -INSERT INTO entity_versions VALUES(2023,83,'9',' ',' '); -INSERT INTO entity_versions VALUES(2024,83,'10',' ',' '); -INSERT INTO entity_versions VALUES(2025,157,'14','09/30/2021',' '); -INSERT INTO entity_versions VALUES(2026,157,'13','09/24/2020',' '); -INSERT INTO entity_versions VALUES(2027,157,'12','10/03/2019',' '); -INSERT INTO entity_versions VALUES(2028,157,'11','10/18/2018',' '); -INSERT INTO entity_versions VALUES(2029,157,'10','10/05/2017',' '); -INSERT INTO entity_versions VALUES(2030,157,'9.6','09/29/2016',' '); -INSERT INTO entity_versions VALUES(2031,157,'9.5','01/07/2016',' '); -INSERT INTO entity_versions VALUES(2032,157,'9.4','12/18/2014',' '); -INSERT INTO entity_versions VALUES(2033,157,'9.3','09/09/2013',' '); -INSERT INTO entity_versions VALUES(2034,157,'9.2','09/10/2012',' '); -INSERT INTO entity_versions VALUES(2035,157,'9.1','09/12/2011',' '); -INSERT INTO entity_versions VALUES(2036,157,'9','09/20/2010',' '); -INSERT INTO entity_versions VALUES(2037,157,'8.4','07/01/2009',' '); -INSERT INTO entity_versions VALUES(2038,157,'8.3','02/04/2008',' '); -INSERT INTO entity_versions VALUES(2039,157,'8.2','12/05/2006',' '); -INSERT INTO entity_versions VALUES(2040,157,'8.1','11/08/2005',' '); -INSERT INTO entity_versions VALUES(2041,157,'8','01/19/2005',' '); -INSERT INTO entity_versions VALUES(2042,157,'7.4','11/17/2003',' '); -INSERT INTO entity_versions VALUES(2043,157,'7.3','11/27/2002',' '); -INSERT INTO entity_versions VALUES(2044,157,'7.2','02/04/2002',' '); -INSERT INTO entity_versions VALUES(2045,157,'7.1','04/13/2001',' '); -INSERT INTO entity_versions VALUES(2046,157,'7','05/08/2000',' '); -INSERT INTO entity_versions VALUES(2047,157,'6.5','06/09/1999',' '); -INSERT INTO entity_versions VALUES(2048,157,'6.4','10/30/1998',' '); -INSERT INTO entity_versions VALUES(2049,157,'6.3','03/01/1998',' '); -INSERT INTO entity_versions VALUES(2050,11,'1','12/31/2007',' '); -INSERT INTO entity_versions VALUES(2051,11,'1.3','12/31/2008',' '); -INSERT INTO entity_versions VALUES(2052,11,'1.4','12/31/2009',' '); -INSERT INTO entity_versions VALUES(2053,11,'4','10/31/2012',' '); -INSERT INTO entity_versions VALUES(2054,11,'5','10/31/2015',' '); -INSERT INTO entity_versions VALUES(2055,11,'6','04/30/2016',' '); -INSERT INTO entity_versions VALUES(2056,11,'7','09/30/2017',' '); -INSERT INTO entity_versions VALUES(2057,11,'8','03/31/2019',' '); -INSERT INTO entity_versions VALUES(2058,73,'08.10.05','12/18/2020',' '); -INSERT INTO entity_versions VALUES(2059,73,'08.10.02','06/19/2019',' '); -INSERT INTO entity_versions VALUES(2060,73,'08.10.00','12/07/2018',' '); -INSERT INTO entity_versions VALUES(2061,73,'08.09.02','03/23/2018','04/30/2022'); -INSERT INTO entity_versions VALUES(2062,73,'08.09.01','11/10/2017','04/30/2022'); -INSERT INTO entity_versions VALUES(2063,73,'08.09.00','03/03/2017','04/30/2022'); -INSERT INTO entity_versions VALUES(2064,73,'08.08.01','07/19/2016','04/30/2021'); -INSERT INTO entity_versions VALUES(2065,73,'08.08.00','11/27/2015','04/30/2021'); -INSERT INTO entity_versions VALUES(2066,73,'08.07.01','05/15/2015','04/30/2020'); -INSERT INTO entity_versions VALUES(2067,73,'08.07.00','12/05/2014','04/30/2020'); -INSERT INTO entity_versions VALUES(2068,73,'08.06.00','06/06/2014','09/30/2019'); -INSERT INTO entity_versions VALUES(2069,73,'08.05.01','11/29/2013','09/30/2018'); -INSERT INTO entity_versions VALUES(2070,73,'08.05.00','06/07/2013','09/30/2018'); -INSERT INTO entity_versions VALUES(2071,73,'08.00.01','12/30/2012','09/30/2017'); -INSERT INTO entity_versions VALUES(2072,73,'08.00.00','06/08/2012','09/30/2017'); -INSERT INTO entity_versions VALUES(2073,73,'07.05.00','11/18/2011','04/30/2017'); -INSERT INTO entity_versions VALUES(2074,73,'07.01.00','10/15/2010','09/30/2017'); -INSERT INTO entity_versions VALUES(2075,176,'7.6','12/31/2016',' '); -INSERT INTO entity_versions VALUES(2076,176,'7.7','12/31/2017',' '); -INSERT INTO entity_versions VALUES(2077,176,'7.8','12/31/2017',' '); -INSERT INTO entity_versions VALUES(2078,176,'7.9',' ',' '); -INSERT INTO entity_versions VALUES(2079,581,'1.0','12/31/1989',' '); -INSERT INTO entity_versions VALUES(2080,581,'1.1','12/31/1990',' '); -INSERT INTO entity_versions VALUES(2081,581,'4.2A','12/31/1990',' '); -INSERT INTO entity_versions VALUES(2082,581,'4.2B','12/31/1993',' '); -INSERT INTO entity_versions VALUES(2083,581,'4.21','12/31/1993',' '); -INSERT INTO entity_versions VALUES(2084,581,'6','12/31/1995',' '); -INSERT INTO entity_versions VALUES(2085,581,'6.5','12/31/1996',' '); -INSERT INTO entity_versions VALUES(2086,581,'7','12/31/1998',' '); -INSERT INTO entity_versions VALUES(2087,581,'8','12/31/2000','04/08/2008'); -INSERT INTO entity_versions VALUES(2088,581,'9','01/14/2006','04/12/2011'); -INSERT INTO entity_versions VALUES(2089,581,'10','11/06/2008','07/08/2014'); -INSERT INTO entity_versions VALUES(2090,581,'10.25','12/31/2010',' '); -INSERT INTO entity_versions VALUES(2091,581,'10.5','07/20/2010','07/08/2014'); -INSERT INTO entity_versions VALUES(2092,581,'11','05/20/2012','07/11/2017'); -INSERT INTO entity_versions VALUES(2093,581,'12','06/05/2014','07/09/2019'); -INSERT INTO entity_versions VALUES(2094,581,'13','06/01/2016','07/13/2021'); -INSERT INTO entity_versions VALUES(2095,581,'14','09/29/2017','10/11/2022'); -INSERT INTO entity_versions VALUES(2096,581,'15','11/04/2019','01/07/2025'); -INSERT INTO entity_versions VALUES(2097,121,'1.0','10/26/2000',' '); -INSERT INTO entity_versions VALUES(2098,121,'2.0',' ',' '); -INSERT INTO entity_versions VALUES(2099,121,'3.0',' ',' '); -INSERT INTO entity_versions VALUES(2100,121,'3.1','02/19/2007','04/12/2016'); -INSERT INTO entity_versions VALUES(2101,121,'3.5','02/19/2008','04/10/2018'); -INSERT INTO entity_versions VALUES(2102,121,'4.0','04/13/2011','07/13/2021'); -INSERT INTO entity_versions VALUES(2103,31,' ',' ',' '); -INSERT INTO entity_versions VALUES(2104,190,'3','12/31/1988',' '); -INSERT INTO entity_versions VALUES(2105,190,'4','12/31/1990',' '); -INSERT INTO entity_versions VALUES(2106,190,'4.2','12/31/1991',' '); -INSERT INTO entity_versions VALUES(2107,190,'4.8','12/31/1992',' '); -INSERT INTO entity_versions VALUES(2108,190,'4.9','12/31/1992',' '); -INSERT INTO entity_versions VALUES(2109,190,'4.9.1','12/31/1993',' '); -INSERT INTO entity_versions VALUES(2110,190,'4.9.2','12/31/1993',' '); -INSERT INTO entity_versions VALUES(2111,190,'11','12/31/1995',' '); -INSERT INTO entity_versions VALUES(2112,190,'11.5','12/31/1997',' '); -INSERT INTO entity_versions VALUES(2113,190,'11.9','12/31/1998',' '); -INSERT INTO entity_versions VALUES(2114,190,'11.9.2','12/31/1998',' '); -INSERT INTO entity_versions VALUES(2115,190,'12','12/31/1999',' '); -INSERT INTO entity_versions VALUES(2116,190,'12.5','12/31/2001',' '); -INSERT INTO entity_versions VALUES(2117,190,'12.5.0.1','12/31/2002',' '); -INSERT INTO entity_versions VALUES(2118,190,'12.5.0.3','12/31/2003',' '); -INSERT INTO entity_versions VALUES(2119,190,'12.5.2','12/31/2004',' '); -INSERT INTO entity_versions VALUES(2120,190,'12.5.3','12/31/2005',' '); -INSERT INTO entity_versions VALUES(2121,190,'12.5.4','12/31/2006',' '); -INSERT INTO entity_versions VALUES(2122,190,'15','12/31/2005',' '); -INSERT INTO entity_versions VALUES(2123,190,'15.0.1','12/31/2006',' '); -INSERT INTO entity_versions VALUES(2124,190,'15.0.2','12/31/2007',' '); -INSERT INTO entity_versions VALUES(2125,190,'15.5',' ',' '); -INSERT INTO entity_versions VALUES(2126,190,'16',' ',' '); -INSERT INTO entity_versions VALUES(2127,436,'12.04.5','07/08/2014','04/28/2017'); -INSERT INTO entity_versions VALUES(2128,436,'12.04.5','07/08/2014','04/28/2017'); -INSERT INTO entity_versions VALUES(2129,436,'12.04.5','07/08/2014','04/28/2017'); -INSERT INTO entity_versions VALUES(2130,436,'14.04.6','03/07/2019','04/30/2022'); -INSERT INTO entity_versions VALUES(2131,436,'14.04.6','03/07/2019','04/30/2022'); -INSERT INTO entity_versions VALUES(2132,436,'14.04.6','03/07/2019','04/30/2022'); -INSERT INTO entity_versions VALUES(2133,436,'16.04.7','08/18/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2134,436,'16.04.7','08/18/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2135,436,'16.04.7','08/18/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2136,436,'16.04.7','08/18/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2137,436,'18.04.5','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2138,436,'18.04.5','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2139,436,'18.04.5','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2140,436,'18.04.5','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2141,436,'20.04.1','08/06/2020','04/30/2025'); -INSERT INTO entity_versions VALUES(2142,436,'20.04.1','08/06/2020','04/30/2025'); -INSERT INTO entity_versions VALUES(2143,436,'20.04.1','08/06/2020','04/30/2025'); -INSERT INTO entity_versions VALUES(2144,436,'20.04.1','08/06/2020','04/30/2025'); -INSERT INTO entity_versions VALUES(2145,436,'20.10','10/22/2020','07/22/2021'); -INSERT INTO entity_versions VALUES(2146,436,'20.10','10/22/2020','07/22/2021'); -INSERT INTO entity_versions VALUES(2147,436,'4.1','10/26/2004','04/30/2006'); -INSERT INTO entity_versions VALUES(2148,436,'5.04','04/08/2005','10/31/2006'); -INSERT INTO entity_versions VALUES(2149,436,'5.1','10/12/2005','04/13/2007'); -INSERT INTO entity_versions VALUES(2150,436,'6.06.0','06/01/2006','07/14/2009'); -INSERT INTO entity_versions VALUES(2151,436,'6.06.1','08/10/2006',' '); -INSERT INTO entity_versions VALUES(2152,436,'6.06.2','01/21/2008',' '); -INSERT INTO entity_versions VALUES(2153,436,'6.1','10/26/2006','04/26/2008'); -INSERT INTO entity_versions VALUES(2154,436,'7.04','04/19/2007','10/19/2008'); -INSERT INTO entity_versions VALUES(2155,436,'7.1','10/18/2007','04/18/2009'); -INSERT INTO entity_versions VALUES(2156,436,'8.04.0','04/24/2008','05/12/2011'); -INSERT INTO entity_versions VALUES(2157,436,'8.04.1','07/03/2008',' '); -INSERT INTO entity_versions VALUES(2158,436,'8.04.2','01/22/2009',' '); -INSERT INTO entity_versions VALUES(2159,436,'8.04.3','07/16/2009',' '); -INSERT INTO entity_versions VALUES(2160,436,'8.04.4','01/28/2010',' '); -INSERT INTO entity_versions VALUES(2161,436,'8.1','10/30/2008','04/30/2010'); -INSERT INTO entity_versions VALUES(2162,436,'9.04','04/23/2009','10/23/2010'); -INSERT INTO entity_versions VALUES(2163,436,'9.1','08/23/2013','04/30/2011'); -INSERT INTO entity_versions VALUES(2164,436,'10.04.0','10/21/2015','05/09/2013'); -INSERT INTO entity_versions VALUES(2165,436,'10.04.1','10/21/2015',' '); -INSERT INTO entity_versions VALUES(2166,436,'10.04.2','10/21/2015',' '); -INSERT INTO entity_versions VALUES(2167,436,'10.04.3','10/21/2015',' '); -INSERT INTO entity_versions VALUES(2168,436,'10.04.4','10/21/2015',' '); -INSERT INTO entity_versions VALUES(2169,436,'10.1','08/23/2013','04/10/2012'); -INSERT INTO entity_versions VALUES(2170,436,'11.04','08/23/2013','10/28/2012'); -INSERT INTO entity_versions VALUES(2171,436,'11.1','08/23/2013','05/09/2013'); -INSERT INTO entity_versions VALUES(2172,436,'12.04.0','04/27/2018','04/28/2017'); -INSERT INTO entity_versions VALUES(2173,436,'12.04.1','04/27/2018','04/28/2017'); -INSERT INTO entity_versions VALUES(2174,436,'12.04.2','04/27/2018','08/08/2014'); -INSERT INTO entity_versions VALUES(2175,436,'12.04.3','04/27/2018','08/08/2014'); -INSERT INTO entity_versions VALUES(2176,436,'12.04.4','04/27/2018','08/08/2014'); -INSERT INTO entity_versions VALUES(2177,436,'12.1','04/22/2016','05/16/2014'); -INSERT INTO entity_versions VALUES(2178,436,'13.04','04/22/2016','01/27/2014'); -INSERT INTO entity_versions VALUES(2179,436,'13.1','04/22/2016','07/17/2014'); -INSERT INTO entity_versions VALUES(2180,436,'14.04.0','03/07/2019','04/30/2019'); -INSERT INTO entity_versions VALUES(2181,436,'14.04.1','03/07/2019','04/30/2019'); -INSERT INTO entity_versions VALUES(2182,436,'14.04.2','03/07/2019','08/31/2016'); -INSERT INTO entity_versions VALUES(2183,436,'14.04.3','03/07/2019','08/31/2016'); -INSERT INTO entity_versions VALUES(2184,436,'14.04.4','03/07/2019','08/31/2016'); -INSERT INTO entity_versions VALUES(2185,436,'14.04.5','03/07/2019','04/30/2019'); -INSERT INTO entity_versions VALUES(2186,436,'14.1','04/22/2016','07/23/2015'); -INSERT INTO entity_versions VALUES(2187,436,'15.04','04/28/2016','02/04/2016'); -INSERT INTO entity_versions VALUES(2188,436,'15.1','08/04/2016','07/28/2016'); -INSERT INTO entity_versions VALUES(2189,436,'16.04.0','08/13/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2190,436,'16.04.1','08/13/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2191,436,'16.04.2','08/13/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2192,436,'16.04.3','08/13/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2193,436,'16.04.4','08/13/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2194,436,'16.04.5','08/13/2020','04/30/2021'); -INSERT INTO entity_versions VALUES(2195,436,'16.1','07/21/2017','07/20/2017'); -INSERT INTO entity_versions VALUES(2196,436,'17.04','02/07/2018','01/13/2018'); -INSERT INTO entity_versions VALUES(2197,436,'17.1','08/02/2018','07/19/2018'); -INSERT INTO entity_versions VALUES(2198,436,'18.04.0','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2199,436,'18.04.1','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2200,436,'18.04.2','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2201,436,'18.04.3','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2202,436,'18.04.4','08/13/2020','04/30/2023'); -INSERT INTO entity_versions VALUES(2203,436,'18.1','08/08/2019','07/18/2019'); -INSERT INTO entity_versions VALUES(2204,436,'19.04','08/18/2020','04/18/2019'); -INSERT INTO entity_versions VALUES(2205,436,'19.1','08/21/2020','10/17/2019'); -INSERT INTO entity_versions VALUES(2206,436,'20.04.0','02/11/2021','04/30/2025'); -INSERT INTO entity_versions VALUES(2207,436,'20.04.1','02/11/2021','04/30/2025'); -INSERT INTO entity_versions VALUES(2208,436,'20.04','02/11/2021','04/30/2025'); -INSERT INTO entity_versions VALUES(2209,436,'20.1','10/22/2020','01/31/2022'); -INSERT INTO entity_versions VALUES(2210,434,'8.3','11/03/2020','05/31/2029'); -INSERT INTO entity_versions VALUES(2211,434,'8.2','04/28/2020','05/31/2029'); -INSERT INTO entity_versions VALUES(2212,434,'8.1','11/05/2019','05/31/2029'); -INSERT INTO entity_versions VALUES(2213,434,'8','05/07/2019','05/31/2029'); -INSERT INTO entity_versions VALUES(2214,434,'7.9','09/29/2020','06/30/2024'); -INSERT INTO entity_versions VALUES(2215,434,'7.8','03/31/2020','06/30/2024'); -INSERT INTO entity_versions VALUES(2216,434,'7.7','08/06/2019','06/30/2024'); -INSERT INTO entity_versions VALUES(2217,434,'7.6','10/30/2018','06/30/2024'); -INSERT INTO entity_versions VALUES(2218,434,'7.5','04/10/2018','06/30/2024'); -INSERT INTO entity_versions VALUES(2219,434,'7.4','07/31/2017','06/30/2024'); -INSERT INTO entity_versions VALUES(2220,434,'7.3','11/03/2016','06/30/2024'); -INSERT INTO entity_versions VALUES(2221,434,'7.2','11/19/2015','06/30/2024'); -INSERT INTO entity_versions VALUES(2222,434,'7.1','03/05/2015','06/30/2024'); -INSERT INTO entity_versions VALUES(2223,434,'7.0','06/09/2014',' '); -INSERT INTO entity_versions VALUES(2224,434,'7.0','12/11/2013',' '); -INSERT INTO entity_versions VALUES(2225,434,'6.10','06/19/2018','11/30/2020'); -INSERT INTO entity_versions VALUES(2226,434,'6.9','03/21/2017','11/30/2020'); -INSERT INTO entity_versions VALUES(2227,434,'6.8','05/10/2016','11/30/2020'); -INSERT INTO entity_versions VALUES(2228,434,'6.7','07/22/2015','11/30/2020'); -INSERT INTO entity_versions VALUES(2229,434,'6.6','10/14/2014','11/30/2020'); -INSERT INTO entity_versions VALUES(2230,434,'6.5','11/21/2013','11/30/2020'); -INSERT INTO entity_versions VALUES(2231,434,'6.4','02/21/2013','11/30/2020'); -INSERT INTO entity_versions VALUES(2232,434,'6.3','06/20/2012','11/30/2020'); -INSERT INTO entity_versions VALUES(2233,434,'6.2','12/06/2011','11/30/2020'); -INSERT INTO entity_versions VALUES(2234,434,'6.1','05/19/2011','11/30/2020'); -INSERT INTO entity_versions VALUES(2235,434,'6.0','11/09/2010','11/30/2020'); -INSERT INTO entity_versions VALUES(2236,434,'5.11','09/16/2014','03/31/2017'); -INSERT INTO entity_versions VALUES(2237,434,'5.10','10/01/2013','03/31/2017'); -INSERT INTO entity_versions VALUES(2238,434,'5.9','01/07/2013','03/31/2017'); -INSERT INTO entity_versions VALUES(2239,434,'5.8','02/20/2012','03/31/2017'); -INSERT INTO entity_versions VALUES(2240,434,'5.7','07/21/2011','03/31/2017'); -INSERT INTO entity_versions VALUES(2241,434,'5.6','01/13/2011','03/31/2017'); -INSERT INTO entity_versions VALUES(2242,434,'5.5','03/30/2010','03/31/2017'); -INSERT INTO entity_versions VALUES(2243,434,'5.4','09/02/2009','03/31/2017'); -INSERT INTO entity_versions VALUES(2244,434,'5.3','01/20/2009','03/31/2017'); -INSERT INTO entity_versions VALUES(2245,434,'5.2','05/21/2008','03/31/2017'); -INSERT INTO entity_versions VALUES(2246,434,'5.1','11/07/2007','03/31/2017'); -INSERT INTO entity_versions VALUES(2247,434,'5.0','03/15/2007','03/31/2017'); -INSERT INTO entity_versions VALUES(2248,434,'4.9','02/16/2011','02/16/2011'); -INSERT INTO entity_versions VALUES(2249,434,'4.8','05/19/2009','02/16/2011'); -INSERT INTO entity_versions VALUES(2250,434,'4.7','07/29/2008','02/16/2011'); -INSERT INTO entity_versions VALUES(2251,434,'4.6','11/15/2007','02/16/2011'); -INSERT INTO entity_versions VALUES(2252,434,'4.5','05/01/2007','02/16/2011'); -INSERT INTO entity_versions VALUES(2253,434,'4.4','08/10/2006','02/16/2011'); -INSERT INTO entity_versions VALUES(2254,434,'4.3','03/12/2006','02/16/2011'); -INSERT INTO entity_versions VALUES(2255,434,'4.2','10/05/2005','02/16/2011'); -INSERT INTO entity_versions VALUES(2256,434,'4.1','06/08/2005','02/16/2011'); -INSERT INTO entity_versions VALUES(2257,434,'4','02/15/2005','02/16/2011'); -INSERT INTO entity_versions VALUES(2258,434,'3.9','06/20/2007','10/21/2010'); -INSERT INTO entity_versions VALUES(2259,434,'3.8','07/20/2006','10/21/2010'); -INSERT INTO entity_versions VALUES(2260,434,'3.7','03/17/2006','10/21/2010'); -INSERT INTO entity_versions VALUES(2261,434,'3.6','09/28/2005','10/21/2010'); -INSERT INTO entity_versions VALUES(2262,434,'3.5','05/18/2005','10/21/2010'); -INSERT INTO entity_versions VALUES(2263,434,'3.4','12/12/2004','10/21/2010'); -INSERT INTO entity_versions VALUES(2264,434,'3.3','09/03/2004','10/21/2010'); -INSERT INTO entity_versions VALUES(2265,434,'3.2','05/12/2004','10/21/2010'); -INSERT INTO entity_versions VALUES(2266,434,'3.1','01/16/2004','10/21/2010'); -INSERT INTO entity_versions VALUES(2267,434,'3','10/22/2003','10/21/2010'); -INSERT INTO entity_versions VALUES(2268,434,'2.1.7','04/28/2005','05/31/2009'); -INSERT INTO entity_versions VALUES(2269,434,'2.1.6','12/13/2004','05/31/2009'); -INSERT INTO entity_versions VALUES(2270,434,'2.1.5','08/18/2004','05/31/2009'); -INSERT INTO entity_versions VALUES(2271,434,'2.1.4','04/21/2004','05/31/2009'); -INSERT INTO entity_versions VALUES(2272,434,'2.1.3','12/19/2004','05/31/2009'); -INSERT INTO entity_versions VALUES(2273,434,'2.1.2','03/29/2003','05/31/2009'); -INSERT INTO entity_versions VALUES(2274,434,'2.1.1','02/14/2003','05/31/2009'); -INSERT INTO entity_versions VALUES(2275,434,'2.1','03/23/2002','05/31/2009'); -INSERT INTO entity_versions VALUES(2276,429,'0.9','08/01/1993',' '); -INSERT INTO entity_versions VALUES(2277,429,'0.91','01/01/1994',' '); -INSERT INTO entity_versions VALUES(2278,429,'0.93R5','03/01/1995',' '); -INSERT INTO entity_versions VALUES(2279,429,'0.93R6','11/01/1995',' '); -INSERT INTO entity_versions VALUES(2280,429,'1',' ',' '); -INSERT INTO entity_versions VALUES(2281,429,'1.1','06/17/1996',' '); -INSERT INTO entity_versions VALUES(2282,429,'1.2','12/12/1996',' '); -INSERT INTO entity_versions VALUES(2283,429,'1.3','06/05/1997',' '); -INSERT INTO entity_versions VALUES(2284,429,'2.0','07/24/1998',' '); -INSERT INTO entity_versions VALUES(2285,429,'2.1','03/09/1999','09/30/2000'); -INSERT INTO entity_versions VALUES(2286,429,'2.2','08/15/2000','06/30/2003'); -INSERT INTO entity_versions VALUES(2287,429,'3.0','07/19/2002','06/30/2006'); -INSERT INTO entity_versions VALUES(2288,429,'3.1','06/06/2005','03/31/2008'); -INSERT INTO entity_versions VALUES(2289,429,'4.0','04/08/2007','02/15/2010'); -INSERT INTO entity_versions VALUES(2290,429,'5.0','02/14/2009','02/06/2012'); -INSERT INTO entity_versions VALUES(2291,429,'6.0','02/06/2011','05/31/2015'); -INSERT INTO entity_versions VALUES(2292,429,'7','05/04/2013','04/26/2016'); -INSERT INTO entity_versions VALUES(2293,429,'8','04/26/2015','06/30/2020'); -INSERT INTO entity_versions VALUES(2294,429,'9','06/17/2017','01/31/2020'); -INSERT INTO entity_versions VALUES(2295,429,'10','07/06/2019','01/31/2022'); -INSERT INTO entity_versions VALUES(2296,429,'11',' ',' '); -INSERT INTO entity_versions VALUES(2297,429,'12',' ',' '); -INSERT INTO entity_versions VALUES(2298,429,'13',' ',' '); -INSERT INTO entity_versions VALUES(2299,427,'2.1','08/19/2009',' '); -INSERT INTO entity_versions VALUES(2300,427,'3.1','07/31/2005','10/31/2010'); -INSERT INTO entity_versions VALUES(2301,427,'3.3','03/17/2005','10/31/2010'); -INSERT INTO entity_versions VALUES(2302,427,'3.4','03/01/2005','10/31/2010'); -INSERT INTO entity_versions VALUES(2303,427,'3.5','07/28/2005','10/31/2010'); -INSERT INTO entity_versions VALUES(2304,427,'3.6','04/04/2006','10/31/2010'); -INSERT INTO entity_versions VALUES(2305,427,'3.7','05/06/2006','10/31/2010'); -INSERT INTO entity_versions VALUES(2306,427,'3.8','04/20/2012','10/31/2010'); -INSERT INTO entity_versions VALUES(2307,427,'3.9','04/20/2012','10/31/2010'); -INSERT INTO entity_versions VALUES(2308,427,'4','06/23/2005','02/29/2012'); -INSERT INTO entity_versions VALUES(2309,427,'4.0','09/15/2005','02/29/2012'); -INSERT INTO entity_versions VALUES(2310,427,'4.1','10/19/2005','02/29/2012'); -INSERT INTO entity_versions VALUES(2311,427,'4.2','11/04/2006','02/29/2012'); -INSERT INTO entity_versions VALUES(2312,427,'4.2.0','10/23/2005','02/29/2012'); -INSERT INTO entity_versions VALUES(2313,427,'4.3','08/27/2006','02/29/2012'); -INSERT INTO entity_versions VALUES(2314,427,'4.4','11/01/2006','02/29/2012'); -INSERT INTO entity_versions VALUES(2315,427,'4.5','12/08/2007','02/29/2012'); -INSERT INTO entity_versions VALUES(2316,427,'4.6','09/18/2008','02/29/2012'); -INSERT INTO entity_versions VALUES(2317,427,'4.7','02/14/2010','02/29/2012'); -INSERT INTO entity_versions VALUES(2318,427,'4.8','04/20/2012','02/29/2012'); -INSERT INTO entity_versions VALUES(2319,427,'4.9','04/20/2012','02/29/2012'); -INSERT INTO entity_versions VALUES(2320,427,'5','04/11/2007','03/31/2017'); -INSERT INTO entity_versions VALUES(2321,427,'5.1','11/27/2007','03/31/2017'); -INSERT INTO entity_versions VALUES(2322,427,'5.2','06/18/2008','03/31/2017'); -INSERT INTO entity_versions VALUES(2323,427,'5.3','02/14/2010','03/31/2017'); -INSERT INTO entity_versions VALUES(2324,427,'5.4','06/25/2010','03/31/2017'); -INSERT INTO entity_versions VALUES(2325,427,'5.5','05/14/2010','03/31/2017'); -INSERT INTO entity_versions VALUES(2326,427,'5.6','08/12/2011','03/31/2017'); -INSERT INTO entity_versions VALUES(2327,427,'5.7','09/13/2011','03/31/2017'); -INSERT INTO entity_versions VALUES(2328,427,'5.8','02/27/2012','03/31/2017'); -INSERT INTO entity_versions VALUES(2329,427,'5.9','01/12/2013','03/31/2017'); -INSERT INTO entity_versions VALUES(2330,427,'5.1','10/07/2014','03/31/2017'); -INSERT INTO entity_versions VALUES(2331,427,'5.11','09/27/2014','03/31/2017'); -INSERT INTO entity_versions VALUES(2332,427,'6','12/19/2011','05/10/2017'); -INSERT INTO entity_versions VALUES(2333,427,'6.1','12/08/2011','05/10/2017'); -INSERT INTO entity_versions VALUES(2334,427,'6.2','12/19/2011','05/10/2017'); -INSERT INTO entity_versions VALUES(2335,427,'6.3','07/09/2012','05/10/2017'); -INSERT INTO entity_versions VALUES(2336,427,'6.4','06/20/2013','05/10/2017'); -INSERT INTO entity_versions VALUES(2337,427,'6.5','12/21/2013','05/10/2017'); -INSERT INTO entity_versions VALUES(2338,427,'6.6','07/31/2015','05/10/2017'); -INSERT INTO entity_versions VALUES(2339,427,'6.7','01/21/2016','05/10/2017'); -INSERT INTO entity_versions VALUES(2340,427,'6.8','05/24/2016','05/10/2017'); -INSERT INTO entity_versions VALUES(2341,427,'6.9','04/04/2017','05/10/2017'); -INSERT INTO entity_versions VALUES(2342,427,'6.1','07/02/2018','05/10/2017'); -INSERT INTO entity_versions VALUES(2343,427,'7.0.1406','04/07/2015','08/06/2020'); -INSERT INTO entity_versions VALUES(2344,427,'7.1.1503','11/13/2015','08/06/2020'); -INSERT INTO entity_versions VALUES(2345,427,'7.2.1511','05/18/2016','08/06/2020'); -INSERT INTO entity_versions VALUES(2346,427,'7.3.1611','02/20/2017','08/06/2020'); -INSERT INTO entity_versions VALUES(2347,427,'7.4.1708','02/26/2018','08/06/2020'); -INSERT INTO entity_versions VALUES(2348,427,'7.5.1804','05/09/2018','08/06/2020'); -INSERT INTO entity_versions VALUES(2349,427,'7.6.1810','12/02/2018','08/06/2020'); -INSERT INTO entity_versions VALUES(2350,427,'7.7.1908','09/15/2019','08/06/2020'); -INSERT INTO entity_versions VALUES(2351,427,'7.8.2003','06/17/2020','08/06/2020'); -INSERT INTO entity_versions VALUES(2352,427,'7.9.2009','01/18/2021','08/06/2020'); -INSERT INTO entity_versions VALUES(2353,427,'8.0','03/10/2021','05/31/2024'); -INSERT INTO entity_versions VALUES(2354,427,'8.0.1905','09/09/2020','05/31/2024'); -INSERT INTO entity_versions VALUES(2355,427,'8.1.1911','10/21/2020','05/31/2024'); -INSERT INTO entity_versions VALUES(2356,427,'8.2.2004','01/15/2021','05/31/2024'); -INSERT INTO entity_versions VALUES(2357,427,'8.3.2011','02/22/2021','05/31/2024'); -INSERT INTO entity_versions VALUES(2358,453,'1','11/05/2003','09/20/2004'); -INSERT INTO entity_versions VALUES(2359,453,'2','05/18/2004','04/11/2005'); -INSERT INTO entity_versions VALUES(2360,453,'3','11/08/2004','01/16/2006'); -INSERT INTO entity_versions VALUES(2361,453,'4','06/13/2005','08/07/2006'); -INSERT INTO entity_versions VALUES(2362,453,'5','03/20/2006','07/02/2007'); -INSERT INTO entity_versions VALUES(2363,453,'6','10/24/2006','12/07/2007'); -INSERT INTO entity_versions VALUES(2364,453,'7','05/31/2007','06/13/2008'); -INSERT INTO entity_versions VALUES(2365,453,'8','11/08/2007','01/07/2009'); -INSERT INTO entity_versions VALUES(2366,453,'9','05/13/2008','07/10/2009'); -INSERT INTO entity_versions VALUES(2367,453,'10','11/25/2008','12/17/2009'); -INSERT INTO entity_versions VALUES(2368,453,'11','06/09/2009','06/25/2010'); -INSERT INTO entity_versions VALUES(2369,453,'12','11/17/2009','12/02/2010'); -INSERT INTO entity_versions VALUES(2370,453,'13','05/25/2010','06/24/2011'); -INSERT INTO entity_versions VALUES(2371,453,'14','11/02/2010','12/09/2011'); -INSERT INTO entity_versions VALUES(2372,453,'15','05/24/2011','06/26/2012'); -INSERT INTO entity_versions VALUES(2373,453,'16','11/08/2011','02/12/2013'); -INSERT INTO entity_versions VALUES(2374,453,'17','05/29/2012','07/30/2013'); -INSERT INTO entity_versions VALUES(2375,453,'18','01/15/2013','01/14/2014'); -INSERT INTO entity_versions VALUES(2376,453,'19','07/02/2013','01/06/2015'); -INSERT INTO entity_versions VALUES(2377,453,'20','12/17/2013','06/23/2015'); -INSERT INTO entity_versions VALUES(2378,453,'21','12/09/2014','01/12/2015'); -INSERT INTO entity_versions VALUES(2379,453,'22','05/26/2015','07/19/2016'); -INSERT INTO entity_versions VALUES(2380,453,'23','11/03/2015','12/20/2016'); -INSERT INTO entity_versions VALUES(2381,453,'24','06/21/2016','08/08/2017'); -INSERT INTO entity_versions VALUES(2382,453,'25','11/22/2016','12/12/2017'); -INSERT INTO entity_versions VALUES(2383,453,'26','07/11/2017','05/29/2018'); -INSERT INTO entity_versions VALUES(2384,453,'27','11/14/2017','11/30/2018'); -INSERT INTO entity_versions VALUES(2385,453,'28','05/01/2018','05/28/2019'); -INSERT INTO entity_versions VALUES(2386,453,'29','10/30/2018','11/26/2019'); -INSERT INTO entity_versions VALUES(2387,453,'30','05/07/2019','05/26/2020'); -INSERT INTO entity_versions VALUES(2388,453,'31','10/29/2019','11/24/2020'); -INSERT INTO entity_versions VALUES(2389,453,'32','04/28/2020','05/25/2021'); -INSERT INTO entity_versions VALUES(2390,453,'33','10/27/2020',' '); -INSERT INTO entity_versions VALUES(2391,453,'34','04/20/2021',' '); -INSERT INTO entity_versions VALUES(2392,453,'35','10/19/2021',' '); -INSERT INTO entity_versions VALUES(2393,432,'4.5',' ',' '); -INSERT INTO entity_versions VALUES(2394,432,'4.6','12/10/2007',' '); -INSERT INTO entity_versions VALUES(2395,432,'4.7','08/05/2008',' '); -INSERT INTO entity_versions VALUES(2396,432,'4.8','05/26/2009',' '); -INSERT INTO entity_versions VALUES(2397,432,'4.9',' ',' '); -INSERT INTO entity_versions VALUES(2398,432,'5','06/26/2007','03/31/2017'); -INSERT INTO entity_versions VALUES(2399,432,'5.1','11/26/2007','03/31/2017'); -INSERT INTO entity_versions VALUES(2400,432,'5.2','06/02/2008','03/31/2017'); -INSERT INTO entity_versions VALUES(2401,432,'5.3','01/28/2009','03/31/2017'); -INSERT INTO entity_versions VALUES(2402,432,'5.4','09/09/2009','03/31/2017'); -INSERT INTO entity_versions VALUES(2403,432,'5.5','04/07/2010','03/31/2017'); -INSERT INTO entity_versions VALUES(2404,432,'5.6','01/22/2011','03/31/2017'); -INSERT INTO entity_versions VALUES(2405,432,'5.7','08/16/2011','03/31/2017'); -INSERT INTO entity_versions VALUES(2406,432,'5.8','03/02/2012','03/31/2017'); -INSERT INTO entity_versions VALUES(2407,432,'5.9','01/16/2013','03/31/2017'); -INSERT INTO entity_versions VALUES(2408,432,'5.1','10/08/2013','03/31/2017'); -INSERT INTO entity_versions VALUES(2409,432,'5.11','09/23/2014','03/31/2017'); -INSERT INTO entity_versions VALUES(2410,432,'6','02/11/2011','03/31/2021'); -INSERT INTO entity_versions VALUES(2411,432,'6.1','06/01/2011','03/31/2021'); -INSERT INTO entity_versions VALUES(2412,432,'6.2','12/15/2011','03/31/2021'); -INSERT INTO entity_versions VALUES(2413,432,'6.3','06/28/2012','03/31/2021'); -INSERT INTO entity_versions VALUES(2414,432,'6.4','02/28/2013','03/31/2021'); -INSERT INTO entity_versions VALUES(2415,432,'6.5','11/27/2013','03/31/2021'); -INSERT INTO entity_versions VALUES(2416,432,'6.6','10/21/2014','03/31/2021'); -INSERT INTO entity_versions VALUES(2417,432,'6.7','07/31/2015','03/31/2021'); -INSERT INTO entity_versions VALUES(2418,432,' ','03/31/2017',' '); -INSERT INTO entity_versions VALUES(2419,432,'6.8','05/16/2016','03/31/2021'); -INSERT INTO entity_versions VALUES(2420,432,'6.9','03/28/2017','03/31/2021'); -INSERT INTO entity_versions VALUES(2421,432,'6.1','07/02/2018','03/31/2021'); -INSERT INTO entity_versions VALUES(2422,432,'7','07/23/2014','07/31/2024'); -INSERT INTO entity_versions VALUES(2423,432,'7.1','03/12/2015','07/31/2024'); -INSERT INTO entity_versions VALUES(2424,432,'7.2','11/25/2015','07/31/2024'); -INSERT INTO entity_versions VALUES(2425,432,'7.3','11/10/2016','07/31/2024'); -INSERT INTO entity_versions VALUES(2426,432,'7.4','08/08/2017','07/31/2024'); -INSERT INTO entity_versions VALUES(2427,432,'7.5','04/17/2018','07/31/2024'); -INSERT INTO entity_versions VALUES(2428,432,'7.6','11/07/2018','07/31/2024'); -INSERT INTO entity_versions VALUES(2429,432,'7.7','08/15/2019','07/31/2024'); -INSERT INTO entity_versions VALUES(2430,432,'7.8','04/08/2020','07/31/2024'); -INSERT INTO entity_versions VALUES(2431,432,'7.9','10/07/2020','07/31/2024'); -INSERT INTO entity_versions VALUES(2432,432,'8','07/18/2019','07/31/2029'); -INSERT INTO entity_versions VALUES(2433,432,'8.1','11/15/2019','07/31/2029'); -INSERT INTO entity_versions VALUES(2434,432,'8.2','05/06/2020','07/31/2029'); -INSERT INTO entity_versions VALUES(2435,432,'8.3','11/13/2020','07/31/2029'); -INSERT INTO entity_versions VALUES(2436,454,'2011.09',' ',' '); -INSERT INTO entity_versions VALUES(2437,454,'2012.03.3','06/27/2012',' '); -INSERT INTO entity_versions VALUES(2438,454,'2012.09.1','02/19/2013',' '); -INSERT INTO entity_versions VALUES(2439,454,'2013.03','05/13/2013',' '); -INSERT INTO entity_versions VALUES(2440,454,'2013.03.1','05/13/2013',' '); -INSERT INTO entity_versions VALUES(2441,454,'2013.09.1','11/11/2013',' '); -INSERT INTO entity_versions VALUES(2442,454,'2013.09.2','12/12/2013',' '); -INSERT INTO entity_versions VALUES(2443,454,'2014.03.1','04/14/2014',' '); -INSERT INTO entity_versions VALUES(2444,454,'2014.03.2','06/16/2014',' '); -INSERT INTO entity_versions VALUES(2445,454,'2014.09.1','10/14/2014',' '); -INSERT INTO entity_versions VALUES(2446,454,'2014.09.2','01/29/2015',' '); -INSERT INTO entity_versions VALUES(2447,454,'2015.03.1','08/21/2015',' '); -INSERT INTO entity_versions VALUES(2448,454,'2015.09.2','02/16/2016',' '); -INSERT INTO entity_versions VALUES(2449,454,'2016.03.1','05/04/2016',' '); -INSERT INTO entity_versions VALUES(2450,454,'2016.03.2','06/09/2016',' '); -INSERT INTO entity_versions VALUES(2451,454,'2016.03.3','06/28/2016',' '); -INSERT INTO entity_versions VALUES(2452,454,'2016.09.1','12/22/2016',' '); -INSERT INTO entity_versions VALUES(2453,454,'2017.03','06/19/2017',' '); -INSERT INTO entity_versions VALUES(2454,454,'2017.09','11/06/2017',' '); -INSERT INTO entity_versions VALUES(2455,454,'2018.03','05/14/2018',' '); -INSERT INTO entity_versions VALUES(2456,431,'10.2','12/07/2006','11/30/2008'); -INSERT INTO entity_versions VALUES(2457,431,'10.3','10/04/2007','10/31/2009'); -INSERT INTO entity_versions VALUES(2458,431,'11','06/19/2008','07/26/2010'); -INSERT INTO entity_versions VALUES(2459,431,'11.1','12/18/2008','01/14/2011'); -INSERT INTO entity_versions VALUES(2460,431,'11.2','11/12/2009','05/12/2011'); -INSERT INTO entity_versions VALUES(2461,431,'11.3','07/15/2010','01/20/2012'); -INSERT INTO entity_versions VALUES(2462,431,'11.4','03/10/2011','11/05/2012'); -INSERT INTO entity_versions VALUES(2463,431,'12.1','11/16/2011','05/15/2013'); -INSERT INTO entity_versions VALUES(2464,431,'12.2','09/05/2012','01/15/2014'); -INSERT INTO entity_versions VALUES(2465,431,'12.3','03/13/2013','01/29/2015'); -INSERT INTO entity_versions VALUES(2466,431,'13.1','11/19/2013','02/03/2016'); -INSERT INTO entity_versions VALUES(2467,431,'13.2','11/04/2014','01/17/2017'); -INSERT INTO entity_versions VALUES(2468,431,'42.1','11/04/2015','05/17/2017'); -INSERT INTO entity_versions VALUES(2469,431,'42.2','11/16/2016','01/26/2018'); -INSERT INTO entity_versions VALUES(2470,431,'42.3','07/26/2017','07/01/2019'); -INSERT INTO entity_versions VALUES(2471,431,'15','05/25/2018','12/03/2019'); -INSERT INTO entity_versions VALUES(2472,431,'15.1','05/22/2019','02/02/2021'); -INSERT INTO entity_versions VALUES(2473,431,'15.2','07/02/2020',' '); -INSERT INTO entity_versions VALUES(2474,431,'15.3','07/07/2021',' '); -INSERT INTO entity_versions VALUES(2475,435,'SuSE Linux Enterprise Server S/390','10/31/2000',' '); -INSERT INTO entity_versions VALUES(2476,435,'Sparc','04/01/2001',' '); -INSERT INTO entity_versions VALUES(2477,435,'IAs32','04/01/2001',' '); -INSERT INTO entity_versions VALUES(2478,435,'7','10/13/2001',' '); -INSERT INTO entity_versions VALUES(2479,435,'8','10/01/2002','12/20/2007'); -INSERT INTO entity_versions VALUES(2480,435,'8 SP1',' ',' '); -INSERT INTO entity_versions VALUES(2481,435,'8 SP2',' ',' '); -INSERT INTO entity_versions VALUES(2482,435,'8 SP2a',' ',' '); -INSERT INTO entity_versions VALUES(2483,435,'8 SP3',' ',' '); -INSERT INTO entity_versions VALUES(2484,435,'8 SP4',' ',' '); -INSERT INTO entity_versions VALUES(2485,435,'9','08/03/2004','08/31/2011'); -INSERT INTO entity_versions VALUES(2486,435,'9 SP1','01/19/2005','08/31/2011'); -INSERT INTO entity_versions VALUES(2487,435,'9 SP2','07/07/2005','08/31/2011'); -INSERT INTO entity_versions VALUES(2488,435,'9 SP3','12/22/2005','08/31/2011'); -INSERT INTO entity_versions VALUES(2489,435,'9 SP4','12/12/2007','08/31/2011'); -INSERT INTO entity_versions VALUES(2490,435,'10','06/17/2006','07/31/2013'); -INSERT INTO entity_versions VALUES(2491,435,'10 SP1','06/18/2007','07/31/2013'); -INSERT INTO entity_versions VALUES(2492,435,'10 SP2','05/19/2008','07/31/2013'); -INSERT INTO entity_versions VALUES(2493,435,'10 SP3','10/12/2009','07/31/2013'); -INSERT INTO entity_versions VALUES(2494,435,'10 SP4','04/12/2011','07/31/2013'); -INSERT INTO entity_versions VALUES(2495,435,'11','03/24/2009','03/31/2019'); -INSERT INTO entity_versions VALUES(2496,435,'11 SP1','06/02/2010','03/31/2019'); -INSERT INTO entity_versions VALUES(2497,435,'11 SP2','02/15/2012','03/31/2019'); -INSERT INTO entity_versions VALUES(2498,435,'11 SP3','07/01/2013','03/31/2019'); -INSERT INTO entity_versions VALUES(2499,435,'11 SP4','07/16/2015','03/31/2019'); -INSERT INTO entity_versions VALUES(2500,435,'12','10/27/2014','08/31/2024'); -INSERT INTO entity_versions VALUES(2501,435,'12 SP1','01/12/2016','08/31/2024'); -INSERT INTO entity_versions VALUES(2502,435,'12 SP2','11/11/2016','08/31/2024'); -INSERT INTO entity_versions VALUES(2503,435,'12 SP3','09/07/2017','08/31/2024'); -INSERT INTO entity_versions VALUES(2504,435,'12 SP4','12/11/2018','08/31/2024'); -INSERT INTO entity_versions VALUES(2505,435,'12 SP5','12/09/2019','08/31/2024'); -INSERT INTO entity_versions VALUES(2506,435,'15','07/16/2018','07/31/2028'); -INSERT INTO entity_versions VALUES(2507,435,'15 SP1','06/24/2019','07/31/2028'); -INSERT INTO entity_versions VALUES(2508,435,'15 SP2','07/21/2020','07/31/2028'); -INSERT INTO entity_versions VALUES(2509,430,'20.4','12/25/2020','06/25/2024'); -INSERT INTO entity_versions VALUES(2510,430,'20.3','09/29/2020','03/29/2023'); -INSERT INTO entity_versions VALUES(2511,430,'20.2','06/30/2020','12/30/2023'); -INSERT INTO entity_versions VALUES(2512,430,'20.1','03/27/2020','09/27/2022'); -INSERT INTO entity_versions VALUES(2513,430,'19.4','12/26/2019','06/26/2023'); -INSERT INTO entity_versions VALUES(2514,430,'19.3','09/26/2019','03/26/2023'); -INSERT INTO entity_versions VALUES(2515,430,'19.2','06/26/2019','12/26/2022'); -INSERT INTO entity_versions VALUES(2516,430,'19.1','03/27/2019','09/27/2022'); -INSERT INTO entity_versions VALUES(2517,430,'18.4','12/22/2018','06/22/2022'); -INSERT INTO entity_versions VALUES(2518,430,'18.3','09/26/2018','03/26/2022'); -INSERT INTO entity_versions VALUES(2519,430,'18.2','06/29/2018','12/29/2021'); -INSERT INTO entity_versions VALUES(2520,430,'18.1','03/28/2018','09/28/2021'); -INSERT INTO entity_versions VALUES(2521,430,'17.4','12/21/2017','06/21/2021'); -INSERT INTO entity_versions VALUES(2522,430,'17.3','08/25/2017','02/25/2021'); -INSERT INTO entity_versions VALUES(2523,430,'17.2','06/06/2017','12/06/2020'); -INSERT INTO entity_versions VALUES(2524,430,'17.1','03/03/2017','09/03/2020'); -INSERT INTO entity_versions VALUES(2525,430,'16.2','11/29/2016','05/29/2020'); -INSERT INTO entity_versions VALUES(2526,430,'16.1','07/28/2016','01/28/2020'); -INSERT INTO entity_versions VALUES(2527,430,'15.1X53','06/05/2015','12/05/2018'); -INSERT INTO entity_versions VALUES(2528,430,'15.1X49','06/30/2015','06/30/2021'); -INSERT INTO entity_versions VALUES(2529,430,'15.1','06/05/2015','12/05/2018'); -INSERT INTO entity_versions VALUES(2530,430,'14.2','11/05/2014','05/05/2018'); -INSERT INTO entity_versions VALUES(2531,430,'14.1X53','09/26/2014','06/30/2019'); -INSERT INTO entity_versions VALUES(2532,430,'14.1','06/13/2014','06/13/2018'); -INSERT INTO entity_versions VALUES(2533,430,'13.3','01/22/2014','07/22/2017'); -INSERT INTO entity_versions VALUES(2534,430,'13.2X52','07/06/2014','06/30/2017'); -INSERT INTO entity_versions VALUES(2535,430,'13.2X51','11/22/2013','06/30/2016'); -INSERT INTO entity_versions VALUES(2536,430,'13.2X50','06/28/2013','12/28/2014'); -INSERT INTO entity_versions VALUES(2537,430,'13.2','08/29/2013','02/29/2016'); -INSERT INTO entity_versions VALUES(2538,430,'13.1X50','07/25/2013','12/30/2015'); -INSERT INTO entity_versions VALUES(2539,430,'13.1','03/15/2013','09/15/2015'); -INSERT INTO entity_versions VALUES(2540,430,'12.3X54','07/18/2014','07/18/2018'); -INSERT INTO entity_versions VALUES(2541,430,'12.3X52','08/23/2013','02/23/2016'); -INSERT INTO entity_versions VALUES(2542,430,'12.3X51','03/15/2013','09/15/2015'); -INSERT INTO entity_versions VALUES(2543,430,'12.3X50','12/08/2012','07/31/2016'); -INSERT INTO entity_versions VALUES(2544,430,'12.3X48','03/06/2015','06/30/2022'); -INSERT INTO entity_versions VALUES(2545,430,'12.3','01/31/2013','07/31/2016'); -INSERT INTO entity_versions VALUES(2546,430,'12.2X50','07/05/2012','07/31/2015'); -INSERT INTO entity_versions VALUES(2547,430,'12.2','09/05/2012','03/05/2015'); -INSERT INTO entity_versions VALUES(2548,430,'12.1X49','04/19/2012','10/19/2014'); -INSERT INTO entity_versions VALUES(2549,430,'12.1X48','01/28/2013','06/30/2015'); -INSERT INTO entity_versions VALUES(2550,430,'12.1X47','08/18/2014','02/18/2017'); -INSERT INTO entity_versions VALUES(2551,430,'12.1X46','12/30/2013','06/30/2017'); -INSERT INTO entity_versions VALUES(2552,430,'12.1X45','07/17/2013','01/17/2015'); -INSERT INTO entity_versions VALUES(2553,430,'12.1X44','01/18/2013','07/18/2016'); -INSERT INTO entity_versions VALUES(2554,430,'12.1','03/28/2012','09/28/2014'); -INSERT INTO entity_versions VALUES(2555,430,'11.4','12/21/2011','06/21/2015'); -INSERT INTO entity_versions VALUES(2556,430,'11.3','08/15/2011','03/15/2013'); -INSERT INTO entity_versions VALUES(2557,430,'11.2','08/03/2011','02/15/2013'); -INSERT INTO entity_versions VALUES(2558,430,'11.1','03/29/2011','05/15/2012'); -INSERT INTO entity_versions VALUES(2559,430,'10.41','12/08/2010','06/08/2014'); -INSERT INTO entity_versions VALUES(2560,430,'10.3','08/15/2010','12/21/2011'); -INSERT INTO entity_versions VALUES(2561,430,'10.2','05/28/2010','11/15/2011'); -INSERT INTO entity_versions VALUES(2562,430,'10.1','02/15/2010','05/15/2011'); -INSERT INTO entity_versions VALUES(2563,430,'10.0','11/04/2009','05/15/2013'); -INSERT INTO entity_versions VALUES(2564,430,'9.6','08/06/2009','11/06/2010'); -INSERT INTO entity_versions VALUES(2565,430,'9.5','04/14/2009','08/15/2010'); -INSERT INTO entity_versions VALUES(2566,430,'9.4','02/11/2009','05/11/2010'); -INSERT INTO entity_versions VALUES(2567,430,'9.3','11/14/2008','05/15/2012'); -INSERT INTO entity_versions VALUES(2568,430,'9.2','08/12/2008','11/12/2009'); -INSERT INTO entity_versions VALUES(2569,430,'9.1','04/28/2008','07/28/2009'); -INSERT INTO entity_versions VALUES(2570,430,'9.0','02/15/2008','05/15/2009'); -INSERT INTO entity_versions VALUES(2571,430,'8.5','11/16/2007','05/16/2011'); -INSERT INTO entity_versions VALUES(2572,430,'8.4','08/09/2007','11/09/2008'); -INSERT INTO entity_versions VALUES(2573,430,'8.3','04/18/2007','07/18/2008'); -INSERT INTO entity_versions VALUES(2574,430,'8.2','02/15/2007','05/15/2008'); -INSERT INTO entity_versions VALUES(2575,430,'8.11','11/06/2006','05/06/2010'); -INSERT INTO entity_versions VALUES(2576,430,'8.0','08/15/2006','11/15/2007'); -INSERT INTO entity_versions VALUES(2577,430,'7.6','05/15/2006','08/15/2007'); -INSERT INTO entity_versions VALUES(2578,430,'7.5','02/08/2006','05/08/2007'); -INSERT INTO entity_versions VALUES(2579,430,'7.4','11/15/2005','02/15/2007'); -INSERT INTO entity_versions VALUES(2580,430,'7.3','08/16/2005','11/16/2006'); -INSERT INTO entity_versions VALUES(2581,430,'7.2','05/14/2005','08/14/2006'); -INSERT INTO entity_versions VALUES(2582,430,'7.1','02/14/2005','05/14/2006'); -INSERT INTO entity_versions VALUES(2583,430,'7.0','11/15/2004','02/15/2006'); -INSERT INTO entity_versions VALUES(2584,430,'6.4','08/12/2004','11/12/2005'); -INSERT INTO entity_versions VALUES(2585,430,'6.3','05/15/2004','08/15/2005'); -INSERT INTO entity_versions VALUES(2586,430,'6.2','02/15/2004','05/15/2005'); -INSERT INTO entity_versions VALUES(2587,430,'6.1','11/15/2003','02/15/2005'); -INSERT INTO entity_versions VALUES(2588,430,'6.0','08/15/2003','11/15/2004'); -INSERT INTO entity_versions VALUES(2589,430,'5.7','05/15/2003','08/15/2004'); -INSERT INTO entity_versions VALUES(2590,430,'5.6','02/15/2003','05/15/2004'); -INSERT INTO entity_versions VALUES(2591,430,'5.5','11/15/2002','02/15/2004'); -INSERT INTO entity_versions VALUES(2592,430,'5.4','08/12/2002','11/15/2003'); -INSERT INTO entity_versions VALUES(2593,430,'5.3','05/12/2002','08/15/2003'); -INSERT INTO entity_versions VALUES(2594,430,'5.2','02/12/2002','05/15/2003'); -INSERT INTO entity_versions VALUES(2595,430,'5.1','11/07/2001','02/15/2003'); -INSERT INTO entity_versions VALUES(2596,430,'5.0','08/17/2001','11/15/2002'); -INSERT INTO entity_versions VALUES(2597,430,'4.4','04/30/2001',' '); -INSERT INTO entity_versions VALUES(2598,430,'4.3','01/31/2001',' '); -INSERT INTO entity_versions VALUES(2599,430,'4.2','10/16/2000',' '); -INSERT INTO entity_versions VALUES(2600,430,'4.1','08/15/2000',' '); -INSERT INTO entity_versions VALUES(2601,430,'4.0','03/31/2000',' '); -INSERT INTO entity_versions VALUES(2602,433,'1','06/16/2016',' '); -INSERT INTO entity_versions VALUES(2603,433,'2','10/31/2017',' '); -INSERT INTO entity_versions VALUES(2604,433,'3','02/07/2019',' '); -INSERT INTO entity_versions VALUES(2605,433,'4','03/05/2021',' '); -INSERT INTO entity_versions VALUES(2606,322,'1','10/01/1956',' '); -INSERT INTO entity_versions VALUES(2607,322,'2','12/31/1958',' '); -INSERT INTO entity_versions VALUES(2608,322,'3','12/31/1958',' '); -INSERT INTO entity_versions VALUES(2609,322,'4','12/31/1961',' '); -INSERT INTO entity_versions VALUES(2610,322,'5.0','12/31/1968',' '); -INSERT INTO entity_versions VALUES(2611,322,'5.1','12/31/1980',' '); -INSERT INTO entity_versions VALUES(2612,322,'6','12/31/2001',' '); -INSERT INTO entity_versions VALUES(2613,322,'66','12/31/1966',' '); -INSERT INTO entity_versions VALUES(2614,322,'77','12/31/1978',' '); -INSERT INTO entity_versions VALUES(2615,322,'90','12/31/1991',' '); -INSERT INTO entity_versions VALUES(2616,322,'95','12/31/1997',' '); -INSERT INTO entity_versions VALUES(2617,322,'2003','12/31/2004',' '); -INSERT INTO entity_versions VALUES(2618,322,'2008','09/01/2010',' '); -INSERT INTO entity_versions VALUES(2619,322,'2018','11/28/2018',' '); -INSERT INTO entity_versions VALUES(2620,589,'ES1','12/31/1997',' '); -INSERT INTO entity_versions VALUES(2621,589,'ES2','12/31/1998',' '); -INSERT INTO entity_versions VALUES(2622,589,'ES3','12/31/1999',' '); -INSERT INTO entity_versions VALUES(2623,589,'ES4',' ',' '); -INSERT INTO entity_versions VALUES(2624,589,'ES5','12/31/2009',' '); -INSERT INTO entity_versions VALUES(2625,589,'ES6','12/31/2015',' '); -INSERT INTO entity_versions VALUES(2626,343,'1','12/31/1981',' '); -INSERT INTO entity_versions VALUES(2627,343,'2','12/31/2006',' '); -INSERT INTO entity_versions VALUES(2628,599,'pascal','12/31/2070',' '); -INSERT INTO entity_versions VALUES(2629,599,'Object pascal','12/31/1985',' '); -INSERT INTO entity_versions VALUES(2630,599,'extended pascal','12/31/1990',' '); -INSERT INTO entity_versions VALUES(2631,599,'Free pascal','12/31/1997',' '); -INSERT INTO entity_versions VALUES(2632,599,'smalltalk80','12/31/1980',' '); -INSERT INTO entity_versions VALUES(2633,363,'ANSI smalltalk','12/31/1988',' '); -INSERT INTO entity_versions VALUES(2634,363,'Ambrai smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2635,363,'Dolphin smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2636,363,'GNU smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2637,363,'LSWsvision smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2638,363,'Little smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2639,363,'Resilient embedded smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2640,363,'Object studio smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2641,363,'Pocket smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2642,363,'Public Domain smalltalk (PDST)',' ',' '); -INSERT INTO entity_versions VALUES(2643,363,'Slate smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2644,363,'Smalltalk Express',' ',' '); -INSERT INTO entity_versions VALUES(2645,363,'smalltalk MT',' ',' '); -INSERT INTO entity_versions VALUES(2646,363,'smalltalk X',' ',' '); -INSERT INTO entity_versions VALUES(2647,363,'Squat smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2648,363,'Squeak smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2649,363,'Strong smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2650,363,'Susie smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2651,363,'Talks2 smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2652,363,'VisualWorks smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2653,363,'VisualAge smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2654,363,'Vmx Quicknet smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2655,363,'Zoku smalltalk',' ',' '); -INSERT INTO entity_versions VALUES(2656,324,'0.1.1','07/02/2015',' '); -INSERT INTO entity_versions VALUES(2657,324,'0.2.0','07/30/2015',' '); -INSERT INTO entity_versions VALUES(2658,324,'0.3.0',' ',' '); -INSERT INTO entity_versions VALUES(2659,324,'0.4.0',' ',' '); -INSERT INTO entity_versions VALUES(2660,324,'0.5.0',' ',' '); -INSERT INTO entity_versions VALUES(2661,324,'0.6.0',' ',' '); -INSERT INTO entity_versions VALUES(2662,324,'0.7.0',' ',' '); -INSERT INTO entity_versions VALUES(2663,324,'0.8.0',' ',' '); -INSERT INTO entity_versions VALUES(2664,324,'0.9.0',' ',' '); -INSERT INTO entity_versions VALUES(2665,324,'0.10.0',' ',' '); -INSERT INTO entity_versions VALUES(2666,324,'0.11.0',' ',' '); -INSERT INTO entity_versions VALUES(2667,324,'0.12.0',' ',' '); -INSERT INTO entity_versions VALUES(2668,324,'0.13.0',' ',' '); -INSERT INTO entity_versions VALUES(2669,324,'14',' ',' '); -INSERT INTO entity_versions VALUES(2670,324,'14.1',' ',' '); -INSERT INTO entity_versions VALUES(2671,324,'14.2',' ',' '); -INSERT INTO entity_versions VALUES(2672,324,'14.3',' ',' '); -INSERT INTO entity_versions VALUES(2673,324,'14.4',' ',' '); -INSERT INTO entity_versions VALUES(2674,324,'14.5',' ',' '); -INSERT INTO entity_versions VALUES(2675,324,'15',' ',' '); -INSERT INTO entity_versions VALUES(2676,360,'72','01/31/1972',' '); -INSERT INTO entity_versions VALUES(2677,360,'76','07/31/1976',' '); -INSERT INTO entity_versions VALUES(2678,360,'79.5','04/30/1981',' '); -INSERT INTO entity_versions VALUES(2679,360,'82.4','01/31/1983',' '); -INSERT INTO entity_versions VALUES(2680,360,'4.06','03/31/1984',' '); -INSERT INTO entity_versions VALUES(2681,360,'5.03','07/31/1986',' '); -INSERT INTO entity_versions VALUES(2682,360,'6.01','01/31/1985',' '); -INSERT INTO entity_versions VALUES(2683,360,'6.03','03/31/1988',' '); -INSERT INTO entity_versions VALUES(2684,360,'6.06','03/31/1990',' '); -INSERT INTO entity_versions VALUES(2685,360,'6.07','04/30/1991',' '); -INSERT INTO entity_versions VALUES(2686,360,'6.08','03/31/1993',' '); -INSERT INTO entity_versions VALUES(2687,360,'6.09','10/31/1993',' '); -INSERT INTO entity_versions VALUES(2688,360,'6.1','10/31/1994',' '); -INSERT INTO entity_versions VALUES(2689,360,'6.11','10/31/1995',' '); -INSERT INTO entity_versions VALUES(2690,360,'6.12','11/30/1996',' '); -INSERT INTO entity_versions VALUES(2691,360,'7','10/31/1998',' '); -INSERT INTO entity_versions VALUES(2692,360,'8','11/30/1999',' '); -INSERT INTO entity_versions VALUES(2693,360,'8.1','07/31/2000',' '); -INSERT INTO entity_versions VALUES(2694,360,'8.2','03/31/2001',' '); -INSERT INTO entity_versions VALUES(2695,360,'9','10/31/2002',' '); -INSERT INTO entity_versions VALUES(2696,360,'9.1','12/31/2003',' '); -INSERT INTO entity_versions VALUES(2697,360,'9.1.3','08/31/2004',' '); -INSERT INTO entity_versions VALUES(2698,360,'9.2','03/31/2008',' '); -INSERT INTO entity_versions VALUES(2699,360,'9.2M2','04/30/2010',' '); -INSERT INTO entity_versions VALUES(2700,360,'9.3','07/31/2011',' '); -INSERT INTO entity_versions VALUES(2701,360,'9.3M2','08/31/2012',' '); -INSERT INTO entity_versions VALUES(2702,360,'9.4','07/31/2013',' '); -INSERT INTO entity_versions VALUES(2703,360,'9.4M1','12/31/2013',' '); -INSERT INTO entity_versions VALUES(2704,360,'9.4M2','08/31/2014',' '); -INSERT INTO entity_versions VALUES(2705,360,'9.4M3','07/31/2015',' '); -INSERT INTO entity_versions VALUES(2706,360,'9.4M4','11/30/2016',' '); -INSERT INTO entity_versions VALUES(2707,360,'9.4M5','09/30/2017',' '); -INSERT INTO entity_versions VALUES(2708,360,'9.4M6','11/30/2018',' '); -INSERT INTO entity_versions VALUES(2709,360,'9.4M7','08/31/2020',' '); -INSERT INTO entity_versions VALUES(2710,367,'0.8','10/31/2012',' '); -INSERT INTO entity_versions VALUES(2711,367,'0.9','06/18/2013',' '); -INSERT INTO entity_versions VALUES(2712,367,'1','04/12/2014',' '); -INSERT INTO entity_versions VALUES(2713,367,'1.1','10/06/2014',' '); -INSERT INTO entity_versions VALUES(2714,367,'1.3','11/12/2014',' '); -INSERT INTO entity_versions VALUES(2715,367,'1.4','01/20/2015',' '); -INSERT INTO entity_versions VALUES(2716,367,'1.5','07/20/2015',' '); -INSERT INTO entity_versions VALUES(2717,367,'1.6','09/16/2015',' '); -INSERT INTO entity_versions VALUES(2718,367,'1.7','11/30/2015',' '); -INSERT INTO entity_versions VALUES(2719,367,'1.8','02/22/2016',' '); -INSERT INTO entity_versions VALUES(2720,367,'2','09/22/2016',' '); -INSERT INTO entity_versions VALUES(2721,367,'2.1','11/08/2016',' '); -INSERT INTO entity_versions VALUES(2722,367,'2.2','02/22/2017',' '); -INSERT INTO entity_versions VALUES(2723,367,'2.3','04/27/2017',' '); -INSERT INTO entity_versions VALUES(2724,367,'2.4','06/27/2017',' '); -INSERT INTO entity_versions VALUES(2725,367,'2.5','08/31/2017',' '); -INSERT INTO entity_versions VALUES(2726,367,'2.6','10/31/2017',' '); -INSERT INTO entity_versions VALUES(2727,367,'2.7','01/31/2018',' '); -INSERT INTO entity_versions VALUES(2728,367,'2.8','03/27/2018',' '); -INSERT INTO entity_versions VALUES(2729,367,'2.9','05/14/2018',' '); -INSERT INTO entity_versions VALUES(2730,367,'3','07/30/2018',' '); -INSERT INTO entity_versions VALUES(2731,367,'3.1','09/27/2018',' '); -INSERT INTO entity_versions VALUES(2732,367,'3.2','11/30/2018',' '); -INSERT INTO entity_versions VALUES(2733,367,'3.3','01/31/2019',' '); -INSERT INTO entity_versions VALUES(2734,367,'3.4','03/29/2019',' '); -INSERT INTO entity_versions VALUES(2735,367,'3.5','05/29/2019',' '); -INSERT INTO entity_versions VALUES(2736,367,'3.6','08/28/2019',' '); -INSERT INTO entity_versions VALUES(2737,367,'3.7','11/05/2019',' '); -INSERT INTO entity_versions VALUES(2738,367,'3.8','02/20/2020',' '); -INSERT INTO entity_versions VALUES(2739,367,'3.9','05/12/2020',' '); -INSERT INTO entity_versions VALUES(2740,367,'4','08/20/2020',' '); -INSERT INTO entity_versions VALUES(2741,367,'4.1','11/19/2020',' '); -INSERT INTO entity_versions VALUES(2742,367,'4.2','02/25/2021',' '); -INSERT INTO entity_versions VALUES(2743,367,'4.3','05/26/2021',' '); -INSERT INTO entity_versions VALUES(2744,367,'4.4','08/26/2021',' '); -INSERT INTO entity_versions VALUES(2745,584,'JDK Beta','12/31/1995',' '); -INSERT INTO entity_versions VALUES(2746,584,'1.0','01/01/1996',' '); -INSERT INTO entity_versions VALUES(2747,584,'1.1','02/01/1997',' '); -INSERT INTO entity_versions VALUES(2748,584,'1.2','12/01/1998',' '); -INSERT INTO entity_versions VALUES(2749,584,'1.3','05/01/2000',' '); -INSERT INTO entity_versions VALUES(2750,584,'1.4','02/01/2002','10/01/2008'); -INSERT INTO entity_versions VALUES(2751,584,'5.0','09/01/2004','11/01/2009'); -INSERT INTO entity_versions VALUES(2752,584,'6','12/01/2006','04/01/2013'); -INSERT INTO entity_versions VALUES(2753,584,'7','07/01/2011','04/01/2015'); -INSERT INTO entity_versions VALUES(2754,584,'8','03/01/2014','12/01/1930'); -INSERT INTO entity_versions VALUES(2755,584,'9','09/01/2017','03/01/2018'); -INSERT INTO entity_versions VALUES(2756,584,'10','03/01/2018','09/01/2026'); -INSERT INTO entity_versions VALUES(2757,584,'11','09/01/2018','10/01/2024'); -INSERT INTO entity_versions VALUES(2758,584,'12','03/01/2019','09/01/2019'); -INSERT INTO entity_versions VALUES(2759,584,'13','09/01/2019','03/01/2020'); -INSERT INTO entity_versions VALUES(2760,584,'14','03/01/2020','09/01/2020'); -INSERT INTO entity_versions VALUES(2761,584,'15','09/01/2020','03/01/2021'); -INSERT INTO entity_versions VALUES(2762,584,'16','03/01/2021','09/01/2021'); -INSERT INTO entity_versions VALUES(2763,584,'17','09/01/2021','09/01/2029'); -INSERT INTO entity_versions VALUES(2764,584,'18','03/01/2022','09/01/2022'); -INSERT INTO entity_versions VALUES(2765,584,'19','09/01/2022','03/01/2023'); -INSERT INTO entity_versions VALUES(2766,584,'20','03/01/2023','01/09/2023'); -INSERT INTO entity_versions VALUES(2767,584,'21','09/01/2023',' '); -INSERT INTO entity_versions VALUES(2768,585,'1','12/18/1987',' '); -INSERT INTO entity_versions VALUES(2769,585,'4','12/31/1993',' '); -INSERT INTO entity_versions VALUES(2770,585,'5','10/17/1994',' '); -INSERT INTO entity_versions VALUES(2771,585,'5.001','03/13/1995',' '); -INSERT INTO entity_versions VALUES(2772,585,'5.002','02/29/1996',' '); -INSERT INTO entity_versions VALUES(2773,585,'5.003','06/25/1996',' '); -INSERT INTO entity_versions VALUES(2774,585,'5.004','05/15/1997',' '); -INSERT INTO entity_versions VALUES(2775,585,'5.005','07/22/1998',' '); -INSERT INTO entity_versions VALUES(2776,585,'5.6','03/22/2020',' '); -INSERT INTO entity_versions VALUES(2777,585,'5.8','07/18/2002',' '); -INSERT INTO entity_versions VALUES(2778,585,'5.10.0','12/18/2007',' '); -INSERT INTO entity_versions VALUES(2779,585,'5.11',' ',' '); -INSERT INTO entity_versions VALUES(2780,585,'5.12','04/12/2010',' '); -INSERT INTO entity_versions VALUES(2781,585,'5.12.3','01/21/2011',' '); -INSERT INTO entity_versions VALUES(2782,585,'5.12.4','06/20/2011',' '); -INSERT INTO entity_versions VALUES(2783,585,'5.12.5','11/10/2012',' '); -INSERT INTO entity_versions VALUES(2784,585,'5.14','05/14/2011',' '); -INSERT INTO entity_versions VALUES(2785,585,'5.16','05/20/2012',' '); -INSERT INTO entity_versions VALUES(2786,585,'5.18','05/18/2013',' '); -INSERT INTO entity_versions VALUES(2787,585,'5.20.0','05/27/2014',' '); -INSERT INTO entity_versions VALUES(2788,368,'7.0','12/31/2002',' '); -INSERT INTO entity_versions VALUES(2789,368,'7.1','12/31/2003',' '); -INSERT INTO entity_versions VALUES(2790,368,'8.0','12/31/2005',' '); -INSERT INTO entity_versions VALUES(2791,368,'9.0','11/19/2007',' '); -INSERT INTO entity_versions VALUES(2792,368,'10.0','04/01/2010',' '); -INSERT INTO entity_versions VALUES(2793,368,'11.0','12/31/2012',' '); -INSERT INTO entity_versions VALUES(2794,368,'12.0','12/31/2013',' '); -INSERT INTO entity_versions VALUES(2795,368,'14.0','12/31/2015',' '); -INSERT INTO entity_versions VALUES(2796,368,'15.0','12/31/2017',' '); -INSERT INTO entity_versions VALUES(2797,368,'16.0','12/31/2019',' '); -INSERT INTO entity_versions VALUES(2798,315,'1','09/01/1987',' '); -INSERT INTO entity_versions VALUES(2799,315,'2','04/01/1990',' '); -INSERT INTO entity_versions VALUES(2800,315,'3','10/01/1991',' '); -INSERT INTO entity_versions VALUES(2801,315,'4','01/01/1993',' '); -INSERT INTO entity_versions VALUES(2802,315,'5','03/01/1994',' '); -INSERT INTO entity_versions VALUES(2803,315,'5.45.5','02/04/2018',' '); -INSERT INTO entity_versions VALUES(2804,364,'1.0','09/09/2014',' '); -INSERT INTO entity_versions VALUES(2805,364,'1.1','10/22/2014',' '); -INSERT INTO entity_versions VALUES(2806,364,'1.2','04/08/2015',' '); -INSERT INTO entity_versions VALUES(2807,364,'2.0','09/21/2015',' '); -INSERT INTO entity_versions VALUES(2808,364,'2.1','10/20/2015',' '); -INSERT INTO entity_versions VALUES(2809,364,'2.2','03/21/2016',' '); -INSERT INTO entity_versions VALUES(2810,364,'2.2.1','05/03/2016',' '); -INSERT INTO entity_versions VALUES(2811,364,'3.0','09/13/2016',' '); -INSERT INTO entity_versions VALUES(2812,364,'3.0.1','10/28/2016',' '); -INSERT INTO entity_versions VALUES(2813,364,'3.0.2','12/13/2016',' '); -INSERT INTO entity_versions VALUES(2814,364,'3.1','03/27/2017',' '); -INSERT INTO entity_versions VALUES(2815,364,'3.1.1','04/21/2017',' '); -INSERT INTO entity_versions VALUES(2816,364,'4.0','09/19/2017',' '); -INSERT INTO entity_versions VALUES(2817,364,'4.0.2','11/01/2017',' '); -INSERT INTO entity_versions VALUES(2818,364,'4.0.3','12/05/2017',' '); -INSERT INTO entity_versions VALUES(2819,364,'4.1','03/29/2018',' '); -INSERT INTO entity_versions VALUES(2820,364,'4.1.1','05/04/2018',' '); -INSERT INTO entity_versions VALUES(2821,364,'4.1.2','05/31/2018',' '); -INSERT INTO entity_versions VALUES(2822,364,'4.1.3','07/27/2018',' '); -INSERT INTO entity_versions VALUES(2823,364,'4.2','09/17/2018',' '); -INSERT INTO entity_versions VALUES(2824,364,'4.2.1','10/30/2018',' '); -INSERT INTO entity_versions VALUES(2825,364,'4.2.2','02/04/2019',' '); -INSERT INTO entity_versions VALUES(2826,364,'4.2.3','02/28/2019',' '); -INSERT INTO entity_versions VALUES(2827,364,'4.2.4','03/29/2019',' '); -INSERT INTO entity_versions VALUES(2828,364,'5.0','03/25/2019',' '); -INSERT INTO entity_versions VALUES(2829,364,'5.0.1','04/18/2019',' '); -INSERT INTO entity_versions VALUES(2830,364,'5.0.2','07/15/2019',' '); -INSERT INTO entity_versions VALUES(2831,364,'5.0.3','08/30/2019',' '); -INSERT INTO entity_versions VALUES(2832,364,'5.1','09/10/2019',' '); -INSERT INTO entity_versions VALUES(2833,364,'5.1.1','10/11/2019',' '); -INSERT INTO entity_versions VALUES(2834,364,'5.1.2','11/07/2019',' '); -INSERT INTO entity_versions VALUES(2835,364,'5.1.3','12/13/2019',' '); -INSERT INTO entity_versions VALUES(2836,364,'5.1.4','01/31/2020',' '); -INSERT INTO entity_versions VALUES(2837,364,'5.1.5','03/09/2020',' '); -INSERT INTO entity_versions VALUES(2838,364,'5.2','03/24/2020',' '); -INSERT INTO entity_versions VALUES(2839,364,'5.2.1','03/30/2020',' '); -INSERT INTO entity_versions VALUES(2840,364,'5.2.2','04/15/2020',' '); -INSERT INTO entity_versions VALUES(2841,364,'5.2.3','04/29/2020',' '); -INSERT INTO entity_versions VALUES(2842,364,'5.2.4','05/20/2020',' '); -INSERT INTO entity_versions VALUES(2843,364,'5.2.5','08/05/2020',' '); -INSERT INTO entity_versions VALUES(2844,364,'5.3','09/16/2020',' '); -INSERT INTO entity_versions VALUES(2845,364,'5.3.1','11/13/2020',' '); -INSERT INTO entity_versions VALUES(2846,364,'5.3.2','12/15/2020',' '); -INSERT INTO entity_versions VALUES(2847,364,'5.3.3','01/25/2021',' '); -INSERT INTO entity_versions VALUES(2848,364,'5.4','04/26/2021',' '); -INSERT INTO entity_versions VALUES(2849,364,'5.4.1','05/25/2021',' '); -INSERT INTO entity_versions VALUES(2850,364,'5.4.2','06/28/2021',' '); -INSERT INTO entity_versions VALUES(2851,364,'5.4.3','09/09/2021',' '); -INSERT INTO entity_versions VALUES(2852,364,'5.5','09/20/2021',' '); -INSERT INTO entity_versions VALUES(2853,341,'ACL2','12/31/1990',' '); -INSERT INTO entity_versions VALUES(2854,341,'Arc','12/31/2008',' '); -INSERT INTO entity_versions VALUES(2855,341,'AutoLISP','12/31/1986',' '); -INSERT INTO entity_versions VALUES(2856,341,'BBN LISP','12/31/2066',' '); -INSERT INTO entity_versions VALUES(2857,341,'Chez Scheme','12/31/1985',' '); -INSERT INTO entity_versions VALUES(2858,341,'Chicken','12/31/2000',' '); -INSERT INTO entity_versions VALUES(2859,341,'Clojure','12/31/2007',' '); -INSERT INTO entity_versions VALUES(2860,341,'ANSI Common Lisp','12/31/1994',' '); -INSERT INTO entity_versions VALUES(2861,341,'Common Lisp','12/31/1984',' '); -INSERT INTO entity_versions VALUES(2862,341,'Dylan','12/31/1992',' '); -INSERT INTO entity_versions VALUES(2863,341,'Emacs Lisp','12/31/1976',' '); -INSERT INTO entity_versions VALUES(2864,341,'EuLisp','12/31/1990',' '); -INSERT INTO entity_versions VALUES(2865,341,'Franz Lisp','12/31/1980',' '); -INSERT INTO entity_versions VALUES(2866,341,'Game Oriented Assembly Lisp (GOAL)','12/31/2000',' '); -INSERT INTO entity_versions VALUES(2867,341,'Hy','12/31/2013',' '); -INSERT INTO entity_versions VALUES(2868,341,'Ikarus','12/31/2007',' '); -INSERT INTO entity_versions VALUES(2869,341,'Interlisp','12/31/2067',' '); -INSERT INTO entity_versions VALUES(2870,341,'ISLISP','12/31/1997',' '); -INSERT INTO entity_versions VALUES(2871,341,'Le Lisp','12/31/1981',' '); -INSERT INTO entity_versions VALUES(2872,341,'Lisp Flavored Erlang (LFE)','12/31/2008',' '); -INSERT INTO entity_versions VALUES(2873,341,'Lisp Machine Lisp','12/31/1984',' '); -INSERT INTO entity_versions VALUES(2874,341,'Maclisp','12/31/2066',' '); -INSERT INTO entity_versions VALUES(2875,341,'MultiLisp','12/31/1980',' '); -INSERT INTO entity_versions VALUES(2876,341,'NIL','12/31/2070',' '); -INSERT INTO entity_versions VALUES(2877,341,'OpenLisp','12/31/1988',' '); -INSERT INTO entity_versions VALUES(2878,341,'Owl Lisp','12/31/2012',' '); -INSERT INTO entity_versions VALUES(2879,341,'PicoLisp','12/31/1988',' '); -INSERT INTO entity_versions VALUES(2880,341,'Portable Standard Lisp','12/31/1980',' '); -INSERT INTO entity_versions VALUES(2881,341,'Racket','12/31/1994',' '); -INSERT INTO entity_versions VALUES(2882,341,'Scheme','12/31/2070',' '); -INSERT INTO entity_versions VALUES(2883,341,'Scheme In One Defun (SIOD)','12/31/1988',' '); -INSERT INTO entity_versions VALUES(2884,341,'SKILL','12/31/1990',' '); -INSERT INTO entity_versions VALUES(2885,341,'TXR Lisp','12/31/2009',' '); -INSERT INTO entity_versions VALUES(2886,587,'3.10.0','10/04/2021',' '); -INSERT INTO entity_versions VALUES(2887,587,'3.9.7','08/30/2021',' '); -INSERT INTO entity_versions VALUES(2888,587,'3.9.6','06/28/2021',' '); -INSERT INTO entity_versions VALUES(2889,587,'3.9.5','05/03/2021',' '); -INSERT INTO entity_versions VALUES(2890,587,'3.9.4','04/04/2021',' '); -INSERT INTO entity_versions VALUES(2891,587,'3.9.3','04/02/2021',' '); -INSERT INTO entity_versions VALUES(2892,587,'3.9.2','02/19/2021',' '); -INSERT INTO entity_versions VALUES(2893,587,'3.9.1','12/08/2020',' '); -INSERT INTO entity_versions VALUES(2894,587,'3.9.0','10/05/2020',' '); -INSERT INTO entity_versions VALUES(2895,587,'3.8.12','08/30/2021',' '); -INSERT INTO entity_versions VALUES(2896,587,'3.8.11','06/28/2021',' '); -INSERT INTO entity_versions VALUES(2897,587,'3.8.10','05/03/2021',' '); -INSERT INTO entity_versions VALUES(2898,587,'3.8.9','04/02/2021',' '); -INSERT INTO entity_versions VALUES(2899,587,'3.8.8','02/19/2021',' '); -INSERT INTO entity_versions VALUES(2900,587,'3.8.7','12/21/2020',' '); -INSERT INTO entity_versions VALUES(2901,587,'3.8.6','09/23/2020',' '); -INSERT INTO entity_versions VALUES(2902,587,'3.8.5','07/20/2020',' '); -INSERT INTO entity_versions VALUES(2903,587,'3.8.4','07/13/2020',' '); -INSERT INTO entity_versions VALUES(2904,587,'3.8.3','05/13/2020',' '); -INSERT INTO entity_versions VALUES(2905,587,'3.8.2','02/24/2020',' '); -INSERT INTO entity_versions VALUES(2906,587,'3.8.1','12/18/2019',' '); -INSERT INTO entity_versions VALUES(2907,587,'3.8.0','10/14/2019',' '); -INSERT INTO entity_versions VALUES(2908,587,'3.7.12','09/04/2021',' '); -INSERT INTO entity_versions VALUES(2909,587,'3.7.11','06/28/2021',' '); -INSERT INTO entity_versions VALUES(2910,587,'3.7.10','02/15/2021',' '); -INSERT INTO entity_versions VALUES(2911,587,'3.7.9','08/17/2020',' '); -INSERT INTO entity_versions VALUES(2912,587,'3.7.8','06/27/2020',' '); -INSERT INTO entity_versions VALUES(2913,587,'3.7.7','03/10/2020',' '); -INSERT INTO entity_versions VALUES(2914,587,'3.7.6','12/18/2019',' '); -INSERT INTO entity_versions VALUES(2915,587,'3.7.5','10/15/2019',' '); -INSERT INTO entity_versions VALUES(2916,587,'3.7.4','07/08/2019',' '); -INSERT INTO entity_versions VALUES(2917,587,'3.7.3','03/25/2019',' '); -INSERT INTO entity_versions VALUES(2918,587,'3.7.2','12/24/2018',' '); -INSERT INTO entity_versions VALUES(2919,587,'3.7.1','10/20/2018',' '); -INSERT INTO entity_versions VALUES(2920,587,'3.7.0','06/27/2018',' '); -INSERT INTO entity_versions VALUES(2921,587,'3.6.15','09/04/2021',' '); -INSERT INTO entity_versions VALUES(2922,587,'3.6.14','06/28/2021',' '); -INSERT INTO entity_versions VALUES(2923,587,'3.6.13','02/15/2021',' '); -INSERT INTO entity_versions VALUES(2924,587,'3.6.12','08/17/2020',' '); -INSERT INTO entity_versions VALUES(2925,587,'3.6.11','06/27/2020',' '); -INSERT INTO entity_versions VALUES(2926,587,'3.6.10','12/18/2019',' '); -INSERT INTO entity_versions VALUES(2927,587,'3.6.9','07/02/2019',' '); -INSERT INTO entity_versions VALUES(2928,587,'3.6.8','12/24/2018',' '); -INSERT INTO entity_versions VALUES(2929,587,'3.6.7','10/20/2018',' '); -INSERT INTO entity_versions VALUES(2930,587,'3.6.6','06/27/2018',' '); -INSERT INTO entity_versions VALUES(2931,587,'3.6.5','03/28/2018',' '); -INSERT INTO entity_versions VALUES(2932,587,'3.6.4','12/19/2017',' '); -INSERT INTO entity_versions VALUES(2933,587,'3.6.3','10/03/2017',' '); -INSERT INTO entity_versions VALUES(2934,587,'3.6.2','07/17/2017',' '); -INSERT INTO entity_versions VALUES(2935,587,'3.6.1','03/21/2017',' '); -INSERT INTO entity_versions VALUES(2936,587,'3.6.0','12/23/2016',' '); -INSERT INTO entity_versions VALUES(2937,587,'3.5.10','09/05/2020',' '); -INSERT INTO entity_versions VALUES(2938,587,'3.5.8','11/01/2019',' '); -INSERT INTO entity_versions VALUES(2939,587,'3.5.7','03/18/2019',' '); -INSERT INTO entity_versions VALUES(2940,587,'3.5.6','08/08/2018',' '); -INSERT INTO entity_versions VALUES(2941,587,'3.5.5','02/04/2018',' '); -INSERT INTO entity_versions VALUES(2942,587,'3.5.4','07/25/2017',' '); -INSERT INTO entity_versions VALUES(2943,587,'3.5.3','01/17/2017',' '); -INSERT INTO entity_versions VALUES(2944,587,'3.5.2','06/27/2016',' '); -INSERT INTO entity_versions VALUES(2945,587,'3.5.1','12/07/2015',' '); -INSERT INTO entity_versions VALUES(2946,587,'3.5.0','09/13/2015',' '); -INSERT INTO entity_versions VALUES(2947,587,'3.4.10','03/18/2019',' '); -INSERT INTO entity_versions VALUES(2948,587,'3.4.9','08/08/2018',' '); -INSERT INTO entity_versions VALUES(2949,587,'3.4.8','02/04/2018',' '); -INSERT INTO entity_versions VALUES(2950,587,'3.4.7','07/25/2017',' '); -INSERT INTO entity_versions VALUES(2951,587,'3.4.6','01/17/2017',' '); -INSERT INTO entity_versions VALUES(2952,587,'3.4.5','06/26/2016',' '); -INSERT INTO entity_versions VALUES(2953,587,'3.4.4','12/06/2015',' '); -INSERT INTO entity_versions VALUES(2954,587,'3.4.3','02/25/2015',' '); -INSERT INTO entity_versions VALUES(2955,587,'3.4.2','10/04/2014',' '); -INSERT INTO entity_versions VALUES(2956,587,'3.4.1','05/18/2014',' '); -INSERT INTO entity_versions VALUES(2957,587,'3.4.0','03/16/2014',' '); -INSERT INTO entity_versions VALUES(2958,587,'3.3.7','09/19/2017',' '); -INSERT INTO entity_versions VALUES(2959,587,'3.3.6','10/12/2014',' '); -INSERT INTO entity_versions VALUES(2960,587,'3.3.5','03/09/2014',' '); -INSERT INTO entity_versions VALUES(2961,587,'3.3.4','02/09/2014',' '); -INSERT INTO entity_versions VALUES(2962,587,'3.3.3','11/17/2013',' '); -INSERT INTO entity_versions VALUES(2963,587,'3.3.2','05/15/2013',' '); -INSERT INTO entity_versions VALUES(2964,587,'3.3.1','04/07/2013',' '); -INSERT INTO entity_versions VALUES(2965,587,'3.3.0','09/29/2012',' '); -INSERT INTO entity_versions VALUES(2966,587,'3.2.6','10/11/2014',' '); -INSERT INTO entity_versions VALUES(2967,587,'3.2.5','05/15/2013',' '); -INSERT INTO entity_versions VALUES(2968,587,'3.2.4','04/07/2013',' '); -INSERT INTO entity_versions VALUES(2969,587,'3.2.3','04/10/2012',' '); -INSERT INTO entity_versions VALUES(2970,587,'3.2.2','09/04/2011',' '); -INSERT INTO entity_versions VALUES(2971,587,'3.2.1','07/10/2011',' '); -INSERT INTO entity_versions VALUES(2972,587,'3.2','02/20/2011',' '); -INSERT INTO entity_versions VALUES(2973,587,'3.1.5','04/09/2012',' '); -INSERT INTO entity_versions VALUES(2974,587,'3.1.4','06/11/2011',' '); -INSERT INTO entity_versions VALUES(2975,587,'3.1.3','11/27/2010',' '); -INSERT INTO entity_versions VALUES(2976,587,'3.1.2','03/21/2010',' '); -INSERT INTO entity_versions VALUES(2977,587,'3.1.1','08/17/2009',' '); -INSERT INTO entity_versions VALUES(2978,587,'3.1','06/27/2009',' '); -INSERT INTO entity_versions VALUES(2979,587,'3.0.1','02/13/2009',' '); -INSERT INTO entity_versions VALUES(2980,587,'3','12/03/2008',' '); -INSERT INTO entity_versions VALUES(2981,587,'2.7.18','04/20/2020',' '); -INSERT INTO entity_versions VALUES(2982,587,'2.7.17','10/19/2019',' '); -INSERT INTO entity_versions VALUES(2983,587,'2.7.16','03/02/2019',' '); -INSERT INTO entity_versions VALUES(2984,587,'2.7.15','04/30/2018',' '); -INSERT INTO entity_versions VALUES(2985,587,'2.7.14','09/16/2017',' '); -INSERT INTO entity_versions VALUES(2986,587,'2.7.13','12/17/2016',' '); -INSERT INTO entity_versions VALUES(2987,587,'2.7.12','06/26/2016',' '); -INSERT INTO entity_versions VALUES(2988,587,'2.7.11','12/05/2015',' '); -INSERT INTO entity_versions VALUES(2989,587,'2.7.10','05/23/2015',' '); -INSERT INTO entity_versions VALUES(2990,587,'2.7.9','12/10/2014',' '); -INSERT INTO entity_versions VALUES(2991,587,'2.7.8','07/01/2014',' '); -INSERT INTO entity_versions VALUES(2992,587,'2.7.7','05/31/2014',' '); -INSERT INTO entity_versions VALUES(2993,587,'2.7.6','11/10/2013',' '); -INSERT INTO entity_versions VALUES(2994,587,'2.7.5','05/15/2013',' '); -INSERT INTO entity_versions VALUES(2995,587,'2.7.4','04/06/2013',' '); -INSERT INTO entity_versions VALUES(2996,587,'2.7.3','04/09/2012',' '); -INSERT INTO entity_versions VALUES(2997,587,'2.7.2','06/11/2011',' '); -INSERT INTO entity_versions VALUES(2998,587,'2.7.1','11/27/2010',' '); -INSERT INTO entity_versions VALUES(2999,587,'2.7','07/04/2010',' '); -INSERT INTO entity_versions VALUES(3000,587,'2.6.9','10/29/2013',' '); -INSERT INTO entity_versions VALUES(3001,587,'2.6.8','04/10/2012',' '); -INSERT INTO entity_versions VALUES(3002,587,'2.6.7','06/03/2011',' '); -INSERT INTO entity_versions VALUES(3003,587,'2.6.6','08/24/2010',' '); -INSERT INTO entity_versions VALUES(3004,587,'2.6.5','03/19/2010',' '); -INSERT INTO entity_versions VALUES(3005,587,'2.6.4','10/25/2009',' '); -INSERT INTO entity_versions VALUES(3006,587,'2.6.3','10/02/2009',' '); -INSERT INTO entity_versions VALUES(3007,587,'2.6.2','04/14/2009',' '); -INSERT INTO entity_versions VALUES(3008,587,'2.6.1','12/04/2008',' '); -INSERT INTO entity_versions VALUES(3009,587,'2.6','10/01/2008',' '); -INSERT INTO entity_versions VALUES(3010,587,'2.5.4','12/23/2008',' '); -INSERT INTO entity_versions VALUES(3011,587,'2.5.3','12/19/2008',' '); -INSERT INTO entity_versions VALUES(3012,587,'2.5.2','02/21/2008',' '); -INSERT INTO entity_versions VALUES(3013,587,'2.5.1','04/18/2007',' '); -INSERT INTO entity_versions VALUES(3014,587,'2.5','09/19/2006',' '); -INSERT INTO entity_versions VALUES(3015,587,'2.4.4','10/18/2006',' '); -INSERT INTO entity_versions VALUES(3016,587,'2.4.3','03/29/2006',' '); -INSERT INTO entity_versions VALUES(3017,587,'2.4.2','09/28/2005',' '); -INSERT INTO entity_versions VALUES(3018,587,'2.4.1','03/30/2005',' '); -INSERT INTO entity_versions VALUES(3019,587,'2.4','11/30/2004',' '); -INSERT INTO entity_versions VALUES(3020,587,'2.3.5','02/08/2005',' '); -INSERT INTO entity_versions VALUES(3021,587,'2.3.4','05/27/2004',' '); -INSERT INTO entity_versions VALUES(3022,587,'2.3.3','12/19/2003',' '); -INSERT INTO entity_versions VALUES(3023,587,'2.3.2','10/03/2003',' '); -INSERT INTO entity_versions VALUES(3024,587,'2.3.1','09/23/2003',' '); -INSERT INTO entity_versions VALUES(3025,587,'2.3','07/29/2003',' '); -INSERT INTO entity_versions VALUES(3026,587,'2.2.3','05/30/2003',' '); -INSERT INTO entity_versions VALUES(3027,587,'2.2.2','10/14/2002',' '); -INSERT INTO entity_versions VALUES(3028,587,'2.2.1','04/10/2002',' '); -INSERT INTO entity_versions VALUES(3029,587,'2.2.0','03/29/2002',' '); -INSERT INTO entity_versions VALUES(3030,587,'2.2','12/21/2001',' '); -INSERT INTO entity_versions VALUES(3031,587,'2.1.3','04/08/2002',' '); -INSERT INTO entity_versions VALUES(3032,587,'2.1.2','01/16/2002',' '); -INSERT INTO entity_versions VALUES(3033,587,'2.1.1','07/20/2001',' '); -INSERT INTO entity_versions VALUES(3034,587,'2.1','04/15/2001',' '); -INSERT INTO entity_versions VALUES(3035,587,'2.0.1','06/22/2001',' '); -INSERT INTO entity_versions VALUES(3036,587,'2','10/16/2000',' '); -INSERT INTO entity_versions VALUES(3037,587,'1.6','09/05/2000',' '); -INSERT INTO entity_versions VALUES(3038,587,'1.5.2p2','03/22/2000',' '); -INSERT INTO entity_versions VALUES(3039,587,'1.5.2p1','07/06/1999',' '); -INSERT INTO entity_versions VALUES(3040,587,'1.5.2','04/30/1999',' '); -INSERT INTO entity_versions VALUES(3041,587,'1.5.1p1','08/06/1998',' '); -INSERT INTO entity_versions VALUES(3042,587,'1.5.1','04/14/1998',' '); -INSERT INTO entity_versions VALUES(3043,587,'1.5','02/17/1998',' '); -INSERT INTO entity_versions VALUES(3044,587,'1.4','10/25/1996',' '); -INSERT INTO entity_versions VALUES(3045,587,'1','01/01/1994',' '); -INSERT INTO entity_versions VALUES(3046,355,'4.1.1','08/30/2021',' '); -INSERT INTO entity_versions VALUES(3047,355,'4.1.0','05/30/2021',' '); -INSERT INTO entity_versions VALUES(3048,355,'4.0.5','03/30/2021',' '); -INSERT INTO entity_versions VALUES(3049,355,'4.0.4','02/28/2020',' '); -INSERT INTO entity_versions VALUES(3050,355,'4.0.3','10/30/2020',' '); -INSERT INTO entity_versions VALUES(3051,355,'4.0.2','06/30/2020',' '); -INSERT INTO entity_versions VALUES(3052,355,'4.0.1','06/30/2020',' '); -INSERT INTO entity_versions VALUES(3053,355,'4.0.0','04/30/2020',' '); -INSERT INTO entity_versions VALUES(3054,355,'3.6.3','02/28/2019',' '); -INSERT INTO entity_versions VALUES(3055,355,'3.6.2','12/30/2019',' '); -INSERT INTO entity_versions VALUES(3056,355,'3.6.1','07/30/2019',' '); -INSERT INTO entity_versions VALUES(3057,355,'3.6.0','04/30/2019',' '); -INSERT INTO entity_versions VALUES(3058,355,'3.5.3','03/30/2018',' '); -INSERT INTO entity_versions VALUES(3059,355,'3.5.2','12/30/2018',' '); -INSERT INTO entity_versions VALUES(3060,355,'3.5.1','07/30/2018',' '); -INSERT INTO entity_versions VALUES(3061,355,'3.5.0','04/30/2018',' '); -INSERT INTO entity_versions VALUES(3062,355,'3.4.4','03/30/2017',' '); -INSERT INTO entity_versions VALUES(3063,355,'3.4.3','11/30/2017',' '); -INSERT INTO entity_versions VALUES(3064,355,'3.4.2','09/30/2017',' '); -INSERT INTO entity_versions VALUES(3065,355,'3.4.1','06/30/2017',' '); -INSERT INTO entity_versions VALUES(3066,355,'3.4.0','04/30/2017',' '); -INSERT INTO entity_versions VALUES(3067,355,'3.3.3','03/30/2016',' '); -INSERT INTO entity_versions VALUES(3068,355,'3.3.2','10/30/2016',' '); -INSERT INTO entity_versions VALUES(3069,355,'3.3.1','06/30/2016',' '); -INSERT INTO entity_versions VALUES(3070,355,'3.3.0','04/30/2016',' '); -INSERT INTO entity_versions VALUES(3071,355,'3.2.5','04/30/2016',' '); -INSERT INTO entity_versions VALUES(3072,355,'3.2.4','03/30/2015',' '); -INSERT INTO entity_versions VALUES(3073,355,'3.2.3','12/30/2015',' '); -INSERT INTO entity_versions VALUES(3074,355,'3.2.2','08/30/2015',' '); -INSERT INTO entity_versions VALUES(3075,355,'3.2.1','06/30/2015',' '); -INSERT INTO entity_versions VALUES(3076,355,'3.2.0','04/30/2015',' '); -INSERT INTO entity_versions VALUES(3077,355,'3.1.3','03/30/2014',' '); -INSERT INTO entity_versions VALUES(3078,355,'3.1.2','10/30/2014',' '); -INSERT INTO entity_versions VALUES(3079,355,'3.1.1','07/30/2014',' '); -INSERT INTO entity_versions VALUES(3080,355,'3.1.0','04/30/2014',' '); -INSERT INTO entity_versions VALUES(3081,355,'3.0.3','03/30/2014',' '); -INSERT INTO entity_versions VALUES(3082,355,'3.0.2','09/30/2013',' '); -INSERT INTO entity_versions VALUES(3083,355,'3.0.1','05/30/2013',' '); -INSERT INTO entity_versions VALUES(3084,355,'3.0.0','04/30/2013',' '); -INSERT INTO entity_versions VALUES(3085,355,'2.15.3','03/30/2013',' '); -INSERT INTO entity_versions VALUES(3086,355,'2.15.2','10/30/2012',' '); -INSERT INTO entity_versions VALUES(3087,355,'2.15.1','06/30/2012',' '); -INSERT INTO entity_versions VALUES(3088,355,'2.15.0','03/30/2012',' '); -INSERT INTO entity_versions VALUES(3089,355,'2.14.2','02/28/2012',' '); -INSERT INTO entity_versions VALUES(3090,355,'2.14.1','12/30/2011',' '); -INSERT INTO entity_versions VALUES(3091,355,'2.14.0','11/30/2011',' '); -INSERT INTO entity_versions VALUES(3092,355,'2.13.2','09/30/2011',' '); -INSERT INTO entity_versions VALUES(3093,355,'2.13.1','07/30/2011',' '); -INSERT INTO entity_versions VALUES(3094,355,'2.13.0','04/30/2011',' '); -INSERT INTO entity_versions VALUES(3095,355,'2.12.2','02/28/2011',' '); -INSERT INTO entity_versions VALUES(3096,355,'2.12.1','12/30/2010',' '); -INSERT INTO entity_versions VALUES(3097,355,'2.12.0','10/30/2010',' '); -INSERT INTO entity_versions VALUES(3098,355,'2.11.1','05/30/2010',' '); -INSERT INTO entity_versions VALUES(3099,355,'2.11.0','04/30/2010',' '); -INSERT INTO entity_versions VALUES(3100,355,'2.10.1','12/30/2009',' '); -INSERT INTO entity_versions VALUES(3101,355,'2.10.0','10/30/2009',' '); -INSERT INTO entity_versions VALUES(3102,355,'2.9.2','08/30/2009',' '); -INSERT INTO entity_versions VALUES(3103,355,'2.9.1','06/30/2009',' '); -INSERT INTO entity_versions VALUES(3104,355,'2.9.0','04/30/2009',' '); -INSERT INTO entity_versions VALUES(3105,355,'2.8.1','12/30/2008',' '); -INSERT INTO entity_versions VALUES(3106,355,'2.8.0','10/30/2008',' '); -INSERT INTO entity_versions VALUES(3107,355,'2.7.2','08/30/2008',' '); -INSERT INTO entity_versions VALUES(3108,355,'2.7.1','06/30/2008',' '); -INSERT INTO entity_versions VALUES(3109,355,'2.7.0','04/30/2008',' '); -INSERT INTO entity_versions VALUES(3110,355,'2.6.2','02/28/2008',' '); -INSERT INTO entity_versions VALUES(3111,355,'2.6.1','11/30/2007',' '); -INSERT INTO entity_versions VALUES(3112,355,'2.6.0','10/30/2007',' '); -INSERT INTO entity_versions VALUES(3113,355,'2.5.1','07/30/2007',' '); -INSERT INTO entity_versions VALUES(3114,355,'2.5.0','04/30/2007',' '); -INSERT INTO entity_versions VALUES(3115,355,'2.4.1','12/30/2006',' '); -INSERT INTO entity_versions VALUES(3116,355,'2.4.0','10/30/2006',' '); -INSERT INTO entity_versions VALUES(3117,355,'2.3.1','06/30/2006',' '); -INSERT INTO entity_versions VALUES(3118,355,'2.3.0','04/30/2006',' '); -INSERT INTO entity_versions VALUES(3119,355,'2.2.1','12/30/2005',' '); -INSERT INTO entity_versions VALUES(3120,355,'2.2.0','10/30/2005',' '); -INSERT INTO entity_versions VALUES(3121,355,'2.1.1','06/30/2005',' '); -INSERT INTO entity_versions VALUES(3122,355,'2.1.0','04/30/2005',' '); -INSERT INTO entity_versions VALUES(3123,355,'2.0.1','11/30/2004',' '); -INSERT INTO entity_versions VALUES(3124,355,'2.0.0','10/30/2004',' '); -INSERT INTO entity_versions VALUES(3125,355,'1.9.1','06/30/2004',' '); -INSERT INTO entity_versions VALUES(3126,355,'1.8.1','11/30/2003',' '); -INSERT INTO entity_versions VALUES(3127,355,'1.7.1','06/30/2003',' '); -INSERT INTO entity_versions VALUES(3128,355,'1.6.2','01/30/2003',' '); -INSERT INTO entity_versions VALUES(3129,355,'1.5.1','06/30/2002',' '); -INSERT INTO entity_versions VALUES(3130,355,'1.4.1','01/30/2002',' '); -INSERT INTO entity_versions VALUES(3131,355,'1.3.1','09/30/2001',' '); -INSERT INTO entity_versions VALUES(3132,355,'1.2.2','03/30/2001',' '); -INSERT INTO entity_versions VALUES(3133,355,'1.0.0','02/28/2000',' '); -INSERT INTO entity_versions VALUES(3134,588,'3.0.2','07/07/2021',' '); -INSERT INTO entity_versions VALUES(3135,588,'2.7.4','07/07/2021',' '); -INSERT INTO entity_versions VALUES(3136,588,'2.6.8','07/07/2021',' '); -INSERT INTO entity_versions VALUES(3137,588,'3.0.1','04/05/2021',' '); -INSERT INTO entity_versions VALUES(3138,588,'2.7.3','04/05/2021',' '); -INSERT INTO entity_versions VALUES(3139,588,'2.6.7','04/05/2021',' '); -INSERT INTO entity_versions VALUES(3140,588,'2.5.9','04/05/2021',' '); -INSERT INTO entity_versions VALUES(3141,588,'3.0.0','12/25/2020',' '); -INSERT INTO entity_versions VALUES(3142,588,'3.0.0src1','12/20/2020',' '); -INSERT INTO entity_versions VALUES(3143,588,'3.0.0spreview2','12/08/2020',' '); -INSERT INTO entity_versions VALUES(3144,588,'2.7.2','10/02/2020',' '); -INSERT INTO entity_versions VALUES(3145,588,'3.0.0spreview1','09/25/2020',' '); -INSERT INTO entity_versions VALUES(3146,588,'2.7.1','03/31/2020',' '); -INSERT INTO entity_versions VALUES(3147,588,'2.6.6','03/31/2020',' '); -INSERT INTO entity_versions VALUES(3148,588,'2.5.8','03/31/2020',' '); -INSERT INTO entity_versions VALUES(3149,588,'2.4.10','03/31/2020',' '); -INSERT INTO entity_versions VALUES(3150,588,'2.7.0','12/25/2019',' '); -INSERT INTO entity_versions VALUES(3151,588,'2.7.0src2','12/21/2019',' '); -INSERT INTO entity_versions VALUES(3152,588,'2.7.0src1','12/17/2019',' '); -INSERT INTO entity_versions VALUES(3153,588,'2.7.0spreview3','11/23/2019',' '); -INSERT INTO entity_versions VALUES(3154,588,'2.7.0spreview2','10/22/2019',' '); -INSERT INTO entity_versions VALUES(3155,588,'2.4.9','10/02/2019',' '); -INSERT INTO entity_versions VALUES(3156,588,'2.6.5','10/01/2019',' '); -INSERT INTO entity_versions VALUES(3157,588,'2.5.7','10/01/2019',' '); -INSERT INTO entity_versions VALUES(3158,588,'2.4.8','10/01/2019',' '); -INSERT INTO entity_versions VALUES(3159,588,'2.6.4','08/28/2019',' '); -INSERT INTO entity_versions VALUES(3160,588,'2.5.6','08/28/2019',' '); -INSERT INTO entity_versions VALUES(3161,588,'2.4.7','08/28/2019',' '); -INSERT INTO entity_versions VALUES(3162,588,'2.7.0spreview1','05/30/2019',' '); -INSERT INTO entity_versions VALUES(3163,588,'2.6.3','04/17/2019',' '); -INSERT INTO entity_versions VALUES(3164,588,'2.4.6','04/01/2019',' '); -INSERT INTO entity_versions VALUES(3165,588,'2.5.5','03/15/2019',' '); -INSERT INTO entity_versions VALUES(3166,588,'2.6.2','03/13/2019',' '); -INSERT INTO entity_versions VALUES(3167,588,'2.5.4','03/13/2019',' '); -INSERT INTO entity_versions VALUES(3168,588,'2.6.1','01/30/2019',' '); -INSERT INTO entity_versions VALUES(3169,588,'2.6.0','12/25/2018',' '); -INSERT INTO entity_versions VALUES(3170,588,'2.6.0src2','12/15/2018',' '); -INSERT INTO entity_versions VALUES(3171,588,'2.6.0src1','12/06/2018',' '); -INSERT INTO entity_versions VALUES(3172,588,'2.6.0spreview3','11/06/2018',' '); -INSERT INTO entity_versions VALUES(3173,588,'2.5.3','10/18/2018',' '); -INSERT INTO entity_versions VALUES(3174,588,'2.5.2','10/17/2018',' '); -INSERT INTO entity_versions VALUES(3175,588,'2.4.5','10/17/2018',' '); -INSERT INTO entity_versions VALUES(3176,588,'2.3.8','10/17/2018',' '); -INSERT INTO entity_versions VALUES(3177,588,'2.6.0spreview2','05/31/2018',' '); -INSERT INTO entity_versions VALUES(3178,588,'2.5.1','03/28/2018',' '); -INSERT INTO entity_versions VALUES(3179,588,'2.4.4','03/28/2018',' '); -INSERT INTO entity_versions VALUES(3180,588,'2.3.7','03/28/2018',' '); -INSERT INTO entity_versions VALUES(3181,588,'2.2.10','03/28/2018',' '); -INSERT INTO entity_versions VALUES(3182,588,'2.6.0spreview1','02/24/2018',' '); -INSERT INTO entity_versions VALUES(3183,588,'2.5.0','12/25/2017',' '); -INSERT INTO entity_versions VALUES(3184,588,'2.5.0src1','12/14/2017',' '); -INSERT INTO entity_versions VALUES(3185,588,'2.4.3','12/14/2017',' '); -INSERT INTO entity_versions VALUES(3186,588,'2.3.6','12/14/2017',' '); -INSERT INTO entity_versions VALUES(3187,588,'2.2.9','12/14/2017',' '); -INSERT INTO entity_versions VALUES(3188,588,'2.5.0spreview1','10/10/2017',' '); -INSERT INTO entity_versions VALUES(3189,588,'2.4.2','09/14/2017',' '); -INSERT INTO entity_versions VALUES(3190,588,'2.3.5','09/14/2017',' '); -INSERT INTO entity_versions VALUES(3191,588,'2.2.8','09/14/2017',' '); -INSERT INTO entity_versions VALUES(3192,588,'2.3.4','03/30/2017',' '); -INSERT INTO entity_versions VALUES(3193,588,'2.2.7','03/28/2017',' '); -INSERT INTO entity_versions VALUES(3194,588,'2.4.1','03/22/2017',' '); -INSERT INTO entity_versions VALUES(3195,588,'2.4.0','12/25/2016',' '); -INSERT INTO entity_versions VALUES(3196,588,'2.4.0src1','12/12/2016',' '); -INSERT INTO entity_versions VALUES(3197,588,'2.3.3','11/21/2016',' '); -INSERT INTO entity_versions VALUES(3198,588,'2.3.2','11/15/2016',' '); -INSERT INTO entity_versions VALUES(3199,588,'2.2.6','11/15/2016',' '); -INSERT INTO entity_versions VALUES(3200,588,'2.4.0spreview3','11/09/2016',' '); -INSERT INTO entity_versions VALUES(3201,588,'2.4.0spreview2','09/08/2016',' '); -INSERT INTO entity_versions VALUES(3202,588,'2.4.0spreview1','06/20/2016',' '); -INSERT INTO entity_versions VALUES(3203,588,'2.3.1','04/26/2016',' '); -INSERT INTO entity_versions VALUES(3204,588,'2.2.5','04/26/2016',' '); -INSERT INTO entity_versions VALUES(3205,588,'2.1.10','04/01/2016',' '); -INSERT INTO entity_versions VALUES(3206,588,'2.1.9','03/30/2016',' '); -INSERT INTO entity_versions VALUES(3207,588,'2.3.0','12/25/2015',' '); -INSERT INTO entity_versions VALUES(3208,588,'2.2.4','12/16/2015',' '); -INSERT INTO entity_versions VALUES(3209,588,'2.1.8','12/16/2015',' '); -INSERT INTO entity_versions VALUES(3210,588,'2.0.0sp648','12/16/2015',' '); -INSERT INTO entity_versions VALUES(3211,588,'2.3.0spreview2','12/11/2015',' '); -INSERT INTO entity_versions VALUES(3212,588,'2.3.0spreview1','11/11/2015',' '); -INSERT INTO entity_versions VALUES(3213,588,'2.2.3','08/18/2015',' '); -INSERT INTO entity_versions VALUES(3214,588,'2.1.7','08/18/2015',' '); -INSERT INTO entity_versions VALUES(3215,588,'2.0.0sp647','08/18/2015',' '); -INSERT INTO entity_versions VALUES(3216,588,'2.2.2','04/13/2015',' '); -INSERT INTO entity_versions VALUES(3217,588,'2.1.6','04/13/2015',' '); -INSERT INTO entity_versions VALUES(3218,588,'2.0.0sp645','04/13/2015',' '); -INSERT INTO entity_versions VALUES(3219,588,'2.2.1','03/03/2015',' '); -INSERT INTO entity_versions VALUES(3220,588,'2.0.0sp643','02/25/2015',' '); -INSERT INTO entity_versions VALUES(3221,588,'2.2.0','12/25/2014',' '); -INSERT INTO entity_versions VALUES(3222,588,'2.2.0src1','12/18/2014',' '); -INSERT INTO entity_versions VALUES(3223,588,'2.2.0spreview2','11/28/2014',' '); -INSERT INTO entity_versions VALUES(3224,588,'2.1.5','11/13/2014',' '); -INSERT INTO entity_versions VALUES(3225,588,'2.0.0sp598','11/13/2014',' '); -INSERT INTO entity_versions VALUES(3226,588,'1.9.3sp551','11/13/2014',' '); -INSERT INTO entity_versions VALUES(3227,588,'2.1.4','10/27/2014',' '); -INSERT INTO entity_versions VALUES(3228,588,'2.0.0sp594','10/27/2014',' '); -INSERT INTO entity_versions VALUES(3229,588,'1.9.3sp550','10/27/2014',' '); -INSERT INTO entity_versions VALUES(3230,588,'2.1.3','09/19/2014',' '); -INSERT INTO entity_versions VALUES(3231,588,'2.0.0sp576','09/19/2014',' '); -INSERT INTO entity_versions VALUES(3232,588,'2.2.0spreview1','09/18/2014',' '); -INSERT INTO entity_versions VALUES(3233,588,'1.9.2sp330','08/19/2014',' '); -INSERT INTO entity_versions VALUES(3234,588,'1.9.3sp547','05/16/2014',' '); -INSERT INTO entity_versions VALUES(3235,588,'2.1.2','05/09/2014',' '); -INSERT INTO entity_versions VALUES(3236,588,'2.0.0sp481','05/09/2014',' '); -INSERT INTO entity_versions VALUES(3237,588,'2.1.1','02/24/2014',' '); -INSERT INTO entity_versions VALUES(3238,588,'2.0.0sp451','02/24/2014',' '); -INSERT INTO entity_versions VALUES(3239,588,'1.9.3sp545','02/24/2014',' '); -INSERT INTO entity_versions VALUES(3240,588,'2.1.0','12/25/2013',' '); -INSERT INTO entity_versions VALUES(3241,588,'2.1.0src1','12/20/2013',' '); -INSERT INTO entity_versions VALUES(3242,588,'2.1.0spreview2','11/22/2013',' '); -INSERT INTO entity_versions VALUES(3243,588,'2.0.0sp353','11/22/2013',' '); -INSERT INTO entity_versions VALUES(3244,588,'1.9.3sp484','11/22/2013',' '); -INSERT INTO entity_versions VALUES(3245,588,'2.1.0spreview1','09/23/2013',' '); -INSERT INTO entity_versions VALUES(3246,588,'2.0.0sp247','06/27/2013',' '); -INSERT INTO entity_versions VALUES(3247,588,'1.9.3sp448','06/27/2013',' '); -INSERT INTO entity_versions VALUES(3248,588,'1.8.7sp374','06/27/2013',' '); -INSERT INTO entity_versions VALUES(3249,588,'2.0.0sp195','05/14/2013',' '); -INSERT INTO entity_versions VALUES(3250,588,'1.9.3sp429','05/14/2013',' '); -INSERT INTO entity_versions VALUES(3251,588,'2.0.0','02/24/2013',' '); -INSERT INTO entity_versions VALUES(3252,588,'1.9.3sp392','02/22/2013',' '); -INSERT INTO entity_versions VALUES(3253,588,'2.0.0src2','02/08/2013',' '); -INSERT INTO entity_versions VALUES(3254,588,'1.9.3sp385','02/06/2013',' '); -INSERT INTO entity_versions VALUES(3255,588,'1.9.3sp374','01/17/2013',' '); -INSERT INTO entity_versions VALUES(3256,588,'1.9.3sp362','12/25/2012',' '); -INSERT INTO entity_versions VALUES(3257,588,'1.9.3sp327','11/09/2012',' '); -INSERT INTO entity_versions VALUES(3258,588,'1.9.3sp286','10/12/2012',' '); -INSERT INTO entity_versions VALUES(3259,588,'1.8.7sp370','06/29/2012',' '); -INSERT INTO entity_versions VALUES(3260,588,'1.9.2sp320','04/21/2012',' '); -INSERT INTO entity_versions VALUES(3261,588,'1.9.3sp194','04/20/2012',' '); -INSERT INTO entity_versions VALUES(3262,588,'1.9.3sp125','02/16/2012',' '); -INSERT INTO entity_versions VALUES(3263,588,'1.9.3','10/31/2011',' '); -INSERT INTO entity_versions VALUES(3264,588,'1.9.3src1','09/24/2011',' '); -INSERT INTO entity_versions VALUES(3265,588,'1.9.3spreview1','08/01/2011',' '); -INSERT INTO entity_versions VALUES(3266,588,'1.9.2sp290','07/15/2011',' '); -INSERT INTO entity_versions VALUES(3267,588,'1.8.7sp352','07/02/2011',' '); -INSERT INTO entity_versions VALUES(3268,588,'1.9.2sp136','12/25/2010',' '); -INSERT INTO entity_versions VALUES(3269,588,'1.8.7sp330','12/25/2010',' '); -INSERT INTO entity_versions VALUES(3270,588,'1.9.2','08/18/2010',' '); -INSERT INTO entity_versions VALUES(3271,588,'1.9.1sp430','08/16/2010',' '); -INSERT INTO entity_versions VALUES(3272,588,'1.8.7sp302','08/16/2010',' '); -INSERT INTO entity_versions VALUES(3273,588,'1.9.2src2','07/11/2010',' '); -INSERT INTO entity_versions VALUES(3274,588,'1.9.2src1','07/02/2010',' '); -INSERT INTO entity_versions VALUES(3275,588,'1.9.1sp429','07/02/2010',' '); -INSERT INTO entity_versions VALUES(3276,588,'1.8.7sp299','06/23/2010',' '); -INSERT INTO entity_versions VALUES(3277,588,'1.8.7sp248','12/25/2009',' '); -INSERT INTO entity_versions VALUES(3278,588,'1.9.1sp376','12/07/2009',' '); -INSERT INTO entity_versions VALUES(3279,588,'1.9.2spreview1','07/20/2009',' '); -INSERT INTO entity_versions VALUES(3280,588,'1.9.1sp243','07/20/2009',' '); -INSERT INTO entity_versions VALUES(3281,588,'1.9.1sp129','05/12/2009',' '); -INSERT INTO entity_versions VALUES(3282,588,'1.8.7sp160','04/18/2009',' '); -INSERT INTO entity_versions VALUES(3283,588,'1.8.6sp368','04/18/2009',' '); -INSERT INTO entity_versions VALUES(3284,588,'1.9.1','01/30/2009',' '); -INSERT INTO entity_versions VALUES(3285,588,'1.9.1spreview1','10/28/2008',' '); -INSERT INTO entity_versions VALUES(3286,588,'1.8.7sp72','08/11/2008',' '); -INSERT INTO entity_versions VALUES(3287,588,'1.8.6sp287','08/11/2008',' '); -INSERT INTO entity_versions VALUES(3288,588,'1.8.7','05/31/2008',' '); -INSERT INTO entity_versions VALUES(3289,588,'1.9.0','12/25/2007',' '); -INSERT INTO entity_versions VALUES(3290,588,'1.8.6','03/12/2007',' '); -INSERT INTO entity_versions VALUES(3291,588,'1.8.5','08/29/2006',' '); -INSERT INTO entity_versions VALUES(3292,588,'1.8.4','12/24/2005',' '); -INSERT INTO entity_versions VALUES(3293,588,'1.8.4spreview2','12/14/2005',' '); -INSERT INTO entity_versions VALUES(3294,588,'1.8.3','09/21/2005',' '); -INSERT INTO entity_versions VALUES(3295,588,'1.8.2','12/26/2004',' '); -INSERT INTO entity_versions VALUES(3296,588,'1.8.2spreview4','12/22/2004',' '); -INSERT INTO entity_versions VALUES(3297,588,'1.8.2spreview3','11/08/2004',' '); -INSERT INTO entity_versions VALUES(3298,588,'1.8.2spreview2','07/30/2004',' '); -INSERT INTO entity_versions VALUES(3299,588,'1.8.2spreview1','07/21/2004',' '); -INSERT INTO entity_versions VALUES(3300,588,'1.8.0','08/04/2003',' '); -INSERT INTO entity_versions VALUES(3301,588,'1.6.7','03/01/2002',' '); -INSERT INTO entity_versions VALUES(3302,323,'1','03/28/2012',' '); -INSERT INTO entity_versions VALUES(3303,323,'1.1','05/13/2013',' '); -INSERT INTO entity_versions VALUES(3304,323,'1.2','12/01/2013',' '); -INSERT INTO entity_versions VALUES(3305,323,'1.3','06/18/2014',' '); -INSERT INTO entity_versions VALUES(3306,323,'1.4','12/10/2014',' '); -INSERT INTO entity_versions VALUES(3307,323,'1.5','08/19/2015',' '); -INSERT INTO entity_versions VALUES(3308,323,'1.6','02/17/2016',' '); -INSERT INTO entity_versions VALUES(3309,323,'1.7','08/15/2016',' '); -INSERT INTO entity_versions VALUES(3310,323,'1.8','02/16/2017',' '); -INSERT INTO entity_versions VALUES(3311,323,'1.9','08/24/2017',' '); -INSERT INTO entity_versions VALUES(3312,323,'1.10','02/16/2018',' '); -INSERT INTO entity_versions VALUES(3313,323,'1.11','08/24/2018',' '); -INSERT INTO entity_versions VALUES(3314,323,'1.12.1','02/25/2019',' '); -INSERT INTO entity_versions VALUES(3315,323,'1.13.1','09/03/2019',' '); -INSERT INTO entity_versions VALUES(3316,323,'1.14','02/25/2020',' '); -INSERT INTO entity_versions VALUES(3317,323,'1.15','08/11/2020',' '); -INSERT INTO entity_versions VALUES(3318,323,'1.16','02/16/2021',' '); -INSERT INTO entity_versions VALUES(3319,323,'1.17','08/16/2021',' '); -INSERT INTO entity_versions VALUES(3320,325,'1','01/02/2007',' '); -INSERT INTO entity_versions VALUES(3321,325,'1.2','12/07/2007',' '); -INSERT INTO entity_versions VALUES(3322,325,'1.5',' ',' '); -INSERT INTO entity_versions VALUES(3323,325,'2','07/02/2012',' '); -INSERT INTO entity_versions VALUES(3324,325,'3','02/07/2020',' '); -INSERT INTO entity_versions VALUES(3325,325,'4.0','09/01/2021',' '); -INSERT INTO entity_versions VALUES(3326,333,'1.2','12/12/1999','05/22/2020'); -INSERT INTO entity_versions VALUES(3327,333,'1.3','09/24/2001','06/28/2020'); -INSERT INTO entity_versions VALUES(3328,333,'1.4','11/11/2003','08/29/2020'); -INSERT INTO entity_versions VALUES(3329,333,'5','05/11/2006','08/11/2020'); -INSERT INTO entity_versions VALUES(3330,333,'6','12/10/2009','12/19/2020'); -INSERT INTO entity_versions VALUES(3331,333,'7','05/28/2013','04/30/2001'); -INSERT INTO entity_versions VALUES(3332,333,'8','08/31/2017','06/23/2001'); -INSERT INTO entity_versions VALUES(3333,333,'9','11/22/2020','12/10/2001'); -INSERT INTO entity_versions VALUES(3334,333,'9.1','05/25/2021',' '); -INSERT INTO entity_versions VALUES(3335,583,'98','12/31/1998',' '); -INSERT INTO entity_versions VALUES(3336,583,'03','12/31/2003',' '); -INSERT INTO entity_versions VALUES(3337,583,'11','12/31/2011',' '); -INSERT INTO entity_versions VALUES(3338,583,'14','12/31/2014',' '); -INSERT INTO entity_versions VALUES(3339,583,'17','12/31/2017',' '); -INSERT INTO entity_versions VALUES(3340,583,'20','12/31/2020',' '); -INSERT INTO entity_versions VALUES(3341,344,'progress 4gl','12/31/1981',' '); -INSERT INTO entity_versions VALUES(3342,344,'10.1','12/31/2006',' '); -INSERT INTO entity_versions VALUES(3343,586,'3.0.0','08/20/2020','08/20/2020'); -INSERT INTO entity_versions VALUES(3344,586,'4','05/22/2020',' '); -INSERT INTO entity_versions VALUES(3345,586,'4.1','12/10/2001',' '); -INSERT INTO entity_versions VALUES(3346,586,'4.2','04/22/2002',' '); -INSERT INTO entity_versions VALUES(3347,586,'4.3','12/27/2002',' '); -INSERT INTO entity_versions VALUES(3348,586,'4.4','07/11/2005',' '); -INSERT INTO entity_versions VALUES(3349,586,'5','07/13/2004',' '); -INSERT INTO entity_versions VALUES(3350,586,'5.1','11/24/2005',' '); -INSERT INTO entity_versions VALUES(3351,586,'5.2','11/02/2006',' '); -INSERT INTO entity_versions VALUES(3352,586,'5.3','06/30/2009',' '); -INSERT INTO entity_versions VALUES(3353,586,'5.4','03/01/2012',' '); -INSERT INTO entity_versions VALUES(3354,586,'5.5','06/20/2013',' '); -INSERT INTO entity_versions VALUES(3355,586,'5.6','08/28/2014',' '); -INSERT INTO entity_versions VALUES(3356,586,'7','12/03/2015',' '); -INSERT INTO entity_versions VALUES(3357,586,'7.1','12/01/2016',' '); -INSERT INTO entity_versions VALUES(3358,586,'7.2','11/30/2017',' '); -INSERT INTO entity_versions VALUES(3359,586,'7.3','12/06/2018',' '); -INSERT INTO entity_versions VALUES(3360,586,'7.4','11/28/2019',' '); -INSERT INTO entity_versions VALUES(3361,586,'8','11/26/2020',' '); -INSERT INTO entity_versions VALUES(3362,311,'3','06/30/1997',' '); -INSERT INTO entity_versions VALUES(3363,311,'4','11/30/1998',' '); -INSERT INTO entity_versions VALUES(3364,311,'4.5','11/30/1999',' '); -INSERT INTO entity_versions VALUES(3365,311,'5','06/30/2001',' '); -INSERT INTO entity_versions VALUES(3366,311,'6','06/30/2002',' '); -INSERT INTO entity_versions VALUES(3367,311,'7','02/07/2005',' '); -INSERT INTO entity_versions VALUES(3368,311,'8','06/30/2007',' '); -INSERT INTO entity_versions VALUES(3369,311,'9','10/05/2009',' '); -INSERT INTO entity_versions VALUES(3370,311,'10',' ',' '); -INSERT INTO entity_versions VALUES(3371,311,'11','04/29/2014',' '); -INSERT INTO entity_versions VALUES(3372,311,'2016','02/16/2016',' '); -INSERT INTO entity_versions VALUES(3373,311,'2018','07/12/2018',' '); -INSERT INTO entity_versions VALUES(3374,311,'2021','11/11/2020',' '); -INSERT INTO entity_versions VALUES(3375,362,'1.0.0','12/08/2003',' '); -INSERT INTO entity_versions VALUES(3376,362,'1.1.0','02/19/2004',' '); -INSERT INTO entity_versions VALUES(3377,362,'1.1.1','03/23/2004',' '); -INSERT INTO entity_versions VALUES(3378,362,'1.2.0','06/09/2004',' '); -INSERT INTO entity_versions VALUES(3379,362,'1.3.0','09/16/2004',' '); -INSERT INTO entity_versions VALUES(3380,362,'1.4.0','06/20/2005',' '); -INSERT INTO entity_versions VALUES(3381,362,'2','03/12/2006',' '); -INSERT INTO entity_versions VALUES(3382,362,'2.1.0','03/17/2006',' '); -INSERT INTO entity_versions VALUES(3383,362,'2.1.8','08/23/2006',' '); -INSERT INTO entity_versions VALUES(3384,362,'2.3.0','11/23/2006',' '); -INSERT INTO entity_versions VALUES(3385,362,'2.4.0','03/09/2007',' '); -INSERT INTO entity_versions VALUES(3386,362,'2.5.0','05/02/2007',' '); -INSERT INTO entity_versions VALUES(3387,362,'2.6.0','07/27/2007',' '); -INSERT INTO entity_versions VALUES(3388,362,'2.7.0','02/07/2008',' '); -INSERT INTO entity_versions VALUES(3389,362,'2.8.0','07/14/2010',' '); -INSERT INTO entity_versions VALUES(3390,362,'2.9.0','05/12/2011',' '); -INSERT INTO entity_versions VALUES(3391,362,'2.1','01/04/2013',' '); -INSERT INTO entity_versions VALUES(3392,313,'1','12/31/1995',' '); -INSERT INTO entity_versions VALUES(3393,313,'2','12/31/1996',' '); -INSERT INTO entity_versions VALUES(3394,313,'3','12/31/1997',' '); -INSERT INTO entity_versions VALUES(3395,313,'4','12/31/1998',' '); -INSERT INTO entity_versions VALUES(3396,313,'5','12/31/1999',' '); -INSERT INTO entity_versions VALUES(3397,313,'6','12/31/2001',' '); -INSERT INTO entity_versions VALUES(3398,313,'7','08/31/2002',' '); -INSERT INTO entity_versions VALUES(3399,313,'8','12/31/2003',' '); -INSERT INTO entity_versions VALUES(3400,313,'2005','12/31/2005',' '); -INSERT INTO entity_versions VALUES(3401,313,'2006','12/31/2005',' '); -INSERT INTO entity_versions VALUES(3402,313,'Turbo','09/06/2006',' '); -INSERT INTO entity_versions VALUES(3403,313,'Transfer','02/08/2006',' '); -INSERT INTO entity_versions VALUES(3404,313,'2007','03/16/2007',' '); -INSERT INTO entity_versions VALUES(3405,313,'2009',' ',' '); -INSERT INTO entity_versions VALUES(3406,313,'2010','08/25/2009',' '); -INSERT INTO entity_versions VALUES(3407,313,'XE','08/30/2010',' '); -INSERT INTO entity_versions VALUES(3408,313,'XE1','01/27/2011',' '); -INSERT INTO entity_versions VALUES(3409,313,'XE2','09/01/2011',' '); -INSERT INTO entity_versions VALUES(3410,313,'XE3','09/01/2012',' '); -INSERT INTO entity_versions VALUES(3411,313,'XE4','04/22/2013',' '); -INSERT INTO entity_versions VALUES(3412,313,'XE5','09/12/2013',' '); -INSERT INTO entity_versions VALUES(3413,313,'XE6','04/15/2014',' '); -INSERT INTO entity_versions VALUES(3414,313,'XE7','09/02/2014',' '); -INSERT INTO entity_versions VALUES(3415,313,'XE8','04/07/2015',' '); -INSERT INTO entity_versions VALUES(3416,313,'10','08/31/2015',' '); -INSERT INTO entity_versions VALUES(3417,313,'10.1','04/20/2016',' '); -INSERT INTO entity_versions VALUES(3418,313,'10.1.1','09/30/2016',' '); -INSERT INTO entity_versions VALUES(3419,313,'10.1.2','12/31/2016',' '); -INSERT INTO entity_versions VALUES(3420,313,'10.2','03/22/2017',' '); -INSERT INTO entity_versions VALUES(3421,313,'10.2.1','08/30/2017',' '); -INSERT INTO entity_versions VALUES(3422,313,'10.2.2','12/31/2017',' '); -INSERT INTO entity_versions VALUES(3423,313,'10.2.3','03/31/2018',' '); -INSERT INTO entity_versions VALUES(3424,313,'10.3','11/21/2018',' '); -INSERT INTO entity_versions VALUES(3425,313,'10.3.1','02/28/2019',' '); -INSERT INTO entity_versions VALUES(3426,313,'10.3.2','07/31/2019',' '); -INSERT INTO entity_versions VALUES(3427,313,'10.3.3','11/30/2019',' '); -INSERT INTO entity_versions VALUES(3428,313,'10.4','05/26/2020',' '); -INSERT INTO entity_versions VALUES(3429,313,'10.4.1','09/30/2020',' '); -INSERT INTO entity_versions VALUES(3430,313,'10.4.2','02/24/2021',' '); -INSERT INTO entity_versions VALUES(3431,313,'11','09/09/2021',' '); -INSERT INTO entity_versions VALUES(3432,594,'60','05/29/1959',' '); -INSERT INTO entity_versions VALUES(3433,594,'65','12/31/1965',' '); -INSERT INTO entity_versions VALUES(3434,594,'74','12/31/1974',' '); -INSERT INTO entity_versions VALUES(3435,594,'85','12/31/1985',' '); -INSERT INTO entity_versions VALUES(3436,594,'2002',' ',' '); -INSERT INTO entity_versions VALUES(3437,594,'2014',' ',' '); -INSERT INTO entity_versions VALUES(3438,580,'1.01','11/20/1985','12/31/2001'); -INSERT INTO entity_versions VALUES(3439,580,'1.02','05/14/1986','12/31/2001'); -INSERT INTO entity_versions VALUES(3440,580,'1.03','08/21/1986','12/31/2001'); -INSERT INTO entity_versions VALUES(3441,580,'1.04','04/10/1987','12/31/2001'); -INSERT INTO entity_versions VALUES(3442,580,'2.01','12/09/1987','12/31/2001'); -INSERT INTO entity_versions VALUES(3443,580,'2.03','12/09/1987','12/31/2001'); -INSERT INTO entity_versions VALUES(3444,580,'2.1','05/27/1988','12/31/2001'); -INSERT INTO entity_versions VALUES(3445,580,'2.11','03/13/1989','12/31/2001'); -INSERT INTO entity_versions VALUES(3446,580,'3','05/22/1990','12/31/2001'); -INSERT INTO entity_versions VALUES(3447,580,'3.1','04/06/1992','12/31/2001'); -INSERT INTO entity_versions VALUES(3448,580,' NT 3.1','07/27/1993','12/31/2001'); -INSERT INTO entity_versions VALUES(3449,580,'3.11','11/08/1993','12/31/2001'); -INSERT INTO entity_versions VALUES(3450,580,'3.2','11/22/1993','12/31/2001'); -INSERT INTO entity_versions VALUES(3451,580,'NT 3.5','09/21/1994','12/31/2001'); -INSERT INTO entity_versions VALUES(3452,580,'NT 3.51','08/24/1995','12/31/2001'); -INSERT INTO entity_versions VALUES(3453,580,'95','08/24/1996','12/31/2001'); -INSERT INTO entity_versions VALUES(3454,580,'NT 4.0','06/25/1998','06/30/2004'); -INSERT INTO entity_versions VALUES(3455,580,'98','05/05/1999','07/11/2006'); -INSERT INTO entity_versions VALUES(3456,580,'2000','02/17/2000','07/13/2010'); -INSERT INTO entity_versions VALUES(3457,580,'Me','09/14/2000','07/11/2006'); -INSERT INTO entity_versions VALUES(3458,580,'XP','10/25/2001','04/08/2014'); -INSERT INTO entity_versions VALUES(3459,580,'Vista','01/30/2007','04/11/2017'); -INSERT INTO entity_versions VALUES(3460,580,'7','10/22/2009','01/14/2020'); -INSERT INTO entity_versions VALUES(3461,580,'8','10/26/2012','01/12/2016'); -INSERT INTO entity_versions VALUES(3462,580,'8.1','10/17/2013','01/10/2023'); -INSERT INTO entity_versions VALUES(3463,580,'10','07/29/2015','10/14/2025'); -INSERT INTO entity_versions VALUES(3464,580,'11','10/05/2021','10/10/2023'); -INSERT INTO entity_versions VALUES(3465,697,'3.8.5','03/05/2022',''); -INSERT INTO entity_versions VALUES(3466,697,'3.8.4','11/12/2021','03/05/2022'); -INSERT INTO entity_versions VALUES(3467,697,'3.8.3','09/27/2021','11/12/2021'); -INSERT INTO entity_versions VALUES(3468,697,'3.8.1','04/04/2021','09/27/2021'); -DELETE FROM sqlite_sequence; -INSERT INTO sqlite_sequence VALUES('docker_baseos_images',13); -INSERT INTO sqlite_sequence VALUES('docker_images',171); -INSERT INTO sqlite_sequence VALUES('entities',698); -INSERT INTO sqlite_sequence VALUES('entity_mentions',7721); -INSERT INTO sqlite_sequence VALUES('entity_relations',1378); -INSERT INTO sqlite_sequence VALUES('entity_types',12); -INSERT INTO sqlite_sequence VALUES('openshift_baseos_images',1); -INSERT INTO sqlite_sequence VALUES('openshift_images',53); -INSERT INTO sqlite_sequence VALUES('operator_images',63); -INSERT INTO sqlite_sequence VALUES('docker_environment_variables',28); -INSERT INTO sqlite_sequence VALUES('entity_versions',3468); -COMMIT; +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (1, 'Apache Spark Operator', 576, 584, NULL, 280, NULL, NULL, NULL, NULL, 'quay.io/radanalyticsio/spark-operator:1.0.2', 'https://github.com/radanalyticsio/spark-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (2, 'Banzai Cloud Kafka Operator', 576, 323, NULL, 9, NULL, NULL, NULL, NULL, 'banzaicloud/kafka-operator:0.3.1', 'https://github.com/banzaicloud/kafka-operator/tree/master'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (3, 'Camel K Operator', 576, 323, NULL, 378, NULL, NULL, NULL, NULL, 'docker.io/apache/camel-k:1.3.0', 'https://github.com/apache/camel-k'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (4, 'GrdsCloud MySQL for Kubernetes', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'grds/mysql-operator:1.0.0', 'https://github.com/GrdsCloud'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (5, 'Hive for Red Hat OpenShift', 576, 323, NULL, 8, NULL, NULL, NULL, NULL, 'quay.io/openshift-hive/hive:v1.0.17', 'https://github.com/openshift/hive'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (6, 'IBM Spectrum Scale CSI Plugin Operator', 576, 323, NULL, 605, NULL, NULL, NULL, NULL, 'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0', 'https://github.com/IBM/ibm-spectrum-scale-csi/'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (7, 'Jenkins Operator', 576, 323, NULL, 90, NULL, NULL, NULL, NULL, 'virtuslab/jenkins-operator:v0.3.0', 'https://github.com/jenkinsci/kubernetes-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (8, 'Postgresql Operator', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'quay.io/deekshah86/postgresql-operator', 'https://github.com/janepelladinesh/postgresql-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (9, 'Redis Operator', 576, 323, NULL, 168, NULL, NULL, NULL, NULL, 'quay.io/opstree/redis-operator:v0.3.0', 'https://github.com/ot-container-kit/redis-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (10, 'WildFly', 576, 323, NULL, 493, NULL, NULL, NULL, NULL, 'quay.io/wildfly/wildfly-operator:0.3.0', 'https://github.com/wildfly/wildfly-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (11, 'MongoDB Enterprise Operator', 576, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'quay.io/mongodb/mongodb-enterprise-operator:1.12.0', 'https://github.com/mongodb/mongodb-enterprise-kubernetes'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (12, 'Apache Spark Operator', 576, NULL, NULL, 280, NULL, NULL, NULL, NULL, 'quay.io/radanalyticsio/spark-operator:1.0.2', 'https://github.com/radanalyticsio/spark-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (13, 'Banzai Cloud Kafka Operator', 576, NULL, NULL, 9, NULL, NULL, NULL, NULL, 'banzaicloud/kafka-operator:0.3.1', 'https://github.com/banzaicloud/kafka-operator/tree/master'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (14, 'Camel K Operator', 576, NULL, NULL, 378, NULL, NULL, NULL, NULL, 'docker.io/apache/camel-k:1.3.0', 'https://github.com/apache/camel-k'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (15, 'GrdsCloud MySQL for Kubernetes', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, 'grds/mysql-operator:1.0.0', 'https://github.com/GrdsCloud'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (16, 'Hive for Red Hat OpenShift', 576, NULL, NULL, 8, NULL, NULL, NULL, NULL, 'quay.io/openshift-hive/hive:v1.0.17', 'https://github.com/openshift/hive'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (17, 'IBM Spectrum Scale CSI Plugin Operator', 576, NULL, NULL, 605, NULL, NULL, NULL, NULL, 'quay.io/ibm-spectrum-scale/ibm-spectrum-scale-csi-operator:v2.3.0', 'https://github.com/IBM/ibm-spectrum-scale-csi/'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (18, 'Jenkins Operator', 576, NULL, NULL, 90, NULL, NULL, NULL, NULL, 'virtuslab/jenkins-operator:v0.3.0', 'https://github.com/jenkinsci/kubernetes-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (19, 'Postgresql Operator', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, 'quay.io/deekshah86/postgresql-operator', 'https://github.com/janepelladinesh/postgresql-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (20, 'Redis Operator', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, 'quay.io/opstree/redis-operator:v0.3.0', 'https://github.com/ot-container-kit/redis-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (21, 'WildFly', 576, NULL, NULL, 493, NULL, NULL, NULL, NULL, 'quay.io/wildfly/wildfly-operator:0.3.0', 'https://github.com/wildfly/wildfly-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (22, 'MongoDB Enterprise Operator', 576, NULL, NULL, 116, NULL, NULL, NULL, NULL, 'quay.io/mongodb/mongodb-enterprise-operator:1.12.0', 'https://github.com/mongodb/mongodb-enterprise-kubernetes'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (23, 'Instana Agent Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 611, 'instana/instana-agent-operator:0.3.7', 'https://github.com/instana/instana-agent-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (24, 'credstash-operator', 576, NULL, NULL, 612, NULL, NULL, NULL, NULL, 'quay.io/ouzi/credstash-operator:v1.13.0', 'https://github.com/ouzi-dev/credstash-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (25, 'Snyk Operator', 576, NULL, NULL, 613, NULL, NULL, NULL, NULL, 'docker.io/snyk/kubernetes-operator:1.59.3', 'https://github.com/snyk/kubernetes-monitor'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (26, 'Akka Cluster Operator', 576, NULL, NULL, 614, NULL, NULL, NULL, NULL, 'lightbend-docker-registry.bintray.io/lightbend/akkacluster-operator:v1.0.0', 'https://github.com/lightbend/akka-cluster-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (27, 'Varnish Operator', 576, NULL, NULL, NULL, 615, NULL, NULL, NULL, 'ibmcom/varnish-operator:0.27.2', 'https://github.com/IBM/varnish-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (28, 'Datadog Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 616, 'datadog/operator:0.3.0', 'https://github.com/DataDog/datadog-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (29, 'Hazelcast Enterprise Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 618, 'hazelcast/hazelcast-enterprise-operator:0.3.7', 'https://github.com/hazelcast/hazelcast-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (30, 'infinispan', 576, NULL, NULL, 619, NULL, NULL, NULL, NULL, 'docker.io/jboss/infinispan-operator:0.3.0', 'https://github.com/infinispan/infinispan-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (31, 'Nuxeo Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 620, 'docker.io/appzygy/nuxeo-operator:0.7.1', 'https://github.com/aceeric/nuxeo-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (32, 'ArangoDB', 576, NULL, NULL, 621, NULL, NULL, NULL, NULL, 'arangodb/kube-arangodb:1.0.2', 'https://github.com/arangodb/kube-arangodb'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (33, 'Eclipse Che', 576, NULL, NULL, 622, NULL, NULL, NULL, NULL, 'quay.io/eclipse/che-operator@sha256:ea3641202e11ad00bd639b59809b6f4a6508f2c143d260b1683a9f36d74ed54f', 'https://github.com/eclipse-che/che-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (34, 'AWS S3 Operator', 576, NULL, NULL, 623, NULL, NULL, NULL, NULL, 'quay.io/screeley44/aws-s3-provisioner:v1.0.0', 'https://github.com/yard-turkey/aws-s3-provisioner'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (35, 'Altinity ClickHouse Operator', 576, NULL, NULL, 624, NULL, NULL, NULL, NULL, 'altinity/clickhouse-operator:0.9.9', 'https://github.com/altinity/clickhouse-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (36, 'MinIO Operator', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, 'minio/k8s-operator:1.0.3', 'https://github.com/minio/minio-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (37, 'Elastic Cloud on Kubernetes', 576, NULL, NULL, 626, NULL, NULL, NULL, NULL, 'docker.elastic.co/eck/eck-operator:1.0.0-beta1', 'https://github.com/elastic/cloud-on-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (38, 'Percona XtraDB Cluster Operator', 576, NULL, NULL, 627, NULL, NULL, NULL, NULL, 'percona/percona-xtradb-cluster-operator:1.7.0', 'https://github.com/percona/percona-xtradb-cluster-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (39, 'Keycloak Operator', 576, NULL, NULL, 628, NULL, NULL, NULL, NULL, 'quay.io/keycloak/keycloak-operator:9.0.2', 'https://github.com/keycloak/keycloak-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (40, 'Grafana Operator', 576, NULL, NULL, 629, NULL, NULL, NULL, NULL, 'quay.io/integreatly/grafana-operator:v3.10.1', 'https://github.com/integr8ly/grafana-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (41, 'Mattermost Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 630, 'docker.io/mattermost/mattermost-operator:v0.5.0', 'https://github.com/mattermost/mattermost-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (42, 'synapse-helm', 576, NULL, NULL, 631, NULL, NULL, NULL, NULL, 'quay.io/mgoerens/synapse-helm:v0.0.11', 'https://github.com/opdev/synapse-helm'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (43, 'IBM Cloud IAM Operator', 576, NULL, NULL, 632, NULL, NULL, NULL, NULL, 'cloudoperators/ibmcloud-iam-operator:0.1.0', 'https://github.com/IBM/ibmcloud-iam-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (44, 'Knative Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 633, 'gcr.io/knative-releases/knative.dev/operator/cmd/operator:v0.20.0', 'https://github.com/knative/operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (45, 'Cassandra', 576, NULL, NULL, 634, NULL, NULL, NULL, NULL, 'gcr.io/cassandra-operator/cassandra-operator:v2.0.0', 'https://github.com/instaclustr/cassandra-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (46, 'Kubeflow', 576, NULL, NULL, NULL, NULL, NULL, NULL, 635, 'aipipeline/kubeflow-operator:v1.0.0', 'https://github.com/kubeflow/kfctl'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (47, 'Openshift Qiskit Operator', 576, NULL, NULL, 636, NULL, NULL, NULL, NULL, 'https://hub.docker.com/repository/docker/singhp11/openshift-qiskit-operator', 'https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/openshift-qiskit-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (48, 'Azure Service Operator', 576, NULL, NULL, 637, NULL, NULL, NULL, NULL, 'mcr.microsoft.com/k8s/azureserviceoperator:1.0.27207', 'https://github.com/Azure/azure-service-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (49, 'Strimzi', 576, NULL, NULL, NULL, NULL, NULL, NULL, 638, 'docker.io/strimzi/operator@sha256:62218aee7553b31db1f65bc30b3c6b6595c2fd631b2e1792e24e554a47080aa6', 'https://github.com/strimzi/strimzi-kafka-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (50, 'Sematext Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 639, 'docker.io/sematext/sematext-operator:1.0.33', 'https://github.com/sematext/sematext-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (51, 'Eclipse Hawkbit', 576, NULL, NULL, 640, NULL, NULL, NULL, NULL, 'docker.io/ctron/hawkbit-operator:0.1.4', 'https://github.com/ctron/hawkbit-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (52, 'Eclipse Ditto', 576, NULL, NULL, 641, NULL, NULL, NULL, NULL, 'docker.io/ctron/ditto-operator:0.1.0', 'https://github.com/ctron/ditto-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (53, 'Mariadb Operator', 576, NULL, NULL, 642, NULL, NULL, NULL, NULL, 'quay.io/manojdhanorkar/mariadb-operator:v0.0.1', 'https://github.com/abalki001/mariadb-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (54, 'Zadara Operator', 576, NULL, NULL, 643, NULL, NULL, NULL, NULL, 'zadara/zoperator:0.3.6', 'https://github.com/zadarastorage/zadara-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (55, 'Istio', 576, NULL, NULL, 644, NULL, NULL, NULL, NULL, 'banzaicloud/istio-operator:0.1.6', 'https://github.com/banzaicloud/istio-operator/tree/release-1.1'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (56, 'Vault Helm', 576, NULL, NULL, 645, NULL, NULL, NULL, NULL, 'quay.io/brejohns/vault-helm:0.0.1', 'https://github.com/SDBrett/vault-helm'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (57, 'druid-operator', 576, NULL, NULL, 646, NULL, NULL, NULL, NULL, 'druidio/druid-operator:0.0.6', 'https://github.com/druid-io/druid-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (58, 'etcd', 576, NULL, NULL, 647, NULL, NULL, NULL, NULL, 'quay.io/coreos/etcd-operator@sha256:66a37fd61a06a43969854ee6d3e21087a98b93838e284a6086b13917f96b0d9b', 'https://github.com/coreos/etcd-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (59, 'Traefikee Operator', 576, NULL, NULL, NULL, 648, NULL, NULL, NULL, 'containous/traefikee-operator:v0.3.0', 'https://github.com/containous/traefikee-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (60, 'IBM Cloud Operator', 576, NULL, NULL, 649, NULL, NULL, NULL, NULL, 'cloudoperators/ibmcloud-operator:0.1.10', 'https://github.com/IBM/cloud-operators'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (61, 'Yugabyte Operator', 576, NULL, NULL, 650, NULL, NULL, NULL, NULL, 'quay.io/yugabyte/yugabytedb-operator', 'https://github.com/yugabyte/yugabyte-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (62, 'CockroachDB', 576, NULL, NULL, 651, NULL, NULL, NULL, NULL, 'quay.io/helmoperators/cockroachdb:v3.0.7', 'https://github.com/dmesser/cockroachdb-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (63, 'Community Jaeger Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 652, 'docker.io/jaegertracing/jaeger-operator:1.11.1', 'https://github.com/jaegertracing/jaeger-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (64, 'IoT simulator', 576, NULL, NULL, 46, NULL, NULL, NULL, NULL, '', 'https://github.com/ctron/iot-simulator-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (65, 'Elasticsearch (ECK) Operator', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, '', 'https://github.com/elastic/cloud-on-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (66, 'Elasticsearch Phenix Operator', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, '', 'https://github.com/Carrefour-Group/elastic-phenix-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (67, 'Logging Operator', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, '["''quay.io/opstree/logging-operator:v0.3.0''"]', 'https://github.com/ot-container-kit/logging-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (68, 'AWS Controllers for Kubernetes - Amazon ElastiCache', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (69, 'Elasticsearch Index Operator', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM/esindex-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (70, 'Prometheus Exporter Operator', 576, NULL, NULL, 47, NULL, NULL, NULL, NULL, '["''quay.io/3scale/prometheus-exporter-operator:v0.2.4''"]', 'https://github.com/3scale/prometheus-exporter-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (71, 'Kong Operator', 576, NULL, NULL, 88, NULL, NULL, NULL, NULL, '', 'https://github.com/kong/kong-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (72, 'MongoDB Operator', 576, NULL, NULL, 116, NULL, NULL, NULL, NULL, '["''quay.io/opstree/mongodb-operator:v0.3.0''"]', 'https://github.com/ot-container-kit/mongodb-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (73, 'MongoDB Atlas Operator', 576, NULL, NULL, 116, NULL, NULL, NULL, NULL, '["''quay.io/mongodb/mongodb-atlas-kubernetes-operator:1.1.0''"]', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (74, 'Percona Distribution for MongoDB Operator', 576, NULL, NULL, 116, NULL, NULL, NULL, NULL, '', 'https://github.com/percona/percona-server-mongodb-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (75, 'Percona Distribution for MySQL Operator', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, '', 'https://github.com/percona/percona-xtradb-cluster-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (76, 'PlanetScale Operator for Vitess', 576, NULL, NULL, 122, NULL, NULL, NULL, NULL, '', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (77, 'Percona Operator for PostgreSQL', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, '', 'https://github.com/percona/percona-postgresql-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (78, 'PostgreSQL Operator by Dev4Ddevs.com', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, '["''quay.io/dev4devs-com/postgresql-operator:0.1.1''"]', 'https://github.com/dev4devs-com/postgresql-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (79, 'Crunchy Postgres for Kubernetes', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, '', 'https://github.com/CrunchyData/postgres-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (80, 'EDB Postgres for Kubernetes', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, '["''quay.io/enterprisedb/cloud-native-postgresql''"]', 'https://www.enterprisedb.com/docs/postgres_for_kubernetes/latest/'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (81, 'Postgres-Operator', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, '', 'https://github.com/zalando/postgres-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (82, 'Ext Postgres Operator', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, '', 'https://github.com/movetokube/postgres-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (83, 'Robin Cloud Native Storage', 576, NULL, NULL, 157, NULL, NULL, NULL, NULL, '', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (84, 'Redis Enterprise', 576, NULL, NULL, 168, NULL, NULL, NULL, NULL, '', 'https://github.com/RedisLabs/redis-enterprise-k8s-docs'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (85, 'Splunk Operator', 576, NULL, NULL, 188, NULL, NULL, NULL, NULL, '', ''); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (86, 'Encrypted Images Key Syncer Helm Operator', 576, NULL, NULL, 209, NULL, NULL, NULL, NULL, '["''docker.io/lumjjb/enc-key-sync-operator:v0.0.1''"]', 'https://github.com/IBM/k8s-enc-image-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (87, 'Joget DX on Apache Tomcat', 576, NULL, NULL, NULL, 260, NULL, NULL, NULL, '', 'https://github.com/jogetworkflow/'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (88, 'APIcast', 576, NULL, NULL, NULL, 274, NULL, NULL, NULL, '["''quay.io/3scale/apicast-operator:v0.4.0''"]', 'https://github.com/3scale/apicast-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (89, 'Spark Operator', 576, NULL, NULL, NULL, 280, NULL, NULL, NULL, '', 'https://github.com/GoogleCloudPlatform/spark-on-k8s-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (90, 'Kubestone', 576, NULL, NULL, NULL, 280, NULL, NULL, NULL, '', 'https://github.com/xridge/kubestone'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (91, 'Flink Kubernetes Operator', 576, 301, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/apache/flink-kubernetes-operator:1.0.1''"]', 'https://github.com/apache/flink-kubernetes-operator.git'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (92, 'Alvearie Imaging Ingestion Operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/Alvearie/imaging-ingestion'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (93, 'DataStax Kubernetes Operator for Apache Cassandra', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/k8ssandra/cass-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (94, 'Qserv operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/lsst/qserv-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (95, 'Prometheus Operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/prometheus-operator/prometheus-operator:v0.47.0''"]', 'https://github.com/prometheus-operator/prometheus-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (96, 'Rook-Ceph', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/rook/rook'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (97, 'Argo CD', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/argoprojlabs/argocd-operator''"]', 'https://github.com/argoproj-labs/argocd-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (98, 'Starboard Operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/aquasec/starboard-operator:0.15.6''"]', 'https://github.com/aquasecurity/starboard'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (99, 'TiDB Operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/pingcap/tidb-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (100, 'Altinity Operator for ClickHouse', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/altinity/clickhouse-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (101, 'Flux', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://fluxcd.io/docs/'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (102, 'RocketMQ Operator', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/apache/rocketmq-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (103, 'StorageOS', 576, 303, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/storageos/operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (104, 'Lightbend Console Operator', 576, 306, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/lightbend/console-charts/tree/master/operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (105, 'External Secrets Operator', 576, 323, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/external-secrets/external-secrets-helm-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (106, 'Intel Device Plugins Operator', 576, 323, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/intel/intel-device-plugins-for-kubernetes'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (107, 'silicom-sts-operator', 576, 323, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/silicom/sts-operator:v0.0.1''"]', 'github.com/silicomdk/sts-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (108, 'API Operator for Kubernetes', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/wso2/k8s-api-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (109, 'KEDA', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/kedacore/keda-olm-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (110, 'WSO2 API Manager Operator for Kubernetes', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/wso2/k8s-wso2am-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (111, 'AWS Controllers for Kubernetes - Amazon API Gateway v2', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (112, 'AWS Controllers for Kubernetes - Amazon Application Auto Scaling', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (113, 'AWS Controllers for Kubernetes - Amazon DynamoDB', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (114, 'AWS Controllers for Kubernetes - Amazon EC2', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (115, 'AWS Controllers for Kubernetes - Amazon ECR', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (116, 'AWS Controllers for Kubernetes - Amazon EKS', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (117, 'AWS Controllers for Kubernetes - Amazon EMR on EKS', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (118, 'AWS Controllers for Kubernetes - Amazon IAM', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (119, 'AWS Controllers for Kubernetes - Amazon KMS', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (120, 'AWS Controllers for Kubernetes - Amazon Lambda', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (121, 'AWS Controllers for Kubernetes - Amazon MQ', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (122, 'AWS Controllers for Kubernetes - Amazon OpenSearch Service', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (123, 'AWS Controllers for Kubernetes - Amazon RDS', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (124, 'AWS Controllers for Kubernetes - Amazon S3', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (125, 'AWS Controllers for Kubernetes - Amazon SageMaker', 576, 353, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/aws-controllers-k8s'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (126, 'Falco Operator', 576, 355, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/falcosecurity/falco-operator-helm:0.7.6''"]', 'https://github.com/falcosecurity/falco-operator/tree/helm-based-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (127, 'Kubemq Enterprise Operator', 576, 355, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/kubemq/kubemq-operator:latest''"]', 'https://github.com/kubemq-io/kubemq-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (128, 'Apicurio Registry Operator', 576, 355, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/apicurio/apicurio-registry-operator:1.0.0''"]', 'https://github.com/Apicurio/apicurio-registry-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (129, 'GitLab', 576, 360, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://gitlab.com/gitlab-org/cloud-native/gitlab-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (130, 'GitLab Runner', 576, 360, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://gitlab.com/gitlab-org/gl-openshift/gitlab-runner-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (131, 'nfd-operator', 576, 362, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/kubernetes-sigs/node-feature-discovery-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (132, 'Appsody Operator', 576, 364, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/appsody/appsody-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (133, 'Runtime Component Operator', 576, 364, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/application-stacks/runtime-component-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (134, 'Open Liberty Operator', 576, NULL, 398, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/OpenLiberty/open-liberty-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (135, 'Kogito', 576, NULL, 398, NULL, NULL, NULL, NULL, NULL, '["''quay.io/kiegroup/kogito-operator:1.24.0''"]', 'https://github.com/kiegroup/kogito-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (136, 'Composable', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM/composable'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (137, 'IBM COS Bucket Operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM/cos-bucket-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (138, 'Event Streams Topic', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM/event-streams-topic'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (139, 'Hybrid Application Model Operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/hybridappio/ham-deploy:0.1.0''"]', 'https://github.com/hybridapp-io/ham-deploy'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (140, 'IBM Application Gateway Operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM-Security/ibm-application-gateway-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (141, 'IBM block storage CSI driver operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM/ibm-block-csi-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (142, 'Ibm Quantum Operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/application/husky_parul/ibm-quantum-operator''"]', 'https://github.com/redhat-et/ibm-quantum-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (143, 'IBM Security Verify Access Operator', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', 'https://github.com/IBM-Security/verify-access-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (144, 'QiskitPlayground', 424, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '["''docker.io/qiskit/operator:0.1''"]', 'https://github.com/qiskit-community/openshift-quantum-operators/tree/master/operators-examples/kubernetes-qiskit-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (145, 'Submariner', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/submariner/submariner-operator:0.11.0''"]', 'https://github.com/submariner-io/submariner-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (146, 'Upbound Universal Crossplane (UXP)', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '', 'https://github.com/upbound/universal-crossplane'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (147, 'BeeGFS CSI Driver', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '', 'https://github.com/netapp/beegfs-csi-driver'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (148, 'cluster-impairment-operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/redhat-performance/cluster-impairment-operator:1.0.4''"]', 'https://github.com/redhat-performance/cluster-impairment-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (149, 'Kogito Knative Eventing Source', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '', 'https://github.com/knative-sandbox/eventing-kogito'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (150, 'k8gb', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '', 'https://github.com/k8gb-io/k8gb'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (151, 'Kubernetes NMState Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/nmstate/kubernetes-nmstate-operator:v0.47.0''"]', 'https://github.com/nmstate/kubernetes-nmstate'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (152, 'MARIN3R', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/3scale/marin3r''"]', 'https://github.com/3scale-ops/marin3r'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (153, 'MetalLB Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/metallb/metallb-operator''"]', 'https://github.com/metallb/metallb-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (154, 'NetObserv Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/netobserv/network-observability-operator:0.1.3''"]', 'https://github.com/netobserv/network-observability-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (155, 'NeuVector Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '', 'https://github.com/neuvector/neuvector-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (156, 'Network Service Mesh Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/acmenezes/nsm-operator:v0.0.1''"]', 'https://github.com/acmenezes/nsm-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (157, 'Prisma Cloud Compute Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/prismacloud/pcc-operator''"]', 'https://github.com/PaloAltoNetworks/prisma-cloud-compute-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (158, 'Routernetes', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''quay.io/routernetes/routernetes-operator:0.0.5''"]', 'https://github.com/routernetes/routernetes-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (159, 'skydive-operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''docker.io/skydive/skydive-operator:0.0.50''"]', 'https://github.com/skydive-project/skydive-golang-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (160, 'Tf Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 497, '["''docker.io/tungstenfabric/tf-operator:latest''"]', 'https://github.com/tungstenfabric/tf-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (161, 'Nexus Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 503, '["''quay.io/m88i/nexus-operator:0.6.0''"]', 'https://github.com/m88i/nexus-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (162, 'Anchore Engine Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 503, '["''docker.io/anchore/engine-operator:v0.1.3''"]', 'https://github.com/anchore/engine-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (163, 'Carbonetes Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 503, '["''docker.io/carbonetes/operator:1.0.4''"]', 'https://github.com/carbonetes/carbonetes-analyzer'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (164, 'AtlasMap Operator', 576, 584, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/atlasmap/atlasmap-operator:0.4.1''"]', 'https://github.com/atlasmap/atlasmap-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (165, 'Cryostat Operator', 576, 584, NULL, NULL, NULL, NULL, NULL, NULL, '["''quay.io/cryostat/cryostat-operator:2.1.1''"]', 'github.com/cryostatio/cryostat-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (166, 'Hazelcast Platform Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 618, '["''docker.io/hazelcast/hazelcast-platform-operator:5.3''"]', 'https://docs.hazelcast.com/operator/latest/'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (167, 'Infinispan Operator', 576, NULL, NULL, 619, NULL, NULL, NULL, NULL, '["''quay.io/infinispan/operator:2.2.4.Final''"]', 'https://github.com/infinispan/infinispan-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (168, 'Minio Operator', 576, NULL, NULL, 625, NULL, NULL, NULL, NULL, '["''quay.io/minio/operator''"]', 'https://github.com/minio/operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (169, 'YAKS Operator', 576, NULL, NULL, NULL, NULL, NULL, NULL, 633, '["''docker.io/citrusframework/yaks:0.10.0''"]', 'https://github.com/citrusframework/yaks'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (170, 'Istio Workspace', 576, NULL, NULL, 644, NULL, NULL, NULL, NULL, '["''quay.io/maistra/istio-workspace:v0.5.1''"]', 'https://github.com/maistra/istio-workspace'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (171, 'Kiali Operator', 576, NULL, NULL, 644, NULL, NULL, NULL, NULL, '["''quay.io/kiali/kiali-operator:v1.53.0''"]', 'https://github.com/kiali/kiali'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (172, 'Vault Operator', 576, NULL, NULL, 645, NULL, NULL, NULL, NULL, '', 'https://github.com/banzaicloud/bank-vaults/tree/master/operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (173, 'ks-releaser', 576, NULL, NULL, 677, NULL, NULL, NULL, NULL, '', 'https://github.com/kubesphere-sigs/ks-releaser-operator'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (174, 'Argo CD Operator (Helm)', 576, NULL, NULL, 677, NULL, NULL, NULL, NULL, '["''quay.io/disposab1e/argocd-operator-helm''"]', 'https://github.com/disposab1e/argocd-operator-helm.git'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (175, 'Multicluster Subscription Operator', 576, NULL, NULL, 677, NULL, NULL, NULL, NULL, '["''quay.io/open-cluster-management/multicluster-operators-subscription:2.3.0''"]', 'https://github.com/open-cluster-management/multicloud-operators-subscription'); +INSERT INTO operator_images (id, container_name, OS, lang, lib, app, app_server, plugin, runlib, runtime, Operator_Correspondent_Image_URL, Operator_Repository) VALUES (176, 'Weave GitOps Terraform Controller', 576, NULL, NULL, 677, NULL, NULL, NULL, NULL, '', 'https://weaveworks.github.io/tf-controller/'); + +COMMIT TRANSACTION; +PRAGMA foreign_keys = on; diff --git a/db/README.md b/db/README.md index 2f36d40..37fb3f5 100644 --- a/db/README.md +++ b/db/README.md @@ -11,7 +11,7 @@ We represent the knowledge base in terms of a database. Below we provide an entity-relationship diagram. -ER_DIAGRAM +ER_DIAGRAM ### Setting up TCA's Knowledge Base @@ -35,7 +35,7 @@ We represent the knowledge base in terms of a database. Below we provide an enti ##### This contains all the entity types present in our taxonomy. Under each entity type we define entities. For example, the OS entity type contains the Linux|RedHat Linux as an entity. -Entity Types +Entity Types ##### A new entry can be added as @@ -46,7 +46,7 @@ We represent the knowledge base in terms of a database. Below we provide an enti ##### This contains all the named entities along with their types and mappings to Wikidata or DBPedia. The scores are obtained based on an entity linking algorithm. -Entities +Entities ##### A new entry can be added as @@ -65,7 +65,7 @@ We represent the knowledge base in terms of a database. Below we provide an enti ##### This contains mappings of raw mentions with their entities. Each entity could have multiple mentions. For example, Apache Tomcat can be called as Tomcat or Apache Tomcat. -Entity Mentions +Entity Mentions ##### A new entry can be added as @@ -96,7 +96,7 @@ We represent the knowledge base in terms of a database. Below we provide an enti ##### This contains Openshift specific base OS images. For example, RedHat Linux along with its mapping a OpenShift image. -Openshift Base OS Images +Openshift Base OS Images ##### A new entry can be added as @@ -107,7 +107,7 @@ We represent the knowledge base in terms of a database. Below we provide an enti ##### This contains Docker specific images. For example, Apache Tomcat long with its mapping a DockerHub image. -Docker Images +Docker Images ##### A new entry can be added as @@ -118,7 +118,7 @@ We represent the knowledge base in terms of a database. Below we provide an enti ##### This contains OpenShift specific images. For example, Apache Tomcat long with its mapping a OpenShift image. -Openshift Images +Openshift Images ##### A new entry can be added as @@ -127,7 +127,7 @@ We represent the knowledge base in terms of a database. Below we provide an enti **9. entity versions** ##### This contains versions and licensing costs for all entities. -entity_versions +entity_versions ##### A new entry can be added as INSERT INTO entity_versions (id, entity_id, version, release_date, end_date, cost) VALUES (?,?,?,?,?,?) @@ -135,7 +135,7 @@ We represent the knowledge base in terms of a database. Below we provide an enti **10. docker environment variable** ##### This contains environment variables for all docker images. -Docker_env_var +Docker_env_var ##### A new entry can be added as diff --git a/kg_utils/input.csv b/kg_utils/input.csv index 8593e33..214fcbd 100644 --- a/kg_utils/input.csv +++ b/kg_utils/input.csv @@ -1,2 +1,7 @@ +entities, comtran11, 9,{''qid'': ''Q5013384'',''url'': ''https://www.wikidata.org/wiki/Q5013384''}, N, Y, Y, N +entities, AppleScript11, 9, {''qid'': ''Q129137'',''url'': ''https://www.wikidata.org/wiki/Q129137''}, N, Y, N, N +entity_types, test123 +entity_mentions, test12,6, 169, others +entity_versions, 497, 20.1,NULL,NULL +entity_relations,6,581,10,501 operator_images,YAKS1 Operator,426,0,0,0,0,0,0,0,https://github.com/k8s-operatorhub/community-operators/operators,,https://github.com/k8s-operatorhub/community-operators/operators -operator_images,Elasticsearch Index Operator,426,,,47,,,,,,, \ No newline at end of file diff --git a/kg_utils/kg_aug.py b/kg_utils/kg_aug.py index 77cb5e9..2be8e16 100644 --- a/kg_utils/kg_aug.py +++ b/kg_utils/kg_aug.py @@ -273,7 +273,6 @@ def insert_into_table(table_name, userColVals, cur): sqlquery += "," count += 1 sqlquery += ")" - print(sqlquery) cur.execute(sqlquery) diff --git a/requirements.txt b/requirements.txt index 33c6647..9811854 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,16 +4,11 @@ Flask==1.1.1 Flask-API==1.1 flask-restplus==0.13.0 Werkzeug==0.16.1 -<<<<<<< Updated upstream:requirements.txt scikit-learn==1.1.1 #1.0.2 joblib>= 1.0.0 #0.15.1 -======= -scikit-learn==1.1.1 -joblib>= 1.0.0 ->>>>>>> Stashed changes:service/requirements.txt scipy==1.8.0 scikit-multilearn==0.2.0 -requests==2.28.1 +requests==2.28.1 #2.27.1 packaging==21.0 Jinja2==2.11.3 MarkupSafe==2.0.1 diff --git a/setup.sh b/setup.sh index 5dc7c23..730ec25 100644 --- a/setup.sh +++ b/setup.sh @@ -24,10 +24,10 @@ then exit 1 fi -# Check to make sure python3.9 is installed -if ! command -v python3.9 &> /dev/null +# Check to make sure python is installed +if ! command -v python &> /dev/null then - echo "**** ERROR: python3.9 command could not be found. Cannot continue." + echo "**** ERROR: python command could not be found. Cannot continue." exit 1 else $python -m pip install --upgrade pip wheel build setuptools From c669294558ea01099e04c798b6d84c7ddb28dd7c Mon Sep 17 00:00:00 2001 From: divsan93 Date: Thu, 21 Jul 2022 22:05:27 -0400 Subject: [PATCH 29/30] [kgaug test] fixing the test output --- test/unit/test_aug.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/test_aug.py b/test/unit/test_aug.py index b626570..262e0b2 100644 --- a/test/unit/test_aug.py +++ b/test/unit/test_aug.py @@ -24,5 +24,5 @@ def test_insert_to_kg(self): conn = sqlite3.connect("./db/1.0.4.db") cur = conn.cursor() appL = kg_aug.insert_to_kg("batch", "./test/unit/test.csv", cur, True) - expected = "Entry 0 cannot be processed..Entry 1 cannot be processed.." + expected = "Entry 0 inserted to table..Entry 1 cannot be processed.." self.assertTrue(appL == expected) From 53b0756bb935448755dbd6f925802dc021de8e7d Mon Sep 17 00:00:00 2001 From: divsan93 Date: Thu, 21 Jul 2022 22:25:06 -0400 Subject: [PATCH 30/30] Adding word2number package --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 9811854..94f7eaa 100644 --- a/requirements.txt +++ b/requirements.txt @@ -38,6 +38,7 @@ gunicorn==20.0.0 waitress==2.1.1 matplotlib==3.5.2 honcho==1.0.1 +word2number==1.1 # Testing nose==1.3.7